From f43e80250133d397018e14494bef42ceaf106520 Mon Sep 17 00:00:00 2001 From: Cyril Rouillon Date: Fri, 27 Sep 2024 17:20:37 +0200 Subject: [PATCH] testprod --- .gitignore | 2 +- backend/controllers/favorite.js | 6 +- backend/controllers/lot.js | 39 +- backend/controllers/sale.js | 198 +------- backend/controllers/user.js | 41 +- backend/services/saleDb.js | 144 ++++++ .../136.7ec3fccbaab9da95.js | 1 + .../168.23cd0d474d0816c1.js | 1 + .../180.2cd83d3a045b34ec.js | 1 + .../184.76d8d415636f0a06.js | 1 + .../206.df318e426aa62a63.js | 1 + .../228.09b3735f8b2791e2.js | 1 + .../3rdpartylicenses.txt | 454 ++++++++++++++++++ .../40.830a305ce078c093.js | 1 + .../556.23addb1698bab6ce.js | 1 + .../640.ea69207168bc4f5e.js | 1 + .../852.38e77b9083937542.js | 1 + .../968.71f956b042a479cb.js | 1 + .../982.b8ef64041e16e14b.js | 1 + .../Inter-italic.var.958a0b9742fb3ae8.woff2 | Bin 0 -> 245036 bytes .../Inter-roman.var.b2129c009ce46d43.woff2 | Bin 0 -> 227180 bytes .../assets/favicon/android-icon-144x144.png | Bin 0 -> 17055 bytes .../assets/favicon/android-icon-192x192.png | Bin 0 -> 23334 bytes .../assets/favicon/android-icon-36x36.png | Bin 0 -> 3256 bytes .../assets/favicon/android-icon-48x48.png | Bin 0 -> 4494 bytes .../assets/favicon/android-icon-72x72.png | Bin 0 -> 7088 bytes .../assets/favicon/android-icon-96x96.png | Bin 0 -> 10071 bytes .../assets/favicon/apple-icon-114x114.png | Bin 0 -> 12536 bytes .../assets/favicon/apple-icon-120x120.png | Bin 0 -> 13392 bytes .../assets/favicon/apple-icon-144x144.png | Bin 0 -> 17055 bytes .../assets/favicon/apple-icon-152x152.png | Bin 0 -> 18212 bytes .../assets/favicon/apple-icon-180x180.png | Bin 0 -> 23127 bytes .../assets/favicon/apple-icon-57x57.png | Bin 0 -> 5351 bytes .../assets/favicon/apple-icon-60x60.png | Bin 0 -> 5722 bytes .../assets/favicon/apple-icon-72x72.png | Bin 0 -> 7088 bytes .../assets/favicon/apple-icon-76x76.png | Bin 0 -> 7538 bytes .../assets/favicon/apple-icon-precomposed.png | Bin 0 -> 23908 bytes .../assets/favicon/apple-icon.png | Bin 0 -> 23908 bytes .../assets/favicon/browserconfig.xml | 2 + .../assets/favicon/favicon-16x16.png | Bin 0 -> 1641 bytes .../assets/favicon/favicon-32x32.png | Bin 0 -> 2831 bytes .../assets/favicon/favicon-96x96.png | Bin 0 -> 10071 bytes .../assets/favicon/favicon.ico | Bin 0 -> 1150 bytes .../assets/favicon/manifest.json | 41 ++ .../assets/favicon/ms-icon-144x144.png | Bin 0 -> 17055 bytes .../assets/favicon/ms-icon-150x150.png | Bin 0 -> 18042 bytes .../assets/favicon/ms-icon-310x310.png | Bin 0 -> 50250 bytes .../assets/favicon/ms-icon-70x70.png | Bin 0 -> 6823 bytes .../assets/images/user.png | Bin 0 -> 2933 bytes .../color.dae87a04d07ca92b.png | Bin 0 -> 10355 bytes .../hue.8b1818380241e6ac.png | Bin 0 -> 293 bytes .../dist/angular-material-template/index.html | 37 ++ .../main.fc1d97ee0494099d.js | 1 + .../polyfills.febf6ea84d149d1b.js | 1 + .../runtime.475575d3cc22a138.js | 1 + .../styles.861fe5defbf65c02.css | 1 + .../features/auth/login/login.component.ts | 5 +- .../sales-page/sales-page.component.html | 2 +- docker-compose.yml | 59 ++- 59 files changed, 810 insertions(+), 236 deletions(-) create mode 100644 client/dist/angular-material-template/136.7ec3fccbaab9da95.js create mode 100644 client/dist/angular-material-template/168.23cd0d474d0816c1.js create mode 100644 client/dist/angular-material-template/180.2cd83d3a045b34ec.js create mode 100644 client/dist/angular-material-template/184.76d8d415636f0a06.js create mode 100644 client/dist/angular-material-template/206.df318e426aa62a63.js create mode 100644 client/dist/angular-material-template/228.09b3735f8b2791e2.js create mode 100644 client/dist/angular-material-template/3rdpartylicenses.txt create mode 100644 client/dist/angular-material-template/40.830a305ce078c093.js create mode 100644 client/dist/angular-material-template/556.23addb1698bab6ce.js create mode 100644 client/dist/angular-material-template/640.ea69207168bc4f5e.js create mode 100644 client/dist/angular-material-template/852.38e77b9083937542.js create mode 100644 client/dist/angular-material-template/968.71f956b042a479cb.js create mode 100644 client/dist/angular-material-template/982.b8ef64041e16e14b.js create mode 100644 client/dist/angular-material-template/Inter-italic.var.958a0b9742fb3ae8.woff2 create mode 100644 client/dist/angular-material-template/Inter-roman.var.b2129c009ce46d43.woff2 create mode 100644 client/dist/angular-material-template/assets/favicon/android-icon-144x144.png create mode 100644 client/dist/angular-material-template/assets/favicon/android-icon-192x192.png create mode 100644 client/dist/angular-material-template/assets/favicon/android-icon-36x36.png create mode 100644 client/dist/angular-material-template/assets/favicon/android-icon-48x48.png create mode 100644 client/dist/angular-material-template/assets/favicon/android-icon-72x72.png create mode 100644 client/dist/angular-material-template/assets/favicon/android-icon-96x96.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-114x114.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-120x120.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-144x144.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-152x152.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-180x180.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-57x57.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-60x60.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-72x72.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-76x76.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon-precomposed.png create mode 100644 client/dist/angular-material-template/assets/favicon/apple-icon.png create mode 100644 client/dist/angular-material-template/assets/favicon/browserconfig.xml create mode 100644 client/dist/angular-material-template/assets/favicon/favicon-16x16.png create mode 100644 client/dist/angular-material-template/assets/favicon/favicon-32x32.png create mode 100644 client/dist/angular-material-template/assets/favicon/favicon-96x96.png create mode 100644 client/dist/angular-material-template/assets/favicon/favicon.ico create mode 100644 client/dist/angular-material-template/assets/favicon/manifest.json create mode 100644 client/dist/angular-material-template/assets/favicon/ms-icon-144x144.png create mode 100644 client/dist/angular-material-template/assets/favicon/ms-icon-150x150.png create mode 100644 client/dist/angular-material-template/assets/favicon/ms-icon-310x310.png create mode 100644 client/dist/angular-material-template/assets/favicon/ms-icon-70x70.png create mode 100644 client/dist/angular-material-template/assets/images/user.png create mode 100644 client/dist/angular-material-template/color.dae87a04d07ca92b.png create mode 100644 client/dist/angular-material-template/hue.8b1818380241e6ac.png create mode 100644 client/dist/angular-material-template/index.html create mode 100644 client/dist/angular-material-template/main.fc1d97ee0494099d.js create mode 100644 client/dist/angular-material-template/polyfills.febf6ea84d149d1b.js create mode 100644 client/dist/angular-material-template/runtime.475575d3cc22a138.js create mode 100644 client/dist/angular-material-template/styles.861fe5defbf65c02.css diff --git a/.gitignore b/.gitignore index b39834b..7070d94 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ client/.vscode .vscode data/ -vendore/ +vendor/ diff --git a/backend/controllers/favorite.js b/backend/controllers/favorite.js index 4337e24..1ba96ba 100644 --- a/backend/controllers/favorite.js +++ b/backend/controllers/favorite.js @@ -6,10 +6,10 @@ exports.save = asyncHandler(async (req, res, next) => { try{ let result = await save(req.body); console.log(result); - res.status(204).send(); + res.status(204).send({message: "Favorite created"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -22,6 +22,6 @@ exports.getAll = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); \ No newline at end of file diff --git a/backend/controllers/lot.js b/backend/controllers/lot.js index 7f1e659..d2fa5b5 100644 --- a/backend/controllers/lot.js +++ b/backend/controllers/lot.js @@ -20,6 +20,8 @@ exports.getInfos = asyncHandler(async (req, res, next) => { }) .catch(error => { console.error(error); + res.json({error: error}); + }); }); @@ -35,6 +37,7 @@ exports.getPictures = asyncHandler(async (req, res, next) => { }) .catch(error => { console.error(error); + res.json({error: error}); }); }); @@ -44,7 +47,7 @@ exports.getLotsBySale = asyncHandler(async (req, res, next) => { const Sale = await saleDb.get(id); if(!Sale){ console.error("Sale not found"); - return res.status(404).send("Sale not found"); + return res.status(404).send({error: "Sale not found"}); } Lots = await lotDb.getBySaleId(Sale._id.toString(),Sale.platform); @@ -60,7 +63,7 @@ exports.NextItem = asyncHandler(async (req, res, next) => { Sale = await saleDb.getByIDPlatform(req.body.idSalePlatform, req.body.platform); if(!Sale){ console.error("Sale not found"); - return res.status(404).send("Sale not found"); + return res.status(404).send({error: "Sale not found"}); } let Lot = await lotDb.getByIDPlatform(req.body.idPlatform, req.body.platform); @@ -96,10 +99,10 @@ exports.NextItem = asyncHandler(async (req, res, next) => { await lotDb.put(Lot._id, Lot); } - res.status(204).send(); + res.status(204).send({message: "Lot updated"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -126,13 +129,13 @@ exports.Bid = asyncHandler(async (req, res, next) => { await lotDb.put(Lot._id, Lot); }else{ console.error("Lot not found"); - return res.status(404).send("Lot not found"); + return res.status(404).send({error: "Lot not found"}); } - res.status(204).send(); + res.status(204).send({message: "Lot updated"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -152,15 +155,19 @@ exports.AuctionedItem = asyncHandler(async (req, res, next) => { } await lotDb.put(Lot._id, Lot); + + //update stats + await saleDb.processStats(Lot.sale_id); + }else{ console.error("Lot not found"); - return res.status(404).send("Lot not found"); + return res.status(404).send({error: "Lot not found"}); } - res.status(204).send(); + res.status(204).send({message: "Lot updated"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -173,7 +180,7 @@ exports.get = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -184,15 +191,15 @@ exports.post = asyncHandler(async (req, res, next) => { // check if double let Lot = await lotDb.getByIDPlatform(req.body.idPlatform, req.body.platform); if(Sale){ - return res.status(500).send("Lot already exists"); + return res.status(500).send({ error: "Lot already exists"}); } let createLot = await lotDb.post(req.body); - res.status(204).send(); + res.status(204).send({message: "Lot created"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -209,7 +216,7 @@ exports.put = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -224,7 +231,7 @@ exports.delete = asyncHandler(async (req, res, next) => { res.status(200).send({"message": "Lots deleted"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); \ No newline at end of file diff --git a/backend/controllers/sale.js b/backend/controllers/sale.js index 2a6fa28..bc1d592 100644 --- a/backend/controllers/sale.js +++ b/backend/controllers/sale.js @@ -18,18 +18,8 @@ exports.getSaleInfos = asyncHandler(async (req, res, next) => { }) .catch(error => { console.error(error); - return res.status(500).send(error); + return res.status(500).send({error: error}); }); - // url = encodeURIComponent(url); - - // fetch(ApiAgentURL+'/sale/getSaleInfos/'+url) - // .then(response => response.json()) - // .then(data => { - // res.json(data); - // }) - // .catch(error => { - // console.error(error); - // }); }); exports.prepareSale = asyncHandler(async (req, res, next) => { @@ -43,27 +33,11 @@ exports.prepareSale = asyncHandler(async (req, res, next) => { }) .catch(error => { console.error(error); - return res.status(500).send(error); + return res.status(500).send({error: error}); }); - // url = encodeURIComponent(url); - // fetch(ApiAgentURL+'/sale/getLotList/'+url) - // .then(response => response.json()) - // .then(async data => { - // console.log(data); - // for (let lot of data) { - // lot.sale_id = Sale._id - - // await lotDb.post(lot); - // } - // res.status(200).send({"message": "Lots created"}) - // }) - // .catch(error => { - // console.error(error); - // return res.status(500).send(error); - // }); }catch(err){ console.error(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -78,11 +52,11 @@ exports.followSale = asyncHandler(async (req, res, next) => { }) .catch(error => { console.error(error); - return res.status(500).send(error); + return res.status(500).send({error: error}); }); }catch(err){ console.error(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -96,7 +70,7 @@ exports.get = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -107,7 +81,7 @@ exports.post = asyncHandler(async (req, res, next) => { // check if double let Sale = await saleDb.getByIDPlatform(req.body.idPlatform, req.body.platform); if(Sale){ - return res.status(500).send("Sale already exists"); + return res.status(500).send({error: "Sale already exists"}); } let createData = await saleDb.post(req.body); @@ -131,10 +105,10 @@ exports.post = asyncHandler(async (req, res, next) => { await jobFollow.save(); }else{ console.log("Sale is in the past, no Follow Job");} - res.status(204).send(); + res.status(204).send({"message": "Sale created"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -147,11 +121,11 @@ exports.put = asyncHandler(async (req, res, next) => { delete updatedDocument._id; console.log(updatedDocument); let result = await saleDb.put(id, updatedDocument); - console.log(result); + //console.log(result); res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -176,7 +150,7 @@ exports.delete = asyncHandler(async (req, res, next) => { res.status(200).send({"message": "Sale and Lots deleted"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -189,7 +163,7 @@ exports.getAll = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -203,156 +177,18 @@ exports.getByUrl = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); exports.postProcessing = asyncHandler(async (req, res, next) => { try{ const id = req.params.id; - - Sale = await saleDb.get(id); - if(!Sale){ - console.error("Sale not found"); - return res.status(404).send("Sale not found"); - } - - Lots = await lotDb.getBySaleId(Sale._id.toString(),Sale.platform); - - TimestampInSecond = (timestamp) => { - const stringTimestamp = String(timestamp); - if (stringTimestamp.length === 13) { - return timestamp / 1000; - } else if (stringTimestamp.length === 10) { - return timestamp; - } else { - return 0; - } - } - - // Create an array to hold the updated lots - let updatedLots = []; - let bidsDuration = 0; - - // process each lot - for (let lot of Lots) { - let highestBid, duration, percentageAboveUnderLow, percentageAboveUnderHigh = 0; - - // if bid - let nbrBids = 0; - if (Array.isArray(lot.Bids)) { - - nbrBids = lot.Bids.length; - - highestBid = lot.Bids.reduce((prev, current) => (prev.amount > current.amount) ? prev : current).amount; - let startTime = TimestampInSecond(lot.Bids[0].timestamp); - let endTime = TimestampInSecond(lot.Bids[lot.Bids.length-1].timestamp); - duration = endTime - startTime; - - // total time of bids - bidsDuration += duration; - - duration = duration.toFixed(0); - } - - // if auctioned - percentageAboveUnderLow = 0; - percentageAboveUnderHigh = 0; - if (lot.auctioned) { - - if(lot.EstimateLow){ - percentageAboveUnderLow = ((lot.auctioned.amount - lot.EstimateLow) / lot.EstimateLow) * 100; - } - - if(lot.EstimateHigh){ - percentageAboveUnderHigh = ((lot.auctioned.amount - lot.EstimateHigh) / lot.EstimateHigh) * 100; - } - } - - let lotPostProcessing = { - nbrBids: nbrBids, - highestBid: highestBid, - duration: duration, - percentageAboveUnderLow: percentageAboveUnderLow.toFixed(0), - percentageAboveUnderHigh: percentageAboveUnderHigh.toFixed(0) - } - lot.postProcessing = lotPostProcessing; - await lotDb.put(lot._id, lot); - - // Add the updated lot to the array - updatedLots.push(lot); - } - - // refresh with postprocess datas - Lots = updatedLots; - - - let startTime = 0; - if (Array.isArray(Lots[0].Bids)) { - startTime = TimestampInSecond(Lots[0].Bids[0].timestamp); - }else{ - startTime = TimestampInSecond(Lots[0].timestamp); - } - - let LastBid = [...Lots].reverse().find(lot => lot.auctioned !== undefined); - - let endTime = 0; - if (Array.isArray(LastBid.Bids)) { - endTime = TimestampInSecond(LastBid.Bids[LastBid.Bids.length-1].timestamp); - }else{ - endTime = TimestampInSecond(LastBid.timestamp); - } - console.log("Start Time: "+startTime); - console.log("End Time: "+endTime); - - let duration = (endTime-startTime).toFixed(0); - - let totalAmount = 0; - let unsoldLots = 0; - for (let lot of Lots) { - if (lot.auctioned) { - totalAmount += lot.auctioned.amount; - } else { - unsoldLots++; - } - } - - function calculateMedian(array) { - array.sort((a, b) => a - b); - let middleIndex = Math.floor(array.length / 2); - - if (array.length % 2 === 0) { // array has an even length - return (array[middleIndex - 1] + array[middleIndex]) / 2; - } else { // array has an odd length - return array[middleIndex]; - } - } - const amounts = Lots.map(lot => lot.auctioned?.amount).filter(Boolean); - - //console.error(Lots); - let postProcessing = { - nbrLots: Lots.length, - duration: duration, - bidsDuration: bidsDuration.toFixed(0), - durationPerLots: (duration/Lots.length).toFixed(0), - totalAmount: totalAmount, - averageAmount: (totalAmount/Lots.length).toFixed(2), - medianAmount: calculateMedian(amounts).toFixed(2), - minAmount: Math.min(...amounts).toFixed(2), - maxAmount: Math.max(...amounts).toFixed(2), - unsoldLots: unsoldLots, - unsoldPercentage: ((unsoldLots/Lots.length)*100).toFixed(2) - } - - console.log(postProcessing); - - Sale.postProcessing = postProcessing; - await saleDb.put(Sale._id, Sale); - + await saleDb.processStats(id); res.status(200).send({"message": "Post Processing done"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -364,7 +200,7 @@ exports.SaleStatXsl = asyncHandler(async (req, res, next) => { Sale = await saleDb.get(id); if(!Sale){ console.error("Sale not found"); - return res.status(404).send("Sale not found"); + return res.status(404).send({error: "Sale not found"}); } Lots = await lotDb.getBySaleId(Sale._id.toString(),Sale.platform); diff --git a/backend/controllers/user.js b/backend/controllers/user.js index 30b4f9e..a3cbd12 100644 --- a/backend/controllers/user.js +++ b/backend/controllers/user.js @@ -3,6 +3,7 @@ const moment = require('moment-timezone'); const { ObjectId } = require('mongodb'); const { UserDb } = require("../services/userDb"); const crypto = require('crypto'); +const { error } = require("console"); function ClearUserData(user){ delete user.salt; @@ -33,7 +34,7 @@ exports.get = asyncHandler(async (req, res, next) => { } }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -45,24 +46,24 @@ exports.post = asyncHandler(async (req, res, next) => { // check if double let User = await userDb.getByEmail(req.body.email); if(User){ - return res.status(500).send("User already exists"); + return res.status(500).send({error: "User already exists"}); } // check password if(!req.body.password){ - return res.status(500).send("Password not set"); + return res.status(500).send({error: "Password not set"}); } if(req.body.password != req.body.confirmPassword){ - return res.status(500).send("Passwords do not match"); + return res.status(500).send({error: "Passwords do not match"}); } if(req.body.password.length < 8){ - return res.status(500).send("Password too short"); + return res.status(500).send({error: "Password too short"}); } if(req.body.isAdmin){ if(req.user){ if(!req.user.isAdmin){ - return res.status(500).send("You are not allowed to create an admin user"); + return res.status(500).send({error: "You are not allowed to create an admin user"}); } }else{ req.body.isAdmin = false @@ -72,7 +73,7 @@ exports.post = asyncHandler(async (req, res, next) => { if(req.body.isAgent){ if(req.user){ if(!req.user.isAgent){ - return res.status(500).send("You are not allowed to create an agent user"); + return res.status(500).send({error: "You are not allowed to create an agent user"}); } }else{ req.body.isAgent = false @@ -91,10 +92,10 @@ exports.post = asyncHandler(async (req, res, next) => { let createData = await userDb.post(user); - res.status(204).send(); + res.status(204).send({message: "User created"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -107,7 +108,7 @@ exports.put = asyncHandler(async (req, res, next) => { const User = await userDb.get(id); if(!User){ - return res.status(500).send("User not found"); + return res.status(500).send({error:"User not found"}); } // check password @@ -115,10 +116,10 @@ exports.put = asyncHandler(async (req, res, next) => { let salt = ""; if(req.body.password){ if(req.body.password != req.body.confirmPassword){ - return res.status(500).send("Passwords do not match"); + return res.status(500).send({error:"Passwords do not match"}); } if(req.body.password.length < 8){ - return res.status(500).send("Password too short"); + return res.status(500).send({error:"Password too short"}); } salt = crypto.randomBytes(16).toString('hex'); hashed_password = crypto.pbkdf2Sync(req.body.password, salt, 310000, 32, 'sha256').toString('hex'); @@ -129,12 +130,12 @@ exports.put = asyncHandler(async (req, res, next) => { if(req.body.isAdmin){ if(!req.user.isAdmin){ - return res.status(500).send("You are not allowed to create an admin user"); + return res.status(500).send({error:"You are not allowed to create an admin user"}); } } if(req.body.isAgent){ if(!req.user.isAdmin){ - return res.status(500).send("You are not allowed to create an agent user"); + return res.status(500).send({error:"You are not allowed to create an agent user"}); } } @@ -152,7 +153,7 @@ exports.put = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -168,7 +169,7 @@ exports.delete = asyncHandler(async (req, res, next) => { res.status(200).send({"message": "User deleted"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -180,7 +181,7 @@ exports.current = asyncHandler(async (req, res, next) => { res.status(200).send(user); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -188,10 +189,10 @@ exports.current = asyncHandler(async (req, res, next) => { exports.agentConnected = asyncHandler(async (req, res, next) => { try{ - res.status(200).send("OK"); + res.status(200).send({message: "Agent connected"}); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); @@ -203,7 +204,7 @@ exports.getAllUsers = asyncHandler(async (req, res, next) => { res.status(200).send(result); }catch(err){ console.log(err); - return res.status(500).send(err); + return res.status(500).send({error: err}); } }); \ No newline at end of file diff --git a/backend/services/saleDb.js b/backend/services/saleDb.js index fcb5280..83225c9 100644 --- a/backend/services/saleDb.js +++ b/backend/services/saleDb.js @@ -1,6 +1,8 @@ const { ObjectId } = require('mongodb'); const connectDb = require("./db"); +const { LotDb } = require("./lotDb"); +const lotDb = new LotDb(); const SaleDb = class { @@ -63,6 +65,148 @@ const SaleDb = class let result = await this.collection.findOne({idPlatform: String(idSalePlatform), platform: String(platformName)}); return result; } + + async processStats(id) + { + let Sale = await this.get(id); + + if(!Sale){ + console.error("Sale not found"); + throw new Error("Sale not found"); + } + console.log(Sale); + let Lots = await lotDb.getBySaleId(Sale._id.toString(),Sale.platform); + + let TimestampInSecond = (timestamp) => { + const stringTimestamp = String(timestamp); + if (stringTimestamp.length === 13) { + return timestamp / 1000; + } else if (stringTimestamp.length === 10) { + return timestamp; + } else { + return 0; + } + } + + // Create an array to hold the updated lots + let updatedLots = []; + let bidsDuration = 0; + + // process each lot + for (let lot of Lots) { + let highestBid, duration, percentageAboveUnderLow, percentageAboveUnderHigh = 0; + + // if bid + let nbrBids = 0; + if (Array.isArray(lot.Bids)) { + + nbrBids = lot.Bids.length; + + highestBid = lot.Bids.reduce((prev, current) => (prev.amount > current.amount) ? prev : current).amount; + let startTime = TimestampInSecond(lot.Bids[0].timestamp); + let endTime = TimestampInSecond(lot.Bids[lot.Bids.length-1].timestamp); + duration = endTime - startTime; + + // total time of bids + bidsDuration += duration; + + duration = duration.toFixed(0); + } + + // if auctioned + percentageAboveUnderLow = 0; + percentageAboveUnderHigh = 0; + if (lot.auctioned) { + + if(lot.EstimateLow){ + percentageAboveUnderLow = ((lot.auctioned.amount - lot.EstimateLow) / lot.EstimateLow) * 100; + } + + if(lot.EstimateHigh){ + percentageAboveUnderHigh = ((lot.auctioned.amount - lot.EstimateHigh) / lot.EstimateHigh) * 100; + } + } + + let lotPostProcessing = { + nbrBids: nbrBids, + highestBid: highestBid, + duration: duration, + percentageAboveUnderLow: percentageAboveUnderLow.toFixed(0), + percentageAboveUnderHigh: percentageAboveUnderHigh.toFixed(0) + } + lot.postProcessing = lotPostProcessing; + await lotDb.put(lot._id, lot); + + // Add the updated lot to the array + updatedLots.push(lot); + } + + // refresh with postprocess datas + Lots = updatedLots; + + + let startTime = 0; + if (Array.isArray(Lots[0].Bids)) { + startTime = TimestampInSecond(Lots[0].Bids[0].timestamp); + }else{ + startTime = TimestampInSecond(Lots[0].timestamp); + } + + let LastBid = [...Lots].reverse().find(lot => lot.auctioned !== undefined); + + let endTime = 0; + if (Array.isArray(LastBid.Bids)) { + endTime = TimestampInSecond(LastBid.Bids[LastBid.Bids.length-1].timestamp); + }else{ + endTime = TimestampInSecond(LastBid.timestamp); + } + console.log("Start Time: "+startTime); + console.log("End Time: "+endTime); + + let duration = (endTime-startTime).toFixed(0); + + let totalAmount = 0; + let unsoldLots = 0; + for (let lot of Lots) { + if (lot.auctioned) { + totalAmount += lot.auctioned.amount; + } else { + unsoldLots++; + } + } + + function calculateMedian(array) { + array.sort((a, b) => a - b); + let middleIndex = Math.floor(array.length / 2); + + if (array.length % 2 === 0) { // array has an even length + return (array[middleIndex - 1] + array[middleIndex]) / 2; + } else { // array has an odd length + return array[middleIndex]; + } + } + const amounts = Lots.map(lot => lot.auctioned?.amount).filter(Boolean); + + //console.error(Lots); + let postProcessing = { + nbrLots: Lots.length, + duration: duration, + bidsDuration: bidsDuration.toFixed(0), + durationPerLots: (duration/Lots.length).toFixed(0), + totalAmount: totalAmount, + averageAmount: (totalAmount/Lots.length).toFixed(2), + medianAmount: calculateMedian(amounts).toFixed(2), + minAmount: Math.min(...amounts).toFixed(2), + maxAmount: Math.max(...amounts).toFixed(2), + unsoldLots: unsoldLots, + unsoldPercentage: ((unsoldLots/Lots.length)*100).toFixed(2) + } + + console.log(postProcessing); + + Sale.postProcessing = postProcessing; + await this.put(Sale._id, Sale); + } } module.exports = { SaleDb }; \ No newline at end of file diff --git a/client/dist/angular-material-template/136.7ec3fccbaab9da95.js b/client/dist/angular-material-template/136.7ec3fccbaab9da95.js new file mode 100644 index 0000000..7705d4c --- /dev/null +++ b/client/dist/angular-material-template/136.7ec3fccbaab9da95.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[136],{8825:(S,h,n)=>{n.d(h,{g:()=>e});var _=n(6716),g=n(2116),t=n(7048);let e=(()=>{class l{constructor(i){this.http=i,this.ServeurURL=_.O.ServeurURL,this.ApiURL=this.ServeurURL+"/api"}getLotInfo(i){let r=encodeURIComponent(i);return this.http.get(this.ApiURL+"/lot/getInfos/"+r)}getPictures(i){let r=encodeURIComponent(i);return this.http.get(this.ApiURL+"/lot/getPictures/"+r)}getLotsBySale(i){return this.http.get(this.ApiURL+"/lot/getLotsBySale/"+i)}getLot(i){return this.http.get(this.ApiURL+"/lot/lot/"+i)}saveLot(i){return this.http.post(this.ApiURL+"/lot/lot",i)}updateLot(i){return this.http.put(this.ApiURL+"/lot/lot/"+i._id,i)}deleteLot(i){return this.http.delete(this.ApiURL+"/lot/lot/"+i)}static#t=this.\u0275fac=function(r){return new(r||l)(g.CoB(t.KK))};static#e=this.\u0275prov=g.wxM({token:l,factory:l.\u0275fac,providedIn:"root"})}return l})()},1136:(S,h,n)=>{n.r(h),n.d(h,{PicturesModule:()=>L});var _=n(1368),g=n(2992),t=n(3200),e=n(2116),l=n(4476),b=n(8825),i=n(6504),r=n(2276),R=n(7816),d=n(2080),D=n(7536),f=n(4060),M=n(2060),E=n(7564),A=n(5496);function U(a,v){1&a&&e.wR5(0,"p-image",10),2&a&&e.E7m("src",v.$implicit.itemImageSrc)("preview",!0)}function G(a,v){if(1&a&&(e.I0R(0,"div",11),e.wR5(1,"img",12),e.C$Y()),2&a){const s=v.$implicit;e.yG2(),e.E7m("src",s.thumbnailImageSrc,e.K6U)}}const O=()=>({"max-width":"640px"});function Y(a,v){if(1&a&&(e.I0R(0,"mat-card")(1,"mat-card-content")(2,"div",6)(3,"div",1)(4,"p-galleria",7),e.yuY(5,U,1,2,"ng-template",8)(6,G,2,1,"ng-template",9),e.C$Y()()()()()),2&a){const s=e.GaO();e.yG2(4),e.E7m("value",s.images)("responsiveOptions",s.responsiveOptions)("containerStyle",e.q4q(5,O))("numVisible",5)("thumbnailsPosition",s.position)}}const x=[{path:"",component:t.Y,children:[{path:"",component:(()=>{class a{constructor(s,o){this.titleService=s,this.apiLotService=o,this.valueChange=new e._w7,this.url="",this.images=[],this.position="top"}ngOnInit(){this.titleService.setTitle("Jucundus - Users"),this.responsiveOptions=[{breakpoint:"1024px",numVisible:5},{breakpoint:"768px",numVisible:3},{breakpoint:"560px",numVisible:1}]}getPictures(){this.apiLotService.getPictures(this.url).subscribe(s=>{this.images=[];const o=[...this.images];s.forEach(m=>{o.push({itemImageSrc:m,thumbnailImageSrc:m,alt:"img",title:"img1"})}),this.images=o,console.log(this.images),this.updateValue(this.images)})}updateValue(s){this.value=s,this.valueChange.emit(this.value)}openFullscreen(s){const o=s.target;o.requestFullscreen?o.requestFullscreen():o.mozRequestFullScreen?o.mozRequestFullScreen():o.webkitRequestFullscreen?o.webkitRequestFullscreen():o.msRequestFullscreen&&o.msRequestFullscreen()}static#t=this.\u0275fac=function(o){return new(o||a)(e.GI1(l.OY),e.GI1(b.g))};static#e=this.\u0275cmp=e.In1({type:a,selectors:[["app-pictures-page"]],inputs:{value:"value"},outputs:{valueChange:"valueChange"},decls:13,vars:2,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],[2,"margin-bottom","20px"],["matInput","","placeholder","Ex. https://drouot.com/...","maxlength","255",3,"ngModel","ngModelChange"],["mat-raised-button","","color","primary",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","center none"],[3,"value","responsiveOptions","containerStyle","numVisible","thumbnailsPosition"],["pTemplate","item"],["pTemplate","thumbnail"],["width","600",3,"src","preview"],[1,"grid","grid-nogutter","justify-content-center"],[2,"height","100px",3,"src"]],template:function(o,m){1&o&&(e.I0R(0,"div",0)(1,"div",1)(2,"mat-card",2)(3,"mat-card-content")(4,"h2"),e.OEk(5,"Pictures"),e.C$Y(),e.I0R(6,"mat-form-field")(7,"mat-label"),e.OEk(8,"Url"),e.C$Y(),e.I0R(9,"input",3),e.iHE("ngModelChange",function(I){return e.kNx(m.url,I)||(m.url=I),I}),e.C$Y()(),e.I0R(10,"button",4),e.qCj("click",function(){return m.getPictures()}),e.OEk(11,"Go"),e.C$Y()()(),e.yuY(12,Y,7,6,"mat-card",5),e.C$Y()()),2&o&&(e.yG2(9),e.OKB("ngModel",m.url),e.yG2(3),e.E7m("ngIf",m.images.length>0))},dependencies:[_.u_,i.ot,i.ue,i.Mj,i._G,r.sZ,r.qG,r.CA,R.Gw,d.SM,d.WK,D.yi,f.Up,f.w5,M.uM,E.U3,A.W],styles:["mat-icon[_ngcontent-%COMP%]{color:#c80000}"]})}return a})()}]}];let $=(()=>{class a{static#t=this.\u0275fac=function(o){return new(o||a)};static#e=this.\u0275mod=e.a4G({type:a});static#n=this.\u0275inj=e.s3X({imports:[g.qQ.forChild(x),g.qQ]})}return a})();var k=n(9588);let L=(()=>{class a{static#t=this.\u0275fac=function(o){return new(o||a)};static#e=this.\u0275mod=e.a4G({type:a});static#n=this.\u0275inj=e.s3X({imports:[_.MD,k.k,$]})}return a})()},3200:(S,h,n)=>{n.d(h,{Y:()=>B});var _=n(4548),g=n(6928),t=n(2116),e=n(1216),l=n(3548),b=n(119),i=n(9920),r=n(2992),R=n(1368),d=n(9964),D=n(1560),f=n(964),M=n(7816),E=n(6664),A=n(3584),U=n(3576),G=n(9092),O=n(7500),Y=n(6496),T=n(8156),x=n(2978);function $(C,F){1&C&&t.wR5(0,"mat-progress-bar",26)}const k=()=>["/"],L=()=>["/account/profile"],a=()=>["/auth/login"],v=()=>["/dashboard"],s=()=>["/sales"],o=()=>["/favorites"],m=()=>["/pictures"],K=()=>["/users"],I=()=>["/about"];let B=(()=>{class C{constructor(p,u,c,P,y){this.changeDetectorRef=p,this.media=u,this.spinnerService=c,this.authService=P,this.authGuard=y,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new g.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>p.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const p=this.authService.getCurrentUser();this.isAdmin=p.isAdmin,this.userName=p.fullName;const u=(0,_.k)(2e3,5e3);this.autoLogoutSubscription=u.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(u){return new(u||C)(t.GI1(t.kD9),t.GI1(e.iG),t.GI1(l.m),t.GI1(b.A),t.GI1(i.Q))};static#e=this.\u0275cmp=t.In1({type:C,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(u,c){if(1&u){const P=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(P);const W=t.Gew(39);return t.CGJ(W.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,$,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&u){const P=t.Gew(13),y=t.Gew(26);t.eAK("example-is-mobile",c.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,k)),t.yG2(4),t.E7m("matMenuTriggerFor",P),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",y),t.yG2(4),t.oRS(" ",c.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,L)),t.yG2(5),t.E7m("routerLink",t.q4q(26,a)),t.yG2(6),t.E7m("opened",!c.mobileQuery.matches)("mode",c.mobileQuery.matches?"over":"side")("fixedInViewport",c.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,v)),t.yG2(5),t.E7m("routerLink",t.q4q(28,s)),t.yG2(5),t.E7m("routerLink",t.q4q(29,o)),t.yG2(5),t.E7m("routerLink",t.q4q(30,m)),t.yG2(5),t.E7m("routerLink",t.q4q(31,K)),t.yG2(8),t.E7m("routerLink",t.q4q(32,L)),t.yG2(5),t.E7m("routerLink",t.q4q(33,a)),t.yG2(5),t.E7m("routerLink",t.q4q(34,I)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,c.spinnerService.visibility))}},dependencies:[r.cP,r.ER,r.LC,R.u_,d.Ar,d.WS,d.Uq,D.qL,f.EZ,M.Gw,M.um,E.G2,E.g9,E.Y1,E.Qp,A.k,U.Cs,G.wx,O.aM,O.OQ,O.yG,Y.a4,T.S,x.s9,R.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return C})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/168.23cd0d474d0816c1.js b/client/dist/angular-material-template/168.23cd0d474d0816c1.js new file mode 100644 index 0000000..e0f3e26 --- /dev/null +++ b/client/dist/angular-material-template/168.23cd0d474d0816c1.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[168],{6168:(f,d,n)=>{n.r(d),n.d(d,{IconsModule:()=>I});var p=n(1368),O=n(2992),t=n(3200),o=n(2116),u=n(2276),g=n(2080);const l=[{path:"",component:t.Y,children:[{path:"",component:(()=>{class a{constructor(){}static#t=this.\u0275fac=function(e){return new(e||a)};static#n=this.\u0275cmp=o.In1({type:a,selectors:[["app-icons"]],decls:9,vars:0,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["src","https://design.google.com/icons/"]],template:function(e,P){1&e&&(o.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-content")(4,"h2"),o.OEk(5,"Icons"),o.C$Y(),o.I0R(6,"iframe",2)(7,"p"),o.OEk(8,"Your browser does not support iframes."),o.C$Y()()()()()())},dependencies:[u.sZ,u.qG,u.CA,g.SM,g.WK],styles:["iframe[_ngcontent-%COMP%]{width:100%;height:650px}"]})}return a})()}]}];let v=(()=>{class a{static#t=this.\u0275fac=function(e){return new(e||a)};static#n=this.\u0275mod=o.a4G({type:a});static#a=this.\u0275inj=o.s3X({imports:[O.qQ.forChild(l),O.qQ]})}return a})();var _=n(9588);let I=(()=>{class a{static#t=this.\u0275fac=function(e){return new(e||a)};static#n=this.\u0275mod=o.a4G({type:a});static#a=this.\u0275inj=o.s3X({imports:[p.MD,_.k,v]})}return a})()},3200:(f,d,n)=>{n.d(d,{Y:()=>W});var p=n(4548),O=n(6928),t=n(2116),o=n(1216),u=n(3548),g=n(119),h=n(9920),l=n(2992),v=n(1368),_=n(9964),I=n(1560),a=n(964),R=n(7816),i=n(6664),e=n(3584),P=n(3576),D=n(9092),M=n(7500),b=n(6496),Y=n(8156),k=n(2978);function A(m,S){1&m&&t.wR5(0,"mat-progress-bar",26)}const G=()=>["/"],y=()=>["/account/profile"],L=()=>["/auth/login"],x=()=>["/dashboard"],T=()=>["/sales"],$=()=>["/favorites"],U=()=>["/pictures"],K=()=>["/users"],B=()=>["/about"];let W=(()=>{class m{constructor(c,r,s,E,C){this.changeDetectorRef=c,this.media=r,this.spinnerService=s,this.authService=E,this.authGuard=C,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new O.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>c.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const c=this.authService.getCurrentUser();this.isAdmin=c.isAdmin,this.userName=c.fullName;const r=(0,p.k)(2e3,5e3);this.autoLogoutSubscription=r.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(r){return new(r||m)(t.GI1(t.kD9),t.GI1(o.iG),t.GI1(u.m),t.GI1(g.A),t.GI1(h.Q))};static#n=this.\u0275cmp=t.In1({type:m,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(r,s){if(1&r){const E=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(E);const Q=t.Gew(39);return t.CGJ(Q.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,A,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&r){const E=t.Gew(13),C=t.Gew(26);t.eAK("example-is-mobile",s.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,G)),t.yG2(4),t.E7m("matMenuTriggerFor",E),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",C),t.yG2(4),t.oRS(" ",s.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,y)),t.yG2(5),t.E7m("routerLink",t.q4q(26,L)),t.yG2(6),t.E7m("opened",!s.mobileQuery.matches)("mode",s.mobileQuery.matches?"over":"side")("fixedInViewport",s.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,x)),t.yG2(5),t.E7m("routerLink",t.q4q(28,T)),t.yG2(5),t.E7m("routerLink",t.q4q(29,$)),t.yG2(5),t.E7m("routerLink",t.q4q(30,U)),t.yG2(5),t.E7m("routerLink",t.q4q(31,K)),t.yG2(8),t.E7m("routerLink",t.q4q(32,y)),t.yG2(5),t.E7m("routerLink",t.q4q(33,L)),t.yG2(5),t.E7m("routerLink",t.q4q(34,B)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,s.spinnerService.visibility))}},dependencies:[l.cP,l.ER,l.LC,v.u_,_.Ar,_.WS,_.Uq,I.qL,a.EZ,R.Gw,R.um,i.G2,i.g9,i.Y1,i.Qp,e.k,P.Cs,D.wx,M.aM,M.OQ,M.yG,b.a4,Y.S,k.s9,v.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return m})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/180.2cd83d3a045b34ec.js b/client/dist/angular-material-template/180.2cd83d3a045b34ec.js new file mode 100644 index 0000000..137e560 --- /dev/null +++ b/client/dist/angular-material-template/180.2cd83d3a045b34ec.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[180],{6180:(de,$,r)=>{r.r($),r.d($,{SalesModule:()=>me});var p=r(1368),C=r(2992),G=r(3200),u=r(2864),E=r(2304),t=r(2116),R=r(4104),d=r(2276),I=r(1560),g=r(7816),c=r(2080),v=r(3892);function T(e,n){1&e&&(t.I0R(0,"div",4),t.wR5(1,"p-skeleton",5)(2,"p-skeleton",6)(3,"p-skeleton",7)(4,"p-skeleton",6),t.C$Y())}function w(e,n){if(1&e&&(t.I0R(0,"div",4)(1,"p")(2,"strong"),t.OEk(3),t.C$Y()(),t.I0R(4,"p")(5,"mat-icon"),t.OEk(6,"event"),t.C$Y(),t.OEk(7),t.wVc(8,"date"),t.C$Y(),t.I0R(9,"p")(10,"mat-icon"),t.OEk(11,"account_balance"),t.C$Y(),t.OEk(12),t.C$Y(),t.I0R(13,"p")(14,"mat-icon"),t.OEk(15,"location_on"),t.C$Y(),t.OEk(16),t.C$Y()()),2&e){const a=t.GaO();t.yG2(3),t.cNF(a.SaleInfo.title),t.yG2(4),t.CAO("",t.g7$(8,5,a.date,"dd/MM/yyyy")," - ",a.hour,""),t.yG2(5),t.cNF(a.SaleInfo.saleHouseName),t.yG2(4),t.cNF(a.SaleInfo.location)}}let x=(()=>{class e{constructor(a,i,o){this.apiSaleService=a,this.dialogRef=i,this.data=o,this.url="",this.hour="",this.SaleInfo={_id:"",idPlatform:"",platform:"",url:"",title:"",date:"",location:"",saleHouseName:"",status:""},this.date=new Date}ngOnInit(){this.url=this.data.url,console.log(this.url),this.apiSaleService.getSaleInfos(this.url).subscribe(a=>{console.log(a),this.SaleInfo=a,this.date=E(this.SaleInfo.date).tz("Europe/Paris").toDate(),this.hour=E(this.SaleInfo.date).tz("Europe/Paris").format("HH:mm")})}save(){this.apiSaleService.saveSale({_id:{$oid:""},idPlatform:this.SaleInfo.idPlatform,platform:this.SaleInfo.platform,url:this.SaleInfo.url,title:this.SaleInfo.title,date:this.SaleInfo.date,location:this.SaleInfo.location,saleHouseName:this.SaleInfo.saleHouseName,status:"ready"}).subscribe(i=>{this.dialogRef.close(!0)})}cancel(){this.dialogRef.close(!1)}static#t=this.\u0275fac=function(i){return new(i||e)(t.GI1(R.o),t.GI1(u.yI),t.GI1(u.sR))};static#e=this.\u0275cmp=t.In1({type:e,selectors:[["loading-sale-dialog-dialog"]],decls:16,vars:2,consts:[["fxLayout","column","fxLayoutGap","5px",4,"ngIf"],["fxLayout","row","fxLayoutGap","5px"],["mat-button","","color","warn",3,"click"],["mat-raised-button","","color","primary",3,"click"],["fxLayout","column","fxLayoutGap","5px"],["width","250px","height","20px"],["width","150px","height","20px"],["width","200px","height","20px"]],template:function(i,o){1&i&&(t.I0R(0,"mat-card")(1,"mat-card-header")(2,"mat-card-title"),t.OEk(3,"Sale"),t.C$Y(),t.I0R(4,"mat-card-subtitle"),t.OEk(5,"Sale informations"),t.C$Y()(),t.I0R(6,"mat-card-content"),t.yuY(7,T,5,0,"div",0)(8,w,17,8,"div",0),t.C$Y()(),t.I0R(9,"mat-card")(10,"mat-card-content")(11,"div",1)(12,"button",2),t.qCj("click",function(){return o.cancel()}),t.OEk(13,"Cancel"),t.C$Y(),t.I0R(14,"button",3),t.qCj("click",function(){return o.save()}),t.OEk(15,"Save"),t.C$Y()()()()),2&i&&(t.yG2(7),t.E7m("ngIf",""==o.SaleInfo.title),t.yG2(),t.E7m("ngIf",""!=o.SaleInfo.title))},dependencies:[p.u_,d.sZ,d.cZ,I.qL,g.Gw,c.SM,c.WK,c.Uc,c.uK,c.gp,v.W,p.y],styles:[".example-card[_ngcontent-%COMP%]{margin-bottom:8px}"]})}return e})();var _=r(5908),O=r(4440),Y=r(4476),h=r(6504),b=r(9092),L=r(7536),P=r(4060),A=r(3576),s=r(8818),f=r(180),H=r(2096),M=r(8156);function U(e,n){if(1&e&&(t.OEk(0," Current Sales "),t.wR5(1,"span",21)),2&e){const a=t.GaO();t.yG2(),t._6D("matBadge",a.futureSales.length)}}function B(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Title "),t.C$Y())}function N(e,n){1&e&&(t.I0R(0,"div"),t.wR5(1,"mat-progress-bar",26),t.C$Y())}function F(e,n){if(1&e&&(t.I0R(0,"td",23)(1,"a",24),t.OEk(2),t.C$Y(),t.yuY(3,N,2,0,"div",25),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t._6D("href",a.url,t.K6U),t.yG2(),t.cNF(a.title),t.yG2(),t.E7m("ngIf","following"==a.status)}}function j(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Date "),t.C$Y())}function Q(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.wVc(2,"date"),t.wVc(3,"date"),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.CAO(" ",t.g7$(2,2,a.date,"dd/MM/yyyy")," - ",t.g7$(3,5,a.date,"HH:mm")," ")}}function K(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Sale House "),t.C$Y())}function V(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.saleHouseName," ")}}function J(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Plateforme "),t.C$Y())}function z(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.platform," ")}}function q(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Status "),t.C$Y())}function Z(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.status," ")}}function W(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Action "),t.C$Y())}function X(e,n){if(1&e){const a=t.KQA();t.I0R(0,"mat-option",29),t.qCj("click",function(){t.usT(a);const o=t.GaO().$implicit,l=t.GaO();return t.CGJ(l.prepareSale(o))}),t.I0R(1,"mat-icon"),t.OEk(2,"format_list_numbered"),t.C$Y(),t.OEk(3," Prepare"),t.C$Y()}}function tt(e,n){if(1&e){const a=t.KQA();t.I0R(0,"mat-option",29),t.qCj("click",function(){t.usT(a);const o=t.GaO().$implicit,l=t.GaO();return t.CGJ(l.followSale(o))}),t.I0R(1,"mat-icon"),t.OEk(2,"play_arrow"),t.C$Y(),t.OEk(3," Follow"),t.C$Y()}}function et(e,n){if(1&e){const a=t.KQA();t.I0R(0,"mat-option",29),t.qCj("click",function(){t.usT(a);const o=t.GaO().$implicit,l=t.GaO();return t.CGJ(l.stopFollowSale(o))}),t.I0R(1,"mat-icon"),t.OEk(2,"stop"),t.C$Y(),t.OEk(3," Stop Following"),t.C$Y()}}function at(e,n){if(1&e){const a=t.KQA();t.I0R(0,"mat-option",29),t.qCj("click",function(){t.usT(a);const o=t.GaO().$implicit,l=t.GaO();return t.CGJ(l.resetToReady(o._id))}),t.OEk(1,"Reset to Ready"),t.C$Y()}}function ot(e,n){if(1&e){const a=t.KQA();t.I0R(0,"td",23)(1,"mat-select",27),t.yuY(2,X,4,0,"mat-option",28)(3,tt,4,0,"mat-option",28)(4,et,4,0,"mat-option",28)(5,at,2,0,"mat-option",28),t.I0R(6,"mat-option",29),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.navigateToSaleDetail(l._id))}),t.I0R(7,"mat-icon"),t.OEk(8,"info"),t.C$Y(),t.OEk(9," Details"),t.C$Y(),t.I0R(10,"mat-option",29),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.postProcessing(l._id))}),t.I0R(11,"mat-icon"),t.OEk(12,"query_stats"),t.C$Y(),t.OEk(13," Post-processing"),t.C$Y(),t.I0R(14,"mat-option",29),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.deleteSale(l._id))}),t.I0R(15,"mat-icon"),t.OEk(16,"delete"),t.C$Y(),t.OEk(17," Delete"),t.C$Y()()()}if(2&e){const a=n.$implicit;t.yG2(2),t.E7m("ngIf","ready"==a.status),t.yG2(),t.E7m("ngIf","ready"==a.status||"endOnRequest"==a.status||"endOnError"==a.status),t.yG2(),t.E7m("ngIf","following"==a.status),t.yG2(),t.E7m("ngIf","following"==a.status)}}function nt(e,n){1&e&&t.wR5(0,"tr",30)}function it(e,n){1&e&&t.wR5(0,"tr",31)}function lt(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Title "),t.C$Y())}function st(e,n){if(1&e){const a=t.KQA();t.I0R(0,"td",23)(1,"a",29),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.navigateToSaleDetail(l._id))}),t.OEk(2),t.C$Y()()}if(2&e){const a=n.$implicit;t.yG2(2),t.cNF(a.title)}}function rt(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Date "),t.C$Y())}function mt(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.wVc(2,"date"),t.wVc(3,"date"),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.CAO(" ",t.g7$(2,2,a.date,"dd/MM/yyyy")," - ",t.g7$(3,5,a.date,"HH:mm")," ")}}function ct(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Sale House "),t.C$Y())}function dt(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.saleHouseName," ")}}function pt(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Plateforme "),t.C$Y())}function ut(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.platform," ")}}function ft(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Status "),t.C$Y())}function Ct(e,n){if(1&e&&(t.I0R(0,"td",23),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.status," ")}}function _t(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Post Processing "),t.C$Y())}function gt(e,n){if(1&e){const a=t.KQA();t.I0R(0,"td",23)(1,"button",32),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.postProcessing(l._id))}),t.I0R(2,"mat-icon"),t.OEk(3,"query_stats"),t.C$Y()()()}}function ht(e,n){1&e&&(t.I0R(0,"th",22),t.OEk(1," Delete "),t.C$Y())}function St(e,n){if(1&e){const a=t.KQA();t.I0R(0,"td",23)(1,"button",32),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.deleteSale(l._id))}),t.I0R(2,"mat-icon"),t.OEk(3,"delete"),t.C$Y()()()}}function yt(e,n){1&e&&t.wR5(0,"tr",30)}function Rt(e,n){1&e&&t.wR5(0,"tr",31)}let It=(()=>{class e{constructor(a,i,o,l,m){this.notificationService=a,this.router=i,this.dialog=o,this.apiSaleService=l,this.titleService=m,this.url="",this.displayedColumns=["title","date","house","plateform","status","action"],this.displayedColumnsOld=["title","date","house","plateform","status","postProcessing","delete"],this.futureSales=[],this.pastSales=[]}openLoadingSale(){this.dialog.open(x,{width:"300px",data:{url:this.url}}).afterClosed().subscribe(i=>{i&&(this.refreshSales(),this.url="",this.notificationService.openSnackBar("Sale Added"))})}refreshSales(){this.apiSaleService.getAllSale().subscribe(a=>{console.log(a);const i=_().startOf("day");this.futureSales=a.filter(o=>_(o.date).isAfter(i)).sort((o,l)=>_(o.date).isAfter(l.date)?1:-1),this.pastSales=a.filter(o=>_(o.date).isBefore(i)).sort((o,l)=>_(o.date).isAfter(l.date)?1:-1)})}trackByElementId(a,i){return i._id}ngOnInit(){this.titleService.setTitle("Jucundus - Sales"),this.refreshSales(),this.refreshSalesId=setInterval(()=>{this.refreshSales()},5e3)}ngOnDestroy(){this.refreshSalesId&&clearInterval(this.refreshSalesId)}prepareSale(a){this.apiSaleService.prepareSale(a).subscribe(i=>{console.log(i),this.refreshSales(),this.notificationService.openSnackBar("Prepare Sale")})}followSale(a){this.apiSaleService.followSale(a).subscribe(i=>{console.log(i),this.refreshSales(),this.notificationService.openSnackBar("Sale followed")})}stopFollowSale(a){a.status="askStop",this.apiSaleService.updateSale(a).subscribe(i=>{this.refreshSales(),this.notificationService.openSnackBar("Sale Stopping...")})}deleteSale(a){this.apiSaleService.deleteSale(a).subscribe(i=>{this.refreshSales(),this.notificationService.openSnackBar("Sale deleted")})}resetToReady(a){this.apiSaleService.resetSaleToReady(a)}navigateToSaleDetail(a){console.log(a),clearInterval(this.refreshSalesId),this.router.navigate(["/sales/detail",a])}postProcessing(a){this.apiSaleService.postProcessing(a).subscribe(i=>{this.notificationService.openSnackBar("Sale processing")})}static#t=this.\u0275fac=function(i){return new(i||e)(t.GI1(O.g),t.GI1(C.E5),t.GI1(u.qW),t.GI1(R.o),t.GI1(Y.OY))};static#e=this.\u0275cmp=t.In1({type:e,selectors:[["app-favorites-page"]],decls:70,vars:9,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["fxLayout","row","fxLayoutGap","5px"],["matInput","","placeholder","Ex. https://drouot.com/...","maxlength","255","st","",3,"ngModel","ngModelChange"],["mat-raised-button","","color","primary",3,"click"],[2,"margin-top","10px"],["mat-tab-label",""],["mat-table","",1,"mat-elevation-z8",3,"dataSource"],["matColumnDef","title"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","date"],["matColumnDef","house"],["matColumnDef","plateform"],["matColumnDef","status"],["matColumnDef","action"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefTrackBy"],["label","Old Sales"],["matColumnDef","postProcessing"],["matColumnDef","delete"],["matBadgeOverlap","false",2,"margin","5px",3,"matBadge"],["mat-header-cell",""],["mat-cell",""],["target","_blank",3,"href"],[4,"ngIf"],["mode","indeterminate"],["placeholder","Select action"],[3,"click",4,"ngIf"],[3,"click"],["mat-header-row",""],["mat-row",""],["mat-button","",3,"click"]],template:function(i,o){1&i&&(t.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-header")(4,"mat-card-title"),t.OEk(5,"New Sale"),t.C$Y()(),t.I0R(6,"mat-card-content")(7,"div",2)(8,"mat-form-field")(9,"mat-label"),t.OEk(10,"Url"),t.C$Y(),t.I0R(11,"input",3),t.iHE("ngModelChange",function(m){return t.kNx(o.url,m)||(o.url=m),m}),t.C$Y()(),t.I0R(12,"button",4),t.qCj("click",function(){return o.openLoadingSale()}),t.OEk(13,"Add"),t.C$Y()()()(),t.I0R(14,"mat-card",5)(15,"mat-card-header")(16,"mat-card-title"),t.OEk(17,"Sales"),t.C$Y()(),t.I0R(18,"mat-card-content")(19,"mat-tab-group")(20,"mat-tab"),t.yuY(21,U,2,1,"ng-template",6),t.I0R(22,"div",2)(23,"table",7),t.SAx(24,8),t.yuY(25,B,2,0,"th",9)(26,F,4,3,"td",10),t.k70(),t.SAx(27,11),t.yuY(28,j,2,0,"th",9)(29,Q,4,8,"td",10),t.k70(),t.SAx(30,12),t.yuY(31,K,2,0,"th",9)(32,V,2,1,"td",10),t.k70(),t.SAx(33,13),t.yuY(34,J,2,0,"th",9)(35,z,2,1,"td",10),t.k70(),t.SAx(36,14),t.yuY(37,q,2,0,"th",9)(38,Z,2,1,"td",10),t.k70(),t.SAx(39,15),t.yuY(40,W,2,0,"th",9)(41,ot,18,4,"td",10),t.k70(),t.yuY(42,nt,1,0,"tr",16)(43,it,1,0,"tr",17),t.C$Y()()(),t.I0R(44,"mat-tab",18)(45,"div",2)(46,"table",7),t.SAx(47,8),t.yuY(48,lt,2,0,"th",9)(49,st,3,1,"td",10),t.k70(),t.SAx(50,11),t.yuY(51,rt,2,0,"th",9)(52,mt,4,8,"td",10),t.k70(),t.SAx(53,12),t.yuY(54,ct,2,0,"th",9)(55,dt,2,1,"td",10),t.k70(),t.SAx(56,13),t.yuY(57,pt,2,0,"th",9)(58,ut,2,1,"td",10),t.k70(),t.SAx(59,14),t.yuY(60,ft,2,0,"th",9)(61,Ct,2,1,"td",10),t.k70(),t.SAx(62,19),t.yuY(63,_t,2,0,"th",9)(64,gt,4,0,"td",10),t.k70(),t.SAx(65,20),t.yuY(66,ht,2,0,"th",9)(67,St,4,0,"td",10),t.k70(),t.yuY(68,yt,1,0,"tr",16)(69,Rt,1,0,"tr",17),t.C$Y()()()()()()()()),2&i&&(t.yG2(11),t.OKB("ngModel",o.url),t.yG2(12),t.E7m("dataSource",o.futureSales),t.yG2(19),t.E7m("matHeaderRowDef",o.displayedColumns),t.yG2(),t.E7m("matRowDefColumns",o.displayedColumns)("matRowDefTrackBy",o.trackByElementId),t.yG2(3),t.E7m("dataSource",o.pastSales),t.yG2(22),t.E7m("matHeaderRowDef",o.displayedColumnsOld),t.yG2(),t.E7m("matRowDefColumns",o.displayedColumnsOld)("matRowDefTrackBy",o.trackByElementId))},dependencies:[p.u_,h.ot,h.ue,h.Mj,h._G,d.sZ,d.cZ,d.qG,d.CA,I.qL,g.Gw,c.SM,c.WK,c.Uc,c.gp,b.wx,L.yi,P.Up,P.w5,A.I5,s.wL,s.ie,s.aG,s.Af,s.uc,s.gx,s.qC,s.cX,s.yC,s._I,f.i0,f.aJ,f._q,H.kX,M.S,p.y],styles:["mat-icon[_ngcontent-%COMP%]{color:#c80000}"]})}return e})();var S=r(2156),k=r(8059),D=r(8825),y=r(6664);function kt(e,n){1&e&&(t.I0R(0,"th",14),t.OEk(1,"Amount"),t.C$Y())}function $t(e,n){if(1&e&&(t.I0R(0,"td",15),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.amount," ")}}function Et(e,n){1&e&&(t.I0R(0,"th",14),t.OEk(1," Type "),t.C$Y())}function Ot(e,n){if(1&e&&(t.I0R(0,"td",15),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.auctioned_type," ")}}function Yt(e,n){1&e&&(t.I0R(0,"th",14),t.OEk(1," Time "),t.C$Y())}function Pt(e,n){if(1&e&&(t.I0R(0,"td",15),t.OEk(1),t.wVc(2,"date"),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",t.I7O(2,1,a.timestamp,"HH:mm:ss","Europe/Paris")," ")}}function Dt(e,n){1&e&&t.wR5(0,"tr",16)}function Gt(e,n){1&e&&t.wR5(0,"tr",17)}const vt=()=>[5,10,15];let Tt=(()=>{class e{constructor(a,i,o,l){this.apiLotService=a,this.dialogRef=i,this.sanitizer=o,this.data=l,this.displayedColumns=["amount","type","time"],this.bids=new s._c,this.id=l.id,this.Lot={_id:{$oid:""},idPlatform:"",platform:"",timestamp:"",lotNumber:"",RawData:{},sale_id:{$oid:""},Bids:[],title:"",description:"",auctioned:{timestamp:"",amount:0,auctioned_type:"",sold:!1}}}ngOnInit(){this.apiLotService.getLot(this.id).subscribe(a=>{this.Lot=a,this.bids=new s._c(a.Bids??[]),this.bids.paginator=this.paginator??null})}getSafeDescription(){return this.Lot&&this.Lot.description?this.sanitizer.bypassSecurityTrustHtml(this.Lot.description.replace(/\n/g,"
")):""}cancel(){this.dialogRef.close(!1)}static#t=this.\u0275fac=function(i){return new(i||e)(t.GI1(D.g),t.GI1(u.yI),t.GI1(Y.mI),t.GI1(u.sR))};static#e=this.\u0275cmp=t.In1({type:e,selectors:[["lot-detail-dialog-dialog"]],viewQuery:function(i,o){if(1&i&&t.CC$(S.Qb,5),2&i){let l;t.wto(l=t.Gqi())&&(o.paginator=l.first)}},decls:47,vars:10,consts:[["fxLayout","row","fxLayoutGap","5px"],["matListItemTitle",""],["matListItemLine",""],["matListItemLine","",3,"innerHTML"],["mat-table","",1,"mat-elevation-z8",3,"dataSource"],["matColumnDef","amount"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","type"],["matColumnDef","time"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["showFirstLastButtons","",3,"pageSizeOptions"],["mat-button","","color","warn",3,"click"],["mat-header-cell",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(i,o){1&i&&(t.I0R(0,"mat-card")(1,"mat-card-header")(2,"mat-card-title"),t.OEk(3,"Lot"),t.C$Y(),t.I0R(4,"mat-card-subtitle"),t.OEk(5,"Lot informations"),t.C$Y()(),t.I0R(6,"mat-card-content")(7,"div",0)(8,"mat-list")(9,"mat-list-item")(10,"span",1),t.OEk(11,"#"),t.C$Y(),t.I0R(12,"span",2),t.OEk(13),t.C$Y()(),t.I0R(14,"mat-list-item")(15,"span",1),t.OEk(16,"Title"),t.C$Y(),t.I0R(17,"span",2),t.OEk(18),t.C$Y()(),t.I0R(19,"mat-list-item")(20,"span",1),t.OEk(21,"Description"),t.C$Y(),t.wR5(22,"span",3),t.C$Y(),t.I0R(23,"mat-list-item")(24,"span",1),t.OEk(25,"Estimate"),t.C$Y(),t.I0R(26,"span",2),t.OEk(27),t.C$Y()()()(),t.I0R(28,"div",0)(29,"table",4),t.SAx(30,5),t.yuY(31,kt,2,0,"th",6)(32,$t,2,1,"td",7),t.k70(),t.SAx(33,8),t.yuY(34,Et,2,0,"th",6)(35,Ot,2,1,"td",7),t.k70(),t.SAx(36,9),t.yuY(37,Yt,2,0,"th",6)(38,Pt,3,5,"td",7),t.k70(),t.yuY(39,Dt,1,0,"tr",10)(40,Gt,1,0,"tr",11),t.C$Y()(),t.wR5(41,"mat-paginator",12),t.C$Y()(),t.I0R(42,"mat-card")(43,"mat-card-content")(44,"div",0)(45,"button",13),t.qCj("click",function(){return o.cancel()}),t.OEk(46,"Close"),t.C$Y()()()()),2&i&&(t.yG2(13),t.cNF(o.Lot.lotNumber),t.yG2(5),t.cNF(o.Lot.title),t.yG2(4),t.E7m("innerHTML",o.getSafeDescription(),t.E3n),t.yG2(5),t.CAO("Low: ",o.Lot.EstimateLow," | High: ",o.Lot.EstimateHigh," "),t.yG2(2),t.E7m("dataSource",o.bids),t.yG2(10),t.E7m("matHeaderRowDef",o.displayedColumns),t.yG2(),t.E7m("matRowDefColumns",o.displayedColumns),t.yG2(),t.E7m("pageSizeOptions",t.q4q(9,vt)))},dependencies:[d.sZ,d.cZ,g.Gw,y.oL,y.g9,y.U9,y.UV,c.SM,c.WK,c.Uc,c.uK,c.gp,s.wL,s.ie,s.aG,s.Af,s.uc,s.gx,s.qC,s.cX,s.yC,s._I,S.Qb,p.y],styles:[".example-card[_ngcontent-%COMP%]{margin-bottom:8px}"]})}return e})();var wt=r(2978);function xt(e,n){1&e&&t.OEk(0," Lots ")}function bt(e,n){1&e&&(t.I0R(0,"th",35),t.OEk(1,"#"),t.C$Y())}function Lt(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.lotNumber," ")}}function At(e,n){1&e&&(t.I0R(0,"th",37),t.OEk(1," Picture "),t.C$Y())}function Ht(e,n){if(1&e&&(t.I0R(0,"td",36),t.wR5(1,"img",38),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.E7m("src",a.picture,t.K6U)}}function Mt(e,n){1&e&&(t.I0R(0,"th",39),t.OEk(1," Title "),t.C$Y())}function Ut(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.title?a.title:"Lot "+a.lotNumber," ")}}function Bt(e,n){1&e&&(t.I0R(0,"th",40),t.OEk(1," Estimate Low "),t.C$Y())}function Nt(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.EstimateLow?a.EstimateLow:"-"," ")}}function Ft(e,n){1&e&&(t.I0R(0,"th",41),t.OEk(1," Estimate High "),t.C$Y())}function jt(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",a.EstimateHigh?a.EstimateHigh:"-"," ")}}function Qt(e,n){1&e&&(t.I0R(0,"th",42),t.OEk(1," Price "),t.C$Y())}const Kt=e=>({"bold-text":e});function Vt(e,n){if(1&e&&(t.I0R(0,"td",36)(1,"span",43),t.OEk(2),t.C$Y()()),2&e){const a=n.$implicit;t.yG2(),t.E7m("ngClass",t.S45(2,Kt,a.auctionedAmount>0)),t.yG2(),t.cNF(a.auctionedAmount>0?a.auctionedAmount:"-")}}function Jt(e,n){1&e&&(t.I0R(0,"th",44),t.OEk(1," nbrBids "),t.C$Y())}function zt(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",null==a.postProcessing?null:a.postProcessing.nbrBids," ")}}function qt(e,n){1&e&&(t.I0R(0,"th",45),t.OEk(1," Duration "),t.C$Y())}function Zt(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",null==a.postProcessing?null:a.postProcessing.duration," s ")}}function Wt(e,n){1&e&&(t.I0R(0,"th",46),t.OEk(1,"Above/Under Low"),t.C$Y())}function Xt(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",null==a.postProcessing?null:a.postProcessing.percentageAboveUnderLow," % ")}}function te(e,n){1&e&&(t.I0R(0,"th",47),t.OEk(1,"Above/Under High"),t.C$Y())}function ee(e,n){if(1&e&&(t.I0R(0,"td",36),t.OEk(1),t.C$Y()),2&e){const a=n.$implicit;t.yG2(),t.oRS(" ",null==a.postProcessing?null:a.postProcessing.percentageAboveUnderHigh," % ")}}function ae(e,n){1&e&&t.wR5(0,"tr",48)}function oe(e,n){if(1&e){const a=t.KQA();t.I0R(0,"tr",49),t.qCj("click",function(){const l=t.usT(a).$implicit,m=t.GaO();return t.CGJ(m.openDetailLot(l._id))}),t.C$Y()}}const ne=()=>[10,50,100],le=[{path:"",component:G.Y,children:[{path:"",component:It},{path:"detail/:id",component:(()=>{class e{constructor(a,i,o,l,m,ce){this.route=a,this.notificationService=i,this.router=o,this.dialog=l,this.apiSaleService=m,this.apiLotService=ce,this.id="",this.displayedColumns=["lotNum","picture","title","estimateLow","estimateHigh","price","nbrBids","duration","percentageAboveUnderLow","percentageAboveUnderHigh"],this.lotList=new s._c,this.Sale={_id:{$oid:""},idPlatform:"",platform:"",url:"",title:"",date:"",location:"",saleHouseName:"",status:"",postProcessing:{nbrLots:0,duration:0,bidsDuration:0,durationPerLots:"",totalAmount:0,averageAmount:"",medianAmount:"",minAmount:"",maxAmount:"",unsoldLots:0,unsoldPercentage:""}}}ngOnInit(){this.route.paramMap.subscribe(a=>{this.id=a.get("id"),this.getSale(),this.getLotList()})}ngAfterViewInit(){}getSale(){this.apiSaleService.getSale(this.id).subscribe(a=>{this.Sale=a})}getLotList(){this.apiLotService.getLotsBySale(this.id).subscribe(a=>{a=a.map(o=>({...o,bidsLength:o.postProcessing?o.postProcessing.nbrBids:0}));let i="";a=(a=(a=(a=(a=a.map(o=>{switch(o.platform){case"drouot":return i="https://cdn.drouot.com/d/image/lot?size=phare&path="+o.RawData?.photos?.[0]?.path,{...o,picture:i??""};case"interencheres":return i=o.RawData?.medias?.[0]?.lg??"",{...o,picture:i};default:return{...o,picture:""}}})).map(o=>({...o,duration:o.postProcessing?o.postProcessing.duration:0}))).map(o=>({...o,percentageAboveUnderLow:o.postProcessing?o.postProcessing.percentageAboveUnderLow:0}))).map(o=>({...o,percentageAboveUnderHigh:o.postProcessing?o.postProcessing.percentageAboveUnderHigh:0}))).map(o=>({...o,auctionedAmount:o.auctioned?.amount?o.auctioned?.amount:0})),console.log(a),this.lotList=new s._c(a),this.lotList.paginator=this.paginator??null,this.lotList.sort=this.sort??null})}getTimePerLot(a){const i=Math.floor(a%3600/60);let l="";return i>0&&(l+=i+"m "),l+=a%60+"s",l}parseToNumber(a){return parseFloat(a||"0")}convertSecondsToHHMM(a){const i=Math.floor(a/3600),o=Math.floor(a%3600/60);return`${i.toString().padStart(2,"0")}:${o.toString().padStart(2,"0")}`}openDetailLot(a){this.dialog.open(Tt,{width:"80%",data:{id:a}})}downloadExcelStatsFile(a){this.apiSaleService.getSaleStatXsl(a).subscribe(i=>{const o=window.URL.createObjectURL(i),l=document.createElement("a");l.href=o,l.download="SaleStats.xlsx",l.click()})}static#t=this.\u0275fac=function(i){return new(i||e)(t.GI1(C.gV),t.GI1(O.g),t.GI1(C.E5),t.GI1(u.qW),t.GI1(R.o),t.GI1(D.g))};static#e=this.\u0275cmp=t.In1({type:e,selectors:[["app-favorites-page"]],viewQuery:function(i,o){if(1&i&&(t.CC$(S.Qb,5),t.CC$(k.E9,5)),2&i){let l;t.wto(l=t.Gqi())&&(o.paginator=l.first),t.wto(l=t.Gqi())&&(o.sort=l.first)}},decls:106,vars:51,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["fxLayout","row","fxLayoutGap","5px"],["fxLayout","row","fxLayoutGap","40px"],["fxLayout","column","fxLayoutGap","2px"],["fxLayout","row","fxLayoutGap","2px"],["mat-raised-button","","color","primary",3,"click"],[2,"margin-top","10px"],["mat-tab-label",""],["mat-table","","matSort","",1,"mat-elevation-z8",3,"dataSource"],["matColumnDef","lotNum"],["mat-header-cell","","mat-sort-header","lotNumber",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","picture"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","title"],["mat-header-cell","","mat-sort-header","title",4,"matHeaderCellDef"],["matColumnDef","estimateLow"],["mat-header-cell","","mat-sort-header","EstimateLow",4,"matHeaderCellDef"],["matColumnDef","estimateHigh"],["mat-header-cell","","mat-sort-header","EstimateHigh",4,"matHeaderCellDef"],["matColumnDef","price"],["mat-header-cell","","mat-sort-header","auctionedAmount",4,"matHeaderCellDef"],["matColumnDef","nbrBids"],["mat-header-cell","","mat-sort-header","bidsLength",4,"matHeaderCellDef"],["matColumnDef","duration"],["mat-header-cell","","mat-sort-header","duration",4,"matHeaderCellDef"],["matColumnDef","percentageAboveUnderLow"],["mat-header-cell","","mat-sort-header","percentageAboveUnderLow",4,"matHeaderCellDef"],["matColumnDef","percentageAboveUnderHigh"],["mat-header-cell","","mat-sort-header","percentageAboveUnderHigh",4,"matHeaderCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",3,"click",4,"matRowDef","matRowDefColumns"],["showFirstLastButtons","",3,"pageSizeOptions"],["label","Graphs"],["mat-header-cell","","mat-sort-header","lotNumber"],["mat-cell",""],["mat-header-cell",""],["alt","Picture",2,"height","60px",3,"src"],["mat-header-cell","","mat-sort-header","title"],["mat-header-cell","","mat-sort-header","EstimateLow"],["mat-header-cell","","mat-sort-header","EstimateHigh"],["mat-header-cell","","mat-sort-header","auctionedAmount"],[3,"ngClass"],["mat-header-cell","","mat-sort-header","bidsLength"],["mat-header-cell","","mat-sort-header","duration"],["mat-header-cell","","mat-sort-header","percentageAboveUnderLow"],["mat-header-cell","","mat-sort-header","percentageAboveUnderHigh"],["mat-header-row",""],["mat-row","",3,"click"]],template:function(i,o){if(1&i&&(t.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-header")(4,"mat-card-title"),t.OEk(5,"Sale Detail"),t.C$Y()(),t.I0R(6,"mat-card-content")(7,"div",2)(8,"h2"),t.OEk(9),t.C$Y()(),t.I0R(10,"div",3)(11,"div",4)(12,"p")(13,"mat-icon"),t.OEk(14,"event"),t.C$Y(),t.OEk(15),t.wVc(16,"date"),t.wVc(17,"date"),t.C$Y(),t.I0R(18,"p")(19,"mat-icon"),t.OEk(20,"account_balance"),t.C$Y(),t.OEk(21),t.C$Y(),t.I0R(22,"p")(23,"mat-icon"),t.OEk(24,"location_on"),t.C$Y(),t.OEk(25),t.C$Y()(),t.I0R(26,"div",4)(27,"p")(28,"mat-icon"),t.OEk(29,"tag"),t.C$Y(),t.OEk(30),t.C$Y(),t.I0R(31,"p")(32,"mat-icon"),t.OEk(33,"hourglass_bottom"),t.C$Y(),t.OEk(34),t.C$Y(),t.I0R(35,"p")(36,"mat-icon"),t.OEk(37,"hourglass_bottom"),t.C$Y(),t.OEk(38),t.C$Y()(),t.I0R(39,"div",4)(40,"p"),t.OEk(41),t.wVc(42,"currency"),t.C$Y(),t.I0R(43,"p"),t.OEk(44),t.wVc(45,"currency"),t.C$Y(),t.I0R(46,"p"),t.OEk(47),t.wVc(48,"currency"),t.C$Y()(),t.I0R(49,"div",4)(50,"p"),t.OEk(51),t.wVc(52,"currency"),t.C$Y(),t.I0R(53,"p"),t.OEk(54),t.wVc(55,"currency"),t.C$Y(),t.I0R(56,"p"),t.OEk(57),t.C$Y()()(),t.I0R(58,"div",5)(59,"button",6),t.qCj("click",function(){return o.downloadExcelStatsFile(o.id)}),t.OEk(60,"Excel"),t.C$Y()()()(),t.I0R(61,"mat-card",7)(62,"mat-card-header")(63,"mat-card-title"),t.OEk(64,"Lots"),t.C$Y()(),t.I0R(65,"mat-card-content")(66,"mat-tab-group")(67,"mat-tab"),t.yuY(68,xt,1,0,"ng-template",8),t.I0R(69,"div",2)(70,"table",9),t.SAx(71,10),t.yuY(72,bt,2,0,"th",11)(73,Lt,2,1,"td",12),t.k70(),t.SAx(74,13),t.yuY(75,At,2,0,"th",14)(76,Ht,2,1,"td",12),t.k70(),t.SAx(77,15),t.yuY(78,Mt,2,0,"th",16)(79,Ut,2,1,"td",12),t.k70(),t.SAx(80,17),t.yuY(81,Bt,2,0,"th",18)(82,Nt,2,1,"td",12),t.k70(),t.SAx(83,19),t.yuY(84,Ft,2,0,"th",20)(85,jt,2,1,"td",12),t.k70(),t.SAx(86,21),t.yuY(87,Qt,2,0,"th",22)(88,Vt,3,4,"td",12),t.k70(),t.SAx(89,23),t.yuY(90,Jt,2,0,"th",24)(91,zt,2,1,"td",12),t.k70(),t.SAx(92,25),t.yuY(93,qt,2,0,"th",26)(94,Zt,2,1,"td",12),t.k70(),t.SAx(95,27),t.yuY(96,Wt,2,0,"th",28)(97,Xt,2,1,"td",12),t.k70(),t.SAx(98,29),t.yuY(99,te,2,0,"th",30)(100,ee,2,1,"td",12),t.k70(),t.yuY(101,ae,1,0,"tr",31)(102,oe,1,0,"tr",32),t.C$Y()(),t.wR5(103,"mat-paginator",33),t.C$Y(),t.I0R(104,"mat-tab",34),t.wR5(105,"div",2),t.C$Y()()()()()()),2&i){let l,m;t.yG2(9),t.cNF(o.Sale.title),t.yG2(6),t.CAO(" ",t.g7$(16,19,o.Sale.date,"dd/MM/yyyy")," - ",t.g7$(17,22,o.Sale.date,"HH:mm")," | "),t.yG2(6),t.oRS(" ",o.Sale.saleHouseName,""),t.yG2(4),t.oRS(" ",o.Sale.location,""),t.yG2(5),t.oRS("",null==o.Sale.postProcessing?null:o.Sale.postProcessing.nbrLots," Lots"),t.yG2(4),t.cNF(o.convertSecondsToHHMM(null!==(l=null==o.Sale.postProcessing?null:o.Sale.postProcessing.bidsDuration)&&void 0!==l?l:0)),t.yG2(4),t.oRS("/Lot ",o.getTimePerLot(o.parseToNumber(null!==(m=null==o.Sale.postProcessing?null:o.Sale.postProcessing.durationPerLots)&&void 0!==m?m:"0")),""),t.yG2(3),t.oRS("Total amount: ",t.wB1(42,25,null==o.Sale.postProcessing?null:o.Sale.postProcessing.totalAmount,"EUR","symbol","1.2-2"),""),t.yG2(3),t.oRS("Max amount: ",t.wB1(45,30,null==o.Sale.postProcessing?null:o.Sale.postProcessing.maxAmount,"EUR","symbol","1.2-2"),""),t.yG2(3),t.oRS("Min amount: ",t.wB1(48,35,null==o.Sale.postProcessing?null:o.Sale.postProcessing.minAmount,"EUR","symbol","1.2-2"),""),t.yG2(4),t.oRS("Average amount: ",t.wB1(52,40,null==o.Sale.postProcessing?null:o.Sale.postProcessing.averageAmount,"EUR","symbol","1.2-2"),""),t.yG2(3),t.oRS("Median amount: ",t.wB1(55,45,null==o.Sale.postProcessing?null:o.Sale.postProcessing.medianAmount,"EUR","symbol","1.2-2"),""),t.yG2(3),t.CAO("Unsold: ",null==o.Sale.postProcessing?null:o.Sale.postProcessing.unsoldLots," (",null==o.Sale.postProcessing?null:o.Sale.postProcessing.unsoldPercentage,"%)"),t.yG2(13),t.E7m("dataSource",o.lotList),t.yG2(31),t.E7m("matHeaderRowDef",o.displayedColumns),t.yG2(),t.E7m("matRowDefColumns",o.displayedColumns),t.yG2(),t.E7m("pageSizeOptions",t.q4q(50,ne))}},dependencies:[p.QF,d.sZ,d.cZ,d.qG,d.CA,wt.K_,I.qL,g.Gw,c.SM,c.WK,c.Uc,c.gp,s.wL,s.ie,s.aG,s.Af,s.uc,s.gx,s.qC,s.cX,s.yC,s._I,f.i0,f.aJ,f._q,S.Qb,k.E9,k.e6,p.cf,p.y],styles:[".mat-mdc-row[_ngcontent-%COMP%] .mat-mdc-cell[_ngcontent-%COMP%]{border-bottom:1px solid transparent;border-top:1px solid transparent;cursor:pointer}.mat-mdc-row[_ngcontent-%COMP%]:hover .mat-mdc-cell[_ngcontent-%COMP%]{border-color:currentColor}"]})}return e})()}]}];let se=(()=>{class e{static#t=this.\u0275fac=function(i){return new(i||e)};static#e=this.\u0275mod=t.a4G({type:e});static#a=this.\u0275inj=t.s3X({imports:[C.qQ.forChild(le),C.qQ]})}return e})();var re=r(9588);let me=(()=>{class e{static#t=this.\u0275fac=function(i){return new(i||e)};static#e=this.\u0275mod=t.a4G({type:e});static#a=this.\u0275inj=t.s3X({imports:[p.MD,re.k,se]})}return e})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/184.76d8d415636f0a06.js b/client/dist/angular-material-template/184.76d8d415636f0a06.js new file mode 100644 index 0000000..ff67e50 --- /dev/null +++ b/client/dist/angular-material-template/184.76d8d415636f0a06.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[184],{2184:(x,h,a)=>{a.r(h),a.d(h,{DashboardModule:()=>y});var p=a(1368),v=a(2992),t=a(3200),n=a(2116),M=a(4440),I=a(119),P=a(4476),d=a(8656),m=a(2276),_=a(1560);const f=[{path:"",component:t.Y,children:[{path:"",component:(()=>{class e{constructor(i,o,E,L){this.notificationService=i,this.authService=o,this.titleService=E,this.logger=L}ngOnInit(){this.currentUser=this.authService.getCurrentUser(),this.titleService.setTitle("Jucundus - Dashboard"),this.logger.log("Dashboard loaded"),setTimeout(()=>{this.notificationService.openSnackBar("Welcome!")})}static#t=this.\u0275fac=function(o){return new(o||e)(n.GI1(M.g),n.GI1(I.A),n.GI1(P.OY),n.GI1(d.QF))};static#a=this.\u0275cmp=n.In1({type:e,selectors:[["app-dashboard-home"]],decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["fxFlex","50%",1,"text-center","no-records","animate"]],template:function(o,E){1&o&&(n.I0R(0,"div",0)(1,"div",1)(2,"div",0)(3,"h2"),n.OEk(4),n.C$Y()(),n.I0R(5,"div",0)(6,"div",2)(7,"mat-icon"),n.OEk(8,"dashboard"),n.C$Y(),n.I0R(9,"p"),n.OEk(10,"This is the dashboard."),n.C$Y()(),n.wR5(11,"mat-icon"),n.C$Y()()()),2&o&&(n.yG2(4),n.oRS("Welcome back, ",E.currentUser.fullName,"!"))},dependencies:[m.sZ,m.qG,m.CA,_.qL],styles:[".single-cards[_ngcontent-%COMP%]{margin:20px 0}.single-card[_ngcontent-%COMP%] .mat-card-avatar[_ngcontent-%COMP%]{width:50px;height:50px}.single-card[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:55px}.projects-card[_ngcontent-%COMP%] > mat-card-content[_ngcontent-%COMP%]{max-height:400px;overflow:auto}"]})}return e})()}]}];let O=(()=>{class e{static#t=this.\u0275fac=function(o){return new(o||e)};static#a=this.\u0275mod=n.a4G({type:e});static#n=this.\u0275inj=n.s3X({imports:[v.qQ.forChild(f),v.qQ]})}return e})();var u=a(9588);let y=(()=>{class e{static#t=this.\u0275fac=function(o){return new(o||e)};static#a=this.\u0275mod=n.a4G({type:e});static#n=this.\u0275inj=n.s3X({imports:[p.MD,O,u.k]})}return e})()},3200:(x,h,a)=>{a.d(h,{Y:()=>K});var p=a(4548),v=a(6928),t=a(2116),n=a(1216),M=a(3548),I=a(119),P=a(9920),d=a(2992),m=a(1368),_=a(9964),R=a(1560),f=a(964),O=a(7816),u=a(6664),y=a(3584),e=a(3576),G=a(9092),i=a(7500),o=a(6496),E=a(8156),L=a(2978);function Y(l,Q){1&l&&t.wR5(0,"mat-progress-bar",26)}const A=()=>["/"],D=()=>["/account/profile"],b=()=>["/auth/login"],T=()=>["/dashboard"],k=()=>["/sales"],$=()=>["/favorites"],U=()=>["/pictures"],B=()=>["/users"],W=()=>["/about"];let K=(()=>{class l{constructor(c,r,s,g,C){this.changeDetectorRef=c,this.media=r,this.spinnerService=s,this.authService=g,this.authGuard=C,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new v.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>c.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const c=this.authService.getCurrentUser();this.isAdmin=c.isAdmin,this.userName=c.fullName;const r=(0,p.k)(2e3,5e3);this.autoLogoutSubscription=r.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(r){return new(r||l)(t.GI1(t.kD9),t.GI1(n.iG),t.GI1(M.m),t.GI1(I.A),t.GI1(P.Q))};static#a=this.\u0275cmp=t.In1({type:l,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(r,s){if(1&r){const g=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(g);const S=t.Gew(39);return t.CGJ(S.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,Y,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&r){const g=t.Gew(13),C=t.Gew(26);t.eAK("example-is-mobile",s.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,A)),t.yG2(4),t.E7m("matMenuTriggerFor",g),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",C),t.yG2(4),t.oRS(" ",s.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,D)),t.yG2(5),t.E7m("routerLink",t.q4q(26,b)),t.yG2(6),t.E7m("opened",!s.mobileQuery.matches)("mode",s.mobileQuery.matches?"over":"side")("fixedInViewport",s.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,T)),t.yG2(5),t.E7m("routerLink",t.q4q(28,k)),t.yG2(5),t.E7m("routerLink",t.q4q(29,$)),t.yG2(5),t.E7m("routerLink",t.q4q(30,U)),t.yG2(5),t.E7m("routerLink",t.q4q(31,B)),t.yG2(8),t.E7m("routerLink",t.q4q(32,D)),t.yG2(5),t.E7m("routerLink",t.q4q(33,b)),t.yG2(5),t.E7m("routerLink",t.q4q(34,W)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,s.spinnerService.visibility))}},dependencies:[d.cP,d.ER,d.LC,m.u_,_.Ar,_.WS,_.Uq,R.qL,f.EZ,O.Gw,O.um,u.G2,u.g9,u.Y1,u.Qp,y.k,e.Cs,G.wx,i.aM,i.OQ,i.yG,o.a4,E.S,L.s9,m.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return l})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/206.df318e426aa62a63.js b/client/dist/angular-material-template/206.df318e426aa62a63.js new file mode 100644 index 0000000..624282f --- /dev/null +++ b/client/dist/angular-material-template/206.df318e426aa62a63.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[206],{1206:(at,R,l)=>{l.r(R),l.d(R,{FavoritesModule:()=>tt});var f=l(1368),u=l(2992),Y=l(3200),t=l(2116),k=l(6716),F=l(7048);let E=(()=>{class o{constructor(i){this.http=i,this.ServeurURL=k.O.ServeurURL,this.ApiURL=this.ServeurURL+"/api"}saveFavorite(i,n,a,r,e,v,y){return this.http.post(this.ApiURL+"/favorite/save",{lotInfo:i,saleInfo:n,picture:a,dateTime:r,buyProject:e,maxPrice:v,Note:y})}getAllFavorite(){return this.http.get(this.ApiURL+"/favorite/getAll")}static#t=this.\u0275fac=function(n){return new(n||o)(t.CoB(F.KK))};static#e=this.\u0275prov=t.wxM({token:o,factory:o.\u0275fac,providedIn:"root"})}return o})();var g=l(6504),d=l(2276),M=l(7816),m=l(2080),_=l(7536),h=l(4060),c=l(8818);function G(o,s){1&o&&(t.I0R(0,"th",15),t.OEk(1," Picture "),t.C$Y())}function S(o,s){if(1&o&&(t.I0R(0,"td",16),t.wR5(1,"img",17),t.C$Y()),2&o){const i=s.$implicit;t.yG2(),t.E7m("src",i.picture,t.K6U)}}function P(o,s){1&o&&(t.I0R(0,"th",15),t.OEk(1," Lot "),t.C$Y())}function N(o,s){if(1&o&&(t.I0R(0,"td",16),t.OEk(1),t.C$Y()),2&o){const i=s.$implicit;t.yG2(),t.oRS(" ",i.lotInfo.lotNumber," ")}}function w(o,s){1&o&&(t.I0R(0,"th",15),t.OEk(1," Title "),t.C$Y())}function x(o,s){if(1&o&&(t.I0R(0,"td",16),t.OEk(1),t.C$Y()),2&o){const i=s.$implicit;t.yG2(),t.oRS(" ",i.lotInfo.title," ")}}function T(o,s){1&o&&(t.I0R(0,"th",15),t.OEk(1," Estimate "),t.C$Y())}function L(o,s){if(1&o&&(t.I0R(0,"td",16),t.OEk(1),t.C$Y()),2&o){const i=s.$implicit;t.yG2(),t.CAO(" ",i.lotInfo.EstimateLow," - ",i.lotInfo.EstimateHigh," ")}}function b(o,s){1&o&&t.wR5(0,"tr",18)}function $(o,s){1&o&&t.wR5(0,"tr",19)}let H=(()=>{class o{constructor(i,n){this.router=i,this.apiFavoriteService=n,this.url="",this.displayedColumns=["picture","lot","title","estimate"],this.dataSource=[]}openDialog(){this.router.navigate(["favorites/new",this.url])}ngOnInit(){this.apiFavoriteService.getAllFavorite().subscribe(i=>{this.dataSource=i})}static#t=this.\u0275fac=function(n){return new(n||o)(t.GI1(u.E5),t.GI1(E))};static#e=this.\u0275cmp=t.In1({type:o,selectors:[["app-favorites-page"]],decls:35,vars:4,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["fxLayout","row","fxLayoutGap","5px"],["matInput","","placeholder","Ex. https://drouot.com/...","maxlength","255","st","",3,"ngModel","ngModelChange"],["mat-raised-button","","color","primary",3,"click"],[2,"margin-top","10px"],["mat-table","",1,"mat-elevation-z8",3,"dataSource"],["matColumnDef","picture"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","lot"],["matColumnDef","title"],["matColumnDef","estimate"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["alt","Picture",2,"width","50px",3,"src"],["mat-header-row",""],["mat-row",""]],template:function(n,a){1&n&&(t.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-header")(4,"mat-card-title"),t.OEk(5,"New Lot"),t.C$Y()(),t.I0R(6,"mat-card-content")(7,"div",2)(8,"mat-form-field")(9,"mat-label"),t.OEk(10,"Url"),t.C$Y(),t.I0R(11,"input",3),t.iHE("ngModelChange",function(e){return t.kNx(a.url,e)||(a.url=e),e}),t.C$Y()(),t.I0R(12,"button",4),t.qCj("click",function(){return a.openDialog()}),t.OEk(13,"Add"),t.C$Y()()()(),t.I0R(14,"mat-card",5)(15,"mat-card-header")(16,"mat-card-title"),t.OEk(17,"Favorites"),t.C$Y()(),t.I0R(18,"mat-card-content")(19,"div",2)(20,"table",6),t.SAx(21,7),t.yuY(22,G,2,0,"th",8)(23,S,2,1,"td",9),t.k70(),t.SAx(24,10),t.yuY(25,P,2,0,"th",8)(26,N,2,1,"td",9),t.k70(),t.SAx(27,11),t.yuY(28,w,2,0,"th",8)(29,x,2,1,"td",9),t.k70(),t.SAx(30,12),t.yuY(31,T,2,0,"th",8)(32,L,2,2,"td",9),t.k70(),t.yuY(33,b,1,0,"tr",13)(34,$,1,0,"tr",14),t.C$Y()()()()()()),2&n&&(t.yG2(11),t.OKB("ngModel",a.url),t.yG2(9),t.E7m("dataSource",a.dataSource),t.yG2(13),t.E7m("matHeaderRowDef",a.displayedColumns),t.yG2(),t.E7m("matRowDefColumns",a.displayedColumns))},dependencies:[g.ot,g.ue,g.Mj,g._G,d.sZ,d.cZ,d.qG,d.CA,M.Gw,m.SM,m.WK,m.Uc,m.gp,_.yi,h.Up,h.w5,c.wL,c.ie,c.aG,c.Af,c.uc,c.gx,c.qC,c.cX,c.yC,c._I],styles:["mat-icon[_ngcontent-%COMP%]{color:#c80000}"]})}return o})();var p=l(2864),O=l(6232);function D(o,s){if(1&o){const i=t.KQA();t.I0R(0,"mat-grid-tile")(1,"div",2)(2,"img",3),t.qCj("click",function(){const r=t.usT(i).$implicit,e=t.GaO();return t.CGJ(e.onSelectImage(r))}),t.C$Y()()()}if(2&o){const i=s.$implicit;t.yG2(2),t._6D("src",i,t.K6U)}}let K=(()=>{class o{constructor(i,n){this.dialogRef=i,this.data=n,this.images=[]}ngOnInit(){this.images=this.data.images,console.log(this.images)}onSelectImage(i){this.dialogRef.close(i)}onNoClick(){this.dialogRef.close()}static#t=this.\u0275fac=function(n){return new(n||o)(t.GI1(p.yI),t.GI1(p.sR))};static#e=this.\u0275cmp=t.In1({type:o,selectors:[["change-image-dialog-dialog"]],decls:9,vars:1,consts:[["cols","2"],[4,"ngFor","ngForOf"],[2,"width","300px","height","300px"],[2,"width","100%","height","100%","object-fit","contain",3,"src","click"]],template:function(n,a){1&n&&(t.I0R(0,"mat-card")(1,"mat-card-header")(2,"mat-card-title"),t.OEk(3,"Picture"),t.C$Y(),t.I0R(4,"mat-card-subtitle"),t.OEk(5,"select the picture"),t.C$Y()(),t.I0R(6,"mat-card-content")(7,"mat-grid-list",0),t.yuY(8,D,3,1,"mat-grid-tile",1),t.C$Y()()()),2&n&&(t.yG2(8),t.E7m("ngForOf",a.images))},dependencies:[f.ay,O.ae,O.cn,m.SM,m.WK,m.Uc,m.uK,m.gp],styles:[".example-card[_ngcontent-%COMP%]{margin-bottom:8px}"]})}return o})();var C=l(2304),A=l(4440),B=l(8825),U=l(4104),j=l(1560),I=l(9120),W=l(3840),z=l(3892);function Q(o,s){1&o&&(t.I0R(0,"div"),t.wR5(1,"p-skeleton",27),t.C$Y())}function Z(o,s){if(1&o){const i=t.KQA();t.I0R(0,"div")(1,"img",28),t.qCj("click",function(){t.usT(i);const a=t.GaO();return t.CGJ(a.openChangeImage())}),t.C$Y()()}if(2&o){const i=t.GaO();t.yG2(),t.E7m("src",i.picture,t.K6U)}}const J=[{path:"",component:Y.Y,children:[{path:"",component:H},{path:"new/:url",component:(()=>{class o{constructor(i,n,a,r,e,v,y){this.dialog=i,this.ActivatedRoute=n,this.router=a,this.notificationService=r,this.apiLotService=e,this.apiSaleService=v,this.apiFavoriteService=y,this.url="",this.images=[],this.picture="",this.hour="",this.buyProject=!1,this.maxPrice=0,this.Note="",this.ActivatedRoute.params.subscribe(et=>{this.url=et.url}),this.lotInfo={idLotInterencheres:"",url:"",title:"",lotNumber:"",EstimateLow:0,EstimateHigh:0,Description:"",feesText:"",fees:"",saleInfo:{idSaleInterencheres:"",url:""}},this.SaleInfo={_id:"",idPlatform:"",platform:"",url:"",title:"",date:"",location:"",saleHouseName:"",status:""},this.date=new Date}ngOnInit(){console.log("url: "+this.url),this.apiLotService.getLotInfo(this.url).subscribe(i=>{console.log(i),this.lotInfo=i,this.apiSaleService.getSaleInfos(this.lotInfo.saleInfo.url).subscribe(n=>{console.log(n),this.SaleInfo=n,this.date=C(this.SaleInfo.date).tz("Europe/Paris").toDate(),this.hour=C(this.SaleInfo.date).tz("Europe/Paris").format("HH:mm"),this.notificationService.openSnackBar("Loaded: "+i.title)})}),this.apiLotService.getPictures(this.url).subscribe(i=>{this.images=i,this.picture=i[0]})}openChangeImage(){this.dialog.open(K,{width:"300px",data:{images:this.images}}).afterClosed().subscribe(n=>{n&&(this.picture=n)})}cancel(){this.router.navigate(["favorites"])}save(){let i=C.tz(`${this.date.toISOString().split("T")[0]}T${this.hour}`,"Europe/Paris").format();this.apiFavoriteService.saveFavorite(this.lotInfo,this.SaleInfo,this.picture,i,this.buyProject,this.maxPrice,this.Note).subscribe(n=>{this.notificationService.openSnackBar("Favorite saved"),this.router.navigate(["favorites"])})}static#t=this.\u0275fac=function(n){return new(n||o)(t.GI1(p.qW),t.GI1(u.gV),t.GI1(u.E5),t.GI1(A.g),t.GI1(B.g),t.GI1(U.o),t.GI1(E))};static#e=this.\u0275cmp=t.In1({type:o,selectors:[["app-new-favorites-page"]],decls:104,vars:19,consts:[[1,"dialog-card"],["fxLayout","row","fxLayoutGap","5px"],["fxLayout","column","fxLayoutGap","10px","fxFlex",""],[2,"width","100%"],["matInput","","maxlength","255",3,"ngModel","ngModelChange"],[2,"width","40%"],["matInput","","maxlength","30",3,"ngModel","ngModelChange"],["fxLayout","column","fxLayoutAlign","center center","fxFlex",""],[4,"ngIf"],["matInput","","maxlength","2",3,"ngModel","ngModelChange"],["matSuffix",""],[2,"width","50%"],["fxLayout","row"],["matInput","",2,"height","200px",3,"ngModel","ngModelChange"],["fxLayout","column","fxFlex","60"],["appearance","fill"],["matInput","",3,"matDatepicker","ngModel","ngModelChange"],["matSuffix","",3,"for"],["picker",""],["fxLayout","column","fxFlex","40"],["matInput","","type","time","maxlength","5",3,"ngModel","ngModelChange"],[3,"ngModel","ngModelChange"],[2,"width","30%"],["matInput","","maxlength","255","type","number",3,"ngModel","ngModelChange"],["matInput","",2,"height","100px",3,"ngModel","ngModelChange"],["mat-button","","color","warn",3,"click"],["mat-raised-button","","color","primary",3,"click"],["width","150px","height","150px"],[2,"width","150px","height","150px",3,"src","click"]],template:function(n,a){if(1&n&&(t.I0R(0,"mat-card",0)(1,"mat-card-header")(2,"mat-card-title"),t.OEk(3,"Lot"),t.C$Y(),t.I0R(4,"mat-card-subtitle"),t.OEk(5,"Lot information"),t.C$Y()(),t.I0R(6,"mat-card-content")(7,"div",1)(8,"div",2)(9,"mat-form-field",3)(10,"mat-label"),t.OEk(11,"Title"),t.C$Y(),t.I0R(12,"input",4),t.iHE("ngModelChange",function(e){return t.kNx(a.lotInfo.title,e)||(a.lotInfo.title=e),e}),t.C$Y()(),t.I0R(13,"mat-form-field",5)(14,"mat-label"),t.OEk(15,"Lot"),t.C$Y(),t.I0R(16,"input",6),t.iHE("ngModelChange",function(e){return t.kNx(a.lotInfo.lotNumber,e)||(a.lotInfo.lotNumber=e),e}),t.C$Y()()(),t.I0R(17,"div",7),t.yuY(18,Q,2,0,"div",8)(19,Z,2,1,"div",8),t.C$Y()(),t.I0R(20,"div",1)(21,"mat-form-field",5)(22,"mat-label"),t.OEk(23,"Fees"),t.C$Y(),t.I0R(24,"input",9),t.iHE("ngModelChange",function(e){return t.kNx(a.lotInfo.fees,e)||(a.lotInfo.fees=e),e}),t.C$Y(),t.I0R(25,"mat-icon",10),t.OEk(26,"percent"),t.C$Y()(),t.I0R(27,"p",3),t.OEk(28),t.C$Y()(),t.I0R(29,"div",1)(30,"mat-form-field",11)(31,"mat-label"),t.OEk(32,"Estimate Low"),t.C$Y(),t.I0R(33,"input",6),t.iHE("ngModelChange",function(e){return t.kNx(a.lotInfo.EstimateLow,e)||(a.lotInfo.EstimateLow=e),e}),t.C$Y()(),t.I0R(34,"mat-form-field",11)(35,"mat-label"),t.OEk(36,"Estimate High"),t.C$Y(),t.I0R(37,"input",6),t.iHE("ngModelChange",function(e){return t.kNx(a.lotInfo.EstimateHigh,e)||(a.lotInfo.EstimateHigh=e),e}),t.C$Y()()(),t.I0R(38,"div",12)(39,"mat-form-field",3)(40,"mat-label"),t.OEk(41,"Description"),t.C$Y(),t.I0R(42,"textarea",13),t.iHE("ngModelChange",function(e){return t.kNx(a.lotInfo.Description,e)||(a.lotInfo.Description=e),e}),t.C$Y()()()()(),t.I0R(43,"mat-card",0)(44,"mat-card-header")(45,"mat-card-title"),t.OEk(46,"Sale"),t.C$Y(),t.I0R(47,"mat-card-subtitle"),t.OEk(48,"Sale information"),t.C$Y()(),t.I0R(49,"mat-card-content")(50,"div",1)(51,"mat-form-field",3)(52,"mat-label"),t.OEk(53,"Title"),t.C$Y(),t.I0R(54,"input",4),t.iHE("ngModelChange",function(e){return t.kNx(a.SaleInfo.title,e)||(a.SaleInfo.title=e),e}),t.C$Y()()(),t.I0R(55,"div",1)(56,"div",14)(57,"mat-form-field",15)(58,"mat-label"),t.OEk(59,"Choose a date"),t.C$Y(),t.I0R(60,"input",16),t.iHE("ngModelChange",function(e){return t.kNx(a.date,e)||(a.date=e),e}),t.C$Y(),t.wR5(61,"mat-datepicker-toggle",17)(62,"mat-datepicker",null,18),t.C$Y()(),t.I0R(64,"div",19)(65,"mat-form-field")(66,"mat-label"),t.OEk(67,"Hour"),t.C$Y(),t.I0R(68,"input",20),t.iHE("ngModelChange",function(e){return t.kNx(a.hour,e)||(a.hour=e),e}),t.C$Y()()()(),t.I0R(69,"div",1)(70,"mat-form-field",11)(71,"mat-label"),t.OEk(72,"location"),t.C$Y(),t.I0R(73,"input",4),t.iHE("ngModelChange",function(e){return t.kNx(a.SaleInfo.location,e)||(a.SaleInfo.location=e),e}),t.C$Y()()(),t.I0R(74,"div",1)(75,"mat-form-field",3)(76,"mat-label"),t.OEk(77,"Sale House"),t.C$Y(),t.I0R(78,"input",4),t.iHE("ngModelChange",function(e){return t.kNx(a.SaleInfo.saleHouseName,e)||(a.SaleInfo.saleHouseName=e),e}),t.C$Y()()()()(),t.I0R(79,"mat-card",0)(80,"mat-card-header")(81,"mat-card-title"),t.OEk(82,"Perso"),t.C$Y()(),t.I0R(83,"mat-card-content")(84,"div",1)(85,"mat-checkbox",21),t.iHE("ngModelChange",function(e){return t.kNx(a.buyProject,e)||(a.buyProject=e),e}),t.OEk(86,"Buy Project"),t.C$Y()(),t.I0R(87,"div",1)(88,"mat-form-field",22)(89,"mat-label"),t.OEk(90,"Max price"),t.C$Y(),t.I0R(91,"input",23),t.iHE("ngModelChange",function(e){return t.kNx(a.maxPrice,e)||(a.maxPrice=e),e}),t.C$Y()()(),t.I0R(92,"div",12)(93,"mat-form-field",3)(94,"mat-label"),t.OEk(95,"Note"),t.C$Y(),t.I0R(96,"textarea",24),t.iHE("ngModelChange",function(e){return t.kNx(a.Note,e)||(a.Note=e),e}),t.C$Y()()()()(),t.I0R(97,"mat-card")(98,"mat-card-content")(99,"div",1)(100,"button",25),t.qCj("click",function(){return a.cancel()}),t.OEk(101,"Cancel"),t.C$Y(),t.I0R(102,"button",26),t.qCj("click",function(){return a.save()}),t.OEk(103,"Save"),t.C$Y()()()()),2&n){const r=t.Gew(63);t.yG2(12),t.OKB("ngModel",a.lotInfo.title),t.yG2(4),t.OKB("ngModel",a.lotInfo.lotNumber),t.yG2(2),t.E7m("ngIf",0==a.images.length),t.yG2(),t.E7m("ngIf",a.images.length>0),t.yG2(5),t.OKB("ngModel",a.lotInfo.fees),t.yG2(4),t.cNF(a.lotInfo.feesText),t.yG2(5),t.OKB("ngModel",a.lotInfo.EstimateLow),t.yG2(4),t.OKB("ngModel",a.lotInfo.EstimateHigh),t.yG2(5),t.OKB("ngModel",a.lotInfo.Description),t.yG2(12),t.OKB("ngModel",a.SaleInfo.title),t.yG2(6),t.E7m("matDatepicker",r),t.OKB("ngModel",a.date),t.yG2(),t.E7m("for",r),t.yG2(7),t.OKB("ngModel",a.hour),t.yG2(5),t.OKB("ngModel",a.SaleInfo.location),t.yG2(5),t.OKB("ngModel",a.SaleInfo.saleHouseName),t.yG2(7),t.OKB("ngModel",a.buyProject),t.yG2(6),t.OKB("ngModel",a.maxPrice),t.yG2(5),t.OKB("ngModel",a.Note)}},dependencies:[f.u_,g.ot,g.O4,g.ue,g.Mj,g._G,d.sZ,d.cZ,d.qG,d.CA,j.qL,M.Gw,m.SM,m.WK,m.Uc,m.uK,m.gp,_.yi,h.Up,h.w5,h.Gm,I.SU,I.Ul,I.yu,W.WK,z.W],styles:["mat-icon[_ngcontent-%COMP%]{color:#c80000}"]})}return o})()}]}];let V=(()=>{class o{static#t=this.\u0275fac=function(n){return new(n||o)};static#e=this.\u0275mod=t.a4G({type:o});static#a=this.\u0275inj=t.s3X({imports:[u.qQ.forChild(J),u.qQ]})}return o})();var q=l(9588);let tt=(()=>{class o{static#t=this.\u0275fac=function(n){return new(n||o)};static#e=this.\u0275mod=t.a4G({type:o});static#a=this.\u0275inj=t.s3X({imports:[f.MD,q.k,V]})}return o})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/228.09b3735f8b2791e2.js b/client/dist/angular-material-template/228.09b3735f8b2791e2.js new file mode 100644 index 0000000..930ddc3 --- /dev/null +++ b/client/dist/angular-material-template/228.09b3735f8b2791e2.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[228],{4847:(B,E,a)=>{a.r(E),a.d(E,{AccountModule:()=>U});var _=a(1368),P=a(2992),t=a(3200),e=a(2116),b=a(4476),u=a(2276),O=a(2080),h=a(180),i=a(6504),p=a(119),L=a(8656),G=a(3548),y=a(4440),f=a(1560),Y=a(7816),x=a(7536),C=a(4060);function g(n,R){1&n&&(e.I0R(0,"mat-error"),e.OEk(1," Please enter a your current password "),e.C$Y())}function k(n,R){1&n&&(e.I0R(0,"mat-error"),e.OEk(1," Please enter a new password "),e.C$Y())}function D(n,R){1&n&&(e.I0R(0,"mat-error"),e.OEk(1," Please confirm your new password "),e.C$Y())}let $=(()=>{class n{constructor(r,s,o,m){this.authService=r,this.logger=s,this.spinnerService=o,this.notificationService=m,this.hideCurrentPassword=!0,this.hideNewPassword=!0}ngOnInit(){this.form=new i.k1({currentPassword:new i.yM("",i.AQ.required),newPassword:new i.yM("",i.AQ.required),newPasswordConfirm:new i.yM("",i.AQ.required)}),this.form.get("currentPassword")?.valueChanges.subscribe(r=>{this.currentPassword=r}),this.form.get("newPassword")?.valueChanges.subscribe(r=>{this.newPassword=r}),this.form.get("newPasswordConfirm")?.valueChanges.subscribe(r=>{this.newPasswordConfirm=r}),this.spinnerService.visibility.subscribe(r=>{this.disableSubmit=r})}changePassword(){if(this.newPassword!==this.newPasswordConfirm)return void this.notificationService.openSnackBar("New passwords do not match.");const r=this.authService.getCurrentUser().email;this.authService.changePassword(r,this.currentPassword,this.newPassword).subscribe(s=>{this.logger.info(`User ${r} changed password.`),this.form.reset(),this.notificationService.openSnackBar("Your password has been changed.")},s=>{this.notificationService.openSnackBar(s.error)})}static#t=this.\u0275fac=function(s){return new(s||n)(e.GI1(p.A),e.GI1(L.QF),e.GI1(G.m),e.GI1(y.g))};static#e=this.\u0275cmp=e.In1({type:n,selectors:[["app-change-password"]],decls:22,vars:11,consts:[[3,"formGroup"],["fxLayout","row"],["fxFlex","40%","fxFlex.md","60%","fxFlex.sm","50%","fxFlex.xs","100%"],[1,"full-width"],["matInput","","placeholder","Current Password","formControlName","currentPassword","autocomplete","current-password",3,"type"],["matSuffix","",3,"click"],[4,"ngIf"],["matInput","","placeholder","New Password","formControlName","newPassword","autocomplete","new-password",3,"type"],["matInput","","placeholder","Confirm New Password","formControlName","newPasswordConfirm","autocomplete","new-password",3,"type"],["mat-raised-button","","color","primary",3,"disabled","click"]],template:function(s,o){1&s&&(e.I0R(0,"form",0)(1,"p"),e.OEk(2,"Use the form below to change your password."),e.C$Y(),e.I0R(3,"div",1)(4,"div",2)(5,"mat-form-field",3),e.wR5(6,"input",4),e.I0R(7,"mat-icon",5),e.qCj("click",function(){return o.hideCurrentPassword=!o.hideCurrentPassword}),e.OEk(8),e.C$Y(),e.yuY(9,g,2,0,"mat-error",6),e.C$Y(),e.I0R(10,"mat-form-field",3),e.wR5(11,"input",7),e.I0R(12,"mat-icon",5),e.qCj("click",function(){return o.hideNewPassword=!o.hideNewPassword}),e.OEk(13),e.C$Y(),e.yuY(14,k,2,0,"mat-error",6),e.C$Y(),e.I0R(15,"mat-form-field",3),e.wR5(16,"input",8),e.I0R(17,"mat-icon",5),e.qCj("click",function(){return o.hideNewPassword=!o.hideNewPassword}),e.OEk(18),e.C$Y(),e.yuY(19,D,2,0,"mat-error",6),e.C$Y(),e.I0R(20,"button",9),e.qCj("click",function(){return o.changePassword()}),e.OEk(21,"Save"),e.C$Y()()()()),2&s&&(e.E7m("formGroup",o.form),e.yG2(6),e.E7m("type",o.hideCurrentPassword?"password":"text"),e.yG2(2),e.oRS(" ",o.hideCurrentPassword?"visibility":"visibility_off"," "),e.yG2(),e.E7m("ngIf",o.form.controls.currentPassword.hasError("required")),e.yG2(2),e.E7m("type",o.hideNewPassword?"password":"text"),e.yG2(2),e.oRS(" ",o.hideNewPassword?"visibility":"visibility_off"," "),e.yG2(),e.E7m("ngIf",o.form.controls.newPassword.hasError("required")),e.yG2(2),e.E7m("type",o.hideNewPassword?"password":"text"),e.yG2(2),e.oRS(" ",o.hideNewPassword?"visibility":"visibility_off"," "),e.yG2(),e.E7m("ngIf",o.form.controls.newPasswordConfirm.hasError("required")),e.yG2(),e.E7m("disabled",o.form.invalid||o.disableSubmit))},dependencies:[_.u_,i.sz,i.ot,i.ue,i.u,i.uW,i.Wo,u.sZ,u.CA,f.qL,Y.Gw,x.yi,C.Up,C.wJ,C.Gm],styles:[".password-rules[_ngcontent-%COMP%] .mat-divider[_ngcontent-%COMP%]{position:unset!important}.container[_ngcontent-%COMP%]{padding-top:20px}"]})}return n})(),A=(()=>{class n{constructor(r){this.authService=r,this.fullName="",this.email="",this.alias=""}ngOnInit(){this.fullName=this.authService.getCurrentUser().fullName,this.email=this.authService.getCurrentUser().email}static#t=this.\u0275fac=function(s){return new(s||n)(e.GI1(p.A))};static#e=this.\u0275cmp=e.In1({type:n,selectors:[["app-profile-details"]],decls:8,vars:4,consts:[[1,"profile-card"],["src","assets/images/user.png",3,"alt"],[1,"title"]],template:function(s,o){1&s&&(e.I0R(0,"div",0),e.wR5(1,"img",1),e.I0R(2,"h2",2),e.OEk(3),e.C$Y(),e.I0R(4,"label"),e.OEk(5),e.C$Y(),e.I0R(6,"label"),e.OEk(7),e.C$Y()()),2&s&&(e.yG2(),e.E7m("alt",o.fullName),e.yG2(2),e.oRS(" ",o.fullName," "),e.yG2(2),e.oRS(" ",o.alias," "),e.yG2(2),e.oRS(" ",o.email," "))},styles:[".profile-card[_ngcontent-%COMP%]{text-align:center}"]})}return n})();const w=[{path:"",component:t.Y,children:[{path:"profile",component:(()=>{class n{constructor(r){this.titleService=r}ngOnInit(){this.titleService.setTitle("Jucundus - Account")}static#t=this.\u0275fac=function(s){return new(s||n)(e.GI1(b.OY))};static#e=this.\u0275cmp=e.In1({type:n,selectors:[["app-account-page"]],decls:14,vars:0,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["fxLayout","row","fxLayout.sm","column","fxLayout.xs","column"],["fxFlex","30%","fxFlex.sm","95%","fxFlex.xs","95%"],["fxFlex",""],["fxFlex","65%","fxFlex.sm","95%","fxFlex.xs","950%"],["label","Change Password"]],template:function(s,o){1&s&&(e.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-content")(4,"h2"),e.OEk(5,"My Profile"),e.C$Y(),e.I0R(6,"div",2)(7,"div",3),e.wR5(8,"app-profile-details"),e.C$Y(),e.wR5(9,"div",4),e.I0R(10,"div",5)(11,"mat-tab-group")(12,"mat-tab",6),e.wR5(13,"app-change-password"),e.C$Y()()()()()()()())},dependencies:[u.sZ,u.qG,u.CA,O.SM,O.WK,h.aJ,h._q,$,A]})}return n})()}]}];let I=(()=>{class n{static#t=this.\u0275fac=function(s){return new(s||n)};static#e=this.\u0275mod=e.a4G({type:n});static#a=this.\u0275inj=e.s3X({imports:[P.qQ.forChild(w),P.qQ]})}return n})();var S=a(9588);let U=(()=>{class n{static#t=this.\u0275fac=function(s){return new(s||n)};static#e=this.\u0275mod=e.a4G({type:n});static#a=this.\u0275inj=e.s3X({imports:[_.MD,S.k,I]})}return n})()},3200:(B,E,a)=>{a.d(E,{Y:()=>o});var _=a(4548),P=a(6928),t=a(2116),e=a(1216),b=a(3548),u=a(119),O=a(9920),h=a(2992),i=a(1368),p=a(9964),L=a(1560),G=a(964),y=a(7816),f=a(6664),Y=a(3584),x=a(3576),C=a(9092),g=a(7500),k=a(6496),D=a(8156),$=a(2978);function A(m,F){1&m&&t.wR5(0,"mat-progress-bar",26)}const T=()=>["/"],w=()=>["/account/profile"],I=()=>["/auth/login"],S=()=>["/dashboard"],U=()=>["/sales"],n=()=>["/favorites"],R=()=>["/pictures"],r=()=>["/users"],s=()=>["/about"];let o=(()=>{class m{constructor(d,c,l,v,M){this.changeDetectorRef=d,this.media=c,this.spinnerService=l,this.authService=v,this.authGuard=M,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new P.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>d.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const d=this.authService.getCurrentUser();this.isAdmin=d.isAdmin,this.userName=d.fullName;const c=(0,_.k)(2e3,5e3);this.autoLogoutSubscription=c.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(c){return new(c||m)(t.GI1(t.kD9),t.GI1(e.iG),t.GI1(b.m),t.GI1(u.A),t.GI1(O.Q))};static#e=this.\u0275cmp=t.In1({type:m,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(c,l){if(1&c){const v=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(v);const W=t.Gew(39);return t.CGJ(W.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,A,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&c){const v=t.Gew(13),M=t.Gew(26);t.eAK("example-is-mobile",l.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,T)),t.yG2(4),t.E7m("matMenuTriggerFor",v),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",M),t.yG2(4),t.oRS(" ",l.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,w)),t.yG2(5),t.E7m("routerLink",t.q4q(26,I)),t.yG2(6),t.E7m("opened",!l.mobileQuery.matches)("mode",l.mobileQuery.matches?"over":"side")("fixedInViewport",l.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,S)),t.yG2(5),t.E7m("routerLink",t.q4q(28,U)),t.yG2(5),t.E7m("routerLink",t.q4q(29,n)),t.yG2(5),t.E7m("routerLink",t.q4q(30,R)),t.yG2(5),t.E7m("routerLink",t.q4q(31,r)),t.yG2(8),t.E7m("routerLink",t.q4q(32,w)),t.yG2(5),t.E7m("routerLink",t.q4q(33,I)),t.yG2(5),t.E7m("routerLink",t.q4q(34,s)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,l.spinnerService.visibility))}},dependencies:[h.cP,h.ER,h.LC,i.u_,p.Ar,p.WS,p.Uq,L.qL,G.EZ,y.Gw,y.um,f.G2,f.g9,f.Y1,f.Qp,Y.k,x.Cs,C.wx,g.aM,g.OQ,g.yG,k.a4,D.S,$.s9,i.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return m})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/3rdpartylicenses.txt b/client/dist/angular-material-template/3rdpartylicenses.txt new file mode 100644 index 0000000..630a5b7 --- /dev/null +++ b/client/dist/angular-material-template/3rdpartylicenses.txt @@ -0,0 +1,454 @@ +@angular/animations +MIT + +@angular/cdk +MIT +The MIT License + +Copyright (c) 2023 Google LLC. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +@angular/common +MIT + +@angular/core +MIT + +@angular/flex-layout +MIT + +@angular/forms +MIT + +@angular/material +MIT +The MIT License + +Copyright (c) 2023 Google LLC. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +@angular/material-moment-adapter +MIT +The MIT License + +Copyright (c) 2023 Google LLC. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +@angular/platform-browser +MIT + +@angular/router +MIT + +@babel/runtime +MIT +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +moment +MIT +Copyright (c) JS Foundation and other contributors + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + + +moment-timezone +MIT +The MIT License (MIT) + +Copyright (c) JS Foundation and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +ngx-logger +MIT +The MIT License + +Copyright (c) 2018 David Fannin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +primeng +MIT + +rxjs +Apache-2.0 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "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. + + "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). + + "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. + + "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." + + "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. + + 2. 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. + + 3. 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. + + 4. 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: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You 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 + + (d) If 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. + + 5. 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. + + 6. 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. + + 7. 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. + + 8. 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. + + 9. 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. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +tslib +0BSD +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + +vlq +MIT +Copyright (c) 2017 [these people](https://github.com/Rich-Harris/vlq/graphs/contributors) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +zone.js +MIT +The MIT License + +Copyright (c) 2010-2023 Google LLC. https://angular.io/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/client/dist/angular-material-template/40.830a305ce078c093.js b/client/dist/angular-material-template/40.830a305ce078c093.js new file mode 100644 index 0000000..371aba2 --- /dev/null +++ b/client/dist/angular-material-template/40.830a305ce078c093.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[40],{8422:(P,d,n)=>{n.r(d),n.d(d,{AboutModule:()=>R});var v=n(1368),O=n(2992),t=n(3200),a=n(2116),m=n(2276),I=n(1560),g=n(2080);const p=[{path:"",component:t.Y,children:[{path:"",component:(()=>{class e{constructor(){}static#t=this.\u0275fac=function(o){return new(o||e)};static#a=this.\u0275cmp=a.In1({type:e,selectors:[["app-about-page"]],decls:27,vars:0,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["rel","noreferrer noopener","aria-label","Angular (opens in a new tab)","href","http://angular.io","target","_blank"],["rel","noreferrer noopener","aria-label","Angular\xa0Material (opens in a new tab)","href","http://material.angular.io","target","_blank"],["href","https://github.com/umutesen/angular-material-template","target","_blank"],["href","https://onthecode.co.uk","target","_blank","aria-label","onthecode (opens in a new tab)"]],template:function(o,b){1&o&&(a.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-content")(4,"h2"),a.OEk(5,"About"),a.C$Y(),a.I0R(6,"p"),a.OEk(7," Built\xa0on\xa0top\xa0of\xa0"),a.I0R(8,"a",2),a.OEk(9,"Angular"),a.C$Y(),a.OEk(10,"\xa0&\xa0"),a.I0R(11,"a",3),a.OEk(12,"Angular\xa0Material"),a.C$Y(),a.OEk(13,",\xa0angular-material-template\xa0provides\xa0a\xa0simple\xa0template\xa0that\xa0you\xa0can\xa0use\xa0for\xa0your\xa0next\xa0project. "),a.C$Y(),a.I0R(14,"p"),a.OEk(15," Support the project by starring it on "),a.I0R(16,"a",4),a.OEk(17," GitHub "),a.C$Y(),a.OEk(18,". "),a.C$Y(),a.I0R(19,"p"),a.OEk(20," Made with "),a.I0R(21,"mat-icon"),a.OEk(22,"favorite"),a.C$Y(),a.OEk(23," by "),a.I0R(24,"a",5),a.OEk(25,"onthecode"),a.C$Y(),a.OEk(26,". "),a.C$Y()()()()())},dependencies:[m.sZ,m.qG,m.CA,I.qL,g.SM,g.WK],styles:["mat-icon[_ngcontent-%COMP%]{color:#c80000}"]})}return e})()}]}];let l=(()=>{class e{static#t=this.\u0275fac=function(o){return new(o||e)};static#a=this.\u0275mod=a.a4G({type:e});static#n=this.\u0275inj=a.s3X({imports:[O.qQ.forChild(p),O.qQ]})}return e})();var M=n(9588);let R=(()=>{class e{static#t=this.\u0275fac=function(o){return new(o||e)};static#a=this.\u0275mod=a.a4G({type:e});static#n=this.\u0275inj=a.s3X({imports:[v.MD,M.k,l]})}return e})()},3200:(P,d,n)=>{n.d(d,{Y:()=>W});var v=n(4548),O=n(6928),t=n(2116),a=n(1216),m=n(3548),I=n(119),g=n(9920),c=n(2992),p=n(1368),l=n(9964),M=n(1560),R=n(964),e=n(7816),C=n(6664),_=n(3584),o=n(3576),b=n(9092),A=n(7500),L=n(6496),k=n(8156),D=n(2978);function Y(u,S){1&u&&t.wR5(0,"mat-progress-bar",26)}const $=()=>["/"],f=()=>["/account/profile"],y=()=>["/auth/login"],G=()=>["/dashboard"],x=()=>["/sales"],T=()=>["/favorites"],U=()=>["/pictures"],B=()=>["/users"],K=()=>["/about"];let W=(()=>{class u{constructor(s,r,i,E,h){this.changeDetectorRef=s,this.media=r,this.spinnerService=i,this.authService=E,this.authGuard=h,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new O.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>s.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const s=this.authService.getCurrentUser();this.isAdmin=s.isAdmin,this.userName=s.fullName;const r=(0,v.k)(2e3,5e3);this.autoLogoutSubscription=r.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(r){return new(r||u)(t.GI1(t.kD9),t.GI1(a.iG),t.GI1(m.m),t.GI1(I.A),t.GI1(g.Q))};static#a=this.\u0275cmp=t.In1({type:u,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(r,i){if(1&r){const E=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(E);const Q=t.Gew(39);return t.CGJ(Q.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,Y,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&r){const E=t.Gew(13),h=t.Gew(26);t.eAK("example-is-mobile",i.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,$)),t.yG2(4),t.E7m("matMenuTriggerFor",E),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",h),t.yG2(4),t.oRS(" ",i.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,f)),t.yG2(5),t.E7m("routerLink",t.q4q(26,y)),t.yG2(6),t.E7m("opened",!i.mobileQuery.matches)("mode",i.mobileQuery.matches?"over":"side")("fixedInViewport",i.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,G)),t.yG2(5),t.E7m("routerLink",t.q4q(28,x)),t.yG2(5),t.E7m("routerLink",t.q4q(29,T)),t.yG2(5),t.E7m("routerLink",t.q4q(30,U)),t.yG2(5),t.E7m("routerLink",t.q4q(31,B)),t.yG2(8),t.E7m("routerLink",t.q4q(32,f)),t.yG2(5),t.E7m("routerLink",t.q4q(33,y)),t.yG2(5),t.E7m("routerLink",t.q4q(34,K)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,i.spinnerService.visibility))}},dependencies:[c.cP,c.ER,c.LC,p.u_,l.Ar,l.WS,l.Uq,M.qL,R.EZ,e.Gw,e.um,C.G2,C.g9,C.Y1,C.Qp,_.k,o.Cs,b.wx,A.aM,A.OQ,A.yG,L.a4,k.S,D.s9,p.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return u})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/556.23addb1698bab6ce.js b/client/dist/angular-material-template/556.23addb1698bab6ce.js new file mode 100644 index 0000000..c8e265e --- /dev/null +++ b/client/dist/angular-material-template/556.23addb1698bab6ce.js @@ -0,0 +1 @@ +(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[556],{8825:(u,E,q)=>{"use strict";q.d(E,{g:()=>W});var N=q(6716),r=q(2116),z=q(7048);let W=(()=>{class f{constructor(A){this.http=A,this.ServeurURL=N.O.ServeurURL,this.ApiURL=this.ServeurURL+"/api"}getLotInfo(A){let R=encodeURIComponent(A);return this.http.get(this.ApiURL+"/lot/getInfos/"+R)}getPictures(A){let R=encodeURIComponent(A);return this.http.get(this.ApiURL+"/lot/getPictures/"+R)}getLotsBySale(A){return this.http.get(this.ApiURL+"/lot/getLotsBySale/"+A)}getLot(A){return this.http.get(this.ApiURL+"/lot/lot/"+A)}saveLot(A){return this.http.post(this.ApiURL+"/lot/lot",A)}updateLot(A){return this.http.put(this.ApiURL+"/lot/lot/"+A._id,A)}deleteLot(A){return this.http.delete(this.ApiURL+"/lot/lot/"+A)}static#M=this.\u0275fac=function(R){return new(R||f)(r.CoB(z.KK))};static#z=this.\u0275prov=r.wxM({token:f,factory:f.\u0275fac,providedIn:"root"})}return f})()},4104:(u,E,q)=>{"use strict";q.d(E,{o:()=>W});var N=q(6716),r=q(2116),z=q(7048);let W=(()=>{class f{constructor(A){this.http=A,this.ServeurURL=N.O.ServeurURL,this.ApiURL=this.ServeurURL+"/api"}getSaleInfos(A){let R=encodeURIComponent(A);return this.http.get(this.ApiURL+"/sale/getSaleInfos/"+R)}prepareSale(A){return this.http.get(this.ApiURL+"/sale/prepareSale/"+A._id)}followSale(A){return this.http.get(this.ApiURL+"/sale/followSale/"+A._id)}resetSaleToReady(A){this.getSale(A).subscribe(R=>{R.status="ready",this.updateSale(R).subscribe()})}getSale(A){return this.http.get(this.ApiURL+"/sale/sale/"+A)}saveSale(A){return this.http.post(this.ApiURL+"/sale/sale",A)}updateSale(A){return this.http.put(this.ApiURL+"/sale/sale/"+A._id,A)}deleteSale(A){return this.http.delete(this.ApiURL+"/sale/sale/"+A)}getAllSale(){return this.http.get(`${this.ApiURL}/sale/getAll`)}postProcessing(A){return this.http.get(this.ApiURL+"/sale/postProcessing/"+A)}getSaleStatXsl(A){return this.http.get(this.ApiURL+"/sale/SaleStatXsl/"+A,{responseType:"blob"})}static#M=this.\u0275fac=function(R){return new(R||f)(r.CoB(z.KK))};static#z=this.\u0275prov=r.wxM({token:f,factory:f.\u0275fac,providedIn:"root"})}return f})()},3200:(u,E,q)=>{"use strict";q.d(E,{Y:()=>$});var N=q(4548),r=q(6928),z=q(2116),W=q(1216),f=q(3548),l=q(119),A=q(9920),R=q(2992),B=q(1368),m=q(9964),v=q(1560),y=q(964),g=q(7816),S=q(6664),w=q(3584),K=q(3576),D=q(9092),k=q(7500),G=q(6496),H=q(8156),P=q(2978);function j(X,M0){1&X&&z.wR5(0,"mat-progress-bar",26)}const x=()=>["/"],T=()=>["/account/profile"],I=()=>["/auth/login"],F=()=>["/dashboard"],Q=()=>["/sales"],V=()=>["/favorites"],J=()=>["/pictures"],Y=()=>["/users"],Z=()=>["/about"];let $=(()=>{class X{constructor(i,t,s,C,_){this.changeDetectorRef=i,this.media=t,this.spinnerService=s,this.authService=C,this.authGuard=_,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new r.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>i.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const i=this.authService.getCurrentUser();this.isAdmin=i.isAdmin,this.userName=i.fullName;const t=(0,N.k)(2e3,5e3);this.autoLogoutSubscription=t.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#M=this.\u0275fac=function(t){return new(t||X)(z.GI1(z.kD9),z.GI1(W.iG),z.GI1(f.m),z.GI1(l.A),z.GI1(A.Q))};static#z=this.\u0275cmp=z.In1({type:X,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(t,s){if(1&t){const C=z.KQA();z.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),z.qCj("click",function(){z.usT(C);const z0=z.Gew(39);return z.CGJ(z0.toggle())}),z.I0R(3,"mat-icon"),z.OEk(4,"menu"),z.C$Y()(),z.I0R(5,"a",3)(6,"h1"),z.OEk(7," Jucundus "),z.C$Y()(),z.wR5(8,"span",4),z.I0R(9,"button",5)(10,"mat-icon",6),z.OEk(11,"notifications"),z.C$Y()(),z.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),z.OEk(16,"You have new tasks"),z.C$Y()(),z.I0R(17,"a",9)(18,"span"),z.OEk(19,"You have a new message"),z.C$Y()()(),z.I0R(20,"button",10)(21,"mat-icon"),z.OEk(22,"person"),z.C$Y(),z.I0R(23,"span",11),z.OEk(24),z.C$Y()(),z.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),z.OEk(29,"person"),z.C$Y(),z.I0R(30,"span"),z.OEk(31,"Account"),z.C$Y()(),z.I0R(32,"a",13)(33,"mat-icon"),z.OEk(34,"exit_to_app"),z.C$Y(),z.I0R(35,"span"),z.OEk(36,"Log out"),z.C$Y()()()(),z.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),z.OEk(42,"Home"),z.C$Y(),z.I0R(43,"a",18)(44,"mat-icon",19),z.OEk(45," dashboard "),z.C$Y(),z.I0R(46,"p",20),z.OEk(47," Dashboard "),z.C$Y()(),z.I0R(48,"a",18)(49,"mat-icon",19),z.OEk(50," today "),z.C$Y(),z.I0R(51,"p",20),z.OEk(52," Sales "),z.C$Y()(),z.I0R(53,"a",18)(54,"mat-icon",19),z.OEk(55," bookmark "),z.C$Y(),z.I0R(56,"p",20),z.OEk(57," Favorites "),z.C$Y()(),z.I0R(58,"a",18)(59,"mat-icon",19),z.OEk(60," image "),z.C$Y(),z.I0R(61,"p",20),z.OEk(62," Pictures "),z.C$Y()(),z.I0R(63,"a",18)(64,"mat-icon",19),z.OEk(65," people "),z.C$Y(),z.I0R(66,"p",20),z.OEk(67," Users "),z.C$Y()(),z.wR5(68,"mat-divider"),z.I0R(69,"h3",17),z.OEk(70,"User"),z.C$Y(),z.I0R(71,"a",21)(72,"mat-icon",19),z.OEk(73,"person"),z.C$Y(),z.I0R(74,"p",20),z.OEk(75," Account "),z.C$Y()(),z.I0R(76,"a",21)(77,"mat-icon",19),z.OEk(78,"exit_to_app"),z.C$Y(),z.I0R(79,"p",20),z.OEk(80," Log out "),z.C$Y()(),z.I0R(81,"a",22)(82,"mat-icon",19),z.OEk(83," info_outline "),z.C$Y(),z.I0R(84,"p",20),z.OEk(85," About "),z.C$Y()()()(),z.I0R(86,"mat-sidenav-content",23)(87,"div",24),z.yuY(88,j,1,0,"mat-progress-bar",25),z.wVc(89,"async"),z.C$Y(),z.wR5(90,"router-outlet"),z.C$Y()()()}if(2&t){const C=z.Gew(13),_=z.Gew(26);z.eAK("example-is-mobile",s.mobileQuery.matches),z.yG2(5),z.E7m("routerLink",z.q4q(24,x)),z.yG2(4),z.E7m("matMenuTriggerFor",C),z.yG2(3),z.E7m("overlapTrigger",!1),z.yG2(8),z.E7m("matMenuTriggerFor",_),z.yG2(4),z.oRS(" ",s.userName," "),z.yG2(),z.E7m("overlapTrigger",!1),z.yG2(2),z.E7m("routerLink",z.q4q(25,T)),z.yG2(5),z.E7m("routerLink",z.q4q(26,I)),z.yG2(6),z.E7m("opened",!s.mobileQuery.matches)("mode",s.mobileQuery.matches?"over":"side")("fixedInViewport",s.mobileQuery.matches),z.yG2(5),z.E7m("routerLink",z.q4q(27,F)),z.yG2(5),z.E7m("routerLink",z.q4q(28,Q)),z.yG2(5),z.E7m("routerLink",z.q4q(29,V)),z.yG2(5),z.E7m("routerLink",z.q4q(30,J)),z.yG2(5),z.E7m("routerLink",z.q4q(31,Y)),z.yG2(8),z.E7m("routerLink",z.q4q(32,T)),z.yG2(5),z.E7m("routerLink",z.q4q(33,I)),z.yG2(5),z.E7m("routerLink",z.q4q(34,Z)),z.yG2(7),z.E7m("ngIf",z.kDX(89,22,s.spinnerService.visibility))}},dependencies:[R.cP,R.ER,R.LC,B.u_,m.Ar,m.WS,m.Uq,v.qL,y.EZ,g.Gw,g.um,S.G2,S.g9,S.Y1,S.Qp,w.k,K.Cs,D.wx,k.aM,k.OQ,k.yG,G.a4,H.S,P.s9,B.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return X})()},2304:(u,E,q)=>{(u.exports=q(1019)).tz.load(q(2936))},1019:function(u,E,q){var N,r,z;!function(W,f){"use strict";u.exports?u.exports=f(q(5908)):(r=[q(5908)],void 0!==(z="function"==typeof(N=f)?N.apply(E,r):N)&&(u.exports=z))}(0,function(W){"use strict";void 0===W.version&&W.default&&(W=W.default);var v,l={},A={},R={},B={},m={};(!W||"string"!=typeof W.version)&&h("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");var y=W.version.split("."),g=+y[0],S=+y[1];function w(M){return M>96?M-87:M>64?M-29:M-48}function K(M){var b=0,p=M.split("."),O=p[0],c=p[1]||"",o=1,d=0,n=1;for(45===M.charCodeAt(0)&&(b=1,n=-1);b= 2.6.0. You are using Moment.js "+W.version+". See momentjs.com"),P.prototype={_set:function(M){this.name=M.name,this.abbrs=M.abbrs,this.untils=M.untils,this.offsets=M.offsets,this.population=M.population},_index:function(M){var O;if(O=function j(M,b){var p=b.length;if(M1&&b[p-1]===1/0&&M>=b[p-2])return p-1;if(M>=b[p-1])return-1;for(var O,c=0,o=p-1;o-c>1;)b[O=Math.floor((c+o)/2)]<=M?c=O:o=O;return o}(+M,this.untils),O>=0)return O},countries:function(){var M=this.name;return Object.keys(R).filter(function(b){return-1!==R[b].zones.indexOf(M)})},parse:function(M){var o,L,d,n,b=+M,p=this.offsets,O=this.untils,c=O.length-1;for(n=0;nd&&a.moveInvalidForward&&(o=d),b3){var b=B[X(M)];if(b)return b;h("Moment Timezone found "+M+" from the Intl api, but did not have that data loaded.")}}catch{}var L,d,n,p=function Q(){var c,o,L,d,M=(new Date).getFullYear()-2,b=new T(new Date(M,0,1)),p=b.offset,O=[b];for(d=1;d<48;d++)(L=new Date(M,d,1).getTimezoneOffset())!==p&&(c=F(b,o=new T(new Date(M,d,1))),O.push(c),O.push(new T(new Date(c.at+6e4))),b=o,p=L);for(d=0;d<4;d++)O.push(new T(new Date(M+d,0,1))),O.push(new T(new Date(M+d,6,1)));return O}(),O=p.length,c=function Y(M){var o,L,d,n,b=M.length,p={},O=[],c={};for(o=0;o0?o[0].zone.name:void 0}()),v},a.names=function t(){var M,b=[];for(M in B)B.hasOwnProperty(M)&&(l[M]||l[A[M]])&&B[M]&&b.push(B[M]);return b.sort()},a.Zone=P,a.unpack=H,a.unpackBase60=K,a.needsOffset=p0,a.moveInvalidForward=!0,a.moveAmbiguousForward=!1,a.countries=function s(){return Object.keys(R)},a.zonesForCountry=function c0(M,b){if(!(M=function z0(M){return M=M.toUpperCase(),R[M]||null}(M)))return null;var p=M.zones.sort();return b?p.map(function(O){return{name:O,offset:i(O).utcOffset(new Date)}}):p};var e=W.fn;function O0(M){return function(){return this._z?this._z.abbr(this):M.call(this)}}function A0(M){return function(){return this._z=null,M.apply(this,arguments)}}W.tz=a,W.defaultZone=null,W.updateOffset=function(M,b){var O,p=W.defaultZone;if(void 0===M._z&&(p&&p0(M)&&!M._isUTC&&M.isValid()&&(M._d=W.utc(M._a)._d,M.utc().add(p.parse(M),"minutes")),M._z=p),M._z)if(O=M._z.utcOffset(M),Math.abs(O)<16&&(O/=60),void 0!==M.utcOffset){var c=M._z;M.utcOffset(-O,b),M._z=c}else M.zone(O,b)},e.tz=function(M,b){if(M){if("string"!=typeof M)throw new Error("Time zone name must be a string, got "+M+" ["+typeof M+"]");return this._z=i(M),this._z?W.updateOffset(this,b):h("Moment Timezone has no data for "+M+". See http://momentjs.com/timezone/docs/#/data-loading/."),this}if(this._z)return this._z.name},e.zoneName=O0(e.zoneName),e.zoneAbbr=O0(e.zoneAbbr),e.utc=A0(e.utc),e.local=A0(e.local),e.utcOffset=function o0(M){return function(){return arguments.length>0&&(this._z=null),M.apply(this,arguments)}}(e.utcOffset),W.tz.setDefault=function(M){return(g<2||2===g&&S<9)&&h("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+W.version+"."),W.defaultZone=M?i(M):null,W};var U=W.momentProperties;return"[object Array]"===Object.prototype.toString.call(U)?(U.push("_z"),U.push("_a")):U&&(U._z=null),W})},2936:u=>{"use strict";u.exports=JSON.parse('{"version":"2024a","zones":["Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5","Africa/Nairobi|LMT +0230 EAT +0245|-2r.g -2u -30 -2J|012132|-2ua2r.g N6nV.g 3Fbu h1cu dzbJ|47e5","Africa/Algiers|LMT PMT WET WEST CET CEST|-c.c -9.l 0 -10 -10 -20|01232323232323232454542423234542324|-3bQ0c.c MDA2.P cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5","Africa/Lagos|LMT GMT +0030 WAT|-d.z 0 -u -10|01023|-2B40d.z 7iod.z dnXK.p dLzH.z|17e6","Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldX0 2xoo0|39e4","Africa/Maputo|LMT CAT|-2a.k -20|01|-2GJea.k|26e5","Africa/Cairo|LMT EET EEST|-25.9 -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBC5.9 1AQM5.9 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0 kSp0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0|15e6","Africa/Casablanca|LMT +00 +01|u.k 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0|32e5","Africa/Ceuta|LMT WET WEST CET CEST|l.g 0 -10 -10 -20|0121212121212121212121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2M0M0 GdX0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|85e3","Africa/El_Aaiun|LMT -01 +00 +01|Q.M 10 0 -10|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0|20e4","Africa/Johannesburg|LMT SAST SAST SAST|-1Q -1u -20 -30|0123232|-39EpQ qTcm 1Ajdu 1cL0 1cN0 1cL0|84e5","Africa/Juba|LMT CAT CAST EAT|-26.s -20 -30 -30|012121212121212121212121212121212131|-1yW26.s 1zK06.s 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 PeX0|","Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|012121212121212121212121212121212131|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 HjL0|51e5","Africa/Monrovia|LMT MMT MMT GMT|H.8 H.8 I.u 0|0123|-3ygng.Q 1usM0 28G01.m|11e5","Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5","Africa/Sao_Tome|LMT LMT GMT WAT|-q.U A.J 0 -10|01232|-3tooq.U 18aoq.U 4i6N0 2q00|","Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5","Africa/Tunis|LMT PMT CET CEST|-E.I -9.l -10 -20|01232323232323232323232323232323232|-3zO0E.I 1cBAv.n 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5","Africa/Windhoek|LMT +0130 SAST SAST CAT WAT|-18.o -1u -20 -30 -20 -10|012324545454545454545454545454545454545454545454545454|-39Ep8.o qTbC.o 1Ajdu 1cL0 1SqL0 9Io0 16P0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4","America/Adak|LMT LMT NST NWT NPT BST BDT AHST HST HDT|-cd.m bK.C b0 a0 a0 b0 a0 a0 a0 90|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVzf.p 1EX1d.m 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326","America/Anchorage|LMT LMT AST AWT APT AHST AHDT YST AKST AKDT|-e0.o 9X.A a0 90 90 a0 90 90 90 80|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVxs.n 1EX20.o 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4","America/Puerto_Rico|LMT AST AWT APT|4o.p 40 30 30|01231|-2Qi7z.z 1IUbz.z 7XT0 iu0|24e5","America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4","America/Argentina/Buenos_Aires|LMT CMT -04 -03 -02|3R.M 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343434343|-331U6.c 125cn pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Catamarca|LMT CMT -04 -03 -02|4n.8 4g.M 40 30 20|012323232323232323232323232323232323232323234343434243432343|-331TA.Q 125bR.E pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Cordoba|LMT CMT -04 -03 -02|4g.M 4g.M 40 30 20|012323232323232323232323232323232323232323234343434243434343|-331TH.c 125c0 pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Jujuy|LMT CMT -04 -03 -02|4l.c 4g.M 40 30 20|0123232323232323232323232323232323232323232343434232434343|-331TC.M 125bT.A pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0|","America/Argentina/La_Rioja|LMT CMT -04 -03 -02|4r.o 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342343432343|-331Tw.A 125bN.o pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Mendoza|LMT CMT -04 -03 -02|4z.g 4g.M 40 30 20|012323232323232323232323232323232323232323234343423232432343|-331To.I 125bF.w pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0|","America/Argentina/Rio_Gallegos|LMT CMT -04 -03 -02|4A.Q 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343432343|-331Tn.8 125bD.U pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Salta|LMT CMT -04 -03 -02|4l.E 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342434343|-331TC.k 125bT.8 pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0|","America/Argentina/San_Juan|LMT CMT -04 -03 -02|4y.4 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342343432343|-331Tp.U 125bG.I pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0|","America/Argentina/San_Luis|LMT CMT -04 -03 -02|4p.o 4g.M 40 30 20|0123232323232323232323232323232323232323232343434232323432323|-331Ty.A 125bP.o pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0|","America/Argentina/Tucuman|LMT CMT -04 -03 -02|4k.Q 4g.M 40 30 20|01232323232323232323232323232323232323232323434343424343234343|-331TD.8 125bT.U pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0|","America/Argentina/Ushuaia|LMT CMT -04 -03 -02|4x.c 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343432343|-331Tq.M 125bH.A pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0|","America/Asuncion|LMT AMT -04 -03|3O.E 3O.E 40 30|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-3eLw9.k 1FGo0 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0|28e5","America/Panama|LMT CMT EST|5i.8 5j.A 50|012|-3eLuF.Q Iy01.s|15e5","America/Bahia_Banderas|LMT MST CST MDT PST CDT|71 70 60 60 80 50|0121312141313131313131313131313131313152525252525252525252525252|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|84e3","America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5","America/Barbados|LMT AST ADT -0330|3W.t 40 30 3u|0121213121212121|-2m4k1.v 1eAN1.v RB0 1Bz0 Op0 1rb0 11d0 1jJc0 IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4","America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5","America/Belize|LMT CST -0530 CWT CPT CDT|5Q.M 60 5u 50 50 50|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121215151|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu Rcu 7Bt0 Ni0 4nd0 Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu e9Au qn0 lxB0 mn0|57e3","America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2","America/Bogota|LMT BMT -05 -04|4U.g 4U.g 50 40|01232|-3sTv3.I 1eIo0 38yo3.I 1PX0|90e5","America/Boise|LMT PST PDT MST MWT MPT MDT|7I.N 80 70 70 60 60 60|01212134536363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-3tFE0 1nEe0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4","America/Cambridge_Bay|-00 MST MWT MPT MDT CST CDT EST|0 70 60 60 60 60 50 50|012314141414141414141414141414141414141414141414141414141414567541414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-21Jc0 RO90 8x20 ix0 14HB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2","America/Campo_Grande|LMT -04 -03|3C.s 40 30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|77e4","America/Cancun|LMT CST EST EDT CDT|5L.4 60 50 40 50|0123232341414141414141414141414141414141412|-1UQG0 2q2o0 yLB0 1lb0 14p0 1lb0 14p0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4","America/Caracas|LMT CMT -0430 -04|4r.I 4r.E 4u 40|012323|-3eLvw.g ROnX.U 28KM2.k 1IwOu kqo0|29e5","America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3","America/Chicago|LMT CST CDT EST CWT CPT|5O.A 60 50 50 50 50|012121212121212121212121212121212121213121212121214512121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5","America/Chihuahua|LMT MST CST MDT CDT|74.k 70 60 60 50|0121312424231313131313131313131313131313131313131313131313132|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|81e4","America/Ciudad_Juarez|LMT MST CST MDT CDT|75.U 70 60 60 50|01213124242313131313131313131313131313131313131313131313131321313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1wn0 cm0 EP0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Costa_Rica|LMT SJMT CST CDT|5A.d 5A.d 60 50|01232323232|-3eLun.L 1fyo0 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5","America/Phoenix|LMT MST MDT MWT|7s.i 70 60 60|012121313121|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5","America/Cuiaba|LMT -04 -03|3I.k 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|54e4","America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8","America/Dawson_Creek|LMT PST PDT PWT PPT MST|80.U 80 70 70 70 70|01213412121212121212121212121212121212121212121212121212125|-3tofX.4 1nspX.4 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3","America/Dawson|LMT YST YDT YWT YPT YDDT PST PDT MST|9h.E 90 80 80 80 70 80 70 70|0121213415167676767676767676767676767676767676767676767676767676767676767676767676767676767678|-2MSeG.k GWpG.k 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|13e2","America/Denver|LMT MST MDT MWT MPT|6X.U 70 60 60 60|012121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFF0 1nEe0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5","America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|0123425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 JxX1 SMX 1cN0 1cL0 aW10 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5","America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|0121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 XQp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5","America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3","America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5","America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 4Q00 8mM0 8lc0 SN0 1cL0 pHB0 83r0 zI0 5O10 1Rz0 cOO0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5","America/Fort_Nelson|LMT PST PDT PWT PPT MST|8a.L 80 70 70 70 70|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121215|-3tofN.d 1nspN.d 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2","America/Fort_Wayne|LMT CST CDT CWT CPT EST EDT|5I.C 60 50 50 50 50 40|0121212134121212121212121212151565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5","America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","America/Godthab|LMT -03 -02 -01|3q.U 30 20 10|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 2so0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e3","America/Goose_Bay|LMT NST NDT NST NDT NWT NPT AST ADT ADDT|41.E 3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|0121343434343434356343434343434343434343434343434343434343437878787878787878787878787878787878787878787879787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787|-3tojW.k 1nspt.c 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2","America/Grand_Turk|LMT KMT EST EDT AST|4I.w 57.a 50 40 40|01232323232323232323232323232323232323232323232323232323232323232323232323243232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLvf.s RK0m.C 2HHBQ.O 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 7jA0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2","America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5","America/Guayaquil|LMT QMT -05 -04|5j.k 5e 50 40|01232|-3eLuE.E 1DNzS.E 2uILK rz0|27e5","America/Guyana|LMT -04 -0345 -03|3Q.D 40 3J 30|01231|-2mf87.l 8Hc7.l 2r7bJ Ey0f|80e4","America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4","America/Havana|LMT HMT CST CDT|5t.s 5t.A 50 40|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLuu.w 1qx00.8 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5","America/Hermosillo|LMT MST CST MDT PST|7n.Q 70 60 60 80|0121312141313131|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0|64e4","America/Indiana/Knox|LMT CST CDT CWT CPT EST|5K.u 60 50 50 50 50|01212134121212121212121212121212121212151212121212121212121212121212121212121212121212121252121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Marengo|LMT CST CDT CWT CPT EST EDT|5J.n 60 50 50 50 50 40|01212134121212121212121215656565656525656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Petersburg|LMT CST CDT CWT CPT EST EDT|5N.7 60 50 50 50 50 40|012121341212121212121212121215121212121212121212121252125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Tell_City|LMT CST CDT CWT CPT EST EDT|5L.3 60 50 50 50 50 40|012121341212121212121212121512165652121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 8wn0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vevay|LMT CST CDT CWT CPT EST EDT|5E.g 60 50 50 50 50 40|0121213415656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vincennes|LMT CST CDT CWT CPT EST EDT|5O.7 60 50 50 50 50 40|012121341212121212121212121212121565652125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Winamac|LMT CST CDT CWT CPT EST EDT|5K.p 60 50 50 50 50 40|012121341212121212121212121212121212121565652165656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Inuvik|-00 PST PDT MDT MST|0 80 70 60 70|01212121212121213434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-FnA0 L3K0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2","America/Iqaluit|-00 EWT EPT EST EDT CST CDT|0 40 40 50 40 60 50|0123434343434343434343434343434343434343434343434343434343456343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-16K00 7nX0 iv0 14HB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2","America/Jamaica|LMT KMT EST EDT|57.a 57.a 50 40|01232323232323232323232|-3eLuQ.O RK00 2uM1Q.O 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4","America/Juneau|LMT LMT PST PWT PPT PDT YDT YST AKST AKDT|-f2.j 8V.F 80 70 70 70 80 90 90 80|0123425252525252525252525252625252578989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVwq.s 1EX12.j 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3","America/Kentucky/Louisville|LMT CST CDT CWT CPT EST EDT|5H.2 60 50 50 50 50 40|01212121213412121212121212121212121212565656565656525656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 1nX1 e0X 9vd0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Kentucky/Monticello|LMT CST CDT CWT CPT EST EDT|5D.o 60 50 50 50 50 40|01212134121212121212121212121212121212121212121212121212121212121212121212565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/La_Paz|LMT CMT BST -04|4w.A 4w.A 3w.A 40|0123|-3eLvr.o 1FIo0 13b0|19e5","America/Lima|LMT LMT -05 -04|58.c 58.A 50 40|01232323232323232|-3eLuP.M JcM0.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6","America/Los_Angeles|LMT PST PDT PWT PPT|7Q.W 80 70 70 70|0121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFE0 1nEe0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6","America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4","America/Managua|LMT MMT CST EST CDT|5J.8 5J.c 60 50 50|01232424232324242|-3eLue.Q 1Mhc0.4 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5","America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5","America/Martinique|LMT FFMT AST ADT|44.k 44.k 40 30|01232|-3eLvT.E PTA0 2LPbT.E 19X0|39e4","America/Matamoros|LMT CST CDT|6u 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4","America/Mazatlan|LMT MST CST MDT PST|75.E 70 60 60 80|0121312141313131313131313131313131313131313131313131313131313131|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|44e4","America/Menominee|LMT CST CDT CWT CPT EST|5O.r 60 50 50 50 50|012121341212152121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3pdG9.x 1jce9.x 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2","America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131|-1UQG0 2q2o0 2hz0 wu30 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|11e5","America/Metlakatla|LMT LMT PST PWT PPT PDT AKST AKDT|-fd.G 8K.i 80 70 70 70 90 80|0123425252525252525252525252525252526767672676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-48Pzs.L 1jVwf.5 1EX1d.G 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 uM0 jB0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Mexico_City|LMT MST CST MDT CDT CWT|6A.A 70 60 60 50 50|012131242425242424242424242424242424242424242424242424242424242424242|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|20e6","America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mxUf.k 2LHcf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2","America/Moncton|LMT EST AST ADT AWT APT|4j.8 50 40 30 30 30|0123232323232323232323245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3txvE.Q J4ME.Q CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3","America/Monterrey|LMT CST CDT|6F.g 60 50|0121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|41e5","America/Montevideo|LMT MMT -04 -03 -0330 -0230 -02 -0130|3I.P 3I.P 40 30 3u 2u 20 1u|012343434343434343434343435353636353636375363636363636363636363636363636363636363636363|-2tRUf.9 sVc0 8jcf.9 1db0 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1fAu 1cLu 1o0u 11zu NAu 3jXu zXu Dq0u 19Xu pcu jz0 cm10 19X0 6tB0 1fbu 3o0u jX0 4vB0 xz0 3Cp0 mmu 1a10 IMu Db0 4c10 uL0 1Nd0 An0 1SN0 uL0 mp0 28L0 iPB0 un0 1SN0 xz0 1zd0 Lz0 1zd0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5","America/Toronto|LMT EST EDT EWT EPT|5h.w 50 40 40 40|012121212121212121212121212121212121212121212123412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-32B6G.s UFdG.s 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1qL0 11B0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5","America/New_York|LMT EST EDT EWT EPT|4U.2 50 40 40 40|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFH0 1nEe0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6","America/Nome|LMT LMT NST NWT NPT BST BDT YST AKST AKDT|-cW.m b1.C b0 a0 a0 b0 a0 90 90 80|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVyu.p 1EX1W.m 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2","America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2","America/North_Dakota/Beulah|LMT MST MDT MWT MPT CST CDT|6L.7 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/Center|LMT MST MDT MWT MPT CST CDT|6J.c 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/New_Salem|LMT MST MDT MWT MPT CST CDT|6J.D 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212121212121212121212121212565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Ojinaga|LMT MST CST MDT CDT|6V.E 70 60 60 50|0121312424231313131313131313131313131313131313131313131313132424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1wn0 Rc0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3","America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4","America/Port-au-Prince|LMT PPMT EST EDT|4N.k 4N 50 40|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLva.E 15RLX.E 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4","America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4","America/Punta_Arenas|LMT SMT -05 -04 -03|4H.E 4G.J 50 40 30|01213132323232323232343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLvg.k MJbX.5 fJAh.f 5knG.J 1Vzh.f jRAG.J 1pbh.f 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|","America/Winnipeg|LMT CST CDT CWT CPT|6s.A 60 50 50 50|0121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3kLtv.o 1a3bv.o WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4","America/Rankin_Inlet|-00 CST CDT EST|0 60 50 50|01212121212121212121212121212121212121212121212121212121212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-vDc0 Bjk0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2","America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5","America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4","America/Resolute|-00 CST CDT EST|0 60 50 50|01212121212121212121212121212121212121212121212121212121212321212121212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-SnA0 103I0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229","America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4","America/Santiago|LMT SMT -05 -04 -03|4G.J 4G.J 50 40 30|0121313232323232323432343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLvh.f MJc0 fJAh.f 5knG.J 1Vzh.f jRAG.J 1pbh.f 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 hX0 1q10 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0|62e5","America/Santo_Domingo|LMT SDMT EST EDT -0430 AST|4D.A 4E 50 40 4u 40|012324242424242525|-3eLvk.o 1Jic0.o 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5","America/Sao_Paulo|LMT -03 -02|36.s 30 20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|20e6","America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|012132323232323232323232323232323232323232323232323232323232323232323232323232323232323232121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 2pA0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|452","America/Sitka|LMT LMT PST PWT PPT PDT YST AKST AKDT|-eW.L 91.d 80 70 70 70 90 90 80|0123425252525252525252525252525252567878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787|-48Pzs.L 1jVwu 1EX0W.L 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2","America/St_Johns|LMT NST NDT NST NDT NWT NPT NDDT|3u.Q 3u.Q 2u.Q 3u 2u 2u 2u 1u|012121212121212121212121212121212121213434343434343435634343434343434343434343434343434343434343434343434343434343434343434343434343434343437343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3tokt.8 1l020 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3","America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5","America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656","America/Vancouver|LMT PST PDT PWT PPT|8c.s 80 70 70 70|01213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tofL.w 1nspL.w 1in0 UGp0 8x10 iy0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Whitehorse|LMT YST YDT YWT YPT YDDT PST PDT MST|90.c 90 80 80 80 70 80 70 70|0121213415167676767676767676767676767676767676767676767676767676767676767676767676767676767678|-2MSeX.M GWpX.M 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 LA0 ytd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|23e3","America/Yakutat|LMT LMT YST YWT YPT YDT AKST AKDT|-eF.5 9i.T 90 80 80 80 90 80|0123425252525252525252525252525252526767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-48Pzs.L 1jVwL.G 1EX1F.5 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642","Antarctica/Casey|-00 +08 +11|0 -80 -b0|012121212121212121|-2q00 1DjS0 T90 40P0 KL0 blz0 3m10 1o30 14k0 1kr0 12l0 1o01 14kX 1lf1 14kX 1lf1 13bX|10","Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70","Pacific/Port_Moresby|LMT PMMT +10|-9M.E -9M.w -a0|012|-3D8VM.E AvA0.8|25e4","Antarctica/Macquarie|-00 AEST AEDT|0 -a0 -b0|0121012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2OPc0 Fb40 1a00 4SK0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 3Co0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|1","Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60","Pacific/Auckland|LMT NZMT NZST NZST NZDT|-bD.4 -bu -cu -c0 -d0|012131313131313131313131313134343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-46jLD.4 2nEO9.4 Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00|14e5","Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40","Antarctica/Rothera|-00 -03|0 30|01|gOo0|130","Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5","Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|40","Antarctica/Vostok|-00 +07 +05|0 -70 -50|01012|-tjA0 1rWh0 1Nj0 1aTv0|25","Europe/Berlin|LMT CET CEST CEMT|-R.s -10 -20 -30|012121212121212321212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-36RcR.s UbWR.s 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|41e5","Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|0123232323232323232323212323232323232323232323232321|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 L4m0|15e5","Asia/Amman|LMT EET EEST +03|-2n.I -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 LA0 1C00|25e5","Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3","Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4","Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4","Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4","Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|","Asia/Baghdad|LMT BMT +03 +04|-2V.E -2V.A -30 -40|0123232323232323232323232323232323232323232323232323232|-3eLCV.E 18ao0.4 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5","Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4","Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Asia/Bangkok|LMT BMT +07|-6G.4 -6G.4 -70|012|-3D8SG.4 1C000|15e6","Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|","Asia/Beirut|LMT EET EEST|-2m -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3D8Om 1BWom 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|22e5","Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4","Asia/Brunei|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|42e4","Asia/Kolkata|LMT HMT MMT IST +0630|-5R.s -5R.k -5l.a -5u -6u|01234343|-4Fg5R.s BKo0.8 1rDcw.a 1r2LP.a 1un0 HB0 7zX0|15e6","Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4","Asia/Choibalsan|LMT +07 +08 +10 +09|-7C -70 -80 -a0 -90|0123434343434343434343434343434343434343434343424242|-2APHC 2UkoC cKn0 1da0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 3Db0 h1f0 1cJ0 1cP0 1cJ0|38e3","Asia/Shanghai|LMT CST CDT|-85.H -80 -90|012121212121212121212121212121|-2M0U5.H Iuo5.H 18n0 OjB0 Rz0 11d0 1wL0 A10 8HX0 1G10 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 aL0 1tU30 Rb0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6","Asia/Colombo|LMT MMT +0530 +06 +0630|-5j.o -5j.w -5u -60 -6u|012342432|-3D8Rj.o 13inX.Q 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5","Asia/Dhaka|LMT HMT +0630 +0530 +06 +07|-61.E -5R.k -6u -5u -60 -70|01232454|-3eLG1.E 26008.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6","Asia/Damascus|LMT EET EEST +03|-2p.c -20 -30 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0|26e5","Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le8m.k 1dnXm.k 1nfA0 Xld0|19e4","Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5","Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4","Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|","Asia/Gaza|LMT EET EEST IST IDT|-2h.Q -20 -30 -20 -30|0121212121212121212121212121212121234343434343434343434343434343431212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBCh.Q 1Azeh.Q MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 XA0 1qp0 1cN0 1cL0 1a10 1fz0 17d0 1in0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1lb0 14p0 1in0 17d0 1cL0 1cN0 19X0 1fB0 14n0 jB0 2L0 11B0 WL0 gN0 8n0 11B0 TX0 gN0 bb0 11B0 On0 jB0 dX0 11B0 Lz0 gN0 mn0 WN0 IL0 gN0 pb0 WN0 Db0 jB0 rX0 11B0 xz0 gN0 xz0 11B0 rX0 jB0 An0 11B0 pb0 gN0 IL0 WN0 mn0 gN0 Lz0 WN0 gL0 jB0 On0 11B0 bb0 gN0 TX0 11B0 5z0 jB0 WL0 11B0 2L0 jB0 11z0 1ip0 19X0 1cN0 1cL0 17d0 1in0 14p0 1lb0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1nX0 14p0 1in0 17d0 1fz0 1a10 19X0 1fB0 17b0 gN0 2L0 WN0 14n0 gN0 5z0 WN0 WL0 jB0 8n0 11B0 Rb0 gN0 dX0 11B0 Lz0 jB0 gL0 11B0 IL0 jB0 mn0 WN0 FX0 gN0 rX0 WN0 An0 jB0 uL0 11B0 uL0 gN0 An0 11B0 rX0 gN0 Db0 11B0 mn0 jB0 FX0 11B0 jz0 gN0 On0 WN0 dX0 jB0 Rb0 WN0 bb0 jB0 TX0 11B0 5z0 gN0 11z0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|18e5","Asia/Hebron|LMT EET EEST IST IDT|-2k.n -20 -30 -20 -30|012121212121212121212121212121212123434343434343434343434343434343121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBCk.n 1Azek.n MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 XA0 1qp0 1cN0 1cL0 1a10 1fz0 17d0 1in0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1lb0 14p0 1in0 17d0 1cL0 1cN0 19X0 1fB0 14n0 jB0 2L0 11B0 WL0 gN0 8n0 11B0 TX0 gN0 bb0 11B0 On0 jB0 dX0 11B0 Lz0 gN0 mn0 WN0 IL0 gN0 pb0 WN0 Db0 jB0 rX0 11B0 xz0 gN0 xz0 11B0 rX0 jB0 An0 11B0 pb0 gN0 IL0 WN0 mn0 gN0 Lz0 WN0 gL0 jB0 On0 11B0 bb0 gN0 TX0 11B0 5z0 jB0 WL0 11B0 2L0 jB0 11z0 1ip0 19X0 1cN0 1cL0 17d0 1in0 14p0 1lb0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1nX0 14p0 1in0 17d0 1fz0 1a10 19X0 1fB0 17b0 gN0 2L0 WN0 14n0 gN0 5z0 WN0 WL0 jB0 8n0 11B0 Rb0 gN0 dX0 11B0 Lz0 jB0 gL0 11B0 IL0 jB0 mn0 WN0 FX0 gN0 rX0 WN0 An0 jB0 uL0 11B0 uL0 gN0 An0 11B0 rX0 gN0 Db0 11B0 mn0 jB0 FX0 11B0 jz0 gN0 On0 WN0 dX0 jB0 Rb0 WN0 bb0 jB0 TX0 11B0 5z0 gN0 11z0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|25e4","Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.u -76.u -70 -80 -90|0123423232|-2yC76.u bK00 1h7b6.u 5lz0 18o0 3Oq0 k5c0 aVX0 BAM0|90e5","Asia/Hong_Kong|LMT HKT HKST HKWT JST|-7A.G -80 -90 -8u -90|0123412121212121212121212121212121212121212121212121212121212121212121|-2CFH0 1taO0 Hc0 xUu 9tBu 11z0 1tDu Rc0 1wo0 11A0 1cM0 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5","Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3","Asia/Irkutsk|LMT IMT +07 +08 +09|-6V.5 -6V.5 -70 -80 -90|012343434343434343434343234343434343434343434343434343434343434343|-3D8SV.5 1Bxc0 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Europe/Istanbul|LMT IMT EET EEST +03 +04|-1T.Q -1U.U -20 -30 -30 -40|01232323232323232323232323232323232323232323232345423232323232323232323232323232323232323232323232323232323232323234|-3D8NT.Q 1ePXW.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSN0 CL0 mp0 1Vz0 1gN0 8yn0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1ip0 19X0 1ip0 17b0 qdB0 38L0 1jd0 Tz0 l6O0 11A0 WN0 1qL0 TB0 1tX0 U10 1tz0 11B0 1in0 17d0 z90 cne0 pb0 2Cp0 1800 14o0 1dc0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6","Asia/Jakarta|LMT BMT +0720 +0730 +09 +08 WIB|-77.c -77.c -7k -7u -90 -80 -70|012343536|-49jH7.c 2hiLL.c luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6","Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4","Asia/Jerusalem|LMT JMT IST IDT IDDT|-2k.S -2k.E -20 -30 -40|012323232323232432323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3D8Ok.S 1wvA0.e SyOk.E MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 3LA0 Eo0 oo0 1co0 1dA0 16o0 10M0 1jc0 1tA0 14o0 1cM0 1a00 11A0 1Nc0 Ao0 1Nc0 Ao0 1Ko0 LA0 1o00 WM0 EQK0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0|81e4","Asia/Kabul|LMT +04 +0430|-4A.M -40 -4u|012|-3eLEA.M 2dTcA.M|46e5","Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4","Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6","Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5","Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5","Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2","Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5","Asia/Kuala_Lumpur|LMT SMT +07 +0720 +0730 +09 +08|-6T.p -6T.p -70 -7k -7u -90 -80|01234546|-2M0ST.p aIM0 17anT.p l5XE 17bO 8Fyu 1so10|71e5","Asia/Macau|LMT CST +09 +10 CDT|-7y.a -80 -90 -a0 -90|012323214141414141414141414141414141414141414141414141414141414141414141|-2CFHy.a 1uqKy.a PX0 1kn0 15B0 11b0 4Qq0 1oM0 11c0 1ko0 1u00 11A0 1cM0 11c0 1o00 11A0 1o00 11A0 1oo0 1400 1o00 11A0 1o00 U00 1tA0 U00 1wo0 Rc0 1wru U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cK0 1cO0 1cK0 1cO0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|57e4","Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3","Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5","Asia/Manila|LMT LMT PST PDT JST|fU -84 -80 -90 -90|01232423232|-54m84 2clc0 1vfc4 AL0 cK10 65X0 mXB0 vX0 VK10 1db0|24e6","Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|32e4","Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4","Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5","Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5","Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4","Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4","Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|012313|-2um8n 97XR 1lTzu 2Onc0 6BA0|29e5","Asia/Qostanay|LMT +04 +05 +06|-4e.s -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc4e.s eUoe.s 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 Mv90|","Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|01232323232323232323232323232323232323232323232|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 zQl0|73e4","Asia/Rangoon|LMT RMT +0630 +09|-6o.L -6o.L -6u -90|01232|-3D8So.L 1BnA0 SmnS.L 7j9u|48e5","Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4","Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4","Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -a0 -9u|012343434343151515151515134343|-2um8r.Q 97XV.Q 1m1zu 6CM0 Fz0 1kN0 14n0 1kN0 14L0 1zd0 On0 69B0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6","Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2","Asia/Taipei|LMT CST JST CDT|-86 -80 -90 -90|012131313131313131313131313131313131313131|-30bk6 1FDc6 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5","Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5","Asia/Tbilisi|LMT TBMT +03 +04 +05|-2X.b -2X.b -30 -40 -50|01234343434343434343434323232343434343434343434323|-3D8OX.b 1LUM0 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5","Asia/Tehran|LMT TMT +0330 +0430 +04 +05|-3p.I -3p.I -3u -4u -40 -50|012345423232323232323232323232323232323232323232323232323232323232323232|-2btDp.I Llc0 1FHaT.I 1pc0 120u Rc0 XA0 Wou JX0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0|14e6","Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3","Asia/Tokyo|LMT JST JDT|-9i.X -90 -a0|0121212121|-3jE90 2qSo0 Rc0 1lc0 14o0 1zc0 Oo0 1zc0 Oo0|38e6","Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5","Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5","Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2","Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4","Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5","Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5","Atlantic/Azores|LMT HMT -02 -01 +00 WET|1G.E 1S.w 20 10 0 0|01232323232323232323232323232323232323232323234323432343234323232323232323232323232323232323232323232343434343434343434343434343434345434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3tomh.k 18aoh.k aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|25e4","Atlantic/Bermuda|LMT BMT BST AST ADT|4j.i 4j.i 3j.i 40 30|0121213434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3eLvE.G 16mo0 1bb0 1i10 11X0 ru30 thbE.G 1PX0 11B0 1tz0 Rd0 1zb0 Op0 1zb0 3I10 Lz0 1EN0 FX0 1HB0 FX0 1Kp0 Db0 1Kp0 Db0 1Kp0 FX0 93d0 11z0 GAp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3","Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|54e4","Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2ldW0 1eEo0 7zX0 1djf0|50e4","Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|49e3","Atlantic/Madeira|LMT FMT -01 +00 +01 WET WEST|17.A 17.A 10 0 -10 0 -10|01232323232323232323232323232323232323232323234323432343234323232323232323232323232323232323232323232565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tomQ.o 18anQ.o aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e4","Atlantic/South_Georgia|LMT -02|2q.8 20|01|-3eLxx.Q|30","Atlantic/Stanley|LMT SMT -04 -03 -02|3P.o 3P.o 40 30 20|0123232323232323434323232323232323232323232323232323232323232323232323|-3eLw8.A S200 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2","Australia/Sydney|LMT AEST AEDT|-a4.Q -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-32oW4.Q RlC4.Q xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|40e5","Australia/Adelaide|LMT ACST ACST ACDT|-9e.k -90 -9u -au|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-32oVe.k ak0e.k H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|11e5","Australia/Brisbane|LMT AEST AEDT|-ac.8 -a0 -b0|012121212121212121|-32Bmc.8 Ry2c.8 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5","Australia/Broken_Hill|LMT AEST ACST ACST ACDT|-9p.M -a0 -90 -9u -au|0123434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-32oVp.M 3Lzp.M 6wp0 H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|18e3","Australia/Hobart|LMT AEST AEDT|-9N.g -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-3109N.g Pk1N.g 1a00 1qM0 Oo0 1zc0 Oo0 TAo0 yM0 1cM0 1cM0 1fA0 1a00 VfA0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|21e4","Australia/Darwin|LMT ACST ACST ACDT|-8H.k -90 -9u -au|01232323232|-32oUH.k ajXH.k H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00|12e4","Australia/Eucla|LMT +0845 +0945|-8z.s -8J -9J|01212121212121212121|-30nIz.s PkpO.s xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368","Australia/Lord_Howe|LMT AEST +1030 +1130 +11|-aA.k -a0 -au -bu -b0|01232323232424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424|-32oWA.k 3tzAA.k 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu|347","Australia/Lindeman|LMT AEST AEDT|-9T.U -a0 -b0|0121212121212121212121|-32BlT.U Ry1T.U xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10","Australia/Melbourne|LMT AEST AEDT|-9D.Q -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-32oVD.Q RlBD.Q xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|39e5","Australia/Perth|LMT AWST AWDT|-7H.o -80 -90|01212121212121212121|-30nHH.o PkpH.o xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5","CET|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|","Pacific/Easter|LMT EMT -07 -06 -05|7h.s 7h.s 70 60 50|0123232323232323232323232323234343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLsG.w 1HRc0 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0|30e2","CST6CDT|CST CDT CWT CPT|60 50 50 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","EET|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|","Europe/Dublin|LMT DMT IST GMT BST IST|p.l p.l -y.D 0 -10 -10|012343434343435353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353|-3BHby.D 1ra20 Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g600 14o0 1wo0 17c0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","EST|EST|50|0||","EST5EDT|EST EDT EWT EPT|50 40 40 40|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 SgN0 8x40 iv0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","Etc/GMT-0|GMT|0|0||","Etc/GMT-1|+01|-10|0||","Etc/GMT-10|+10|-a0|0||","Etc/GMT-11|+11|-b0|0||","Etc/GMT-12|+12|-c0|0||","Etc/GMT-13|+13|-d0|0||","Etc/GMT-14|+14|-e0|0||","Etc/GMT-2|+02|-20|0||","Etc/GMT-3|+03|-30|0||","Etc/GMT-4|+04|-40|0||","Etc/GMT-5|+05|-50|0||","Etc/GMT-6|+06|-60|0||","Etc/GMT-7|+07|-70|0||","Etc/GMT-8|+08|-80|0||","Etc/GMT-9|+09|-90|0||","Etc/GMT+1|-01|10|0||","Etc/GMT+10|-10|a0|0||","Etc/GMT+11|-11|b0|0||","Etc/GMT+12|-12|c0|0||","Etc/GMT+2|-02|20|0||","Etc/GMT+3|-03|30|0||","Etc/GMT+4|-04|40|0||","Etc/GMT+5|-05|50|0||","Etc/GMT+6|-06|60|0||","Etc/GMT+7|-07|70|0||","Etc/GMT+8|-08|80|0||","Etc/GMT+9|-09|90|0||","Etc/UTC|UTC|0|0||","Europe/Brussels|LMT BMT WET CET CEST WEST|-h.u -h.u 0 -10 -20 -10|012343434325252525252525252525252525252525252525252525434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3D8Mh.u u1Ah.u SO00 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|21e5","Europe/Andorra|LMT WET CET CEST|-6.4 0 -10 -20|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2M0M6.4 1Pnc6.4 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|79e3","Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|10e5","Europe/Athens|LMT AMT EET EEST CEST CET|-1y.Q -1y.Q -20 -30 -20 -10|0123234545232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-30SNy.Q OMM1 CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|35e5","Europe/London|LMT GMT BST BDST|1.f 0 -10 -20|01212121212121212121212121212121212121212121212121232323232321212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-4VgnW.J 2KHdW.J Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|10e6","Europe/Belgrade|LMT CET CEST|-1m -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3topm 2juLm 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Prague|LMT PMT CET CEST GMT|-V.I -V.I -10 -20 0|0123232323232323232423232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4QbAV.I 1FDc0 XPaV.I 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 1qM0 11c0 mp0 xA0 mn0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|13e5","Europe/Bucharest|LMT BMT EET EEST|-1I.o -1I.o -20 -30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3awpI.o 1AU00 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|19e5","Europe/Budapest|LMT CET CEST|-1g.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3cK1g.k 124Lg.k 11d0 1iO0 11A0 1o00 11A0 1oo0 11c0 1lc0 17c0 O1V0 3Nf0 WM0 1fA0 1cM0 1cM0 1oJ0 1dd0 1020 1fX0 1cp0 1cM0 1cM0 1cM0 1fA0 1a00 bhy0 Rb0 1wr0 Rc0 1C00 LA0 1C00 LA0 SNW0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cO0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e5","Europe/Zurich|LMT BMT CET CEST|-y.8 -t.K -10 -20|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4HyMy.8 1Dw04.m 1SfAt.K 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|38e4","Europe/Chisinau|LMT CMT BMT EET EEST CEST CET MSK MSD|-1T.k -1T -1I.o -20 -30 -20 -10 -30 -40|0123434343434343434345656578787878787878787878434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3D8NT.k 1wNA0.k wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|67e4","Europe/Gibraltar|LMT GMT BST BDST CET CEST|l.o 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123232323232121232121212121212121212145454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-3BHbC.A 1ra1C.A Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|30e3","Europe/Helsinki|LMT HMT EET EEST|-1D.N -1D.N -20 -30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3H0ND.N 1Iu00 OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Kaliningrad|LMT CET CEST EET EEST MSK MSD +03|-1m -10 -20 -20 -30 -30 -40 -30|012121212121212343565656565656565654343434343434343434343434343434343434343434373|-36Rdm UbXm 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 390 7A0 1en0 12N0 1pbb0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4","Europe/Kiev|LMT KMT EET MSK CEST CET MSD EEST|-22.4 -22.4 -20 -30 -20 -10 -40 -30|01234545363636363636363636367272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-3D8O2.4 1LUM0 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o10 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|34e5","Europe/Kirov|LMT +03 +04 +05 MSD MSK MSK|-3i.M -30 -40 -50 -40 -30 -40|0123232323232323232454524545454545454545454545454545454545454565|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 2pz0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4","Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121214121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2le00 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 pvy0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Europe/Madrid|LMT WET WEST WEMT CET CEST|e.I 0 -10 -20 -10 -20|0121212121212121212321454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2M0M0 G5z0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|62e5","Europe/Malta|LMT CET CEST|-W.4 -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-35rcW.4 SXzW.4 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|42e4","Europe/Minsk|LMT MMT EET MSK CEST CET MSD EEST +03|-1O.g -1O -20 -30 -20 -10 -40 -30 -30|012345454363636363636363636372727272727272727272727272727272727272728|-3D8NO.g 1LUM0.g eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5","Europe/Paris|LMT PMT WET WEST CEST CET WEMT|-9.l -9.l 0 -10 -20 -10 -20|01232323232323232323232323232323232323232323232323234545463654545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-3bQ09.l MDA0 cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|11e6","Europe/Moscow|LMT MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|01232434565756865656565656565656565698656565656565656565656565656565656565656a6|-3D8Ou.h 1sQM0 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6","Europe/Riga|LMT RMT LST EET MSK CEST CET MSD EEST|-1A.y -1A.y -2A.y -20 -30 -20 -10 -40 -30|0121213456565647474747474747474838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383|-3D8NA.y 1xde0 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|64e4","Europe/Rome|LMT RMT CET CEST|-N.U -N.U -10 -20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4aU0N.U 15snN.U T000 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|39e5","Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5","Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810|","Europe/Simferopol|LMT SMT EET MSK CEST CET MSD EEST MSK|-2g.o -2g -20 -30 -20 -10 -40 -30 -40|0123454543636363636363636363272727636363727272727272727272727272727272727283|-3D8Og.o 1LUM0.o eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eN0 1cM0 1cM0 1cM0 1cM0 dV0 WO0 1cM0 1cM0 1fy0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4","Europe/Sofia|LMT IMT EET CET CEST EEST|-1x.g -1U.U -20 -10 -20 -30|0123434325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-3D8Nx.g AiLA.k 1UFeU.U WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Tallinn|LMT TMT CET CEST EET MSK MSD EEST|-1D -1D -10 -20 -20 -30 -40 -30|0123214532323565656565656565657474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474|-3D8ND 1wI00 teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|41e4","Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|42e4","Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|13e5","Europe/Vienna|LMT CET CEST|-15.l -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-36Rd5.l UbX5.l 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1ao0 1co0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|18e5","Europe/Vilnius|LMT WMT KMT CET EET MSK CEST MSD EEST|-1F.g -1o -1z.A -10 -20 -30 -20 -40 -30|0123435636365757575757575757584848484848484848463648484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484|-3D8NF.g 1u5Ah.g 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|54e4","Europe/Volgograd|LMT +03 +04 +05 MSD MSK MSK|-2V.E -30 -40 -50 -40 -30 -40|012323232323232324545452454545454545454545454545454545454545456525|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1fA0 1cM0 2pz0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 9Jd0 5gn0|10e5","Europe/Warsaw|LMT WMT CET CEST EET EEST|-1o -1o -10 -20 -20 -30|0123232345423232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3D8No 1qDA0 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e5","HST|HST|a0|0||","Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2","Indian/Maldives|LMT MMT +05|-4S -4S -50|012|-3D8QS 3eLA0|35e4","Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4","Pacific/Kwajalein|LMT +11 +10 +09 -12 +12|-b9.k -b0 -a0 -90 c0 -c0|0123145|-2M0X9.k 1rDA9.k akp0 6Up0 12ry0 Wan0|14e3","MET|MET MEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|","MST|MST|70|0||","MST7MDT|MST MDT MWT MPT|70 60 60 60|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","Pacific/Chatham|LMT +1215 +1245 +1345|-cd.M -cf -cJ -dJ|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-46jMd.M 37RbW.M 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00|600","Pacific/Apia|LMT LMT -1130 -11 -10 +14 +13|-cx.4 bq.U bu b0 a0 -e0 -d0|012343456565656565656565656|-38Fox.4 J1A0 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0|37e3","Pacific/Bougainville|LMT PMMT +10 +09 +11|-am.g -9M.w -a0 -90 -b0|012324|-3D8Wm.g AvAx.I 1TCLM.w 7CN0 2MQp0|18e4","Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|012121212121212121212121|-2l9nd.g 2uNXd.g Dc0 n610 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3","Pacific/Enderbury|-00 -12 -11 +13|0 c0 b0 -d0|0123|-1iIo0 1GsA0 B7X0|1","Pacific/Fakaofo|LMT -11 +13|bo.U b0 -d0|012|-2M0Az.4 4ufXz.4|483","Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|012121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 20o0 pc0 2hc0 bc0|88e4","Pacific/Tarawa|LMT +12|-bw.4 -c0|01|-2M0Xw.4|29e3","Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3","Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125","Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4","Pacific/Guam|LMT LMT GST +09 GDT ChST|el -9D -a0 -90 -b0 -a0|0123242424242424242425|-54m9D 2glc0 1DFbD 6pB0 AhB0 3QL0 g2p0 3p91 WOX rX0 1zd0 Rb0 1wp0 Rb0 5xd0 rX0 5sN0 zb1 1C0X On0 ULb0|17e4","Pacific/Honolulu|LMT HST HDT HWT HPT HST|av.q au 9u 9u 9u a0|01213415|-3061s.y 1uMdW.y 8x0 lef0 8wWu iAu 46p0|37e4","Pacific/Kiritimati|LMT -1040 -10 +14|at.k aE a0 -e0|0123|-2M0Bu.E 3bIMa.E B7Xk|51e2","Pacific/Kosrae|LMT LMT +11 +09 +10 +12|d8.4 -aP.U -b0 -90 -a0 -c0|0123243252|-54maP.U 2glc0 xsnP.U axC0 HBy0 akp0 axd0 WOK0 1bdz0|66e2","Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2","Pacific/Pago_Pago|LMT LMT SST|-cB.c bm.M b0|012|-38FoB.c J1A0|37e2","Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E QCnB.E 7mqu 1lnbu|10e3","Pacific/Niue|LMT -1120 -11|bj.E bk b0|012|-FScE.k suo0.k|12e2","Pacific/Norfolk|LMT +1112 +1130 +1230 +11 +12|-bb.Q -bc -bu -cu -b0 -c0|0123245454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2M0Xb.Q 21ILX.Q W01G Oo0 1COo0 9Jcu 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|25e4","Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3","Pacific/Palau|LMT LMT +09|f2.4 -8V.U -90|012|-54m8V.U 2glc0|21e3","Pacific/Pitcairn|LMT -0830 -08|8E.k 8u 80|012|-2M0Dj.E 3UVXN.E|56","Pacific/Rarotonga|LMT LMT -1030 -0930 -10|-dk.U aD.4 au 9u a0|01234343434343434343434343434|-2Otpk.U 28zc0 13tbO.U IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3","Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4","Pacific/Tongatapu|LMT +1220 +13 +14|-cj.c -ck -d0 -e0|01232323232|-XbMj.c BgLX.c 1yndk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3","PST8PDT|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","WET|WET WEST|0 -10|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|"],"links":["Africa/Abidjan|Africa/Accra","Africa/Abidjan|Africa/Bamako","Africa/Abidjan|Africa/Banjul","Africa/Abidjan|Africa/Conakry","Africa/Abidjan|Africa/Dakar","Africa/Abidjan|Africa/Freetown","Africa/Abidjan|Africa/Lome","Africa/Abidjan|Africa/Nouakchott","Africa/Abidjan|Africa/Ouagadougou","Africa/Abidjan|Africa/Timbuktu","Africa/Abidjan|Atlantic/Reykjavik","Africa/Abidjan|Atlantic/St_Helena","Africa/Abidjan|Iceland","Africa/Cairo|Egypt","Africa/Johannesburg|Africa/Maseru","Africa/Johannesburg|Africa/Mbabane","Africa/Lagos|Africa/Bangui","Africa/Lagos|Africa/Brazzaville","Africa/Lagos|Africa/Douala","Africa/Lagos|Africa/Kinshasa","Africa/Lagos|Africa/Libreville","Africa/Lagos|Africa/Luanda","Africa/Lagos|Africa/Malabo","Africa/Lagos|Africa/Niamey","Africa/Lagos|Africa/Porto-Novo","Africa/Maputo|Africa/Blantyre","Africa/Maputo|Africa/Bujumbura","Africa/Maputo|Africa/Gaborone","Africa/Maputo|Africa/Harare","Africa/Maputo|Africa/Kigali","Africa/Maputo|Africa/Lubumbashi","Africa/Maputo|Africa/Lusaka","Africa/Nairobi|Africa/Addis_Ababa","Africa/Nairobi|Africa/Asmara","Africa/Nairobi|Africa/Asmera","Africa/Nairobi|Africa/Dar_es_Salaam","Africa/Nairobi|Africa/Djibouti","Africa/Nairobi|Africa/Kampala","Africa/Nairobi|Africa/Mogadishu","Africa/Nairobi|Indian/Antananarivo","Africa/Nairobi|Indian/Comoro","Africa/Nairobi|Indian/Mayotte","Africa/Tripoli|Libya","America/Adak|America/Atka","America/Adak|US/Aleutian","America/Anchorage|US/Alaska","America/Argentina/Buenos_Aires|America/Buenos_Aires","America/Argentina/Catamarca|America/Argentina/ComodRivadavia","America/Argentina/Catamarca|America/Catamarca","America/Argentina/Cordoba|America/Cordoba","America/Argentina/Cordoba|America/Rosario","America/Argentina/Jujuy|America/Jujuy","America/Argentina/Mendoza|America/Mendoza","America/Chicago|US/Central","America/Denver|America/Shiprock","America/Denver|Navajo","America/Denver|US/Mountain","America/Detroit|US/Michigan","America/Edmonton|America/Yellowknife","America/Edmonton|Canada/Mountain","America/Fort_Wayne|America/Indiana/Indianapolis","America/Fort_Wayne|America/Indianapolis","America/Fort_Wayne|US/East-Indiana","America/Godthab|America/Nuuk","America/Halifax|Canada/Atlantic","America/Havana|Cuba","America/Indiana/Knox|America/Knox_IN","America/Indiana/Knox|US/Indiana-Starke","America/Iqaluit|America/Pangnirtung","America/Jamaica|Jamaica","America/Kentucky/Louisville|America/Louisville","America/Los_Angeles|US/Pacific","America/Manaus|Brazil/West","America/Mazatlan|Mexico/BajaSur","America/Mexico_City|Mexico/General","America/New_York|US/Eastern","America/Noronha|Brazil/DeNoronha","America/Panama|America/Atikokan","America/Panama|America/Cayman","America/Panama|America/Coral_Harbour","America/Phoenix|America/Creston","America/Phoenix|US/Arizona","America/Puerto_Rico|America/Anguilla","America/Puerto_Rico|America/Antigua","America/Puerto_Rico|America/Aruba","America/Puerto_Rico|America/Blanc-Sablon","America/Puerto_Rico|America/Curacao","America/Puerto_Rico|America/Dominica","America/Puerto_Rico|America/Grenada","America/Puerto_Rico|America/Guadeloupe","America/Puerto_Rico|America/Kralendijk","America/Puerto_Rico|America/Lower_Princes","America/Puerto_Rico|America/Marigot","America/Puerto_Rico|America/Montserrat","America/Puerto_Rico|America/Port_of_Spain","America/Puerto_Rico|America/St_Barthelemy","America/Puerto_Rico|America/St_Kitts","America/Puerto_Rico|America/St_Lucia","America/Puerto_Rico|America/St_Thomas","America/Puerto_Rico|America/St_Vincent","America/Puerto_Rico|America/Tortola","America/Puerto_Rico|America/Virgin","America/Regina|Canada/Saskatchewan","America/Rio_Branco|America/Porto_Acre","America/Rio_Branco|Brazil/Acre","America/Santiago|Chile/Continental","America/Sao_Paulo|Brazil/East","America/St_Johns|Canada/Newfoundland","America/Tijuana|America/Ensenada","America/Tijuana|America/Santa_Isabel","America/Tijuana|Mexico/BajaNorte","America/Toronto|America/Montreal","America/Toronto|America/Nassau","America/Toronto|America/Nipigon","America/Toronto|America/Thunder_Bay","America/Toronto|Canada/Eastern","America/Vancouver|Canada/Pacific","America/Whitehorse|Canada/Yukon","America/Winnipeg|America/Rainy_River","America/Winnipeg|Canada/Central","Asia/Ashgabat|Asia/Ashkhabad","Asia/Bangkok|Asia/Phnom_Penh","Asia/Bangkok|Asia/Vientiane","Asia/Bangkok|Indian/Christmas","Asia/Brunei|Asia/Kuching","Asia/Dhaka|Asia/Dacca","Asia/Dubai|Asia/Muscat","Asia/Dubai|Indian/Mahe","Asia/Dubai|Indian/Reunion","Asia/Ho_Chi_Minh|Asia/Saigon","Asia/Hong_Kong|Hongkong","Asia/Jerusalem|Asia/Tel_Aviv","Asia/Jerusalem|Israel","Asia/Kathmandu|Asia/Katmandu","Asia/Kolkata|Asia/Calcutta","Asia/Kuala_Lumpur|Asia/Singapore","Asia/Kuala_Lumpur|Singapore","Asia/Macau|Asia/Macao","Asia/Makassar|Asia/Ujung_Pandang","Asia/Nicosia|Europe/Nicosia","Asia/Qatar|Asia/Bahrain","Asia/Rangoon|Asia/Yangon","Asia/Rangoon|Indian/Cocos","Asia/Riyadh|Antarctica/Syowa","Asia/Riyadh|Asia/Aden","Asia/Riyadh|Asia/Kuwait","Asia/Seoul|ROK","Asia/Shanghai|Asia/Chongqing","Asia/Shanghai|Asia/Chungking","Asia/Shanghai|Asia/Harbin","Asia/Shanghai|PRC","Asia/Taipei|ROC","Asia/Tehran|Iran","Asia/Thimphu|Asia/Thimbu","Asia/Tokyo|Japan","Asia/Ulaanbaatar|Asia/Ulan_Bator","Asia/Urumqi|Asia/Kashgar","Atlantic/Faroe|Atlantic/Faeroe","Australia/Adelaide|Australia/South","Australia/Brisbane|Australia/Queensland","Australia/Broken_Hill|Australia/Yancowinna","Australia/Darwin|Australia/North","Australia/Hobart|Australia/Currie","Australia/Hobart|Australia/Tasmania","Australia/Lord_Howe|Australia/LHI","Australia/Melbourne|Australia/Victoria","Australia/Perth|Australia/West","Australia/Sydney|Australia/ACT","Australia/Sydney|Australia/Canberra","Australia/Sydney|Australia/NSW","Etc/GMT-0|Etc/GMT","Etc/GMT-0|Etc/GMT+0","Etc/GMT-0|Etc/GMT0","Etc/GMT-0|Etc/Greenwich","Etc/GMT-0|GMT","Etc/GMT-0|GMT+0","Etc/GMT-0|GMT-0","Etc/GMT-0|GMT0","Etc/GMT-0|Greenwich","Etc/UTC|Etc/UCT","Etc/UTC|Etc/Universal","Etc/UTC|Etc/Zulu","Etc/UTC|UCT","Etc/UTC|UTC","Etc/UTC|Universal","Etc/UTC|Zulu","Europe/Belgrade|Europe/Ljubljana","Europe/Belgrade|Europe/Podgorica","Europe/Belgrade|Europe/Sarajevo","Europe/Belgrade|Europe/Skopje","Europe/Belgrade|Europe/Zagreb","Europe/Berlin|Arctic/Longyearbyen","Europe/Berlin|Atlantic/Jan_Mayen","Europe/Berlin|Europe/Copenhagen","Europe/Berlin|Europe/Oslo","Europe/Berlin|Europe/Stockholm","Europe/Brussels|Europe/Amsterdam","Europe/Brussels|Europe/Luxembourg","Europe/Chisinau|Europe/Tiraspol","Europe/Dublin|Eire","Europe/Helsinki|Europe/Mariehamn","Europe/Istanbul|Asia/Istanbul","Europe/Istanbul|Turkey","Europe/Kiev|Europe/Kyiv","Europe/Kiev|Europe/Uzhgorod","Europe/Kiev|Europe/Zaporozhye","Europe/Lisbon|Portugal","Europe/London|Europe/Belfast","Europe/London|Europe/Guernsey","Europe/London|Europe/Isle_of_Man","Europe/London|Europe/Jersey","Europe/London|GB","Europe/London|GB-Eire","Europe/Moscow|W-SU","Europe/Paris|Europe/Monaco","Europe/Prague|Europe/Bratislava","Europe/Rome|Europe/San_Marino","Europe/Rome|Europe/Vatican","Europe/Warsaw|Poland","Europe/Zurich|Europe/Busingen","Europe/Zurich|Europe/Vaduz","Indian/Maldives|Indian/Kerguelen","Pacific/Auckland|Antarctica/McMurdo","Pacific/Auckland|Antarctica/South_Pole","Pacific/Auckland|NZ","Pacific/Chatham|NZ-CHAT","Pacific/Easter|Chile/EasterIsland","Pacific/Enderbury|Pacific/Kanton","Pacific/Guadalcanal|Pacific/Pohnpei","Pacific/Guadalcanal|Pacific/Ponape","Pacific/Guam|Pacific/Saipan","Pacific/Honolulu|Pacific/Johnston","Pacific/Honolulu|US/Hawaii","Pacific/Kwajalein|Kwajalein","Pacific/Pago_Pago|Pacific/Midway","Pacific/Pago_Pago|Pacific/Samoa","Pacific/Pago_Pago|US/Samoa","Pacific/Port_Moresby|Antarctica/DumontDUrville","Pacific/Port_Moresby|Pacific/Chuuk","Pacific/Port_Moresby|Pacific/Truk","Pacific/Port_Moresby|Pacific/Yap","Pacific/Tarawa|Pacific/Funafuti","Pacific/Tarawa|Pacific/Majuro","Pacific/Tarawa|Pacific/Wake","Pacific/Tarawa|Pacific/Wallis"],"countries":["AD|Europe/Andorra","AE|Asia/Dubai","AF|Asia/Kabul","AG|America/Puerto_Rico America/Antigua","AI|America/Puerto_Rico America/Anguilla","AL|Europe/Tirane","AM|Asia/Yerevan","AO|Africa/Lagos Africa/Luanda","AQ|Antarctica/Casey Antarctica/Davis Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Troll Antarctica/Vostok Pacific/Auckland Pacific/Port_Moresby Asia/Riyadh Antarctica/McMurdo Antarctica/DumontDUrville Antarctica/Syowa","AR|America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia","AS|Pacific/Pago_Pago","AT|Europe/Vienna","AU|Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla","AW|America/Puerto_Rico America/Aruba","AX|Europe/Helsinki Europe/Mariehamn","AZ|Asia/Baku","BA|Europe/Belgrade Europe/Sarajevo","BB|America/Barbados","BD|Asia/Dhaka","BE|Europe/Brussels","BF|Africa/Abidjan Africa/Ouagadougou","BG|Europe/Sofia","BH|Asia/Qatar Asia/Bahrain","BI|Africa/Maputo Africa/Bujumbura","BJ|Africa/Lagos Africa/Porto-Novo","BL|America/Puerto_Rico America/St_Barthelemy","BM|Atlantic/Bermuda","BN|Asia/Kuching Asia/Brunei","BO|America/La_Paz","BQ|America/Puerto_Rico America/Kralendijk","BR|America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco","BS|America/Toronto America/Nassau","BT|Asia/Thimphu","BW|Africa/Maputo Africa/Gaborone","BY|Europe/Minsk","BZ|America/Belize","CA|America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Toronto America/Iqaluit America/Winnipeg America/Resolute America/Rankin_Inlet America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Inuvik America/Dawson_Creek America/Fort_Nelson America/Whitehorse America/Dawson America/Vancouver America/Panama America/Puerto_Rico America/Phoenix America/Blanc-Sablon America/Atikokan America/Creston","CC|Asia/Yangon Indian/Cocos","CD|Africa/Maputo Africa/Lagos Africa/Kinshasa Africa/Lubumbashi","CF|Africa/Lagos Africa/Bangui","CG|Africa/Lagos Africa/Brazzaville","CH|Europe/Zurich","CI|Africa/Abidjan","CK|Pacific/Rarotonga","CL|America/Santiago America/Punta_Arenas Pacific/Easter","CM|Africa/Lagos Africa/Douala","CN|Asia/Shanghai Asia/Urumqi","CO|America/Bogota","CR|America/Costa_Rica","CU|America/Havana","CV|Atlantic/Cape_Verde","CW|America/Puerto_Rico America/Curacao","CX|Asia/Bangkok Indian/Christmas","CY|Asia/Nicosia Asia/Famagusta","CZ|Europe/Prague","DE|Europe/Zurich Europe/Berlin Europe/Busingen","DJ|Africa/Nairobi Africa/Djibouti","DK|Europe/Berlin Europe/Copenhagen","DM|America/Puerto_Rico America/Dominica","DO|America/Santo_Domingo","DZ|Africa/Algiers","EC|America/Guayaquil Pacific/Galapagos","EE|Europe/Tallinn","EG|Africa/Cairo","EH|Africa/El_Aaiun","ER|Africa/Nairobi Africa/Asmara","ES|Europe/Madrid Africa/Ceuta Atlantic/Canary","ET|Africa/Nairobi Africa/Addis_Ababa","FI|Europe/Helsinki","FJ|Pacific/Fiji","FK|Atlantic/Stanley","FM|Pacific/Kosrae Pacific/Port_Moresby Pacific/Guadalcanal Pacific/Chuuk Pacific/Pohnpei","FO|Atlantic/Faroe","FR|Europe/Paris","GA|Africa/Lagos Africa/Libreville","GB|Europe/London","GD|America/Puerto_Rico America/Grenada","GE|Asia/Tbilisi","GF|America/Cayenne","GG|Europe/London Europe/Guernsey","GH|Africa/Abidjan Africa/Accra","GI|Europe/Gibraltar","GL|America/Nuuk America/Danmarkshavn America/Scoresbysund America/Thule","GM|Africa/Abidjan Africa/Banjul","GN|Africa/Abidjan Africa/Conakry","GP|America/Puerto_Rico America/Guadeloupe","GQ|Africa/Lagos Africa/Malabo","GR|Europe/Athens","GS|Atlantic/South_Georgia","GT|America/Guatemala","GU|Pacific/Guam","GW|Africa/Bissau","GY|America/Guyana","HK|Asia/Hong_Kong","HN|America/Tegucigalpa","HR|Europe/Belgrade Europe/Zagreb","HT|America/Port-au-Prince","HU|Europe/Budapest","ID|Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura","IE|Europe/Dublin","IL|Asia/Jerusalem","IM|Europe/London Europe/Isle_of_Man","IN|Asia/Kolkata","IO|Indian/Chagos","IQ|Asia/Baghdad","IR|Asia/Tehran","IS|Africa/Abidjan Atlantic/Reykjavik","IT|Europe/Rome","JE|Europe/London Europe/Jersey","JM|America/Jamaica","JO|Asia/Amman","JP|Asia/Tokyo","KE|Africa/Nairobi","KG|Asia/Bishkek","KH|Asia/Bangkok Asia/Phnom_Penh","KI|Pacific/Tarawa Pacific/Kanton Pacific/Kiritimati","KM|Africa/Nairobi Indian/Comoro","KN|America/Puerto_Rico America/St_Kitts","KP|Asia/Pyongyang","KR|Asia/Seoul","KW|Asia/Riyadh Asia/Kuwait","KY|America/Panama America/Cayman","KZ|Asia/Almaty Asia/Qyzylorda Asia/Qostanay Asia/Aqtobe Asia/Aqtau Asia/Atyrau Asia/Oral","LA|Asia/Bangkok Asia/Vientiane","LB|Asia/Beirut","LC|America/Puerto_Rico America/St_Lucia","LI|Europe/Zurich Europe/Vaduz","LK|Asia/Colombo","LR|Africa/Monrovia","LS|Africa/Johannesburg Africa/Maseru","LT|Europe/Vilnius","LU|Europe/Brussels Europe/Luxembourg","LV|Europe/Riga","LY|Africa/Tripoli","MA|Africa/Casablanca","MC|Europe/Paris Europe/Monaco","MD|Europe/Chisinau","ME|Europe/Belgrade Europe/Podgorica","MF|America/Puerto_Rico America/Marigot","MG|Africa/Nairobi Indian/Antananarivo","MH|Pacific/Tarawa Pacific/Kwajalein Pacific/Majuro","MK|Europe/Belgrade Europe/Skopje","ML|Africa/Abidjan Africa/Bamako","MM|Asia/Yangon","MN|Asia/Ulaanbaatar Asia/Hovd Asia/Choibalsan","MO|Asia/Macau","MP|Pacific/Guam Pacific/Saipan","MQ|America/Martinique","MR|Africa/Abidjan Africa/Nouakchott","MS|America/Puerto_Rico America/Montserrat","MT|Europe/Malta","MU|Indian/Mauritius","MV|Indian/Maldives","MW|Africa/Maputo Africa/Blantyre","MX|America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Chihuahua America/Ciudad_Juarez America/Ojinaga America/Mazatlan America/Bahia_Banderas America/Hermosillo America/Tijuana","MY|Asia/Kuching Asia/Singapore Asia/Kuala_Lumpur","MZ|Africa/Maputo","NA|Africa/Windhoek","NC|Pacific/Noumea","NE|Africa/Lagos Africa/Niamey","NF|Pacific/Norfolk","NG|Africa/Lagos","NI|America/Managua","NL|Europe/Brussels Europe/Amsterdam","NO|Europe/Berlin Europe/Oslo","NP|Asia/Kathmandu","NR|Pacific/Nauru","NU|Pacific/Niue","NZ|Pacific/Auckland Pacific/Chatham","OM|Asia/Dubai Asia/Muscat","PA|America/Panama","PE|America/Lima","PF|Pacific/Tahiti Pacific/Marquesas Pacific/Gambier","PG|Pacific/Port_Moresby Pacific/Bougainville","PH|Asia/Manila","PK|Asia/Karachi","PL|Europe/Warsaw","PM|America/Miquelon","PN|Pacific/Pitcairn","PR|America/Puerto_Rico","PS|Asia/Gaza Asia/Hebron","PT|Europe/Lisbon Atlantic/Madeira Atlantic/Azores","PW|Pacific/Palau","PY|America/Asuncion","QA|Asia/Qatar","RE|Asia/Dubai Indian/Reunion","RO|Europe/Bucharest","RS|Europe/Belgrade","RU|Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Kirov Europe/Volgograd Europe/Astrakhan Europe/Saratov Europe/Ulyanovsk Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Barnaul Asia/Tomsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Ust-Nera Asia/Magadan Asia/Sakhalin Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr","RW|Africa/Maputo Africa/Kigali","SA|Asia/Riyadh","SB|Pacific/Guadalcanal","SC|Asia/Dubai Indian/Mahe","SD|Africa/Khartoum","SE|Europe/Berlin Europe/Stockholm","SG|Asia/Singapore","SH|Africa/Abidjan Atlantic/St_Helena","SI|Europe/Belgrade Europe/Ljubljana","SJ|Europe/Berlin Arctic/Longyearbyen","SK|Europe/Prague Europe/Bratislava","SL|Africa/Abidjan Africa/Freetown","SM|Europe/Rome Europe/San_Marino","SN|Africa/Abidjan Africa/Dakar","SO|Africa/Nairobi Africa/Mogadishu","SR|America/Paramaribo","SS|Africa/Juba","ST|Africa/Sao_Tome","SV|America/El_Salvador","SX|America/Puerto_Rico America/Lower_Princes","SY|Asia/Damascus","SZ|Africa/Johannesburg Africa/Mbabane","TC|America/Grand_Turk","TD|Africa/Ndjamena","TF|Asia/Dubai Indian/Maldives Indian/Kerguelen","TG|Africa/Abidjan Africa/Lome","TH|Asia/Bangkok","TJ|Asia/Dushanbe","TK|Pacific/Fakaofo","TL|Asia/Dili","TM|Asia/Ashgabat","TN|Africa/Tunis","TO|Pacific/Tongatapu","TR|Europe/Istanbul","TT|America/Puerto_Rico America/Port_of_Spain","TV|Pacific/Tarawa Pacific/Funafuti","TW|Asia/Taipei","TZ|Africa/Nairobi Africa/Dar_es_Salaam","UA|Europe/Simferopol Europe/Kyiv","UG|Africa/Nairobi Africa/Kampala","UM|Pacific/Pago_Pago Pacific/Tarawa Pacific/Midway Pacific/Wake","US|America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu","UY|America/Montevideo","UZ|Asia/Samarkand Asia/Tashkent","VA|Europe/Rome Europe/Vatican","VC|America/Puerto_Rico America/St_Vincent","VE|America/Caracas","VG|America/Puerto_Rico America/Tortola","VI|America/Puerto_Rico America/St_Thomas","VN|Asia/Bangkok Asia/Ho_Chi_Minh","VU|Pacific/Efate","WF|Pacific/Tarawa Pacific/Wallis","WS|Pacific/Apia","YE|Asia/Riyadh Asia/Aden","YT|Africa/Nairobi Indian/Mayotte","ZA|Africa/Johannesburg","ZM|Africa/Maputo Africa/Lusaka","ZW|Africa/Maputo Africa/Harare"]}')}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/640.ea69207168bc4f5e.js b/client/dist/angular-material-template/640.ea69207168bc4f5e.js new file mode 100644 index 0000000..73f7c25 --- /dev/null +++ b/client/dist/angular-material-template/640.ea69207168bc4f5e.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[640],{4640:(x,v,s)=>{s.r(v),s.d(v,{AuthModule:()=>M});var f=s(1368),u=s(2992),o=s(6504),e=s(2116),p=s(4476),w=s(4440),g=s(119),l=s(2276),h=s(7816),m=s(2080),C=s(9092),I=s(7536),c=s(4060),y=s(7760);function E(r,d){1&r&&(e.I0R(0,"mat-error",13),e.OEk(1," Please enter a valid email address "),e.C$Y())}function R(r,d){1&r&&(e.I0R(0,"mat-error",14),e.OEk(1," Email is "),e.I0R(2,"strong"),e.OEk(3,"required"),e.C$Y()())}function P(r,d){1&r&&(e.I0R(0,"mat-error",15),e.OEk(1," Password is "),e.I0R(2,"strong"),e.OEk(3,"required"),e.C$Y()())}function b(r,d){1&r&&e.wR5(0,"mat-progress-bar",16)}let k=(()=>{class r{constructor(i,a,t,n){this.router=i,this.titleService=a,this.notificationService=t,this.authenticationService=n}ngOnInit(){this.titleService.setTitle("Jucundus - Login"),this.authenticationService.logout(),this.createForm()}createForm(){const i=localStorage.getItem("savedUserEmail");this.loginForm=new o.k1({email:new o.yM(i,[o.AQ.required,o.AQ.email]),password:new o.yM("",o.AQ.required),rememberMe:new o.yM(null!==i)})}login(){const i=this.loginForm.get("email")?.value,a=this.loginForm.get("password")?.value,t=this.loginForm.get("rememberMe")?.value;this.loading=!0,this.authenticationService.login(i.toLowerCase(),a).subscribe(n=>{t?localStorage.setItem("savedUserEmail",i):localStorage.removeItem("savedUserEmail"),this.router.navigate(["dashboard"])},n=>{this.notificationService.openSnackBar(n.error.message),this.loading=!1})}resetPassword(){this.router.navigate(["/auth/password-reset-request"])}static#e=this.\u0275fac=function(a){return new(a||r)(e.GI1(u.E5),e.GI1(p.OY),e.GI1(w.g),e.GI1(g.A))};static#t=this.\u0275cmp=e.In1({type:r,selectors:[["app-login"]],decls:24,vars:6,consts:[["fxLayout","row","fxLayoutAlign","center center",1,"container","login-container"],["fxFlex","30%","fxFlex.sm","50%","fxFlex.xs","90%",3,"formGroup"],[1,"full-width"],["id","emailInput","matInput","","placeholder","Email","formControlName","email","autocomplete","email","type","email"],["id","invalidEmailError",4,"ngIf"],["id","requiredEmailError",4,"ngIf"],["id","passwordInput","matInput","","placeholder","Password","formControlName","password","type","password","autocomplete","current-password"],["id","requiredPasswordError",4,"ngIf"],["formControlName","rememberMe"],[1,"login-actions"],["mat-raised-button","","id","login","color","primary",3,"disabled","click"],["mat-button","","id","resetPassword","type","button",3,"click"],["mode","indeterminate",4,"ngIf"],["id","invalidEmailError"],["id","requiredEmailError"],["id","requiredPasswordError"],["mode","indeterminate"]],template:function(a,t){1&a&&(e.I0R(0,"div",0)(1,"form",1)(2,"mat-card")(3,"mat-card-title"),e.OEk(4,"Jucundus"),e.C$Y(),e.I0R(5,"mat-card-subtitle"),e.OEk(6,"Log in to your account"),e.C$Y(),e.I0R(7,"mat-card-content")(8,"mat-form-field",2),e.wR5(9,"input",3),e.yuY(10,E,2,0,"mat-error",4)(11,R,4,0,"mat-error",5),e.C$Y(),e.I0R(12,"mat-form-field",2),e.wR5(13,"input",6),e.yuY(14,P,4,0,"mat-error",7),e.C$Y(),e.I0R(15,"div",2)(16,"mat-slide-toggle",8),e.OEk(17,"Remember my email address"),e.C$Y()()(),e.I0R(18,"mat-card-actions",9)(19,"button",10),e.qCj("click",function(){return t.login()}),e.OEk(20,"Login"),e.C$Y(),e.I0R(21,"button",11),e.qCj("click",function(){return t.resetPassword()}),e.OEk(22,"Reset Password"),e.C$Y()()(),e.yuY(23,b,1,0,"mat-progress-bar",12),e.C$Y()()),2&a&&(e.yG2(),e.E7m("formGroup",t.loginForm),e.yG2(9),e.E7m("ngIf",t.loginForm.controls.email.hasError("email")),e.yG2(),e.E7m("ngIf",t.loginForm.controls.email.hasError("required")),e.yG2(3),e.E7m("ngIf",t.loginForm.controls.email.hasError("required")),e.yG2(5),e.E7m("disabled",t.loginForm.invalid||t.loading),e.yG2(4),e.E7m("ngIf",t.loading))},dependencies:[f.u_,o.sz,o.ot,o.ue,o.u,o.uW,o.Wo,l.sZ,l.qG,l.CA,h.Gw,m.SM,m.W0,m.WK,m.uK,m.gp,C.wx,I.yi,c.Up,c.wJ,y.cP]})}return r})();function G(r,d){1&r&&(e.I0R(0,"mat-error",10),e.OEk(1," Please enter a valid email address "),e.C$Y())}function Y(r,d){1&r&&(e.I0R(0,"mat-error",11),e.OEk(1," Email is "),e.I0R(2,"strong"),e.OEk(3,"required"),e.C$Y()())}function S(r,d){1&r&&e.wR5(0,"mat-progress-bar",12)}let O=(()=>{class r{constructor(i,a,t,n){this.authService=i,this.notificationService=a,this.titleService=t,this.router=n}ngOnInit(){this.titleService.setTitle("Jucundus - Password Reset Request"),this.form=new o.k1({email:new o.yM("",[o.AQ.required,o.AQ.email])}),this.form.get("email")?.valueChanges.subscribe(i=>{this.email=i.toLowerCase()})}resetPassword(){this.loading=!0,this.authService.passwordResetRequest(this.email).subscribe(i=>{this.router.navigate(["/auth/login"]),this.notificationService.openSnackBar("Password verification mail has been sent to your email address.")},i=>{this.loading=!1,this.notificationService.openSnackBar(i.error)})}cancel(){this.router.navigate(["/"])}static#e=this.\u0275fac=function(a){return new(a||r)(e.GI1(g.A),e.GI1(w.g),e.GI1(p.OY),e.GI1(u.E5))};static#t=this.\u0275cmp=e.In1({type:r,selectors:[["app-password-reset-request"]],decls:18,vars:5,consts:[["fxLayout","row","fxLayoutAlign","center center",1,"container","login-container"],["fxFlex","30%","fxFlex.sm","50%","fxFlex.xs","90%",3,"formGroup"],[1,"full-width"],["id","emailInput","matInput","","placeholder","Email","formControlName","email","autocomplete","email","type","email"],["id","invalidEmailError",4,"ngIf"],["id","requiredEmailError",4,"ngIf"],[1,"login-actions"],["id","submit","mat-raised-button","","color","primary",3,"disabled","click"],["id","cancel","mat-button","",3,"click"],["mode","indeterminate",4,"ngIf"],["id","invalidEmailError"],["id","requiredEmailError"],["mode","indeterminate"]],template:function(a,t){1&a&&(e.I0R(0,"div",0)(1,"form",1)(2,"mat-card")(3,"mat-card-title"),e.OEk(4,"Jucundus"),e.C$Y(),e.I0R(5,"mat-card-subtitle"),e.OEk(6,"Reset your password"),e.C$Y(),e.I0R(7,"mat-card-content")(8,"mat-form-field",2),e.wR5(9,"input",3),e.yuY(10,G,2,0,"mat-error",4)(11,Y,4,0,"mat-error",5),e.C$Y()(),e.I0R(12,"mat-card-actions",6)(13,"button",7),e.qCj("click",function(){return t.resetPassword()}),e.OEk(14,"Reset Password"),e.C$Y(),e.I0R(15,"button",8),e.qCj("click",function(){return t.cancel()}),e.OEk(16,"Cancel"),e.C$Y()()(),e.yuY(17,S,1,0,"mat-progress-bar",9),e.C$Y()()),2&a&&(e.yG2(),e.E7m("formGroup",t.form),e.yG2(9),e.E7m("ngIf",t.form.controls.email.hasError("email")),e.yG2(),e.E7m("ngIf",t.form.controls.email.hasError("required")),e.yG2(2),e.E7m("disabled",t.form.invalid||t.loading),e.yG2(4),e.E7m("ngIf",t.loading))},dependencies:[f.u_,o.sz,o.ot,o.ue,o.u,o.uW,o.Wo,l.sZ,l.qG,l.CA,h.Gw,m.SM,m.W0,m.WK,m.uK,m.gp,C.wx,I.yi,c.Up,c.wJ]})}return r})();var $=s(1560);function _(r,d){1&r&&(e.I0R(0,"mat-error"),e.OEk(1," Please enter a new password "),e.C$Y())}function q(r,d){1&r&&(e.I0R(0,"mat-error"),e.OEk(1," Please enter a your current password "),e.C$Y())}function F(r,d){1&r&&e.wR5(0,"mat-progress-bar",13)}const T=[{path:"login",component:k},{path:"password-reset-request",component:O},{path:"password-reset",component:(()=>{class r{constructor(i,a,t,n,N){this.activeRoute=i,this.router=a,this.authService=t,this.notificationService=n,this.titleService=N,this.titleService.setTitle("Jucundus - Password Reset"),this.hideNewPassword=!0,this.hideNewPasswordConfirm=!0}ngOnInit(){this.activeRoute.queryParamMap.subscribe(i=>{this.token=i.get("token")+"",this.email=i.get("email")+"",(!this.token||!this.email)&&this.router.navigate(["/"])}),this.form=new o.k1({newPassword:new o.yM("",o.AQ.required),newPasswordConfirm:new o.yM("",o.AQ.required)})}resetPassword(){const i=this.form.get("newPassword")?.value,a=this.form.get("newPasswordConfirm")?.value;i===a?(this.loading=!0,this.authService.passwordReset(this.email,this.token,i,a).subscribe(()=>{this.notificationService.openSnackBar("Your password has been changed."),this.router.navigate(["/auth/login"])},t=>{this.notificationService.openSnackBar(t.error),this.loading=!1})):this.notificationService.openSnackBar("Passwords do not match")}cancel(){this.router.navigate(["/"])}static#e=this.\u0275fac=function(a){return new(a||r)(e.GI1(u.gV),e.GI1(u.E5),e.GI1(g.A),e.GI1(w.g),e.GI1(p.OY))};static#t=this.\u0275cmp=e.In1({type:r,selectors:[["app-password-reset"]],decls:26,vars:10,consts:[["fxLayout","row","fxLayoutAlign","center center",1,"container","login-container"],["fxFlex","30%","fxFlex.sm","50%","fxFlex.xs","90%",3,"formGroup"],[1,"full-width"],["id","emailInput","matInput","","readonly","","disabled","",3,"value"],["id","passwordInput","matInput","","placeholder","New Password","formControlName","newPassword","autocomplete","new-password",3,"type"],["id","togglePasswordVisibility","matSuffix","",3,"click"],[4,"ngIf"],["id","passwordConfirmInput","matInput","","placeholder","New Password Confirmation","formControlName","newPasswordConfirm","autocomplete","new-password",3,"type"],["id","togglePasswordConfirmVisibility","matSuffix","",3,"click"],[1,"login-actions"],["id","submit","mat-raised-button","","color","primary",3,"disabled","click"],["id","cancel","mat-button","",3,"click"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"]],template:function(a,t){1&a&&(e.I0R(0,"div",0)(1,"form",1)(2,"mat-card")(3,"mat-card-title"),e.OEk(4,"Jucundus"),e.C$Y(),e.I0R(5,"mat-card-subtitle"),e.OEk(6,"Reset your password"),e.C$Y(),e.I0R(7,"mat-card-content")(8,"mat-form-field",2),e.wR5(9,"input",3),e.C$Y(),e.I0R(10,"mat-form-field",2),e.wR5(11,"input",4),e.I0R(12,"mat-icon",5),e.qCj("click",function(){return t.hideNewPassword=!t.hideNewPassword}),e.OEk(13),e.C$Y(),e.yuY(14,_,2,0,"mat-error",6),e.C$Y(),e.I0R(15,"mat-form-field",2),e.wR5(16,"input",7),e.I0R(17,"mat-icon",8),e.qCj("click",function(){return t.hideNewPasswordConfirm=!t.hideNewPasswordConfirm}),e.OEk(18),e.C$Y(),e.yuY(19,q,2,0,"mat-error",6),e.C$Y()(),e.I0R(20,"mat-card-actions",9)(21,"button",10),e.qCj("click",function(){return t.resetPassword()}),e.OEk(22,"OK"),e.C$Y(),e.I0R(23,"button",11),e.qCj("click",function(){return t.cancel()}),e.OEk(24,"Back to Login"),e.C$Y()()(),e.yuY(25,F,1,0,"mat-progress-bar",12),e.C$Y()()),2&a&&(e.yG2(),e.E7m("formGroup",t.form),e.yG2(8),e.E7m("value",t.email),e.yG2(2),e.E7m("type",t.hideNewPassword?"password":"text"),e.yG2(2),e.oRS(" ",t.hideNewPassword?"visibility":"visibility_off"," "),e.yG2(),e.E7m("ngIf",t.form.controls.newPassword.hasError("required")),e.yG2(2),e.E7m("type",t.hideNewPasswordConfirm?"password":"text"),e.yG2(2),e.oRS(" ",t.hideNewPasswordConfirm?"visibility":"visibility_off"," "),e.yG2(),e.E7m("ngIf",t.form.controls.newPasswordConfirm.hasError("required")),e.yG2(2),e.E7m("disabled",t.form.invalid||t.loading),e.yG2(4),e.E7m("ngIf",t.loading))},dependencies:[f.u_,o.sz,o.ot,o.ue,o.u,o.uW,o.Wo,l.sZ,l.qG,l.CA,$.qL,h.Gw,m.SM,m.W0,m.WK,m.uK,m.gp,C.wx,I.yi,c.Up,c.wJ,c.Gm]})}return r})()}];let L=(()=>{class r{static#e=this.\u0275fac=function(a){return new(a||r)};static#t=this.\u0275mod=e.a4G({type:r});static#r=this.\u0275inj=e.s3X({imports:[u.qQ.forChild(T),u.qQ]})}return r})();var A=s(9588);let M=(()=>{class r{static#e=this.\u0275fac=function(a){return new(a||r)};static#t=this.\u0275mod=e.a4G({type:r});static#r=this.\u0275inj=e.s3X({imports:[f.MD,A.k,L]})}return r})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/852.38e77b9083937542.js b/client/dist/angular-material-template/852.38e77b9083937542.js new file mode 100644 index 0000000..ad92399 --- /dev/null +++ b/client/dist/angular-material-template/852.38e77b9083937542.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[852],{8852:(L,_,e)=>{e.r(_),e.d(_,{TypographyModule:()=>v});var I=e(1368),d=e(2992),t=e(3200),a=e(2116),l=e(2276),p=e(2080);const u=[{path:"",component:t.Y,children:[{path:"",component:(()=>{class n{constructor(){}static#t=this.\u0275fac=function(o){return new(o||n)};static#a=this.\u0275cmp=a.In1({type:n,selectors:[["app-typography"]],decls:41,vars:0,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],[1,"note"],[1,"blockquote"]],template:function(o,y){1&o&&(a.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-content")(4,"h2"),a.OEk(5,"Typography"),a.C$Y(),a.I0R(6,"span",2),a.OEk(7,"Header 1"),a.C$Y(),a.I0R(8,"h1"),a.OEk(9," The Life of Material Dashboard "),a.C$Y(),a.I0R(10,"span",2),a.OEk(11,"Header 2"),a.C$Y(),a.I0R(12,"h2"),a.OEk(13," The Life of Material Dashboard "),a.C$Y(),a.I0R(14,"span",2),a.OEk(15,"Header 3"),a.C$Y(),a.I0R(16,"h3"),a.OEk(17," The Life of Material Dashboard "),a.C$Y(),a.I0R(18,"span",2),a.OEk(19,"Header 4"),a.C$Y(),a.I0R(20,"h4"),a.OEk(21," The Life of Material Dashboard "),a.C$Y(),a.I0R(22,"span",2),a.OEk(23,"Header 5"),a.C$Y(),a.I0R(24,"h5"),a.OEk(25," The Life of Material Dashboard "),a.C$Y(),a.I0R(26,"span",2),a.OEk(27,"Header 6"),a.C$Y(),a.I0R(28,"h6"),a.OEk(29," The Life of Material Dashboard "),a.C$Y(),a.I0R(30,"span",2),a.OEk(31,"Paragraph"),a.C$Y(),a.I0R(32,"p"),a.OEk(33," I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that\u2019s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. "),a.C$Y(),a.I0R(34,"span",2),a.OEk(35,"Quote"),a.C$Y(),a.I0R(36,"blockquote",3)(37,"p"),a.OEk(38," I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that\u2019s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. "),a.C$Y(),a.I0R(39,"small"),a.OEk(40," Kanye West, Musician "),a.C$Y()()()()()())},dependencies:[l.sZ,l.qG,l.CA,p.SM,p.WK]})}return n})()}]}];let O=(()=>{class n{static#t=this.\u0275fac=function(o){return new(o||n)};static#a=this.\u0275mod=a.a4G({type:n});static#e=this.\u0275inj=a.s3X({imports:[d.qQ.forChild(u),d.qQ]})}return n})();var h=e(9588);let v=(()=>{class n{static#t=this.\u0275fac=function(o){return new(o||n)};static#a=this.\u0275mod=a.a4G({type:n});static#e=this.\u0275inj=a.s3X({imports:[I.MD,h.k,O]})}return n})()},3200:(L,_,e)=>{e.d(_,{Y:()=>B});var I=e(4548),d=e(6928),t=e(2116),a=e(1216),l=e(3548),p=e(119),g=e(9920),u=e(2992),O=e(1368),h=e(9964),v=e(1560),n=e(964),M=e(7816),i=e(6664),o=e(3584),y=e(3576),P=e(9092),R=e(7500),k=e(6496),Y=e(8156),D=e(2978);function $(m,S){1&m&&t.wR5(0,"mat-progress-bar",26)}const T=()=>["/"],f=()=>["/account/profile"],b=()=>["/auth/login"],A=()=>["/dashboard"],G=()=>["/sales"],x=()=>["/favorites"],K=()=>["/pictures"],U=()=>["/users"],W=()=>["/about"];let B=(()=>{class m{constructor(c,r,s,E,C){this.changeDetectorRef=c,this.media=r,this.spinnerService=s,this.authService=E,this.authGuard=C,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new d.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>c.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const c=this.authService.getCurrentUser();this.isAdmin=c.isAdmin,this.userName=c.fullName;const r=(0,I.k)(2e3,5e3);this.autoLogoutSubscription=r.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(r){return new(r||m)(t.GI1(t.kD9),t.GI1(a.iG),t.GI1(l.m),t.GI1(p.A),t.GI1(g.Q))};static#a=this.\u0275cmp=t.In1({type:m,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(r,s){if(1&r){const E=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(E);const Q=t.Gew(39);return t.CGJ(Q.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,$,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&r){const E=t.Gew(13),C=t.Gew(26);t.eAK("example-is-mobile",s.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,T)),t.yG2(4),t.E7m("matMenuTriggerFor",E),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",C),t.yG2(4),t.oRS(" ",s.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,f)),t.yG2(5),t.E7m("routerLink",t.q4q(26,b)),t.yG2(6),t.E7m("opened",!s.mobileQuery.matches)("mode",s.mobileQuery.matches?"over":"side")("fixedInViewport",s.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,A)),t.yG2(5),t.E7m("routerLink",t.q4q(28,G)),t.yG2(5),t.E7m("routerLink",t.q4q(29,x)),t.yG2(5),t.E7m("routerLink",t.q4q(30,K)),t.yG2(5),t.E7m("routerLink",t.q4q(31,U)),t.yG2(8),t.E7m("routerLink",t.q4q(32,f)),t.yG2(5),t.E7m("routerLink",t.q4q(33,b)),t.yG2(5),t.E7m("routerLink",t.q4q(34,W)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,s.spinnerService.visibility))}},dependencies:[u.cP,u.ER,u.LC,O.u_,h.Ar,h.WS,h.Uq,v.qL,n.EZ,M.Gw,M.um,i.G2,i.g9,i.Y1,i.Qp,o.k,y.Cs,P.wx,R.aM,R.OQ,R.yG,k.a4,Y.S,D.s9,O.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return m})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/968.71f956b042a479cb.js b/client/dist/angular-material-template/968.71f956b042a479cb.js new file mode 100644 index 0000000..b5f3c70 --- /dev/null +++ b/client/dist/angular-material-template/968.71f956b042a479cb.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[968],{6588:(Z,G,r)=>{r.r(G),r.d(G,{UsersModule:()=>mt});var y=r(1368),_=r(2992),e=r(3200),k=r(2156),R=r(8059),l=r(8818),t=r(2116),U=r(8656),b=r(4440),Y=r(4476),M=r(2088),d=r(2276),$=r(1560),C=r(964),L=r(7816),g=r(2080);function w(o,s){1&o&&(t.I0R(0,"th",17),t.OEk(1,"Username"),t.C$Y())}function P(o,s){if(1&o&&(t.I0R(0,"td",18),t.OEk(1),t.C$Y()),2&o){const a=s.$implicit;t.yG2(),t.oRS(" ",a.username," ")}}function S(o,s){1&o&&(t.I0R(0,"th",19),t.OEk(1," Email "),t.C$Y())}function F(o,s){if(1&o&&(t.I0R(0,"td",18),t.OEk(1),t.C$Y()),2&o){const a=s.$implicit;t.yG2(),t.oRS(" ",a.email," ")}}function W(o,s){1&o&&(t.I0R(0,"th",20),t.OEk(1," Admin "),t.C$Y())}function B(o,s){1&o&&(t.I0R(0,"mat-icon",22),t.OEk(1,"check"),t.C$Y())}function K(o,s){if(1&o&&(t.I0R(0,"td",18),t.yuY(1,B,2,0,"mat-icon",21),t.C$Y()),2&o){const a=s.$implicit;t.yG2(),t.E7m("ngIf",a.isAdmin)}}function A(o,s){1&o&&(t.I0R(0,"th",23),t.OEk(1," Agent "),t.C$Y())}function D(o,s){1&o&&(t.I0R(0,"mat-icon",22),t.OEk(1,"check"),t.C$Y())}function Q(o,s){if(1&o&&(t.I0R(0,"td",18),t.yuY(1,D,2,0,"mat-icon",21),t.C$Y()),2&o){const a=s.$implicit;t.yG2(),t.E7m("ngIf",a.isAgent)}}function N(o,s){1&o&&t.wR5(0,"tr",24)}function j(o,s){if(1&o){const a=t.KQA();t.I0R(0,"tr",25),t.qCj("click",function(){const m=t.usT(a).$implicit,f=t.GaO();return t.CGJ(f.openUser(m._id))}),t.C$Y()}}const H=()=>[10,50,100];let q=(()=>{class o{constructor(a,n,i,m,f){this.logger=a,this.notificationService=n,this.titleService=i,this.router=m,this.apiUserService=f,this.displayedColumns=["username","email","admin","agent"],this.users=new l._c}ngOnInit(){this.titleService.setTitle("Jucundus - Users"),this.logger.log("Users loaded"),this.refreshUsers()}refreshUsers(){this.apiUserService.getAllUsers().subscribe(a=>{console.log(a),this.users=new l._c(a),this.users.paginator=this.paginator??null,this.users.sort=this.sort??null,this.notificationService.openSnackBar("Users loaded")})}openUser(a){this.router.navigate(["/users/edit",a])}static#t=this.\u0275fac=function(n){return new(n||o)(t.GI1(U.QF),t.GI1(b.g),t.GI1(Y.OY),t.GI1(_.E5),t.GI1(M.U))};static#e=this.\u0275cmp=t.In1({type:o,selectors:[["app-user-list"]],viewQuery:function(n,i){if(1&n&&(t.CC$(k.Qb,5),t.CC$(R.E9,5)),2&n){let m;t.wto(m=t.Gqi())&&(i.paginator=m.first),t.wto(m=t.Gqi())&&(i.sort=m.first)}},decls:28,vars:5,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["mat-raised-button","","color","primary",3,"click"],["fxLayout","row","fxLayoutGap","5px"],["mat-table","","matSort","",1,"mat-elevation-z8",3,"dataSource"],["matColumnDef","username"],["mat-header-cell","","mat-sort-header","username",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","email"],["mat-header-cell","","mat-sort-header","email",4,"matHeaderCellDef"],["matColumnDef","admin"],["mat-header-cell","","mat-sort-header","isAdmin",4,"matHeaderCellDef"],["matColumnDef","agent"],["mat-header-cell","","mat-sort-header","isAgent",4,"matHeaderCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",3,"click",4,"matRowDef","matRowDefColumns"],["showFirstLastButtons","",3,"pageSizeOptions"],["mat-header-cell","","mat-sort-header","username"],["mat-cell",""],["mat-header-cell","","mat-sort-header","email"],["mat-header-cell","","mat-sort-header","isAdmin"],["style","color:green;",4,"ngIf"],[2,"color","green"],["mat-header-cell","","mat-sort-header","isAgent"],["mat-header-row",""],["mat-row","",3,"click"]],template:function(n,i){1&n&&(t.I0R(0,"div",0)(1,"div",1)(2,"mat-toolbar")(3,"mat-toolbar-row")(4,"h2"),t.OEk(5,"Users"),t.C$Y()(),t.I0R(6,"mat-toolbar-row")(7,"button",2),t.qCj("click",function(){return i.openUser("")}),t.OEk(8,"Add User"),t.C$Y()()(),t.I0R(9,"mat-card")(10,"mat-card-content")(11,"div",3)(12,"table",4),t.SAx(13,5),t.yuY(14,w,2,0,"th",6)(15,P,2,1,"td",7),t.k70(),t.SAx(16,8),t.yuY(17,S,2,0,"th",9)(18,F,2,1,"td",7),t.k70(),t.SAx(19,10),t.yuY(20,W,2,0,"th",11)(21,K,2,1,"td",7),t.k70(),t.SAx(22,12),t.yuY(23,A,2,0,"th",13)(24,Q,2,1,"td",7),t.k70(),t.yuY(25,N,1,0,"tr",14)(26,j,1,0,"tr",15),t.C$Y()(),t.wR5(27,"mat-paginator",16),t.C$Y()()()()),2&n&&(t.yG2(12),t.E7m("dataSource",i.users),t.yG2(13),t.E7m("matHeaderRowDef",i.displayedColumns),t.yG2(),t.E7m("matRowDefColumns",i.displayedColumns),t.yG2(),t.E7m("pageSizeOptions",t.q4q(4,H)))},dependencies:[y.u_,d.sZ,d.cZ,d.qG,d.CA,$.qL,C.EZ,C.A9,L.Gw,g.SM,g.WK,l.wL,l.ie,l.aG,l.Af,l.uc,l.gx,l.qC,l.cX,l.yC,l._I,k.Qb,R.E9,R.e6]})}return o})();var c=r(6504),E=r(2864);let v=(()=>{class o{constructor(a,n){this.dialogRef=a,this.data=n,this.title=n.title,this.message=n.message}onConfirm(){this.dialogRef.close(!0)}onDismiss(){this.dialogRef.close(!1)}static#t=this.\u0275fac=function(n){return new(n||o)(t.GI1(E.yI),t.GI1(E.sR))};static#e=this.\u0275cmp=t.In1({type:o,selectors:[["app-confirm-dialog"]],decls:10,vars:2,consts:[["mat-dialog-title",""],["mat-dialog-content",""],["mat-dialog-actions",""],["mat-button","",3,"click"],["mat-raised-button","","color","primary",3,"click"]],template:function(n,i){1&n&&(t.I0R(0,"h1",0),t.OEk(1),t.C$Y(),t.I0R(2,"div",1)(3,"p"),t.OEk(4),t.C$Y()(),t.I0R(5,"div",2)(6,"button",3),t.qCj("click",function(){return i.onDismiss()}),t.OEk(7,"No"),t.C$Y(),t.I0R(8,"button",4),t.qCj("click",function(){return i.onConfirm()}),t.OEk(9,"Yes"),t.C$Y()()),2&n&&(t.yG2(),t.oRS(" ",i.title,"\n"),t.yG2(3),t.cNF(i.message))},dependencies:[L.Gw,E.WQ,E.iU,E.Yp]})}return o})();var h=r(7536),u=r(4060),p=r(3840);function I(o,s){1&o&&(t.I0R(0,"mat-error"),t.OEk(1," Username is "),t.I0R(2,"strong"),t.OEk(3,"required"),t.C$Y()())}function O(o,s){1&o&&(t.I0R(0,"mat-error"),t.OEk(1," Please enter a valid email address "),t.C$Y())}function J(o,s){1&o&&(t.I0R(0,"mat-error"),t.OEk(1," Email is "),t.I0R(2,"strong"),t.OEk(3,"required"),t.C$Y()())}function X(o,s){1&o&&(t.I0R(0,"mat-error"),t.OEk(1," Password must be at least 8 characters long "),t.C$Y())}function tt(o,s){1&o&&(t.I0R(0,"mat-error"),t.OEk(1," Passwords do not match "),t.C$Y())}function et(o,s){1&o&&(t.I0R(0,"mat-error"),t.OEk(1," Passwords do not match "),t.C$Y())}function ot(o,s){if(1&o){const a=t.KQA();t.I0R(0,"button",15),t.qCj("click",function(){t.usT(a);const i=t.GaO();return t.CGJ(i.deleteUser())}),t.OEk(1,"Delete"),t.C$Y()}}function rt(o){const s=o.get("password")?.value,a=o.get("confirmPassword")?.value;if(s){if(s.length<8)return o.get("password")?.setErrors({passwordLength:!0}),{passwordLength:!0};if(s!==a)return o.get("confirmPassword")?.setErrors({mismatch:!0}),{mismatch:!0}}return null}const nt=[{path:"",component:e.Y,children:[{path:"",component:q},{path:"edit/:id",component:(()=>{class o{constructor(a,n,i,m,f,T){this.route=a,this.notificationService=n,this.router=i,this.dialog=m,this.apiUserService=f,this.fb=T,this.id="",this.userForm=this.fb.group({username:["",c.AQ.required],email:["",[c.AQ.required,c.AQ.email]],password:[""],confirmPassword:[""],isAdmin:[!1],isAgent:[!1]},{validator:rt})}ngOnInit(){this.route.paramMap.subscribe(a=>{this.id=a.get("id"),this.id&&this.apiUserService.getUser(this.id).subscribe(n=>{console.log(n),this.userForm.patchValue({username:n.username,email:n.email,isAdmin:n.isAdmin,isAgent:n.isAgent})})})}save(){if(this.userForm.valid){let a=this.userForm.value;console.log(a),this.id?(a._id=this.id,this.apiUserService.updateUser(a).subscribe(n=>{this.notificationService.openSnackBar("User updated successfully"),this.router.navigate(["/users"])})):this.apiUserService.saveUser(a).subscribe(n=>{this.notificationService.openSnackBar("User created successfully"),this.router.navigate(["/users"])})}}deleteUser(){this.id&&this.dialog.open(v,{width:"250px",data:{title:"Delete User ?",message:"Are you sure you want to delete this user?"}}).afterClosed().subscribe(n=>{n&&this.apiUserService.deleteUser(this.id).subscribe(i=>{this.notificationService.openSnackBar("User deleted successfully"),this.router.navigate(["/users"])})})}static#t=this.\u0275fac=function(n){return new(n||o)(t.GI1(_.gV),t.GI1(b.g),t.GI1(_.E5),t.GI1(E.qW),t.GI1(M.U),t.GI1(c.im))};static#e=this.\u0275cmp=t.In1({type:o,selectors:[["app-favorites-page"]],decls:38,vars:10,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["routerLink","/users"],[3,"formGroup"],["fxLayout","row","fxLayoutGap","5px"],["fxFlex","50"],["matInput","","placeholder","Username","formControlName","username","required",""],[4,"ngIf"],["matInput","","placeholder","Email","formControlName","email","required",""],["matInput","","placeholder","Password","formControlName","password"],["matInput","","placeholder","Confirm Password","formControlName","confirmPassword"],["name","isAdmin","formControlName","isAdmin"],["name","isAgent","formControlName","isAgent"],["mat-raised-button","","color","primary","type","submit",3,"disabled","click"],["mat-raised-button","","color","warn","type","button",3,"click",4,"ngIf"],["mat-raised-button","","color","warn","type","button",3,"click"]],template:function(n,i){if(1&n&&(t.I0R(0,"div",0)(1,"div",1)(2,"mat-toolbar")(3,"h2")(4,"a",2),t.OEk(5,"Users"),t.C$Y(),t.OEk(6),t.C$Y()(),t.I0R(7,"mat-card")(8,"mat-card-header")(9,"mat-card-title"),t.OEk(10,"Sale Detail"),t.C$Y()(),t.I0R(11,"mat-card-content")(12,"form",3)(13,"div",4)(14,"mat-form-field",5),t.wR5(15,"input",6),t.yuY(16,I,4,0,"mat-error",7),t.C$Y(),t.I0R(17,"mat-form-field",5),t.wR5(18,"input",8),t.yuY(19,O,2,0,"mat-error",7)(20,J,4,0,"mat-error",7),t.C$Y()(),t.I0R(21,"div",4)(22,"mat-form-field",5),t.wR5(23,"input",9),t.yuY(24,X,2,0,"mat-error",7)(25,tt,2,0,"mat-error",7),t.C$Y(),t.I0R(26,"mat-form-field",5),t.wR5(27,"input",10),t.yuY(28,et,2,0,"mat-error",7),t.C$Y()(),t.I0R(29,"div",4)(30,"mat-checkbox",11),t.OEk(31,"Admin"),t.C$Y(),t.I0R(32,"mat-checkbox",12),t.OEk(33,"Agent"),t.C$Y()(),t.I0R(34,"div",4)(35,"button",13),t.qCj("click",function(){return i.save()}),t.OEk(36,"Save"),t.C$Y(),t.yuY(37,ot,2,0,"button",14),t.C$Y()()()()()()),2&n){let m,f,T,V,x;t.yG2(6),t.oRS("/",""!==i.id?"Edit":"New",""),t.yG2(6),t.E7m("formGroup",i.userForm),t.yG2(4),t.E7m("ngIf",null==(m=i.userForm.get("username"))?null:m.hasError("required")),t.yG2(3),t.E7m("ngIf",(null==(f=i.userForm.get("email"))?null:f.hasError("email"))&&!(null!=(f=i.userForm.get("email"))&&f.hasError("required"))),t.yG2(),t.E7m("ngIf",null==(T=i.userForm.get("email"))?null:T.hasError("required")),t.yG2(4),t.E7m("ngIf",null==(V=i.userForm.get("password"))?null:V.hasError("passwordLength")),t.yG2(),t.E7m("ngIf",(null==(x=i.userForm.get("password"))?null:x.hasError("mismatch"))||null===(null==(x=i.userForm.get("confirmPassword"))?null:x.value)),t.yG2(3),t.E7m("ngIf",null==i.userForm.errors?null:i.userForm.errors.mismatch),t.yG2(7),t.E7m("disabled",!i.userForm.valid),t.yG2(2),t.E7m("ngIf",i.id)}},dependencies:[y.u_,c.sz,c.ot,c.ue,c.u,c.eJ,c.uW,c.Wo,d.sZ,d.cZ,d.qG,d.CA,C.EZ,L.Gw,g.SM,g.WK,g.Uc,g.gp,h.yi,u.Up,u.wJ,p.WK,_.ER],styles:[".mat-mdc-row[_ngcontent-%COMP%] .mat-mdc-cell[_ngcontent-%COMP%]{border-bottom:1px solid transparent;border-top:1px solid transparent;cursor:pointer}.mat-mdc-row[_ngcontent-%COMP%]:hover .mat-mdc-cell[_ngcontent-%COMP%]{border-color:currentColor}"]})}return o})()}]}];let it=(()=>{class o{static#t=this.\u0275fac=function(n){return new(n||o)};static#e=this.\u0275mod=t.a4G({type:o});static#o=this.\u0275inj=t.s3X({imports:[_.qQ.forChild(nt),_.qQ]})}return o})();var st=r(9588);let mt=(()=>{class o{static#t=this.\u0275fac=function(n){return new(n||o)};static#e=this.\u0275mod=t.a4G({type:o});static#o=this.\u0275inj=t.s3X({imports:[y.MD,st.k,it]})}return o})()},3200:(Z,G,r)=>{r.d(G,{Y:()=>E});var y=r(4548),_=r(6928),e=r(2116),k=r(1216),R=r(3548),l=r(119),t=r(9920),U=r(2992),b=r(1368),Y=r(9964),M=r(1560),d=r(964),$=r(7816),C=r(6664),L=r(3584),g=r(3576),w=r(9092),P=r(7500),S=r(6496),F=r(8156),W=r(2978);function B(v,z){1&v&&e.wR5(0,"mat-progress-bar",26)}const K=()=>["/"],A=()=>["/account/profile"],D=()=>["/auth/login"],Q=()=>["/dashboard"],N=()=>["/sales"],j=()=>["/favorites"],H=()=>["/pictures"],q=()=>["/users"],c=()=>["/about"];let E=(()=>{class v{constructor(h,u,p,I,O){this.changeDetectorRef=h,this.media=u,this.spinnerService=p,this.authService=I,this.authGuard=O,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new _.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>h.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const h=this.authService.getCurrentUser();this.isAdmin=h.isAdmin,this.userName=h.fullName;const u=(0,y.k)(2e3,5e3);this.autoLogoutSubscription=u.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(u){return new(u||v)(e.GI1(e.kD9),e.GI1(k.iG),e.GI1(R.m),e.GI1(l.A),e.GI1(t.Q))};static#e=this.\u0275cmp=e.In1({type:v,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(u,p){if(1&u){const I=e.KQA();e.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),e.qCj("click",function(){e.usT(I);const J=e.Gew(39);return e.CGJ(J.toggle())}),e.I0R(3,"mat-icon"),e.OEk(4,"menu"),e.C$Y()(),e.I0R(5,"a",3)(6,"h1"),e.OEk(7," Jucundus "),e.C$Y()(),e.wR5(8,"span",4),e.I0R(9,"button",5)(10,"mat-icon",6),e.OEk(11,"notifications"),e.C$Y()(),e.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),e.OEk(16,"You have new tasks"),e.C$Y()(),e.I0R(17,"a",9)(18,"span"),e.OEk(19,"You have a new message"),e.C$Y()()(),e.I0R(20,"button",10)(21,"mat-icon"),e.OEk(22,"person"),e.C$Y(),e.I0R(23,"span",11),e.OEk(24),e.C$Y()(),e.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),e.OEk(29,"person"),e.C$Y(),e.I0R(30,"span"),e.OEk(31,"Account"),e.C$Y()(),e.I0R(32,"a",13)(33,"mat-icon"),e.OEk(34,"exit_to_app"),e.C$Y(),e.I0R(35,"span"),e.OEk(36,"Log out"),e.C$Y()()()(),e.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),e.OEk(42,"Home"),e.C$Y(),e.I0R(43,"a",18)(44,"mat-icon",19),e.OEk(45," dashboard "),e.C$Y(),e.I0R(46,"p",20),e.OEk(47," Dashboard "),e.C$Y()(),e.I0R(48,"a",18)(49,"mat-icon",19),e.OEk(50," today "),e.C$Y(),e.I0R(51,"p",20),e.OEk(52," Sales "),e.C$Y()(),e.I0R(53,"a",18)(54,"mat-icon",19),e.OEk(55," bookmark "),e.C$Y(),e.I0R(56,"p",20),e.OEk(57," Favorites "),e.C$Y()(),e.I0R(58,"a",18)(59,"mat-icon",19),e.OEk(60," image "),e.C$Y(),e.I0R(61,"p",20),e.OEk(62," Pictures "),e.C$Y()(),e.I0R(63,"a",18)(64,"mat-icon",19),e.OEk(65," people "),e.C$Y(),e.I0R(66,"p",20),e.OEk(67," Users "),e.C$Y()(),e.wR5(68,"mat-divider"),e.I0R(69,"h3",17),e.OEk(70,"User"),e.C$Y(),e.I0R(71,"a",21)(72,"mat-icon",19),e.OEk(73,"person"),e.C$Y(),e.I0R(74,"p",20),e.OEk(75," Account "),e.C$Y()(),e.I0R(76,"a",21)(77,"mat-icon",19),e.OEk(78,"exit_to_app"),e.C$Y(),e.I0R(79,"p",20),e.OEk(80," Log out "),e.C$Y()(),e.I0R(81,"a",22)(82,"mat-icon",19),e.OEk(83," info_outline "),e.C$Y(),e.I0R(84,"p",20),e.OEk(85," About "),e.C$Y()()()(),e.I0R(86,"mat-sidenav-content",23)(87,"div",24),e.yuY(88,B,1,0,"mat-progress-bar",25),e.wVc(89,"async"),e.C$Y(),e.wR5(90,"router-outlet"),e.C$Y()()()}if(2&u){const I=e.Gew(13),O=e.Gew(26);e.eAK("example-is-mobile",p.mobileQuery.matches),e.yG2(5),e.E7m("routerLink",e.q4q(24,K)),e.yG2(4),e.E7m("matMenuTriggerFor",I),e.yG2(3),e.E7m("overlapTrigger",!1),e.yG2(8),e.E7m("matMenuTriggerFor",O),e.yG2(4),e.oRS(" ",p.userName," "),e.yG2(),e.E7m("overlapTrigger",!1),e.yG2(2),e.E7m("routerLink",e.q4q(25,A)),e.yG2(5),e.E7m("routerLink",e.q4q(26,D)),e.yG2(6),e.E7m("opened",!p.mobileQuery.matches)("mode",p.mobileQuery.matches?"over":"side")("fixedInViewport",p.mobileQuery.matches),e.yG2(5),e.E7m("routerLink",e.q4q(27,Q)),e.yG2(5),e.E7m("routerLink",e.q4q(28,N)),e.yG2(5),e.E7m("routerLink",e.q4q(29,j)),e.yG2(5),e.E7m("routerLink",e.q4q(30,H)),e.yG2(5),e.E7m("routerLink",e.q4q(31,q)),e.yG2(8),e.E7m("routerLink",e.q4q(32,A)),e.yG2(5),e.E7m("routerLink",e.q4q(33,D)),e.yG2(5),e.E7m("routerLink",e.q4q(34,c)),e.yG2(7),e.E7m("ngIf",e.kDX(89,22,p.spinnerService.visibility))}},dependencies:[U.cP,U.ER,U.LC,b.u_,Y.Ar,Y.WS,Y.Uq,M.qL,d.EZ,$.Gw,$.um,C.G2,C.g9,C.Y1,C.Qp,L.k,g.Cs,w.wx,P.aM,P.OQ,P.yG,S.a4,F.S,W.s9,b.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return v})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/982.b8ef64041e16e14b.js b/client/dist/angular-material-template/982.b8ef64041e16e14b.js new file mode 100644 index 0000000..079da56 --- /dev/null +++ b/client/dist/angular-material-template/982.b8ef64041e16e14b.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[982],{982:(U,O,n)=>{n.r(O),n.d(O,{CustomersModule:()=>w});var P=n(1368),v=n(2992),t=n(3200),d=n(8059),r=n(8818),e=n(2116),b=n(8656),h=n(4440),y=n(4476),_=n(2276),f=n(2080);function D(o,i){1&o&&(e.I0R(0,"th",11),e.OEk(1," No. "),e.C$Y())}function I(o,i){if(1&o&&(e.I0R(0,"td",12),e.OEk(1),e.C$Y()),2&o){const a=i.$implicit;e.yG2(),e.oRS(" ",a.position," ")}}function E(o,i){1&o&&(e.I0R(0,"th",11),e.OEk(1," Name "),e.C$Y())}function Y(o,i){if(1&o&&(e.I0R(0,"td",12),e.OEk(1),e.C$Y()),2&o){const a=i.$implicit;e.yG2(),e.oRS(" ",a.name," ")}}function G(o,i){1&o&&(e.I0R(0,"th",11),e.OEk(1," Weight "),e.C$Y())}function T(o,i){if(1&o&&(e.I0R(0,"td",12),e.OEk(1),e.C$Y()),2&o){const a=i.$implicit;e.yG2(),e.oRS(" ",a.weight," ")}}function p(o,i){1&o&&(e.I0R(0,"th",11),e.OEk(1," Symbol "),e.C$Y())}function $(o,i){if(1&o&&(e.I0R(0,"td",12),e.OEk(1),e.C$Y()),2&o){const a=i.$implicit;e.yG2(),e.oRS(" ",a.symbol," ")}}function k(o,i){1&o&&e.wR5(0,"tr",13)}function x(o,i){1&o&&e.wR5(0,"tr",14)}const A=[{position:1,name:"Hydrogen",weight:1.0079,symbol:"H"},{position:2,name:"Helium",weight:4.0026,symbol:"He"},{position:3,name:"Lithium",weight:6.941,symbol:"Li"},{position:4,name:"Beryllium",weight:9.0122,symbol:"Be"},{position:5,name:"Boron",weight:10.811,symbol:"B"},{position:6,name:"Carbon",weight:12.0107,symbol:"C"},{position:7,name:"Nitrogen",weight:14.0067,symbol:"N"},{position:8,name:"Oxygen",weight:15.9994,symbol:"O"},{position:9,name:"Fluorine",weight:18.9984,symbol:"F"},{position:10,name:"Neon",weight:20.1797,symbol:"Ne"}],R=[{path:"",component:t.Y,children:[{path:"",component:(()=>{class o{constructor(a,s,m){this.logger=a,this.notificationService=s,this.titleService=m,this.displayedColumns=["position","name","weight","symbol"],this.dataSource=new r._c(A),this.sort=new d.E9}ngOnInit(){this.titleService.setTitle("Jucundus - Customers"),this.logger.log("Customers loaded"),this.notificationService.openSnackBar("Customers loaded"),this.dataSource.sort=this.sort}static#t=this.\u0275fac=function(s){return new(s||o)(e.GI1(b.QF),e.GI1(h.g),e.GI1(y.OY))};static#e=this.\u0275cmp=e.In1({type:o,selectors:[["app-customer-list"]],viewQuery:function(s,m){if(1&s&&e.CC$(d.E9,7),2&s){let l;e.wto(l=e.Gqi())&&(m.sort=l.first)}},decls:21,vars:3,consts:[["fxLayout","row","fxLayoutAlign","center none",1,"container"],["fxFlex","95%"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","position"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","name"],["matColumnDef","weight"],["matColumnDef","symbol"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(s,m){1&s&&(e.I0R(0,"div",0)(1,"div",1)(2,"mat-card")(3,"mat-card-content")(4,"h2"),e.OEk(5,"Customers"),e.C$Y(),e.I0R(6,"table",2),e.SAx(7,3),e.yuY(8,D,2,0,"th",4)(9,I,2,1,"td",5),e.k70(),e.SAx(10,6),e.yuY(11,E,2,0,"th",4)(12,Y,2,1,"td",5),e.k70(),e.SAx(13,7),e.yuY(14,G,2,0,"th",4)(15,T,2,1,"td",5),e.k70(),e.SAx(16,8),e.yuY(17,p,2,0,"th",4)(18,$,2,1,"td",5),e.k70(),e.yuY(19,k,1,0,"tr",9)(20,x,1,0,"tr",10),e.C$Y()()()()()),2&s&&(e.yG2(6),e.E7m("dataSource",m.dataSource),e.yG2(13),e.E7m("matHeaderRowDef",m.displayedColumns),e.yG2(),e.E7m("matRowDefColumns",m.displayedColumns))},dependencies:[_.sZ,_.qG,_.CA,f.SM,f.WK,r.wL,r.ie,r.aG,r.Af,r.uc,r.gx,r.qC,r.cX,r.yC,r._I,d.E9,d.e6],styles:["table[_ngcontent-%COMP%]{width:100%}th.mat-sort-header-sorted[_ngcontent-%COMP%]{color:#000}"]})}return o})()}]}];let L=(()=>{class o{static#t=this.\u0275fac=function(s){return new(s||o)};static#e=this.\u0275mod=e.a4G({type:o});static#o=this.\u0275inj=e.s3X({imports:[v.qQ.forChild(R),v.qQ]})}return o})();var B=n(9588);let w=(()=>{class o{static#t=this.\u0275fac=function(s){return new(s||o)};static#e=this.\u0275mod=e.a4G({type:o});static#o=this.\u0275inj=e.s3X({imports:[P.MD,L,B.k]})}return o})()},3200:(U,O,n)=>{n.d(O,{Y:()=>m});var P=n(4548),v=n(6928),t=n(2116),d=n(1216),r=n(3548),e=n(119),b=n(9920),h=n(2992),y=n(1368),_=n(9964),f=n(1560),D=n(964),I=n(7816),E=n(6664),Y=n(3584),G=n(3576),T=n(9092),p=n(7500),$=n(6496),k=n(8156),x=n(2978);function A(l,W){1&l&&t.wR5(0,"mat-progress-bar",26)}const S=()=>["/"],R=()=>["/account/profile"],L=()=>["/auth/login"],B=()=>["/dashboard"],w=()=>["/sales"],o=()=>["/favorites"],i=()=>["/pictures"],a=()=>["/users"],s=()=>["/about"];let m=(()=>{class l{constructor(C,c,u,g,M){this.changeDetectorRef=C,this.media=c,this.spinnerService=u,this.authService=g,this.authGuard=M,this.showSpinner=!1,this.userName="",this.isAdmin=!1,this.autoLogoutSubscription=new v.wH,this.mobileQuery=this.media.matchMedia("(max-width: 1000px)"),this._mobileQueryListener=()=>C.detectChanges(),this.mobileQuery.addListener(this._mobileQueryListener)}ngOnInit(){const C=this.authService.getCurrentUser();this.isAdmin=C.isAdmin,this.userName=C.fullName;const c=(0,P.k)(2e3,5e3);this.autoLogoutSubscription=c.subscribe(()=>{this.authGuard.canActivate()})}ngOnDestroy(){this.mobileQuery.removeListener(this._mobileQueryListener),this.autoLogoutSubscription.unsubscribe()}ngAfterViewInit(){this.changeDetectorRef.detectChanges()}static#t=this.\u0275fac=function(c){return new(c||l)(t.GI1(t.kD9),t.GI1(d.iG),t.GI1(r.m),t.GI1(e.A),t.GI1(b.Q))};static#e=this.\u0275cmp=t.In1({type:l,selectors:[["app-layout"]],decls:91,vars:35,consts:[[1,"navbar-container"],["color","primary",1,"navbar"],["mat-icon-button","",3,"click"],["matTooltip","Home",1,"navbar-brand",3,"routerLink"],[1,"navbar-spacer"],["mat-icon-button","",3,"matMenuTriggerFor"],["matBadge","2","matBadgeColor","accent"],["xPosition","before","yPosition","above",3,"overlapTrigger"],["notificationMenu","matMenu"],["mat-menu-item",""],["mat-button","",3,"matMenuTriggerFor"],["fxShow","","fxHide.xs",""],["userMenu","matMenu"],["mat-menu-item","",3,"routerLink"],[1,"navbar-sidenav-container"],["fixedTopGap","56",1,"sidenav",3,"opened","mode","fixedInViewport"],["snav",""],["mat-subheader",""],["mat-list-item","","routerLinkActive","active",3,"routerLink"],["matListItemIcon",""],["mat-line",""],["mat-list-item","",3,"routerLink"],["id","push-bottom","mat-list-item","","routerLinkActive","active",3,"routerLink"],[1,"sidenav-content"],[1,"progress-bar-container"],["color","accent","mode","indeterminate",4,"ngIf"],["color","accent","mode","indeterminate"]],template:function(c,u){if(1&c){const g=t.KQA();t.I0R(0,"div",0)(1,"mat-toolbar",1)(2,"button",2),t.qCj("click",function(){t.usT(g);const K=t.Gew(39);return t.CGJ(K.toggle())}),t.I0R(3,"mat-icon"),t.OEk(4,"menu"),t.C$Y()(),t.I0R(5,"a",3)(6,"h1"),t.OEk(7," Jucundus "),t.C$Y()(),t.wR5(8,"span",4),t.I0R(9,"button",5)(10,"mat-icon",6),t.OEk(11,"notifications"),t.C$Y()(),t.I0R(12,"mat-menu",7,8)(14,"a",9)(15,"span"),t.OEk(16,"You have new tasks"),t.C$Y()(),t.I0R(17,"a",9)(18,"span"),t.OEk(19,"You have a new message"),t.C$Y()()(),t.I0R(20,"button",10)(21,"mat-icon"),t.OEk(22,"person"),t.C$Y(),t.I0R(23,"span",11),t.OEk(24),t.C$Y()(),t.I0R(25,"mat-menu",7,12)(27,"a",13)(28,"mat-icon"),t.OEk(29,"person"),t.C$Y(),t.I0R(30,"span"),t.OEk(31,"Account"),t.C$Y()(),t.I0R(32,"a",13)(33,"mat-icon"),t.OEk(34,"exit_to_app"),t.C$Y(),t.I0R(35,"span"),t.OEk(36,"Log out"),t.C$Y()()()(),t.I0R(37,"mat-sidenav-container",14)(38,"mat-sidenav",15,16)(40,"mat-nav-list")(41,"h3",17),t.OEk(42,"Home"),t.C$Y(),t.I0R(43,"a",18)(44,"mat-icon",19),t.OEk(45," dashboard "),t.C$Y(),t.I0R(46,"p",20),t.OEk(47," Dashboard "),t.C$Y()(),t.I0R(48,"a",18)(49,"mat-icon",19),t.OEk(50," today "),t.C$Y(),t.I0R(51,"p",20),t.OEk(52," Sales "),t.C$Y()(),t.I0R(53,"a",18)(54,"mat-icon",19),t.OEk(55," bookmark "),t.C$Y(),t.I0R(56,"p",20),t.OEk(57," Favorites "),t.C$Y()(),t.I0R(58,"a",18)(59,"mat-icon",19),t.OEk(60," image "),t.C$Y(),t.I0R(61,"p",20),t.OEk(62," Pictures "),t.C$Y()(),t.I0R(63,"a",18)(64,"mat-icon",19),t.OEk(65," people "),t.C$Y(),t.I0R(66,"p",20),t.OEk(67," Users "),t.C$Y()(),t.wR5(68,"mat-divider"),t.I0R(69,"h3",17),t.OEk(70,"User"),t.C$Y(),t.I0R(71,"a",21)(72,"mat-icon",19),t.OEk(73,"person"),t.C$Y(),t.I0R(74,"p",20),t.OEk(75," Account "),t.C$Y()(),t.I0R(76,"a",21)(77,"mat-icon",19),t.OEk(78,"exit_to_app"),t.C$Y(),t.I0R(79,"p",20),t.OEk(80," Log out "),t.C$Y()(),t.I0R(81,"a",22)(82,"mat-icon",19),t.OEk(83," info_outline "),t.C$Y(),t.I0R(84,"p",20),t.OEk(85," About "),t.C$Y()()()(),t.I0R(86,"mat-sidenav-content",23)(87,"div",24),t.yuY(88,A,1,0,"mat-progress-bar",25),t.wVc(89,"async"),t.C$Y(),t.wR5(90,"router-outlet"),t.C$Y()()()}if(2&c){const g=t.Gew(13),M=t.Gew(26);t.eAK("example-is-mobile",u.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(24,S)),t.yG2(4),t.E7m("matMenuTriggerFor",g),t.yG2(3),t.E7m("overlapTrigger",!1),t.yG2(8),t.E7m("matMenuTriggerFor",M),t.yG2(4),t.oRS(" ",u.userName," "),t.yG2(),t.E7m("overlapTrigger",!1),t.yG2(2),t.E7m("routerLink",t.q4q(25,R)),t.yG2(5),t.E7m("routerLink",t.q4q(26,L)),t.yG2(6),t.E7m("opened",!u.mobileQuery.matches)("mode",u.mobileQuery.matches?"over":"side")("fixedInViewport",u.mobileQuery.matches),t.yG2(5),t.E7m("routerLink",t.q4q(27,B)),t.yG2(5),t.E7m("routerLink",t.q4q(28,w)),t.yG2(5),t.E7m("routerLink",t.q4q(29,o)),t.yG2(5),t.E7m("routerLink",t.q4q(30,i)),t.yG2(5),t.E7m("routerLink",t.q4q(31,a)),t.yG2(8),t.E7m("routerLink",t.q4q(32,R)),t.yG2(5),t.E7m("routerLink",t.q4q(33,L)),t.yG2(5),t.E7m("routerLink",t.q4q(34,s)),t.yG2(7),t.E7m("ngIf",t.kDX(89,22,u.spinnerService.visibility))}},dependencies:[h.cP,h.ER,h.LC,y.u_,_.Ar,_.WS,_.Uq,f.qL,D.EZ,I.Gw,I.um,E.G2,E.g9,E.Y1,E.Qp,Y.k,G.Cs,T.wx,p.aM,p.OQ,p.yG,$.a4,k.S,x.s9,y.a],styles:[".navbar-spacer[_ngcontent-%COMP%]{flex:1 1 auto}.navbar[_ngcontent-%COMP%]{z-index:2}.navbar-brand[_ngcontent-%COMP%]{text-decoration:none;color:#fff}.navbar-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;position:absolute;inset:0}.navbar-is-mobile[_ngcontent-%COMP%] .navbar[_ngcontent-%COMP%]{position:fixed;z-index:2}.navbar-sidenav-container[_ngcontent-%COMP%]{flex:1}.navbar-is-mobile[_ngcontent-%COMP%] .navbar-sidenav-container[_ngcontent-%COMP%]{flex:1 0 auto}mat-sidenav[_ngcontent-%COMP%]{min-width:180px!important;border-right:1px solid #eee;box-shadow:6px 0 6px #0000001a}.progress-bar-container[_ngcontent-%COMP%]{height:5px}a.mat-list-item.active[_ngcontent-%COMP%]{background:#0000000a}#push-bottom[_ngcontent-%COMP%]{position:absolute;bottom:0}"]})}return l})()}}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/Inter-italic.var.958a0b9742fb3ae8.woff2 b/client/dist/angular-material-template/Inter-italic.var.958a0b9742fb3ae8.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..b826d5af84b3bd70535b6bb993f443a2deb46894 GIT binary patch literal 245036 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�LzqE;f#83j;-svHFcR`yUq8K)}}#m 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 C+W+PN literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/Inter-roman.var.b2129c009ce46d43.woff2 b/client/dist/angular-material-template/Inter-roman.var.b2129c009ce46d43.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..6a256a068f0dce7b44f8314bdc735ef91b35e2e3 GIT binary patch literal 227180 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�J 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/android-icon-192x192.png b/client/dist/angular-material-template/assets/favicon/android-icon-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..c382cd7f80fc34bd94d45df33943e0f0e586da8c GIT binary patch literal 23334 zcmV)=K!m@EP)b>9bm?!9mOt+{7bWi4GxS9Nz)?`WU_kN~lf0>ot~iK1kMs0kY(E5aH}^M}LX znUQ7LGuDhHd%~fStQb0|8B?N$<|2|ZNPr-Tg#ZXP(EC!|UHe|SZ@=wr_ul#AzF%&Y zS(RH=W;Xg8@j9!2+q>_*bMD#C5qyY;hO4JOfk6gYZcfZJ;{QXg&6fc@DSovcs(&d3 z?>+w9a4f#^)!km|j|{xsUciq6E*yOkZ7f6eAi6ZxI@Rdpe>v0U1#PTnEqIZ7E(pCZ zRU$RV|8eA+o&3B7i+Jf9yS?-eJj8A<;De6KCq79e5$()Gtt@}Mo$8;CQ~h@`Z4PT= z@s(t-9@^o0bgo|V{)cik_=ZUHTae{YLcH|#-M)kmG(MC74*~7WM7c3%nsNR&qnlsrF{X@d~ZQwkXAi5TrG6Z#6f4)u4Tp}l~7`w#Qz|NARx{f#$GIIpm&gbZgO zFaMhXsr%a6_>d{?#)lGM^XLN(0|$W-V7Pk-?67AU9LST(h>ojyu16?{KTwK+YRG|} z626l6C4K+}C1rWCPuTxrRO;3{#f>bw9E30rc@ab zfm6kC0!R3FQLzM$=$N1FOmez0OQq8WKuJMQ+2_P?joxyAlAF8b-B15e2mD@M;cI!B zJ9b?r(l|!A3|uIVi@;T!r04)`pamqr3Nf@oFC)5H&sLIrSEWmsBVvmPxS zvS8O-hQg_6XK{@CSsbA^aT4J@;8ox?;5?2Qex&guApzFd@g;7DKaShgk1sop0i!sA zzb`Cc5&T#(%TF~YIMkfS&vUGlM4seeUztPwB}%@B6sxw}O+a9owTj=@Wqv!W@aH;2 zu&D=_0Jm|{;L5V&a`ATpFw4JiFNt9Pr-NVw%)4!0qTY zoB?|p_-JuFUcA1kxQNBwz&?|4DsFPJy?{0v4FpoqTM6i|1e61B@$*}Upeih%Q5~)t zkN1pE(@HcOW`d95zFV*+P^|;u!uZoCN$CoQm`g@NMAxz$NZY%!fhz1eTw} z@;!w3HyAm^KFeSFz(g2F&wiQO@blD$pI`oRKky9jMc`+Fp9DS*JXX9{!TIpFqzWnl z2lIr_G$%RSX@YhdL=-5O>d;dn@^|hQ3)}-M2@68-t_hg4a;ti*D6YMNGwcuIHig4D zDRBrVHQPAjnRexq==3_DeN-w;@)@wd1bhla8N?h`Ui(KsT}}S$-*4^MH9u&4ASA#l zQ61rSw?5ns_i5nsxSg)FQ|Gk6u*o=;wHRo(2(pX}fe=uOJO*nafhQ3HHsJE#@HqjF zh@2N?%(rF4td-1foe7ph;fVea@JXC)@F&2Z0&fAcI#&z-_2=g_no+QyDDG_;coHjq z26z);+V)pZWa4jK-l<#tK=FZKfK}J?C{E4!98R|%!ZE~#jM|N$ONeLFCZFp}QPml_ z1tGy#lAdzl@_eM+G2&m1VWIgcuT8@W{!B-U-l82s1f0Y<3ci4|6}}-n{U`5DR%RdT zZ+uZW+o@EXb`W?DVP60-2i$rvSH1Jtw+ygq*DvE9*o(kNfTw{ca8h7LVSxb4h|M^j zG#PHUu*P5jUkdsv0lj6Pz?+1Znf(RJ0aL`zB;6NpQ z?4Q4Sa{j;iv3EZ)ROvj95#5XQfJ0dE(+KWxXX=*ye~o}Kh`&GiK<~qLvF{jQ8R2(> zSA960{wILHjPve959<5|LCNMklQuY#v@mJr79)g<_|_t-(aspY>!Hhp$3)JvGUZK~ z^12CGuwuuJI_u1hzN(*pa#`VBayoGK9G3>|X*tgHw0<*g;iiEf^svYt1w5S&k-4#-6Vv)ySi#>=W*w z;d?)vl__8FI$TbD=I~HE?1eN4Dqhax0}X!ik@4~uj!l&M!c?wt8i{i({2azcz;ENp zw{fW&dlvhG0amFy0ZzU72+pJPB2MowKa92X*_=o6n1Q%Mm}QIk1m#fCR|yC`g%n~# z$!^<0_ty_d%`-OTkj$CXYDavK+6ttw^n@8Fds{p`G|w}`^E^E~Cr%$c#e|IF|e5GT!}ntp@)>>AwOL~6~iZ0%yr{&a~oDbcim_D7x<~8clhYw zG>2;)YLUhhW+TME8pnZOz}in@`8U9?;WAVAOt5UvGQhH(zm6mLFW>@M&*R*h4-FPj zSn5_Yly>OpbTGzZ08a?&WuI#3p_F)-oBtw8!t$(2c~z&pWCCIX9Tq`k z4X1RQk+g%!x*M3lQ?9_h9D2L*Y`Y$z!y@OD$~dBPu34WBV#@{JGfBY3`5FhJ4o9mk zD!xYM7Nx*<*?&moq~E=ec*yR{H4 zplWhH9?x?kYcKAuLO|e2ddohgV0Uk&08WXVPpE_`t7ut|&B}o;Jzt!yG8+fHG1bQgQ29Jonhh`LAz;ri zz_Q&xz~$xt6i)4ViU$zT+6;Uwb(3+R)1;myWX0=|uc()NB4458gZKQbhwfRA%ZwLQ z!gqDV=-t5u?zd7P{_srwn)7KX8M z#6Q&u`MnFH{MxxA+-{ahv;xOZ60LAfXm!GxZ7)k zqT0*CGsyxkwr2>k3~Mby2qI50R1X=fhA8O>rCXu(AXq_c;ON2t*Nw*o<0Hg28KBtR zW38A?LW~tWH8@Xyn7Z={@Rg;R`F!*G5MR4;fVU=l&{lTO-Ob{z<6PHu9Pv*A@or0j zU9ka{>H9v8_&s=SUS1ldb7;yQ+@OXDUVcJCv-a&R}=CRP449Jd8_X``f^?IO5-ZT>>x`s-EDw@PbI(#2~uFUacM>fwCwtI?)5vC2*E)c zaySdP*~&Add>LVQmV1&VUyqoichSpdby?Guk-pMDbCQwPsmH{C)A zcXNktH#zeDI1}&Rq?5&{9pC^dEQyg^S*Y;lbT7{i&T_KWyzkdiKlt!_uq4{#t>9W9RJue9D3misy+4M z4U4A)vU(Vs-sYAP=0u2E_4*Z8WAOD_&wHDv^7#Z%Tr(RtOeo29pV$oID zC1|nizbk)e2N$)0O}u-$k>Oq*J#mOA3@|$wpXe^((tMSPcEs;rIYcw_m`i+ev!&9^ zkK)v#Ch#p>XNrf0hteLs*!?9gp!FHxZ{Uc3PpLi25rzTvT7^orjPEHh28=;ki-$#6 z+`d($23U*xjI~RinVohCnc_s2^$+8Y{@w~l4-ZqVlnT{rXVK0)ZnsLjH(TR&t3+zH zoPSis(Zb)r(MBI2H`0xJC-6Wez^dx4UYxh*FX2SruKM`zhk^b&M~{pUhQW#ls|0w` zUC><*TnI#=gDiK{>=+MhLXR((eFg`67#`~7`ppUAINj0vBZa-6uD=;{)u9eBi}Mc6 zj-LIpg$Jt+J*)v4u5$qVCpbUE<46@Hef6C<-`v;vmCAy^F8yVfZ-O_)l=O@=yw#9tHyhxXP_x!c}kWT2k9) zFmhmkQ>TtN9oj58AEj{dfxGD6fCvM;V@C-_hVZ1orYTvwL)`3;#i`38)tfl-+{G69 z`w%0;h`wI%HfGEk17YZM^28`3!+k}b(%$9(9BsUaqm_^2Xy<|AfvG@+`V-+QgMJQI zu-@~aFK8zqgrK*l%J9elp6@Ltxk&+1h_y8l>lna4c9hDqXX*LaGbGIp))-{qVf)J1 z&_ixUAGZd=5HWfX@%U-z?R8t$1|>ik2An)T%J6U>JKCV=!D0YMD{WlA(hH+!zZ^d( zHRwTmfrf$qJx;&tVGpD?+z&zseBYx~E>S8)2q}y72T)3&?j3^yC8&StbCf^!9Huae zrF3-zQf}5NcFl%F;6uH(j^VM+H!XyL&#^}iFf!DOk`k@;#=g9}P&iuo3%IE_{|vbP zpiZ{q46w}bJ%aP`e-@VrwdaZ7T1y!EjE)Y`-(N?{CC`Qcyk%B$8`zVa;p-%%=7o4VT>gV15Q19n33WBmH9V-lww0!pEd^*FC8`po8aP} zTRHAI`Rm@0QqbF5Wn{Py&);(uiT6T?qn)3}(NYNzJMA8Q5Jqr>>(TQC90za9*Dpko zpZ)+Ax*FD6!ocU~k%J5l^sX=*7uT`pH_yA#Q?GDfq#u8oJ+n_x#nI3ga5S~!iINY( z1{lE^F`r?JMz6KtDNC)C@%*FH92#u%!}Eh&pQzAI9-P_Ijs6}yI6!Z2b#X0SnwLcj zl&xYhHF?=zcaoKA(oWN8Z%=i zK^Wwmd1Q{i@~LY)d2EhaIpdFB9p(Hjmy`1#Hezcno~Ib-uT!b6Y$V+!{!Q4SZk@}B zJlB>y*RG>Paez}(x`*c}yk#P9yYy-;^z>9Xc%Tp8yZ>m`J&GrAH1#&n8a?~vN!S^C zV5hg!9|Qgtu6x6lY1CLjUp3{YKX#KBPE9dTOZnLsZ!kF@aq)HyV;-DNB$cF6D-%Wm zS}${d-Xr*RKUnMRi-m;_)3a@w?Sxi4B~Dy-i751_lmn{ekb%B3J@t~aH@10=U0Uz$ zS*`*-nEUpC(H(H|w{TX`@9xwOZ<_&%-9IQ6_(@#4!9y_L6RGrGS3l0-A#h`D)Zj&m2r zdH2FNx5wsbw$l}96>C9CLA4w(dZ33VPK|Kp)Ch+U_R>>}2>h+JzKtS}-kvJeY6;)p z?HZ^pquU+uMcnw;-^G`;pUxrUVHl{ufBbg@yP~p zl9Oe+ApU!evalEft#-=Q8#9beEO74p7|%a>nCG56%&{Z=TT+XJa6z$=pGL6Q* zo{st~uH*C%aBUX1r3P#{IJK;u$q8K4?q_kG95xIKSR=@_q#Wj)JlN#(&)wmRFWlnn zu{k`ol30A-P!2RoTBLwh;?atIGA)t9ZdqsU8iprM9O5G%d7R@X4iQD+;_JS2L+_+q zn{=IeVwst1^ZGlt`N3<~c=O%cT)R0-qnV(MS(I*~NTpc&aPJulnbx%18I5K_qm?jU zs7~dQPZat^RC!~N5}K`q^A~P0Ha@f886d;LK_})rmQ7rQS-L)hOd9In5Zt?DgalZ3|%Ur!NL#v&-^2F7XViv2~*SMXc zdp=j-E0KG8VsM~Nty)?t;@Q9Uz#xw1 z?f^G&DHB_g1lwT%AD8a%A}(`pQw^*vP>FI*jW+oFv$y%!V^f?MZO~gu34OEfmz1>h zR5CvO)HshFUf}I3z5MZOqkQk&Ff)yiTyNcbQYwYi>lKtIvCHmfcZXgLA-crhxeb(HGGcI47VtS^<)J&64y?BD*fhzt6qq|B;>h&_E zQn>QG`x6x$&Ako0g6lQ3rGkeoF+kz@sp5*-KaT75vLRRtfoB-1Cw%h6B%gU~j5CkS zadfmvsV{XtM|PlJa)r5K}qqmYW*c)^FK$EY&Jj#`^8cDV_%`S=ps@1Z~*j!fX z==wR_O)OGEtDW)cTQ_;_om<=sfOkB_;KGh4MpW0BbFtQdH`$wk1t7k~H7R zVB8rT4Sp9l;Xd2!4{VhIhHz~RA7hif`h~EhT5@}~%$^#}7k)FQOEJ=i!9`Vd&#|p8M@`33_W-ZK&j$Y`#JB(skO`Zchp!ZNzbAR^l)H|rP>qm$&Wsc5ODRz1edQ)(C#EVB?)Rc8hj4d zZt?bJe_&J8vMlA{G|ulo#3nsS0x(9<==gl&y#r`1c;?V7PaT|Nq^Aw3aIViBR}|;l zyHob01tXZA4|(%SA8%al=hce?+?pz*_115!RLT*h5KEojR_XsjfYz2)JLUZ4N!~bj zn?^HU^zs01JZLE-JUWVZ_yBUS4@wcr^YE1<^gVpfTWqN7T6n6(B6?K{5uU=URp{It zqjPHv9jAywGFc0aX3QJsZZp_l;lNOxN;z0}K!;O-B=uT_QuM%!tQJu!1sp#*!e9K! z=jp9ic=fHz{QAH9F0FRV4%r_HM}wcm1;%c}=29d!yIo408|o=sYm+T^ZqAM1rOShy zAFK1J$0nF+kMYqX(+pQ)%6^W@?UEW4EGgv12wE+l@!5#Cul4fPA0FnF3xnLAE^Wk? zTo(eTCMcy?9`jw@TT=)~)0`_erg`t;1UK)@VJ$0mG!X{)gZ+e0oJ922G1el5AW)Jh z2=J6#VzOme^v-x5(ZM17o*I6wf^K(6CTFpQE-j@X%M3T~%<{LyQpeE;1crWZn5v0KKrh~HC4C0A_s-5TKK5&$+7vynMU0O0P_6oF zrb}4sa-6EQ5~Y$;@$MIq-X2^7;b)#a&X>OMJUxXCaPUAMpa1mJG+QyRym6_xj%`bV zt~c^Y9BrNl;*EZJ!}S1#`cnZujhn(U@ z#!^9ug*2C3pQ!NFmk;qLuOH<6tvWM}kSyQ2>(g3`@)Ui2H7b?6(<@fzz~#ARp&4`a z<_y!b?G@RcLP}Jvj2iAo4E19@53ndD3*uLsd*D*wRZ3Kj9VR+Bgbe(Z3@TuHw$0U> zGb}V?@_c=w7PvNzrBX<_6t1Xt+bLKJS*}q^^62pcJpc3w9)I)@Vc<5Xo_d*2ec}n8 zdGZ+5A|9djwg<)t94$VLqs_`@ie@%b5aZ!;{eJ>Cmv=|tR1Zt&8Je-rAHF@xH_sp7 z#(ae=myY;j0R|>!O1yl2kng@T!i~uap0p^r^$0L@gG3%fgMHL%cWZQFS+5^(ZqLc- zCi4q1X|{aWp+)!}{_p^@zXuz5AVCRGFIdYRKFNBP1}Jj1h39ivt&EvkoM;B)%qAzu8* zX+HYwNe&+xpj-}%ySHsTilfaDHlf*UMg{7@$}3tkEP-)5UWOAxN{F8@J~;IO2@qdm#*bDy5KF zDahC%QxuDml3KOI$DTjMPk!bZKK{aK4vzG#bt!!M6K6Ou+{-t<^A_Lw-rKzM-i@7* z1id)gd;*syF};y5-IoEDiIZcvsPE85zPA-PgVS<(vdW)b9^xlXjniL^Q7JTMeJ)7mT?#(*y-{@hs>2|nnsXaK| zuY#dJk9ji7d5)NaVr58mtyo-~@5>+ zfU1JPtK+gz(lx+Zrs}vPI(KXrDpYut64Lh;;{jcC(~lE zE8MY)WRp|Qx;lTg5^?D82uF?`Mk}A$wk7hR8bILPzm6gdeU2U)0T)Z;Y zy?a}^O(h(S9>>w_eZ4^&VSsLXisLvt;DKjQNnuGd$%U~xUwQKouUzlv)vNtXHll5v z+_l#c95N|qvL;V-<~iAzVbHG;l|ods%16G22+-QN-2T-J;QNR$EEr%}3}L5IE~P;F z9@6(+bJAsQOk*usrZ=WXD@oOtoKYD{rPL*SQ%AgSd}gg=qsm&>4Vz_}3m2~Q(o1ji z)YFgB-`9i91=?65&l359;2uM@$0p`@``zpO*$>|1`mL!Ao_+nhgrm{pIGVkP^CPZ{ zdosW>*XIkky#I%mK4^hV3tqj}4_CLJx@&PEgQRPyh7P$o{un=Jz4IZeyuK3_doPYJ9V@3a*ZJ>wSinCj2o1<*j3Kj?HF~7Flk2KZo4$;RqB_Nf>P*jsNUBqh4Fkhu&+qG z9Tb`$Q!yO`cdVjqyiK`mwKg=H9p>j-wAvjy?U+2vdFHvtIdbFxt;}g{C22{LoR?p_ z#Bcp?-{;jgE;Bj3fH9`%g0W)^FoL7mLEHeob#=r0-LX23n~w01`n5kO9MlPClLbcF z4Z`Mh@qNCwHy+M%Ld*p!-`q}3#G`XRtr%|7Ou{285eFkOqxS(7GE~TqK$Ft z(Ka5i?!;vCO{~@|=SXW^q`6iLDMdc_bLW^s1?qBSxAFTCne%DU;SCeew1P3KHoWh+ z#=#P$By)33UVGyrt#(Whg&aIML|Z5#Pk_m}c71|x|Jgfy<4@lr%k|=ScNk?H%^nA? z0CVeo@P21L20YI;lHT?L6qYmb0-tV9QOPrql4|5}urH#g60 z3=6|w@mhRLB^&L+eiwug#Bs{`^EbJ2`6i9IdD2XiSs0sc@dtnM8n3^7rDzHBK${d* zaI|~uULRVQ0SW{75O9`<;QD+J$PtvR;p6E7&&2ceByFTIltYifT1YkYmx5I5)jh64 zUyn;X3qx-OAqpWdNlJ3*dlQVS2CNQfa&`;VGH&Nfq;yN{FzV?#b)2TrI73%o}fB*#g}K9++z;ZvPyjwekr?b4EaN&y4a z(6t~mPR&uqAnY2E;8mnjDftZbR~hK5Fge{K%en)x1vbk`Z;c~s6}*97L=>QfAj>tm z)<`Kg7ZVU*vYdEwhR*E?(&@Ryb9GUQdcQa8~{ESUjR z%07>s9Agl-os~VH zy3HjH4%d0?=8zafP}X^qS?*2*O5zI0M%e2xxp+HBc@EJa_gG)3a^Hry8VbzC!QT3r*4+V+2u%Iyj7| zmdUh6q$$=~0{m?(8ATr2xADEz2_+ zPiIKXx(pLxIU;giPziUe;!P7QU)rY7Xta6rt&3=FXm=8{Hak@gc|Qmo?T+ARd5krf zU_AziaFMi4HM-hMkibY5b1Z2htOhBFe8&Kla8=(QYf*WI)JvThx*u3gB*sD*c$|D> zklSMm+_*K%_1kmANw%oom^8!A&Lghg25sTsAfgnKdR>>O!1KEE#+G}L9O3IYA)9N^ zx_pD?<(uS6;ZqSU#!}&KaM# zOt58xSR2FaTyr-_po;@ITAsrV<6eRF7@(^^?TYVzJLu}NRjVmwDKbg1#uE98p0ZCl z^j!CbD0qr;o) z5?81|_o8SEM8fiz%s47?LM+Mt?IARRqvf~R1Os%ZJMKdU5R|OutZs8CUur871&Vsf z$5&!yDuECPV-RVI&?{Yx-3jpPxz-2!%RGK^nDdt>NK#jr(rs^uwb(SnCK*|lIp<5I z1ipt11M*shyi#^G$Z>*cw9uWHyxAt5T_Bm7#dP!jyFPpC{QkW?B~G6h;_;Ki4EAp_ zJfjUF%eh}Mi~{Pya8zoJ%bY95ql0*8gQa&6BRE=K(?xa{11uYFdJ>mky|18wlGQwu zE^s7|7dN`dS5(8o@Ll%soiS;VS%%2hwgBup91!@5;lV1;J$aZo$vJm^j5x`cQXh&a zvQ1KwD>t2_Q3_QnVS4LiwW@QK&NtB0bLe*L3g5fMF3aqM?r)YNpHs(&c<#x=3=dWb ze8r|}Nwjv7ZUfa|0yrvjo>3{|R?)Kik^zQrv>dJF30hAAlz>OrCv$z5!wNxQ3-le9b8-RgC5Qfmyl z(Lr}o#Dq&zacLCyZWv`Plp>Euj}P&&=Z^C1*-^@+U_*NUic2xZG5Q7=zye1_&NDLM zJ4BdG&&Syl=)uwQnz5|47$Cq+?5^|R=LqjOs#Y^-Qc6jT%yZWo+*3rp!dL6GcP?yz z)e_)-=(a=Yt(SQ6^Z^3j7yJYHsU2Kk0TYcsN?_$I*7W`pwm- z;s#uAtL4dVVc2FI*D+q6lWT+W6qU#$^zYf*92v*X5MG7FX3qDp0j-4t!!`PP+*Fs| zdWl!xQcTV?X|>ZL>@QXg$6Gt{Y?uAV^AweGz)*jc=bt*v3(p+k@PQt}P;Gfy3|d2) zvC#~@5{6NsIU;hd36FWZ50xNC%fmR@UXdNT76a6Z5AUnpzq?}{(g|nMCXv+`1fCRB zLyyQ`fA6T zfj-bz=FI5>eB$|IJaV{?Y9-uoH|TYLKg$qFjMzxfpg<%nr)9=P<1<$l6CvyUY}&EyQ~6u(d(WD)%h)?)x65P6Q8oJ2MncfH+BXTIMf?-FGgD59`TDe?(? z#nI6|ZjCRS5!Osd64xZQn?~XLiZJj9L!WvzT$&L!(!=p1{hWAYz(snyUa2iIfCY$S zM6(InY)AqCcvyyorbleMbHi?-D*^86V*Y_+0N)rQlP@|tWf1@i)=Rl{P5x1{v&dF! z#ak9<=x&DIx&&H^e4c##04I+PGBela#_c(7jm{>c}0uy?cEn^!Dx-`#E5ohMPTjT5Q{F+X#W|&U2KX0df105(BcId zO{g`}I+v&bJSp!VEXs2i2e1aj60?|X?6}~f#=`?udg~F7og5;|4aOLZwu^PeQV67S z-6MQY68MV1_jWE%UO2-$ZL|nF@us;+0X@P}-l1MhyMV3=)U(zbtFf;ofU*|PXt)0t zDYr_x?gaNGWTTyt*p2AgjoScgp=)RQz9a|&mW2jZB+zvY-)_ud^|4(D90O#H7I|mG zZ8Mkdsj&12LwVypXZIR5B?0!O5!{6^2B|gL7IU^Ft|g(kKL^-cW77-~Eo)=YjfQOl zJ4MJ_zbRm~CZBJhx55BGuh1U^32@gei?w8I4OdIKFC_rRI0MgGqy(?4&TQn_Wf?Y( zoqxVt*uJ9w!aj!9=!FGrr?cs=dRTfelnM#35ATPMqv?Ayz_K)mDw}JZyXz2uXF(W? zF)r0t34y0J-Z|Q)DYV-wBEq}Ad+*fE(FPg~*rWvLcG0UAHo*3qJnjl4j;5p4)nSW7 zUc4c2-16|oi0l9sACff$)-0w6C@Eb({*7jM#xb(lbQM#}ipG~*q5Bj9FdDD1fQ&aU z0bKuaO9@Np`bq3Z1Qe4dmNUWXUEX79MBToEhoz555z$S3I)OhZQsy zC{0Zuvus7z1iMXd(5^#((m9p6S;BS^>(~Mlfl=hSIH@$ShqU0}X}ie4jpf3y3TynwiFLZLK;>105@9Az9g( zXkWp@(fFDS&>eucZzVv2#7K!$vatKCV}K13u9}?0zj_6cBrEQWwV*d4N%k77ajhH0 z)HI^m+SGU5<^oMCX(Q14^(Hv@I2vDkx~nC?zGVO?3|1js!MP9^Ysrl*2EuKi03?o) z3k~NEUG{Nf?Y@5SX(y#KJCAL(H=XhgPP#5wN!#xHT(O4?k5#kn){+4GP6b*4DHmHD zx*QsdHXHQfxT$Tfvs<>(6>3Zo+1>5y+XB-07M<}aOt$Gk>VT5~vsTi!`|;{m;Dapz z0JIe3o?J9yEsz<5-bnt75Lm6T^YbeLM#i$~%BwwrqP4Y|UqFvfV6%Kn#;>+8horSH z*?$G@DFM3JkB@p0nN%dwqq|vIYss|TSlz4uk!Q&1DP(hHYP7L-Qy!(g1aDy;e|#K~ zXIu3C2<8eE=!1skS7dRMc{ke*a!(SJ|(f4R; z0kCnan6q-f%YY0=)AoX5+N7bCXj%mmY-9&hb94A(cM!`A$Hm;D{lEkQ zWRenGy^5Ng+{)Jxz)j=vx(=ANvS^I8uW?Ta(EY#)D|x>`SxX`%=c6iP{?c6Gc9JvO zN}UwgfF2x--Jx{;ePj}^NR2l8BrU=UkV#DS$`zui$qi4ySq=kSvK}v+kPZ^H=db$S zw*z$PF+EOhC5#gkinw9A@?#y|`9X9ctX zG6WMMU^a-zg8-x;%MI-$r=7Zvaox|l!`^kM#ypkrF;_scOy|+olI#06i`#Xi%?`=< zB;o7~GKtr`#?>>Bm*2z03N9F*%f@Hk?&}OtaJ1aQ(e{c4xhwL1Zol&@jGp~+3z)@C z+1s~Pj{)ZVknvK5fh@-}8EI~4bTUf5q8xgp2oftu5M;QBrzzU0=oIp{CZ2ENbyC7& zrj;>}7xndf*)2Xdxxn<5J50AUk@1nnL*XXNc-SH-#u5tS%A{6&+tNnziVnH5$(g}> z6dFgJ%Z3@%t$U8pUc)~%y`UM zNuzN4&1IT$qsr&5&G7Vrd4@*@fF(P?SoUOnY*)>{F+R&5pP%Ht`3gE2qDKpA!cfD~ zD+~u@&IyrmQf3^K`mP$-rj@*GLatbU&t2mdkl|>0Vf7p9F~9`-G#&s;L^&=4-U})` zUanD7g;zs`ylX2=XBEbb;*M2JT90|-lD%RCu@$terP4H%-@HWsp%D%o9Ksg)K;1NJ zDaB$7p}hhj+%7*hImas(Zgai^xs51m*W)w7Qo+(A4MQU5pwJwU+Wi%p5uxb-Z|abD zjlbyo-{;71G`(R4m}DOt!de2Wo~#i&Zu2n zk_JnF2ULaOn9O-hI*HJ*lDBohZL7#}eS!8lavV+nXh?uA6qbfid^70d`+g6?S~4MN zOGRuYhV@k#Aq07@nVg*E*3EGy$EO(@8Nl~_ES6kbaw%AEC(+X|Y6Z>Z}T+lw~N7Ll__ z1{mi9AOXNVK!rtZf%>`w?=D=t!Np5A@dFHQ-A{fm({8HlXbB$@`+d;H(QLc1X;9_7J$w*Z37E3K>4aDt+W_z zisJe%dx&CCo?PL+baM&Z=fU+hYHP!L+UJ7tNs7Y%53wdJO9t>5>$vsTV}Ne{^muU` zW}gksco>ja+CuS`U!&eD>F@8QR*LXEmpzjU!CY^RyuSx8^j*(VEK;l`8wAEm>?&PK z2!jw7B?PTF<-+Z0zCWjVSNp^toK%Gefo|}tyNR!f`}F}G!-zq=q=b#wjw-ka>n@ay*kG^9)kG;^@AwbiVj`(i9V?kY@R3^z_uIRcrWuh?IiBmqdYF9I)4g zluoT#uMk%$H`lleV<;xdyFC9e^f`9yAfuy0L{U)K6dz&@SRBp1gQMYfalbp*&7(fY zuDV25k51nkylAZ@iXt9=;!zGB8bJs_5J)^>s=uR!*hrs2Bei=d_ghWaY>3K-c zcYmdakX@JI?&-kB7@|_hnX{)D9X)^$P>K|uC(*h~2TSXd6688_i=`Aqp(F_8VhbPN za}4EXeJ>H!p+m!*Idhz-6fCAb?*?4DxIoC_8L8qqspZdSS8y3ev#opS|FE%XFfHI^ z;1j?nAKE1dfs!7|^H8d|sa-$1$uUNwwZ`N*)|wSN?Zbk#7T@z38XBTjt0JYKR8n}J zAW8IHf=UWe=5Vh=6$&v-7UVg80%rJK^cSfmsBEw#TZSVXXq@$*djjrfOewZ-X0DeK0u{h zL3tjYvV@^RNrBdPcaM{D{mJ!0I2EW`@$fu>G2r`>D0FJkayswrt#ahZ2tz}COij&^ zZ=~_>)*g~uo0NEdfKnbp78SzQz3vAAp6?Fj`HOamF&d+_`)drg_twrk$nI>e!7^7WriqSi|Q!eeq!#w`@NrEs$U?>S;M+TL|e zDczda)7pf9C{jexz01&pz^A{z&hg`;jE~PSF)_1a*S544flwY2x6^xJL=Z$MFL3G& z0wD!{5aRn?Ch(UwsulOkV6-OBb99yxcUpAX4bo1VJkJ)HWe1*7ilfmhIGVjLHZu^f zt5+Rj8w?<&!Vf}%sN#0~q6*boizzCnTv5};ZibT>X4$SP@coD&C>O=+DM`D5&a)j? z7Y-gA;jzaaC5l3PCB3ewb&YwlKomKnj@S&A{1C<-}q<~TQQj59ty?XG->B%Kff z<@toA8lG2dN(h8>>P{F%1YwBh`v{>BQY>ynYyX}^c><{vHV6nyWvV^>Gg*QUs6Gj!RF=(SnlQu@{Z4rwQ0?$*_d+PM{_aTIb?@P)h z4=Gu6TP~+@*Fr_0)b@=-V=Sdo$YYNkTJQ<;n@Mxy5EJSWdGjMgYA@O_uXk>^h5%(J9Wvo^mCTWj%spW&f?dU|_M zDnLjGg2H3deQ2wmT{i}xcA%4%TZ6};L&J=Y4pXmJXf)dBEi$$c5~&297Z8=IDCHOT z#wF;vXICMNN+@p`$*e99-Pq!nGC+h_WP(bqmn7-XUYJ7&LDFfX^`@kD2S=N);b?V3 z*z8Q;N#NVK+@NRfbEOEO2!aSdEa7Z z#e3AfxrHRqIw#LF@+>DyVyrQgtG#4tOd7WeBW!aI&=^CdQsTMi&+^F8Lm(_spa=rB z=)?CsK^Q2SA_vT3d?4_pQ-O9sQxQVo`yQjCLp=KE5zd{vLaWu@Gy@1B@ce)vD&zZZ zf~e8jNrR|FR4NmMC8Vd257@041QDutfG{f4n46|CKSP$r8+}ISakROqVF(*;`qh|x zjoR?@8kb{n40w`t%{hzbhlG(cZk6YvmR+@kLd9`6J|Zet+zwMJ6GRcdA3E`?3O8FJ z85UKbwT|L5N=hd^3V*axg)7zb3(*}ccD|8PVlhq%c>zE7!Kp;W07L?w66#Dnhu<|L7F9wpz$^IQ+6u919?XJmnI0KW-b zz5ULwY`CS*W+gxecpaBx@p)j7RZJv=C=8`CL0EPph3v9kH3flso{t|!gi(YahNxBU zkxi>7#pjoQ%NcWy0fI2X7)=@{&L~qJd7cor6|re<$X9KxCGb6JwJQAs1C+~U+z#)& z99iZFUrIp~DU>J3GK00wyW?#_{c%I<4Y@YhwI^PdU|0|b-5ou z%i^8{VFe*&;eE4sen39rE85L@be^w87aEwt(d6qm z8r?89%K)}G!P~%}0iOeU7T>fMrF<&2UX=1((Z{m&3c&OI#ogX{5xU|32Ol+*QaK3| z2AI4;+-W1FD^!VF4UArYl6v>X4-F4;;>06Fk#mG;t(l!k=(H7;a!9!x5QZK~34Bj3 z68&aX6RiykjhMOl4so2JbK_>*6%s%S@H|BrD$3;=M~)n1e!j`<>^%4EW@9bV^N7lI zJU;*g)>x#J_X$6TUhiJlqx#TFXL8K=#*hpB8Upk?y5x(5mHKoP*|m$%H(+{ z-v!o^PRlU?OOaP=EkO{_(^Kc*!4Zz1ILf1s9;Z|)IZuxjWSPKNi`JSrNf9DN2tyD^ zs+E9pIVgT>y)_B6HZ)r)opwr=Tcq@elblY+l4Sy|i~0f4Whghl&mxGTI?p}-97Dqg zxN~Qm8`p0#IWquD_lq+Qp931BKV~_IOb5C*R>|-1pJ%HzV%hU~p zwURt{g)NO{N~4*OX3mwTlw8!~SHl=fmT6k;jJdg(nb{8W^C?Lx$aB}&Q7I3vYr}Zn z;vtp7T7gtPLqmfcJ~GPi@E}46j4|lE8;R{c3m0?@q6z}(Vlcvac}mqPrAn<(MfVoE zUO^!xM(4|&7hP@S{{y^#`<-90jmg(G_1jyz+S>5*T^U=q)($J>9W0e=i(Z7~#2=Gt&Z>Sy%b(Ypo%am73~kxB7|?KR4Y9B)DwK-<1g_1^UpAHV3=~bbl+=mc7OsD ztyW62854ybzONRUK;R}$#!1fPWQ+0f7I`i~Eag3IW|Qc;k;~;02M-=#WMr6fsl>uU zgH9&~1YuOc4&oRclErj?A@Eu@&v&0Wu zX8>?T#tWVw9`S?dY!H@|C~|qa3l74Na>p=d{ z7@$yt@;pl>YP~}zJumo(kSd}`k`qD@L=mNOl~TEi=lkrH9R7RW49`b-9y(7sefk8S z`1lJPKYo--rLq)V-t2D{?%Phsc`%$&Y-zPp=H^nGO^q=U&)+$t(^`w?DSCS996EFm zAq2DYP2wa+=T1$QN>Q#!-v`G?ho6P0ORlfYpk{Bj4}UCO8L6y`wL;IL{zRgwP$~9{C6SOmg%`B zV`I}~+4d6Wmc#RulPGvtJs!r$*y)7@U>#<5rlX!SQcar1xHc|H;P+bTX-;3Mr zKh$|PZT3#Pf-S*Vh|`RznR%McO{JIY3CzsQbK}Mx;&$u|-^J8pSJAbfV2rgo&!*!} z>kpd?^DmdnwMKv6$d2qvJ8GpGW8M@(5O>a`c$ij zTnWM+XX~!yy>)wnciz2BCr%c#WusCFKiGdAF7q@=lB9D%2=N=nm^XLww|9gAE`9%> z0&wOt|Da{9IG3gAuljx{jMkrCEMD1X5JHe^&D3;*X0x**pJuN^2xvB2Oij&@bBn$kOyzL7bCHw%+^JKi;uZ?5G4d_pSdMm81Xh!hu5vezR1n4C_2Q zErM`R?C^OW7L2hZX-1N{)QJ6H*I4Uvi{dyTO;eZR9QgR5D>B-R1jH?03*swi#{<_7^KD0ab0AMYoX-2z~?4d4f zYoj~eetLS2Mx#{_x=SnegUEHL-t9$h0v0=)<>{|?;?}ns3+-0x`Y-SJ@^@Sw_MZB? z^bhn}t>c#G`)vUygpdQ$rAq88h@!l!S}jqpmZ{asgrQ65Q%V+Dp508(2j2;;oABn6 z?d0M*y8re(MI5JGzH*Z*S8g&pGY3Ezx!8>IynWJ6U7+)PE=%KA(=_?jR&(LaAP74q zdXjkNhdX+v9al}}F8mATF2GY?_-|%)lD^(avp=9(F9|6=Dy4E282bXKNynWs=eY?gPV&`f{v-7l?9XfGB61zBs@+46dV2ovAe1wsTsz`CTTQUbUF#GR)@K{d0MRwNs^Lg z8Cm9}L019^AxP7VEYrmtG6+qx52MPL{IGOf?vX92+qO?@P26eHYRuDaERZE} zQ7FG2k%(oj%U91x6$E}jPhT%jJ$;6!o_d^my-KxOp;U_2RYk0YBuQwuJ2aaeE?vIP zh4WXKnwl+)@NOT?ONU!-rKpJ$(alBb?}tT3ckHoUbKvNYrJF?nTDN zrf4);B&plw?G`;y0@pxH=Q*8bgSgp1c^>6zeX%jY?m}RUHc8x?(|Pt=I?w;55b~kT zr+z3=k+F+^!lBbYX{tT_^Ksms7ZxpqI4K0x-3ZIO+EPtxVU~rtX_^bOblMH_bos7d zv;!%+AS>m13VB|D7ZkmV`~c+@uXzDV`9)EUk5V3>ihAFeR=Y#H)uG*vQA!eqAz>II zr6i6M?%bK+t+(Fi+_{TfyMCLgsX01}yFNvKuRWfJa+1~&GdDPJuZYCmP(byLzKhTTC~pT zv>VJ$-k~`^LlU=LQ`TjrjNRcJN-9U>euy7Lu8EW%76jj&U7!|wXf7T_L#}S?aBE?D zdX9;SsiISyD{$`;|G9G)dHI#MxpjM-tSF|JJFTKDyFT45E;rhh85Wgm4-?iJo2Thi zn#AAIY4-mVO1|-fKmI*#zO}Q#u6touBD87Ryy}VQ|1OoBL-0#}5Juubl|?OswHBRc z%+E|RKQl>|xFV6Y;2Od@LYK;OE!nqGt1E*?66bmPJ6YELmw6gr4ZQk8yY?;~YGQ~{oHUh+HO5BN=pKmfbIm^W442?#6@iPw-i)xWxt`0rO=iqve>MR@AdH(BKXTSc# z@BY)5|JpD9Uiv$~{Ao;b<)L2xu4G2tTsY6@(NEZOU;p0q1E(InX3?Vv(J!PZi3h|5 zS(eah%rQGTM%-@R_5M=8C?p7-%W$bd@6JI8muZ^inpV3*tKA{b^}2n79ykgYu+B5` zJi{wmNj@l>z!;t7d3q<$l5dz?|BtW!``>^0)W<$=-gxU@(-?c_p{e%fMaEJ-@&^E4?*rK(bSH6cW}T@O)`beNgAO}n+Q#uSx8?FmAH zpp2AD9n*efQM6SwM(;@dfVI{bqvz7N{bsv4_rGO%`YWFAUm7;A^38w$-!VV?%C27S zp32kD^K8oVf`1jao0qiC|58-0{gmf(x{ZMnUTwT3*;=i_$c>sb>2j)gKZ zCybu{f|XJ>TMM((N~$U8`3-@n2^ijNz)T21yD`uF^dxEAzN?_cjcsznAzaYvLoA2O zd(tRR;cvknFgi!)`8!#b{!Y?r{BCPu_WMCp8k17m*S_`-xN!dU-M&O%kESM{{mlOb zotx0}y_5Cc!T-Py!e3OLe^^La+Nerov}StzCe!1$?izj}i{MrmRrh7{u7`r6Ay}=q zk9yz0h70MfwbmNb(Rp?=OOxMNn49|lu;xOEVL9(%rtC^{^)?VDjpBc;xI~M0vhG+kDG zFd&4GYuN_wp`|R$Own#Gpmo0DJ*9lSFe(N_>`4K*cOaHp-3MW`PWyC$wFa&8JWJEJ zb)J6J82!H{S@OpR%Ohh8oq1iVR5N^?uI}A6m$Nzrz}X09R7E+E%g_ zV|8YXp33v=?M`#yE3M}IuSKQG*AcYeUAVyIKly(!dF?y9eHrUwUn#&k&)?NLA5Y@W z*HRJx6;JuU5Jr{5%2P`@y+tbxH$Y)|Ur$jCe-2O|690y=dkmS*_KJ zQmMy1&m+%slDJ){K1;*mWOwqpQv0$`(Qd*ROP=K@Pa}mO*EvS(_l(vrWm)=qlC;13 z=GXt>t3UQv{+ZEP#-IJWzqi{<-Z1vnRyc9x+lcZ>hEIIPMy2xYc5~s4H0j(BQVJnN zO$e#txb3$V=2YBnu5f*No{t|yNVRW@!}kOPxS}7|eIgY?%;Z^mF^N0B-hWf8FhsZW$jKYIyF8|1ClY8dq-kStOn? z!v1Zm%}1;?!&0igAS~DXu)Ny^u=@ZOYe|3wteG}OU(iN>S8Ds4gRjR|lb<|ntu?&% zwSTbN3*8ayYZYiM4F5+zlimEaubfBlPmI(xiF{NF^;bcB(inYI$`A7%?ge8^ZjHHQ zjs7N*-xbKKSlckUo@xBTF&oTpYb4j6!v{tJbaDEr|CCf|jIj9a3faIyT_xeiloyxrKc8)&A0fSR0Mh&@-!e`O-hx z?d9$$K5z`M9R8O+%7Mw}@JxX6LUNtd{zkggcPb@e85A*));N9p0U=vE8v?#sP9>8?*Q}Gnnsp(7W^HUy|rKP zftCQPar}k9hY%7eJv=X<(`l4EPn{A%J|Tn}6;h4}Ar4#1<3ex*#DEY|?bo=0i{Kg! zcG_BQ2*G>S+MCvxaclK$Yt6fPt}m2IwN9R=7?WeI;mXVZY`2&G(6B$B><-}37yq;3 zU#{Jtl#)g~*XyhBaV5P^E2*BAQXLi2>lKKqfU<=W5CT4~ww>L-g^S&%4UhqefR2T> z#WtxexvCVvcTK7zGpKpaQN5g|lPN*U}f6WF4KyGgCJ4Xhaldj%oRA>=DUs`o9# z){1V|cs8y@y}Ny@_Y8J>``S|&eg5y@Ngq$T-Z)Z7%F<^pZ4F2v9uZcIBIKZu zvMz*(q?Dl$qG~M%fDtT%Krc{1*Z}ZBDBL!yTrrQ3EH*lHa2t3r&IN0%%RJM70jq%w zD^j2Z%psTp#)V+aTH7?nB-Yy48nb{kQ&!m9#@cJWL1nsaGK_UKzPZWCO~&n4|KGcP ztM?2(WPp3%@Mr!JD$h`PjIb7Aar9fXElh5mQ?mciFkbMCKs_add`t>?6zmX!I*14e zgb+UNP{RFy6bRX^ZnM@}i#4u+i#1rQu{N{TWW5NIz#dp;&v*tZa7NOm4sW;Kii^E^^2iIAm1i0s*Or~A6E*M07Nz3%Jx`u@J>obUVl`JVGSf1GpDU7YMB#gxPV z0Fbmlj(6jGt)C_$#Q%>2g@t@4K(TVP0)W~a@tq(+ejmhev$F;szE+;$chrc--5ddc ztpfmw7Xe_4Ka@BP0I>)Fm<|lon_I`f1n=7vJM?|BK`!E0i zeEO$>;``2b1Av&mJ>JU0yQ8|08sXO;%T4$)^7vJk`U^$3Jl%Io8ZQ+LeM%<_?-yXx z$!3w@7gEx9qxX4)y4O?R8O0_EeJcj2z576e^|4|THp}X*+Pa!D~-4wox5EBd526LUi5!aSfI*2D*S=|Fn{@zSFaOYcZisyvU;d_~Y`v-l0MF zb1b{5Ub?j7S6=Fm{xe;BBzph6Fi7rl&gJXIc6}r8S1t5FRu$uR6-Fj2&~ha=hTH0- z7;n{K8mN%=%dgv0d+<`BT%+G18;C_<@m6Yv`^@MypKywukc_V4`2O7wi)L0&?*>A# zVmr~Lvpe-W&qg1MG>D@vcv(roXwxsBN@*xWLl%9;WNvHQPD|;V6N*YJdTr#OU@B6% z{?doQiOJVo&(`zj#sbxS;=gyl-~vM76D;_PYgoC~Oxl)r(tv=i_SCRjA`c7A!R^HS)ZU@0NPU`6=5!=Y1!?1HFx zdDOF{iX?90$zG`D>W2Q=;JC~dYq9>?qXKwDVg^x6Hb!f?&<1>7q2o}bxNPSjd$#;$ zV~^@n#^T~;J059zls+|)FIuh6*uN+__U)zUL9pud=xa^Ycxl#`(^COv!hL$@q+MT< z7FEp>(Z3hCmlyWKVWoJep>~mhHWqV}C*0vHmYe${-R-jk;@aUkAG@x>#O~&{0C0S* z489vT8LmCNH4TnnpH+Rks;m#up?h7E261S|jx5oczA5v|<{#d8@2Vi1u(`sXb)n9@ zqy$0iNbI&%anWy$DaN1xfvwD>$W8f>0)IVBmI##iXNdbM?JM5ywsEA!UVg>BQ}NQz z9k6NhYBIy;!r_&9c9kAhO5;ru@ofvBR*CK!aUUL2U}H@v{L@Fmc+Rcgx!#sgmn6R^yK%bk?Ef4$i+AG5+933I4-64GgShZTrOs1nI zSc!A+An8Y$A}+p&))FQWnS3&T)G|7yq?MA_au5P7azdLIz35CCqCHCr*jTh^SDWx1 zJ@S0T#$8VQW}Ynd^^K=(s{;m)M~3a+F|h18BO(v2d+HZCZi?acp*IBA%8j%%Ar6>( zo$V%xqVY&%Z8E&owr8oMrWUeW9q>Jqkb|k+8sIs zTUML>C9=L0`ks~{KQYx^DaB`6V=ZycH=M@h2VF#TgrXQKf88~;#HD`LQR#VZDj%%? z5j1bwqp56-`FED~d}I*Kx62Bymkv2MPu&cY-2%eJ0uI2NMtpJ}qgJ=bEiQ-3EGbC} zgh!(HHZSHYk=)Xb*1J9T2w&UFLtIYVWJKNS5uTUe8e6h|V2^wfoC=wW8=szO7#tkd zMOHjW`F$Y}Y*cV?>_?aKdbw3Zsn}d|T`I)6sbfyRrj)hN_O`gOL^79^+|2s^9<7r- z(|=0ESia@kkb!~RW>xDh<-FQm&y{}JE4CjFA8Qs{j~0Zg9ZFqwEz_o!d3vUm6@GiD z?0j~$nJEV;+#PR4Zw@<$!r{xEyoK^-`l;!X_X&bv@Y55v5@{}a`AfTj{!^G}v&#*M zQh_h?MMWER$At9T-${j?10Ap()7@gl_V#^jH`8PQ!vnoe6!inBgk{)Io_?l1-QvIV0MOPEC8y`Qk>$}Dws)TeZvckF5X1=<-4_8*xu%z82=5f86M@ig| ztrEaXyQYcIm5C>tzR}()Ewq6YRG^7BvfR!ua0lSZ$97+>dvY`T)=rehe)5+~F2oYf z&@7@AV3_`nHv2JJwV|>}I!~M4EHL;eotG9?j&FQ|AM;A*6&m^)Graa9pKtB_>p85qBaQha+@(pZH|N4vZF@2yx>;b-4Vl(HrmqnLJqn>Xz2n5HYM^d) zaX$4IFANk@smG|z4@c8PvJ2FTx)y&3k8oS!S>xL&C$zOhh#{141Bgu+W_sj9)>pRQ z4cNQlh0aIwlE-+ziAHdDXS$YmN(Qohm5%IYv8jKuzQ5TU>$qCv_qE`_U#p$+WQs&~ zL8k+`Hd4I&qT0pAI8{qTn#c)JLbzUE8q?vc{9iyJR%QLl41BcdYdj?C3Aw*qs}O2| zcL;)C)r{Kzc*@Kd|Grt{Aj^s<(HEo0MR`t}FCZ4Q-2>|C*V5O}*8Z8|=&KLpAhq>> zIA~4J&rgk; zW!v(Hkt>wx&Dp-onG2B5l{nh)sQvx4?*>Md>u{%`nH^koQq0O5_VE2^k92X)XSQg} ze4N1$^+8TS8Di%d;@)mDXRcDSXJ-(%w{YJVlJX<@^+8p?!!-t~^kKYX-kePC1pkbg zbju~(7p$(fy?H;NMRjZ&bOIAu@cq(xpxlV2k&ayQg9;=x8CmY03ZyOymz?p^H8Hr$ zi&DA6`U1CYAWU9#o9#nLn808EI>%9VHn}uJFiMXUk;z12xGPert{bFszpaNnogH3J zd=PKaPjE=s;!;4b7P|6#41Gq1>tJ~wFRAwK1;%0$Q2*m36e>4v3NPBCD_1s##ho`1 z+FQ;r@$VO|dVQ$m4)LX7o`blkD?2rfeH{M{+$cDpr{QGdY=ID(awK-k5I@`KWdG`1 zKBNcX_QWi$MFsTsCxG)aWR|;FDlqu zjm4oc`uqk0fjaw(-hU-TMvC6oyuO;P)Sm}EW!`J2wa880e{ z8Tu3HeV{JFM-=~tI8r0Y%(!SW@UL0HqiGb&N1jgqqvPnorvM}djX`2e_@*!+QpHF1 z|4ql8$|eH{YwNr_7IXZN=ifr7-0Xo6Y6O|Te0U^{84*Q+hXkFb5~FAg_u1cgE)$fnp36p?5ej7FKDLxPRb$Y2;h1IC}9t5g#I2?7B2$DHsFtpm^h6Y>D9 AHvj+t literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/android-icon-48x48.png b/client/dist/angular-material-template/assets/favicon/android-icon-48x48.png new file mode 100644 index 0000000000000000000000000000000000000000..571794ab17c7db840c0b35852d7c25ea450bc530 GIT binary patch literal 4494 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/android-icon-72x72.png b/client/dist/angular-material-template/assets/favicon/android-icon-72x72.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9cda5a77b819a709836a6a76a35efa850dc15a GIT binary patch literal 7088 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 U8SwrK0}PCeq@qN%m|@`m0zVbR=l}o! literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/apple-icon-120x120.png b/client/dist/angular-material-template/assets/favicon/apple-icon-120x120.png new file mode 100644 index 0000000000000000000000000000000000000000..17a78d9acde496cd1a33cc2a48cafacba883f286 GIT binary patch literal 13392 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/apple-icon-144x144.png b/client/dist/angular-material-template/assets/favicon/apple-icon-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..e8bdb1471b5ca38fe566cf10660be4df4eec4264 GIT binary patch literal 17055 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/apple-icon-152x152.png b/client/dist/angular-material-template/assets/favicon/apple-icon-152x152.png new file mode 100644 index 0000000000000000000000000000000000000000..88c69f6ed84b554f2f3bdac44d0da2c42b6bfb3a GIT binary patch literal 18212 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

(zVi0ZZt6jPzHjgzG2Wg(-`k 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 TX~GE;O90SP(^sv6TSxpCC~L!! literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/apple-icon-60x60.png b/client/dist/angular-material-template/assets/favicon/apple-icon-60x60.png new file mode 100644 index 0000000000000000000000000000000000000000..d1cac1f952d7e94c6168900fa67244f612bee460 GIT binary patch literal 5722 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%0AQztTSYf>L!j zCQ+S}Z3->Wac|1|rY!4n-GJTuj!*Q_7SRLC6eKV@jSe>EN%zP3|vX8Ak4@X6XL2DFdPp@>GSWUSaixnIEk}EJ;}piA-*3;)k~ap^ z>Z-LkAa=h@3?M^v03uc9I;sLX^lAhh$l4{jF1N)W)Wa=Q)5eFo+;hAKt18pD$;RKh zmti(XyIdFB3M-4kQSw8=<^8P|u0ws=6`oz3$-Bq}6S#c|q+ghUS8J0;E1CAZ{BK%r z^~l;Oiw!Ki7I-CkL~m1}(Ff6D5s!BWA>~a)*h+deFvZ1-X_uuq*S#ot@fN{OI&xl4 zIB+GA`Q~QniAC^6lid(~ZZ2Z34ag3mq`9>s!Hv|;&Ar~lm);z4s~;*?`p;!Rze<)j*>~wV!SxxW7MI@8Rbh2ltwwI+&fl7842co{?G4pto9evZfe3I z?KN&FXBrbUNieXAE)Ll^mk)jgey+q9?H~yZM}c#RZ^+J}xLNvd({5FUQGch$mn(jh z(N+;t^z|O!wFl>^If5aAk7Y9&U-T>XB|MMGPJCWvJ=iSR=CRsq8PJn_Q0V@Qt;8?^ zzlOde{mr(Sy?P>9{324DqR>rI{3uHk**NUT9N+sQK3=^S()%0n-YQoKs;p>0-nJ`L z6Y4{ppYcAPGizT@NQXxGJKGTompwHoCftbPH{b)e74&n9r>@vB(#IR-YT2D6+{-yo z#`=3&Fcd#@|G3Y6a9bzd7=A5PM#sZ-M5NtBhv0kuK3SfTPsmaz6>D@vlr(dfH>tWu z%-O@k4m+c54@C_=0x2zEe&4mvHEZ0f8AXud`zR&ukLG~K9r?dlghqrv*YAAo#}2*| z?{2`W{?cxYo6An|T`pGkyLiLvENzp3M-8`0<|veV3EW!JQr@7-`B!XYsBD>` zF$Aqpb#L6q`Lm;>pJR$bu~tRZogvHR!7ggTskU*=zAHng!_88siwJdx=9^plFH9z} zny>nC8NpwUJD(#c=P?lDo=!RiYNcnXO;vXklNoa{R5n$CR=nB~w~|8EV6Ie+_4g~) ze&00yBDu~#WDJf!^G@x>1Z-J|HgMz$SX6X$i3)RCe>0Qu|DDqv%$rT5Q}Ce75JWG@ z+p(C3qY|C2hzryN-HJ&Tq2b|5Ma$LrOcGSnhpp@IJ)qiEl0IHDkYM; z`uuEGXeWP=MEL9EA~PNLqwadq*2l?b>?p>n8vW|K=X58u8K5BIah8{_WI$?_Q>UlC zU#F)(we9DjTt>$Fks6=+`#CFhi<~??Ut_aXhZz#Q^u3$37?oq9bnWLEH>dwTy{8ak|IJE`26Z&((mp*N(6@_5nXbg~YiqtNDFMq;~r?$-?4{0ojO~JM`KM>mOmQ z(ZSiuQwx#ujaoY5DrtO{L7cUYd@3{vajKJFFGKeFbo^NmWCK2@DtcooFqG$@>C9Ko znKPE+;;aPL%$DFSAIW@kb@rq8+mPVm{SVTIb7BV+4G_r_b2$GEVw^XE;Ef-8wsQV{Z?#K@pEA zMbEDKSgpREm{=56*1ChiW+Mjac9()!N&fOBz8F_pm?by^OJOacNu2@t!kE=GlG*F+ zAQiSAXtg}?%?y1n_W70f&(ihM>>hXXv2U1pyN%~m-OZR^eIy-ow|4Noa36=z^In=E z&HLZXoMP#^6#5l?Lw#SwHzCW!j_#tguup%YjY+h5DMWR?19YWQV$s#RWuB5X!zChdZ}loHNV#%ywJMst(b0H~OICP98I^OiP$nbI;n#Oi|Mx)e3m#bYzti9W`rJe|3*E>*%u%p38eyf$Ko*z z|KaEVVN6i=zRv$brfS(q@ero}fM}!K9DIX39RUBGm9VF~lU%d0&j0eGZHPw!L|~#Y z5tulh=r>4f@DQs1@MC}qb^t&W6f#O=_wXv?|4T&rkoKDE#Fq P0HCg{qg1b8^X$I>bV>W_ literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/apple-icon-precomposed.png b/client/dist/angular-material-template/assets/favicon/apple-icon-precomposed.png new file mode 100644 index 0000000000000000000000000000000000000000..f63f71c1af1e08012389f32a3e805b23c3309079 GIT binary patch literal 23908 zcmV*7Kytr{P)Px#AY({UO#lFTCIA3{ga82g0001h=l}q9FaQARU;qF* zm;eA5aGbhPJOBUy24YJ`L;(K){{a7>y{D4^000SaNLh0L00VXa00VXbebs`@003I; zNklb>9bm?!9mOt+{7bWi4GxS9Nz)?`WU_kN~lf0>ot~iK1kMs0kY( zE5aH}^M}LXnUQ7LGuDhHd%~fStQb0|8B?N$<|2|ZNPr-Tg#ZXP(EC!|UHe|SZ@=wr z_ul#AzF%&YS(RH=W;Xg8@j9!2+q>_*bMD#C5qyY;hO4JOfk6gYZcfZJ;{QXg&6fc@ zDSovcs(&d3?>+w9a4f#^)!km|j|{xsUciq6E*yOkZ7f6eAi6ZxI@Rdpe>v0U1#PTn zEqIZ7E(pCZRU$RV|8eA+o&3B7i+Jf9yS?-eJj8A<;De6KCq79e5$()Gtt@}Mo$8;C zQ~h@`Z4PT=@s(t-9@^o0bgo|V{)cik_=ZUHTae{YLcH|#-M)kmG(MC74*~7WM7c3% znsNR&qnlsrF{X@d~ZQwkXAi5TrG6Z#6f4)u4Tp}l~7`w#Qz|NARx{f#$G zIIpm&gbZgOFaMhXsr%a6_>d{?#)lGM^XLN(0|$W-V7Pk-?67AU9LST(h>ojyu16?{ zKTwK+YRG|}626l6C4K+}C1rWCPuTxrRO;3{#f>bw9E z30rc@abfm6kC0!R3FQLzM$=$N1FOmez0OQq8WKuJMQ+2_P?joxyAlAF8b-B15e z2mD@M;cI!BJ9b?r(l|!A3|uIVi@;T!r04)`pamqr3Nf@oFC)5H&sLIrSE zWmsBVvmPxSvS8O-hQg_6XK{@CSsbA^aT4J@;8ox?;5?2Qex&guApzFd@g;7DKaShg zk1sop0i!sAzb`Cc5&T#(%TF~YIMkfS&vUGlM4seeUztPwB}%@B6sxw}O+a9owTj=@ zWqv!W@aH;2u&D=_0Jm|{;L5V&a`ATpFw4JiFNt9Pr-NVw%)4!0qTYoB?|p_-JuFUcA1kxQNBwz&?|4DsFPJy?{0v4FpoqTM6i|1e61B@$*}U zpeih%Q5~)tkN1pE(@HcOW`d95zFV*+P^|;u!uZoCN$CoQm`g@NMAxz$NZY z%!fhz1eTw}@;!w3HyAm^KFeSFz(g2F&wiQO@blD$pI`oRKky9jMc`+Fp9DS*JXX9{ z!TIpFqzWnl2lIr_G$%RSX@YhdL=-5O>d;dn@^|hQ3)}-M2@68-t_hg4a;ti*D6YMN zGwcuIHig4DDRBrVHQPAjnRexq==3_DeN-w;@)@wd1bhla8N?h`Ui(KsT}}S$-*4^M zH9u&4ASA#lQ61rSw?5ns_i5nsxSg)FQ|Gk6u*o=;wHRo(2(pX}fe=uOJO*nafhQ3H zHsJE#@HqjFh@2N?%(rF4td-1foe7ph;fVea@JXC)@F&2Z0&fAcI#&z-_2=g_no+Qy zDDG_;coHjq26z);+V)pZWa4jK-l<#tK=FZKfK}J?C{E4!98R|%!ZE~#jM|N$ONeLF zCZFp}QPml_1tGy#lAdzl@_eM+G2&m1VWIgcuT8@W{!B-U-l82s1f0Y<3ci4|6}}-n z{U`5DR%RdTZ+uZW+o@EXb`W?DVP60-2i$rvSH1Jtw+ygq*DvE9*o(kNfTw{ca8h7L zVSxb4h|M^jG#PHUu*P5jUkdsv0lj6Pz?+1Znf(RJ0 zaL`zB;6NpQ?4Q4Sa{j;iv3EZ)ROvj95#5XQfJ0dE(+KWxXX=*ye~o}Kh`&GiK<~qL zvF{jQ8R2(>SA960{wILHjPve959<5|LCNMklQuY#v@mJr79)g<_|_t-(aspY>!Hhp z$3)JvGUZK~^12CGuwuuJI_u1hzN(*pa#`VBayoGK9G3>|X*tgHw0<*g;iiEf^svYt1w5S&k-4#-6Vv z)ySi#>=W*w;d?)vl__8FI$TbD=I~HE?1eN4Dqhax0}X!ik@4~uj!l&M!c?wt8i{i( z{2azcz;ENpw{fW&dlvhG0amFy0ZzU72+pJPB2MowKa92X*_=o6n1Q%Mm}QIk1m#fC zR|yC`g%n~#$!^<0_ty_d%`-OTkj$CXYDavK+6ttw^n@8Fds{p`G|w}`^E^E~Cr%$c#e|IF|e5GT!}ntp@)>>AwOL~6~iZ0%yr{&a~oDbcim_D z7x<~8clhYwG>2;)YLUhhW+TME8pnZOz}in@`8U9?;WAVAOt5UvGQhH(zm6mLFW>@M z&*R*h4-FPjSn5_Yly>OpbTGzZ08a?&WuI#3p_F)-oBtw8!t$(2c~z&pWCCIX9Tq`k4X1RQk+g%!x*M3lQ?9_h9D2L*Y`Y$z!y@OD$~dBPu34WBV#@{JGfBY3 z`5FhJ4o9mkD!xYM7Nx*<*?&moq~E=ec*yR{H4plWhH9?x?kYcKAuLO|e2ddohgV0Uk&08WXVPpE_`t7ut|&B}o;Jzt!y zG8+fHG1bQgQ29Jo znhh`LAz;riz_Q&xz~$xt6i)4ViU$zT+6;Uwb(3+R)1;myWX0=|uc()NB4458gZKQb zhwfRA%ZwLQ!gqDV=-t5u?zd7P{_ zsrwn)7KX8M#6Q&u`MnFH{MxxA+-{ahv;xOZ60LA zfXm!GxZ7)kqT0*CGsyxkwr2>k3~Mby2qI50R1X=fhA8O>rCXu(AXq_c;ON2t*Nw*o z<0Hg28KBtRW38A?LW~tWH8@Xyn7Z={@Rg;R`F!*G5MR4;fVU=l&{lTO-Ob{z<6PHu z9Pv*A@or0jU9ka{>H9v8_&s=SUS1ldb7;yQ+@OXDUVcJCv-a&R}=CRP449Jd8_X``f^?IO5-ZT>>x` zs-EDw@PbI(#2~uFUacM>fwCwtI z?)5vC2*E)caySdP*~&Add>LVQmV1&VUyqoichSpdby?Guk-pMDbC zQwPsmH{C)AcXNktH#zeDI1}&Rq?5&{9pC^dEQyg^S*Y;lbT7{i&T_KWyzkdiKlt!_uq4{#t>9W9RJue z9D3misy+4M4U4A)vU(Vs-sYAP=0u2E_4*Z8WAOD_&wHDv^7#Z%Tr(RtO zeo29pV$oIDC1|nizbk)e2N$)0O}u-$k>Oq*J#mOA3@|$wpXe^((tMSPcEs;rIYcw_ zm`i+ev!&9^kK)v#Ch#p>XNrf0hteLs*!?9gp!FHxZ{Uc3PpLi25rzTvT7^orjPEHh z28=;ki-$#6+`d($23U*xjI~RinVohCnc_s2^$+8Y{@w~l4-ZqVlnT{rXVK0)ZnsLj zH(TR&t3+zHoPSis(Zb)r(MBI2H`0xJC-6Wez^dx4UYxh*FX2SruKM`zhk^b&M~{pU zhQW#ls|0w`UC><*TnI#=gDiK{>=+MhLXR((eFg`67#`~7`ppUAINj0vBZa-6uD=;{ z)u9eBi}Mc6j-LIpg$Jt+J*)v4u5$qVCpbUE<46@Hef6C<-`v;vmCAy^F8yVfZ-O_)l=O@=yw#9tHyhxXP_x z!c}kWT2k9)FmhmkQ>TtN9oj58AEj{dfxGD6fCvM;V@C-_hVZ1orYTvwL)`3;#i`38 z)tfl-+{G69`w%0;h`wI%HfGEk17YZM^28`3!+k}b(%$9(9BsUaqm_^2Xy<|AfvG@+ z`V-+QgMJQIu-@~aFK8zqgrK*l%J9elp6@Ltxk&+1h_y8l>lna4c9hDqXX*LaGbGIp z))-{qVf)J1&_ixUAGZd=5HWfX@%U-z?R8t$1|>ik2An)T%J6U>JKCV=!D0YMD{WlA z(hH+!zZ^d(HRwTmfrf$qJx;&tVGpD?+z&zseBYx~E>S8)2q}y72T)3&?j3^yC8&St zbCf^!9HuaerF3-zQf}5NcFl%F;6uH(j^VM+H!XyL&#^}iFf!DOk`k@;#=g9}P&iuo z3%IE_{|vbPpiZ{q46w}bJ%aP`e-@VrwdaZ7T1y!EjE)Y`-(N?{CC`Qcyk%B$8`zVa;p-%%=7o4VT>gV15Q19n33WBmH9V-lww0!pEd^* zFC8`po8aP}TRHAI`Rm@0QqbF5Wn{Py&);(uiT6T?qn)3}(NYNzJMA8Q5Jqr>>(TQC z90za9*DpkopZ)+Ax*FD6!ocU~k%J5l^sX=*7uT`pH_yA#Q?GDfq#u8oJ+n_x#nI3g za5S~!iINY(1{lE^F`r?JMz6KtDNC)C@%*FH92#u%!}Eh&pQzAI9-P_Ijs6}yI6!Z2 zb#X0SnwLcjl&xYhHF?=zcaoKA(oWN8Z%=iK^Wwmd1Q{i@~LY)d2EhaIpdFB9p(Hjmy`1#Hezcno~Ib-uT!b6Y$V+! z{!Q4SZk@}BJlB>y*RG>Paez}(x`*c}yk#P9yYy-;^z>9Xc%Tp8yZ>m`J&GrAH1#&n z8a?~vN!S^CV5hg!9|Qgtu6x6lY1CLjUp3{YKX#KBPE9dTOZnLsZ!kF@aq)HyV;-DN zB$cF6D-%WmS}${d-Xr*RKUnMRi-m;_)3a@w?Sxi4B~Dy-i751_lmn{ekb%B3J@t~a zH@10=U0Uz$S*`*-nEUpC(H(H|w{TX`@9xwOZ<_&%-9IQ6_(@#4!9y_L6RGrGS3l0-A# zh`D)Zj&m2rdH2FNx5wsbw$l}96>C9CLA4w(dZ33VPK|Kp)Ch+U_R>>}2>h+JzKtS} z-kvJeY6;)p?HZ^pquU+uMcnw;-^G`;pUxrUVHl{ zufBbg@yP~pl9Oe+ApU!evalEft#-=Q8#9beEO74p7|%a>nCG56%&{Z=TT+XJa6z$= zpGL6Q*o{st~uH*C%aBUX1r3P#{IJK;u$q8K4?q_kG95xIKSR=@_q#Wj)JlN#( z&)wmRFWlnnu{k`ol30A-P!2RoTBLwh;?atIGA)t9ZdqsU8iprM9O5G%d7R@X4iQD+ z;_JS2L+_+qn{=IeVwst1^ZGlt`N3<~c=O%cT)R0-qnV(MS(I*~NTpc&aPJulnbx%1 z8I5K_qm?jUs7~dQPZat^RC!~N5}K`q^A~P0Ha@f886d;LK_})rmQ7rQS-L)hOd9In5Zt?DgalZ3|%Ur!NL#v&-^2F7X zViv2~*SMXcdp=j-E0KG8VsM~Nty)?t z;@Q9Uz#xw1?f^G&DHB_g1lwT%AD8a%A}(`pQw^*vP>FI*jW+oFv$y%!V^f?MZO~gu z34OEfmz1>hR5CvO)HshFUf}I3z5MZOqkQk&Ff)yiTyNcbQYwYi>lKtIvCHmfcZXgL zA-crhxeb(HGGcI47VtS^<)J&64y?BD*fhzt6 zqq|B;>h&_EQn>QG`x6x$&Ako0g6lQ3rGkeoF+kz@sp5*-KaT75vLRRtfoB-1Cw%h6 zB%gU~j5CkSadfmvsV{XtM|PlJa)r5K}qqmYW*c)^FK$EY&Jj#`^8cDV_%`S=p zs@1Z~*j!fX==wR_O)OGEtDW)cTQ_;_om<=sfOkB_;KGh4MpW0BbFtQdH`$ zwk1t7k~H7RVB8rT4Sp9l;Xd2!4{VhIhHz~RA7hif`h~EhT5@}~%$^#}7k)FQOEJ=i!9`Vd&#|p8M@`33_W-ZK&j$Y`#JB(skO`Zchp!ZNzbAR^l)H|rP>qm$&Wsc5ODRz1edQ)(C#EV zB?)Rc8hj4dZt?bJe_&J8vMlA{G|ulo#3nsS0x(9<==gl&y#r`1c;?V7PaT|Nq^Aw3 zaIViBR}|;lyHob01tXZA4|(%SA8%al=hce?+?pz*_115!RLT*h5KEojR_XsjfYz2) zJLUZ4N!~bjn?^HU^zs01JZLE-JUWVZ_yBUS4@wcr^YE1<^gVpfTWqN7T6n6(B6?K{ z5uU=URp{ItqjPHv9jAywGFc0aX3QJsZZp_l;lNOxN;z0}K!;O-B=uT_QuM%!tQJu! z1sp#*!e9K!=jp9ic=fHz{QAH9F0FRV4%r_HM}wcm1;%c}=29d!yIo408|o=sYm+T^ zZqAM1rOShyAFK1J$0nF+kMYqX(+pQ)%6^W@?UEW4EGgv12wE+l@!5#Cul4fPA0FnF z3xnLAE^Wk?To(eTCMcy?9`jw@TT=)~)0`_erg`t;1UK)@VJ$0mG!X{)gZ+e0oJ922 zG1el5AW)Jh2=J6#VzOme^v-x5(ZM17o*I6wf^K(6CTFpQE-j@X%M3T~%<{LyQpeE;1crWZn5v0KKrh~HC4C0A_s-5TKK5&$+7vyn zMU0O0P_6oFrb}4sa-6EQ5~Y$;@$MIq-X2^7;b)#a&X>OMJUxXCaPUAMpa1mJG+QyR zym6_xj%`bVt~c^Y9BrNl;*EZJ!}S1#`cnZujhn(U@#!^9ug*2C3pQ!NFmk;qLuOH<6tvWM}kSyQ2>(g3`@)Ui2H7b?6(<@fz zz~#ARp&4`a<_y!b?G@RcLP}Jvj2iAo4E19@53ndD3*uLsd*D*wRZ3Kj9VR+Bgbe(Z z3@TuHw$0U>Gb}V?@_c=w7PvNzrBX<_6t1Xt+bLKJS*}q^^62pcJpc3w9)I)@Vc<5X zo_d*2ec}n8dGZ+5A|9djwg<)t94$VLqs_`@ie@%b5aZ!;{eJ>Cmv=|tR1Zt&8Je-r zAHF@xH_sp7#(ae=myY;j0R|>!O1yl2kng@T!i~uap0p^r^$0L@gG3%fgMHL%cWZQF zS+5^(ZqLc-Ci4q1X|{aWp+)!}{_p^@zXuz5AVCRGFIdYRKFNBP1}Jj1h39ivt&EvkoM z;B)%qAzu8*X+HYwNe&+xpj-}%ySHsTilfaDHlf*UMg{7@$}3tkEP-)5UWOAxN{F8@J~;IO2@q zdm#*bDy5KFDahC%QxuDml3KOI$DTjMPk!bZKK{aK4vzG#bt!!M6K6Ou+{-t<^A_Lw z-rKzM-i@7*1id)gd;*syF};y5-IoEDiIZcvsPE85zPA-PgVS<(vdW)b9^xlXjniL^ zQ7JTMeJ)7mT?#(*y-{@hs z>2|nnsXaK|uY#dJk9ji7d5)NaVr58mtyo-~@5>+fU1JPtK+gz(lx+Zrs}vPI(KXrDpYut64Lh;;{jcC(~lEE8MY)WRp|Qx;lTg5^?D82uF?`Mk}A$wk7hR8bILPzm6gdeU2U)0T)Z;Yy?a}^O(h(S9>>w_eZ4^&VSsLXisLvt;DKjQNnuGd$%U~xUwQKouUzlv z)vNtXHll5v+_l#c95N|qvL;V-<~iAzVbHG;l|ods%16G22+-QN-2T-J;QNR$EEr%} z3}L5IE~P;F9@6(+bJAsQOk*usrZ=WXD@oOtoKYD{rPL*SQ%AgSd}gg=qsm&>4Vz_} z3m2~Q(o1ji)YFgB-`9i91=?65&l359;2uM@$0p`@``zpO*$>|1`mL!Ao_+nhgrm{p zIGVkP^CPZ{dosW>*XIkky#I%mK4^hV3tqj}4_CLJx@&PEgQRPyh7P$o{un=Jz4IZeyuK3_doPYJ9V@3a*ZJ>wSinCj2o1<*j3Kj?HF~7Flk2KZo4$;RqB_Nf>P*jsNUBq zh4Fkhu&+qG9Tb`$Q!yO`cdVjqyiK`mwKg=H9p>j-wAvjy?U+2vdFHvtIdbFxt;}g{ zC22{LoR?p_#Bcp?-{;jgE;Bj3fH9`%g0W)^FoL7mLEHeob#=r0-LX23n~w01`n5kO z9MlPClLbcF4Z`Mh@qNCwHy+M%Ld*p!-`q}3#G`XRtr%|7Ou{285eFkOqxS( z7GE~TqK$Ft(Ka5i?!;vCO{~@|=SXW^q`6iLDMdc_bLW^s1?qBSxAFTCne%DU;SCee zw1P3KHoWh+#=#P$By)33UVGyrt#(Whg&aIML|Z5#Pk_m}c71|x|Jgfy<4@lr%k|=S zcNk?H%^nA?0CVeo@P21L20YI;lHT?L6qYmb0-tV9QOPrql4|5}urH#g603=6|w@mhRLB^&L+eiwug#Bs{`^EbJ2`6i9IdD2XiSs0sc@dtnM8n3^7 zrDzHBK${d*aI|~uULRVQ0SW{75O9`<;QD+J$PtvR;p6E7&&2ceByFTIltYifT1YkY zmx5I5)jh64Uyn;X3qx-OAqpWdNlJ3*dlQVS2CNQfa z&`;VGH&Nfq;yN{FzV?#b)2TrI73%o}fB*#g}K9++z;ZvPyjwekr z?b4EaN&y4a(6t~mPR&uqAnY2E;8mnjDftZbR~hK5Fge{K%en)x1vbk`Z;c~s6}*97 zL=>QfAj>tm)<`Kg7ZVU*vYdEwhR*E?(&@Ryb9GUQdc zQa8~{ESUjR%07>s9Agl-os~VHy3HjH4%d0?=8zafP}X^qS?*2*O5zI0M%e2xxp+HBc@EJa_gG)3a^Hry8VbzC!QT3r*4+ zV+2u%Iyj7|mdUh6q$$=~0{m?(8AT zr2xADEz2_+PiIKXx(pLxIU;giPziUe;!P7QU)rY7Xta6rt&3=FXm=8{Hak@gc|Qmo z?T+ARd5krfU_AziaFMi4HM-hMkibY5b1Z2htOhBFe8&Kla8=(QYf*WI)JvThx*u3g zB*sD*c$|D>klSMm+_*K%_1kmANw%oom^8!A&Lghg25sTsAfgnKdR>>O!1KEE#+G}L z9O3IYA)9N^x_pD?<(uS6;Zq zSU#!}&KaM#Ot58xSR2FaTyr-_po;@ITAsrV<6eRF7@(^^?TYVzJLu}NRjVmwDKbg1 z#uE98p0ZCl^j!CbD0qr;o)5?81|_o8SEM8fiz%s47?LM+Mt?IARRqvf~R1Os%ZJMKdU5R|OutZs8C zUur871&Vsf$5&!yDuECPV-RVI&?{Yx-3jpPxz-2!%RGK^nDdt>NK#jr(rs^uwb(Sn zCK*|lIp<5I1ipt11M*shyi#^G$Z>*cw9uWHyxAt5T_Bm7#dP!jyFPpC{QkW?B~G6h z;_;Ki4EAp_JfjUF%eh}Mi~{Pya8zoJ%bY95ql0*8gQa&6BRE=K(?xa{11uYFdJ>mk zy|18wlGQwuE^s7|7dN`dS5(8o@Ll%soiS;VS%%2hwgBup91!@5;lV1;J$aZo$vJm^ zj5x`cQXh&avQ1KwD>t2_Q3_QnVS4LiwW@QK&NtB0bLe*L3g5fMF3aqM?r)YNpHs(& zc<#x=3=dWbe8r|}Nwjv7ZUfa|0yrvjo>3{|R?)Kik^zQrv>dJF30hAAlz>OrCv$z5 z!wNxQ3-le9b8 z-RgC5Qfmyl(Lr}o#Dq&zacLCyZWv`Plp>Euj}P&&=Z^C1*-^@+U_*NUic2xZG5Q7= zzye1_&NDLMJ4BdG&&Syl=)uwQnz5|47$Cq+?5^|R=LqjOs#Y^-Qc6jT%yZWo+*3rp z!dL6GcP?yz)e_)-=(a=Yt(SQ6^Z^3j7yJYHsU2Kk0TYcsN?_ z$I*7W`pwm-;s#uAtL4dVVc2FI*D+q6lWT+W6qU#$^zYf*92v*X5MG7FX3qDp0j-4t z!!`PP+*Fs|dWl!xQcTV?X|>ZL>@QXg$6Gt{Y?uAV^AweGz)*jc=bt*v3(p+k@PQt} zP;Gfy3|d2)vC#~@5{6NsIU;hd36FWZ50xNC%fmR@UXdNT76a6Z5AUnpzq?}{(g|nM zCXv+`1fCRBLyyQ`fA6Tfj-bz=FI5>eB$|IJaV{?Y9-uoH|TYLKg$qFjMzxfpg<%nr)9=P<1<$< zz&`T{c{rM`u>l6CvyUY}&EyQ~6u(d(WD)%h)?)x65P6Q8oJ2MncfH+BXTIMf?-FGg zD59`TDe?(?#nI6|ZjCRS5!Osd64xZQn?~XLiZJj9L!WvzT$&L!(!=p1{hWAYz(sny zUa2iIfCY$SM6(InY)AqCcvyyorbleMbHi?-D*^86V*Y_+0N)rQlP@|tWf1@i)=Rl{ zP5x1{v&dF!#ak9<=x&DIx&&H^e4c##04I+PGBela#_c(7jm{>c}0uy?cEn^!Dx-`#E5ohMPTjT5Q{F+X#W|&U2KX0 zdf105(BcIdO{g`}I+v&bJSp!VEXs2i2e1aj60?|X?6}~f#=`?udg~F7og5;|4aOLZ zwu^PeQV67S-6MQY68MV1_jWE%UO2-$ZL|nF@us;+0X@P}-l1MhyMV3=)U(zbtFf;o zfU*|PXt)0tDYr_x?gaNGWTTyt*p2AgjoScgp=)RQz9a|&mW2jZB+zvY-)_ud^|4(D z90O#H7I|mGZ8Mkdsj&12LwVypXZIR5B?0!O5!{6^2B|gL7IU^Ft|g(kKL^-cW77-~ zEo)=YjfQOlJ4MJ_zbRm~CZBJhx55BGuh1U^32@gei?w8I4OdIKFC_rRI0MgGqy(?4 z&TQn_Wf?Y(oqxVt*uJ9w!aj!9=!FGrr?cs=dRTfelnM#35ATPMqv?Ayz_K)mDw}JZ zyXz2uXF(W?F)r0t34y0J-Z|Q)DYV-wBEq}Ad+*fE(FPg~*rWvLcG0UAHo*3qJnjl4 zj;5p4)nSW7Uc4c2-16|oi0l9sACff$)-0w6C@Eb({*7jM#xb(lbQM#}ipG~*q5Bj9 zFdDD1fQ&aU0bKuaO9@Np`bq3Z1Qe4dmNUWXUEX79MBToEhoz555z$ zS3I)OhZQsyC{0Zuvus7z1iMXd(5^#((m9p6S;BS^>(~Mlfl=hSIH@$ShqU0}X}ie4jpf3y3TynwiFLZLK;> z105@9Az9g(XkWp@(fFDS&>eucZzVv2#7K!$vatKCV}K13u9}?0zj_6cBrEQWwV*d4 zN%k77ajhH0)HI^m+SGU5<^oMCX(Q14^(Hv@I2vDkx~nC?zGVO?3|1js!MP9^Ysrl* z2EuKi03?o)3k~NEUG{Nf?Y@5SX(y#KJCAL(H=XhgPP#5wN!#xHT(O4?k5#kn){+4G zP6b*4DHmHDx*QsdHXHQfxT$Tfvs<>(6>3Zo+1>5y+XB-07M<}aOt$Gk>VT5~vsTi! z`|;{m;Dapz0JIe3o?J9yEsz<5-bnt75Lm6T^YbeLM#i$~%BwwrqP4Y|UqFvfV6%Kn z#;>+8horSH*?$G@DFM3JkB@p0nN%dwqq|vIYss|TSlz4uk!Q&1DP(hHYP7L-Qy!(g z1aDy;e|#K~XIu3C2<8eE=!1skS7dRMc{ke*a!(SJ|(f4R;0kCnan6q-f%YY0=)AoX5+N7bCXj%mmY-9&hb94A(cM!`A z$Hm;D{lEkQWRenGy^5Ng+{)Jxz)j=vx(=ANvS^I8uW?Ta(EY#)D|x>`SxX`%=c6iP z{?c6Gc9JvON}UwgfF2x--Jx{;ePj}^NR2l8BrU=UkV#DS$`zui$qi4ySq=kSvK}v+ zkPZ^H=db$Sw*z$PF+EOhC5#gkinw9A@? z#y|`9X9ctXG6WMMU^a-zg8-x;%MI-$r=7Zvaox|l!`^kM#ypkrF;_scOy|+olI#06 zi`#Xi%?`=>Bm*2z03N9F*%f@Hk?&}OtaJ1aQ(e{c4xhwL1Zol&@ zjGp~+3z)@C+1s~Pj{)ZVknvK5fh@-}8EI~4bTUf5q8xgp2oftu5M;QBrzzU0=oIp{ zCZ2ENbyC7&rj;>}7xndf*)2Xdxxn<5J50AUk@1nnL*XXNc-SH-#u5tS%A{6&+tNnz ziVnH5$(g}>6dFgJ%Z3@%t$U8 zpUc)~%y`UMNuzN4&1IT$qsr&5&G7Vrd4@*@fF(P?SoUOnY*)>{F+R&5pP%Ht`3gE2 zqDKpA!cfD~D+~u@&IyrmQf3^K`mP$-rj@*GLatbU&t2mdkl|>0Vf7p9F~9`-G#&s; zL^&=4-U})`UanD7g;zs`ylX2=XBEbb;*M2JT90|-lD%RCu@$terP4H%-@HWsp%D%o z9Ksg)K;1NJDaB$7p}hhj+%7*hImas(Zgai^xs51m*W)w7Qo+(A4MQU5pwJwU+Wi%p z5uxb-Z|abDjlbyo-{;71G`(R4m}DOt!de2 zWo~#i&Zu2nk_JnF2ULaOn9O-hI*HJ*lDBohZL7#}eS!8lavV+nXh?uA6qbfid^70d z`+g6?S~4MNOGRuYhV@k#Aq07@nVg*E*3EGy$EO(@8Nl~_ES6kbaw%AEC(+X|Y6Z>Z}T z+lw~N7Ll__1{mi9AOXNVK!rtZf%>`w?=D=t!Np5A@dFHQ-A{fm({8HlXbB$@`+d;H(QLc1X;9_7J$w*Z37E3 zK>4aDt+W_zisJe%dx&CCo?PL+baM&Z=fU+hYHP!L+UJ7tNs7Y%53wdJO9t>5>$vsT zV}Ne{^muU`W}gksco>ja+CuS`U!&eD>F@8QR*LXEmpzjU!CY^RyuSx8^j*(VEK;l` z8wAEm>?&PK2!jw7B?PTF<-+Z0zCWjVSNp^toK%Gefo|}tyNR!f`}F}G!-zq=q=b#wjw-ka>n@ay*kG^9)kG;^@AwbiVj`(i9V?kY@R3^z_uIRcrWuh?IiB zmqdYF9I)4gluoT#uMk%$H`lleV<;xdyFC9e^f`9yAfuy0L{U)K6dz&@SRBp1gQMYf zalbp*&7(fYuDV25k51nkylAZ@iXt9=;!zGB8bJs_5J)^>s=uR!*hrs2Bei=d_ zghWaY>3K-ccYmdakX@JI?&-kB7@|_hnX{)D9X)^$P>K|uC(*h~2TSXd6688_i=`Aq zp(F_8VhbPNa}4EXeJ>H!p+m!*Idhz-6fCAb?*?4DxIoC_8L8qqspZdSS8y3ev#opS z|FE%XFfHI^;1j?nAKE1dfs!7|^H8d|sa-$1$uUNwwZ`N*)|wSN?Zbk#7T@z38XBTj zt0JYKR8n}JAW8IHf=UWe=5Vh=6$&v-7UVg80%rJK^cSfmsBEw#TZSVXXq@$*djjrfOewZ z-X0DeK0u{hL3tjYvV@^RNrBdPcaM{D{mJ!0I2EW`@$fu>G2r`>D0FJkayswrt#ahZ z2tz}COij&^Z=~_>)*g~uo0NEdfKnbp78SzQz3vAAp6?Fj`HOamF&d+_`)drg_twrk$nI>e!7^7WriqSi|Q!eeq!#w`@NrEs$U z?>S;M+TL|eDczda)7pf9C{jexz01&pz^A{z&hg`;jE~PSF)_1a*S544flwY2x6^xJ zL=Z$MFL3G&0wD!{5aRn?Ch(UwsulOkV6-OBb99yxcUpAX4bo1VJkJ)HWe1*7ilfmh zIGVjLHZu^ft5+Rj8w?<&!Vf}%sN#0~q6*boizzCnTv5};ZibT>X4$SP@coD&C>O=+ zDM`D5&a)j?7Y-gA;jzaaC5l3PCB3ewb&YwlKomKnj@S&A{1C<-}q<~TQQj59ty z?XG->B%Kff<@toA8lG2dN(h8>>P{F%1YwBh`v{>BQY>ynYyX}^c><{vHV6nyWvV^> zGg*QUs6Gj!RF=(SnlQu@{Z4rwQ0?$*_d+PM{ z_aTIb?@P)h4=Gu6TP~+@*Fr_0)b@=-V=Sdo$YYNk`kIKQ+0klR#LhGGt^n5CBf87|jcUTT|vtTSi-hO4kD9A}?Yw{_I7WRN?W{0m~jN z!hXMu&0dCg#DW_5k_WsE%ffz8(RqQs^;Isx#gLN~7dzZAJzn-zL)I{5yHDg9X<8yOk(P*m#yZDOC>M2vSW!b$O3 zSy)+ioU6(Owbp16?l zlR7|7ZI?UPgtL|IpQphL-#K)Vmdj`YcJJ$$F0Z&n8SQ1%djFA{HivNGeVXAX(Y(7z ztAsEuD<++#Q*Mf_Ry$c|8ZGJ2shwJsyF$yidlt_tx^fChd^_eE{yZ&``n)?@1CQTbC#r|7_UhwV`rDq~p|2ozGMi)*n= z7Mmi`kKGdw>&~=%0x)Ct+x@wQe$(1I`ZDgf{w*G56UM)jJ{q|%tdiO_qD4MecnQ&! zs5U!>mHrT(_fK7JwdR2ka4OYPFVNA)f+L~(_UrmTayyP)}S-^Ony?wNuX<94vnUEhhbSF6DQlfMp zhbgDfsIV0`6v5ca`W_7VYU5Wgu&eHa5m)#nz3s9RyBuD70OcH9e zW5rMBJWzM@CR$+zCAh#&wEL|dno+8x*X8UM8R=>fissQAT1HU2Ugh)n8PgmQs|8~0 zVW&=8L_JRuX!S)~3eoKa~AZC{n}LGT#!~6qWY-xX|A{QQt6dQ zHhc>kGFlYnoU`XN_T|F?T`%eU^THyOsr@IJhDScfQu+GrYXzM;^WcAwVxUxqn{em2 ztjHq_!%c>u<$-_nGJ|2@`qw2!>n*IgK@ZSejL*1%*Q3oPna@2R-LAh$pI(4Iz7<$p z9=zf?&&sStx2vYlAv(CqX_&#~9^3tGYfJ5D%hOF_oRl&cs-{UrjkB%F`5UW+#_2NZ z3uEU#zVE(gD?Uhidw94)b19Y)psB8%Cr~>*H88e3r!+gy(hAAD)O+>rA||z%U6`ZS z-obXCHAhrsRBFZg(Rz+6=za>_==M8(1|~}&?4d2Pc<>ig7=IO)Wi|x3WSnW^E1}K! zeZq>c^ofZwxr3E2xvN2<%H}Uw-Cy_Grr`>ejF|50)9Nxlc$XU=q%0ik+a-U!MM2I% zq$CWO=TNnul3i@}CClS-ecH*TF%MzI9_;;;3Kgt6nM=2yrY+d3`0lj7jIz9L^@2!4 z_bKrdR~yM}3yaug~q-^!KCt-s&N(g~V;<^@)+(9m4yjJX2Hh z!R&P#?KZiVIbt3Z|8;HO?d9HluzBFxmKztBdOQI-GWCnM4 zd39*vfc4J1sYDHW_K+JDbeA`tNcTaZz$sBAu>PU`5nH>nHlKh2VW@=N$?q5WN@v_@ ziOc)+Z_^3~a}MpZ6kFkR$DtK>OKkO?c&=}nGi-H$2gaA{Qxa64v9r^~;%r#FVYWIwUrI4fwg3uv&-+-|A%PjTQz~(!*lexPa*(5I7RCUlM374(VWK5TE@hpv0a zint*lnt#OqM{2<;Kg?A^@{2GQfa#Qg{iWNz_c*qBfWg6wDnK7YkKp0{leGSnF)v3r z2-;46tM641$^i6^1p!-FJeW3^wq>(SKvfwPefktTs&PP#RX<`8GUKl7>0!VhDGu}+ z4~Tt5>9ap)sR+miW|>TQ^NY*L6s8x;p=fKYBicV+MzX91r2;C#)3Xwxg1musAJl`Lk`$ znSFsu7h609qb%3fEDKH30nAvuawR3YlOPfq`I}26gprTBnPj@mZ%8mR%>!CAfJAJ3 zJ0QD|YY0N6nkM$cKHF|bNf=4Y@?A(}CVpxrPeUe@5XAiq8Hi_SxX#CH`(is+^ic&6 z`Q7SB<4^cBckUpZTN(4ss#+=f7o#@g)2MUF(7wvC;kMXd#9TOAL5XSL!lYAVZ&Euq z{%Fi#d|PR`6~~L@7tN)mOA7B{)NJzuL7i(IYq}h3a8ko2^Rw3MBnjDGVt8zF`B-)Y z;^;-ro?BEB}iAS|C3n&Bhw!$qw)>vDEw`Ckj?%}WmCqyUz5Oqn0fRQ-nX>7!S z=V(4b*=mAhVm31NG>pwkpuJ(8m-dMD&lQf6Os@?Xfu@HCh77*a|NO`AZHBoVs+AqG zZykyN2awHx$L)kude<5~P=gZ6EAHu8INx;M23pX~ZNmM>Au}PbpOlj=9AWz_sUoHq zpq1tBNV!~hXvL(cLL9RQ$NE&_I?$-;b*J07EUzDWoZ+#L_s-@FHa96Mq~=b(-TP6| ztX7f*Jg>E{_w2XaklOa}?=t`Z0J`fU*G@NcfS2rdq#${gj9)0HCXOCYp9W>7p7-H* zKobkjtC;t;*S!xERRc+JIH(5G$(*Qh;1Re(bN7UYoX>AJKNxc8gvYT_d1xZur9;hj#A-qQhk|OrsGPnis`EOA_R97 zarWS7#pYs{+)2bQW_FZSeplTZb}L$i)V3WY3X0$%ePS~y~g%-^~` zJUkq{g1NUGwsiyldD6{h3|0CVj#9zCSuxvWD557xp>R??~4h~)%S``qz*AGg_K;sKoHaE)yX$wq}n?%j=pm zarY!iazNc?qUiQ!}nUlVV5Lh$fcJ9)?~?L9`#E3$c@I6SYbG>)LGp5hZm#H zE8mgHkR;FM=KH0djk>hn3Jw&v=hdpR58(9U1L&fZ@Q0LifacfneH-oKY~aVmQ=I1F zd#kOt)JjM7^T*Sa2=26H zB|cND{AI4cf6K*WX49z$BwXl!QKp~{;8IfLcfK}L|K4-+L~3VUIn43SQzx>=oUM1O zO5mo09pa+>^QcCP>LJx*i7K!`NA^~^uvb^ck-#mnl#0$;dkKri zyqc*&Sh?}K6_Cviv0#Fw!C$X0+Fi>c{#sUPCm*Wmb5%Qb2W5-dKx9;9X|y=dGw{96 zm~k_wGE%gp@ruoa-0_rk@XrxmT2;ZwtcbPes*!K**_f_Lp3$#K_FB38_4f?T>RvQz z)-1D^x-Oz2iVR}qIK8|e8B+Lq!>+-J)TAIpm-M-_Odv5wUpv*1<64B+IQ`bg8-(p0 zTi+e*cd07K~<7Qt%0YkFmRY{{(b>G+t zp&J#>TB4~tr_|b7H7pj5Hg`C=%IxbIbMFtX(ivuC1pVC=)?Si%vcnDvW_5h!QCL%R z2ZIp=%Tf3a*XymHqtQ_N`dda>S)O<7)~d8^E??(+FaZ~z_{=3kTba@X!Z7qzd@i2_ zk={SwXZa3&(=3k886d{x3jVQCTkUbH|2fs@r@4f>u;aOmI9=AnSp80UwXDfdIhcRe z6yms@DN!@`(cIT`9z5?-*Cq2CdAF)kA}T2hd^DM4Q&3na0pEr2jF>vQ0Q51W=)R!O@_f5jroV=T zt130d12FDJ1R!&3w@>=H5E`fG92F14f7T5)xA*;G(m*~HH@3$V_S`ebbr#8;_cMAW zaJ?R*Hgaq??p|Yq?DDFXw=qM{u)RWt3E=FfUrzQ>HVZb+u_g37E>-?zrCy~mS(F~u zNmtn@bfVZk$gS+H-t9cy*2iGpc+1)I*UYUF+0-9ip4KuUD3^F9wf)e7aKoJX*;Nx+musHYZahdO30 zO?_SSlF{Ho`ew=j#9qj8gGIxqZ=)Ehs_qtl{IylTb-f9=(Rt93D1m ze2G&TTa>pXx4v!zWHZ3mm13n*Q)?=$ip2tUn91m1cIa_#D>^i)xK8*@zG{7ic!$P< zgrwqZ?j5#VUxwQ_&Z6oKP~iZ69DGP-0e1gM(!5ZIbfcO-HAK1E+;0KTcK%LXCrjoQ z>+TxIG8!yv=jux&q1Z~ihOs6xnzBZDZTB-#OPqZwI{Aaa5RJgYsY4soGD`|B@9==CyIQy42mxpzmfq@3i}Mr@wd zDRU$84uRp<xTXG; zuoU_7xA@&@=*6bJSI2fkQWcG zRC9NEj#bi*NmU7_(hOX+%lqy#3{X`zn1?JLTv+xB^V60L1=MKojB3;7g9}#+DIZSl z0w4CEJtm1;iH^N#RCZ6TU(DV}L%67yqhu8tDTK}PFK{HkY`i$d#~n|8(ePi4*mRlT zh$57`Tr@~)oiEuXHVx8i9+6rIYwT4mjcaz#a3@uJoi7;g5_j7Hwr+L>B~QYZ73{{* zVs}hv6ZWGMdkhPHqU zO3F&T$1mRqmYxrjua*>jCv{~XEPf*QGW5BC5OKB->}KBr-CH~(&jcq{TDLi4`O=oG zIUXH(kQ$yRR`A)@x4w+T_dcWFs7K*AC&r**vc}nX+k&DK@~T~|5mW|Ba3B*QE>li3 z%?%l^Q&qtTkNlu)a?qRRxB|fv#ZUx3d^d1<*H501s#@QXf)6zaUMV_!6tmTDz_dR^ zg7bs@Bj}K$Bz{vBe@~Uu=jd;7%GeLavbV#>7rKiNnuJ6i@BI#s__gJt2kq9Fk8*eY zD61%$T<{Si2M2IV^TJ;F{z{o_Vo0(E)^QaU1*h`Hm9wv4V(6?7in6Kser zN*=qtpWNjqFy%lWY}Hx^Fn~Jq!)W6l@=gZzAQ`jNOkWpq{wh{ZDS*nf@d z>E}$Mvav+ZT7O`33-yE}21#2)v*4d%^=oI1`bbKEL<`=jt#?)PI8GW$RPBhlv-!kD zq*n!tpHks5Uml&dWFoVgANMdCTil4d^^k{|{Oo-+?Xi!y z-v@rk!f@!J18x?NQ|YN8oh4WY5akZluE1l?VwPr~Bo`Wv@MN~NAqK0hn z-1Ycl&TqT=sWi))FY4HTu)$evPH#1g`vl(HH~d9x*KV zXS&?RJfkHYpPngg&2k&Dm2C|)4`~R9`S)y2?*YpHMgI{sbz23`bj*ELo#9`0k$_ay z9(+OR@wCzWMG`N(VcJ0BiPsxU+pZTmq&2@&WD9ydKx)1%LQ*4WFSWG}rAQJ#x6i}G zbxk~tmV_wspfGj3!HQ~g(M4FW-5HiffvqUtrquW%ZW0K{nLPUN}QF78~xG!zblaqd{~BHrmnS95J9l1`_x7 zRW}nzI@&$`LNE)@`nA?}P8y8>pY;Lm4*UD^Pb2zi3@(QRp45s=i?asf^m?sm0}XgHUZ{^3dbGNx1K6VO`C{!NhStw2#(toaqYtMp#uIGsrcZvC zt&KPy*Ze_T-4@mexY5LQk*_hB@Qtu*62GStRB~ukqalPmQbu-qC4iBr?#Wc;8XZ<$OcTBxM@Tmr8dIgLs5vt0oh~iNiFm z$L8@ol;4K*N!k08FXGYGw8t=(cP`Prx&t^4zdFQwT&LJlkr}#LCbf`VQ57sfO;UF(ULgb zmXNl@c{6O*9zy#m3O8GXD+u&G@bew%fHp|w08wU?#3|X7o%G-k`DttZ#rG!7(yd!d zW9;PSWtWD9vYadfwdu{;-9UjZbFmskp5;B(@lDp0ckv&RnHeu@G<+;s=t)jnsJ{8? zQfhog^2g5#_1_5av1!zpzfU$9{3iRz$6}{=XuBokcA`}GK7MB}bn8}Z6{zgA{0>%f zKj+yZsITLRgvVxzx{P4l4PT8!l$REl;a4WgvI5@OlDs`rk=$WakGffRhbHPO-zeWN zF`aiu5(Bub$Kbn_cSj-=8uYt5Vrq|WghidsT5-f&>?|4an71z~Sw0vX_mcFx`GAkY z7K7jaRrczGBrK&Wr<}3EM}j7vNjynQ>Y?@w)vmViyh5!b;N>fE1(lG1yAgoVtG;zZ zY7_C7Y7=gVS(aTL<}0|2Nq#(RKPQLb$IZ@gHpk0bS|O{y&|e-1bK;?Rs4>iDDl@;Z1C=f%^_E5+;xms}JPw($2eZEp-7{v9BCvbM^Lh13xw#~hPb8F`Sjw2G{fimbdCFTX3N)AsP)+WT z`d^s;=u}bh_5gc%hfo1zly30pJfvXQ|4YvQ!PtP^L%jcmd{1Xupg<^mlK-p96zt~_ z0uAt>`cJQ<0w7+RAFR#(mmE_N1w{prmz4*|D^d#EFWOoPgyFyBSb-xwsHAmtaw;^o zC{U0P8_MpoKGS;Px#AY({UO#lFTCIA3{ga82g0001h=l}q9FaQARU;qF* zm;eA5aGbhPJOBUy24YJ`L;(K){{a7>y{D4^000SaNLh0L00VXa00VXbebs`@003I; zNklb>9bm?!9mOt+{7bWi4GxS9Nz)?`WU_kN~lf0>ot~iK1kMs0kY( zE5aH}^M}LXnUQ7LGuDhHd%~fStQb0|8B?N$<|2|ZNPr-Tg#ZXP(EC!|UHe|SZ@=wr z_ul#AzF%&YS(RH=W;Xg8@j9!2+q>_*bMD#C5qyY;hO4JOfk6gYZcfZJ;{QXg&6fc@ zDSovcs(&d3?>+w9a4f#^)!km|j|{xsUciq6E*yOkZ7f6eAi6ZxI@Rdpe>v0U1#PTn zEqIZ7E(pCZRU$RV|8eA+o&3B7i+Jf9yS?-eJj8A<;De6KCq79e5$()Gtt@}Mo$8;C zQ~h@`Z4PT=@s(t-9@^o0bgo|V{)cik_=ZUHTae{YLcH|#-M)kmG(MC74*~7WM7c3% znsNR&qnlsrF{X@d~ZQwkXAi5TrG6Z#6f4)u4Tp}l~7`w#Qz|NARx{f#$G zIIpm&gbZgOFaMhXsr%a6_>d{?#)lGM^XLN(0|$W-V7Pk-?67AU9LST(h>ojyu16?{ zKTwK+YRG|}626l6C4K+}C1rWCPuTxrRO;3{#f>bw9E z30rc@abfm6kC0!R3FQLzM$=$N1FOmez0OQq8WKuJMQ+2_P?joxyAlAF8b-B15e z2mD@M;cI!BJ9b?r(l|!A3|uIVi@;T!r04)`pamqr3Nf@oFC)5H&sLIrSE zWmsBVvmPxSvS8O-hQg_6XK{@CSsbA^aT4J@;8ox?;5?2Qex&guApzFd@g;7DKaShg zk1sop0i!sAzb`Cc5&T#(%TF~YIMkfS&vUGlM4seeUztPwB}%@B6sxw}O+a9owTj=@ zWqv!W@aH;2u&D=_0Jm|{;L5V&a`ATpFw4JiFNt9Pr-NVw%)4!0qTYoB?|p_-JuFUcA1kxQNBwz&?|4DsFPJy?{0v4FpoqTM6i|1e61B@$*}U zpeih%Q5~)tkN1pE(@HcOW`d95zFV*+P^|;u!uZoCN$CoQm`g@NMAxz$NZY z%!fhz1eTw}@;!w3HyAm^KFeSFz(g2F&wiQO@blD$pI`oRKky9jMc`+Fp9DS*JXX9{ z!TIpFqzWnl2lIr_G$%RSX@YhdL=-5O>d;dn@^|hQ3)}-M2@68-t_hg4a;ti*D6YMN zGwcuIHig4DDRBrVHQPAjnRexq==3_DeN-w;@)@wd1bhla8N?h`Ui(KsT}}S$-*4^M zH9u&4ASA#lQ61rSw?5ns_i5nsxSg)FQ|Gk6u*o=;wHRo(2(pX}fe=uOJO*nafhQ3H zHsJE#@HqjFh@2N?%(rF4td-1foe7ph;fVea@JXC)@F&2Z0&fAcI#&z-_2=g_no+Qy zDDG_;coHjq26z);+V)pZWa4jK-l<#tK=FZKfK}J?C{E4!98R|%!ZE~#jM|N$ONeLF zCZFp}QPml_1tGy#lAdzl@_eM+G2&m1VWIgcuT8@W{!B-U-l82s1f0Y<3ci4|6}}-n z{U`5DR%RdTZ+uZW+o@EXb`W?DVP60-2i$rvSH1Jtw+ygq*DvE9*o(kNfTw{ca8h7L zVSxb4h|M^jG#PHUu*P5jUkdsv0lj6Pz?+1Znf(RJ0 zaL`zB;6NpQ?4Q4Sa{j;iv3EZ)ROvj95#5XQfJ0dE(+KWxXX=*ye~o}Kh`&GiK<~qL zvF{jQ8R2(>SA960{wILHjPve959<5|LCNMklQuY#v@mJr79)g<_|_t-(aspY>!Hhp z$3)JvGUZK~^12CGuwuuJI_u1hzN(*pa#`VBayoGK9G3>|X*tgHw0<*g;iiEf^svYt1w5S&k-4#-6Vv z)ySi#>=W*w;d?)vl__8FI$TbD=I~HE?1eN4Dqhax0}X!ik@4~uj!l&M!c?wt8i{i( z{2azcz;ENpw{fW&dlvhG0amFy0ZzU72+pJPB2MowKa92X*_=o6n1Q%Mm}QIk1m#fC zR|yC`g%n~#$!^<0_ty_d%`-OTkj$CXYDavK+6ttw^n@8Fds{p`G|w}`^E^E~Cr%$c#e|IF|e5GT!}ntp@)>>AwOL~6~iZ0%yr{&a~oDbcim_D z7x<~8clhYwG>2;)YLUhhW+TME8pnZOz}in@`8U9?;WAVAOt5UvGQhH(zm6mLFW>@M z&*R*h4-FPjSn5_Yly>OpbTGzZ08a?&WuI#3p_F)-oBtw8!t$(2c~z&pWCCIX9Tq`k4X1RQk+g%!x*M3lQ?9_h9D2L*Y`Y$z!y@OD$~dBPu34WBV#@{JGfBY3 z`5FhJ4o9mkD!xYM7Nx*<*?&moq~E=ec*yR{H4plWhH9?x?kYcKAuLO|e2ddohgV0Uk&08WXVPpE_`t7ut|&B}o;Jzt!y zG8+fHG1bQgQ29Jo znhh`LAz;riz_Q&xz~$xt6i)4ViU$zT+6;Uwb(3+R)1;myWX0=|uc()NB4458gZKQb zhwfRA%ZwLQ!gqDV=-t5u?zd7P{_ zsrwn)7KX8M#6Q&u`MnFH{MxxA+-{ahv;xOZ60LA zfXm!GxZ7)kqT0*CGsyxkwr2>k3~Mby2qI50R1X=fhA8O>rCXu(AXq_c;ON2t*Nw*o z<0Hg28KBtRW38A?LW~tWH8@Xyn7Z={@Rg;R`F!*G5MR4;fVU=l&{lTO-Ob{z<6PHu z9Pv*A@or0jU9ka{>H9v8_&s=SUS1ldb7;yQ+@OXDUVcJCv-a&R}=CRP449Jd8_X``f^?IO5-ZT>>x` zs-EDw@PbI(#2~uFUacM>fwCwtI z?)5vC2*E)caySdP*~&Add>LVQmV1&VUyqoichSpdby?Guk-pMDbC zQwPsmH{C)AcXNktH#zeDI1}&Rq?5&{9pC^dEQyg^S*Y;lbT7{i&T_KWyzkdiKlt!_uq4{#t>9W9RJue z9D3misy+4M4U4A)vU(Vs-sYAP=0u2E_4*Z8WAOD_&wHDv^7#Z%Tr(RtO zeo29pV$oIDC1|nizbk)e2N$)0O}u-$k>Oq*J#mOA3@|$wpXe^((tMSPcEs;rIYcw_ zm`i+ev!&9^kK)v#Ch#p>XNrf0hteLs*!?9gp!FHxZ{Uc3PpLi25rzTvT7^orjPEHh z28=;ki-$#6+`d($23U*xjI~RinVohCnc_s2^$+8Y{@w~l4-ZqVlnT{rXVK0)ZnsLj zH(TR&t3+zHoPSis(Zb)r(MBI2H`0xJC-6Wez^dx4UYxh*FX2SruKM`zhk^b&M~{pU zhQW#ls|0w`UC><*TnI#=gDiK{>=+MhLXR((eFg`67#`~7`ppUAINj0vBZa-6uD=;{ z)u9eBi}Mc6j-LIpg$Jt+J*)v4u5$qVCpbUE<46@Hef6C<-`v;vmCAy^F8yVfZ-O_)l=O@=yw#9tHyhxXP_x z!c}kWT2k9)FmhmkQ>TtN9oj58AEj{dfxGD6fCvM;V@C-_hVZ1orYTvwL)`3;#i`38 z)tfl-+{G69`w%0;h`wI%HfGEk17YZM^28`3!+k}b(%$9(9BsUaqm_^2Xy<|AfvG@+ z`V-+QgMJQIu-@~aFK8zqgrK*l%J9elp6@Ltxk&+1h_y8l>lna4c9hDqXX*LaGbGIp z))-{qVf)J1&_ixUAGZd=5HWfX@%U-z?R8t$1|>ik2An)T%J6U>JKCV=!D0YMD{WlA z(hH+!zZ^d(HRwTmfrf$qJx;&tVGpD?+z&zseBYx~E>S8)2q}y72T)3&?j3^yC8&St zbCf^!9HuaerF3-zQf}5NcFl%F;6uH(j^VM+H!XyL&#^}iFf!DOk`k@;#=g9}P&iuo z3%IE_{|vbPpiZ{q46w}bJ%aP`e-@VrwdaZ7T1y!EjE)Y`-(N?{CC`Qcyk%B$8`zVa;p-%%=7o4VT>gV15Q19n33WBmH9V-lww0!pEd^* zFC8`po8aP}TRHAI`Rm@0QqbF5Wn{Py&);(uiT6T?qn)3}(NYNzJMA8Q5Jqr>>(TQC z90za9*DpkopZ)+Ax*FD6!ocU~k%J5l^sX=*7uT`pH_yA#Q?GDfq#u8oJ+n_x#nI3g za5S~!iINY(1{lE^F`r?JMz6KtDNC)C@%*FH92#u%!}Eh&pQzAI9-P_Ijs6}yI6!Z2 zb#X0SnwLcjl&xYhHF?=zcaoKA(oWN8Z%=iK^Wwmd1Q{i@~LY)d2EhaIpdFB9p(Hjmy`1#Hezcno~Ib-uT!b6Y$V+! z{!Q4SZk@}BJlB>y*RG>Paez}(x`*c}yk#P9yYy-;^z>9Xc%Tp8yZ>m`J&GrAH1#&n z8a?~vN!S^CV5hg!9|Qgtu6x6lY1CLjUp3{YKX#KBPE9dTOZnLsZ!kF@aq)HyV;-DN zB$cF6D-%WmS}${d-Xr*RKUnMRi-m;_)3a@w?Sxi4B~Dy-i751_lmn{ekb%B3J@t~a zH@10=U0Uz$S*`*-nEUpC(H(H|w{TX`@9xwOZ<_&%-9IQ6_(@#4!9y_L6RGrGS3l0-A# zh`D)Zj&m2rdH2FNx5wsbw$l}96>C9CLA4w(dZ33VPK|Kp)Ch+U_R>>}2>h+JzKtS} z-kvJeY6;)p?HZ^pquU+uMcnw;-^G`;pUxrUVHl{ zufBbg@yP~pl9Oe+ApU!evalEft#-=Q8#9beEO74p7|%a>nCG56%&{Z=TT+XJa6z$= zpGL6Q*o{st~uH*C%aBUX1r3P#{IJK;u$q8K4?q_kG95xIKSR=@_q#Wj)JlN#( z&)wmRFWlnnu{k`ol30A-P!2RoTBLwh;?atIGA)t9ZdqsU8iprM9O5G%d7R@X4iQD+ z;_JS2L+_+qn{=IeVwst1^ZGlt`N3<~c=O%cT)R0-qnV(MS(I*~NTpc&aPJulnbx%1 z8I5K_qm?jUs7~dQPZat^RC!~N5}K`q^A~P0Ha@f886d;LK_})rmQ7rQS-L)hOd9In5Zt?DgalZ3|%Ur!NL#v&-^2F7X zViv2~*SMXcdp=j-E0KG8VsM~Nty)?t z;@Q9Uz#xw1?f^G&DHB_g1lwT%AD8a%A}(`pQw^*vP>FI*jW+oFv$y%!V^f?MZO~gu z34OEfmz1>hR5CvO)HshFUf}I3z5MZOqkQk&Ff)yiTyNcbQYwYi>lKtIvCHmfcZXgL zA-crhxeb(HGGcI47VtS^<)J&64y?BD*fhzt6 zqq|B;>h&_EQn>QG`x6x$&Ako0g6lQ3rGkeoF+kz@sp5*-KaT75vLRRtfoB-1Cw%h6 zB%gU~j5CkSadfmvsV{XtM|PlJa)r5K}qqmYW*c)^FK$EY&Jj#`^8cDV_%`S=p zs@1Z~*j!fX==wR_O)OGEtDW)cTQ_;_om<=sfOkB_;KGh4MpW0BbFtQdH`$ zwk1t7k~H7RVB8rT4Sp9l;Xd2!4{VhIhHz~RA7hif`h~EhT5@}~%$^#}7k)FQOEJ=i!9`Vd&#|p8M@`33_W-ZK&j$Y`#JB(skO`Zchp!ZNzbAR^l)H|rP>qm$&Wsc5ODRz1edQ)(C#EV zB?)Rc8hj4dZt?bJe_&J8vMlA{G|ulo#3nsS0x(9<==gl&y#r`1c;?V7PaT|Nq^Aw3 zaIViBR}|;lyHob01tXZA4|(%SA8%al=hce?+?pz*_115!RLT*h5KEojR_XsjfYz2) zJLUZ4N!~bjn?^HU^zs01JZLE-JUWVZ_yBUS4@wcr^YE1<^gVpfTWqN7T6n6(B6?K{ z5uU=URp{ItqjPHv9jAywGFc0aX3QJsZZp_l;lNOxN;z0}K!;O-B=uT_QuM%!tQJu! z1sp#*!e9K!=jp9ic=fHz{QAH9F0FRV4%r_HM}wcm1;%c}=29d!yIo408|o=sYm+T^ zZqAM1rOShyAFK1J$0nF+kMYqX(+pQ)%6^W@?UEW4EGgv12wE+l@!5#Cul4fPA0FnF z3xnLAE^Wk?To(eTCMcy?9`jw@TT=)~)0`_erg`t;1UK)@VJ$0mG!X{)gZ+e0oJ922 zG1el5AW)Jh2=J6#VzOme^v-x5(ZM17o*I6wf^K(6CTFpQE-j@X%M3T~%<{LyQpeE;1crWZn5v0KKrh~HC4C0A_s-5TKK5&$+7vyn zMU0O0P_6oFrb}4sa-6EQ5~Y$;@$MIq-X2^7;b)#a&X>OMJUxXCaPUAMpa1mJG+QyR zym6_xj%`bVt~c^Y9BrNl;*EZJ!}S1#`cnZujhn(U@#!^9ug*2C3pQ!NFmk;qLuOH<6tvWM}kSyQ2>(g3`@)Ui2H7b?6(<@fz zz~#ARp&4`a<_y!b?G@RcLP}Jvj2iAo4E19@53ndD3*uLsd*D*wRZ3Kj9VR+Bgbe(Z z3@TuHw$0U>Gb}V?@_c=w7PvNzrBX<_6t1Xt+bLKJS*}q^^62pcJpc3w9)I)@Vc<5X zo_d*2ec}n8dGZ+5A|9djwg<)t94$VLqs_`@ie@%b5aZ!;{eJ>Cmv=|tR1Zt&8Je-r zAHF@xH_sp7#(ae=myY;j0R|>!O1yl2kng@T!i~uap0p^r^$0L@gG3%fgMHL%cWZQF zS+5^(ZqLc-Ci4q1X|{aWp+)!}{_p^@zXuz5AVCRGFIdYRKFNBP1}Jj1h39ivt&EvkoM z;B)%qAzu8*X+HYwNe&+xpj-}%ySHsTilfaDHlf*UMg{7@$}3tkEP-)5UWOAxN{F8@J~;IO2@q zdm#*bDy5KFDahC%QxuDml3KOI$DTjMPk!bZKK{aK4vzG#bt!!M6K6Ou+{-t<^A_Lw z-rKzM-i@7*1id)gd;*syF};y5-IoEDiIZcvsPE85zPA-PgVS<(vdW)b9^xlXjniL^ zQ7JTMeJ)7mT?#(*y-{@hs z>2|nnsXaK|uY#dJk9ji7d5)NaVr58mtyo-~@5>+fU1JPtK+gz(lx+Zrs}vPI(KXrDpYut64Lh;;{jcC(~lEE8MY)WRp|Qx;lTg5^?D82uF?`Mk}A$wk7hR8bILPzm6gdeU2U)0T)Z;Yy?a}^O(h(S9>>w_eZ4^&VSsLXisLvt;DKjQNnuGd$%U~xUwQKouUzlv z)vNtXHll5v+_l#c95N|qvL;V-<~iAzVbHG;l|ods%16G22+-QN-2T-J;QNR$EEr%} z3}L5IE~P;F9@6(+bJAsQOk*usrZ=WXD@oOtoKYD{rPL*SQ%AgSd}gg=qsm&>4Vz_} z3m2~Q(o1ji)YFgB-`9i91=?65&l359;2uM@$0p`@``zpO*$>|1`mL!Ao_+nhgrm{p zIGVkP^CPZ{dosW>*XIkky#I%mK4^hV3tqj}4_CLJx@&PEgQRPyh7P$o{un=Jz4IZeyuK3_doPYJ9V@3a*ZJ>wSinCj2o1<*j3Kj?HF~7Flk2KZo4$;RqB_Nf>P*jsNUBq zh4Fkhu&+qG9Tb`$Q!yO`cdVjqyiK`mwKg=H9p>j-wAvjy?U+2vdFHvtIdbFxt;}g{ zC22{LoR?p_#Bcp?-{;jgE;Bj3fH9`%g0W)^FoL7mLEHeob#=r0-LX23n~w01`n5kO z9MlPClLbcF4Z`Mh@qNCwHy+M%Ld*p!-`q}3#G`XRtr%|7Ou{285eFkOqxS( z7GE~TqK$Ft(Ka5i?!;vCO{~@|=SXW^q`6iLDMdc_bLW^s1?qBSxAFTCne%DU;SCee zw1P3KHoWh+#=#P$By)33UVGyrt#(Whg&aIML|Z5#Pk_m}c71|x|Jgfy<4@lr%k|=S zcNk?H%^nA?0CVeo@P21L20YI;lHT?L6qYmb0-tV9QOPrql4|5}urH#g603=6|w@mhRLB^&L+eiwug#Bs{`^EbJ2`6i9IdD2XiSs0sc@dtnM8n3^7 zrDzHBK${d*aI|~uULRVQ0SW{75O9`<;QD+J$PtvR;p6E7&&2ceByFTIltYifT1YkY zmx5I5)jh64Uyn;X3qx-OAqpWdNlJ3*dlQVS2CNQfa z&`;VGH&Nfq;yN{FzV?#b)2TrI73%o}fB*#g}K9++z;ZvPyjwekr z?b4EaN&y4a(6t~mPR&uqAnY2E;8mnjDftZbR~hK5Fge{K%en)x1vbk`Z;c~s6}*97 zL=>QfAj>tm)<`Kg7ZVU*vYdEwhR*E?(&@Ryb9GUQdc zQa8~{ESUjR%07>s9Agl-os~VHy3HjH4%d0?=8zafP}X^qS?*2*O5zI0M%e2xxp+HBc@EJa_gG)3a^Hry8VbzC!QT3r*4+ zV+2u%Iyj7|mdUh6q$$=~0{m?(8AT zr2xADEz2_+PiIKXx(pLxIU;giPziUe;!P7QU)rY7Xta6rt&3=FXm=8{Hak@gc|Qmo z?T+ARd5krfU_AziaFMi4HM-hMkibY5b1Z2htOhBFe8&Kla8=(QYf*WI)JvThx*u3g zB*sD*c$|D>klSMm+_*K%_1kmANw%oom^8!A&Lghg25sTsAfgnKdR>>O!1KEE#+G}L z9O3IYA)9N^x_pD?<(uS6;Zq zSU#!}&KaM#Ot58xSR2FaTyr-_po;@ITAsrV<6eRF7@(^^?TYVzJLu}NRjVmwDKbg1 z#uE98p0ZCl^j!CbD0qr;o)5?81|_o8SEM8fiz%s47?LM+Mt?IARRqvf~R1Os%ZJMKdU5R|OutZs8C zUur871&Vsf$5&!yDuECPV-RVI&?{Yx-3jpPxz-2!%RGK^nDdt>NK#jr(rs^uwb(Sn zCK*|lIp<5I1ipt11M*shyi#^G$Z>*cw9uWHyxAt5T_Bm7#dP!jyFPpC{QkW?B~G6h z;_;Ki4EAp_JfjUF%eh}Mi~{Pya8zoJ%bY95ql0*8gQa&6BRE=K(?xa{11uYFdJ>mk zy|18wlGQwuE^s7|7dN`dS5(8o@Ll%soiS;VS%%2hwgBup91!@5;lV1;J$aZo$vJm^ zj5x`cQXh&avQ1KwD>t2_Q3_QnVS4LiwW@QK&NtB0bLe*L3g5fMF3aqM?r)YNpHs(& zc<#x=3=dWbe8r|}Nwjv7ZUfa|0yrvjo>3{|R?)Kik^zQrv>dJF30hAAlz>OrCv$z5 z!wNxQ3-le9b8 z-RgC5Qfmyl(Lr}o#Dq&zacLCyZWv`Plp>Euj}P&&=Z^C1*-^@+U_*NUic2xZG5Q7= zzye1_&NDLMJ4BdG&&Syl=)uwQnz5|47$Cq+?5^|R=LqjOs#Y^-Qc6jT%yZWo+*3rp z!dL6GcP?yz)e_)-=(a=Yt(SQ6^Z^3j7yJYHsU2Kk0TYcsN?_ z$I*7W`pwm-;s#uAtL4dVVc2FI*D+q6lWT+W6qU#$^zYf*92v*X5MG7FX3qDp0j-4t z!!`PP+*Fs|dWl!xQcTV?X|>ZL>@QXg$6Gt{Y?uAV^AweGz)*jc=bt*v3(p+k@PQt} zP;Gfy3|d2)vC#~@5{6NsIU;hd36FWZ50xNC%fmR@UXdNT76a6Z5AUnpzq?}{(g|nM zCXv+`1fCRBLyyQ`fA6Tfj-bz=FI5>eB$|IJaV{?Y9-uoH|TYLKg$qFjMzxfpg<%nr)9=P<1<$< zz&`T{c{rM`u>l6CvyUY}&EyQ~6u(d(WD)%h)?)x65P6Q8oJ2MncfH+BXTIMf?-FGg zD59`TDe?(?#nI6|ZjCRS5!Osd64xZQn?~XLiZJj9L!WvzT$&L!(!=p1{hWAYz(sny zUa2iIfCY$SM6(InY)AqCcvyyorbleMbHi?-D*^86V*Y_+0N)rQlP@|tWf1@i)=Rl{ zP5x1{v&dF!#ak9<=x&DIx&&H^e4c##04I+PGBela#_c(7jm{>c}0uy?cEn^!Dx-`#E5ohMPTjT5Q{F+X#W|&U2KX0 zdf105(BcIdO{g`}I+v&bJSp!VEXs2i2e1aj60?|X?6}~f#=`?udg~F7og5;|4aOLZ zwu^PeQV67S-6MQY68MV1_jWE%UO2-$ZL|nF@us;+0X@P}-l1MhyMV3=)U(zbtFf;o zfU*|PXt)0tDYr_x?gaNGWTTyt*p2AgjoScgp=)RQz9a|&mW2jZB+zvY-)_ud^|4(D z90O#H7I|mGZ8Mkdsj&12LwVypXZIR5B?0!O5!{6^2B|gL7IU^Ft|g(kKL^-cW77-~ zEo)=YjfQOlJ4MJ_zbRm~CZBJhx55BGuh1U^32@gei?w8I4OdIKFC_rRI0MgGqy(?4 z&TQn_Wf?Y(oqxVt*uJ9w!aj!9=!FGrr?cs=dRTfelnM#35ATPMqv?Ayz_K)mDw}JZ zyXz2uXF(W?F)r0t34y0J-Z|Q)DYV-wBEq}Ad+*fE(FPg~*rWvLcG0UAHo*3qJnjl4 zj;5p4)nSW7Uc4c2-16|oi0l9sACff$)-0w6C@Eb({*7jM#xb(lbQM#}ipG~*q5Bj9 zFdDD1fQ&aU0bKuaO9@Np`bq3Z1Qe4dmNUWXUEX79MBToEhoz555z$ zS3I)OhZQsyC{0Zuvus7z1iMXd(5^#((m9p6S;BS^>(~Mlfl=hSIH@$ShqU0}X}ie4jpf3y3TynwiFLZLK;> z105@9Az9g(XkWp@(fFDS&>eucZzVv2#7K!$vatKCV}K13u9}?0zj_6cBrEQWwV*d4 zN%k77ajhH0)HI^m+SGU5<^oMCX(Q14^(Hv@I2vDkx~nC?zGVO?3|1js!MP9^Ysrl* z2EuKi03?o)3k~NEUG{Nf?Y@5SX(y#KJCAL(H=XhgPP#5wN!#xHT(O4?k5#kn){+4G zP6b*4DHmHDx*QsdHXHQfxT$Tfvs<>(6>3Zo+1>5y+XB-07M<}aOt$Gk>VT5~vsTi! z`|;{m;Dapz0JIe3o?J9yEsz<5-bnt75Lm6T^YbeLM#i$~%BwwrqP4Y|UqFvfV6%Kn z#;>+8horSH*?$G@DFM3JkB@p0nN%dwqq|vIYss|TSlz4uk!Q&1DP(hHYP7L-Qy!(g z1aDy;e|#K~XIu3C2<8eE=!1skS7dRMc{ke*a!(SJ|(f4R;0kCnan6q-f%YY0=)AoX5+N7bCXj%mmY-9&hb94A(cM!`A z$Hm;D{lEkQWRenGy^5Ng+{)Jxz)j=vx(=ANvS^I8uW?Ta(EY#)D|x>`SxX`%=c6iP z{?c6Gc9JvON}UwgfF2x--Jx{;ePj}^NR2l8BrU=UkV#DS$`zui$qi4ySq=kSvK}v+ zkPZ^H=db$Sw*z$PF+EOhC5#gkinw9A@? z#y|`9X9ctXG6WMMU^a-zg8-x;%MI-$r=7Zvaox|l!`^kM#ypkrF;_scOy|+olI#06 zi`#Xi%?`=>Bm*2z03N9F*%f@Hk?&}OtaJ1aQ(e{c4xhwL1Zol&@ zjGp~+3z)@C+1s~Pj{)ZVknvK5fh@-}8EI~4bTUf5q8xgp2oftu5M;QBrzzU0=oIp{ zCZ2ENbyC7&rj;>}7xndf*)2Xdxxn<5J50AUk@1nnL*XXNc-SH-#u5tS%A{6&+tNnz ziVnH5$(g}>6dFgJ%Z3@%t$U8 zpUc)~%y`UMNuzN4&1IT$qsr&5&G7Vrd4@*@fF(P?SoUOnY*)>{F+R&5pP%Ht`3gE2 zqDKpA!cfD~D+~u@&IyrmQf3^K`mP$-rj@*GLatbU&t2mdkl|>0Vf7p9F~9`-G#&s; zL^&=4-U})`UanD7g;zs`ylX2=XBEbb;*M2JT90|-lD%RCu@$terP4H%-@HWsp%D%o z9Ksg)K;1NJDaB$7p}hhj+%7*hImas(Zgai^xs51m*W)w7Qo+(A4MQU5pwJwU+Wi%p z5uxb-Z|abDjlbyo-{;71G`(R4m}DOt!de2 zWo~#i&Zu2nk_JnF2ULaOn9O-hI*HJ*lDBohZL7#}eS!8lavV+nXh?uA6qbfid^70d z`+g6?S~4MNOGRuYhV@k#Aq07@nVg*E*3EGy$EO(@8Nl~_ES6kbaw%AEC(+X|Y6Z>Z}T z+lw~N7Ll__1{mi9AOXNVK!rtZf%>`w?=D=t!Np5A@dFHQ-A{fm({8HlXbB$@`+d;H(QLc1X;9_7J$w*Z37E3 zK>4aDt+W_zisJe%dx&CCo?PL+baM&Z=fU+hYHP!L+UJ7tNs7Y%53wdJO9t>5>$vsT zV}Ne{^muU`W}gksco>ja+CuS`U!&eD>F@8QR*LXEmpzjU!CY^RyuSx8^j*(VEK;l` z8wAEm>?&PK2!jw7B?PTF<-+Z0zCWjVSNp^toK%Gefo|}tyNR!f`}F}G!-zq=q=b#wjw-ka>n@ay*kG^9)kG;^@AwbiVj`(i9V?kY@R3^z_uIRcrWuh?IiB zmqdYF9I)4gluoT#uMk%$H`lleV<;xdyFC9e^f`9yAfuy0L{U)K6dz&@SRBp1gQMYf zalbp*&7(fYuDV25k51nkylAZ@iXt9=;!zGB8bJs_5J)^>s=uR!*hrs2Bei=d_ zghWaY>3K-ccYmdakX@JI?&-kB7@|_hnX{)D9X)^$P>K|uC(*h~2TSXd6688_i=`Aq zp(F_8VhbPNa}4EXeJ>H!p+m!*Idhz-6fCAb?*?4DxIoC_8L8qqspZdSS8y3ev#opS z|FE%XFfHI^;1j?nAKE1dfs!7|^H8d|sa-$1$uUNwwZ`N*)|wSN?Zbk#7T@z38XBTj zt0JYKR8n}JAW8IHf=UWe=5Vh=6$&v-7UVg80%rJK^cSfmsBEw#TZSVXXq@$*djjrfOewZ z-X0DeK0u{hL3tjYvV@^RNrBdPcaM{D{mJ!0I2EW`@$fu>G2r`>D0FJkayswrt#ahZ z2tz}COij&^Z=~_>)*g~uo0NEdfKnbp78SzQz3vAAp6?Fj`HOamF&d+_`)drg_twrk$nI>e!7^7WriqSi|Q!eeq!#w`@NrEs$U z?>S;M+TL|eDczda)7pf9C{jexz01&pz^A{z&hg`;jE~PSF)_1a*S544flwY2x6^xJ zL=Z$MFL3G&0wD!{5aRn?Ch(UwsulOkV6-OBb99yxcUpAX4bo1VJkJ)HWe1*7ilfmh zIGVjLHZu^ft5+Rj8w?<&!Vf}%sN#0~q6*boizzCnTv5};ZibT>X4$SP@coD&C>O=+ zDM`D5&a)j?7Y-gA;jzaaC5l3PCB3ewb&YwlKomKnj@S&A{1C<-}q<~TQQj59ty z?XG->B%Kff<@toA8lG2dN(h8>>P{F%1YwBh`v{>BQY>ynYyX}^c><{vHV6nyWvV^> zGg*QUs6Gj!RF=(SnlQu@{Z4rwQ0?$*_d+PM{ z_aTIb?@P)h4=Gu6TP~+@*Fr_0)b@=-V=Sdo$YYNk`kIKQ+0klR#LhGGt^n5CBf87|jcUTT|vtTSi-hO4kD9A}?Yw{_I7WRN?W{0m~jN z!hXMu&0dCg#DW_5k_WsE%ffz8(RqQs^;Isx#gLN~7dzZAJzn-zL)I{5yHDg9X<8yOk(P*m#yZDOC>M2vSW!b$O3 zSy)+ioU6(Owbp16?l zlR7|7ZI?UPgtL|IpQphL-#K)Vmdj`YcJJ$$F0Z&n8SQ1%djFA{HivNGeVXAX(Y(7z ztAsEuD<++#Q*Mf_Ry$c|8ZGJ2shwJsyF$yidlt_tx^fChd^_eE{yZ&``n)?@1CQTbC#r|7_UhwV`rDq~p|2ozGMi)*n= z7Mmi`kKGdw>&~=%0x)Ct+x@wQe$(1I`ZDgf{w*G56UM)jJ{q|%tdiO_qD4MecnQ&! zs5U!>mHrT(_fK7JwdR2ka4OYPFVNA)f+L~(_UrmTayyP)}S-^Ony?wNuX<94vnUEhhbSF6DQlfMp zhbgDfsIV0`6v5ca`W_7VYU5Wgu&eHa5m)#nz3s9RyBuD70OcH9e zW5rMBJWzM@CR$+zCAh#&wEL|dno+8x*X8UM8R=>fissQAT1HU2Ugh)n8PgmQs|8~0 zVW&=8L_JRuX!S)~3eoKa~AZC{n}LGT#!~6qWY-xX|A{QQt6dQ zHhc>kGFlYnoU`XN_T|F?T`%eU^THyOsr@IJhDScfQu+GrYXzM;^WcAwVxUxqn{em2 ztjHq_!%c>u<$-_nGJ|2@`qw2!>n*IgK@ZSejL*1%*Q3oPna@2R-LAh$pI(4Iz7<$p z9=zf?&&sStx2vYlAv(CqX_&#~9^3tGYfJ5D%hOF_oRl&cs-{UrjkB%F`5UW+#_2NZ z3uEU#zVE(gD?Uhidw94)b19Y)psB8%Cr~>*H88e3r!+gy(hAAD)O+>rA||z%U6`ZS z-obXCHAhrsRBFZg(Rz+6=za>_==M8(1|~}&?4d2Pc<>ig7=IO)Wi|x3WSnW^E1}K! zeZq>c^ofZwxr3E2xvN2<%H}Uw-Cy_Grr`>ejF|50)9Nxlc$XU=q%0ik+a-U!MM2I% zq$CWO=TNnul3i@}CClS-ecH*TF%MzI9_;;;3Kgt6nM=2yrY+d3`0lj7jIz9L^@2!4 z_bKrdR~yM}3yaug~q-^!KCt-s&N(g~V;<^@)+(9m4yjJX2Hh z!R&P#?KZiVIbt3Z|8;HO?d9HluzBFxmKztBdOQI-GWCnM4 zd39*vfc4J1sYDHW_K+JDbeA`tNcTaZz$sBAu>PU`5nH>nHlKh2VW@=N$?q5WN@v_@ ziOc)+Z_^3~a}MpZ6kFkR$DtK>OKkO?c&=}nGi-H$2gaA{Qxa64v9r^~;%r#FVYWIwUrI4fwg3uv&-+-|A%PjTQz~(!*lexPa*(5I7RCUlM374(VWK5TE@hpv0a zint*lnt#OqM{2<;Kg?A^@{2GQfa#Qg{iWNz_c*qBfWg6wDnK7YkKp0{leGSnF)v3r z2-;46tM641$^i6^1p!-FJeW3^wq>(SKvfwPefktTs&PP#RX<`8GUKl7>0!VhDGu}+ z4~Tt5>9ap)sR+miW|>TQ^NY*L6s8x;p=fKYBicV+MzX91r2;C#)3Xwxg1musAJl`Lk`$ znSFsu7h609qb%3fEDKH30nAvuawR3YlOPfq`I}26gprTBnPj@mZ%8mR%>!CAfJAJ3 zJ0QD|YY0N6nkM$cKHF|bNf=4Y@?A(}CVpxrPeUe@5XAiq8Hi_SxX#CH`(is+^ic&6 z`Q7SB<4^cBckUpZTN(4ss#+=f7o#@g)2MUF(7wvC;kMXd#9TOAL5XSL!lYAVZ&Euq z{%Fi#d|PR`6~~L@7tN)mOA7B{)NJzuL7i(IYq}h3a8ko2^Rw3MBnjDGVt8zF`B-)Y z;^;-ro?BEB}iAS|C3n&Bhw!$qw)>vDEw`Ckj?%}WmCqyUz5Oqn0fRQ-nX>7!S z=V(4b*=mAhVm31NG>pwkpuJ(8m-dMD&lQf6Os@?Xfu@HCh77*a|NO`AZHBoVs+AqG zZykyN2awHx$L)kude<5~P=gZ6EAHu8INx;M23pX~ZNmM>Au}PbpOlj=9AWz_sUoHq zpq1tBNV!~hXvL(cLL9RQ$NE&_I?$-;b*J07EUzDWoZ+#L_s-@FHa96Mq~=b(-TP6| ztX7f*Jg>E{_w2XaklOa}?=t`Z0J`fU*G@NcfS2rdq#${gj9)0HCXOCYp9W>7p7-H* zKobkjtC;t;*S!xERRc+JIH(5G$(*Qh;1Re(bN7UYoX>AJKNxc8gvYT_d1xZur9;hj#A-qQhk|OrsGPnis`EOA_R97 zarWS7#pYs{+)2bQW_FZSeplTZb}L$i)V3WY3X0$%ePS~y~g%-^~` zJUkq{g1NUGwsiyldD6{h3|0CVj#9zCSuxvWD557xp>R??~4h~)%S``qz*AGg_K;sKoHaE)yX$wq}n?%j=pm zarY!iazNc?qUiQ!}nUlVV5Lh$fcJ9)?~?L9`#E3$c@I6SYbG>)LGp5hZm#H zE8mgHkR;FM=KH0djk>hn3Jw&v=hdpR58(9U1L&fZ@Q0LifacfneH-oKY~aVmQ=I1F zd#kOt)JjM7^T*Sa2=26H zB|cND{AI4cf6K*WX49z$BwXl!QKp~{;8IfLcfK}L|K4-+L~3VUIn43SQzx>=oUM1O zO5mo09pa+>^QcCP>LJx*i7K!`NA^~^uvb^ck-#mnl#0$;dkKri zyqc*&Sh?}K6_Cviv0#Fw!C$X0+Fi>c{#sUPCm*Wmb5%Qb2W5-dKx9;9X|y=dGw{96 zm~k_wGE%gp@ruoa-0_rk@XrxmT2;ZwtcbPes*!K**_f_Lp3$#K_FB38_4f?T>RvQz z)-1D^x-Oz2iVR}qIK8|e8B+Lq!>+-J)TAIpm-M-_Odv5wUpv*1<64B+IQ`bg8-(p0 zTi+e*cd07K~<7Qt%0YkFmRY{{(b>G+t zp&J#>TB4~tr_|b7H7pj5Hg`C=%IxbIbMFtX(ivuC1pVC=)?Si%vcnDvW_5h!QCL%R z2ZIp=%Tf3a*XymHqtQ_N`dda>S)O<7)~d8^E??(+FaZ~z_{=3kTba@X!Z7qzd@i2_ zk={SwXZa3&(=3k886d{x3jVQCTkUbH|2fs@r@4f>u;aOmI9=AnSp80UwXDfdIhcRe z6yms@DN!@`(cIT`9z5?-*Cq2CdAF)kA}T2hd^DM4Q&3na0pEr2jF>vQ0Q51W=)R!O@_f5jroV=T zt130d12FDJ1R!&3w@>=H5E`fG92F14f7T5)xA*;G(m*~HH@3$V_S`ebbr#8;_cMAW zaJ?R*Hgaq??p|Yq?DDFXw=qM{u)RWt3E=FfUrzQ>HVZb+u_g37E>-?zrCy~mS(F~u zNmtn@bfVZk$gS+H-t9cy*2iGpc+1)I*UYUF+0-9ip4KuUD3^F9wf)e7aKoJX*;Nx+musHYZahdO30 zO?_SSlF{Ho`ew=j#9qj8gGIxqZ=)Ehs_qtl{IylTb-f9=(Rt93D1m ze2G&TTa>pXx4v!zWHZ3mm13n*Q)?=$ip2tUn91m1cIa_#D>^i)xK8*@zG{7ic!$P< zgrwqZ?j5#VUxwQ_&Z6oKP~iZ69DGP-0e1gM(!5ZIbfcO-HAK1E+;0KTcK%LXCrjoQ z>+TxIG8!yv=jux&q1Z~ihOs6xnzBZDZTB-#OPqZwI{Aaa5RJgYsY4soGD`|B@9==CyIQy42mxpzmfq@3i}Mr@wd zDRU$84uRp<xTXG; zuoU_7xA@&@=*6bJSI2fkQWcG zRC9NEj#bi*NmU7_(hOX+%lqy#3{X`zn1?JLTv+xB^V60L1=MKojB3;7g9}#+DIZSl z0w4CEJtm1;iH^N#RCZ6TU(DV}L%67yqhu8tDTK}PFK{HkY`i$d#~n|8(ePi4*mRlT zh$57`Tr@~)oiEuXHVx8i9+6rIYwT4mjcaz#a3@uJoi7;g5_j7Hwr+L>B~QYZ73{{* zVs}hv6ZWGMdkhPHqU zO3F&T$1mRqmYxrjua*>jCv{~XEPf*QGW5BC5OKB->}KBr-CH~(&jcq{TDLi4`O=oG zIUXH(kQ$yRR`A)@x4w+T_dcWFs7K*AC&r**vc}nX+k&DK@~T~|5mW|Ba3B*QE>li3 z%?%l^Q&qtTkNlu)a?qRRxB|fv#ZUx3d^d1<*H501s#@QXf)6zaUMV_!6tmTDz_dR^ zg7bs@Bj}K$Bz{vBe@~Uu=jd;7%GeLavbV#>7rKiNnuJ6i@BI#s__gJt2kq9Fk8*eY zD61%$T<{Si2M2IV^TJ;F{z{o_Vo0(E)^QaU1*h`Hm9wv4V(6?7in6Kser zN*=qtpWNjqFy%lWY}Hx^Fn~Jq!)W6l@=gZzAQ`jNOkWpq{wh{ZDS*nf@d z>E}$Mvav+ZT7O`33-yE}21#2)v*4d%^=oI1`bbKEL<`=jt#?)PI8GW$RPBhlv-!kD zq*n!tpHks5Uml&dWFoVgANMdCTil4d^^k{|{Oo-+?Xi!y z-v@rk!f@!J18x?NQ|YN8oh4WY5akZluE1l?VwPr~Bo`Wv@MN~NAqK0hn z-1Ycl&TqT=sWi))FY4HTu)$evPH#1g`vl(HH~d9x*KV zXS&?RJfkHYpPngg&2k&Dm2C|)4`~R9`S)y2?*YpHMgI{sbz23`bj*ELo#9`0k$_ay z9(+OR@wCzWMG`N(VcJ0BiPsxU+pZTmq&2@&WD9ydKx)1%LQ*4WFSWG}rAQJ#x6i}G zbxk~tmV_wspfGj3!HQ~g(M4FW-5HiffvqUtrquW%ZW0K{nLPUN}QF78~xG!zblaqd{~BHrmnS95J9l1`_x7 zRW}nzI@&$`LNE)@`nA?}P8y8>pY;Lm4*UD^Pb2zi3@(QRp45s=i?asf^m?sm0}XgHUZ{^3dbGNx1K6VO`C{!NhStw2#(toaqYtMp#uIGsrcZvC zt&KPy*Ze_T-4@mexY5LQk*_hB@Qtu*62GStRB~ukqalPmQbu-qC4iBr?#Wc;8XZ<$OcTBxM@Tmr8dIgLs5vt0oh~iNiFm z$L8@ol;4K*N!k08FXGYGw8t=(cP`Prx&t^4zdFQwT&LJlkr}#LCbf`VQ57sfO;UF(ULgb zmXNl@c{6O*9zy#m3O8GXD+u&G@bew%fHp|w08wU?#3|X7o%G-k`DttZ#rG!7(yd!d zW9;PSWtWD9vYadfwdu{;-9UjZbFmskp5;B(@lDp0ckv&RnHeu@G<+;s=t)jnsJ{8? zQfhog^2g5#_1_5av1!zpzfU$9{3iRz$6}{=XuBokcA`}GK7MB}bn8}Z6{zgA{0>%f zKj+yZsITLRgvVxzx{P4l4PT8!l$REl;a4WgvI5@OlDs`rk=$WakGffRhbHPO-zeWN zF`aiu5(Bub$Kbn_cSj-=8uYt5Vrq|WghidsT5-f&>?|4an71z~Sw0vX_mcFx`GAkY z7K7jaRrczGBrK&Wr<}3EM}j7vNjynQ>Y?@w)vmViyh5!b;N>fE1(lG1yAgoVtG;zZ zY7_C7Y7=gVS(aTL<}0|2Nq#(RKPQLb$IZ@gHpk0bS|O{y&|e-1bK;?Rs4>iDDl@;Z1C=f%^_E5+;xms}JPw($2eZEp-7{v9BCvbM^Lh13xw#~hPb8F`Sjw2G{fimbdCFTX3N)AsP)+WT z`d^s;=u}bh_5gc%hfo1zly30pJfvXQ|4YvQ!PtP^L%jcmd{1Xupg<^mlK-p96zt~_ z0uAt>`cJQ<0w7+RAFR#(mmE_N1w{prmz4*|D^d#EFWOoPgyFyBSb-xwsHAmtaw;^o zC{U0P8_MpoKGS; +#ffffff \ No newline at end of file diff --git a/client/dist/angular-material-template/assets/favicon/favicon-16x16.png b/client/dist/angular-material-template/assets/favicon/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb09f1fd0e2568d16f77c1389ddd31b45930e21 GIT binary patch literal 1641 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/manifest.json b/client/dist/angular-material-template/assets/favicon/manifest.json new file mode 100644 index 0000000..013d4a6 --- /dev/null +++ b/client/dist/angular-material-template/assets/favicon/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "\/android-icon-36x36.png", + "sizes": "36x36", + "type": "image\/png", + "density": "0.75" + }, + { + "src": "\/android-icon-48x48.png", + "sizes": "48x48", + "type": "image\/png", + "density": "1.0" + }, + { + "src": "\/android-icon-72x72.png", + "sizes": "72x72", + "type": "image\/png", + "density": "1.5" + }, + { + "src": "\/android-icon-96x96.png", + "sizes": "96x96", + "type": "image\/png", + "density": "2.0" + }, + { + "src": "\/android-icon-144x144.png", + "sizes": "144x144", + "type": "image\/png", + "density": "3.0" + }, + { + "src": "\/android-icon-192x192.png", + "sizes": "192x192", + "type": "image\/png", + "density": "4.0" + } + ] +} \ No newline at end of file diff --git a/client/dist/angular-material-template/assets/favicon/ms-icon-144x144.png b/client/dist/angular-material-template/assets/favicon/ms-icon-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..e8bdb1471b5ca38fe566cf10660be4df4eec4264 GIT binary patch literal 17055 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/ms-icon-150x150.png b/client/dist/angular-material-template/assets/favicon/ms-icon-150x150.png new file mode 100644 index 0000000000000000000000000000000000000000..5ffcf196e1d016b9309bc37f486d2ead5fa86c2a GIT binary patch literal 18042 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/ms-icon-310x310.png b/client/dist/angular-material-template/assets/favicon/ms-icon-310x310.png new file mode 100644 index 0000000000000000000000000000000000000000..71094c7a279b052a03c2d0bf8b8640e1e48c9a26 GIT binary patch literal 50250 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 z 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 V-51E$=m@ld!PC{xWt~$(69B7n!$AN5 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/favicon/ms-icon-70x70.png b/client/dist/angular-material-template/assets/favicon/ms-icon-70x70.png new file mode 100644 index 0000000000000000000000000000000000000000..11157b49a00fec0ddd72888f3126c92f30159e8d GIT binary patch literal 6823 zcmZ{p1yCH%m&X@h+$}(Gx5Z&ea9b>}!GgmES=I=_002M;QB#6GdX;|+i2ZnW7g&pY zbeMMXTJiuuLo)uY71m=J%@eAs0H__O-+3%B!PKBy0DwOS01)~JUq4obZUX?`AOPTx zB>(`<0RX7o-nQ#Ldu+hA)=*UfJp6MMca)_+*5JCSz48PAFnsDE2}DU= z@6E!mw|*I>hCy4h7oAP!{ASZt{<{jt(p=efg=#iM{Tax+dvZ0=8_iDn0 zxKD*?IpjD}=n>U8MCqg9ob(`i40BL3vpJiqvD183P3dR$rV{hY_Nw-*mZht8{lj>F zQjlHn){lw<|HEH5H$jK4pSy0V!Yx?L7OrhGp!D#imWPJXLc2oeogja&i=VzvU6)>* zHUA9Gt!55>Mc&nXJmw^OL7{4Leppm~Wl>MK-(0i5Q!eEkV$oZKP%0A>{W_(3|A2#p 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 literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/assets/images/user.png b/client/dist/angular-material-template/assets/images/user.png new file mode 100644 index 0000000000000000000000000000000000000000..00941399d34f0f2d85d323f61daa67c2c00c494d GIT binary patch literal 2933 zcmV-*3ySoKP)>+Y_1buC zheF*1yf*GR)m>@otnGcw%sqGZe)vfU+q>t^|F^R<_ujcTYIJlo%4jV9WAaR39I1IcZ1yCpS zIY0`~LOAsCXaEv{=cNF_2S1lxgn0!F-rv{6d0@U2VDjK!2d)?(^zpb(O#~{z<1L%h zz`>Ihfp_q;fNbDV1ck2z&vq|HoB+`1Xdnp~jL_hfe8nynpNI$nprH$ZHW~ak_zd`^ zVFiH3O##fnhzxsNhFJ&KlZFxi8uS9|F_R$&2KI2yF@ylnkj21V8EVk<1HThm0M?5q z!wen#x-@Ay#-LU3Q-KpQK-IVm#0Vh(6gr)CbjaY;1?MwNCoKRJI2)*zVQI!~;5m{4 zKw;knT4hL@Q-{ZzlmKWYD~#$v`_Iw@bH~becUG-S%q-brIc!hQ%CTE>@`@1rH~t^~ z41WiI7ypKEd+>ucn}h)DJO4JN0|WtfTGFky((<~-_O71$J^cftp@4sjuYs?HuSraT zYBjD2!VN!$U7T<~AWPy*p3UYD9S&zzZK#1y2EI1F2fi1fQN^iT1YmRXE_461$D3Uj zt`?WMJ^jO41wR&iFMLmYZvqmW;3a^GcjNIpyUo>oPp{y|g71wr5Rf26R{^k#lJlU> z;E|J`7V-*yELaPHq3y-G2*4(4_H+EMA1JSBYNZms53C7m<0t@*x4fXK060v^Myhx< z^3f-GCAX-B?*nV&Ji7@;T&HL$KpM}}+_t|Sw^I$@2iC~>tH7*@061HPO<3U4u(#Ll zsCIk$ywnB28nIT+BZv!B6#(a}u_;U3%(j=$=Do z#TDQ{E@c6dl>%I)Smctph;09_P|%>BeJ>}(((xfktJ z7s0;&KLKzvB#H$t|I_wH(ZlzFZ6PYb%qX@a7P;cyPd?-@iU8Oaq5{l|V%wsTEAFGy z*NTiH0Jepw04t){-gxASJA0|%rcngIwottjh+=#5NC6^K0BaQ6B~uCznF16>v8__2 z0Ffy`B??e41&CMy8c~2ADL}*u(1`*(ASuA*0;d!}b9zyLhw=;%u>#yj0luVI+|iR) z3XLLwHTR!XJA#H#02jsLHvDC;VR{11e>-6#D!>C2powB}vGJxJqX>XY&=VEFjRI6q zowRWAT5*}^;a|S)yiN7^;*#@GRF-=mZ=;7B#TC_}hF@9V(it0Xb`w6nHnOvU6tjZv zQCu5%GVtsb8)v#heEXR*D8MP|`{X294%5Wjv`g+KzVLjis&La`#O6b=`CF3!uv2g`gE;3*M` z#;x4QFBQM@Sb;#{W9HL+)51GMDB4+3-$eJ~&*NPZXX+P7fL8JkhK%LUCb~0)Po2vz z6DWM-oDh$Ojp1QkbGw`1CJ`gcS6NyF6W{}-0KXTd@WgEg$(;rE9XVelSop{vlmbkn zIxoQA5N1tN8<~EArgql=;phJ*x&WLxc7cc+qBP*Wtyu+B1lX9gzgWOezti6eA)5ti zfVZT)u7UgBK&6$ng5CG~*y2xspNrIpH&+Myu$D9>mOOMdV9Tq;UhoxC%|Js zpGXZc?K;kFCGqsE9J`?5w@)Hw&vy)6A®tx`|Cc!K{R~B2jc1N|ng#YPY z01+^g*}>)+v;a(kg*ZQ7)0sYS5YJw62)S4!2N7^)@}f|(3`qbcL4r0*!k9bJT`jgp}PPI5fXrZ%isracGF5;IdBtzN$?_Y z46k-0FnAp9&IZ2EGXt&yC`6b8>;=AxfZ)FdvVb2@IQAq2P>3)S*uhSVMm*K;1fHjK z%t;BL5Mc(81b7S(JhovA@HE9^O;P}b2rkn{6#(u#g!>KLW&ICB?B8ANXZSm~9Q{dlI$z1o fINvtfu|oa}IMcn@FFyTa00000NkvXXu0mjfV5=n> literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/color.dae87a04d07ca92b.png b/client/dist/angular-material-template/color.dae87a04d07ca92b.png new file mode 100644 index 0000000000000000000000000000000000000000..561cdd9c59a498b499cbfd1295dc4d2037e235ff GIT binary patch literal 10355 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 RdwKu>002ovPDHLkV1myV#+d*B literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/hue.8b1818380241e6ac.png b/client/dist/angular-material-template/hue.8b1818380241e6ac.png new file mode 100644 index 0000000000000000000000000000000000000000..8efa252578a2c8c513c6eeec7e183aa2f8355f5b GIT binary patch literal 293 zcmV+=0owkFP)~mb#^S1@C_)KRiU;6-7(0&`CkU5}4m1d7IrNET?{$U;Xcz`hnwej&DWF zNg$~*dY-BXbYh&&IgceyZD$ZX!DGwqgNG^>K$Xdp0aaYZAgeLA;Hi(t=#dVf1dn^3 zt$`})Egsa{HK>mTqbGRkX$8z7A4XUWOYr9AM47fD6s(AFz rLFy}o|N2Bt9oN*rQ}#A1Dtr3{xkh4EFufcl00000NkvXXu0mjf>=A&> literal 0 HcmV?d00001 diff --git a/client/dist/angular-material-template/index.html b/client/dist/angular-material-template/index.html new file mode 100644 index 0000000..8b6a546 --- /dev/null +++ b/client/dist/angular-material-template/index.html @@ -0,0 +1,37 @@ + + + + + + Jucundus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/client/dist/angular-material-template/main.fc1d97ee0494099d.js b/client/dist/angular-material-template/main.fc1d97ee0494099d.js new file mode 100644 index 0000000..d7979ec --- /dev/null +++ b/client/dist/angular-material-template/main.fc1d97ee0494099d.js @@ -0,0 +1 @@ +(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[590],{9920:(lt,me,d)=>{"use strict";d.d(me,{Q:()=>g});var i=d(5908),a=d(2116),h=d(2992),l=d(4440),f=d(119);let g=(()=>{class b{constructor(Y,J,ie){this.router=Y,this.notificationService=J,this.authService=ie}canActivate(){const Y=this.authService.getCurrentUser();return Y&&Y.expiration?i(){"use strict";d.d(me,{U:()=>h});var i=d(6716),s=d(2116),a=d(7048);let h=(()=>{class l{constructor(g){this.http=g,this.ServeurURL=i.O.ServeurURL,this.ApiURL=this.ServeurURL+"/api"}getUser(g){return this.http.get(this.ApiURL+"/user/user/"+g)}saveUser(g){return this.http.post(this.ApiURL+"/user/user/",g)}updateUser(g){return this.http.put(this.ApiURL+"/user/user/"+g._id,g)}deleteUser(g){return this.http.delete(this.ApiURL+"/user/user/"+g)}getCurrentUser(){return this.http.get(this.ApiURL+"/user/current")}getAllUsers(){return this.http.get(this.ApiURL+"/user/getAllUsers")}static#e=this.\u0275fac=function(b){return new(b||l)(s.CoB(a.KK))};static#t=this.\u0275prov=s.wxM({token:l,factory:l.\u0275fac,providedIn:"root"})}return l})()},119:(lt,me,d)=>{"use strict";d.d(me,{A:()=>Y});var i=d(4704),s=d(7680),a=d(5908),h=d(2700),l=d(2116),f=d(6716),g=d(7048);let b=(()=>{class J{constructor(ae){this.http=ae,this.ServeurURL=f.O.ServeurURL,this.ApiURL=this.ServeurURL+"/api"}authenticate(ae,Ie){return this.http.post(this.ServeurURL+"/authenticate",{email:ae,password:Ie})}static#e=this.\u0275fac=function(Ie){return new(Ie||J)(l.CoB(g.KK))};static#t=this.\u0275prov=l.wxM({token:J,factory:J.\u0275fac,providedIn:"root"})}return J})();var R=d(2088);let Y=(()=>{class J{constructor(ae,Ie,Ee){this.apiAuthService=ae,this.apiUserService=Ie,this.localStorage=Ee}login(ae,Ie){return this.apiAuthService.authenticate(ae,Ie).pipe((0,i.k)(Ee=>!!Ee.token&&(this.localStorage.setItem("currentUser",JSON.stringify({token:Ee.token})),this.apiUserService.getCurrentUser().subscribe(Ge=>{console.log(Ge);const tt=this.localStorage.getItem("currentUser");if(tt){const gt=JSON.parse(tt);gt.isAdmin=Ge.isAdmin,gt.email=Ge.email,gt.id=Ge._id,gt.alias=Ge.email.split("@")[0],gt.fullName=Ge.username,gt.expiration=a().add(30,"days").toDate(),this.localStorage.setItem("currentUser",JSON.stringify(gt))}}),!0)))}logout(){this.localStorage.removeItem("currentUser")}getCurrentUser(){const ae=this.localStorage.getItem("currentUser");return ae?JSON.parse(ae):null}passwordResetRequest(ae){return(0,h.of)(!0).pipe((0,s.o)(1e3))}changePassword(ae,Ie,Ee){return(0,h.of)(!0).pipe((0,s.o)(1e3))}passwordReset(ae,Ie,Ee,Ge){return(0,h.of)(!0).pipe((0,s.o)(1e3))}static#e=this.\u0275fac=function(Ie){return new(Ie||J)(l.CoB(b),l.CoB(R.U),l.CoB("LOCALSTORAGE"))};static#t=this.\u0275prov=l.wxM({token:J,factory:J.\u0275fac,providedIn:"root"})}return J})()},4440:(lt,me,d)=>{"use strict";d.d(me,{g:()=>a});var i=d(2116),s=d(1624);let a=(()=>{class h{constructor(f){this.snackBar=f}openSnackBar(f){this.snackBar.open(f,"",{duration:5e3})}static#e=this.\u0275fac=function(g){return new(g||h)(i.CoB(s.yS))};static#t=this.\u0275prov=i.wxM({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})()},3548:(lt,me,d)=>{"use strict";d.d(me,{m:()=>a});var i=d(6700),s=d(2116);let a=(()=>{class h{constructor(){this.visibility=new i.g(!1)}show(){this.visibility.next(!0)}hide(){this.visibility.next(!1)}static#e=this.\u0275fac=function(g){return new(g||h)};static#t=this.\u0275prov=s.wxM({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})()},6212:(lt,me,d)=>{"use strict";d.d(me,{a:()=>Wr});var i=d(2116),s=d(1368),a=d(3576),h=d(5908);const f=h||d.t(h,2),g=new i.UbH("MAT_MOMENT_DATE_ADAPTER_OPTIONS",{providedIn:"root",factory:function b(){return{useUtc:!1}}});function R(ke,de){const p=Array(ke);for(let L=0;L{class ke extends a.Wu{constructor(p,L){super(),this._options=L,this.setLocale(p||f.locale())}setLocale(p){super.setLocale(p);let L=f.localeData(p);this._localeData={firstDayOfWeek:L.firstDayOfWeek(),longMonths:L.months(),shortMonths:L.monthsShort(),dates:R(31,H=>this.createDate(2017,0,H+1).format("D")),longDaysOfWeek:L.weekdays(),shortDaysOfWeek:L.weekdaysShort(),narrowDaysOfWeek:L.weekdaysMin()}}getYear(p){return this.clone(p).year()}getMonth(p){return this.clone(p).month()}getDate(p){return this.clone(p).date()}getDayOfWeek(p){return this.clone(p).day()}getMonthNames(p){return"long"==p?this._localeData.longMonths:this._localeData.shortMonths}getDateNames(){return this._localeData.dates}getDayOfWeekNames(p){return"long"==p?this._localeData.longDaysOfWeek:"short"==p?this._localeData.shortDaysOfWeek:this._localeData.narrowDaysOfWeek}getYearName(p){return this.clone(p).format("YYYY")}getFirstDayOfWeek(){return this._localeData.firstDayOfWeek}getNumDaysInMonth(p){return this.clone(p).daysInMonth()}clone(p){return p.clone().locale(this.locale)}createDate(p,L,H){const _t=this._createMoment({year:p,month:L,date:H}).locale(this.locale);return _t.isValid(),_t}today(){return this._createMoment().locale(this.locale)}parse(p,L){return p&&"string"==typeof p?this._createMoment(p,L,this.locale):p?this._createMoment(p).locale(this.locale):null}format(p,L){return p=this.clone(p),this.isValid(p),p.format(L)}addCalendarYears(p,L){return this.clone(p).add({years:L})}addCalendarMonths(p,L){return this.clone(p).add({months:L})}addCalendarDays(p,L){return this.clone(p).add({days:L})}toIso8601(p){return this.clone(p).format()}deserialize(p){let L;if(p instanceof Date)L=this._createMoment(p).locale(this.locale);else if(this.isDateInstance(p))return this.clone(p);if("string"==typeof p){if(!p)return null;L=this._createMoment(p,f.ISO_8601).locale(this.locale)}return L&&this.isValid(L)?this._createMoment(L).locale(this.locale):super.deserialize(p)}isDateInstance(p){return f.isMoment(p)}isValid(p){return this.clone(p).isValid()}invalid(){return f.invalid()}_createMoment(p,L,H){const{strict:_t,useUtc:dt}=this._options||{};return dt?f.utc(p,L,H,_t):f(p,L,H,_t)}static#e=this.\u0275fac=function(L){return new(L||ke)(i.CoB(a.KQ,8),i.CoB(g,8))};static#t=this.\u0275prov=i.wxM({token:ke,factory:ke.\u0275fac})}return ke})();const J={parse:{dateInput:"l"},display:{dateInput:"l",monthYearLabel:"MMM YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"MMMM YYYY"}};let ie=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({providers:[{provide:a.Wu,useClass:Y,deps:[a.KQ,g]}]})}return ke})(),ae=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({providers:[{provide:a.IR,useValue:J}],imports:[ie]})}return ke})();var Ie=d(3840),Ee=d(7816),Ge=d(7536),tt=d(8408),gt=d(68),Bt=d(4723),kt=d(7712),Ye=d(5792),Q=(d(9684),d(6928)),_e=d(5657),Re=(d(1424),d(3412)),oe=(d(2700),d(800),d(7800)),ut=d(2488);d(6504),d(4060),d(5568),d(7368),d(3992),d(6684),d(4704),d(9212),d(7680),d(1900);const zt={provide:new i.UbH("mat-autocomplete-scroll-strategy"),deps:[gt.mc],useFactory:function wt(ke){return()=>ke.scrollStrategies.reposition()}};let Te=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({providers:[zt],imports:[gt.Y1,a.Ax,a.AN,s.MD,tt.uU,a.Ax,a.AN]})}return ke})();var at=d(9120),Ze=d(2096),pt=d(7760),le=d(7500),xe=d(9964),Pe=d(8156),ht=d(964),Ht=d(6664),vt=d(6232),Mt=d(2080),fe=d(180);let Ce=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({})}return ke})(),an=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({imports:[s.MD,a.AN,Ce,ut.g$]})}return ke})();d(1032);let Zt=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({imports:[a.AN,a.KE,a.AN]})}return ke})();var pi=d(3616);const Er=new i.UbH("mat-chips-default-options");let _r=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({providers:[a.u9,{provide:Er,useValue:{separatorKeyCodes:[oe.wJ]}}],imports:[a.AN,s.MD,a.KE,a.AN]})}return ke})();var Vr=d(1560);let $n=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({imports:[s.MD,a.AN]})}return ke})();var cr=d(9092),yr=d(2864),Cn=d(6496),ar=d(1624),Nn=d(8818),Yn=d(8059),qr=d(2156),Lr=d(112),mr=d(4548),Da=d(4096),Or=d(3252);function ua(ke,de,p){for(let L in de)if(de.hasOwnProperty(L)){const H=de[L];H?ke.setProperty(L,H,p?.has(L)?"important":""):ke.removeProperty(L)}return ke}function wr(ke,de){const p=de?"":"none";ua(ke.style,{"touch-action":de?"":"none","-webkit-user-drag":de?"":"none","-webkit-tap-highlight-color":de?"":"transparent","user-select":p,"-ms-user-select":p,"-webkit-user-select":p,"-moz-user-select":p})}function Ca(ke,de,p){ua(ke.style,{position:de?"":"fixed",top:de?"":"0",opacity:de?"":"0",left:de?"":"-999em"},p)}function ha(ke,de){return de&&"none"!=de?ke+" "+de:ke}function Rr(ke){const de=ke.toLowerCase().indexOf("ms")>-1?1:1e3;return parseFloat(ke)*de}function Aa(ke,de){return ke.getPropertyValue(de).split(",").map(L=>L.trim())}function la(ke){const de=ke.getBoundingClientRect();return{top:de.top,right:de.right,bottom:de.bottom,left:de.left,width:de.width,height:de.height,x:de.x,y:de.y}}function ea(ke,de,p){const{top:L,bottom:H,left:_t,right:dt}=ke;return p>=L&&p<=H&&de>=_t&&de<=dt}function ma(ke,de,p){ke.top+=de,ke.bottom=ke.top+ke.height,ke.left+=p,ke.right=ke.left+ke.width}function jr(ke,de,p,L){const{top:H,right:_t,bottom:dt,left:jt,width:ci,height:xi}=ke,Oi=ci*de,zi=xi*de;return L>H-zi&&Ljt-Oi&&p<_t+Oi}class Z{constructor(de){this._document=de,this.positions=new Map}clear(){this.positions.clear()}cache(de){this.clear(),this.positions.set(this._document,{scrollPosition:this.getViewportScrollPosition()}),de.forEach(p=>{this.positions.set(p,{scrollPosition:{top:p.scrollTop,left:p.scrollLeft},clientRect:la(p)})})}handleScroll(de){const p=(0,Ye.oZ)(de),L=this.positions.get(p);if(!L)return null;const H=L.scrollPosition;let _t,dt;if(p===this._document){const xi=this.getViewportScrollPosition();_t=xi.top,dt=xi.left}else _t=p.scrollTop,dt=p.scrollLeft;const jt=H.top-_t,ci=H.left-dt;return this.positions.forEach((xi,Oi)=>{xi.clientRect&&p!==Oi&&p.contains(Oi)&&ma(xi.clientRect,jt,ci)}),H.top=_t,H.left=dt,{top:jt,left:ci}}getViewportScrollPosition(){return{top:window.scrollY,left:window.scrollX}}}function ne(ke){const de=ke.cloneNode(!0),p=de.querySelectorAll("[id]"),L=ke.nodeName.toLowerCase();de.removeAttribute("id");for(let H=0;Hwr(L,p)))}constructor(de,p,L,H,_t,dt){this._config=p,this._document=L,this._ngZone=H,this._viewportRuler=_t,this._dragDropRegistry=dt,this._passiveTransform={x:0,y:0},this._activeTransform={x:0,y:0},this._hasStartedDragging=!1,this._moveEvents=new _e.E,this._pointerMoveSubscription=Q.wH.EMPTY,this._pointerUpSubscription=Q.wH.EMPTY,this._scrollSubscription=Q.wH.EMPTY,this._resizeSubscription=Q.wH.EMPTY,this._boundaryElement=null,this._nativeInteractionsEnabled=!0,this._handles=[],this._disabledHandles=new Set,this._direction="ltr",this.dragStartDelay=0,this._disabled=!1,this.beforeStarted=new _e.E,this.started=new _e.E,this.released=new _e.E,this.ended=new _e.E,this.entered=new _e.E,this.exited=new _e.E,this.dropped=new _e.E,this.moved=this._moveEvents,this._pointerDown=jt=>{if(this.beforeStarted.next(),this._handles.length){const ci=this._getTargetHandle(jt);ci&&!this._disabledHandles.has(ci)&&!this.disabled&&this._initializeDragSequence(ci,jt)}else this.disabled||this._initializeDragSequence(this._rootElement,jt)},this._pointerMove=jt=>{const ci=this._getPointerPositionOnPage(jt);if(!this._hasStartedDragging){if(Math.abs(ci.x-this._pickupPositionOnPage.x)+Math.abs(ci.y-this._pickupPositionOnPage.y)>=this._config.dragStartThreshold){const Ji=Date.now()>=this._dragStartTime+this._getDragStartDelay(jt),D=this._dropContainer;if(!Ji)return void this._endDragSequence(jt);(!D||!D.isDragging()&&!D.isReceiving())&&(jt.preventDefault(),this._hasStartedDragging=!0,this._ngZone.run(()=>this._startDragSequence(jt)))}return}jt.preventDefault();const xi=this._getConstrainedPointerPosition(ci);if(this._hasMoved=!0,this._lastKnownPointerPosition=ci,this._updatePointerDirectionDelta(xi),this._dropContainer)this._updateActiveDropContainer(xi,ci);else{const Oi=this.constrainPosition?this._initialClientRect:this._pickupPositionOnPage,zi=this._activeTransform;zi.x=xi.x-Oi.x+this._passiveTransform.x,zi.y=xi.y-Oi.y+this._passiveTransform.y,this._applyRootElementTransform(zi.x,zi.y)}this._moveEvents.observers.length&&this._ngZone.run(()=>{this._moveEvents.next({source:this,pointerPosition:xi,event:jt,distance:this._getDragDistance(xi),delta:this._pointerDirectionDelta})})},this._pointerUp=jt=>{this._endDragSequence(jt)},this._nativeDragStart=jt=>{if(this._handles.length){const ci=this._getTargetHandle(jt);ci&&!this._disabledHandles.has(ci)&&!this.disabled&&jt.preventDefault()}else this.disabled||jt.preventDefault()},this.withRootElement(de).withParent(p.parentDragRef||null),this._parentPositions=new Z(L),dt.registerDragItem(this)}getPlaceholderElement(){return this._placeholder}getRootElement(){return this._rootElement}getVisibleElement(){return this.isDragging()?this.getPlaceholderElement():this.getRootElement()}withHandles(de){this._handles=de.map(L=>(0,kt.mk)(L)),this._handles.forEach(L=>wr(L,this.disabled)),this._toggleNativeDragInteractions();const p=new Set;return this._disabledHandles.forEach(L=>{this._handles.indexOf(L)>-1&&p.add(L)}),this._disabledHandles=p,this}withPreviewTemplate(de){return this._previewTemplate=de,this}withPlaceholderTemplate(de){return this._placeholderTemplate=de,this}withRootElement(de){const p=(0,kt.mk)(de);return p!==this._rootElement&&(this._rootElement&&this._removeRootElementListeners(this._rootElement),this._ngZone.runOutsideAngular(()=>{p.addEventListener("mousedown",this._pointerDown,dr),p.addEventListener("touchstart",this._pointerDown,Ui),p.addEventListener("dragstart",this._nativeDragStart,dr)}),this._initialTransform=void 0,this._rootElement=p),typeof SVGElement<"u"&&this._rootElement instanceof SVGElement&&(this._ownerSVGElement=this._rootElement.ownerSVGElement),this}withBoundaryElement(de){return this._boundaryElement=de?(0,kt.mk)(de):null,this._resizeSubscription.unsubscribe(),de&&(this._resizeSubscription=this._viewportRuler.change(10).subscribe(()=>this._containInsideBoundaryOnResize())),this}withParent(de){return this._parentDragRef=de,this}dispose(){this._removeRootElementListeners(this._rootElement),this.isDragging()&&this._rootElement?.remove(),this._anchor?.remove(),this._destroyPreview(),this._destroyPlaceholder(),this._dragDropRegistry.removeDragItem(this),this._removeSubscriptions(),this.beforeStarted.complete(),this.started.complete(),this.released.complete(),this.ended.complete(),this.entered.complete(),this.exited.complete(),this.dropped.complete(),this._moveEvents.complete(),this._handles=[],this._disabledHandles.clear(),this._dropContainer=void 0,this._resizeSubscription.unsubscribe(),this._parentPositions.clear(),this._boundaryElement=this._rootElement=this._ownerSVGElement=this._placeholderTemplate=this._previewTemplate=this._anchor=this._parentDragRef=null}isDragging(){return this._hasStartedDragging&&this._dragDropRegistry.isDragging(this)}reset(){this._rootElement.style.transform=this._initialTransform||"",this._activeTransform={x:0,y:0},this._passiveTransform={x:0,y:0}}disableHandle(de){!this._disabledHandles.has(de)&&this._handles.indexOf(de)>-1&&(this._disabledHandles.add(de),wr(de,!0))}enableHandle(de){this._disabledHandles.has(de)&&(this._disabledHandles.delete(de),wr(de,this.disabled))}withDirection(de){return this._direction=de,this}_withDropContainer(de){this._dropContainer=de}getFreeDragPosition(){const de=this.isDragging()?this._activeTransform:this._passiveTransform;return{x:de.x,y:de.y}}setFreeDragPosition(de){return this._activeTransform={x:0,y:0},this._passiveTransform.x=de.x,this._passiveTransform.y=de.y,this._dropContainer||this._applyRootElementTransform(de.x,de.y),this}withPreviewContainer(de){return this._previewContainer=de,this}_sortFromLastPointerPosition(){const de=this._lastKnownPointerPosition;de&&this._dropContainer&&this._updateActiveDropContainer(this._getConstrainedPointerPosition(de),de)}_removeSubscriptions(){this._pointerMoveSubscription.unsubscribe(),this._pointerUpSubscription.unsubscribe(),this._scrollSubscription.unsubscribe()}_destroyPreview(){this._preview?.remove(),this._previewRef?.destroy(),this._preview=this._previewRef=null}_destroyPlaceholder(){this._placeholder?.remove(),this._placeholderRef?.destroy(),this._placeholder=this._placeholderRef=null}_endDragSequence(de){if(this._dragDropRegistry.isDragging(this)&&(this._removeSubscriptions(),this._dragDropRegistry.stopDragging(this),this._toggleNativeDragInteractions(),this._handles&&(this._rootElement.style.webkitTapHighlightColor=this._rootElementTapHighlight),this._hasStartedDragging))if(this.released.next({source:this,event:de}),this._dropContainer)this._dropContainer._stopScrolling(),this._animatePreviewToPlaceholder().then(()=>{this._cleanupDragArtifacts(de),this._cleanupCachedDimensions(),this._dragDropRegistry.stopDragging(this)});else{this._passiveTransform.x=this._activeTransform.x;const p=this._getPointerPositionOnPage(de);this._passiveTransform.y=this._activeTransform.y,this._ngZone.run(()=>{this.ended.next({source:this,distance:this._getDragDistance(p),dropPoint:p,event:de})}),this._cleanupCachedDimensions(),this._dragDropRegistry.stopDragging(this)}}_startDragSequence(de){gn(de)&&(this._lastTouchEventTime=Date.now()),this._toggleNativeDragInteractions();const p=this._dropContainer;if(p){const L=this._rootElement,H=L.parentNode,_t=this._placeholder=this._createPlaceholderElement(),dt=this._anchor=this._anchor||this._document.createComment(""),jt=this._getShadowRoot();H.insertBefore(dt,L),this._initialTransform=L.style.transform||"",this._preview=this._createPreviewElement(),Ca(L,!1,Ur),this._document.body.appendChild(H.replaceChild(_t,L)),this._getPreviewInsertionPoint(H,jt).appendChild(this._preview),this.started.next({source:this,event:de}),p.start(),this._initialContainer=p,this._initialIndex=p.getItemIndex(this)}else this.started.next({source:this,event:de}),this._initialContainer=this._initialIndex=void 0;this._parentPositions.cache(p?p.getScrollableParents():[])}_initializeDragSequence(de,p){this._parentDragRef&&p.stopPropagation();const L=this.isDragging(),H=gn(p),_t=!H&&0!==p.button,dt=this._rootElement,jt=(0,Ye.oZ)(p),ci=!H&&this._lastTouchEventTime&&this._lastTouchEventTime+800>Date.now(),xi=H?(0,Bt.q0)(p):(0,Bt.G3)(p);if(jt&&jt.draggable&&"mousedown"===p.type&&p.preventDefault(),L||_t||ci||xi)return;if(this._handles.length){const Mn=dt.style;this._rootElementTapHighlight=Mn.webkitTapHighlightColor||"",Mn.webkitTapHighlightColor="transparent"}this._hasStartedDragging=this._hasMoved=!1,this._removeSubscriptions(),this._initialClientRect=this._rootElement.getBoundingClientRect(),this._pointerMoveSubscription=this._dragDropRegistry.pointerMove.subscribe(this._pointerMove),this._pointerUpSubscription=this._dragDropRegistry.pointerUp.subscribe(this._pointerUp),this._scrollSubscription=this._dragDropRegistry.scrolled(this._getShadowRoot()).subscribe(Mn=>this._updateOnScroll(Mn)),this._boundaryElement&&(this._boundaryRect=la(this._boundaryElement));const Oi=this._previewTemplate;this._pickupPositionInElement=Oi&&Oi.template&&!Oi.matchSize?{x:0,y:0}:this._getPointerPositionInElement(this._initialClientRect,de,p);const zi=this._pickupPositionOnPage=this._lastKnownPointerPosition=this._getPointerPositionOnPage(p);this._pointerDirectionDelta={x:0,y:0},this._pointerPositionAtLastDirectionChange={x:zi.x,y:zi.y},this._dragStartTime=Date.now(),this._dragDropRegistry.startDragging(this,p)}_cleanupDragArtifacts(de){Ca(this._rootElement,!0,Ur),this._anchor.parentNode.replaceChild(this._rootElement,this._anchor),this._destroyPreview(),this._destroyPlaceholder(),this._initialClientRect=this._boundaryRect=this._previewRect=this._initialTransform=void 0,this._ngZone.run(()=>{const p=this._dropContainer,L=p.getItemIndex(this),H=this._getPointerPositionOnPage(de),_t=this._getDragDistance(H),dt=p._isOverContainer(H.x,H.y);this.ended.next({source:this,distance:_t,dropPoint:H,event:de}),this.dropped.next({item:this,currentIndex:L,previousIndex:this._initialIndex,container:p,previousContainer:this._initialContainer,isPointerOverContainer:dt,distance:_t,dropPoint:H,event:de}),p.drop(this,L,this._initialIndex,this._initialContainer,dt,_t,H,de),this._dropContainer=this._initialContainer})}_updateActiveDropContainer({x:de,y:p},{x:L,y:H}){let _t=this._initialContainer._getSiblingContainerFromPosition(this,de,p);!_t&&this._dropContainer!==this._initialContainer&&this._initialContainer._isOverContainer(de,p)&&(_t=this._initialContainer),_t&&_t!==this._dropContainer&&this._ngZone.run(()=>{this.exited.next({item:this,container:this._dropContainer}),this._dropContainer.exit(this),this._dropContainer=_t,this._dropContainer.enter(this,de,p,_t===this._initialContainer&&_t.sortingDisabled?this._initialIndex:void 0),this.entered.next({item:this,container:_t,currentIndex:_t.getItemIndex(this)})}),this.isDragging()&&(this._dropContainer._startScrollingIfNecessary(L,H),this._dropContainer._sortItem(this,de,p,this._pointerDirectionDelta),this.constrainPosition?this._applyPreviewTransform(de,p):this._applyPreviewTransform(de-this._pickupPositionInElement.x,p-this._pickupPositionInElement.y))}_createPreviewElement(){const de=this._previewTemplate,p=this.previewClass,L=de?de.template:null;let H;if(L&&de){const _t=de.matchSize?this._initialClientRect:null,dt=de.viewContainer.createEmbeddedView(L,de.context);dt.detectChanges(),H=La(dt,this._document),this._previewRef=dt,de.matchSize?Ka(H,_t):H.style.transform=yn(this._pickupPositionOnPage.x,this._pickupPositionOnPage.y)}else H=ne(this._rootElement),Ka(H,this._initialClientRect),this._initialTransform&&(H.style.transform=this._initialTransform);return ua(H.style,{"pointer-events":"none",margin:"0",position:"fixed",top:"0",left:"0","z-index":`${this._config.zIndex||1e3}`},Ur),wr(H,!1),H.classList.add("cdk-drag-preview"),H.setAttribute("dir",this._direction),p&&(Array.isArray(p)?p.forEach(_t=>H.classList.add(_t)):H.classList.add(p)),H}_animatePreviewToPlaceholder(){if(!this._hasMoved)return Promise.resolve();const de=this._placeholder.getBoundingClientRect();this._preview.classList.add("cdk-drag-animating"),this._applyPreviewTransform(de.left,de.top);const p=function Ya(ke){const de=getComputedStyle(ke),p=Aa(de,"transition-property"),L=p.find(jt=>"transform"===jt||"all"===jt);if(!L)return 0;const H=p.indexOf(L),_t=Aa(de,"transition-duration"),dt=Aa(de,"transition-delay");return Rr(_t[H])+Rr(dt[H])}(this._preview);return 0===p?Promise.resolve():this._ngZone.runOutsideAngular(()=>new Promise(L=>{const H=dt=>{(!dt||(0,Ye.oZ)(dt)===this._preview&&"transform"===dt.propertyName)&&(this._preview?.removeEventListener("transitionend",H),L(),clearTimeout(_t))},_t=setTimeout(H,1.5*p);this._preview.addEventListener("transitionend",H)}))}_createPlaceholderElement(){const de=this._placeholderTemplate,p=de?de.template:null;let L;return p?(this._placeholderRef=de.viewContainer.createEmbeddedView(p,de.context),this._placeholderRef.detectChanges(),L=La(this._placeholderRef,this._document)):L=ne(this._rootElement),L.style.pointerEvents="none",L.classList.add("cdk-drag-placeholder"),L}_getPointerPositionInElement(de,p,L){const H=p===this._rootElement?null:p,_t=H?H.getBoundingClientRect():de,dt=gn(L)?L.targetTouches[0]:L,jt=this._getViewportScrollPosition();return{x:_t.left-de.left+(dt.pageX-_t.left-jt.left),y:_t.top-de.top+(dt.pageY-_t.top-jt.top)}}_getPointerPositionOnPage(de){const p=this._getViewportScrollPosition(),L=gn(de)?de.touches[0]||de.changedTouches[0]||{pageX:0,pageY:0}:de,H=L.pageX-p.left,_t=L.pageY-p.top;if(this._ownerSVGElement){const dt=this._ownerSVGElement.getScreenCTM();if(dt){const jt=this._ownerSVGElement.createSVGPoint();return jt.x=H,jt.y=_t,jt.matrixTransform(dt.inverse())}}return{x:H,y:_t}}_getConstrainedPointerPosition(de){const p=this._dropContainer?this._dropContainer.lockAxis:null;let{x:L,y:H}=this.constrainPosition?this.constrainPosition(de,this,this._initialClientRect,this._pickupPositionInElement):de;if("x"===this.lockAxis||"x"===p?H=this._pickupPositionOnPage.y-(this.constrainPosition?this._pickupPositionInElement.y:0):("y"===this.lockAxis||"y"===p)&&(L=this._pickupPositionOnPage.x-(this.constrainPosition?this._pickupPositionInElement.x:0)),this._boundaryRect){const{x:_t,y:dt}=this.constrainPosition?{x:0,y:0}:this._pickupPositionInElement,jt=this._boundaryRect,{width:ci,height:xi}=this._getPreviewRect(),Oi=jt.top+dt,zi=jt.bottom-(xi-dt);L=ka(L,jt.left+_t,jt.right-(ci-_t)),H=ka(H,Oi,zi)}return{x:L,y:H}}_updatePointerDirectionDelta(de){const{x:p,y:L}=de,H=this._pointerDirectionDelta,_t=this._pointerPositionAtLastDirectionChange,dt=Math.abs(p-_t.x),jt=Math.abs(L-_t.y);return dt>this._config.pointerDirectionChangeThreshold&&(H.x=p>_t.x?1:-1,_t.x=p),jt>this._config.pointerDirectionChangeThreshold&&(H.y=L>_t.y?1:-1,_t.y=L),H}_toggleNativeDragInteractions(){if(!this._rootElement||!this._handles)return;const de=this._handles.length>0||!this.isDragging();de!==this._nativeInteractionsEnabled&&(this._nativeInteractionsEnabled=de,wr(this._rootElement,de))}_removeRootElementListeners(de){de.removeEventListener("mousedown",this._pointerDown,dr),de.removeEventListener("touchstart",this._pointerDown,Ui),de.removeEventListener("dragstart",this._nativeDragStart,dr)}_applyRootElementTransform(de,p){const L=yn(de,p),H=this._rootElement.style;null==this._initialTransform&&(this._initialTransform=H.transform&&"none"!=H.transform?H.transform:""),H.transform=ha(L,this._initialTransform)}_applyPreviewTransform(de,p){const L=this._previewTemplate?.template?void 0:this._initialTransform,H=yn(de,p);this._preview.style.transform=ha(H,L)}_getDragDistance(de){const p=this._pickupPositionOnPage;return p?{x:de.x-p.x,y:de.y-p.y}:{x:0,y:0}}_cleanupCachedDimensions(){this._boundaryRect=this._previewRect=void 0,this._parentPositions.clear()}_containInsideBoundaryOnResize(){let{x:de,y:p}=this._passiveTransform;if(0===de&&0===p||this.isDragging()||!this._boundaryElement)return;const L=this._rootElement.getBoundingClientRect(),H=this._boundaryElement.getBoundingClientRect();if(0===H.width&&0===H.height||0===L.width&&0===L.height)return;const _t=H.left-L.left,dt=L.right-H.right,jt=H.top-L.top,ci=L.bottom-H.bottom;H.width>L.width?(_t>0&&(de+=_t),dt>0&&(de-=dt)):de=0,H.height>L.height?(jt>0&&(p+=jt),ci>0&&(p-=ci)):p=0,(de!==this._passiveTransform.x||p!==this._passiveTransform.y)&&this.setFreeDragPosition({y:p,x:de})}_getDragStartDelay(de){const p=this.dragStartDelay;return"number"==typeof p?p:gn(de)?p.touch:p?p.mouse:0}_updateOnScroll(de){const p=this._parentPositions.handleScroll(de);if(p){const L=(0,Ye.oZ)(de);this._boundaryRect&&L!==this._boundaryElement&&L.contains(this._boundaryElement)&&ma(this._boundaryRect,p.top,p.left),this._pickupPositionOnPage.x+=p.left,this._pickupPositionOnPage.y+=p.top,this._dropContainer||(this._activeTransform.x-=p.left,this._activeTransform.y-=p.top,this._applyRootElementTransform(this._activeTransform.x,this._activeTransform.y))}}_getViewportScrollPosition(){return this._parentPositions.positions.get(this._document)?.scrollPosition||this._parentPositions.getViewportScrollPosition()}_getShadowRoot(){return void 0===this._cachedShadowRoot&&(this._cachedShadowRoot=(0,Ye.C8)(this._rootElement)),this._cachedShadowRoot}_getPreviewInsertionPoint(de,p){const L=this._previewContainer||"global";if("parent"===L)return de;if("global"===L){const H=this._document;return p||H.fullscreenElement||H.webkitFullscreenElement||H.mozFullScreenElement||H.msFullscreenElement||H.body}return(0,kt.mk)(L)}_getPreviewRect(){return(!this._previewRect||!this._previewRect.width&&!this._previewRect.height)&&(this._previewRect=this._preview?this._preview.getBoundingClientRect():this._initialClientRect),this._previewRect}_getTargetHandle(de){return this._handles.find(p=>de.target&&(de.target===p||p.contains(de.target)))}}function yn(ke,de){return`translate3d(${Math.round(ke)}px, ${Math.round(de)}px, 0)`}function ka(ke,de,p){return Math.max(de,Math.min(p,ke))}function gn(ke){return"t"===ke.type[0]}function La(ke,de){const p=ke.rootNodes;if(1===p.length&&p[0].nodeType===de.ELEMENT_NODE)return p[0];const L=de.createElement("div");return p.forEach(H=>L.appendChild(H)),L}function Ka(ke,de){ke.style.width=`${de.width}px`,ke.style.height=`${de.height}px`,ke.style.transform=yn(de.left,de.top)}function ia(ke,de){return Math.max(0,Math.min(de,ke))}class ur{constructor(de,p){this._element=de,this._dragDropRegistry=p,this._itemPositions=[],this.orientation="vertical",this._previousSwap={drag:null,delta:0,overlaps:!1}}start(de){this.withItems(de)}sort(de,p,L,H){const _t=this._itemPositions,dt=this._getItemIndexFromPointerPosition(de,p,L,H);if(-1===dt&&_t.length>0)return null;const jt="horizontal"===this.orientation,ci=_t.findIndex(F=>F.drag===de),xi=_t[dt],zi=xi.clientRect,Mn=ci>dt?1:-1,Ji=this._getItemOffsetPx(_t[ci].clientRect,zi,Mn),D=this._getSiblingOffsetPx(ci,_t,Mn),he=_t.slice();return function us(ke,de,p){const L=ia(de,ke.length-1),H=ia(p,ke.length-1);if(L===H)return;const _t=ke[L],dt=H{if(he[q]===F)return;const ft=F.drag===de,Qt=ft?Ji:D,hi=ft?de.getPlaceholderElement():F.drag.getRootElement();F.offset+=Qt,jt?(hi.style.transform=ha(`translate3d(${Math.round(F.offset)}px, 0, 0)`,F.initialTransform),ma(F.clientRect,0,Qt)):(hi.style.transform=ha(`translate3d(0, ${Math.round(F.offset)}px, 0)`,F.initialTransform),ma(F.clientRect,Qt,0))}),this._previousSwap.overlaps=ea(zi,p,L),this._previousSwap.drag=xi.drag,this._previousSwap.delta=jt?H.x:H.y,{previousIndex:ci,currentIndex:dt}}enter(de,p,L,H){const _t=null==H||H<0?this._getItemIndexFromPointerPosition(de,p,L):H,dt=this._activeDraggables,jt=dt.indexOf(de),ci=de.getPlaceholderElement();let xi=dt[_t];if(xi===de&&(xi=dt[_t+1]),!xi&&(null==_t||-1===_t||_t-1&&dt.splice(jt,1),xi&&!this._dragDropRegistry.isDragging(xi)){const Oi=xi.getRootElement();Oi.parentElement.insertBefore(ci,Oi),dt.splice(_t,0,de)}else(0,kt.mk)(this._element).appendChild(ci),dt.push(de);ci.style.transform="",this._cacheItemPositions()}withItems(de){this._activeDraggables=de.slice(),this._cacheItemPositions()}withSortPredicate(de){this._sortPredicate=de}reset(){this._activeDraggables.forEach(de=>{const p=de.getRootElement();if(p){const L=this._itemPositions.find(H=>H.drag===de)?.initialTransform;p.style.transform=L||""}}),this._itemPositions=[],this._activeDraggables=[],this._previousSwap.drag=null,this._previousSwap.delta=0,this._previousSwap.overlaps=!1}getActiveItemsSnapshot(){return this._activeDraggables}getItemIndex(de){return("horizontal"===this.orientation&&"rtl"===this.direction?this._itemPositions.slice().reverse():this._itemPositions).findIndex(L=>L.drag===de)}updateOnScroll(de,p){this._itemPositions.forEach(({clientRect:L})=>{ma(L,de,p)}),this._itemPositions.forEach(({drag:L})=>{this._dragDropRegistry.isDragging(L)&&L._sortFromLastPointerPosition()})}_cacheItemPositions(){const de="horizontal"===this.orientation;this._itemPositions=this._activeDraggables.map(p=>{const L=p.getVisibleElement();return{drag:p,offset:0,initialTransform:L.style.transform||"",clientRect:la(L)}}).sort((p,L)=>de?p.clientRect.left-L.clientRect.left:p.clientRect.top-L.clientRect.top)}_getItemOffsetPx(de,p,L){const H="horizontal"===this.orientation;let _t=H?p.left-de.left:p.top-de.top;return-1===L&&(_t+=H?p.width-de.width:p.height-de.height),_t}_getSiblingOffsetPx(de,p,L){const H="horizontal"===this.orientation,_t=p[de].clientRect,dt=p[de+-1*L];let jt=_t[H?"width":"height"]*L;if(dt){const ci=H?"left":"top",xi=H?"right":"bottom";-1===L?jt-=dt.clientRect[ci]-_t[xi]:jt+=_t[ci]-dt.clientRect[xi]}return jt}_shouldEnterAsFirstChild(de,p){if(!this._activeDraggables.length)return!1;const L=this._itemPositions,H="horizontal"===this.orientation;if(L[0].drag!==this._activeDraggables[0]){const dt=L[L.length-1].clientRect;return H?de>=dt.right:p>=dt.bottom}{const dt=L[0].clientRect;return H?de<=dt.left:p<=dt.top}}_getItemIndexFromPointerPosition(de,p,L,H){const _t="horizontal"===this.orientation,dt=this._itemPositions.findIndex(({drag:jt,clientRect:ci})=>jt!==de&&((!H||jt!==this._previousSwap.drag||!this._previousSwap.overlaps||(_t?H.x:H.y)!==this._previousSwap.delta)&&(_t?p>=Math.floor(ci.left)&&p=Math.floor(ci.top)&&L!0,this.sortPredicate=()=>!0,this.beforeStarted=new _e.E,this.entered=new _e.E,this.exited=new _e.E,this.dropped=new _e.E,this.sorted=new _e.E,this.receivingStarted=new _e.E,this.receivingStopped=new _e.E,this._isDragging=!1,this._draggables=[],this._siblings=[],this._activeSiblings=new Set,this._viewportScrollSubscription=Q.wH.EMPTY,this._verticalScrollDirection=0,this._horizontalScrollDirection=0,this._stopScrollTimers=new _e.E,this._cachedShadowRoot=null,this._startScrollInterval=()=>{this._stopScrolling(),function Pn(ke=0,de=Lr.M){return ke<0&&(ke=0),(0,mr.k)(ke,ke,de)}(0,Da.A).pipe((0,pi.a)(this._stopScrollTimers)).subscribe(()=>{const dt=this._scrollNode,jt=this.autoScrollStep;1===this._verticalScrollDirection?dt.scrollBy(0,-jt):2===this._verticalScrollDirection&&dt.scrollBy(0,jt),1===this._horizontalScrollDirection?dt.scrollBy(-jt,0):2===this._horizontalScrollDirection&&dt.scrollBy(jt,0)})},this.element=(0,kt.mk)(de),this._document=L,this.withScrollableParents([this.element]),p.registerDropContainer(this),this._parentPositions=new Z(L),this._sortStrategy=new ur(this.element,p),this._sortStrategy.withSortPredicate((dt,jt)=>this.sortPredicate(dt,jt,this))}dispose(){this._stopScrolling(),this._stopScrollTimers.complete(),this._viewportScrollSubscription.unsubscribe(),this.beforeStarted.complete(),this.entered.complete(),this.exited.complete(),this.dropped.complete(),this.sorted.complete(),this.receivingStarted.complete(),this.receivingStopped.complete(),this._activeSiblings.clear(),this._scrollNode=null,this._parentPositions.clear(),this._dragDropRegistry.removeDropContainer(this)}isDragging(){return this._isDragging}start(){this._draggingStarted(),this._notifyReceivingSiblings()}enter(de,p,L,H){this._draggingStarted(),null==H&&this.sortingDisabled&&(H=this._draggables.indexOf(de)),this._sortStrategy.enter(de,p,L,H),this._cacheParentPositions(),this._notifyReceivingSiblings(),this.entered.next({item:de,container:this,currentIndex:this.getItemIndex(de)})}exit(de){this._reset(),this.exited.next({item:de,container:this})}drop(de,p,L,H,_t,dt,jt,ci={}){this._reset(),this.dropped.next({item:de,currentIndex:p,previousIndex:L,container:this,previousContainer:H,isPointerOverContainer:_t,distance:dt,dropPoint:jt,event:ci})}withItems(de){const p=this._draggables;return this._draggables=de,de.forEach(L=>L._withDropContainer(this)),this.isDragging()&&(p.filter(H=>H.isDragging()).every(H=>-1===de.indexOf(H))?this._reset():this._sortStrategy.withItems(this._draggables)),this}withDirection(de){return this._sortStrategy.direction=de,this}connectedTo(de){return this._siblings=de.slice(),this}withOrientation(de){return this._sortStrategy.orientation=de,this}withScrollableParents(de){const p=(0,kt.mk)(this.element);return this._scrollableElements=-1===de.indexOf(p)?[p,...de]:de.slice(),this}getScrollableParents(){return this._scrollableElements}getItemIndex(de){return this._isDragging?this._sortStrategy.getItemIndex(de):this._draggables.indexOf(de)}isReceiving(){return this._activeSiblings.size>0}_sortItem(de,p,L,H){if(this.sortingDisabled||!this._clientRect||!jr(this._clientRect,.05,p,L))return;const _t=this._sortStrategy.sort(de,p,L,H);_t&&this.sorted.next({previousIndex:_t.previousIndex,currentIndex:_t.currentIndex,container:this,item:de})}_startScrollingIfNecessary(de,p){if(this.autoScrollDisabled)return;let L,H=0,_t=0;if(this._parentPositions.positions.forEach((dt,jt)=>{jt===this._document||!dt.clientRect||L||jr(dt.clientRect,.05,de,p)&&([H,_t]=function pa(ke,de,p,L){const H=Kn(de,L),_t=Ha(de,p);let dt=0,jt=0;if(H){const ci=ke.scrollTop;1===H?ci>0&&(dt=1):ke.scrollHeight-ci>ke.clientHeight&&(dt=2)}if(_t){const ci=ke.scrollLeft;1===_t?ci>0&&(jt=1):ke.scrollWidth-ci>ke.clientWidth&&(jt=2)}return[dt,jt]}(jt,dt.clientRect,de,p),(H||_t)&&(L=jt))}),!H&&!_t){const{width:dt,height:jt}=this._viewportRuler.getViewportSize(),ci={width:dt,height:jt,top:0,right:dt,bottom:jt,left:0};H=Kn(ci,p),_t=Ha(ci,de),L=window}L&&(H!==this._verticalScrollDirection||_t!==this._horizontalScrollDirection||L!==this._scrollNode)&&(this._verticalScrollDirection=H,this._horizontalScrollDirection=_t,this._scrollNode=L,(H||_t)&&L?this._ngZone.runOutsideAngular(this._startScrollInterval):this._stopScrolling())}_stopScrolling(){this._stopScrollTimers.next()}_draggingStarted(){const de=(0,kt.mk)(this.element).style;this.beforeStarted.next(),this._isDragging=!0,this._initialScrollSnap=de.msScrollSnapType||de.scrollSnapType||"",de.scrollSnapType=de.msScrollSnapType="none",this._sortStrategy.start(this._draggables),this._cacheParentPositions(),this._viewportScrollSubscription.unsubscribe(),this._listenToScrollEvents()}_cacheParentPositions(){const de=(0,kt.mk)(this.element);this._parentPositions.cache(this._scrollableElements),this._clientRect=this._parentPositions.positions.get(de).clientRect}_reset(){this._isDragging=!1;const de=(0,kt.mk)(this.element).style;de.scrollSnapType=de.msScrollSnapType=this._initialScrollSnap,this._siblings.forEach(p=>p._stopReceiving(this)),this._sortStrategy.reset(),this._stopScrolling(),this._viewportScrollSubscription.unsubscribe(),this._parentPositions.clear()}_isOverContainer(de,p){return null!=this._clientRect&&ea(this._clientRect,de,p)}_getSiblingContainerFromPosition(de,p,L){return this._siblings.find(H=>H._canReceive(de,p,L))}_canReceive(de,p,L){if(!this._clientRect||!ea(this._clientRect,p,L)||!this.enterPredicate(de,this))return!1;const H=this._getShadowRoot().elementFromPoint(p,L);if(!H)return!1;const _t=(0,kt.mk)(this.element);return H===_t||_t.contains(H)}_startReceiving(de,p){const L=this._activeSiblings;!L.has(de)&&p.every(H=>this.enterPredicate(H,this)||this._draggables.indexOf(H)>-1)&&(L.add(de),this._cacheParentPositions(),this._listenToScrollEvents(),this.receivingStarted.next({initiator:de,receiver:this,items:p}))}_stopReceiving(de){this._activeSiblings.delete(de),this._viewportScrollSubscription.unsubscribe(),this.receivingStopped.next({initiator:de,receiver:this})}_listenToScrollEvents(){this._viewportScrollSubscription=this._dragDropRegistry.scrolled(this._getShadowRoot()).subscribe(de=>{if(this.isDragging()){const p=this._parentPositions.handleScroll(de);p&&this._sortStrategy.updateOnScroll(p.top,p.left)}else this.isReceiving()&&this._cacheParentPositions()})}_getShadowRoot(){if(!this._cachedShadowRoot){const de=(0,Ye.C8)((0,kt.mk)(this.element));this._cachedShadowRoot=de||this._document}return this._cachedShadowRoot}_notifyReceivingSiblings(){const de=this._sortStrategy.getActiveItemsSnapshot().filter(p=>p.isDragging());this._siblings.forEach(p=>p._startReceiving(this,de))}}function Kn(ke,de){const{top:p,bottom:L,height:H}=ke,_t=.05*H;return de>=p-_t&&de<=p+_t?1:de>=L-_t&&de<=L+_t?2:0}function Ha(ke,de){const{left:p,right:L,width:H}=ke,_t=.05*H;return de>=p-_t&&de<=p+_t?1:de>=L-_t&&de<=L+_t?2:0}const Ea=(0,Ye.W4)({passive:!1,capture:!0});let ce=(()=>{class ke{constructor(p,L){this._ngZone=p,this._dropInstances=new Set,this._dragInstances=new Set,this._activeDragInstances=[],this._globalListeners=new Map,this._draggingPredicate=H=>H.isDragging(),this.pointerMove=new _e.E,this.pointerUp=new _e.E,this.scroll=new _e.E,this._preventDefaultWhileDragging=H=>{this._activeDragInstances.length>0&&H.preventDefault()},this._persistentTouchmoveListener=H=>{this._activeDragInstances.length>0&&(this._activeDragInstances.some(this._draggingPredicate)&&H.preventDefault(),this.pointerMove.next(H))},this._document=L}registerDropContainer(p){this._dropInstances.has(p)||this._dropInstances.add(p)}registerDragItem(p){this._dragInstances.add(p),1===this._dragInstances.size&&this._ngZone.runOutsideAngular(()=>{this._document.addEventListener("touchmove",this._persistentTouchmoveListener,Ea)})}removeDropContainer(p){this._dropInstances.delete(p)}removeDragItem(p){this._dragInstances.delete(p),this.stopDragging(p),0===this._dragInstances.size&&this._document.removeEventListener("touchmove",this._persistentTouchmoveListener,Ea)}startDragging(p,L){if(!(this._activeDragInstances.indexOf(p)>-1)&&(this._activeDragInstances.push(p),1===this._activeDragInstances.length)){const H=L.type.startsWith("touch");this._globalListeners.set(H?"touchend":"mouseup",{handler:_t=>this.pointerUp.next(_t),options:!0}).set("scroll",{handler:_t=>this.scroll.next(_t),options:!0}).set("selectstart",{handler:this._preventDefaultWhileDragging,options:Ea}),H||this._globalListeners.set("mousemove",{handler:_t=>this.pointerMove.next(_t),options:Ea}),this._ngZone.runOutsideAngular(()=>{this._globalListeners.forEach((_t,dt)=>{this._document.addEventListener(dt,_t.handler,_t.options)})})}}stopDragging(p){const L=this._activeDragInstances.indexOf(p);L>-1&&(this._activeDragInstances.splice(L,1),0===this._activeDragInstances.length&&this._clearGlobalListeners())}isDragging(p){return this._activeDragInstances.indexOf(p)>-1}scrolled(p){const L=[this.scroll];return p&&p!==this._document&&L.push(new Or._(H=>this._ngZone.runOutsideAngular(()=>{const dt=jt=>{this._activeDragInstances.length&&H.next(jt)};return p.addEventListener("scroll",dt,!0),()=>{p.removeEventListener("scroll",dt,!0)}}))),(0,Re.U)(...L)}ngOnDestroy(){this._dragInstances.forEach(p=>this.removeDragItem(p)),this._dropInstances.forEach(p=>this.removeDropContainer(p)),this._clearGlobalListeners(),this.pointerMove.complete(),this.pointerUp.complete()}_clearGlobalListeners(){this._globalListeners.forEach((p,L)=>{this._document.removeEventListener(L,p.handler,p.options)}),this._globalListeners.clear()}static#e=this.\u0275fac=function(L){return new(L||ke)(i.CoB(i.WW2),i.CoB(s.Ud))};static#t=this.\u0275prov=i.wxM({token:ke,factory:ke.\u0275fac,providedIn:"root"})}return ke})();const M={dragStartThreshold:5,pointerDirectionChangeThreshold:5};let I=(()=>{class ke{constructor(p,L,H,_t){this._document=p,this._ngZone=L,this._viewportRuler=H,this._dragDropRegistry=_t}createDrag(p,L=M){return new ta(p,L,this._document,this._ngZone,this._viewportRuler,this._dragDropRegistry)}createDropList(p){return new Fr(p,this._dragDropRegistry,this._document,this._ngZone,this._viewportRuler)}static#e=this.\u0275fac=function(L){return new(L||ke)(i.CoB(s.Ud),i.CoB(i.WW2),i.CoB(tt.S8),i.CoB(ce))};static#t=this.\u0275prov=i.wxM({token:ke,factory:ke.\u0275fac,providedIn:"root"})}return ke})(),tr=(()=>{class ke{static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({providers:[I],imports:[tt.uU]})}return ke})();var na=d(2060),Nr=d(5496),ti=d(3892);let Wr=(()=>{class ke{static forRoot(){return{ngModule:ke,providers:[]}}static#e=this.\u0275fac=function(L){return new(L||ke)};static#t=this.\u0275mod=i.a4G({type:ke});static#i=this.\u0275inj=i.s3X({providers:[{provide:a.Wu,useClass:Y,deps:[a.KQ]},{provide:a.IR,useValue:J},{provide:i.KYU,useValue:"en-gb"}],imports:[s.MD,ae,xe.sb,Vr.oB,ht.Gm,Ee.oJ,Ht.iI,vt.CQ,Mt.NR,cr.Ko,Ge.cN,ar.uE,$n,at.iU,Te,Nn.If,yr.sr,fe.WG,Cn.KO,Ze.d5,qr.w5,_r,Zt,pt.GE,Pe.g,Ie.Vn,an,tr,Yn.Su,na.E$,Nr.U,ti.c,s.MD,xe.sb,Vr.oB,ht.Gm,Ee.oJ,Ht.iI,vt.CQ,Mt.NR,cr.Ko,Ge.cN,ar.uE,le._A,$n,at.iU,Te,Nn.If,yr.sr,fe.WG,Cn.KO,Ze.d5,qr.w5,_r,Zt,pt.GE,Pe.g,Ie.Vn,an,tr,Yn.Su,na.E$,Nr.U,ti.c]})}return ke})()},9588:(lt,me,d)=>{"use strict";d.d(me,{k:()=>Rt});var i=d(2992),s=d(2116),a=d(5784),h=d(2978),l=d(2276);d(7712);let an=(()=>{class A{}return A.\u0275fac=function(re){return new(re||A)},A.\u0275mod=s.a4G({type:A}),A.\u0275inj=s.s3X({imports:[a.Ft]}),A})();var Xn=d(1368);let gi=(()=>{class A{constructor(re,mt){(0,Xn.uf)(mt)&&!re&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(re,mt=[]){return{ngModule:A,providers:re.serverLoaded?[{provide:a.wp,useValue:{...a.QV,...re}},{provide:a.Q9,useValue:mt,multi:!0},{provide:a._X,useValue:!0}]:[{provide:a.wp,useValue:{...a.QV,...re}},{provide:a.Q9,useValue:mt,multi:!0}]}}}return A.\u0275fac=function(re){return new(re||A)(s.CoB(a._X),s.CoB(s.AHE))},A.\u0275mod=s.a4G({type:A}),A.\u0275inj=s.s3X({imports:[l.nQ,h.fu,an,l.nQ,h.fu,an]}),A})();var Me=d(6504),qe=d(6212);let Rt=(()=>{class A{static#e=this.\u0275fac=function(mt){return new(mt||A)};static#t=this.\u0275mod=s.a4G({type:A});static#i=this.\u0275inj=s.s3X({imports:[i.qQ,qe.a,Me.y,Me.sl,gi,Me.y,Me.sl,gi,qe.a]})}return A})()},6716:(lt,me,d)=>{"use strict";d.d(me,{O:()=>s});var i=d(8656);const s={production:!0,logLevel:i.qI.OFF,serverLogLevel:i.qI.ERROR,ServeurURL:"http://localhost:3000"}},660:(lt,me,d)=>{"use strict";var i=d(4476),s=d(2116),a=d(9684);function l(ce){return new s.OBp(3e3,!1)}function xt(ce){switch(ce.length){case 0:return new a.kP;case 1:return ce[0];default:return new a.Wq(ce)}}function Ne(ce,M,I=new Map,G=new Map){const pe=[],Qe=[];let Ct=-1,Pt=null;if(M.forEach(qt=>{const ai=qt.get("offset"),ui=ai==Ct,Si=ui&&Pt||new Map;qt.forEach((cn,$i)=>{let Gi=$i,Wi=cn;if("offset"!==$i)switch(Gi=ce.normalizePropertyName(Gi,pe),Wi){case a.aM:Wi=I.get($i);break;case a.AN:Wi=G.get($i);break;default:Wi=ce.normalizeStyleValue($i,Gi,Wi,pe)}Si.set(Gi,Wi)}),ui||Qe.push(Si),Pt=Si,Ct=ai}),pe.length)throw function oe(ce){return new s.OBp(3502,!1)}();return Qe}function be(ce,M,I,G){switch(M){case"start":ce.onStart(()=>G(I&&j(I,"start",ce)));break;case"done":ce.onDone(()=>G(I&&j(I,"done",ce)));break;case"destroy":ce.onDestroy(()=>G(I&&j(I,"destroy",ce)))}}function j(ce,M,I){const Qe=we(ce.element,ce.triggerName,ce.fromState,ce.toState,M||ce.phaseName,I.totalTime??ce.totalTime,!!I.disabled),Ct=ce._data;return null!=Ct&&(Qe._data=Ct),Qe}function we(ce,M,I,G,pe="",Qe=0,Ct){return{element:ce,triggerName:M,fromState:I,toState:G,phaseName:pe,totalTime:Qe,disabled:!!Ct}}function N(ce,M,I){let G=ce.get(M);return G||ce.set(M,G=I),G}function U(ce){const M=ce.indexOf(":");return[ce.substring(1,M),ce.slice(M+1)]}const Fe=typeof document>"u"?null:document.documentElement;function Tt(ce){const M=ce.parentNode||ce.host||null;return M===Fe?null:M}let Lt=null,Kt=!1;function wt(ce,M){for(;M;){if(M===ce)return!0;M=Tt(M)}return!1}function zt(ce,M,I){if(I)return Array.from(ce.querySelectorAll(M));const G=ce.querySelector(M);return G?[G]:[]}let ve=(()=>{class ce{validateStyleProperty(I){return function Ut(ce){Lt||(Lt=function Mi(){return typeof document<"u"?document.body:null}()||{},Kt=!!Lt.style&&"WebkitAppearance"in Lt.style);let M=!0;return Lt.style&&!function Ke(ce){return"ebkit"==ce.substring(1,6)}(ce)&&(M=ce in Lt.style,!M&&Kt&&(M="Webkit"+ce.charAt(0).toUpperCase()+ce.slice(1)in Lt.style)),M}(I)}matchesElement(I,G){return!1}containsElement(I,G){return wt(I,G)}getParentElement(I){return Tt(I)}query(I,G,pe){return zt(I,G,pe)}computeStyle(I,G,pe){return pe||""}animate(I,G,pe,Qe,Ct,Pt=[],qt){return new a.kP(pe,Qe)}static#e=this.\u0275fac=function(G){return new(G||ce)};static#t=this.\u0275prov=s.wxM({token:ce,factory:ce.\u0275fac})}return ce})();class Te{static#e=this.NOOP=new ve}class at{}const pt=1e3,Pe="ng-enter",ht="ng-leave",Ht="ng-trigger",vt=".ng-trigger",Mt="ng-animating",fe=".ng-animating";function it(ce){if("number"==typeof ce)return ce;const M=ce.match(/^(-?[\.\d]+)(m?s)/);return!M||M.length<2?0:Et(parseFloat(M[1]),M[2])}function Et(ce,M){return"s"===M?ce*pt:ce}function ct(ce,M,I){return ce.hasOwnProperty("duration")?ce:function ri(ce,M,I){let pe,Qe=0,Ct="";if("string"==typeof ce){const Pt=ce.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===Pt)return M.push(l()),{duration:0,delay:0,easing:""};pe=Et(parseFloat(Pt[1]),Pt[2]);const qt=Pt[3];null!=qt&&(Qe=Et(parseFloat(qt),Pt[4]));const ai=Pt[5];ai&&(Ct=ai)}else pe=ce;if(!I){let Pt=!1,qt=M.length;pe<0&&(M.push(function f(){return new s.OBp(3100,!1)}()),Pt=!0),Qe<0&&(M.push(function g(){return new s.OBp(3101,!1)}()),Pt=!0),Pt&&M.splice(qt,0,l())}return{duration:pe,delay:Qe,easing:Ct}}(ce,M,I)}function _(ce,M,I){M.forEach((G,pe)=>{const Qe=Ue(pe);I&&!I.has(pe)&&I.set(pe,ce.style[Qe]),ce.style[Qe]=G})}function w(ce,M){M.forEach((I,G)=>{const pe=Ue(G);ce.style[pe]=""})}function S(ce){return Array.isArray(ce)?1==ce.length?ce[0]:(0,a.iC)(ce):ce}const ze=new RegExp("{{\\s*(.+?)\\s*}}","g");function At(ce){let M=[];if("string"==typeof ce){let I;for(;I=ze.exec(ce);)M.push(I[1]);ze.lastIndex=0}return M}function bt(ce,M,I){const G=`${ce}`,pe=G.replace(ze,(Qe,Ct)=>{let Pt=M[Ct];return null==Pt&&(I.push(function R(ce){return new s.OBp(3003,!1)}()),Pt=""),Pt.toString()});return pe==G?ce:pe}const yt=/-+([a-z0-9])/g;function Ue(ce){return ce.replace(yt,(...M)=>M[1].toUpperCase())}function Vt(ce,M,I){switch(M.type){case a.m0.Trigger:return ce.visitTrigger(M,I);case a.m0.State:return ce.visitState(M,I);case a.m0.Transition:return ce.visitTransition(M,I);case a.m0.Sequence:return ce.visitSequence(M,I);case a.m0.Group:return ce.visitGroup(M,I);case a.m0.Animate:return ce.visitAnimate(M,I);case a.m0.Keyframes:return ce.visitKeyframes(M,I);case a.m0.Style:return ce.visitStyle(M,I);case a.m0.Reference:return ce.visitReference(M,I);case a.m0.AnimateChild:return ce.visitAnimateChild(M,I);case a.m0.AnimateRef:return ce.visitAnimateRef(M,I);case a.m0.Query:return ce.visitQuery(M,I);case a.m0.Stagger:return ce.visitStagger(M,I);default:throw function Y(ce){return new s.OBp(3004,!1)}()}}function Ci(ce,M){return window.getComputedStyle(ce)[M]}const We=new Set(["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"]);class nt extends at{normalizePropertyName(M,I){return Ue(M)}normalizeStyleValue(M,I,G,pe){let Qe="";const Ct=G.toString().trim();if(We.has(I)&&0!==G&&"0"!==G)if("number"==typeof G)Qe="px";else{const Pt=G.match(/^[+-]?[\d\.]+([a-z]*)$/);Pt&&0==Pt[1].length&&pe.push(function J(ce,M){return new s.OBp(3005,!1)}())}return Ct+Qe}}const an="*";const Me=new Set(["true","1"]),qe=new Set(["false","0"]);function Rt(ce,M){const I=Me.has(ce)||qe.has(ce),G=Me.has(M)||qe.has(M);return(pe,Qe)=>{let Ct=ce==an||ce==pe,Pt=M==an||M==Qe;return!Ct&&I&&"boolean"==typeof pe&&(Ct=pe?Me.has(ce):qe.has(ce)),!Pt&&G&&"boolean"==typeof Qe&&(Pt=Qe?Me.has(M):qe.has(M)),Ct&&Pt}}const A=":self",ee=new RegExp(`s*${A}s*,?`,"g");function re(ce,M,I,G){return new Wt(ce).build(M,I,G)}class Wt{constructor(M){this._driver=M}build(M,I,G){const pe=new Li(I);return this._resetContextStyleTimingState(pe),Vt(this,S(M),pe)}_resetContextStyleTimingState(M){M.currentQuerySelector="",M.collectedStyles=new Map,M.collectedStyles.set("",new Map),M.currentTime=0}visitTrigger(M,I){let G=I.queryCount=0,pe=I.depCount=0;const Qe=[],Ct=[];return"@"==M.name.charAt(0)&&I.errors.push(function ie(){return new s.OBp(3006,!1)}()),M.definitions.forEach(Pt=>{if(this._resetContextStyleTimingState(I),Pt.type==a.m0.State){const qt=Pt,ai=qt.name;ai.toString().split(/\s*,\s*/).forEach(ui=>{qt.name=ui,Qe.push(this.visitState(qt,I))}),qt.name=ai}else if(Pt.type==a.m0.Transition){const qt=this.visitTransition(Pt,I);G+=qt.queryCount,pe+=qt.depCount,Ct.push(qt)}else I.errors.push(function ae(){return new s.OBp(3007,!1)}())}),{type:a.m0.Trigger,name:M.name,states:Qe,transitions:Ct,queryCount:G,depCount:pe,options:null}}visitState(M,I){const G=this.visitStyle(M.styles,I),pe=M.options&&M.options.params||null;if(G.containsDynamicStyles){const Qe=new Set,Ct=pe||{};G.styles.forEach(Pt=>{Pt instanceof Map&&Pt.forEach(qt=>{At(qt).forEach(ai=>{Ct.hasOwnProperty(ai)||Qe.add(ai)})})}),Qe.size&&I.errors.push(function Ie(ce,M){return new s.OBp(3008,!1)}(0,Qe.values()))}return{type:a.m0.State,name:M.name,style:G,options:pe?{params:pe}:null}}visitTransition(M,I){I.queryCount=0,I.depCount=0;const G=Vt(this,S(M.animation),I),pe=function Xn(ce,M){const I=[];return"string"==typeof ce?ce.split(/\s*,\s*/).forEach(G=>function Je(ce,M,I){if(":"==ce[0]){const qt=function gi(ce,M){switch(ce){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(I,G)=>parseFloat(G)>parseFloat(I);case":decrement":return(I,G)=>parseFloat(G) *"}}(ce,I);if("function"==typeof qt)return void M.push(qt);ce=qt}const G=ce.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==G||G.length<4)return I.push(function _e(ce){return new s.OBp(3015,!1)}()),M;const pe=G[1],Qe=G[2],Ct=G[3];M.push(Rt(pe,Ct)),"<"==Qe[0]&&(pe!=an||Ct!=an)&&M.push(Rt(Ct,pe))}(G,I,M)):I.push(ce),I}(M.expr,I.errors);return{type:a.m0.Transition,matchers:pe,animation:G,queryCount:I.queryCount,depCount:I.depCount,options:k(M.options)}}visitSequence(M,I){return{type:a.m0.Sequence,steps:M.steps.map(G=>Vt(this,G,I)),options:k(M.options)}}visitGroup(M,I){const G=I.currentTime;let pe=0;const Qe=M.steps.map(Ct=>{I.currentTime=G;const Pt=Vt(this,Ct,I);return pe=Math.max(pe,I.currentTime),Pt});return I.currentTime=pe,{type:a.m0.Group,steps:Qe,options:k(M.options)}}visitAnimate(M,I){const G=function mi(ce,M){if(ce.hasOwnProperty("duration"))return ce;if("number"==typeof ce)return se(ct(ce,M).duration,0,"");const I=ce;if(I.split(/\s+/).some(Qe=>"{"==Qe.charAt(0)&&"{"==Qe.charAt(1))){const Qe=se(0,0,"");return Qe.dynamic=!0,Qe.strValue=I,Qe}const pe=ct(I,M);return se(pe.duration,pe.delay,pe.easing)}(M.timings,I.errors);I.currentAnimateTimings=G;let pe,Qe=M.styles?M.styles:(0,a.wb)({});if(Qe.type==a.m0.Keyframes)pe=this.visitKeyframes(Qe,I);else{let Ct=M.styles,Pt=!1;if(!Ct){Pt=!0;const ai={};G.easing&&(ai.easing=G.easing),Ct=(0,a.wb)(ai)}I.currentTime+=G.duration+G.delay;const qt=this.visitStyle(Ct,I);qt.isEmptyStep=Pt,pe=qt}return I.currentAnimateTimings=null,{type:a.m0.Animate,timings:G,style:pe,options:null}}visitStyle(M,I){const G=this._makeStyleAst(M,I);return this._validateStyleAst(G,I),G}_makeStyleAst(M,I){const G=[],pe=Array.isArray(M.styles)?M.styles:[M.styles];for(let Pt of pe)"string"==typeof Pt?Pt===a.AN?G.push(Pt):I.errors.push(new s.OBp(3002,!1)):G.push(new Map(Object.entries(Pt)));let Qe=!1,Ct=null;return G.forEach(Pt=>{if(Pt instanceof Map&&(Pt.has("easing")&&(Ct=Pt.get("easing"),Pt.delete("easing")),!Qe))for(let qt of Pt.values())if(qt.toString().indexOf("{{")>=0){Qe=!0;break}}),{type:a.m0.Style,styles:G,easing:Ct,offset:M.offset,containsDynamicStyles:Qe,options:null}}_validateStyleAst(M,I){const G=I.currentAnimateTimings;let pe=I.currentTime,Qe=I.currentTime;G&&Qe>0&&(Qe-=G.duration+G.delay),M.styles.forEach(Ct=>{"string"!=typeof Ct&&Ct.forEach((Pt,qt)=>{const ai=I.collectedStyles.get(I.currentQuerySelector),ui=ai.get(qt);let Si=!0;ui&&(Qe!=pe&&Qe>=ui.startTime&&pe<=ui.endTime&&(I.errors.push(function tt(ce,M,I,G,pe){return new s.OBp(3010,!1)}()),Si=!1),Qe=ui.startTime),Si&&ai.set(qt,{startTime:Qe,endTime:pe}),I.options&&function $(ce,M,I){const G=M.params||{},pe=At(ce);pe.length&&pe.forEach(Qe=>{G.hasOwnProperty(Qe)||I.push(function b(ce){return new s.OBp(3001,!1)}())})}(Pt,I.options,I.errors)})})}visitKeyframes(M,I){const G={type:a.m0.Keyframes,styles:[],options:null};if(!I.currentAnimateTimings)return I.errors.push(function gt(){return new s.OBp(3011,!1)}()),G;let Qe=0;const Ct=[];let Pt=!1,qt=!1,ai=0;const ui=M.steps.map(wn=>{const rr=this._makeStyleAst(wn,I);let hr=null!=rr.offset?rr.offset:function ot(ce){if("string"==typeof ce)return null;let M=null;if(Array.isArray(ce))ce.forEach(I=>{if(I instanceof Map&&I.has("offset")){const G=I;M=parseFloat(G.get("offset")),G.delete("offset")}});else if(ce instanceof Map&&ce.has("offset")){const I=ce;M=parseFloat(I.get("offset")),I.delete("offset")}return M}(rr.styles),tr=0;return null!=hr&&(Qe++,tr=rr.offset=hr),qt=qt||tr<0||tr>1,Pt=Pt||tr0&&Qe{const hr=cn>0?rr==$i?1:cn*rr:Ct[rr],tr=hr*dn;I.currentTime=Gi+Wi.delay+tr,Wi.duration=tr,this._validateStyleAst(wn,I),wn.offset=hr,G.styles.push(wn)}),G}visitReference(M,I){return{type:a.m0.Reference,animation:Vt(this,S(M.animation),I),options:k(M.options)}}visitAnimateChild(M,I){return I.depCount++,{type:a.m0.AnimateChild,options:k(M.options)}}visitAnimateRef(M,I){return{type:a.m0.AnimateRef,animation:this.visitReference(M.animation,I),options:k(M.options)}}visitQuery(M,I){const G=I.currentQuerySelector,pe=M.options||{};I.queryCount++,I.currentQuery=M;const[Qe,Ct]=function Zt(ce){const M=!!ce.split(/\s*,\s*/).find(I=>I==A);return M&&(ce=ce.replace(ee,"")),ce=ce.replace(/@\*/g,vt).replace(/@\w+/g,I=>vt+"-"+I.slice(1)).replace(/:animating/g,fe),[ce,M]}(M.selector);I.currentQuerySelector=G.length?G+" "+Qe:Qe,N(I.collectedStyles,I.currentQuerySelector,new Map);const Pt=Vt(this,S(M.animation),I);return I.currentQuery=null,I.currentQuerySelector=G,{type:a.m0.Query,selector:Qe,limit:pe.limit||0,optional:!!pe.optional,includeSelf:Ct,animation:Pt,originalSelector:M.selector,options:k(M.options)}}visitStagger(M,I){I.currentQuery||I.errors.push(function et(){return new s.OBp(3013,!1)}());const G="full"===M.timings?{duration:0,delay:0,easing:"full"}:ct(M.timings,I.errors,!0);return{type:a.m0.Stagger,animation:Vt(this,S(M.animation),I),timings:G,options:null}}}class Li{constructor(M){this.errors=M,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function k(ce){return ce?(ce={...ce}).params&&(ce.params=function pi(ce){return ce?{...ce}:null}(ce.params)):ce={},ce}function se(ce,M,I){return{duration:ce,delay:M,easing:I}}function K(ce,M,I,G,pe,Qe,Ct=null,Pt=!1){return{type:1,element:ce,keyframes:M,preStyleProps:I,postStyleProps:G,duration:pe,delay:Qe,totalTime:pe+Qe,easing:Ct,subTimeline:Pt}}class Be{constructor(){this._map=new Map}get(M){return this._map.get(M)||[]}append(M,I){let G=this._map.get(M);G||this._map.set(M,G=[]),G.push(...I)}has(M){return this._map.has(M)}clear(){this._map.clear()}}const ji=new RegExp(":enter","g"),qn=new RegExp(":leave","g");function en(ce,M,I,G,pe,Qe=new Map,Ct=new Map,Pt,qt,ai=[]){return(new pr).buildKeyframes(ce,M,I,G,pe,Qe,Ct,Pt,qt,ai)}class pr{buildKeyframes(M,I,G,pe,Qe,Ct,Pt,qt,ai,ui=[]){ai=ai||new Be;const Si=new Zn(M,I,ai,pe,Qe,ui,[]);Si.options=qt;const cn=qt.delay?it(qt.delay):0;Si.currentTimeline.delayNextStep(cn),Si.currentTimeline.setStyles([Ct],null,Si.errors,qt),Vt(this,G,Si);const $i=Si.timelines.filter(Gi=>Gi.containsAnimation());if($i.length&&Pt.size){let Gi;for(let Wi=$i.length-1;Wi>=0;Wi--){const dn=$i[Wi];if(dn.element===I){Gi=dn;break}}Gi&&!Gi.allowOnlyTimelineStyles()&&Gi.setStyles([Pt],null,Si.errors,qt)}return $i.length?$i.map(Gi=>Gi.buildKeyframes()):[K(I,[],[],[],0,cn,"",!1)]}visitTrigger(M,I){}visitState(M,I){}visitTransition(M,I){}visitAnimateChild(M,I){const G=I.subInstructions.get(I.element);if(G){const pe=I.createSubContext(M.options),Qe=I.currentTimeline.currentTime,Ct=this._visitSubInstructions(G,pe,pe.options);Qe!=Ct&&I.transformIntoNewTimeline(Ct)}I.previousNode=M}visitAnimateRef(M,I){const G=I.createSubContext(M.options);G.transformIntoNewTimeline(),this._applyAnimationRefDelays([M.options,M.animation.options],I,G),this.visitReference(M.animation,G),I.transformIntoNewTimeline(G.currentTimeline.currentTime),I.previousNode=M}_applyAnimationRefDelays(M,I,G){for(const pe of M){const Qe=pe?.delay;if(Qe){const Ct="number"==typeof Qe?Qe:it(bt(Qe,pe?.params??{},I.errors));G.delayNextStep(Ct)}}}_visitSubInstructions(M,I,G){let Qe=I.currentTimeline.currentTime;const Ct=null!=G.duration?it(G.duration):null,Pt=null!=G.delay?it(G.delay):null;return 0!==Ct&&M.forEach(qt=>{const ai=I.appendInstructionToTimeline(qt,Ct,Pt);Qe=Math.max(Qe,ai.duration+ai.delay)}),Qe}visitReference(M,I){I.updateOptions(M.options,!0),Vt(this,M.animation,I),I.previousNode=M}visitSequence(M,I){const G=I.subContextCount;let pe=I;const Qe=M.options;if(Qe&&(Qe.params||Qe.delay)&&(pe=I.createSubContext(Qe),pe.transformIntoNewTimeline(),null!=Qe.delay)){pe.previousNode.type==a.m0.Style&&(pe.currentTimeline.snapshotCurrentStyles(),pe.previousNode=kr);const Ct=it(Qe.delay);pe.delayNextStep(Ct)}M.steps.length&&(M.steps.forEach(Ct=>Vt(this,Ct,pe)),pe.currentTimeline.applyStylesToKeyframe(),pe.subContextCount>G&&pe.transformIntoNewTimeline()),I.previousNode=M}visitGroup(M,I){const G=[];let pe=I.currentTimeline.currentTime;const Qe=M.options&&M.options.delay?it(M.options.delay):0;M.steps.forEach(Ct=>{const Pt=I.createSubContext(M.options);Qe&&Pt.delayNextStep(Qe),Vt(this,Ct,Pt),pe=Math.max(pe,Pt.currentTimeline.currentTime),G.push(Pt.currentTimeline)}),G.forEach(Ct=>I.currentTimeline.mergeTimelineCollectedStyles(Ct)),I.transformIntoNewTimeline(pe),I.previousNode=M}_visitTiming(M,I){if(M.dynamic){const G=M.strValue;return ct(I.params?bt(G,I.params,I.errors):G,I.errors)}return{duration:M.duration,delay:M.delay,easing:M.easing}}visitAnimate(M,I){const G=I.currentAnimateTimings=this._visitTiming(M.timings,I),pe=I.currentTimeline;G.delay&&(I.incrementTime(G.delay),pe.snapshotCurrentStyles());const Qe=M.style;Qe.type==a.m0.Keyframes?this.visitKeyframes(Qe,I):(I.incrementTime(G.duration),this.visitStyle(Qe,I),pe.applyStylesToKeyframe()),I.currentAnimateTimings=null,I.previousNode=M}visitStyle(M,I){const G=I.currentTimeline,pe=I.currentAnimateTimings;!pe&&G.hasCurrentStyleProperties()&&G.forwardFrame();const Qe=pe&&pe.easing||M.easing;M.isEmptyStep?G.applyEmptyStep(Qe):G.setStyles(M.styles,Qe,I.errors,I.options),I.previousNode=M}visitKeyframes(M,I){const G=I.currentAnimateTimings,pe=I.currentTimeline.duration,Qe=G.duration,Pt=I.createSubContext().currentTimeline;Pt.easing=G.easing,M.styles.forEach(qt=>{Pt.forwardTime((qt.offset||0)*Qe),Pt.setStyles(qt.styles,qt.easing,I.errors,I.options),Pt.applyStylesToKeyframe()}),I.currentTimeline.mergeTimelineCollectedStyles(Pt),I.transformIntoNewTimeline(pe+Qe),I.previousNode=M}visitQuery(M,I){const G=I.currentTimeline.currentTime,pe=M.options||{},Qe=pe.delay?it(pe.delay):0;Qe&&(I.previousNode.type===a.m0.Style||0==G&&I.currentTimeline.hasCurrentStyleProperties())&&(I.currentTimeline.snapshotCurrentStyles(),I.previousNode=kr);let Ct=G;const Pt=I.invokeQuery(M.selector,M.originalSelector,M.limit,M.includeSelf,!!pe.optional,I.errors);I.currentQueryTotal=Pt.length;let qt=null;Pt.forEach((ai,ui)=>{I.currentQueryIndex=ui;const Si=I.createSubContext(M.options,ai);Qe&&Si.delayNextStep(Qe),ai===I.element&&(qt=Si.currentTimeline),Vt(this,M.animation,Si),Si.currentTimeline.applyStylesToKeyframe(),Ct=Math.max(Ct,Si.currentTimeline.currentTime)}),I.currentQueryIndex=0,I.currentQueryTotal=0,I.transformIntoNewTimeline(Ct),qt&&(I.currentTimeline.mergeTimelineCollectedStyles(qt),I.currentTimeline.snapshotCurrentStyles()),I.previousNode=M}visitStagger(M,I){const G=I.parentContext,pe=I.currentTimeline,Qe=M.timings,Ct=Math.abs(Qe.duration),Pt=Ct*(I.currentQueryTotal-1);let qt=Ct*I.currentQueryIndex;switch(Qe.duration<0?"reverse":Qe.easing){case"reverse":qt=Pt-qt;break;case"full":qt=G.currentStaggerTime}const ui=I.currentTimeline;qt&&ui.delayNextStep(qt);const Si=ui.currentTime;Vt(this,M.animation,I),I.previousNode=M,G.currentStaggerTime=pe.currentTime-Si+(pe.startTime-G.currentTimeline.startTime)}}const kr={};class Zn{constructor(M,I,G,pe,Qe,Ct,Pt,qt){this._driver=M,this.element=I,this.subInstructions=G,this._enterClassName=pe,this._leaveClassName=Qe,this.errors=Ct,this.timelines=Pt,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=kr,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=qt||new Vn(this._driver,I,0),Pt.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(M,I){if(!M)return;const G=M;let pe=this.options;null!=G.duration&&(pe.duration=it(G.duration)),null!=G.delay&&(pe.delay=it(G.delay));const Qe=G.params;if(Qe){let Ct=pe.params;Ct||(Ct=this.options.params={}),Object.keys(Qe).forEach(Pt=>{(!I||!Ct.hasOwnProperty(Pt))&&(Ct[Pt]=bt(Qe[Pt],Ct,this.errors))})}}_copyOptions(){const M={};if(this.options){const I=this.options.params;if(I){const G=M.params={};Object.keys(I).forEach(pe=>{G[pe]=I[pe]})}}return M}createSubContext(M=null,I,G){const pe=I||this.element,Qe=new Zn(this._driver,pe,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(pe,G||0));return Qe.previousNode=this.previousNode,Qe.currentAnimateTimings=this.currentAnimateTimings,Qe.options=this._copyOptions(),Qe.updateOptions(M),Qe.currentQueryIndex=this.currentQueryIndex,Qe.currentQueryTotal=this.currentQueryTotal,Qe.parentContext=this,this.subContextCount++,Qe}transformIntoNewTimeline(M){return this.previousNode=kr,this.currentTimeline=this.currentTimeline.fork(this.element,M),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(M,I,G){const pe={duration:I??M.duration,delay:this.currentTimeline.currentTime+(G??0)+M.delay,easing:""},Qe=new Hr(this._driver,M.element,M.keyframes,M.preStyleProps,M.postStyleProps,pe,M.stretchStartingKeyframe);return this.timelines.push(Qe),pe}incrementTime(M){this.currentTimeline.forwardTime(this.currentTimeline.duration+M)}delayNextStep(M){M>0&&this.currentTimeline.delayNextStep(M)}invokeQuery(M,I,G,pe,Qe,Ct){let Pt=[];if(pe&&Pt.push(this.element),M.length>0){M=(M=M.replace(ji,"."+this._enterClassName)).replace(qn,"."+this._leaveClassName);let ai=this._driver.query(this.element,M,1!=G);0!==G&&(ai=G<0?ai.slice(ai.length+G,ai.length):ai.slice(0,G)),Pt.push(...ai)}return!Qe&&0==Pt.length&&Ct.push(function Q(ce){return new s.OBp(3014,!1)}()),Pt}}class Vn{constructor(M,I,G,pe){this._driver=M,this.element=I,this.startTime=G,this._elementTimelineStylesLookup=pe,this.duration=0,this.easing=null,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(I),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(I,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(M){const I=1===this._keyframes.size&&this._pendingStyles.size;this.duration||I?(this.forwardTime(this.currentTime+M),I&&this.snapshotCurrentStyles()):this.startTime+=M}fork(M,I){return this.applyStylesToKeyframe(),new Vn(this._driver,M,I||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(M){this.applyStylesToKeyframe(),this.duration=M,this._loadKeyframe()}_updateStyle(M,I){this._localTimelineStyles.set(M,I),this._globalTimelineStyles.set(M,I),this._styleSummary.set(M,{time:this.currentTime,value:I})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(M){M&&this._previousKeyframe.set("easing",M);for(let[I,G]of this._globalTimelineStyles)this._backFill.set(I,G||a.AN),this._currentKeyframe.set(I,a.AN);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(M,I,G,pe){I&&this._previousKeyframe.set("easing",I);const Qe=pe&&pe.params||{},Ct=function ra(ce,M){const I=new Map;let G;return ce.forEach(pe=>{if("*"===pe){G??=M.keys();for(let Qe of G)I.set(Qe,a.AN)}else for(let[Qe,Ct]of pe)I.set(Qe,Ct)}),I}(M,this._globalTimelineStyles);for(let[Pt,qt]of Ct){const ai=bt(qt,Qe,G);this._pendingStyles.set(Pt,ai),this._localTimelineStyles.has(Pt)||this._backFill.set(Pt,this._globalTimelineStyles.get(Pt)??a.AN),this._updateStyle(Pt,ai)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((M,I)=>{this._currentKeyframe.set(I,M)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((M,I)=>{this._currentKeyframe.has(I)||this._currentKeyframe.set(I,M)}))}snapshotCurrentStyles(){for(let[M,I]of this._localTimelineStyles)this._pendingStyles.set(M,I),this._updateStyle(M,I)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const M=[];for(let I in this._currentKeyframe)M.push(I);return M}mergeTimelineCollectedStyles(M){M._styleSummary.forEach((I,G)=>{const pe=this._styleSummary.get(G);(!pe||I.time>pe.time)&&this._updateStyle(G,I.value)})}buildKeyframes(){this.applyStylesToKeyframe();const M=new Set,I=new Set,G=1===this._keyframes.size&&0===this.duration;let pe=[];this._keyframes.forEach((Pt,qt)=>{const ai=new Map([...this._backFill,...Pt]);ai.forEach((ui,Si)=>{ui===a.aM?M.add(Si):ui===a.AN&&I.add(Si)}),G||ai.set("offset",qt/this.duration),pe.push(ai)});const Qe=[...M.values()],Ct=[...I.values()];if(G){const Pt=pe[0],qt=new Map(Pt);Pt.set("offset",0),qt.set("offset",1),pe=[Pt,qt]}return K(this.element,pe,Qe,Ct,this.duration,this.startTime,this.easing,!1)}}class Hr extends Vn{constructor(M,I,G,pe,Qe,Ct,Pt=!1){super(M,I,Ct.delay),this.keyframes=G,this.preStyleProps=pe,this.postStyleProps=Qe,this._stretchStartingKeyframe=Pt,this.timings={duration:Ct.duration,delay:Ct.delay,easing:Ct.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let M=this.keyframes,{delay:I,duration:G,easing:pe}=this.timings;if(this._stretchStartingKeyframe&&I){const Qe=[],Ct=G+I,Pt=I/Ct,qt=new Map(M[0]);qt.set("offset",0),Qe.push(qt);const ai=new Map(M[0]);ai.set("offset",Er(Pt)),Qe.push(ai);const ui=M.length-1;for(let Si=1;Si<=ui;Si++){let cn=new Map(M[Si]);const $i=cn.get("offset");cn.set("offset",Er((I+$i*G)/Ct)),Qe.push(cn)}G=Ct,I=0,pe="",M=Qe}return K(this.element,M,this.preStyleProps,this.postStyleProps,G,I,pe,!0)}}function Er(ce,M=3){const I=Math.pow(10,M-1);return Math.round(ce*I)/I}function ir(ce,M,I,G,pe,Qe,Ct,Pt,qt,ai,ui,Si,cn){return{type:0,element:ce,triggerName:M,isRemovalTransition:pe,fromState:I,fromStyles:Qe,toState:G,toStyles:Ct,timelines:Pt,queriedElements:qt,preStyleProps:ai,postStyleProps:ui,totalTime:Si,errors:cn}}const Sr={};class Zr{constructor(M,I,G){this._triggerName=M,this.ast=I,this._stateStyles=G}match(M,I,G,pe){return function Fn(ce,M,I,G,pe){return ce.some(Qe=>Qe(M,I,G,pe))}(this.ast.matchers,M,I,G,pe)}buildStyles(M,I,G){let pe=this._stateStyles.get("*");return void 0!==M&&(pe=this._stateStyles.get(M?.toString())||pe),pe?pe.buildStyles(I,G):new Map}build(M,I,G,pe,Qe,Ct,Pt,qt,ai,ui){const Si=[],cn=this.ast.options&&this.ast.options.params||Sr,Gi=this.buildStyles(G,Pt&&Pt.params||Sr,Si),Wi=qt&&qt.params||Sr,dn=this.buildStyles(pe,Wi,Si),wn=new Set,rr=new Map,hr=new Map,tr="void"===pe,na={params:_n(Wi,cn),delay:this.ast.options?.delay},Nr=ui?[]:en(M,I,this.ast.animation,Qe,Ct,Gi,dn,na,ai,Si);let ti=0;return Nr.forEach(Vi=>{ti=Math.max(Vi.duration+Vi.delay,ti)}),Si.length?ir(I,this._triggerName,G,pe,tr,Gi,dn,[],[],rr,hr,ti,Si):(Nr.forEach(Vi=>{const Wr=Vi.element,ke=N(rr,Wr,new Set);Vi.preStyleProps.forEach(p=>ke.add(p));const de=N(hr,Wr,new Set);Vi.postStyleProps.forEach(p=>de.add(p)),Wr!==I&&wn.add(Wr)}),ir(I,this._triggerName,G,pe,tr,Gi,dn,Nr,[...wn.values()],rr,hr,ti))}}function _n(ce,M){const I={...M};return Object.entries(ce).forEach(([G,pe])=>{null!=pe&&(I[G]=pe)}),I}class Gr{constructor(M,I,G){this.styles=M,this.defaultParams=I,this.normalizer=G}buildStyles(M,I){const G=new Map,pe=_n(M,this.defaultParams);return this.styles.styles.forEach(Qe=>{"string"!=typeof Qe&&Qe.forEach((Ct,Pt)=>{Ct&&(Ct=bt(Ct,pe,I));const qt=this.normalizer.normalizePropertyName(Pt,I);Ct=this.normalizer.normalizeStyleValue(Pt,qt,Ct,I),G.set(Pt,Ct)})}),G}}class Ir{constructor(M,I,G){this.name=M,this.ast=I,this._normalizer=G,this.transitionFactories=[],this.states=new Map,I.states.forEach(pe=>{this.states.set(pe.name,new Gr(pe.style,pe.options&&pe.options.params||{},G))}),Tr(this.states,"true","1"),Tr(this.states,"false","0"),I.transitions.forEach(pe=>{this.transitionFactories.push(new Zr(M,pe,this.states))}),this.fallbackTransition=function ba(ce,M,I){return new Zr(ce,{type:a.m0.Transition,animation:{type:a.m0.Sequence,steps:[],options:null},matchers:[(Ct,Pt)=>!0],options:null,queryCount:0,depCount:0},M)}(M,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(M,I,G,pe){return this.transitionFactories.find(Ct=>Ct.match(M,I,G,pe))||null}matchStyles(M,I,G){return this.fallbackTransition.buildStyles(M,I,G)}}function Tr(ce,M,I){ce.has(M)?ce.has(I)||ce.set(I,ce.get(M)):ce.has(I)&&ce.set(M,ce.get(I))}const Ar=new Be;class or{constructor(M,I,G){this.bodyNode=M,this._driver=I,this._normalizer=G,this._animations=new Map,this._playersById=new Map,this.players=[]}register(M,I){const G=[],Qe=re(this._driver,I,G,[]);if(G.length)throw function ut(ce){return new s.OBp(3503,!1)}();this._animations.set(M,Qe)}_buildPlayer(M,I,G){const pe=M.element,Qe=Ne(this._normalizer,M.keyframes,I,G);return this._driver.animate(pe,Qe,M.duration,M.delay,M.easing,[],!0)}create(M,I,G={}){const pe=[],Qe=this._animations.get(M);let Ct;const Pt=new Map;if(Qe?(Ct=en(this._driver,I,Qe,Pe,ht,new Map,new Map,G,Ar,pe),Ct.forEach(ui=>{const Si=N(Pt,ui.element,new Map);ui.postStyleProps.forEach(cn=>Si.set(cn,null))})):(pe.push(function st(){return new s.OBp(3300,!1)}()),Ct=[]),pe.length)throw function $t(ce){return new s.OBp(3504,!1)}();Pt.forEach((ui,Si)=>{ui.forEach((cn,$i)=>{ui.set($i,this._driver.computeStyle(Si,$i,a.AN))})});const ai=xt(Ct.map(ui=>{const Si=Pt.get(ui.element);return this._buildPlayer(ui,new Map,Si)}));return this._playersById.set(M,ai),ai.onDestroy(()=>this.destroy(M)),this.players.push(ai),ai}destroy(M){const I=this._getPlayer(M);I.destroy(),this._playersById.delete(M);const G=this.players.indexOf(I);G>=0&&this.players.splice(G,1)}_getPlayer(M){const I=this._playersById.get(M);if(!I)throw function oi(ce){return new s.OBp(3301,!1)}();return I}listen(M,I,G,pe){const Qe=we(I,"","","");return be(this._getPlayer(M),G,Qe,pe),()=>{}}command(M,I,G,pe){if("register"==G)return void this.register(M,pe[0]);if("create"==G)return void this.create(M,I,pe[0]||{});const Qe=this._getPlayer(M);switch(G){case"play":Qe.play();break;case"pause":Qe.pause();break;case"reset":Qe.reset();break;case"restart":Qe.restart();break;case"finish":Qe.finish();break;case"init":Qe.init();break;case"setPosition":Qe.setPosition(parseFloat(pe[0]));break;case"destroy":this.destroy(M)}}}const on="ng-animate-queued",Pi="ng-animate-disabled",nr=[],br={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},pn={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},bn="__ng_removed";class Wn{get params(){return this.options.params}constructor(M,I=""){this.namespaceId=I;const G=M&&M.hasOwnProperty("value");if(this.value=function Vr(ce){return ce??null}(G?M.value:M),G){const{value:Qe,...Ct}=M;this.options=Ct}else this.options={};this.options.params||(this.options.params={})}absorbOptions(M){const I=M.params;if(I){const G=this.options.params;Object.keys(I).forEach(pe=>{null==G[pe]&&(G[pe]=I[pe])})}}}const Bi="void",fr=new Wn(Bi);class aa{constructor(M,I,G){this.id=M,this.hostElement=I,this._engine=G,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+M,zn(I,this._hostClassName)}listen(M,I,G,pe){if(!this._triggers.has(I))throw function Jt(ce,M){return new s.OBp(3302,!1)}();if(null==G||0==G.length)throw function vi(ce){return new s.OBp(3303,!1)}();if(!function Jr(ce){return"start"==ce||"done"==ce}(G))throw function je(ce,M){return new s.OBp(3400,!1)}();const Qe=N(this._elementListeners,M,[]),Ct={name:I,phase:G,callback:pe};Qe.push(Ct);const Pt=N(this._engine.statesByElement,M,new Map);return Pt.has(I)||(zn(M,Ht),zn(M,Ht+"-"+I),Pt.set(I,fr)),()=>{this._engine.afterFlush(()=>{const qt=Qe.indexOf(Ct);qt>=0&&Qe.splice(qt,1),this._triggers.has(I)||Pt.delete(I)})}}register(M,I){return!this._triggers.has(M)&&(this._triggers.set(M,I),!0)}_getTrigger(M){const I=this._triggers.get(M);if(!I)throw function De(ce){return new s.OBp(3401,!1)}();return I}trigger(M,I,G,pe=!0){const Qe=this._getTrigger(I),Ct=new xn(this.id,I,M);let Pt=this._engine.statesByElement.get(M);Pt||(zn(M,Ht),zn(M,Ht+"-"+I),this._engine.statesByElement.set(M,Pt=new Map));let qt=Pt.get(I);const ai=new Wn(G,this.id);if(!(G&&G.hasOwnProperty("value"))&&qt&&ai.absorbOptions(qt.options),Pt.set(I,ai),qt||(qt=fr),ai.value!==Bi&&qt.value===ai.value){if(!function cr(ce,M){const I=Object.keys(ce),G=Object.keys(M);if(I.length!=G.length)return!1;for(let pe=0;pe{w(M,dn),_(M,wn)})}return}const cn=N(this._engine.playersByElement,M,[]);cn.forEach(Wi=>{Wi.namespaceId==this.id&&Wi.triggerName==I&&Wi.queued&&Wi.destroy()});let $i=Qe.matchTransition(qt.value,ai.value,M,ai.params),Gi=!1;if(!$i){if(!pe)return;$i=Qe.fallbackTransition,Gi=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:M,triggerName:I,transition:$i,fromState:qt,toState:ai,player:Ct,isFallbackTransition:Gi}),Gi||(zn(M,on),Ct.onStart(()=>{Hi(M,on)})),Ct.onDone(()=>{let Wi=this.players.indexOf(Ct);Wi>=0&&this.players.splice(Wi,1);const dn=this._engine.playersByElement.get(M);if(dn){let wn=dn.indexOf(Ct);wn>=0&&dn.splice(wn,1)}}),this.players.push(Ct),cn.push(Ct),Ct}deregister(M){this._triggers.delete(M),this._engine.statesByElement.forEach(I=>I.delete(M)),this._elementListeners.forEach((I,G)=>{this._elementListeners.set(G,I.filter(pe=>pe.name!=M))})}clearElementCache(M){this._engine.statesByElement.delete(M),this._elementListeners.delete(M);const I=this._engine.playersByElement.get(M);I&&(I.forEach(G=>G.destroy()),this._engine.playersByElement.delete(M))}_signalRemovalForInnerTriggers(M,I){const G=this._engine.driver.query(M,vt,!0);G.forEach(pe=>{if(pe[bn])return;const Qe=this._engine.fetchNamespacesByElement(pe);Qe.size?Qe.forEach(Ct=>Ct.triggerLeaveAnimation(pe,I,!1,!0)):this.clearElementCache(pe)}),this._engine.afterFlushAnimationsDone(()=>G.forEach(pe=>this.clearElementCache(pe)))}triggerLeaveAnimation(M,I,G,pe){const Qe=this._engine.statesByElement.get(M),Ct=new Map;if(Qe){const Pt=[];if(Qe.forEach((qt,ai)=>{if(Ct.set(ai,qt.value),this._triggers.has(ai)){const ui=this.trigger(M,ai,Bi,pe);ui&&Pt.push(ui)}}),Pt.length)return this._engine.markElementAsRemoved(this.id,M,!0,I,Ct),G&&xt(Pt).onDone(()=>this._engine.processLeaveNode(M)),!0}return!1}prepareLeaveAnimationListeners(M){const I=this._elementListeners.get(M),G=this._engine.statesByElement.get(M);if(I&&G){const pe=new Set;I.forEach(Qe=>{const Ct=Qe.name;if(pe.has(Ct))return;pe.add(Ct);const qt=this._triggers.get(Ct).fallbackTransition,ai=G.get(Ct)||fr,ui=new Wn(Bi),Si=new xn(this.id,Ct,M);this._engine.totalQueuedPlayers++,this._queue.push({element:M,triggerName:Ct,transition:qt,fromState:ai,toState:ui,player:Si,isFallbackTransition:!0})})}}removeNode(M,I){const G=this._engine;if(M.childElementCount&&this._signalRemovalForInnerTriggers(M,I),this.triggerLeaveAnimation(M,I,!0))return;let pe=!1;if(G.totalAnimations){const Qe=G.players.length?G.playersByQueriedElement.get(M):[];if(Qe&&Qe.length)pe=!0;else{let Ct=M;for(;Ct=Ct.parentNode;)if(G.statesByElement.get(Ct)){pe=!0;break}}}if(this.prepareLeaveAnimationListeners(M),pe)G.markElementAsRemoved(this.id,M,!1,I);else{const Qe=M[bn];(!Qe||Qe===br)&&(G.afterFlush(()=>this.clearElementCache(M)),G.destroyInnerAnimations(M),G._onRemovalComplete(M,I))}}insertNode(M,I){zn(M,this._hostClassName)}drainQueuedTransitions(M){const I=[];return this._queue.forEach(G=>{const pe=G.player;if(pe.destroyed)return;const Qe=G.element,Ct=this._elementListeners.get(Qe);Ct&&Ct.forEach(Pt=>{if(Pt.name==G.triggerName){const qt=we(Qe,G.triggerName,G.fromState.value,G.toState.value);qt._data=M,be(G.player,Pt.phase,qt,Pt.callback)}}),pe.markedForDestroy?this._engine.afterFlush(()=>{pe.destroy()}):I.push(G)}),this._queue=[],I.sort((G,pe)=>{const Qe=G.transition.ast.depCount,Ct=pe.transition.ast.depCount;return 0==Qe||0==Ct?Qe-Ct:this._engine.driver.containsElement(G.element,pe.element)?1:-1})}destroy(M){this.players.forEach(I=>I.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,M)}}class sa{_onRemovalComplete(M,I){this.onRemovalComplete(M,I)}constructor(M,I,G,pe){this.bodyNode=M,this.driver=I,this._normalizer=G,this.scheduler=pe,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=(Qe,Ct)=>{}}get queuedPlayers(){const M=[];return this._namespaceList.forEach(I=>{I.players.forEach(G=>{G.queued&&M.push(G)})}),M}createNamespace(M,I){const G=new aa(M,I,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,I)?this._balanceNamespaceList(G,I):(this.newHostElements.set(I,G),this.collectEnterElement(I)),this._namespaceLookup[M]=G}_balanceNamespaceList(M,I){const G=this._namespaceList,pe=this.namespacesByHostElement;if(G.length-1>=0){let Ct=!1,Pt=this.driver.getParentElement(I);for(;Pt;){const qt=pe.get(Pt);if(qt){const ai=G.indexOf(qt);G.splice(ai+1,0,M),Ct=!0;break}Pt=this.driver.getParentElement(Pt)}Ct||G.unshift(M)}else G.push(M);return pe.set(I,M),M}register(M,I){let G=this._namespaceLookup[M];return G||(G=this.createNamespace(M,I)),G}registerTrigger(M,I,G){let pe=this._namespaceLookup[M];pe&&pe.register(I,G)&&this.totalAnimations++}destroy(M,I){M&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const G=this._fetchNamespace(M);this.namespacesByHostElement.delete(G.hostElement);const pe=this._namespaceList.indexOf(G);pe>=0&&this._namespaceList.splice(pe,1),G.destroy(I),delete this._namespaceLookup[M]}))}_fetchNamespace(M){return this._namespaceLookup[M]}fetchNamespacesByElement(M){const I=new Set,G=this.statesByElement.get(M);if(G)for(let pe of G.values())if(pe.namespaceId){const Qe=this._fetchNamespace(pe.namespaceId);Qe&&I.add(Qe)}return I}trigger(M,I,G,pe){if(er(I)){const Qe=this._fetchNamespace(M);if(Qe)return Qe.trigger(I,G,pe),!0}return!1}insertNode(M,I,G,pe){if(!er(I))return;const Qe=I[bn];if(Qe&&Qe.setForRemoval){Qe.setForRemoval=!1,Qe.setForMove=!0;const Ct=this.collectedLeaveElements.indexOf(I);Ct>=0&&this.collectedLeaveElements.splice(Ct,1)}if(M){const Ct=this._fetchNamespace(M);Ct&&Ct.insertNode(I,G)}pe&&this.collectEnterElement(I)}collectEnterElement(M){this.collectedEnterElements.push(M)}markElementAsDisabled(M,I){I?this.disabledNodes.has(M)||(this.disabledNodes.add(M),zn(M,Pi)):this.disabledNodes.has(M)&&(this.disabledNodes.delete(M),Hi(M,Pi))}removeNode(M,I,G){if(er(I)){this.scheduler?.notify();const pe=M?this._fetchNamespace(M):null;pe?pe.removeNode(I,G):this.markElementAsRemoved(M,I,!1,G);const Qe=this.namespacesByHostElement.get(I);Qe&&Qe.id!==M&&Qe.removeNode(I,G)}else this._onRemovalComplete(I,G)}markElementAsRemoved(M,I,G,pe,Qe){this.collectedLeaveElements.push(I),I[bn]={namespaceId:M,setForRemoval:pe,hasAnimation:G,removedBeforeQueried:!1,previousTriggersValues:Qe}}listen(M,I,G,pe,Qe){return er(I)?this._fetchNamespace(M).listen(I,G,pe,Qe):()=>{}}_buildInstruction(M,I,G,pe,Qe){return M.transition.build(this.driver,M.element,M.fromState.value,M.toState.value,G,pe,M.fromState.options,M.toState.options,I,Qe)}destroyInnerAnimations(M){let I=this.driver.query(M,vt,!0);I.forEach(G=>this.destroyActiveAnimationsForElement(G)),0!=this.playersByQueriedElement.size&&(I=this.driver.query(M,fe,!0),I.forEach(G=>this.finishActiveQueriedAnimationOnElement(G)))}destroyActiveAnimationsForElement(M){const I=this.playersByElement.get(M);I&&I.forEach(G=>{G.queued?G.markedForDestroy=!0:G.destroy()})}finishActiveQueriedAnimationOnElement(M){const I=this.playersByQueriedElement.get(M);I&&I.forEach(G=>G.finish())}whenRenderingDone(){return new Promise(M=>{if(this.players.length)return xt(this.players).onDone(()=>M());M()})}processLeaveNode(M){const I=M[bn];if(I&&I.setForRemoval){if(M[bn]=br,I.namespaceId){this.destroyInnerAnimations(M);const G=this._fetchNamespace(I.namespaceId);G&&G.clearElementCache(M)}this._onRemovalComplete(M,I.setForRemoval)}M.classList?.contains(Pi)&&this.markElementAsDisabled(M,!1),this.driver.query(M,".ng-animate-disabled",!0).forEach(G=>{this.markElementAsDisabled(G,!1)})}flush(M=-1){let I=[];if(this.newHostElements.size&&(this.newHostElements.forEach((G,pe)=>this._balanceNamespaceList(G,pe)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let G=0;GG()),this._flushFns=[],this._whenQuietFns.length){const G=this._whenQuietFns;this._whenQuietFns=[],I.length?xt(I).onDone(()=>{G.forEach(pe=>pe())}):G.forEach(pe=>pe())}}reportError(M){throw function Le(ce){return new s.OBp(3402,!1)}()}_flushAnimations(M,I){const G=new Be,pe=[],Qe=new Map,Ct=[],Pt=new Map,qt=new Map,ai=new Map,ui=new Set;this.disabledNodes.forEach(dt=>{ui.add(dt);const jt=this.driver.query(dt,".ng-animate-queued",!0);for(let ci=0;ci{const ci=Pe+Wi++;Gi.set(jt,ci),dt.forEach(xi=>zn(xi,ci))});const dn=[],wn=new Set,rr=new Set;for(let dt=0;dtwn.add(xi)):rr.add(jt))}const hr=new Map,tr=gr(cn,Array.from(wn));tr.forEach((dt,jt)=>{const ci=ht+Wi++;hr.set(jt,ci),dt.forEach(xi=>zn(xi,ci))}),M.push(()=>{$i.forEach((dt,jt)=>{const ci=Gi.get(jt);dt.forEach(xi=>Hi(xi,ci))}),tr.forEach((dt,jt)=>{const ci=hr.get(jt);dt.forEach(xi=>Hi(xi,ci))}),dn.forEach(dt=>{this.processLeaveNode(dt)})});const na=[],Nr=[];for(let dt=this._namespaceList.length-1;dt>=0;dt--)this._namespaceList[dt].drainQueuedTransitions(I).forEach(ci=>{const xi=ci.player,Oi=ci.element;if(na.push(xi),this.collectedEnterElements.length){const q=Oi[bn];if(q&&q.setForMove){if(q.previousTriggersValues&&q.previousTriggersValues.has(ci.triggerName)){const ft=q.previousTriggersValues.get(ci.triggerName),Qt=this.statesByElement.get(ci.element);if(Qt&&Qt.has(ci.triggerName)){const hi=Qt.get(ci.triggerName);hi.value=ft,Qt.set(ci.triggerName,hi)}}return void xi.destroy()}}const zi=!Si||!this.driver.containsElement(Si,Oi),Mn=hr.get(Oi),Ji=Gi.get(Oi),D=this._buildInstruction(ci,G,Ji,Mn,zi);if(D.errors&&D.errors.length)return void Nr.push(D);if(zi)return xi.onStart(()=>w(Oi,D.fromStyles)),xi.onDestroy(()=>_(Oi,D.toStyles)),void pe.push(xi);if(ci.isFallbackTransition)return xi.onStart(()=>w(Oi,D.fromStyles)),xi.onDestroy(()=>_(Oi,D.toStyles)),void pe.push(xi);const he=[];D.timelines.forEach(q=>{q.stretchStartingKeyframe=!0,this.disabledNodes.has(q.element)||he.push(q)}),D.timelines=he,G.append(Oi,D.timelines),Ct.push({instruction:D,player:xi,element:Oi}),D.queriedElements.forEach(q=>N(Pt,q,[]).push(xi)),D.preStyleProps.forEach((q,ft)=>{if(q.size){let Qt=qt.get(ft);Qt||qt.set(ft,Qt=new Set),q.forEach((hi,Ai)=>Qt.add(Ai))}}),D.postStyleProps.forEach((q,ft)=>{let Qt=ai.get(ft);Qt||ai.set(ft,Qt=new Set),q.forEach((hi,Ai)=>Qt.add(Ai))})});if(Nr.length){const dt=[];Nr.forEach(jt=>{dt.push(function te(ce,M){return new s.OBp(3505,!1)}())}),na.forEach(jt=>jt.destroy()),this.reportError(dt)}const ti=new Map,Vi=new Map;Ct.forEach(dt=>{const jt=dt.element;G.has(jt)&&(Vi.set(jt,jt),this._beforeAnimationBuild(dt.player.namespaceId,dt.instruction,ti))}),pe.forEach(dt=>{const jt=dt.element;this._getPreviousPlayers(jt,!1,dt.namespaceId,dt.triggerName,null).forEach(xi=>{N(ti,jt,[]).push(xi),xi.destroy()})});const Wr=dn.filter(dt=>yr(dt,qt,ai)),ke=new Map;lr(ke,this.driver,rr,ai,a.AN).forEach(dt=>{yr(dt,qt,ai)&&Wr.push(dt)});const p=new Map;$i.forEach((dt,jt)=>{lr(p,this.driver,new Set(dt),qt,a.aM)}),Wr.forEach(dt=>{const jt=ke.get(dt),ci=p.get(dt);ke.set(dt,new Map([...jt?.entries()??[],...ci?.entries()??[]]))});const L=[],H=[],_t={};Ct.forEach(dt=>{const{element:jt,player:ci,instruction:xi}=dt;if(G.has(jt)){if(ui.has(jt))return ci.onDestroy(()=>_(jt,xi.toStyles)),ci.disabled=!0,ci.overrideTotalTime(xi.totalTime),void pe.push(ci);let Oi=_t;if(Vi.size>1){let Mn=jt;const Ji=[];for(;Mn=Mn.parentNode;){const D=Vi.get(Mn);if(D){Oi=D;break}Ji.push(Mn)}Ji.forEach(D=>Vi.set(D,Oi))}const zi=this._buildAnimation(ci.namespaceId,xi,ti,Qe,p,ke);if(ci.setRealPlayer(zi),Oi===_t)L.push(ci);else{const Mn=this.playersByElement.get(Oi);Mn&&Mn.length&&(ci.parentPlayer=xt(Mn)),pe.push(ci)}}else w(jt,xi.fromStyles),ci.onDestroy(()=>_(jt,xi.toStyles)),H.push(ci),ui.has(jt)&&pe.push(ci)}),H.forEach(dt=>{const jt=Qe.get(dt.element);if(jt&&jt.length){const ci=xt(jt);dt.setRealPlayer(ci)}}),pe.forEach(dt=>{dt.parentPlayer?dt.syncPlayerEvents(dt.parentPlayer):dt.destroy()});for(let dt=0;dt!zi.destroyed);Oi.length?ya(this,jt,Oi):this.processLeaveNode(jt)}return dn.length=0,L.forEach(dt=>{this.players.push(dt),dt.onDone(()=>{dt.destroy();const jt=this.players.indexOf(dt);this.players.splice(jt,1)}),dt.play()}),L}afterFlush(M){this._flushFns.push(M)}afterFlushAnimationsDone(M){this._whenQuietFns.push(M)}_getPreviousPlayers(M,I,G,pe,Qe){let Ct=[];if(I){const Pt=this.playersByQueriedElement.get(M);Pt&&(Ct=Pt)}else{const Pt=this.playersByElement.get(M);if(Pt){const qt=!Qe||Qe==Bi;Pt.forEach(ai=>{ai.queued||!qt&&ai.triggerName!=pe||Ct.push(ai)})}}return(G||pe)&&(Ct=Ct.filter(Pt=>!(G&&G!=Pt.namespaceId||pe&&pe!=Pt.triggerName))),Ct}_beforeAnimationBuild(M,I,G){const Qe=I.element,Ct=I.isRemovalTransition?void 0:M,Pt=I.isRemovalTransition?void 0:I.triggerName;for(const qt of I.timelines){const ai=qt.element,ui=ai!==Qe,Si=N(G,ai,[]);this._getPreviousPlayers(ai,ui,Ct,Pt,I.toState).forEach($i=>{const Gi=$i.getRealPlayer();Gi.beforeDestroy&&Gi.beforeDestroy(),$i.destroy(),Si.push($i)})}w(Qe,I.fromStyles)}_buildAnimation(M,I,G,pe,Qe,Ct){const Pt=I.triggerName,qt=I.element,ai=[],ui=new Set,Si=new Set,cn=I.timelines.map(Gi=>{const Wi=Gi.element;ui.add(Wi);const dn=Wi[bn];if(dn&&dn.removedBeforeQueried)return new a.kP(Gi.duration,Gi.delay);const wn=Wi!==qt,rr=function oa(ce){const M=[];return $n(ce,M),M}((G.get(Wi)||nr).map(ti=>ti.getRealPlayer())).filter(ti=>!!ti.element&&ti.element===Wi),hr=Qe.get(Wi),tr=Ct.get(Wi),na=Ne(this._normalizer,Gi.keyframes,hr,tr),Nr=this._buildPlayer(Gi,na,rr);if(Gi.subTimeline&&pe&&Si.add(Wi),wn){const ti=new xn(M,Pt,Wi);ti.setRealPlayer(Nr),ai.push(ti)}return Nr});ai.forEach(Gi=>{N(this.playersByQueriedElement,Gi.element,[]).push(Gi),Gi.onDone(()=>function _r(ce,M,I){let G=ce.get(M);if(G){if(G.length){const pe=G.indexOf(I);G.splice(pe,1)}0==G.length&&ce.delete(M)}return G}(this.playersByQueriedElement,Gi.element,Gi))}),ui.forEach(Gi=>zn(Gi,Mt));const $i=xt(cn);return $i.onDestroy(()=>{ui.forEach(Gi=>Hi(Gi,Mt)),_(qt,I.toStyles)}),Si.forEach(Gi=>{N(pe,Gi,[]).push($i)}),$i}_buildPlayer(M,I,G){return I.length>0?this.driver.animate(M.element,I,M.duration,M.delay,M.easing,G):new a.kP(M.duration,M.delay)}}class xn{constructor(M,I,G){this.namespaceId=M,this.triggerName=I,this.element=G,this._player=new a.kP,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.parentPlayer=null,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(M){this._containsRealPlayer||(this._player=M,this._queuedCallbacks.forEach((I,G)=>{I.forEach(pe=>be(M,G,void 0,pe))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(M.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(M){this.totalTime=M}syncPlayerEvents(M){const I=this._player;I.triggerCallback&&M.onStart(()=>I.triggerCallback("start")),M.onDone(()=>this.finish()),M.onDestroy(()=>this.destroy())}_queueEvent(M,I){N(this._queuedCallbacks,M,[]).push(I)}onDone(M){this.queued&&this._queueEvent("done",M),this._player.onDone(M)}onStart(M){this.queued&&this._queueEvent("start",M),this._player.onStart(M)}onDestroy(M){this.queued&&this._queueEvent("destroy",M),this._player.onDestroy(M)}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(M){this.queued||this._player.setPosition(M)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(M){const I=this._player;I.triggerCallback&&I.triggerCallback(M)}}function er(ce){return ce&&1===ce.nodeType}function ln(ce,M){const I=ce.style.display;return ce.style.display=M??"none",I}function lr(ce,M,I,G,pe){const Qe=[];I.forEach(qt=>Qe.push(ln(qt)));const Ct=[];G.forEach((qt,ai)=>{const ui=new Map;qt.forEach(Si=>{const cn=M.computeStyle(ai,Si,pe);ui.set(Si,cn),(!cn||0==cn.length)&&(ai[bn]=pn,Ct.push(ai))}),ce.set(ai,ui)});let Pt=0;return I.forEach(qt=>ln(qt,Qe[Pt++])),Ct}function gr(ce,M){const I=new Map;if(ce.forEach(Pt=>I.set(Pt,[])),0==M.length)return I;const pe=new Set(M),Qe=new Map;function Ct(Pt){if(!Pt)return 1;let qt=Qe.get(Pt);if(qt)return qt;const ai=Pt.parentNode;return qt=I.has(ai)?ai:pe.has(ai)?1:Ct(ai),Qe.set(Pt,qt),qt}return M.forEach(Pt=>{const qt=Ct(Pt);1!==qt&&I.get(qt).push(Pt)}),I}function zn(ce,M){ce.classList?.add(M)}function Hi(ce,M){ce.classList?.remove(M)}function ya(ce,M,I){xt(I).onDone(()=>ce.processLeaveNode(M))}function $n(ce,M){for(let I=0;Ipe.add(Qe)):M.set(ce,G),I.delete(ce),!0}class Cn{constructor(M,I,G,pe){this._driver=I,this._normalizer=G,this._triggerCache={},this.onRemovalComplete=(Qe,Ct)=>{},this._transitionEngine=new sa(M.body,I,G,pe),this._timelineEngine=new or(M.body,I,G),this._transitionEngine.onRemovalComplete=(Qe,Ct)=>this.onRemovalComplete(Qe,Ct)}registerTrigger(M,I,G,pe,Qe){const Ct=M+"-"+pe;let Pt=this._triggerCache[Ct];if(!Pt){const qt=[],ui=re(this._driver,Qe,qt,[]);if(qt.length)throw function $e(ce,M){return new s.OBp(3404,!1)}();Pt=function jn(ce,M,I){return new Ir(ce,M,I)}(pe,ui,this._normalizer),this._triggerCache[Ct]=Pt}this._transitionEngine.registerTrigger(I,pe,Pt)}register(M,I){this._transitionEngine.register(M,I)}destroy(M,I){this._transitionEngine.destroy(M,I)}onInsert(M,I,G,pe){this._transitionEngine.insertNode(M,I,G,pe)}onRemove(M,I,G){this._transitionEngine.removeNode(M,I,G)}disableAnimations(M,I){this._transitionEngine.markElementAsDisabled(M,I)}process(M,I,G,pe){if("@"==G.charAt(0)){const[Qe,Ct]=U(G);this._timelineEngine.command(Qe,I,Ct,pe)}else this._transitionEngine.trigger(M,I,G,pe)}listen(M,I,G,pe,Qe){if("@"==G.charAt(0)){const[Ct,Pt]=U(G);return this._timelineEngine.listen(Ct,I,Pt,Qe)}return this._transitionEngine.listen(M,I,G,pe,Qe)}flush(M=-1){this._transitionEngine.flush(M)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(M){this._transitionEngine.afterFlushAnimationsDone(M)}}class Nn{static#e=this.initialStylesByElement=new WeakMap;constructor(M,I,G){this._element=M,this._startStyles=I,this._endStyles=G,this._state=0;let pe=Nn.initialStylesByElement.get(M);pe||Nn.initialStylesByElement.set(M,pe=new Map),this._initialStyles=pe}start(){this._state<1&&(this._startStyles&&_(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(_(this._element,this._initialStyles),this._endStyles&&(_(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(Nn.initialStylesByElement.delete(this._element),this._startStyles&&(w(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(w(this._element,this._endStyles),this._endStyles=null),_(this._element,this._initialStyles),this._state=3)}}function Yn(ce){let M=null;return ce.forEach((I,G)=>{(function qr(ce){return"display"===ce||"position"===ce})(G)&&(M=M||new Map,M.set(G,I))}),M}class Lr{constructor(M,I,G,pe){this.element=M,this.keyframes=I,this.options=G,this._specialStyles=pe,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=G.duration,this._delay=G.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(M=>M()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const M=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,M,this.options),this._finalKeyframe=M.length?M[M.length-1]:new Map;const I=()=>this._onFinish();this.domPlayer.addEventListener("finish",I),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",I)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(M){const I=[];return M.forEach(G=>{I.push(Object.fromEntries(G))}),I}_triggerWebAnimation(M,I,G){return M.animate(this._convertKeyframesToObject(I),G)}onStart(M){this._originalOnStartFns.push(M),this._onStartFns.push(M)}onDone(M){this._originalOnDoneFns.push(M),this._onDoneFns.push(M)}onDestroy(M){this._onDestroyFns.push(M)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(M=>M()),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,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_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(M=>M()),this._onDestroyFns=[])}setPosition(M){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=M*this.time}getPosition(){return+(this.domPlayer.currentTime??0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const M=new Map;this.hasStarted()&&this._finalKeyframe.forEach((G,pe)=>{"offset"!==pe&&M.set(pe,this._finished?G:Ci(this.element,pe))}),this.currentSnapshot=M}triggerCallback(M){const I="start"===M?this._onStartFns:this._onDoneFns;I.forEach(G=>G()),I.length=0}}class mr{validateStyleProperty(M){return!0}validateAnimatableStyleProperty(M){return!0}matchesElement(M,I){return!1}containsElement(M,I){return wt(M,I)}getParentElement(M){return Tt(M)}query(M,I,G){return zt(M,I,G)}computeStyle(M,I,G){return Ci(M,I)}animate(M,I,G,pe,Qe,Ct=[]){const qt={duration:G,delay:pe,fill:0==pe?"both":"forwards"};Qe&&(qt.easing=Qe);const ai=new Map,ui=Ct.filter($i=>$i instanceof Lr);(function di(ce,M){return 0===ce||0===M})(G,pe)&&ui.forEach($i=>{$i.currentSnapshot.forEach((Gi,Wi)=>ai.set(Wi,Gi))});let Si=function V(ce){return ce.length?ce[0]instanceof Map?ce:ce.map(M=>new Map(Object.entries(M))):[]}(I).map($i=>new Map($i));Si=function Ei(ce,M,I){if(I.size&&M.length){let G=M[0],pe=[];if(I.forEach((Qe,Ct)=>{G.has(Ct)||pe.push(Ct),G.set(Ct,Qe)}),pe.length)for(let Qe=1;QeCt.set(Pt,Ci(ce,Pt)))}}return M}(M,Si,ai);const cn=function ar(ce,M){let I=null,G=null;return Array.isArray(M)&&M.length?(I=Yn(M[0]),M.length>1&&(G=Yn(M[M.length-1]))):M instanceof Map&&(I=Yn(M)),I||G?new Nn(ce,I,G):null}(M,Si);return new Lr(M,Si,qt,cn)}}const ua="@.disabled";class wr{constructor(M,I,G,pe){this.namespaceId=M,this.delegate=I,this.engine=G,this._onDestroy=pe,this.\u0275type=0}get data(){return this.delegate.data}destroyNode(M){this.delegate.destroyNode?.(M)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(M,I){return this.delegate.createElement(M,I)}createComment(M){return this.delegate.createComment(M)}createText(M){return this.delegate.createText(M)}appendChild(M,I){this.delegate.appendChild(M,I),this.engine.onInsert(this.namespaceId,I,M,!1)}insertBefore(M,I,G,pe=!0){this.delegate.insertBefore(M,I,G),this.engine.onInsert(this.namespaceId,I,M,pe)}removeChild(M,I,G){this.engine.onRemove(this.namespaceId,I,this.delegate)}selectRootElement(M,I){return this.delegate.selectRootElement(M,I)}parentNode(M){return this.delegate.parentNode(M)}nextSibling(M){return this.delegate.nextSibling(M)}setAttribute(M,I,G,pe){this.delegate.setAttribute(M,I,G,pe)}removeAttribute(M,I,G){this.delegate.removeAttribute(M,I,G)}addClass(M,I){this.delegate.addClass(M,I)}removeClass(M,I){this.delegate.removeClass(M,I)}setStyle(M,I,G,pe){this.delegate.setStyle(M,I,G,pe)}removeStyle(M,I,G){this.delegate.removeStyle(M,I,G)}setProperty(M,I,G){"@"==I.charAt(0)&&I==ua?this.disableAnimations(M,!!G):this.delegate.setProperty(M,I,G)}setValue(M,I){this.delegate.setValue(M,I)}listen(M,I,G){return this.delegate.listen(M,I,G)}disableAnimations(M,I){this.engine.disableAnimations(M,I)}}class Ca extends wr{constructor(M,I,G,pe,Qe){super(I,G,pe,Qe),this.factory=M,this.namespaceId=I}setProperty(M,I,G){"@"==I.charAt(0)?"."==I.charAt(1)&&I==ua?this.disableAnimations(M,G=void 0===G||!!G):this.engine.process(this.namespaceId,M,I.slice(1),G):this.delegate.setProperty(M,I,G)}listen(M,I,G){if("@"==I.charAt(0)){const pe=function ha(ce){switch(ce){case"body":return document.body;case"document":return document;case"window":return window;default:return ce}}(M);let Qe=I.slice(1),Ct="";return"@"!=Qe.charAt(0)&&([Qe,Ct]=function Rr(ce){const M=ce.indexOf(".");return[ce.substring(0,M),ce.slice(M+1)]}(Qe)),this.engine.listen(this.namespaceId,pe,Qe,Ct,Pt=>{this.factory.scheduleListenerCallback(Pt._data||-1,G,Pt)})}return this.delegate.listen(M,I,G)}}class Ya{constructor(M,I,G){this.delegate=M,this.engine=I,this._zone=G,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,I.onRemovalComplete=(pe,Qe)=>{const Ct=Qe?.parentNode(pe);Ct&&Qe.removeChild(Ct,pe)}}createRenderer(M,I){const pe=this.delegate.createRenderer(M,I);if(!M||!I?.data?.animation){const ai=this._rendererCache;let ui=ai.get(pe);return ui||(ui=new wr("",pe,this.engine,()=>ai.delete(pe)),ai.set(pe,ui)),ui}const Qe=I.id,Ct=I.id+"-"+this._currentId;this._currentId++,this.engine.register(Ct,M);const Pt=ai=>{Array.isArray(ai)?ai.forEach(Pt):this.engine.registerTrigger(Qe,Ct,M,ai.name,ai)};return I.data.animation.forEach(Pt),new Ca(this,Ct,pe,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(M,I,G){if(M>=0&&MI(G));const pe=this._animationCallbacksBuffer;0==pe.length&&queueMicrotask(()=>{this._zone.run(()=>{pe.forEach(Qe=>{const[Ct,Pt]=Qe;Ct(Pt)}),this._animationCallbacksBuffer=[]})}),pe.push([I,G])}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()}}var Aa=d(1368);const jr=[{provide:at,useFactory:function ea(){return new nt}},{provide:Cn,useClass:(()=>{class ce extends Cn{constructor(I,G,pe){super(I,G,pe,(0,s.uUt)(s.yai,{optional:!0}))}ngOnDestroy(){this.flush()}static#e=this.\u0275fac=function(G){return new(G||ce)(s.CoB(Aa.Ud),s.CoB(Te),s.CoB(at))};static#t=this.\u0275prov=s.wxM({token:ce,factory:ce.\u0275fac})}return ce})()},{provide:s.O8F,useFactory:function ma(ce,M,I){return new Ya(ce,M,I)},deps:[i.q,Cn,s.WW2]}],Z=[{provide:Te,useFactory:()=>new mr},{provide:s.qwP,useValue:"BrowserAnimations"},...jr],ne=[{provide:Te,useClass:ve},{provide:s.qwP,useValue:"NoopAnimations"},...jr];let P=(()=>{class ce{static withConfig(I){return{ngModule:ce,providers:I.disableAnimations?ne:Z}}static#e=this.\u0275fac=function(G){return new(G||ce)};static#t=this.\u0275mod=s.a4G({type:ce});static#i=this.\u0275inj=s.s3X({providers:Z,imports:[i.iE]})}return ce})();var Ui=d(2992);let dr=(()=>{class ce{static#e=this.\u0275fac=function(G){return new(G||ce)};static#t=this.\u0275cmp=s.In1({type:ce,selectors:[["app-root"]],decls:1,vars:0,template:function(G,pe){1&G&&s.wR5(0,"router-outlet")},dependencies:[Ui.cP],encapsulation:2})}return ce})();var xr=d(7048),Ur=d(1216),ta=d(8656),yn=d(9212),ka=d(119),gn=d(2864);let La=(()=>{class ce{constructor(I,G,pe){this.authService=I,this.router=G,this.dialog=pe}intercept(I,G){const pe=this.authService.getCurrentUser();if(pe&&pe.token){const Qe=I.clone({headers:I.headers.set("Authorization","Bearer "+pe.token)});return G.handle(Qe).pipe((0,yn.y)(()=>{},Ct=>{Ct instanceof xr.gj&&401===Ct.status&&(this.dialog.closeAll(),this.router.navigate(["/auth/login"]))}))}return G.handle(I)}static#e=this.\u0275fac=function(G){return new(G||ce)(s.CoB(ka.A),s.CoB(Ui.E5),s.CoB(gn.qW))};static#t=this.\u0275prov=s.wxM({token:ce,factory:ce.\u0275fac})}return ce})();var Ka=d(3548);let us=(()=>{class ce{constructor(I){this.spinnerService=I}intercept(I,G){return this.spinnerService.show(),G.handle(I).pipe((0,yn.y)(pe=>{pe instanceof xr.WA&&this.spinnerService.hide()},pe=>{this.spinnerService.hide()}))}static#e=this.\u0275fac=function(G){return new(G||ce)(s.CoB(Ka.m))};static#t=this.\u0275prov=s.wxM({token:ce,factory:ce.\u0275fac})}return ce})();var nn=d(9920);let ia=(()=>{class ce{constructor(I){this.injector=I}handleError(I){const G=this.injector.get(ta.QF),pe={message:I.message?I.message:I.toString(),stack:I.stack?I.stack:""};throw G.error(pe),I}static#e=this.\u0275fac=function(G){return new(G||ce)(s.CoB(s.zZn))};static#t=this.\u0275prov=s.wxM({token:ce,factory:ce.\u0275fac})}return ce})(),ur=(()=>{class ce{constructor(I,G){this.router=I,this.authService=G}canActivate(){const I=this.authService.getCurrentUser();return!(!I||!I.isAdmin)||(this.router.navigate(["/"]),!1)}static#e=this.\u0275fac=function(G){return new(G||ce)(s.CoB(Ui.E5),s.CoB(ka.A))};static#t=this.\u0275prov=s.wxM({token:ce,factory:ce.\u0275fac})}return ce})(),Ba=(()=>{class ce{constructor(I){!function wa(ce,M){if(ce)throw new Error(`${M} has already been loaded. Import Core modules in the AppModule only.`)}(I,"CoreModule")}static#e=this.\u0275fac=function(G){return new(G||ce)(s.CoB(ce,12))};static#t=this.\u0275mod=s.a4G({type:ce});static#i=this.\u0275inj=s.s3X({providers:[nn.Q,ur,Ur.iG,{provide:xr.So,useClass:us,multi:!0},{provide:xr.So,useClass:La,multi:!0},{provide:s.eAe,useClass:ia},{provide:ta.QF,useClass:ta.QF},{provide:"LOCALSTORAGE",useValue:window.localStorage}],imports:[Aa.MD,xr.SU]})}return ce})();var Pr=d(9588),Fr=d(6212);const Kn=[{path:"auth",loadChildren:()=>d.e(640).then(d.bind(d,4640)).then(ce=>ce.AuthModule)},{path:"dashboard",loadChildren:()=>d.e(184).then(d.bind(d,2184)).then(ce=>ce.DashboardModule),canActivate:[nn.Q]},{path:"sales",loadChildren:()=>Promise.all([d.e(556),d.e(180)]).then(d.bind(d,6180)).then(ce=>ce.SalesModule),canActivate:[nn.Q]},{path:"favorites",loadChildren:()=>Promise.all([d.e(556),d.e(206)]).then(d.bind(d,1206)).then(ce=>ce.FavoritesModule),canActivate:[nn.Q]},{path:"pictures",loadChildren:()=>d.e(136).then(d.bind(d,1136)).then(ce=>ce.PicturesModule),canActivate:[nn.Q]},{path:"customers",loadChildren:()=>d.e(982).then(d.bind(d,982)).then(ce=>ce.CustomersModule),canActivate:[nn.Q]},{path:"users",loadChildren:()=>d.e(968).then(d.bind(d,6588)).then(ce=>ce.UsersModule),canActivate:[nn.Q]},{path:"account",loadChildren:()=>d.e(228).then(d.bind(d,4847)).then(ce=>ce.AccountModule),canActivate:[nn.Q]},{path:"icons",loadChildren:()=>d.e(168).then(d.bind(d,6168)).then(ce=>ce.IconsModule),canActivate:[nn.Q]},{path:"typography",loadChildren:()=>d.e(852).then(d.bind(d,8852)).then(ce=>ce.TypographyModule),canActivate:[nn.Q]},{path:"about",loadChildren:()=>d.e(40).then(d.bind(d,8422)).then(ce=>ce.AboutModule),canActivate:[nn.Q]},{path:"**",redirectTo:"dashboard",pathMatch:"full"}];let Ha=(()=>{class ce{static#e=this.\u0275fac=function(G){return new(G||ce)};static#t=this.\u0275mod=s.a4G({type:ce});static#i=this.\u0275inj=s.s3X({imports:[Ui.qQ.forRoot(Kn),Ui.qQ]})}return ce})();var pa=d(6716);let Ea=(()=>{class ce{static#e=this.\u0275fac=function(G){return new(G||ce)};static#t=this.\u0275mod=s.a4G({type:ce,bootstrap:[dr]});static#i=this.\u0275inj=s.s3X({imports:[i.iE,P,Ba,Pr.k,Fr.a.forRoot(),Ha,ta.is.forRoot({serverLoggingUrl:"http://my-api/logs",level:pa.O.logLevel,serverLogLevel:pa.O.serverLogLevel})]})}return ce})();pa.O.production&&(0,s.agy)(),i.o_().bootstrapModule(Ea).catch(ce=>console.error(ce))},5140:function(lt,me,d){!function(i){"use strict";i.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(a){return/^nm$/i.test(a)},meridiem:function(a,h,l){return a<12?l?"vm":"VM":l?"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(a){return a+(1===a||8===a||a>=20?"ste":"de")},week:{dow:1,doy:4}})}(d(5908))},7096:function(lt,me,d){!function(i){"use strict";var s=function(g){return 0===g?0:1===g?1:2===g?2:g%100>=3&&g%100<=10?3:g%100>=11?4:5},a={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"]},h=function(g){return function(b,R,Y,J){var ie=s(b),ae=a[g][s(b)];return 2===ie&&(ae=ae[R?0:1]),ae.replace(/%d/i,b)}},l=["\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"];i.defineLocale("ar-dz",{months:l,monthsShort:l,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(g){return"\u0645"===g},meridiem:function(g,b,R){return g<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:h("s"),ss:h("s"),m:h("m"),mm:h("m"),h:h("h"),hh:h("h"),d:h("d"),dd:h("d"),M:h("M"),MM:h("M"),y:h("y"),yy:h("y")},postformat:function(g){return g.replace(/,/g,"\u060c")},week:{dow:0,doy:4}})}(d(5908))},2200:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},7252:function(lt,me,d){!function(i){"use strict";var s={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},a=function(b){return 0===b?0:1===b?1:2===b?2:b%100>=3&&b%100<=10?3:b%100>=11?4:5},h={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"]},l=function(b){return function(R,Y,J,ie){var ae=a(R),Ie=h[b][a(R)];return 2===ae&&(Ie=Ie[Y?0:1]),Ie.replace(/%d/i,R)}},f=["\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"];i.defineLocale("ar-ly",{months:f,monthsShort:f,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(b){return"\u0645"===b},meridiem:function(b,R,Y){return b<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:l("s"),ss:l("s"),m:l("m"),mm:l("m"),h:l("h"),hh:l("h"),d:l("d"),dd:l("d"),M:l("M"),MM:l("M"),y:l("y"),yy:l("y")},preparse:function(b){return b.replace(/\u060c/g,",")},postformat:function(b){return b.replace(/\d/g,function(R){return s[R]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(d(5908))},9568:function(lt,me,d){!function(i){"use strict";i.defineLocale("ar-ma",{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\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:"\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}})}(d(5908))},3068:function(lt,me,d){!function(i){"use strict";var s={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},a={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"};i.defineLocale("ar-ps",{months:"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a_\u0634\u0628\u0627\u0637_\u0622\u0630\u0627\u0631_\u0646\u064a\u0633\u0627\u0646_\u0623\u064a\u0651\u0627\u0631_\u062d\u0632\u064a\u0631\u0627\u0646_\u062a\u0645\u0651\u0648\u0632_\u0622\u0628_\u0623\u064a\u0644\u0648\u0644_\u062a\u0634\u0631\u064a \u0627\u0644\u0623\u0648\u0651\u0644_\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a_\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0651\u0644".split("_"),monthsShort:"\u0643\u0662_\u0634\u0628\u0627\u0637_\u0622\u0630\u0627\u0631_\u0646\u064a\u0633\u0627\u0646_\u0623\u064a\u0651\u0627\u0631_\u062d\u0632\u064a\u0631\u0627\u0646_\u062a\u0645\u0651\u0648\u0632_\u0622\u0628_\u0623\u064a\u0644\u0648\u0644_\u062a\u0661_\u062a\u0662_\u0643\u0661".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(l){return"\u0645"===l},meridiem:function(l,f,g){return l<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(l){return l.replace(/[\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(f){return a[f]}).split("").reverse().join("").replace(/[\u0661\u0662](?![\u062a\u0643])/g,function(f){return a[f]}).split("").reverse().join("").replace(/\u060c/g,",")},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]}).replace(/,/g,"\u060c")},week:{dow:0,doy:6}})}(d(5908))},9052:function(lt,me,d){!function(i){"use strict";var s={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},a={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"};i.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(l){return"\u0645"===l},meridiem:function(l,f,g){return l<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(l){return l.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(f){return a[f]}).replace(/\u060c/g,",")},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]}).replace(/,/g,"\u060c")},week:{dow:0,doy:6}})}(d(5908))},3956:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},7276:function(lt,me,d){!function(i){"use strict";var s={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},a={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},h=function(R){return 0===R?0:1===R?1:2===R?2:R%100>=3&&R%100<=10?3:R%100>=11?4:5},l={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"]},f=function(R){return function(Y,J,ie,ae){var Ie=h(Y),Ee=l[R][h(Y)];return 2===Ie&&(Ee=Ee[J?0:1]),Ee.replace(/%d/i,Y)}},g=["\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"];i.defineLocale("ar",{months:g,monthsShort:g,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(R){return"\u0645"===R},meridiem:function(R,Y,J){return R<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:f("s"),ss:f("s"),m:f("m"),mm:f("m"),h:f("h"),hh:f("h"),d:f("d"),dd:f("d"),M:f("M"),MM:f("M"),y:f("y"),yy:f("y")},preparse:function(R){return R.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(Y){return a[Y]}).replace(/\u060c/g,",")},postformat:function(R){return R.replace(/\d/g,function(Y){return s[Y]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(d(5908))},8240:function(lt,me,d){!function(i){"use strict";var s={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"};i.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:"bir ne\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(h){return/^(g\xfcnd\xfcz|ax\u015fam)$/.test(h)},meridiem:function(h,l,f){return h<4?"gec\u0259":h<12?"s\u0259h\u0259r":h<17?"g\xfcnd\xfcz":"ax\u015fam"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0131nc\u0131|inci|nci|\xfcnc\xfc|nc\u0131|uncu)/,ordinal:function(h){if(0===h)return h+"-\u0131nc\u0131";var l=h%10;return h+(s[l]||s[h%100-l]||s[h>=100?100:null])},week:{dow:1,doy:7}})}(d(5908))},7796:function(lt,me,d){!function(i){"use strict";function a(l,f,g){return"m"===g?f?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443":"h"===g?f?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443":l+" "+function s(l,f){var g=l.split("_");return f%10==1&&f%100!=11?g[0]:f%10>=2&&f%10<=4&&(f%100<10||f%100>=20)?g[1]:g[2]}({ss:f?"\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:f?"\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:f?"\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"}[g],+l)}i.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:a,mm:a,h:a,hh:a,d:"\u0434\u0437\u0435\u043d\u044c",dd:a,M:"\u043c\u0435\u0441\u044f\u0446",MM:a,y:"\u0433\u043e\u0434",yy:a},meridiemParse:/\u043d\u043e\u0447\u044b|\u0440\u0430\u043d\u0456\u0446\u044b|\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430/,isPM:function(l){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430)$/.test(l)},meridiem:function(l,f,g){return l<4?"\u043d\u043e\u0447\u044b":l<12?"\u0440\u0430\u043d\u0456\u0446\u044b":l<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0430\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0456|\u044b|\u0433\u0430)/,ordinal:function(l,f){switch(f){case"M":case"d":case"DDD":case"w":case"W":return l%10!=2&&l%10!=3||l%100==12||l%100==13?l+"-\u044b":l+"-\u0456";case"D":return l+"-\u0433\u0430";default:return l}},week:{dow:1,doy:7}})}(d(5908))},9880:function(lt,me,d){!function(i){"use strict";i.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\u0443_\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"[\u041c\u0438\u043d\u0430\u043b\u0430\u0442\u0430] dddd [\u0432] LT";case 1:case 2:case 4:case 5:return"[\u041c\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\u0435\u043d\u0430",w:"\u0441\u0435\u0434\u043c\u0438\u0446\u0430",ww:"%d \u0441\u0435\u0434\u043c\u0438\u0446\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(a){var h=a%10,l=a%100;return 0===a?a+"-\u0435\u0432":0===l?a+"-\u0435\u043d":l>10&&l<20?a+"-\u0442\u0438":1===h?a+"-\u0432\u0438":2===h?a+"-\u0440\u0438":7===h||8===h?a+"-\u043c\u0438":a+"-\u0442\u0438"},week:{dow:1,doy:7}})}(d(5908))},4328:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},5104:function(lt,me,d){!function(i){"use strict";var s={1:"\u09e7",2:"\u09e8",3:"\u09e9",4:"\u09ea",5:"\u09eb",6:"\u09ec",7:"\u09ed",8:"\u09ee",9:"\u09ef",0:"\u09e6"},a={"\u09e7":"1","\u09e8":"2","\u09e9":"3","\u09ea":"4","\u09eb":"5","\u09ec":"6","\u09ed":"7","\u09ee":"8","\u09ef":"9","\u09e6":"0"};i.defineLocale("bn-bd",{months:"\u099c\u09be\u09a8\u09c1\u09df\u09be\u09b0\u09bf_\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\u09cd\u09b0\u09c1_\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_\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\u09b2_\u09ac\u09c1\u09a7_\u09ac\u09c3\u09b9_\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(l){return l.replace(/[\u09e7\u09e8\u09e9\u09ea\u09eb\u09ec\u09ed\u09ee\u09ef\u09e6]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},meridiemParse:/\u09b0\u09be\u09a4|\u09ad\u09cb\u09b0|\u09b8\u0995\u09be\u09b2|\u09a6\u09c1\u09aa\u09c1\u09b0|\u09ac\u09bf\u0995\u09be\u09b2|\u09b8\u09a8\u09cd\u09a7\u09cd\u09af\u09be|\u09b0\u09be\u09a4/,meridiemHour:function(l,f){return 12===l&&(l=0),"\u09b0\u09be\u09a4"===f?l<4?l:l+12:"\u09ad\u09cb\u09b0"===f||"\u09b8\u0995\u09be\u09b2"===f?l:"\u09a6\u09c1\u09aa\u09c1\u09b0"===f?l>=3?l:l+12:"\u09ac\u09bf\u0995\u09be\u09b2"===f||"\u09b8\u09a8\u09cd\u09a7\u09cd\u09af\u09be"===f?l+12:void 0},meridiem:function(l,f,g){return l<4?"\u09b0\u09be\u09a4":l<6?"\u09ad\u09cb\u09b0":l<12?"\u09b8\u0995\u09be\u09b2":l<15?"\u09a6\u09c1\u09aa\u09c1\u09b0":l<18?"\u09ac\u09bf\u0995\u09be\u09b2":l<20?"\u09b8\u09a8\u09cd\u09a7\u09cd\u09af\u09be":"\u09b0\u09be\u09a4"},week:{dow:0,doy:6}})}(d(5908))},536:function(lt,me,d){!function(i){"use strict";var s={1:"\u09e7",2:"\u09e8",3:"\u09e9",4:"\u09ea",5:"\u09eb",6:"\u09ec",7:"\u09ed",8:"\u09ee",9:"\u09ef",0:"\u09e6"},a={"\u09e7":"1","\u09e8":"2","\u09e9":"3","\u09ea":"4","\u09eb":"5","\u09ec":"6","\u09ed":"7","\u09ee":"8","\u09ef":"9","\u09e6":"0"};i.defineLocale("bn",{months:"\u099c\u09be\u09a8\u09c1\u09df\u09be\u09b0\u09bf_\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\u09cd\u09b0\u09c1_\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_\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\u09b2_\u09ac\u09c1\u09a7_\u09ac\u09c3\u09b9_\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(l){return l.replace(/[\u09e7\u09e8\u09e9\u09ea\u09eb\u09ec\u09ed\u09ee\u09ef\u09e6]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},meridiemParse:/\u09b0\u09be\u09a4|\u09b8\u0995\u09be\u09b2|\u09a6\u09c1\u09aa\u09c1\u09b0|\u09ac\u09bf\u0995\u09be\u09b2|\u09b0\u09be\u09a4/,meridiemHour:function(l,f){return 12===l&&(l=0),"\u09b0\u09be\u09a4"===f&&l>=4||"\u09a6\u09c1\u09aa\u09c1\u09b0"===f&&l<5||"\u09ac\u09bf\u0995\u09be\u09b2"===f?l+12:l},meridiem:function(l,f,g){return l<4?"\u09b0\u09be\u09a4":l<10?"\u09b8\u0995\u09be\u09b2":l<17?"\u09a6\u09c1\u09aa\u09c1\u09b0":l<20?"\u09ac\u09bf\u0995\u09be\u09b2":"\u09b0\u09be\u09a4"},week:{dow:0,doy:6}})}(d(5908))},1108:function(lt,me,d){!function(i){"use strict";var s={1:"\u0f21",2:"\u0f22",3:"\u0f23",4:"\u0f24",5:"\u0f25",6:"\u0f26",7:"\u0f27",8:"\u0f28",9:"\u0f29",0:"\u0f20"},a={"\u0f21":"1","\u0f22":"2","\u0f23":"3","\u0f24":"4","\u0f25":"5","\u0f26":"6","\u0f27":"7","\u0f28":"8","\u0f29":"9","\u0f20":"0"};i.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\u0f0b1_\u0f5f\u0fb3\u0f0b2_\u0f5f\u0fb3\u0f0b3_\u0f5f\u0fb3\u0f0b4_\u0f5f\u0fb3\u0f0b5_\u0f5f\u0fb3\u0f0b6_\u0f5f\u0fb3\u0f0b7_\u0f5f\u0fb3\u0f0b8_\u0f5f\u0fb3\u0f0b9_\u0f5f\u0fb3\u0f0b10_\u0f5f\u0fb3\u0f0b11_\u0f5f\u0fb3\u0f0b12".split("_"),monthsShortRegex:/^(\u0f5f\u0fb3\u0f0b\d{1,2})/,monthsParseExact:!0,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_\u0f5f\u0fb3_\u0f58\u0f72\u0f42_\u0f63\u0fb7\u0f42_\u0f55\u0f74\u0f62_\u0f66\u0f44\u0f66_\u0f66\u0fa4\u0f7a\u0f53".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(l){return l.replace(/[\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\u0f29\u0f20]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},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(l,f){return 12===l&&(l=0),"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"===f&&l>=4||"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44"===f&&l<5||"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42"===f?l+12:l},meridiem:function(l,f,g){return l<4?"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c":l<10?"\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66":l<17?"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44":l<20?"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42":"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"},week:{dow:0,doy:6}})}(d(5908))},1296:function(lt,me,d){!function(i){"use strict";function s(Ee,Ge,tt){return Ee+" "+function l(Ee,Ge){return 2===Ge?function f(Ee){var Ge={m:"v",b:"v",d:"z"};return void 0===Ge[Ee.charAt(0)]?Ee:Ge[Ee.charAt(0)]+Ee.substring(1)}(Ee):Ee}({mm:"munutenn",MM:"miz",dd:"devezh"}[tt],Ee)}function h(Ee){return Ee>9?h(Ee%10):Ee}var g=[/^gen/i,/^c[\u02bc\']hwe/i,/^meu/i,/^ebr/i,/^mae/i,/^(mez|eve)/i,/^gou/i,/^eos/i,/^gwe/i,/^her/i,/^du/i,/^ker/i],b=/^(genver|c[\u02bc\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[\u02bc\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,ae=[/^Su/i,/^Lu/i,/^Me([^r]|$)/i,/^Mer/i,/^Ya/i,/^Gw/i,/^Sa/i];i.defineLocale("br",{months:"Genver_C\u02bchwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C\u02bchwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc\u02bcher_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParse:ae,fullWeekdaysParse:[/^sul/i,/^lun/i,/^meurzh/i,/^merc[\u02bc\']her/i,/^yaou/i,/^gwener/i,/^sadorn/i],shortWeekdaysParse:[/^Sul/i,/^Lun/i,/^Meu/i,/^Mer/i,/^Yao/i,/^Gwe/i,/^Sad/i],minWeekdaysParse:ae,monthsRegex:b,monthsShortRegex:b,monthsStrictRegex:/^(genver|c[\u02bc\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,monthsShortStrictRegex:/^(gen|c[\u02bc\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,monthsParse:g,longMonthsParse:g,shortMonthsParse:g,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY HH:mm",LLLL:"dddd, D [a viz] MMMM YYYY HH:mm"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc\u02bchoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec\u02bch da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s \u02bczo",s:"un nebeud segondenno\xf9",ss:"%d eilenn",m:"ur vunutenn",mm:s,h:"un eur",hh:"%d eur",d:"un devezh",dd:s,M:"ur miz",MM:s,y:"ur bloaz",yy:function a(Ee){switch(h(Ee)){case 1:case 3:case 4:case 5:case 9:return Ee+" bloaz";default:return Ee+" vloaz"}}},dayOfMonthOrdinalParse:/\d{1,2}(a\xf1|vet)/,ordinal:function(Ee){return Ee+(1===Ee?"a\xf1":"vet")},week:{dow:1,doy:4},meridiemParse:/a.m.|g.m./,isPM:function(Ee){return"g.m."===Ee},meridiem:function(Ee,Ge,tt){return Ee<12?"a.m.":"g.m."}})}(d(5908))},2032:function(lt,me,d){!function(i){"use strict";function a(l,f,g){var b=l+" ";switch(g){case"ss":return b+(1===l?"sekunda":2===l||3===l||4===l?"sekunde":"sekundi");case"mm":return b+(1===l?"minuta":2===l||3===l||4===l?"minute":"minuta");case"h":return"jedan sat";case"hh":return b+(1===l?"sat":2===l||3===l||4===l?"sata":"sati");case"dd":return b+(1===l?"dan":"dana");case"MM":return b+(1===l?"mjesec":2===l||3===l||4===l?"mjeseca":"mjeseci");case"yy":return b+(1===l?"godina":2===l||3===l||4===l?"godine":"godina")}}i.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:a,m:function s(l,f,g,b){if("m"===g)return f?"jedna minuta":b?"jednu minutu":"jedne minute"},mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(d(5908))},96:function(lt,me,d){!function(i){"use strict";i.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(a,h){var l=1===a?"r":2===a?"n":3===a?"r":4===a?"t":"\xe8";return("w"===h||"W"===h)&&(l="a"),a+l},week:{dow:1,doy:4}})}(d(5908))},1152:function(lt,me,d){!function(i){"use strict";var s={standalone:"leden_\xfanor_b\u0159ezen_duben_kv\u011bten_\u010derven_\u010dervenec_srpen_z\xe1\u0159\xed_\u0159\xedjen_listopad_prosinec".split("_"),format:"ledna_\xfanora_b\u0159ezna_dubna_kv\u011btna_\u010dervna_\u010dervence_srpna_z\xe1\u0159\xed_\u0159\xedjna_listopadu_prosince".split("_"),isFormat:/DD?[o.]?(\[[^\[\]]*\]|\s)+MMMM/},a="led_\xfano_b\u0159e_dub_kv\u011b_\u010dvn_\u010dvc_srp_z\xe1\u0159_\u0159\xedj_lis_pro".split("_"),h=[/^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],l=/^(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 f(R){return R>1&&R<5&&1!=~~(R/10)}function g(R,Y,J,ie){var ae=R+" ";switch(J){case"s":return Y||ie?"p\xe1r sekund":"p\xe1r sekundami";case"ss":return Y||ie?ae+(f(R)?"sekundy":"sekund"):ae+"sekundami";case"m":return Y?"minuta":ie?"minutu":"minutou";case"mm":return Y||ie?ae+(f(R)?"minuty":"minut"):ae+"minutami";case"h":return Y?"hodina":ie?"hodinu":"hodinou";case"hh":return Y||ie?ae+(f(R)?"hodiny":"hodin"):ae+"hodinami";case"d":return Y||ie?"den":"dnem";case"dd":return Y||ie?ae+(f(R)?"dny":"dn\xed"):ae+"dny";case"M":return Y||ie?"m\u011bs\xedc":"m\u011bs\xedcem";case"MM":return Y||ie?ae+(f(R)?"m\u011bs\xedce":"m\u011bs\xedc\u016f"):ae+"m\u011bs\xedci";case"y":return Y||ie?"rok":"rokem";case"yy":return Y||ie?ae+(f(R)?"roky":"let"):ae+"lety"}}i.defineLocale("cs",{months:s,monthsShort:a,monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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:g,ss:g,m:g,mm:g,h:g,hh:g,d:g,dd:g,M:g,MM:g,y:g,yy:g},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},1950:function(lt,me,d){!function(i){"use strict";i.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(a){return a+(/\u0441\u0435\u0445\u0435\u0442$/i.exec(a)?"\u0440\u0435\u043d":/\u04ab\u0443\u043b$/i.exec(a)?"\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}})}(d(5908))},8875:function(lt,me,d){!function(i){"use strict";i.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(a){var l="";return a>20?l=40===a||50===a||60===a||80===a||100===a?"fed":"ain":a>0&&(l=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"][a]),a+l},week:{dow:1,doy:4}})}(d(5908))},5424:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},2604:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[h+" Tage",h+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[h+" Monate",h+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[h+" Jahre",h+" Jahren"]};return l?b[f][0]:b[f][1]}i.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:s,mm:"%d Minuten",h:s,hh:"%d Stunden",d:s,dd:s,w:s,ww:"%d Wochen",M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},9168:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[h+" Tage",h+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[h+" Monate",h+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[h+" Jahre",h+" Jahren"]};return l?b[f][0]:b[f][1]}i.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:s,mm:"%d Minuten",h:s,hh:"%d Stunden",d:s,dd:s,w:s,ww:"%d Wochen",M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},992:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[h+" Tage",h+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[h+" Monate",h+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[h+" Jahre",h+" Jahren"]};return l?b[f][0]:b[f][1]}i.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:s,mm:"%d Minuten",h:s,hh:"%d Stunden",d:s,dd:s,w:s,ww:"%d Wochen",M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},7300:function(lt,me,d){!function(i){"use strict";var s=["\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"],a=["\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"];i.defineLocale("dv",{months:s,monthsShort:s,weekdays:a,weekdaysShort:a,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(l){return"\u0789\u078a"===l},meridiem:function(l,f,g){return l<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(l){return l.replace(/\u060c/g,",")},postformat:function(l){return l.replace(/,/g,"\u060c")},week:{dow:7,doy:12}})}(d(5908))},4400:function(lt,me,d){!function(i){"use strict";i.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(h,l){return h?"string"==typeof l&&/D/.test(l.substring(0,l.indexOf("MMMM")))?this._monthsGenitiveEl[h.month()]:this._monthsNominativeEl[h.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(h,l,f){return h>11?f?"\u03bc\u03bc":"\u039c\u039c":f?"\u03c0\u03bc":"\u03a0\u039c"},isPM:function(h){return"\u03bc"===(h+"").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(){return 6===this.day()?"[\u03c4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf] dddd [{}] LT":"[\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7] dddd [{}] LT"},sameElse:"L"},calendar:function(h,l){var f=this._calendarEl[h],g=l&&l.hours();return function s(h){return typeof Function<"u"&&h instanceof Function||"[object Function]"===Object.prototype.toString.call(h)}(f)&&(f=f.apply(l)),f.replace("{}",g%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}})}(d(5908))},3536:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:0,doy:4}})}(d(5908))},1760:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")}})}(d(5908))},7032:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:1,doy:4}})}(d(5908))},1832:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:1,doy:4}})}(d(5908))},404:function(lt,me,d){!function(i){"use strict";i.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",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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")}})}(d(5908))},5716:function(lt,me,d){!function(i){"use strict";i.defineLocale("en-in",{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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:0,doy:6}})}(d(5908))},5312:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:1,doy:4}})}(d(5908))},3320:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:1,doy:4}})}(d(5908))},6392:function(lt,me,d){!function(i){"use strict";i.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_a\u016dgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mart_apr_maj_jun_jul_a\u016dg_sept_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:"[la] D[-an de] MMMM, YYYY",LLL:"[la] D[-an de] MMMM, YYYY HH:mm",LLLL:"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm",llll:"ddd, [la] D[-an de] MMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(a){return"p"===a.charAt(0).toLowerCase()},meridiem:function(a,h,l){return a>11?l?"p.t.m.":"P.T.M.":l?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodia\u016d je] LT",nextDay:"[Morga\u016d je] LT",nextWeek:"dddd[n je] LT",lastDay:"[Hiera\u016d je] LT",lastWeek:"[pasintan] dddd[n je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"anta\u016d %s",s:"kelkaj sekundoj",ss:"%d sekundoj",m:"unu minuto",mm:"%d minutoj",h:"unu horo",hh:"%d horoj",d:"unu tago",dd:"%d tagoj",M:"unu monato",MM:"%d monatoj",y:"unu jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})}(d(5908))},8540:function(lt,me,d){!function(i){"use strict";var s="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),h=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],l=/^(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;i.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(g,b){return g?/-MMM-/.test(b)?a[g.month()]:s[g.month()]:s},monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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:"DD/MM/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",w:"una semana",ww:"%d semanas",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}})}(d(5908))},3504:function(lt,me,d){!function(i){"use strict";var s="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),h=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],l=/^(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;i.defineLocale("es-mx",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(g,b){return g?/-MMM-/.test(b)?a[g.month()]:s[g.month()]:s},monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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",w:"una semana",ww:"%d semanas",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:4},invalidDate:"Fecha inv\xe1lida"})}(d(5908))},9224:function(lt,me,d){!function(i){"use strict";var s="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),h=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],l=/^(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;i.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(g,b){return g?/-MMM-/.test(b)?a[g.month()]:s[g.month()]:s},monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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",w:"una semana",ww:"%d semanas",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}})}(d(5908))},1964:function(lt,me,d){!function(i){"use strict";var s="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),h=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],l=/^(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;i.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(g,b){return g?/-MMM-/.test(b)?a[g.month()]:s[g.month()]:s},monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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",w:"una semana",ww:"%d semanas",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},invalidDate:"Fecha inv\xe1lida"})}(d(5908))},596:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b={s:["m\xf5ne sekundi","m\xf5ni sekund","paar sekundit"],ss:[h+"sekundi",h+"sekundit"],m:["\xfche minuti","\xfcks minut"],mm:[h+" minuti",h+" minutit"],h:["\xfche tunni","tund aega","\xfcks tund"],hh:[h+" tunni",h+" tundi"],d:["\xfche p\xe4eva","\xfcks p\xe4ev"],M:["kuu aja","kuu aega","\xfcks kuu"],MM:[h+" kuu",h+" kuud"],y:["\xfche aasta","aasta","\xfcks aasta"],yy:[h+" aasta",h+" aastat"]};return l?b[f][2]?b[f][2]:b[f][1]:g?b[f][0]:b[f][1]}i.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,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:"%d p\xe4eva",M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},8060:function(lt,me,d){!function(i){"use strict";i.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(d(5908))},8184:function(lt,me,d){!function(i){"use strict";var s={1:"\u06f1",2:"\u06f2",3:"\u06f3",4:"\u06f4",5:"\u06f5",6:"\u06f6",7:"\u06f7",8:"\u06f8",9:"\u06f9",0:"\u06f0"},a={"\u06f1":"1","\u06f2":"2","\u06f3":"3","\u06f4":"4","\u06f5":"5","\u06f6":"6","\u06f7":"7","\u06f8":"8","\u06f9":"9","\u06f0":"0"};i.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(l){return/\u0628\u0639\u062f \u0627\u0632 \u0638\u0647\u0631/.test(l)},meridiem:function(l,f,g){return l<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:"%d \u062b\u0627\u0646\u06cc\u0647",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(l){return l.replace(/[\u06f0-\u06f9]/g,function(f){return a[f]}).replace(/\u060c/g,",")},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]}).replace(/,/g,"\u060c")},dayOfMonthOrdinalParse:/\d{1,2}\u0645/,ordinal:"%d\u0645",week:{dow:6,doy:12}})}(d(5908))},6736:function(lt,me,d){!function(i){"use strict";var s="nolla yksi kaksi kolme nelj\xe4 viisi kuusi seitsem\xe4n kahdeksan yhdeks\xe4n".split(" "),a=["nolla","yhden","kahden","kolmen","nelj\xe4n","viiden","kuuden",s[7],s[8],s[9]];function h(g,b,R,Y){var J="";switch(R){case"s":return Y?"muutaman sekunnin":"muutama sekunti";case"ss":J=Y?"sekunnin":"sekuntia";break;case"m":return Y?"minuutin":"minuutti";case"mm":J=Y?"minuutin":"minuuttia";break;case"h":return Y?"tunnin":"tunti";case"hh":J=Y?"tunnin":"tuntia";break;case"d":return Y?"p\xe4iv\xe4n":"p\xe4iv\xe4";case"dd":J=Y?"p\xe4iv\xe4n":"p\xe4iv\xe4\xe4";break;case"M":return Y?"kuukauden":"kuukausi";case"MM":J=Y?"kuukauden":"kuukautta";break;case"y":return Y?"vuoden":"vuosi";case"yy":J=Y?"vuoden":"vuotta"}return function l(g,b){return g<10?b?a[g]:s[g]:g}(g,Y)+" "+J}i.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:h,ss:h,m:h,mm:h,h,hh:h,d:h,dd:h,M:h,MM:h,y:h,yy:h},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},9264:function(lt,me,d){!function(i){"use strict";i.defineLocale("fil",{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(a){return a},week:{dow:1,doy:4}})}(d(5908))},8299:function(lt,me,d){!function(i){"use strict";i.defineLocale("fo",{months:"januar_februar_mars_apr\xedl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_m\xe1nadagur_t\xfdsdagur_mikudagur_h\xf3sdagur_fr\xedggjadagur_leygardagur".split("_"),weekdaysShort:"sun_m\xe1n_t\xfds_mik_h\xf3s_fr\xed_ley".split("_"),weekdaysMin:"su_m\xe1_t\xfd_mi_h\xf3_fr_le".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:"[\xcd dag kl.] LT",nextDay:"[\xcd morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[\xcd gj\xe1r kl.] LT",lastWeek:"[s\xed\xf0stu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s s\xed\xf0ani",s:"f\xe1 sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein t\xedmi",hh:"%d t\xedmar",d:"ein dagur",dd:"%d dagar",M:"ein m\xe1na\xf0ur",MM:"%d m\xe1na\xf0ir",y:"eitt \xe1r",yy:"%d \xe1r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},4584:function(lt,me,d){!function(i){"use strict";i.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(a,h){switch(h){default:case"M":case"Q":case"D":case"DDD":case"d":return a+(1===a?"er":"e");case"w":case"W":return a+(1===a?"re":"e")}}})}(d(5908))},8024:function(lt,me,d){!function(i){"use strict";i.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(a,h){switch(h){default:case"M":case"Q":case"D":case"DDD":case"d":return a+(1===a?"er":"e");case"w":case"W":return a+(1===a?"re":"e")}},week:{dow:1,doy:4}})}(d(5908))},4344:function(lt,me,d){!function(i){"use strict";var h=/(janv\.?|f\xe9vr\.?|mars|avr\.?|mai|juin|juil\.?|ao\xfbt|sept\.?|oct\.?|nov\.?|d\xe9c\.?|janvier|f\xe9vrier|mars|avril|mai|juin|juillet|ao\xfbt|septembre|octobre|novembre|d\xe9cembre)/i,l=[/^janv/i,/^f\xe9vr/i,/^mars/i,/^avr/i,/^mai/i,/^juin/i,/^juil/i,/^ao\xfbt/i,/^sept/i,/^oct/i,/^nov/i,/^d\xe9c/i];i.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("_"),monthsRegex:h,monthsShortRegex:h,monthsStrictRegex:/^(janvier|f\xe9vrier|mars|avril|mai|juin|juillet|ao\xfbt|septembre|octobre|novembre|d\xe9cembre)/i,monthsShortStrictRegex:/(janv\.?|f\xe9vr\.?|mars|avr\.?|mai|juin|juil\.?|ao\xfbt|sept\.?|oct\.?|nov\.?|d\xe9c\.?)/i,monthsParse:l,longMonthsParse:l,shortMonthsParse:l,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",w:"une semaine",ww:"%d semaines",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(g,b){switch(b){case"D":return g+(1===g?"er":"");default:case"M":case"Q":case"DDD":case"d":return g+(1===g?"er":"e");case"w":case"W":return g+(1===g?"re":"e")}},week:{dow:1,doy:4}})}(d(5908))},2672:function(lt,me,d){!function(i){"use strict";var s="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),a="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_");i.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(l,f){return l?/-MMM-/.test(f)?a[l.month()]:s[l.month()]:s},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(l){return l+(1===l||8===l||l>=20?"ste":"de")},week:{dow:1,doy:4}})}(d(5908))},6476:function(lt,me,d){!function(i){"use strict";i.defineLocale("ga",{months:["Ean\xe1ir","Feabhra","M\xe1rta","Aibre\xe1n","Bealtaine","Meitheamh","I\xfail","L\xfanasa","Me\xe1n F\xf3mhair","Deireadh F\xf3mhair","Samhain","Nollaig"],monthsShort:["Ean","Feabh","M\xe1rt","Aib","Beal","Meith","I\xfail","L\xfan","M.F.","D.F.","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 Sathairn"],weekdaysShort:["Domh","Luan","M\xe1irt","C\xe9ad","D\xe9ar","Aoine","Sath"],weekdaysMin:["Do","Lu","M\xe1","C\xe9","D\xe9","A","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 ag] 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\xedonna",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(b){return b+(1===b?"d":b%10==2?"na":"mh")},week:{dow:1,doy:4}})}(d(5908))},5148:function(lt,me,d){!function(i){"use strict";i.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(b){return b+(1===b?"d":b%10==2?"na":"mh")},week:{dow:1,doy:4}})}(d(5908))},2176:function(lt,me,d){!function(i){"use strict";i.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(a){return 0===a.indexOf("un")?"n"+a:"en "+a},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}})}(d(5908))},7260:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b={s:["\u0925\u094b\u0921\u092f\u093e \u0938\u0945\u0915\u0902\u0921\u093e\u0902\u0928\u0940","\u0925\u094b\u0921\u0947 \u0938\u0945\u0915\u0902\u0921"],ss:[h+" \u0938\u0945\u0915\u0902\u0921\u093e\u0902\u0928\u0940",h+" \u0938\u0945\u0915\u0902\u0921"],m:["\u090f\u0915\u093e \u092e\u093f\u0923\u091f\u093e\u0928","\u090f\u0915 \u092e\u093f\u0928\u0942\u091f"],mm:[h+" \u092e\u093f\u0923\u091f\u093e\u0902\u0928\u0940",h+" \u092e\u093f\u0923\u091f\u093e\u0902"],h:["\u090f\u0915\u093e \u0935\u0930\u093e\u0928","\u090f\u0915 \u0935\u0930"],hh:[h+" \u0935\u0930\u093e\u0902\u0928\u0940",h+" \u0935\u0930\u093e\u0902"],d:["\u090f\u0915\u093e \u0926\u093f\u0938\u093e\u0928","\u090f\u0915 \u0926\u0940\u0938"],dd:[h+" \u0926\u093f\u0938\u093e\u0902\u0928\u0940",h+" \u0926\u0940\u0938"],M:["\u090f\u0915\u093e \u092e\u094d\u0939\u092f\u0928\u094d\u092f\u093e\u0928","\u090f\u0915 \u092e\u094d\u0939\u092f\u0928\u094b"],MM:[h+" \u092e\u094d\u0939\u092f\u0928\u094d\u092f\u093e\u0928\u0940",h+" \u092e\u094d\u0939\u092f\u0928\u0947"],y:["\u090f\u0915\u093e \u0935\u0930\u094d\u0938\u093e\u0928","\u090f\u0915 \u0935\u0930\u094d\u0938"],yy:[h+" \u0935\u0930\u094d\u0938\u093e\u0902\u0928\u0940",h+" \u0935\u0930\u094d\u0938\u093e\u0902"]};return g?b[f][0]:b[f][1]}i.defineLocale("gom-deva",{months:{standalone:"\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\u0940\u0932_\u092e\u0947_\u091c\u0942\u0928_\u091c\u0941\u0932\u092f_\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("_"),format:"\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940\u091a\u094d\u092f\u093e_\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940\u091a\u094d\u092f\u093e_\u092e\u093e\u0930\u094d\u091a\u093e\u091a\u094d\u092f\u093e_\u090f\u092a\u094d\u0930\u0940\u0932\u093e\u091a\u094d\u092f\u093e_\u092e\u0947\u092f\u093e\u091a\u094d\u092f\u093e_\u091c\u0942\u0928\u093e\u091a\u094d\u092f\u093e_\u091c\u0941\u0932\u092f\u093e\u091a\u094d\u092f\u093e_\u0911\u0917\u0938\u094d\u091f\u093e\u091a\u094d\u092f\u093e_\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930\u093e\u091a\u094d\u092f\u093e_\u0911\u0915\u094d\u091f\u094b\u092c\u0930\u093e\u091a\u094d\u092f\u093e_\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930\u093e\u091a\u094d\u092f\u093e_\u0921\u093f\u0938\u0947\u0902\u092c\u0930\u093e\u091a\u094d\u092f\u093e".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"\u091c\u093e\u0928\u0947._\u092b\u0947\u092c\u094d\u0930\u0941._\u092e\u093e\u0930\u094d\u091a_\u090f\u092a\u094d\u0930\u0940._\u092e\u0947_\u091c\u0942\u0928_\u091c\u0941\u0932._\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:"\u0906\u092f\u0924\u093e\u0930_\u0938\u094b\u092e\u093e\u0930_\u092e\u0902\u0917\u0933\u093e\u0930_\u092c\u0941\u0927\u0935\u093e\u0930_\u092c\u093f\u0930\u0947\u0938\u094d\u0924\u093e\u0930_\u0938\u0941\u0915\u094d\u0930\u093e\u0930_\u0936\u0947\u0928\u0935\u093e\u0930".split("_"),weekdaysShort:"\u0906\u092f\u0924._\u0938\u094b\u092e._\u092e\u0902\u0917\u0933._\u092c\u0941\u0927._\u092c\u094d\u0930\u0947\u0938\u094d\u0924._\u0938\u0941\u0915\u094d\u0930._\u0936\u0947\u0928.".split("_"),weekdaysMin:"\u0906_\u0938\u094b_\u092e\u0902_\u092c\u0941_\u092c\u094d\u0930\u0947_\u0938\u0941_\u0936\u0947".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [\u0935\u093e\u091c\u0924\u093e\u0902]",LTS:"A h:mm:ss [\u0935\u093e\u091c\u0924\u093e\u0902]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [\u0935\u093e\u091c\u0924\u093e\u0902]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [\u0935\u093e\u091c\u0924\u093e\u0902]",llll:"ddd, D MMM YYYY, A h:mm [\u0935\u093e\u091c\u0924\u093e\u0902]"},calendar:{sameDay:"[\u0906\u092f\u091c] LT",nextDay:"[\u092b\u093e\u0932\u094d\u092f\u093e\u0902] LT",nextWeek:"[\u092b\u0941\u0921\u0932\u094b] dddd[,] LT",lastDay:"[\u0915\u093e\u0932] LT",lastWeek:"[\u092b\u093e\u091f\u0932\u094b] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s \u0906\u0926\u0940\u0902",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}(\u0935\u0947\u0930)/,ordinal:function(h,l){return"D"===l?h+"\u0935\u0947\u0930":h},week:{dow:0,doy:3},meridiemParse:/\u0930\u093e\u0924\u0940|\u0938\u0915\u093e\u0933\u0940\u0902|\u0926\u0928\u092a\u093e\u0930\u093e\u0902|\u0938\u093e\u0902\u091c\u0947/,meridiemHour:function(h,l){return 12===h&&(h=0),"\u0930\u093e\u0924\u0940"===l?h<4?h:h+12:"\u0938\u0915\u093e\u0933\u0940\u0902"===l?h:"\u0926\u0928\u092a\u093e\u0930\u093e\u0902"===l?h>12?h:h+12:"\u0938\u093e\u0902\u091c\u0947"===l?h+12:void 0},meridiem:function(h,l,f){return h<4?"\u0930\u093e\u0924\u0940":h<12?"\u0938\u0915\u093e\u0933\u0940\u0902":h<16?"\u0926\u0928\u092a\u093e\u0930\u093e\u0902":h<20?"\u0938\u093e\u0902\u091c\u0947":"\u0930\u093e\u0924\u0940"}})}(d(5908))},3772:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b={s:["thoddea sekondamni","thodde sekond"],ss:[h+" sekondamni",h+" sekond"],m:["eka mintan","ek minut"],mm:[h+" mintamni",h+" mintam"],h:["eka voran","ek vor"],hh:[h+" voramni",h+" voram"],d:["eka disan","ek dis"],dd:[h+" disamni",h+" dis"],M:["eka mhoinean","ek mhoino"],MM:[h+" mhoineamni",h+" mhoine"],y:["eka vorsan","ek voros"],yy:[h+" vorsamni",h+" vorsam"]};return g?b[f][0]:b[f][1]}i.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",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}(er)/,ordinal:function(h,l){return"D"===l?h+"er":h},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(h,l){return 12===h&&(h=0),"rati"===l?h<4?h:h+12:"sokallim"===l?h:"donparam"===l?h>12?h:h+12:"sanje"===l?h+12:void 0},meridiem:function(h,l,f){return h<4?"rati":h<12?"sokallim":h<16?"donparam":h<20?"sanje":"rati"}})}(d(5908))},9528:function(lt,me,d){!function(i){"use strict";var s={1:"\u0ae7",2:"\u0ae8",3:"\u0ae9",4:"\u0aea",5:"\u0aeb",6:"\u0aec",7:"\u0aed",8:"\u0aee",9:"\u0aef",0:"\u0ae6"},a={"\u0ae7":"1","\u0ae8":"2","\u0ae9":"3","\u0aea":"4","\u0aeb":"5","\u0aec":"6","\u0aed":"7","\u0aee":"8","\u0aef":"9","\u0ae6":"0"};i.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\u0ab9\u0ac7\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(l){return l.replace(/[\u0ae7\u0ae8\u0ae9\u0aea\u0aeb\u0aec\u0aed\u0aee\u0aef\u0ae6]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},meridiemParse:/\u0ab0\u0abe\u0aa4|\u0aac\u0aaa\u0acb\u0ab0|\u0ab8\u0ab5\u0abe\u0ab0|\u0ab8\u0abe\u0a82\u0a9c/,meridiemHour:function(l,f){return 12===l&&(l=0),"\u0ab0\u0abe\u0aa4"===f?l<4?l:l+12:"\u0ab8\u0ab5\u0abe\u0ab0"===f?l:"\u0aac\u0aaa\u0acb\u0ab0"===f?l>=10?l:l+12:"\u0ab8\u0abe\u0a82\u0a9c"===f?l+12:void 0},meridiem:function(l,f,g){return l<4?"\u0ab0\u0abe\u0aa4":l<10?"\u0ab8\u0ab5\u0abe\u0ab0":l<17?"\u0aac\u0aaa\u0acb\u0ab0":l<20?"\u0ab8\u0abe\u0a82\u0a9c":"\u0ab0\u0abe\u0aa4"},week:{dow:0,doy:6}})}(d(5908))},6832:function(lt,me,d){!function(i){"use strict";i.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(a){return 2===a?"\u05e9\u05e2\u05ea\u05d9\u05d9\u05dd":a+" \u05e9\u05e2\u05d5\u05ea"},d:"\u05d9\u05d5\u05dd",dd:function(a){return 2===a?"\u05d9\u05d5\u05de\u05d9\u05d9\u05dd":a+" \u05d9\u05de\u05d9\u05dd"},M:"\u05d7\u05d5\u05d3\u05e9",MM:function(a){return 2===a?"\u05d7\u05d5\u05d3\u05e9\u05d9\u05d9\u05dd":a+" \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd"},y:"\u05e9\u05e0\u05d4",yy:function(a){return 2===a?"\u05e9\u05e0\u05ea\u05d9\u05d9\u05dd":a%10==0&&10!==a?a+" \u05e9\u05e0\u05d4":a+" \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(a){return/^(\u05d0\u05d7\u05d4"\u05e6|\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd|\u05d1\u05e2\u05e8\u05d1)$/.test(a)},meridiem:function(a,h,l){return a<5?"\u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8":a<10?"\u05d1\u05d1\u05d5\u05e7\u05e8":a<12?l?'\u05dc\u05e4\u05e0\u05d4"\u05e6':"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":a<18?l?'\u05d0\u05d7\u05d4"\u05e6':"\u05d0\u05d7\u05e8\u05d9 \u05d4\u05e6\u05d4\u05e8\u05d9\u05d9\u05dd":"\u05d1\u05e2\u05e8\u05d1"}})}(d(5908))},5592:function(lt,me,d){!function(i){"use strict";var s={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},a={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"},h=[/^\u091c\u0928/i,/^\u092b\u093c\u0930|\u092b\u0930/i,/^\u092e\u093e\u0930\u094d\u091a/i,/^\u0905\u092a\u094d\u0930\u0948/i,/^\u092e\u0908/i,/^\u091c\u0942\u0928/i,/^\u091c\u0941\u0932/i,/^\u0905\u0917/i,/^\u0938\u093f\u0924\u0902|\u0938\u093f\u0924/i,/^\u0905\u0915\u094d\u091f\u0942/i,/^\u0928\u0935|\u0928\u0935\u0902/i,/^\u0926\u093f\u0938\u0902|\u0926\u093f\u0938/i];i.defineLocale("hi",{months:{format:"\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("_"),standalone:"\u091c\u0928\u0935\u0930\u0940_\u092b\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\u0902\u092c\u0930_\u0905\u0915\u094d\u091f\u0942\u092c\u0930_\u0928\u0935\u0902\u092c\u0930_\u0926\u093f\u0938\u0902\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("_"),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"},monthsParse:h,longMonthsParse:h,shortMonthsParse:[/^\u091c\u0928/i,/^\u092b\u093c\u0930/i,/^\u092e\u093e\u0930\u094d\u091a/i,/^\u0905\u092a\u094d\u0930\u0948/i,/^\u092e\u0908/i,/^\u091c\u0942\u0928/i,/^\u091c\u0941\u0932/i,/^\u0905\u0917/i,/^\u0938\u093f\u0924/i,/^\u0905\u0915\u094d\u091f\u0942/i,/^\u0928\u0935/i,/^\u0926\u093f\u0938/i],monthsRegex:/^(\u091c\u0928\u0935\u0930\u0940|\u091c\u0928\.?|\u092b\u093c\u0930\u0935\u0930\u0940|\u092b\u0930\u0935\u0930\u0940|\u092b\u093c\u0930\.?|\u092e\u093e\u0930\u094d\u091a?|\u0905\u092a\u094d\u0930\u0948\u0932|\u0905\u092a\u094d\u0930\u0948\.?|\u092e\u0908?|\u091c\u0942\u0928?|\u091c\u0941\u0932\u093e\u0908|\u091c\u0941\u0932\.?|\u0905\u0917\u0938\u094d\u0924|\u0905\u0917\.?|\u0938\u093f\u0924\u092e\u094d\u092c\u0930|\u0938\u093f\u0924\u0902\u092c\u0930|\u0938\u093f\u0924\.?|\u0905\u0915\u094d\u091f\u0942\u092c\u0930|\u0905\u0915\u094d\u091f\u0942\.?|\u0928\u0935\u092e\u094d\u092c\u0930|\u0928\u0935\u0902\u092c\u0930|\u0928\u0935\.?|\u0926\u093f\u0938\u092e\u094d\u092c\u0930|\u0926\u093f\u0938\u0902\u092c\u0930|\u0926\u093f\u0938\.?)/i,monthsShortRegex:/^(\u091c\u0928\u0935\u0930\u0940|\u091c\u0928\.?|\u092b\u093c\u0930\u0935\u0930\u0940|\u092b\u0930\u0935\u0930\u0940|\u092b\u093c\u0930\.?|\u092e\u093e\u0930\u094d\u091a?|\u0905\u092a\u094d\u0930\u0948\u0932|\u0905\u092a\u094d\u0930\u0948\.?|\u092e\u0908?|\u091c\u0942\u0928?|\u091c\u0941\u0932\u093e\u0908|\u091c\u0941\u0932\.?|\u0905\u0917\u0938\u094d\u0924|\u0905\u0917\.?|\u0938\u093f\u0924\u092e\u094d\u092c\u0930|\u0938\u093f\u0924\u0902\u092c\u0930|\u0938\u093f\u0924\.?|\u0905\u0915\u094d\u091f\u0942\u092c\u0930|\u0905\u0915\u094d\u091f\u0942\.?|\u0928\u0935\u092e\u094d\u092c\u0930|\u0928\u0935\u0902\u092c\u0930|\u0928\u0935\.?|\u0926\u093f\u0938\u092e\u094d\u092c\u0930|\u0926\u093f\u0938\u0902\u092c\u0930|\u0926\u093f\u0938\.?)/i,monthsStrictRegex:/^(\u091c\u0928\u0935\u0930\u0940?|\u092b\u093c\u0930\u0935\u0930\u0940|\u092b\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|\u0938\u093f\u0924\u0902\u092c\u0930|\u0938\u093f\u0924?\.?|\u0905\u0915\u094d\u091f\u0942\u092c\u0930|\u0905\u0915\u094d\u091f\u0942\.?|\u0928\u0935\u092e\u094d\u092c\u0930|\u0928\u0935\u0902\u092c\u0930?|\u0926\u093f\u0938\u092e\u094d\u092c\u0930|\u0926\u093f\u0938\u0902\u092c\u0930?)/i,monthsShortStrictRegex:/^(\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\.?)/i,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(g){return g.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(b){return a[b]})},postformat:function(g){return g.replace(/\d/g,function(b){return s[b]})},meridiemParse:/\u0930\u093e\u0924|\u0938\u0941\u092c\u0939|\u0926\u094b\u092a\u0939\u0930|\u0936\u093e\u092e/,meridiemHour:function(g,b){return 12===g&&(g=0),"\u0930\u093e\u0924"===b?g<4?g:g+12:"\u0938\u0941\u092c\u0939"===b?g:"\u0926\u094b\u092a\u0939\u0930"===b?g>=10?g:g+12:"\u0936\u093e\u092e"===b?g+12:void 0},meridiem:function(g,b,R){return g<4?"\u0930\u093e\u0924":g<10?"\u0938\u0941\u092c\u0939":g<17?"\u0926\u094b\u092a\u0939\u0930":g<20?"\u0936\u093e\u092e":"\u0930\u093e\u0924"},week:{dow:0,doy:6}})}(d(5908))},6208:function(lt,me,d){!function(i){"use strict";function s(h,l,f){var g=h+" ";switch(f){case"ss":return g+(1===h?"sekunda":2===h||3===h||4===h?"sekunde":"sekundi");case"m":return l?"jedna minuta":"jedne minute";case"mm":return g+(1===h?"minuta":2===h||3===h||4===h?"minute":"minuta");case"h":return l?"jedan sat":"jednog sata";case"hh":return g+(1===h?"sat":2===h||3===h||4===h?"sata":"sati");case"dd":return g+(1===h?"dan":"dana");case"MM":return g+(1===h?"mjesec":2===h||3===h||4===h?"mjeseca":"mjeseci");case"yy":return g+(1===h?"godina":2===h||3===h||4===h?"godine":"godina")}}i.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:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do 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:return"[pro\u0161lu] [nedjelju] [u] LT";case 3:return"[pro\u0161lu] [srijedu] [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:s,m:s,mm:s,h:s,hh:s,d:"dan",dd:s,M:"mjesec",MM:s,y:"godinu",yy:s},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(d(5908))},3697:function(lt,me,d){!function(i){"use strict";var s="vas\xe1rnap h\xe9tf\u0151n kedden szerd\xe1n cs\xfct\xf6rt\xf6k\xf6n p\xe9nteken szombaton".split(" ");function a(f,g,b,R){var Y=f;switch(b){case"s":return R||g?"n\xe9h\xe1ny m\xe1sodperc":"n\xe9h\xe1ny m\xe1sodperce";case"ss":return Y+(R||g)?" m\xe1sodperc":" m\xe1sodperce";case"m":return"egy"+(R||g?" perc":" perce");case"mm":return Y+(R||g?" perc":" perce");case"h":return"egy"+(R||g?" \xf3ra":" \xf3r\xe1ja");case"hh":return Y+(R||g?" \xf3ra":" \xf3r\xe1ja");case"d":return"egy"+(R||g?" nap":" napja");case"dd":return Y+(R||g?" nap":" napja");case"M":return"egy"+(R||g?" h\xf3nap":" h\xf3napja");case"MM":return Y+(R||g?" h\xf3nap":" h\xf3napja");case"y":return"egy"+(R||g?" \xe9v":" \xe9ve");case"yy":return Y+(R||g?" \xe9v":" \xe9ve")}return""}function h(f){return(f?"":"[m\xfalt] ")+"["+s[this.day()]+"] LT[-kor]"}i.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("_"),monthsParseExact:!0,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(f){return"u"===f.charAt(1).toLowerCase()},meridiem:function(f,g,b){return f<12?!0===b?"de":"DE":!0===b?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return h.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return h.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s m\xfalva",past:"%s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},0:function(lt,me,d){!function(i){"use strict";i.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(a){return/^(\u0581\u0565\u0580\u0565\u056f\u057e\u0561|\u0565\u0580\u0565\u056f\u0578\u0575\u0561\u0576)$/.test(a)},meridiem:function(a){return a<4?"\u0563\u056b\u0577\u0565\u0580\u057e\u0561":a<12?"\u0561\u057c\u0561\u057e\u0578\u057f\u057e\u0561":a<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(a,h){switch(h){case"DDD":case"w":case"W":case"DDDo":return 1===a?a+"-\u056b\u0576":a+"-\u0580\u0564";default:return a}},week:{dow:1,doy:7}})}(d(5908))},7840:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"pagi"===h?a:"siang"===h?a>=11?a:a+12:"sore"===h||"malam"===h?a+12:void 0},meridiem:function(a,h,l){return a<11?"pagi":a<15?"siang":a<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:0,doy:6}})}(d(5908))},1496:function(lt,me,d){!function(i){"use strict";function s(l){return l%100==11||l%10!=1}function a(l,f,g,b){var R=l+" ";switch(g){case"s":return f||b?"nokkrar sek\xfandur":"nokkrum sek\xfandum";case"ss":return s(l)?R+(f||b?"sek\xfandur":"sek\xfandum"):R+"sek\xfanda";case"m":return f?"m\xedn\xfata":"m\xedn\xfatu";case"mm":return s(l)?R+(f||b?"m\xedn\xfatur":"m\xedn\xfatum"):f?R+"m\xedn\xfata":R+"m\xedn\xfatu";case"hh":return s(l)?R+(f||b?"klukkustundir":"klukkustundum"):R+"klukkustund";case"d":return f?"dagur":b?"dag":"degi";case"dd":return s(l)?f?R+"dagar":R+(b?"daga":"d\xf6gum"):f?R+"dagur":R+(b?"dag":"degi");case"M":return f?"m\xe1nu\xf0ur":b?"m\xe1nu\xf0":"m\xe1nu\xf0i";case"MM":return s(l)?f?R+"m\xe1nu\xf0ir":R+(b?"m\xe1nu\xf0i":"m\xe1nu\xf0um"):f?R+"m\xe1nu\xf0ur":R+(b?"m\xe1nu\xf0":"m\xe1nu\xf0i");case"y":return f||b?"\xe1r":"\xe1ri";case"yy":return s(l)?R+(f||b?"\xe1r":"\xe1rum"):R+(f||b?"\xe1r":"\xe1ri")}}i.defineLocale("is",{months:"jan\xfaar_febr\xfaar_mars_apr\xedl_ma\xed_j\xfan\xed_j\xfal\xed_\xe1g\xfast_september_okt\xf3ber_n\xf3vember_desember".split("_"),monthsShort:"jan_feb_mar_apr_ma\xed_j\xfan_j\xfal_\xe1g\xfa_sep_okt_n\xf3v_des".split("_"),weekdays:"sunnudagur_m\xe1nudagur_\xferi\xf0judagur_mi\xf0vikudagur_fimmtudagur_f\xf6studagur_laugardagur".split("_"),weekdaysShort:"sun_m\xe1n_\xferi_mi\xf0_fim_f\xf6s_lau".split("_"),weekdaysMin:"Su_M\xe1_\xder_Mi_Fi_F\xf6_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[\xed dag kl.] LT",nextDay:"[\xe1 morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[\xed g\xe6r kl.] LT",lastWeek:"[s\xed\xf0asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s s\xed\xf0an",s:a,ss:a,m:a,mm:a,h:"klukkustund",hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},5736:function(lt,me,d){!function(i){"use strict";i.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(){return 0===this.day()?"[la scorsa] dddd [alle] LT":"[lo scorso] dddd [alle] LT"},sameElse:"L"},relativeTime:{future:function(a){return(/^[0-9].+$/.test(a)?"tra":"in")+" "+a},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}})}(d(5908))},6336:function(lt,me,d){!function(i){"use strict";i.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:function(){return"[Oggi a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextDay:function(){return"[Domani a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextWeek:function(){return"dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastDay:function(){return"[Ieri a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastWeek:function(){return 0===this.day()?"[La scorsa] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT":"[Lo scorso] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},sameElse:"L"},relativeTime:{future:"tra %s",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",w:"una settimana",ww:"%d settimane",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}})}(d(5908))},8008:function(lt,me,d){!function(i){"use strict";i.defineLocale("ja",{eras:[{since:"2019-05-01",offset:1,name:"\u4ee4\u548c",narrow:"\u32ff",abbr:"R"},{since:"1989-01-08",until:"2019-04-30",offset:1,name:"\u5e73\u6210",narrow:"\u337b",abbr:"H"},{since:"1926-12-25",until:"1989-01-07",offset:1,name:"\u662d\u548c",narrow:"\u337c",abbr:"S"},{since:"1912-07-30",until:"1926-12-24",offset:1,name:"\u5927\u6b63",narrow:"\u337d",abbr:"T"},{since:"1873-01-01",until:"1912-07-29",offset:6,name:"\u660e\u6cbb",narrow:"\u337e",abbr:"M"},{since:"0001-01-01",until:"1873-12-31",offset:1,name:"\u897f\u66a6",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"\u7d00\u5143\u524d",narrow:"BC",abbr:"BC"}],eraYearOrdinalRegex:/(\u5143|\d+)\u5e74/,eraYearOrdinalParse:function(a,h){return"\u5143"===h[1]?1:parseInt(h[1]||a,10)},months:"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("_"),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(a){return"\u5348\u5f8c"===a},meridiem:function(a,h,l){return a<12?"\u5348\u524d":"\u5348\u5f8c"},calendar:{sameDay:"[\u4eca\u65e5] LT",nextDay:"[\u660e\u65e5] LT",nextWeek:function(a){return a.week()!==this.week()?"[\u6765\u9031]dddd LT":"dddd LT"},lastDay:"[\u6628\u65e5] LT",lastWeek:function(a){return this.week()!==a.week()?"[\u5148\u9031]dddd LT":"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}\u65e5/,ordinal:function(a,h){switch(h){case"y":return 1===a?"\u5143\u5e74":a+"\u5e74";case"d":case"D":case"DDD":return a+"\u65e5";default:return a}},relativeTime:{future:"%s\u5f8c",past:"%s\u524d",s:"\u6570\u79d2",ss:"%d\u79d2",m:"1\u5206",mm:"%d\u5206",h:"1\u6642\u9593",hh:"%d\u6642\u9593",d:"1\u65e5",dd:"%d\u65e5",M:"1\u30f6\u6708",MM:"%d\u30f6\u6708",y:"1\u5e74",yy:"%d\u5e74"}})}(d(5908))},108:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"enjing"===h?a:"siyang"===h?a>=11?a:a+12:"sonten"===h||"ndalu"===h?a+12:void 0},meridiem:function(a,h,l){return a<11?"enjing":a<15?"siyang":a<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}})}(d(5908))},1844:function(lt,me,d){!function(i){"use strict";i.defineLocale("ka",{months:"\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("_"),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:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},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(a){return a.replace(/(\u10ec\u10d0\u10db|\u10ec\u10e3\u10d7|\u10e1\u10d0\u10d0\u10d7|\u10ec\u10d4\u10da|\u10d3\u10e6|\u10d7\u10d5)(\u10d8|\u10d4)/,function(h,l,f){return"\u10d8"===f?l+"\u10e8\u10d8":l+f+"\u10e8\u10d8"})},past:function(a){return/(\u10ec\u10d0\u10db\u10d8|\u10ec\u10e3\u10d7\u10d8|\u10e1\u10d0\u10d0\u10d7\u10d8|\u10d3\u10e6\u10d4|\u10d7\u10d5\u10d4)/.test(a)?a.replace(/(\u10d8|\u10d4)$/,"\u10d8\u10e1 \u10ec\u10d8\u10dc"):/\u10ec\u10d4\u10da\u10d8/.test(a)?a.replace(/\u10ec\u10d4\u10da\u10d8$/,"\u10ec\u10da\u10d8\u10e1 \u10ec\u10d8\u10dc"):a},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(a){return 0===a?a:1===a?a+"-\u10da\u10d8":a<20||a<=100&&a%20==0||a%100==0?"\u10db\u10d4-"+a:a+"-\u10d4"},week:{dow:1,doy:7}})}(d(5908))},8980:function(lt,me,d){!function(i){"use strict";var s={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"};i.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(h){return h+(s[h]||s[h%10]||s[h>=100?100:null])},week:{dow:1,doy:7}})}(d(5908))},8544:function(lt,me,d){!function(i){"use strict";var s={1:"\u17e1",2:"\u17e2",3:"\u17e3",4:"\u17e4",5:"\u17e5",6:"\u17e6",7:"\u17e7",8:"\u17e8",9:"\u17e9",0:"\u17e0"},a={"\u17e1":"1","\u17e2":"2","\u17e3":"3","\u17e4":"4","\u17e5":"5","\u17e6":"6","\u17e7":"7","\u17e8":"8","\u17e9":"9","\u17e0":"0"};i.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(l){return"\u179b\u17d2\u1784\u17b6\u1785"===l},meridiem:function(l,f,g){return l<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(l){return l.replace(/[\u17e1\u17e2\u17e3\u17e4\u17e5\u17e6\u17e7\u17e8\u17e9\u17e0]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},week:{dow:1,doy:4}})}(d(5908))},7716:function(lt,me,d){!function(i){"use strict";var s={1:"\u0ce7",2:"\u0ce8",3:"\u0ce9",4:"\u0cea",5:"\u0ceb",6:"\u0cec",7:"\u0ced",8:"\u0cee",9:"\u0cef",0:"\u0ce6"},a={"\u0ce7":"1","\u0ce8":"2","\u0ce9":"3","\u0cea":"4","\u0ceb":"5","\u0cec":"6","\u0ced":"7","\u0cee":"8","\u0cef":"9","\u0ce6":"0"};i.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(l){return l.replace(/[\u0ce7\u0ce8\u0ce9\u0cea\u0ceb\u0cec\u0ced\u0cee\u0cef\u0ce6]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},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(l,f){return 12===l&&(l=0),"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"===f?l<4?l:l+12:"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6"===f?l:"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8"===f?l>=10?l:l+12:"\u0cb8\u0c82\u0c9c\u0cc6"===f?l+12:void 0},meridiem:function(l,f,g){return l<4?"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf":l<10?"\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6":l<17?"\u0cae\u0ca7\u0ccd\u0caf\u0cbe\u0cb9\u0ccd\u0ca8":l<20?"\u0cb8\u0c82\u0c9c\u0cc6":"\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf"},dayOfMonthOrdinalParse:/\d{1,2}(\u0ca8\u0cc6\u0cd5)/,ordinal:function(l){return l+"\u0ca8\u0cc6\u0cd5"},week:{dow:0,doy:6}})}(d(5908))},7420:function(lt,me,d){!function(i){"use strict";i.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(a,h){switch(h){case"d":case"D":case"DDD":return a+"\uc77c";case"M":return a+"\uc6d4";case"w":case"W":return a+"\uc8fc";default:return a}},meridiemParse:/\uc624\uc804|\uc624\ud6c4/,isPM:function(a){return"\uc624\ud6c4"===a},meridiem:function(a,h,l){return a<12?"\uc624\uc804":"\uc624\ud6c4"}})}(d(5908))},4740:function(lt,me,d){!function(i){"use strict";function s(l,f,g,b){var R={s:["\xe7end san\xeeye","\xe7end san\xeeyeyan"],ss:[l+" san\xeeye",l+" san\xeeyeyan"],m:["deq\xeeqeyek","deq\xeeqeyek\xea"],mm:[l+" deq\xeeqe",l+" deq\xeeqeyan"],h:["saetek","saetek\xea"],hh:[l+" saet",l+" saetan"],d:["rojek","rojek\xea"],dd:[l+" roj",l+" rojan"],w:["hefteyek","hefteyek\xea"],ww:[l+" hefte",l+" hefteyan"],M:["mehek","mehek\xea"],MM:[l+" meh",l+" mehan"],y:["salek","salek\xea"],yy:[l+" sal",l+" salan"]};return f?R[g][0]:R[g][1]}i.defineLocale("ku-kmr",{months:"R\xeabendan_Sibat_Adar_N\xeesan_Gulan_Hez\xeeran_T\xeermeh_Tebax_\xcelon_Cotmeh_Mijdar_Berfanbar".split("_"),monthsShort:"R\xeab_Sib_Ada_N\xees_Gul_Hez_T\xeer_Teb_\xcelo_Cot_Mij_Ber".split("_"),monthsParseExact:!0,weekdays:"Yek\u015fem_Du\u015fem_S\xea\u015fem_\xc7ar\u015fem_P\xeanc\u015fem_\xcen_\u015eem\xee".split("_"),weekdaysShort:"Yek_Du_S\xea_\xc7ar_P\xean_\xcen_\u015eem".split("_"),weekdaysMin:"Ye_Du_S\xea_\xc7a_P\xea_\xcen_\u015ee".split("_"),meridiem:function(l,f,g){return l<12?g?"bn":"BN":g?"pn":"PN"},meridiemParse:/bn|BN|pn|PN/,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM[a] YYYY[an]",LLL:"Do MMMM[a] YYYY[an] HH:mm",LLLL:"dddd, Do MMMM[a] YYYY[an] HH:mm",ll:"Do MMM[.] YYYY[an]",lll:"Do MMM[.] YYYY[an] HH:mm",llll:"ddd[.], Do MMM[.] YYYY[an] HH:mm"},calendar:{sameDay:"[\xcero di saet] LT [de]",nextDay:"[Sib\xea di saet] LT [de]",nextWeek:"dddd [di saet] LT [de]",lastDay:"[Duh di saet] LT [de]",lastWeek:"dddd[a bor\xee di saet] LT [de]",sameElse:"L"},relativeTime:{future:"di %s de",past:"ber\xee %s",s,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:s,w:s,ww:s,M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\d{1,2}(?:y\xea|\xea|\.)/,ordinal:function(l,f){var g=f.toLowerCase();return g.includes("w")||g.includes("m")?l+".":l+function a(l){var f=(l=""+l).substring(l.length-1),g=l.length>1?l.substring(l.length-2):"";return 12==g||13==g||"2"!=f&&"3"!=f&&"50"!=g&&"70"!=f&&"80"!=f?"\xea":"y\xea"}(l)},week:{dow:1,doy:4}})}(d(5908))},200:function(lt,me,d){!function(i){"use strict";var s={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},a={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},h=["\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"];i.defineLocale("ku",{months:h,monthsShort:h,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(f){return/\u0626\u06ce\u0648\u0627\u0631\u0647\u200c/.test(f)},meridiem:function(f,g,b){return f<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(f){return f.replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g,function(g){return a[g]}).replace(/\u060c/g,",")},postformat:function(f){return f.replace(/\d/g,function(g){return s[g]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}})}(d(5908))},4976:function(lt,me,d){!function(i){"use strict";var s={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"};i.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(h){return h+(s[h]||s[h%10]||s[h>=100?100:null])},week:{dow:1,doy:7}})}(d(5908))},4652:function(lt,me,d){!function(i){"use strict";function s(g,b,R,Y){var J={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 b?J[R][0]:J[R][1]}function l(g){if(g=parseInt(g,10),isNaN(g))return!1;if(g<0)return!0;if(g<10)return 4<=g&&g<=7;if(g<100){var b=g%10;return l(0===b?g/10:b)}if(g<1e4){for(;g>=10;)g/=10;return l(g)}return l(g/=1e3)}i.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 a(g){return l(g.substr(0,g.indexOf(" ")))?"a "+g:"an "+g},past:function h(g){return l(g.substr(0,g.indexOf(" ")))?"viru "+g:"virun "+g},s:"e puer Sekonnen",ss:"%d Sekonnen",m:s,mm:"%d Minutten",h:s,hh:"%d Stonnen",d:s,dd:"%d Deeg",M:s,MM:"%d M\xe9int",y:s,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},3984:function(lt,me,d){!function(i){"use strict";i.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(a){return"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"===a},meridiem:function(a,h,l){return a<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(a){return"\u0e97\u0eb5\u0ec8"+a}})}(d(5908))},8792:function(lt,me,d){!function(i){"use strict";var s={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 h(R,Y,J,ie){return Y?f(J)[0]:ie?f(J)[1]:f(J)[2]}function l(R){return R%10==0||R>10&&R<20}function f(R){return s[R].split("_")}function g(R,Y,J,ie){var ae=R+" ";return 1===R?ae+h(0,Y,J[0],ie):Y?ae+(l(R)?f(J)[1]:f(J)[0]):ie?ae+f(J)[1]:ae+(l(R)?f(J)[1]:f(J)[2])}i.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 a(R,Y,J,ie){return Y?"kelios sekund\u0117s":ie?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},ss:g,m:h,mm:g,h,hh:g,d:h,dd:g,M:h,MM:g,y:h,yy:g},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(R){return R+"-oji"},week:{dow:1,doy:4}})}(d(5908))},6296:function(lt,me,d){!function(i){"use strict";var s={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 a(b,R,Y){return Y?R%10==1&&R%100!=11?b[2]:b[3]:R%10==1&&R%100!=11?b[0]:b[1]}function h(b,R,Y){return b+" "+a(s[Y],b,R)}function l(b,R,Y){return a(s[Y],b,R)}i.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 f(b,R){return R?"da\u017eas sekundes":"da\u017e\u0101m sekund\u0113m"},ss:h,m:l,mm:h,h:l,hh:h,d:l,dd:h,M:l,MM:h,y:l,yy:h},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},8256:function(lt,me,d){!function(i){"use strict";var s={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(h,l){return 1===h?l[0]:h>=2&&h<=4?l[1]:l[2]},translate:function(h,l,f){var g=s.words[f];return 1===f.length?l?g[0]:g[1]:h+" "+s.correctGrammaticalCase(h,g)}};i.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:s.translate,m:s.translate,mm:s.translate,h:s.translate,hh:s.translate,d:"dan",dd:s.translate,M:"mjesec",MM:s.translate,y:"godinu",yy:s.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(d(5908))},9284:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},3196:function(lt,me,d){!function(i){"use strict";i.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:"\u0437\u0430 %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:"\u0435\u0434\u043d\u0430 \u043c\u0438\u043d\u0443\u0442\u0430",mm:"%d \u043c\u0438\u043d\u0443\u0442\u0438",h:"\u0435\u0434\u0435\u043d \u0447\u0430\u0441",hh:"%d \u0447\u0430\u0441\u0430",d:"\u0435\u0434\u0435\u043d \u0434\u0435\u043d",dd:"%d \u0434\u0435\u043d\u0430",M:"\u0435\u0434\u0435\u043d \u043c\u0435\u0441\u0435\u0446",MM:"%d \u043c\u0435\u0441\u0435\u0446\u0438",y:"\u0435\u0434\u043d\u0430 \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(a){var h=a%10,l=a%100;return 0===a?a+"-\u0435\u0432":0===l?a+"-\u0435\u043d":l>10&&l<20?a+"-\u0442\u0438":1===h?a+"-\u0432\u0438":2===h?a+"-\u0440\u0438":7===h||8===h?a+"-\u043c\u0438":a+"-\u0442\u0438"},week:{dow:1,doy:7}})}(d(5908))},5896:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"===h&&a>=4||"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d"===h||"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02"===h?a+12:a},meridiem:function(a,h,l){return a<4?"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f":a<12?"\u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46":a<17?"\u0d09\u0d1a\u0d4d\u0d1a \u0d15\u0d34\u0d3f\u0d1e\u0d4d\u0d1e\u0d4d":a<20?"\u0d35\u0d48\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d47\u0d30\u0d02":"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"}})}(d(5908))},2460:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){switch(f){case"s":return l?"\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 h+(l?" \u0441\u0435\u043a\u0443\u043d\u0434":" \u0441\u0435\u043a\u0443\u043d\u0434\u044b\u043d");case"m":case"mm":return h+(l?" \u043c\u0438\u043d\u0443\u0442":" \u043c\u0438\u043d\u0443\u0442\u044b\u043d");case"h":case"hh":return h+(l?" \u0446\u0430\u0433":" \u0446\u0430\u0433\u0438\u0439\u043d");case"d":case"dd":return h+(l?" \u04e9\u0434\u04e9\u0440":" \u04e9\u0434\u0440\u0438\u0439\u043d");case"M":case"MM":return h+(l?" \u0441\u0430\u0440":" \u0441\u0430\u0440\u044b\u043d");case"y":case"yy":return h+(l?" \u0436\u0438\u043b":" \u0436\u0438\u043b\u0438\u0439\u043d");default:return h}}i.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(h){return"\u04ae\u0425"===h},meridiem:function(h,l,f){return h<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,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} \u04e9\u0434\u04e9\u0440/,ordinal:function(h,l){switch(l){case"d":case"D":case"DDD":return h+" \u04e9\u0434\u04e9\u0440";default:return h}}})}(d(5908))},132:function(lt,me,d){!function(i){"use strict";var s={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},a={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};function h(f,g,b,R){var Y="";if(g)switch(b){case"s":Y="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926";break;case"ss":Y="%d \u0938\u0947\u0915\u0902\u0926";break;case"m":Y="\u090f\u0915 \u092e\u093f\u0928\u093f\u091f";break;case"mm":Y="%d \u092e\u093f\u0928\u093f\u091f\u0947";break;case"h":Y="\u090f\u0915 \u0924\u093e\u0938";break;case"hh":Y="%d \u0924\u093e\u0938";break;case"d":Y="\u090f\u0915 \u0926\u093f\u0935\u0938";break;case"dd":Y="%d \u0926\u093f\u0935\u0938";break;case"M":Y="\u090f\u0915 \u092e\u0939\u093f\u0928\u093e";break;case"MM":Y="%d \u092e\u0939\u093f\u0928\u0947";break;case"y":Y="\u090f\u0915 \u0935\u0930\u094d\u0937";break;case"yy":Y="%d \u0935\u0930\u094d\u0937\u0947"}else switch(b){case"s":Y="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"ss":Y="%d \u0938\u0947\u0915\u0902\u0926\u093e\u0902";break;case"m":Y="\u090f\u0915\u093e \u092e\u093f\u0928\u093f\u091f\u093e";break;case"mm":Y="%d \u092e\u093f\u0928\u093f\u091f\u093e\u0902";break;case"h":Y="\u090f\u0915\u093e \u0924\u093e\u0938\u093e";break;case"hh":Y="%d \u0924\u093e\u0938\u093e\u0902";break;case"d":Y="\u090f\u0915\u093e \u0926\u093f\u0935\u0938\u093e";break;case"dd":Y="%d \u0926\u093f\u0935\u0938\u093e\u0902";break;case"M":Y="\u090f\u0915\u093e \u092e\u0939\u093f\u0928\u094d\u092f\u093e";break;case"MM":Y="%d \u092e\u0939\u093f\u0928\u094d\u092f\u093e\u0902";break;case"y":Y="\u090f\u0915\u093e \u0935\u0930\u094d\u0937\u093e";break;case"yy":Y="%d \u0935\u0930\u094d\u0937\u093e\u0902"}return Y.replace(/%d/i,f)}i.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:h,ss:h,m:h,mm:h,h,hh:h,d:h,dd:h,M:h,MM:h,y:h,yy:h},preparse:function(f){return f.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(g){return a[g]})},postformat:function(f){return f.replace(/\d/g,function(g){return s[g]})},meridiemParse:/\u092a\u0939\u093e\u091f\u0947|\u0938\u0915\u093e\u0933\u0940|\u0926\u0941\u092a\u093e\u0930\u0940|\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940|\u0930\u093e\u0924\u094d\u0930\u0940/,meridiemHour:function(f,g){return 12===f&&(f=0),"\u092a\u0939\u093e\u091f\u0947"===g||"\u0938\u0915\u093e\u0933\u0940"===g?f:"\u0926\u0941\u092a\u093e\u0930\u0940"===g||"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940"===g||"\u0930\u093e\u0924\u094d\u0930\u0940"===g?f>=12?f:f+12:void 0},meridiem:function(f,g,b){return f>=0&&f<6?"\u092a\u0939\u093e\u091f\u0947":f<12?"\u0938\u0915\u093e\u0933\u0940":f<17?"\u0926\u0941\u092a\u093e\u0930\u0940":f<20?"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940":"\u0930\u093e\u0924\u094d\u0930\u0940"},week:{dow:0,doy:6}})}(d(5908))},440:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"pagi"===h?a:"tengahari"===h?a>=11?a:a+12:"petang"===h||"malam"===h?a+12:void 0},meridiem:function(a,h,l){return a<11?"pagi":a<15?"tengahari":a<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}})}(d(5908))},3136:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"pagi"===h?a:"tengahari"===h?a>=11?a:a+12:"petang"===h||"malam"===h?a+12:void 0},meridiem:function(a,h,l){return a<11?"pagi":a<15?"tengahari":a<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}})}(d(5908))},6227:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},8300:function(lt,me,d){!function(i){"use strict";var s={1:"\u1041",2:"\u1042",3:"\u1043",4:"\u1044",5:"\u1045",6:"\u1046",7:"\u1047",8:"\u1048",9:"\u1049",0:"\u1040"},a={"\u1041":"1","\u1042":"2","\u1043":"3","\u1044":"4","\u1045":"5","\u1046":"6","\u1047":"7","\u1048":"8","\u1049":"9","\u1040":"0"};i.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(l){return l.replace(/[\u1041\u1042\u1043\u1044\u1045\u1046\u1047\u1048\u1049\u1040]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},week:{dow:1,doy:4}})}(d(5908))},4784:function(lt,me,d){!function(i){"use strict";i.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._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:"\xe9n time",hh:"%d timer",d:"\xe9n dag",dd:"%d dager",w:"\xe9n uke",ww:"%d uker",M:"\xe9n m\xe5ned",MM:"%d m\xe5neder",y:"ett \xe5r",yy:"%d \xe5r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},5060:function(lt,me,d){!function(i){"use strict";var s={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},a={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};i.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(l){return l.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},meridiemParse:/\u0930\u093e\u0924\u093f|\u092c\u093f\u0939\u093e\u0928|\u0926\u093f\u0909\u0901\u0938\u094b|\u0938\u093e\u0901\u091d/,meridiemHour:function(l,f){return 12===l&&(l=0),"\u0930\u093e\u0924\u093f"===f?l<4?l:l+12:"\u092c\u093f\u0939\u093e\u0928"===f?l:"\u0926\u093f\u0909\u0901\u0938\u094b"===f?l>=10?l:l+12:"\u0938\u093e\u0901\u091d"===f?l+12:void 0},meridiem:function(l,f,g){return l<3?"\u0930\u093e\u0924\u093f":l<12?"\u092c\u093f\u0939\u093e\u0928":l<16?"\u0926\u093f\u0909\u0901\u0938\u094b":l<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}})}(d(5908))},4796:function(lt,me,d){!function(i){"use strict";var s="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),h=[/^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],l=/^(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;i.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(g,b){return g?/-MMM-/.test(b)?a[g.month()]:s[g.month()]:s},monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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(g){return g+(1===g||8===g||g>=20?"ste":"de")},week:{dow:1,doy:4}})}(d(5908))},4971:function(lt,me,d){!function(i){"use strict";var s="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),h=[/^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],l=/^(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;i.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(g,b){return g?/-MMM-/.test(b)?a[g.month()]:s[g.month()]:s},monthsRegex:l,monthsShortRegex:l,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:h,longMonthsParse:h,shortMonthsParse:h,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",w:"\xe9\xe9n week",ww:"%d weken",M:"\xe9\xe9n maand",MM:"%d maanden",y:"\xe9\xe9n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(g){return g+(1===g||8===g||g>=20?"ste":"de")},week:{dow:1,doy:4}})}(d(5908))},8984:function(lt,me,d){!function(i){"use strict";i.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"sundag_m\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"su._m\xe5._ty._on._to._fr._lau.".split("_"),weekdaysMin:"su_m\xe5_ty_on_to_fr_la".split("_"),weekdaysParseExact:!0,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",w:"ei veke",ww:"%d veker",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}})}(d(5908))},9928:function(lt,me,d){!function(i){"use strict";i.defineLocale("oc-lnc",{months:{standalone:"geni\xe8r_febri\xe8r_mar\xe7_abril_mai_junh_julhet_agost_setembre_oct\xf2bre_novembre_decembre".split("_"),format:"de geni\xe8r_de febri\xe8r_de mar\xe7_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'oct\xf2bre_de novembre_de decembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._mar\xe7_abr._mai_junh_julh._ago._set._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"dimenge_diluns_dimars_dim\xe8cres_dij\xf2us_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dm._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dm_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] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:"[u\xe8i a] LT",nextDay:"[deman a] LT",nextWeek:"dddd [a] LT",lastDay:"[i\xe8r a] LT",lastWeek:"dddd [passat a] LT",sameElse:"L"},relativeTime:{future:"d'aqu\xed %s",past:"fa %s",s:"unas segondas",ss:"%d segondas",m:"una minuta",mm:"%d minutas",h:"una ora",hh:"%d oras",d:"un jorn",dd:"%d jorns",M:"un mes",MM:"%d meses",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|\xe8|a)/,ordinal:function(a,h){var l=1===a?"r":2===a?"n":3===a?"r":4===a?"t":"\xe8";return("w"===h||"W"===h)&&(l="a"),a+l},week:{dow:1,doy:4}})}(d(5908))},6440:function(lt,me,d){!function(i){"use strict";var s={1:"\u0a67",2:"\u0a68",3:"\u0a69",4:"\u0a6a",5:"\u0a6b",6:"\u0a6c",7:"\u0a6d",8:"\u0a6e",9:"\u0a6f",0:"\u0a66"},a={"\u0a67":"1","\u0a68":"2","\u0a69":"3","\u0a6a":"4","\u0a6b":"5","\u0a6c":"6","\u0a6d":"7","\u0a6e":"8","\u0a6f":"9","\u0a66":"0"};i.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(l){return l.replace(/[\u0a67\u0a68\u0a69\u0a6a\u0a6b\u0a6c\u0a6d\u0a6e\u0a6f\u0a66]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},meridiemParse:/\u0a30\u0a3e\u0a24|\u0a38\u0a35\u0a47\u0a30|\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30|\u0a38\u0a3c\u0a3e\u0a2e/,meridiemHour:function(l,f){return 12===l&&(l=0),"\u0a30\u0a3e\u0a24"===f?l<4?l:l+12:"\u0a38\u0a35\u0a47\u0a30"===f?l:"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30"===f?l>=10?l:l+12:"\u0a38\u0a3c\u0a3e\u0a2e"===f?l+12:void 0},meridiem:function(l,f,g){return l<4?"\u0a30\u0a3e\u0a24":l<10?"\u0a38\u0a35\u0a47\u0a30":l<17?"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30":l<20?"\u0a38\u0a3c\u0a3e\u0a2e":"\u0a30\u0a3e\u0a24"},week:{dow:0,doy:6}})}(d(5908))},6768:function(lt,me,d){!function(i){"use strict";var s="stycze\u0144_luty_marzec_kwiecie\u0144_maj_czerwiec_lipiec_sierpie\u0144_wrzesie\u0144_pa\u017adziernik_listopad_grudzie\u0144".split("_"),a="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\u015bnia_pa\u017adziernika_listopada_grudnia".split("_"),h=[/^sty/i,/^lut/i,/^mar/i,/^kwi/i,/^maj/i,/^cze/i,/^lip/i,/^sie/i,/^wrz/i,/^pa\u017a/i,/^lis/i,/^gru/i];function l(b){return b%10<5&&b%10>1&&~~(b/10)%10!=1}function f(b,R,Y){var J=b+" ";switch(Y){case"ss":return J+(l(b)?"sekundy":"sekund");case"m":return R?"minuta":"minut\u0119";case"mm":return J+(l(b)?"minuty":"minut");case"h":return R?"godzina":"godzin\u0119";case"hh":return J+(l(b)?"godziny":"godzin");case"ww":return J+(l(b)?"tygodnie":"tygodni");case"MM":return J+(l(b)?"miesi\u0105ce":"miesi\u0119cy");case"yy":return J+(l(b)?"lata":"lat")}}i.defineLocale("pl",{months:function(b,R){return b?/D MMMM/.test(R)?a[b.month()]:s[b.month()]:s},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\u017a_lis_gru".split("_"),monthsParse:h,longMonthsParse:h,shortMonthsParse:h,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:f,m:f,mm:f,h:f,hh:f,d:"1 dzie\u0144",dd:"%d dni",w:"tydzie\u0144",ww:f,M:"miesi\u0105c",MM:f,y:"rok",yy:f},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},1528:function(lt,me,d){!function(i){"use strict";i.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",invalidDate:"Data inv\xe1lida"})}(d(5908))},8968:function(lt,me,d){!function(i){"use strict";i.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",w:"uma semana",ww:"%d semanas",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}})}(d(5908))},5760:function(lt,me,d){!function(i){"use strict";function s(h,l,f){var b=" ";return(h%100>=20||h>=100&&h%100==0)&&(b=" de "),h+b+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",ww:"s\u0103pt\u0103m\xe2ni",MM:"luni",yy:"ani"}[f]}i.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._feb._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:s,m:"un minut",mm:s,h:"o or\u0103",hh:s,d:"o zi",dd:s,w:"o s\u0103pt\u0103m\xe2n\u0103",ww:s,M:"o lun\u0103",MM:s,y:"un an",yy:s},week:{dow:1,doy:7}})}(d(5908))},9760:function(lt,me,d){!function(i){"use strict";function a(f,g,b){return"m"===b?g?"\u043c\u0438\u043d\u0443\u0442\u0430":"\u043c\u0438\u043d\u0443\u0442\u0443":f+" "+function s(f,g){var b=f.split("_");return g%10==1&&g%100!=11?b[0]:g%10>=2&&g%10<=4&&(g%100<10||g%100>=20)?b[1]:b[2]}({ss:g?"\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:g?"\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",ww:"\u043d\u0435\u0434\u0435\u043b\u044f_\u043d\u0435\u0434\u0435\u043b\u0438_\u043d\u0435\u0434\u0435\u043b\u044c",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"}[b],+f)}var h=[/^\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];i.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:h,longMonthsParse:h,shortMonthsParse:h,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(f){if(f.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(f){if(f.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:a,m:a,mm:a,h:"\u0447\u0430\u0441",hh:a,d:"\u0434\u0435\u043d\u044c",dd:a,w:"\u043d\u0435\u0434\u0435\u043b\u044f",ww:a,M:"\u043c\u0435\u0441\u044f\u0446",MM:a,y:"\u0433\u043e\u0434",yy:a},meridiemParse:/\u043d\u043e\u0447\u0438|\u0443\u0442\u0440\u0430|\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430/i,isPM:function(f){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430)$/.test(f)},meridiem:function(f,g,b){return f<4?"\u043d\u043e\u0447\u0438":f<12?"\u0443\u0442\u0440\u0430":f<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0435\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e|\u044f)/,ordinal:function(f,g){switch(g){case"M":case"d":case"DDD":return f+"-\u0439";case"D":return f+"-\u0433\u043e";case"w":case"W":return f+"-\u044f";default:return f}},week:{dow:1,doy:4}})}(d(5908))},3804:function(lt,me,d){!function(i){"use strict";var s=["\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"],a=["\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"];i.defineLocale("sd",{months:s,monthsShort:s,weekdays:a,weekdaysShort:a,weekdaysMin:a,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(l){return"\u0634\u0627\u0645"===l},meridiem:function(l,f,g){return l<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(l){return l.replace(/\u060c/g,",")},postformat:function(l){return l.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}(d(5908))},4100:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},5301:function(lt,me,d){!function(i){"use strict";i.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(a){return a+" \u0dc0\u0dd0\u0db1\u0dd2"},meridiemParse:/\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4|\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4|\u0db4\u0dd9.\u0dc0|\u0db4.\u0dc0./,isPM:function(a){return"\u0db4.\u0dc0."===a||"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4"===a},meridiem:function(a,h,l){return a>11?l?"\u0db4.\u0dc0.":"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4":l?"\u0db4\u0dd9.\u0dc0.":"\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4"}})}(d(5908))},9992:function(lt,me,d){!function(i){"use strict";var s="janu\xe1r_febru\xe1r_marec_apr\xedl_m\xe1j_j\xfan_j\xfal_august_september_okt\xf3ber_november_december".split("_"),a="jan_feb_mar_apr_m\xe1j_j\xfan_j\xfal_aug_sep_okt_nov_dec".split("_");function h(g){return g>1&&g<5}function l(g,b,R,Y){var J=g+" ";switch(R){case"s":return b||Y?"p\xe1r sek\xfand":"p\xe1r sekundami";case"ss":return b||Y?J+(h(g)?"sekundy":"sek\xfand"):J+"sekundami";case"m":return b?"min\xfata":Y?"min\xfatu":"min\xfatou";case"mm":return b||Y?J+(h(g)?"min\xfaty":"min\xfat"):J+"min\xfatami";case"h":return b?"hodina":Y?"hodinu":"hodinou";case"hh":return b||Y?J+(h(g)?"hodiny":"hod\xedn"):J+"hodinami";case"d":return b||Y?"de\u0148":"d\u0148om";case"dd":return b||Y?J+(h(g)?"dni":"dn\xed"):J+"d\u0148ami";case"M":return b||Y?"mesiac":"mesiacom";case"MM":return b||Y?J+(h(g)?"mesiace":"mesiacov"):J+"mesiacmi";case"y":return b||Y?"rok":"rokom";case"yy":return b||Y?J+(h(g)?"roky":"rokov"):J+"rokmi"}}i.defineLocale("sk",{months:s,monthsShort:a,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:case 4:case 5:return"[minul\xfd] dddd [o] LT";case 3:return"[minul\xfa stredu o] LT";case 6:return"[minul\xfa sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:l,ss:l,m:l,mm:l,h:l,hh:l,d:l,dd:l,M:l,MM:l,y:l,yy:l},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},5208:function(lt,me,d){!function(i){"use strict";function s(h,l,f,g){var b=h+" ";switch(f){case"s":return l||g?"nekaj sekund":"nekaj sekundami";case"ss":return b+(1===h?l?"sekundo":"sekundi":2===h?l||g?"sekundi":"sekundah":h<5?l||g?"sekunde":"sekundah":"sekund");case"m":return l?"ena minuta":"eno minuto";case"mm":return b+(1===h?l?"minuta":"minuto":2===h?l||g?"minuti":"minutama":h<5?l||g?"minute":"minutami":l||g?"minut":"minutami");case"h":return l?"ena ura":"eno uro";case"hh":return b+(1===h?l?"ura":"uro":2===h?l||g?"uri":"urama":h<5?l||g?"ure":"urami":l||g?"ur":"urami");case"d":return l||g?"en dan":"enim dnem";case"dd":return b+(1===h?l||g?"dan":"dnem":2===h?l||g?"dni":"dnevoma":l||g?"dni":"dnevi");case"M":return l||g?"en mesec":"enim mesecem";case"MM":return b+(1===h?l||g?"mesec":"mesecem":2===h?l||g?"meseca":"mesecema":h<5?l||g?"mesece":"meseci":l||g?"mesecev":"meseci");case"y":return l||g?"eno leto":"enim letom";case"yy":return b+(1===h?l||g?"leto":"letom":2===h?l||g?"leti":"letoma":h<5?l||g?"leta":"leti":l||g?"let":"leti")}}i.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,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:7}})}(d(5908))},7408:function(lt,me,d){!function(i){"use strict";i.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(a){return"M"===a.charAt(0)},meridiem:function(a,h,l){return a<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}})}(d(5908))},1128:function(lt,me,d){!function(i){"use strict";var s={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\u043e\u0433 \u043c\u0438\u043d\u0443\u0442\u0430"],mm:["\u043c\u0438\u043d\u0443\u0442","\u043c\u0438\u043d\u0443\u0442\u0430","\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"],d:["\u0458\u0435\u0434\u0430\u043d \u0434\u0430\u043d","\u0458\u0435\u0434\u043d\u043e\u0433 \u0434\u0430\u043d\u0430"],dd:["\u0434\u0430\u043d","\u0434\u0430\u043d\u0430","\u0434\u0430\u043d\u0430"],M:["\u0458\u0435\u0434\u0430\u043d \u043c\u0435\u0441\u0435\u0446","\u0458\u0435\u0434\u043d\u043e\u0433 \u043c\u0435\u0441\u0435\u0446\u0430"],MM:["\u043c\u0435\u0441\u0435\u0446","\u043c\u0435\u0441\u0435\u0446\u0430","\u043c\u0435\u0441\u0435\u0446\u0438"],y:["\u0458\u0435\u0434\u043d\u0443 \u0433\u043e\u0434\u0438\u043d\u0443","\u0458\u0435\u0434\u043d\u0435 \u0433\u043e\u0434\u0438\u043d\u0435"],yy:["\u0433\u043e\u0434\u0438\u043d\u0443","\u0433\u043e\u0434\u0438\u043d\u0435","\u0433\u043e\u0434\u0438\u043d\u0430"]},correctGrammaticalCase:function(h,l){return h%10>=1&&h%10<=4&&(h%100<10||h%100>=20)?h%10==1?l[0]:l[1]:l[2]},translate:function(h,l,f,g){var R,b=s.words[f];return 1===f.length?"y"===f&&l?"\u0458\u0435\u0434\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430":g||l?b[0]:b[1]:(R=s.correctGrammaticalCase(h,b),"yy"===f&&l&&"\u0433\u043e\u0434\u0438\u043d\u0443"===R?h+" \u0433\u043e\u0434\u0438\u043d\u0430":h+" "+R)}};i.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:"D. M. 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:s.translate,m:s.translate,mm:s.translate,h:s.translate,hh:s.translate,d:s.translate,dd:s.translate,M:s.translate,MM:s.translate,y:s.translate,yy:s.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(d(5908))},656:function(lt,me,d){!function(i){"use strict";var s={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],d:["jedan dan","jednog dana"],dd:["dan","dana","dana"],M:["jedan mesec","jednog meseca"],MM:["mesec","meseca","meseci"],y:["jednu godinu","jedne godine"],yy:["godinu","godine","godina"]},correctGrammaticalCase:function(h,l){return h%10>=1&&h%10<=4&&(h%100<10||h%100>=20)?h%10==1?l[0]:l[1]:l[2]},translate:function(h,l,f,g){var R,b=s.words[f];return 1===f.length?"y"===f&&l?"jedna godina":g||l?b[0]:b[1]:(R=s.correctGrammaticalCase(h,b),"yy"===f&&l&&"godinu"===R?h+" godina":h+" "+R)}};i.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:"D. M. 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:s.translate,m:s.translate,mm:s.translate,h:s.translate,hh:s.translate,d:s.translate,dd:s.translate,M:s.translate,MM:s.translate,y:s.translate,yy:s.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(d(5908))},864:function(lt,me,d){!function(i){"use strict";i.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(a,h,l){return a<11?"ekuseni":a<15?"emini":a<19?"entsambama":"ebusuku"},meridiemHour:function(a,h){return 12===a&&(a=0),"ekuseni"===h?a:"emini"===h?a>=11?a:a+12:"entsambama"===h||"ebusuku"===h?0===a?0:a+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})}(d(5908))},6900:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?":e":1===h||2===h?":a":":e")},week:{dow:1,doy:4}})}(d(5908))},1636:function(lt,me,d){!function(i){"use strict";i.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 A",LTS:"HH:mm: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:"siku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})}(d(5908))},4180:function(lt,me,d){!function(i){"use strict";var s={1:"\u0be7",2:"\u0be8",3:"\u0be9",4:"\u0bea",5:"\u0beb",6:"\u0bec",7:"\u0bed",8:"\u0bee",9:"\u0bef",0:"\u0be6"},a={"\u0be7":"1","\u0be8":"2","\u0be9":"3","\u0bea":"4","\u0beb":"5","\u0bec":"6","\u0bed":"7","\u0bee":"8","\u0bef":"9","\u0be6":"0"};i.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(l){return l+"\u0bb5\u0ba4\u0bc1"},preparse:function(l){return l.replace(/[\u0be7\u0be8\u0be9\u0bea\u0beb\u0bec\u0bed\u0bee\u0bef\u0be6]/g,function(f){return a[f]})},postformat:function(l){return l.replace(/\d/g,function(f){return s[f]})},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(l,f,g){return l<2?" \u0baf\u0bbe\u0bae\u0bae\u0bcd":l<6?" \u0bb5\u0bc8\u0b95\u0bb1\u0bc8":l<10?" \u0b95\u0bbe\u0bb2\u0bc8":l<14?" \u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd":l<18?" \u0b8e\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1":l<22?" \u0bae\u0bbe\u0bb2\u0bc8":" \u0baf\u0bbe\u0bae\u0bae\u0bcd"},meridiemHour:function(l,f){return 12===l&&(l=0),"\u0baf\u0bbe\u0bae\u0bae\u0bcd"===f?l<2?l:l+12:"\u0bb5\u0bc8\u0b95\u0bb1\u0bc8"===f||"\u0b95\u0bbe\u0bb2\u0bc8"===f||"\u0ba8\u0ba3\u0bcd\u0baa\u0b95\u0bb2\u0bcd"===f&&l>=10?l:l+12},week:{dow:0,doy:6}})}(d(5908))},7008:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"===h?a<4?a:a+12:"\u0c09\u0c26\u0c2f\u0c02"===h?a:"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02"===h?a>=10?a:a+12:"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02"===h?a+12:void 0},meridiem:function(a,h,l){return a<4?"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f":a<10?"\u0c09\u0c26\u0c2f\u0c02":a<17?"\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c02":a<20?"\u0c38\u0c3e\u0c2f\u0c02\u0c24\u0c4d\u0c30\u0c02":"\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f"},week:{dow:0,doy:6}})}(d(5908))},744:function(lt,me,d){!function(i){"use strict";i.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:"segundu balun",ss:"segundu %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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:1,doy:4}})}(d(5908))},8084:function(lt,me,d){!function(i){"use strict";var s={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"};i.defineLocale("tg",{months:{format:"\u044f\u043d\u0432\u0430\u0440\u0438_\u0444\u0435\u0432\u0440\u0430\u043b\u0438_\u043c\u0430\u0440\u0442\u0438_\u0430\u043f\u0440\u0435\u043b\u0438_\u043c\u0430\u0439\u0438_\u0438\u044e\u043d\u0438_\u0438\u044e\u043b\u0438_\u0430\u0432\u0433\u0443\u0441\u0442\u0438_\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0438_\u043e\u043a\u0442\u044f\u0431\u0440\u0438_\u043d\u043e\u044f\u0431\u0440\u0438_\u0434\u0435\u043a\u0430\u0431\u0440\u0438".split("_"),standalone:"\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:"[\u0424\u0430\u0440\u0434\u043e \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(h,l){return 12===h&&(h=0),"\u0448\u0430\u0431"===l?h<4?h:h+12:"\u0441\u0443\u0431\u04b3"===l?h:"\u0440\u04ef\u0437"===l?h>=11?h:h+12:"\u0431\u0435\u0433\u043e\u04b3"===l?h+12:void 0},meridiem:function(h,l,f){return h<4?"\u0448\u0430\u0431":h<11?"\u0441\u0443\u0431\u04b3":h<16?"\u0440\u04ef\u0437":h<19?"\u0431\u0435\u0433\u043e\u04b3":"\u0448\u0430\u0431"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0443\u043c|\u044e\u043c)/,ordinal:function(h){return h+(s[h]||s[h%10]||s[h>=100?100:null])},week:{dow:1,doy:7}})}(d(5908))},1672:function(lt,me,d){!function(i){"use strict";i.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(a){return"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"===a},meridiem:function(a,h,l){return a<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",w:"1 \u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c",ww:"%d \u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c",M:"1 \u0e40\u0e14\u0e37\u0e2d\u0e19",MM:"%d \u0e40\u0e14\u0e37\u0e2d\u0e19",y:"1 \u0e1b\u0e35",yy:"%d \u0e1b\u0e35"}})}(d(5908))},7232:function(lt,me,d){!function(i){"use strict";var s={1:"'inji",5:"'inji",8:"'inji",70:"'inji",80:"'inji",2:"'nji",7:"'nji",20:"'nji",50:"'nji",3:"'\xfcnji",4:"'\xfcnji",100:"'\xfcnji",6:"'njy",9:"'unjy",10:"'unjy",30:"'unjy",60:"'ynjy",90:"'ynjy"};i.defineLocale("tk",{months:"\xddanwar_Fewral_Mart_Aprel_Ma\xfd_I\xfdun_I\xfdul_Awgust_Sent\xfdabr_Okt\xfdabr_No\xfdabr_Dekabr".split("_"),monthsShort:"\xddan_Few_Mar_Apr_Ma\xfd_I\xfdn_I\xfdl_Awg_Sen_Okt_No\xfd_Dek".split("_"),weekdays:"\xddek\u015fenbe_Du\u015fenbe_Si\u015fenbe_\xc7ar\u015fenbe_Pen\u015fenbe_Anna_\u015eenbe".split("_"),weekdaysShort:"\xddek_Du\u015f_Si\u015f_\xc7ar_Pen_Ann_\u015een".split("_"),weekdaysMin:"\xddk_D\u015f_S\u015f_\xc7r_Pn_An_\u015en".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 sagat] LT",nextDay:"[ertir sagat] LT",nextWeek:"[indiki] dddd [sagat] LT",lastDay:"[d\xfc\xfdn] LT",lastWeek:"[ge\xe7en] dddd [sagat] LT",sameElse:"L"},relativeTime:{future:"%s so\u0148",past:"%s \xf6\u0148",s:"birn\xe4\xe7e sekunt",m:"bir minut",mm:"%d minut",h:"bir sagat",hh:"%d sagat",d:"bir g\xfcn",dd:"%d g\xfcn",M:"bir a\xfd",MM:"%d a\xfd",y:"bir \xfdyl",yy:"%d \xfdyl"},ordinal:function(h,l){switch(l){case"d":case"D":case"Do":case"DD":return h;default:if(0===h)return h+"'unjy";var f=h%10;return h+(s[f]||s[h%100-f]||s[h>=100?100:null])}},week:{dow:1,doy:7}})}(d(5908))},9480:function(lt,me,d){!function(i){"use strict";i.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(a){return a},week:{dow:1,doy:4}})}(d(5908))},8512:function(lt,me,d){!function(i){"use strict";var s="pagh_wa\u2019_cha\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");function l(b,R,Y,J){var ie=function f(b){var R=Math.floor(b%1e3/100),Y=Math.floor(b%100/10),J=b%10,ie="";return R>0&&(ie+=s[R]+"vatlh"),Y>0&&(ie+=(""!==ie?" ":"")+s[Y]+"maH"),J>0&&(ie+=(""!==ie?" ":"")+s[J]),""===ie?"pagh":ie}(b);switch(Y){case"ss":return ie+" lup";case"mm":return ie+" tup";case"hh":return ie+" rep";case"dd":return ie+" jaj";case"MM":return ie+" jar";case"yy":return ie+" DIS"}}i.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 a(b){var R=b;return-1!==b.indexOf("jaj")?R.slice(0,-3)+"leS":-1!==b.indexOf("jar")?R.slice(0,-3)+"waQ":-1!==b.indexOf("DIS")?R.slice(0,-3)+"nem":R+" pIq"},past:function h(b){var R=b;return-1!==b.indexOf("jaj")?R.slice(0,-3)+"Hu\u2019":-1!==b.indexOf("jar")?R.slice(0,-3)+"wen":-1!==b.indexOf("DIS")?R.slice(0,-3)+"ben":R+" ret"},s:"puS lup",ss:l,m:"wa\u2019 tup",mm:l,h:"wa\u2019 rep",hh:l,d:"wa\u2019 jaj",dd:l,M:"wa\u2019 jar",MM:l,y:"wa\u2019 DIS",yy:l},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},6020:function(lt,me,d){!function(i){"use strict";var s={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"};i.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_Pzt_Sal_\xc7ar_Per_Cum_Cmt".split("_"),weekdaysMin:"Pz_Pt_Sa_\xc7a_Pe_Cu_Ct".split("_"),meridiem:function(h,l,f){return h<12?f?"\xf6\xf6":"\xd6\xd6":f?"\xf6s":"\xd6S"},meridiemParse:/\xf6\xf6|\xd6\xd6|\xf6s|\xd6S/,isPM:function(h){return"\xf6s"===h||"\xd6S"===h},longDateFormat:{LT:"HH:mm",LTS:"HH:mm: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",w:"bir hafta",ww:"%d hafta",M:"bir ay",MM:"%d ay",y:"bir y\u0131l",yy:"%d y\u0131l"},ordinal:function(h,l){switch(l){case"d":case"D":case"Do":case"DD":return h;default:if(0===h)return h+"'\u0131nc\u0131";var f=h%10;return h+(s[f]||s[h%100-f]||s[h>=100?100:null])}},week:{dow:1,doy:7}})}(d(5908))},6240:function(lt,me,d){!function(i){"use strict";function a(h,l,f,g){var b={s:["viensas secunds","'iensas secunds"],ss:[h+" secunds",h+" secunds"],m:["'n m\xedut","'iens m\xedut"],mm:[h+" m\xeduts",h+" m\xeduts"],h:["'n \xfeora","'iensa \xfeora"],hh:[h+" \xfeoras",h+" \xfeoras"],d:["'n ziua","'iensa ziua"],dd:[h+" ziuas",h+" ziuas"],M:["'n mes","'iens mes"],MM:[h+" mesen",h+" mesen"],y:["'n ar","'iens ar"],yy:[h+" ars",h+" ars"]};return g||l?b[f][0]:b[f][1]}i.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(h){return"d'o"===h.toLowerCase()},meridiem:function(h,l,f){return h>11?f?"d'o":"D'O":f?"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:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(d(5908))},3384:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},3064:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},5852:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5"===h||"\u0633\u06d5\u06be\u06d5\u0631"===h||"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646"===h?a:"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0643\u06d0\u064a\u0649\u0646"===h||"\u0643\u06d5\u0686"===h?a+12:a>=11?a:a+12},meridiem:function(a,h,l){var f=100*a+h;return f<600?"\u064a\u06d0\u0631\u0649\u0645 \u0643\u06d0\u0686\u06d5":f<900?"\u0633\u06d5\u06be\u06d5\u0631":f<1130?"\u0686\u06c8\u0634\u062a\u0649\u0646 \u0628\u06c7\u0631\u06c7\u0646":f<1230?"\u0686\u06c8\u0634":f<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(a,h){switch(h){case"d":case"D":case"DDD":return a+"-\u0643\u06c8\u0646\u0649";case"w":case"W":return a+"-\u06be\u06d5\u067e\u062a\u06d5";default:return a}},preparse:function(a){return a.replace(/\u060c/g,",")},postformat:function(a){return a.replace(/,/g,"\u060c")},week:{dow:1,doy:7}})}(d(5908))},2480:function(lt,me,d){!function(i){"use strict";function a(g,b,R){return"m"===R?b?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443":"h"===R?b?"\u0433\u043e\u0434\u0438\u043d\u0430":"\u0433\u043e\u0434\u0438\u043d\u0443":g+" "+function s(g,b){var R=g.split("_");return b%10==1&&b%100!=11?R[0]:b%10>=2&&b%10<=4&&(b%100<10||b%100>=20)?R[1]:R[2]}({ss:b?"\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:b?"\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:b?"\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"}[R],+g)}function l(g){return function(){return g+"\u043e"+(11===this.hours()?"\u0431":"")+"] LT"}}i.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 h(g,b){var R={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===g?R.nominative.slice(1,7).concat(R.nominative.slice(0,1)):g?R[/(\[[\u0412\u0432\u0423\u0443]\]) ?dddd/.test(b)?"accusative":/\[?(?:\u043c\u0438\u043d\u0443\u043b\u043e\u0457|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0457)? ?\] ?dddd/.test(b)?"genitive":"nominative"][g.day()]:R.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:l("[\u0421\u044c\u043e\u0433\u043e\u0434\u043d\u0456 "),nextDay:l("[\u0417\u0430\u0432\u0442\u0440\u0430 "),lastDay:l("[\u0412\u0447\u043e\u0440\u0430 "),nextWeek:l("[\u0423] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return l("[\u041c\u0438\u043d\u0443\u043b\u043e\u0457] dddd [").call(this);case 1:case 2:case 4:return l("[\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:a,m:a,mm:a,h:"\u0433\u043e\u0434\u0438\u043d\u0443",hh:a,d:"\u0434\u0435\u043d\u044c",dd:a,M:"\u043c\u0456\u0441\u044f\u0446\u044c",MM:a,y:"\u0440\u0456\u043a",yy:a},meridiemParse:/\u043d\u043e\u0447\u0456|\u0440\u0430\u043d\u043a\u0443|\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430/,isPM:function(g){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u043e\u0440\u0430)$/.test(g)},meridiem:function(g,b,R){return g<4?"\u043d\u043e\u0447\u0456":g<12?"\u0440\u0430\u043d\u043a\u0443":g<17?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u043e\u0440\u0430"},dayOfMonthOrdinalParse:/\d{1,2}-(\u0439|\u0433\u043e)/,ordinal:function(g,b){switch(b){case"M":case"d":case"DDD":case"w":case"W":return g+"-\u0439";case"D":return g+"-\u0433\u043e";default:return g}},week:{dow:1,doy:7}})}(d(5908))},3877:function(lt,me,d){!function(i){"use strict";var s=["\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"],a=["\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"];i.defineLocale("ur",{months:s,monthsShort:s,weekdays:a,weekdaysShort:a,weekdaysMin:a,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(l){return"\u0634\u0627\u0645"===l},meridiem:function(l,f,g){return l<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(l){return l.replace(/\u060c/g,",")},postformat:function(l){return l.replace(/,/g,"\u060c")},week:{dow:1,doy:4}})}(d(5908))},2490:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},1712:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},9984:function(lt,me,d){!function(i){"use strict";i.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:"Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12".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(a){return/^ch$/i.test(a)},meridiem:function(a,h,l){return a<12?l?"sa":"SA":l?"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 tr\u01b0\u1edbc 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",w:"m\u1ed9t tu\u1ea7n",ww:"%d tu\u1ea7n",M:"m\u1ed9t th\xe1ng",MM:"%d th\xe1ng",y:"m\u1ed9t n\u0103m",yy:"%d n\u0103m"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(a){return a},week:{dow:1,doy:4}})}(d(5908))},5708:function(lt,me,d){!function(i){"use strict";i.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(a){var h=a%10;return a+(1==~~(a%100/10)?"th":1===h?"st":2===h?"nd":3===h?"rd":"th")},week:{dow:1,doy:4}})}(d(5908))},8476:function(lt,me,d){!function(i){"use strict";i.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}})}(d(5908))},3676:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"\u51cc\u6668"===h||"\u65e9\u4e0a"===h||"\u4e0a\u5348"===h?a:"\u4e0b\u5348"===h||"\u665a\u4e0a"===h?a+12:a>=11?a:a+12},meridiem:function(a,h,l){var f=100*a+h;return f<600?"\u51cc\u6668":f<900?"\u65e9\u4e0a":f<1130?"\u4e0a\u5348":f<1230?"\u4e2d\u5348":f<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:function(a){return a.week()!==this.week()?"[\u4e0b]dddLT":"[\u672c]dddLT"},lastDay:"[\u6628\u5929]LT",lastWeek:function(a){return this.week()!==a.week()?"[\u4e0a]dddLT":"[\u672c]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u5468)/,ordinal:function(a,h){switch(h){case"d":case"D":case"DDD":return a+"\u65e5";case"M":return a+"\u6708";case"w":case"W":return a+"\u5468";default:return a}},relativeTime:{future:"%s\u540e",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",w:"1 \u5468",ww:"%d \u5468",M:"1 \u4e2a\u6708",MM:"%d \u4e2a\u6708",y:"1 \u5e74",yy:"%d \u5e74"},week:{dow:1,doy:4}})}(d(5908))},2262:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"\u51cc\u6668"===h||"\u65e9\u4e0a"===h||"\u4e0a\u5348"===h?a:"\u4e2d\u5348"===h?a>=11?a:a+12:"\u4e0b\u5348"===h||"\u665a\u4e0a"===h?a+12:void 0},meridiem:function(a,h,l){var f=100*a+h;return f<600?"\u51cc\u6668":f<900?"\u65e9\u4e0a":f<1200?"\u4e0a\u5348":1200===f?"\u4e2d\u5348":f<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(a,h){switch(h){case"d":case"D":case"DDD":return a+"\u65e5";case"M":return a+"\u6708";case"w":case"W":return a+"\u9031";default:return a}},relativeTime:{future:"%s\u5f8c",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"}})}(d(5908))},1968:function(lt,me,d){!function(i){"use strict";i.defineLocale("zh-mo",{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:"DD/MM/YYYY",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5dddd HH:mm",l:"D/M/YYYY",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(a,h){return 12===a&&(a=0),"\u51cc\u6668"===h||"\u65e9\u4e0a"===h||"\u4e0a\u5348"===h?a:"\u4e2d\u5348"===h?a>=11?a:a+12:"\u4e0b\u5348"===h||"\u665a\u4e0a"===h?a+12:void 0},meridiem:function(a,h,l){var f=100*a+h;return f<600?"\u51cc\u6668":f<900?"\u65e9\u4e0a":f<1130?"\u4e0a\u5348":f<1230?"\u4e2d\u5348":f<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(a,h){switch(h){case"d":case"D":case"DDD":return a+"\u65e5";case"M":return a+"\u6708";case"w":case"W":return a+"\u9031";default:return a}},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"}})}(d(5908))},3632:function(lt,me,d){!function(i){"use strict";i.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(a,h){return 12===a&&(a=0),"\u51cc\u6668"===h||"\u65e9\u4e0a"===h||"\u4e0a\u5348"===h?a:"\u4e2d\u5348"===h?a>=11?a:a+12:"\u4e0b\u5348"===h||"\u665a\u4e0a"===h?a+12:void 0},meridiem:function(a,h,l){var f=100*a+h;return f<600?"\u51cc\u6668":f<900?"\u65e9\u4e0a":f<1130?"\u4e0a\u5348":f<1230?"\u4e2d\u5348":f<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(a,h){switch(h){case"d":case"D":case"DDD":return a+"\u65e5";case"M":return a+"\u6708";case"w":case"W":return a+"\u9031";default:return a}},relativeTime:{future:"%s\u5f8c",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"}})}(d(5908))},5908:function(lt,me,d){(lt=d.nmd(lt)).exports=function(){"use strict";var i,Ge;function s(){return i.apply(null,arguments)}function h(u){return u instanceof Array||"[object Array]"===Object.prototype.toString.call(u)}function l(u){return null!=u&&"[object Object]"===Object.prototype.toString.call(u)}function f(u,x){return Object.prototype.hasOwnProperty.call(u,x)}function g(u){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(u).length;var x;for(x in u)if(f(u,x))return!1;return!0}function b(u){return void 0===u}function R(u){return"number"==typeof u||"[object Number]"===Object.prototype.toString.call(u)}function Y(u){return u instanceof Date||"[object Date]"===Object.prototype.toString.call(u)}function J(u,x){var z,B=[],Oe=u.length;for(z=0;z>>0;for(z=0;z0)for(B=0;B=0?B?"+":"":"-")+Math.pow(10,Math.max(0,x-z.length)).toString().substr(1)+z}var je=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,De=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Le={},Ve={};function te(u,x,B,z){var Oe=z;"string"==typeof z&&(Oe=function(){return this[z]()}),u&&(Ve[u]=Oe),x&&(Ve[x[0]]=function(){return vi(Oe.apply(this,arguments),x[1],x[2])}),B&&(Ve[B]=function(){return this.localeData().ordinal(Oe.apply(this,arguments),u)})}function ge(u){return u.match(/\[[\s\S]/)?u.replace(/^\[|\]$/g,""):u.replace(/\\/g,"")}function Ne(u,x){return u.isValid()?(x=be(x,u.localeData()),Le[x]=Le[x]||function xt(u){var B,z,x=u.match(je);for(B=0,z=x.length;B=0&&De.test(u);)u=u.replace(De,z),De.lastIndex=0,B-=1;return u}var ni={D:"date",dates:"date",date:"date",d:"day",days:"day",day:"day",e:"weekday",weekdays:"weekday",weekday:"weekday",E:"isoWeekday",isoweekdays:"isoWeekday",isoweekday:"isoWeekday",DDD:"dayOfYear",dayofyears:"dayOfYear",dayofyear:"dayOfYear",h:"hour",hours:"hour",hour:"hour",ms:"millisecond",milliseconds:"millisecond",millisecond:"millisecond",m:"minute",minutes:"minute",minute:"minute",M:"month",months:"month",month:"month",Q:"quarter",quarters:"quarter",quarter:"quarter",s:"second",seconds:"second",second:"second",gg:"weekYear",weekyears:"weekYear",weekyear:"weekYear",GG:"isoWeekYear",isoweekyears:"isoWeekYear",isoweekyear:"isoWeekYear",w:"week",weeks:"week",week:"week",W:"isoWeek",isoweeks:"isoWeek",isoweek:"isoWeek",y:"year",years:"year",year:"year"};function Mi(u){return"string"==typeof u?ni[u]||ni[u.toLowerCase()]:void 0}function wt(u){var B,z,x={};for(z in u)f(u,z)&&(B=Mi(z))&&(x[B]=u[z]);return x}var zt={date:9,day:11,weekday:11,isoWeekday:11,dayOfYear:4,hour:13,millisecond:16,minute:14,month:8,quarter:7,second:15,weekYear:1,isoWeekYear:1,week:5,isoWeek:5,year:1};var _,ve=/\d/,Te=/\d\d/,at=/\d{3}/,Ze=/\d{4}/,pt=/[+-]?\d{6}/,le=/\d\d?/,xe=/\d\d\d\d?/,Pe=/\d\d\d\d\d\d?/,ht=/\d{1,3}/,Ht=/\d{1,4}/,vt=/[+-]?\d{1,6}/,Mt=/\d+/,fe=/[+-]?\d+/,it=/Z|[+-]\d\d:?\d\d/gi,Et=/Z|[+-]\d\d(?::?\d\d)?/gi,ri=/[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,V=/^[1-9]\d?/,Ce=/^([1-9]\d|\d)/;function w(u,x,B){_[u]=$e(x)?x:function(z,Oe){return z&&B?B:x}}function S(u,x){return f(_,u)?_[u](x._strict,x._locale):new RegExp(function $(u){return ze(u.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(x,B,z,Oe,Nt){return B||z||Oe||Nt}))}(u))}function ze(u){return u.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function At(u){return u<0?Math.ceil(u)||0:Math.floor(u)}function bt(u){var x=+u,B=0;return 0!==x&&isFinite(x)&&(B=At(x)),B}_={};var yt={};function Ue(u,x){var B,Oe,z=x;for("string"==typeof u&&(u=[u]),R(x)&&(z=function(Nt,li){li[x]=bt(Nt)}),Oe=u.length,B=0;B68?1900:2e3)};var ee,an=Je("FullYear",!0);function Je(u,x){return function(B){return null!=B?(Me(this,u,B),s.updateOffset(this,x),this):gi(this,u)}}function gi(u,x){if(!u.isValid())return NaN;var B=u._d,z=u._isUTC;switch(x){case"Milliseconds":return z?B.getUTCMilliseconds():B.getMilliseconds();case"Seconds":return z?B.getUTCSeconds():B.getSeconds();case"Minutes":return z?B.getUTCMinutes():B.getMinutes();case"Hours":return z?B.getUTCHours():B.getHours();case"Date":return z?B.getUTCDate():B.getDate();case"Day":return z?B.getUTCDay():B.getDay();case"Month":return z?B.getUTCMonth():B.getMonth();case"FullYear":return z?B.getUTCFullYear():B.getFullYear();default:return NaN}}function Me(u,x,B){var z,Oe,Nt,li,Ni;if(u.isValid()&&!isNaN(B)){switch(z=u._d,Oe=u._isUTC,x){case"Milliseconds":return void(Oe?z.setUTCMilliseconds(B):z.setMilliseconds(B));case"Seconds":return void(Oe?z.setUTCSeconds(B):z.setSeconds(B));case"Minutes":return void(Oe?z.setUTCMinutes(B):z.setMinutes(B));case"Hours":return void(Oe?z.setUTCHours(B):z.setHours(B));case"Date":return void(Oe?z.setUTCDate(B):z.setDate(B));case"FullYear":break;default:return}Nt=B,li=u.month(),Ni=29!==(Ni=u.date())||1!==li||Ei(Nt)?Ni:28,Oe?z.setUTCFullYear(Nt,li,Ni):z.setFullYear(Nt,li,Ni)}}function re(u,x){if(isNaN(u)||isNaN(x))return NaN;var B=function A(u,x){return(u%x+x)%x}(x,12);return u+=(x-B)/12,1===B?Ei(u)?29:28:31-B%7%2}ee=Array.prototype.indexOf?Array.prototype.indexOf:function(u){var x;for(x=0;x=0?(Ni=new Date(u+400,x,B,z,Oe,Nt,li),isFinite(Ni.getFullYear())&&Ni.setFullYear(u)):Ni=new Date(u,x,B,z,Oe,Nt,li),Ni}function en(u){var x,B;return u<100&&u>=0?((B=Array.prototype.slice.call(arguments))[0]=u+400,x=new Date(Date.UTC.apply(null,B)),isFinite(x.getUTCFullYear())&&x.setUTCFullYear(u)):x=new Date(Date.UTC.apply(null,arguments)),x}function pr(u,x,B){var z=7+x-B;return-(7+en(u,0,z).getUTCDay()-x)%7+z-1}function kr(u,x,B,z,Oe){var qi,kn,Ni=1+7*(x-1)+(7+B-z)%7+pr(u,z,Oe);return Ni<=0?kn=hn(qi=u-1)+Ni:Ni>hn(u)?(qi=u+1,kn=Ni-hn(u)):(qi=u,kn=Ni),{year:qi,dayOfYear:kn}}function Zn(u,x,B){var Nt,li,z=pr(u.year(),x,B),Oe=Math.floor((u.dayOfYear()-z-1)/7)+1;return Oe<1?Nt=Oe+Vn(li=u.year()-1,x,B):Oe>Vn(u.year(),x,B)?(Nt=Oe-Vn(u.year(),x,B),li=u.year()+1):(li=u.year(),Nt=Oe),{week:Nt,year:li}}function Vn(u,x,B){var z=pr(u,x,B),Oe=pr(u+1,x,B);return(hn(u)-z+Oe)/7}te("w",["ww",2],"wo","week"),te("W",["WW",2],"Wo","isoWeek"),w("w",le,V),w("ww",le,Te),w("W",le,V),w("WW",le,Te),Ft(["w","ww","W","WW"],function(u,x,B,z){x[z.substr(0,1)]=bt(u)});function _n(u,x){return u.slice(x,7).concat(u.slice(0,x))}te("d",0,"do","day"),te("dd",0,0,function(u){return this.localeData().weekdaysMin(this,u)}),te("ddd",0,0,function(u){return this.localeData().weekdaysShort(this,u)}),te("dddd",0,0,function(u){return this.localeData().weekdays(this,u)}),te("e",0,0,"weekday"),te("E",0,0,"isoWeekday"),w("d",le),w("e",le),w("E",le),w("dd",function(u,x){return x.weekdaysMinRegex(u)}),w("ddd",function(u,x){return x.weekdaysShortRegex(u)}),w("dddd",function(u,x){return x.weekdaysRegex(u)}),Ft(["dd","ddd","dddd"],function(u,x,B,z){var Oe=B._locale.weekdaysParse(u,z,B._strict);null!=Oe?x.d=Oe:Ee(B).invalidWeekday=u}),Ft(["d","e","E"],function(u,x,B,z){x[z]=bt(u)});var Gr="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),jn="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ir="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),ba=ri,Tr=ri,Ar=ri;function Pi(u,x,B){var z,Oe,Nt,li=u.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],z=0;z<7;++z)Nt=ae([2e3,1]).day(z),this._minWeekdaysParse[z]=this.weekdaysMin(Nt,"").toLocaleLowerCase(),this._shortWeekdaysParse[z]=this.weekdaysShort(Nt,"").toLocaleLowerCase(),this._weekdaysParse[z]=this.weekdays(Nt,"").toLocaleLowerCase();return B?"dddd"===x?-1!==(Oe=ee.call(this._weekdaysParse,li))?Oe:null:"ddd"===x?-1!==(Oe=ee.call(this._shortWeekdaysParse,li))?Oe:null:-1!==(Oe=ee.call(this._minWeekdaysParse,li))?Oe:null:"dddd"===x?-1!==(Oe=ee.call(this._weekdaysParse,li))||-1!==(Oe=ee.call(this._shortWeekdaysParse,li))||-1!==(Oe=ee.call(this._minWeekdaysParse,li))?Oe:null:"ddd"===x?-1!==(Oe=ee.call(this._shortWeekdaysParse,li))||-1!==(Oe=ee.call(this._weekdaysParse,li))||-1!==(Oe=ee.call(this._minWeekdaysParse,li))?Oe:null:-1!==(Oe=ee.call(this._minWeekdaysParse,li))||-1!==(Oe=ee.call(this._weekdaysParse,li))||-1!==(Oe=ee.call(this._shortWeekdaysParse,li))?Oe:null}function Wn(){function u(ga,ns){return ns.length-ga.length}var Nt,li,Ni,qi,kn,x=[],B=[],z=[],Oe=[];for(Nt=0;Nt<7;Nt++)li=ae([2e3,1]).day(Nt),Ni=ze(this.weekdaysMin(li,"")),qi=ze(this.weekdaysShort(li,"")),kn=ze(this.weekdays(li,"")),x.push(Ni),B.push(qi),z.push(kn),Oe.push(Ni),Oe.push(qi),Oe.push(kn);x.sort(u),B.sort(u),z.sort(u),Oe.sort(u),this._weekdaysRegex=new RegExp("^("+Oe.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+z.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+B.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+x.join("|")+")","i")}function Bi(){return this.hours()%12||12}function aa(u,x){te(u,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),x)})}function sa(u,x){return x._meridiemParse}te("H",["HH",2],0,"hour"),te("h",["hh",2],0,Bi),te("k",["kk",2],0,function fr(){return this.hours()||24}),te("hmm",0,0,function(){return""+Bi.apply(this)+vi(this.minutes(),2)}),te("hmmss",0,0,function(){return""+Bi.apply(this)+vi(this.minutes(),2)+vi(this.seconds(),2)}),te("Hmm",0,0,function(){return""+this.hours()+vi(this.minutes(),2)}),te("Hmmss",0,0,function(){return""+this.hours()+vi(this.minutes(),2)+vi(this.seconds(),2)}),aa("a",!0),aa("A",!1),w("a",sa),w("A",sa),w("H",le,Ce),w("h",le,V),w("k",le,V),w("HH",le,Te),w("hh",le,Te),w("kk",le,Te),w("hmm",xe),w("hmmss",Pe),w("Hmm",xe),w("Hmmss",Pe),Ue(["H","HH"],nt),Ue(["k","kk"],function(u,x,B){var z=bt(u);x[nt]=24===z?0:z}),Ue(["a","A"],function(u,x,B){B._isPm=B._locale.isPM(u),B._meridiem=u}),Ue(["h","hh"],function(u,x,B){x[nt]=bt(u),Ee(B).bigHour=!0}),Ue("hmm",function(u,x,B){var z=u.length-2;x[nt]=bt(u.substr(0,z)),x[Ot]=bt(u.substr(z)),Ee(B).bigHour=!0}),Ue("hmmss",function(u,x,B){var z=u.length-4,Oe=u.length-2;x[nt]=bt(u.substr(0,z)),x[Ot]=bt(u.substr(z,2)),x[si]=bt(u.substr(Oe)),Ee(B).bigHour=!0}),Ue("Hmm",function(u,x,B){var z=u.length-2;x[nt]=bt(u.substr(0,z)),x[Ot]=bt(u.substr(z))}),Ue("Hmmss",function(u,x,B){var z=u.length-4,Oe=u.length-2;x[nt]=bt(u.substr(0,z)),x[Ot]=bt(u.substr(z,2)),x[si]=bt(u.substr(Oe))});var Vr=Je("Hours",!0);var gr,Jr={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",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:mt,monthsShort:Wt,week:{dow:0,doy:6},weekdays:Gr,weekdaysMin:Ir,weekdaysShort:jn,meridiemParse:/[ap]\.?m?\.?/i},ln={},lr={};function zn(u,x){var B,z=Math.min(u.length,x.length);for(B=0;B0;){if(Oe=$n(Nt.slice(0,B).join("-")))return Oe;if(z&&z.length>=B&&zn(Nt,z)>=B-1)break;B--}x++}return gr}(u)}function Yn(u){var x,B=u._a;return B&&-2===Ee(u).overflow&&(x=B[Ci]<0||B[Ci]>11?Ci:B[We]<1||B[We]>re(B[Vt],B[Ci])?We:B[nt]<0||B[nt]>24||24===B[nt]&&(0!==B[Ot]||0!==B[si]||0!==B[yi])?nt:B[Ot]<0||B[Ot]>59?Ot:B[si]<0||B[si]>59?si:B[yi]<0||B[yi]>999?yi:-1,Ee(u)._overflowDayOfYear&&(xWe)&&(x=We),Ee(u)._overflowWeeks&&-1===x&&(x=Ti),Ee(u)._overflowWeekday&&-1===x&&(x=Fi),Ee(u).overflow=x),u}var qr=/^\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)?)?$/,Lr=/^\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)?)?$/,mr=/Z|[+-]\d\d(?::?\d\d)?/,Pn=[["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}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Da=[["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/]],Or=/^\/?Date\((-?\d+)/i,ua=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,wr={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function Ca(u){var x,B,Nt,li,Ni,qi,z=u._i,Oe=qr.exec(z)||Lr.exec(z),kn=Pn.length,ga=Da.length;if(Oe){for(Ee(u).iso=!0,x=0,B=kn;x7)&&(qi=!0)):(Nt=u._locale._week.dow,li=u._locale._week.doy,kn=Zn(yn(),Nt,li),B=jr(x.gg,u._a[Vt],kn.year),z=jr(x.w,kn.week),null!=x.d?((Oe=x.d)<0||Oe>6)&&(qi=!0):null!=x.e?(Oe=x.e+Nt,(x.e<0||x.e>6)&&(qi=!0)):Oe=Nt),z<1||z>Vn(B,Nt,li)?Ee(u)._overflowWeeks=!0:null!=qi?Ee(u)._overflowWeekday=!0:(Ni=kr(B,z,Oe,Nt,li),u._a[Vt]=Ni.year,u._dayOfYear=Ni.dayOfYear)}(u),null!=u._dayOfYear&&(li=jr(u._a[Vt],Oe[Vt]),(u._dayOfYear>hn(li)||0===u._dayOfYear)&&(Ee(u)._overflowDayOfYear=!0),B=en(li,0,u._dayOfYear),u._a[Ci]=B.getUTCMonth(),u._a[We]=B.getUTCDate()),x=0;x<3&&null==u._a[x];++x)u._a[x]=z[x]=Oe[x];for(;x<7;x++)u._a[x]=z[x]=null==u._a[x]?2===x?1:0:u._a[x];24===u._a[nt]&&0===u._a[Ot]&&0===u._a[si]&&0===u._a[yi]&&(u._nextDay=!0,u._a[nt]=0),u._d=(u._useUTC?en:qn).apply(null,z),Nt=u._useUTC?u._d.getUTCDay():u._d.getDay(),null!=u._tzm&&u._d.setUTCMinutes(u._d.getUTCMinutes()-u._tzm),u._nextDay&&(u._a[nt]=24),u._w&&typeof u._w.d<"u"&&u._w.d!==Nt&&(Ee(u).weekdayMismatch=!0)}}function Ae(u){if(u._f!==s.ISO_8601)if(u._f!==s.RFC_2822){u._a=[],Ee(u).empty=!0;var B,z,Oe,Nt,li,kn,ga,x=""+u._i,Ni=x.length,qi=0;for(ga=(Oe=be(u._f,u._locale).match(je)||[]).length,B=0;B0&&Ee(u).unusedInput.push(li),x=x.slice(x.indexOf(z)+z.length),qi+=z.length),Ve[Nt]?(z?Ee(u).empty=!1:Ee(u).unusedTokens.push(Nt),di(Nt,z,u)):u._strict&&!z&&Ee(u).unusedTokens.push(Nt);Ee(u).charsLeftOver=Ni-qi,x.length>0&&Ee(u).unusedInput.push(x),u._a[nt]<=12&&!0===Ee(u).bigHour&&u._a[nt]>0&&(Ee(u).bigHour=void 0),Ee(u).parsedDateParts=u._a.slice(0),Ee(u).meridiem=u._meridiem,u._a[nt]=function It(u,x,B){var z;return null==B?x:null!=u.meridiemHour?u.meridiemHour(x,B):(null!=u.isPM&&((z=u.isPM(B))&&x<12&&(x+=12),!z&&12===x&&(x=0)),x)}(u._locale,u._a[nt],u._meridiem),null!==(kn=Ee(u).era)&&(u._a[Vt]=u._locale.erasConvertYear(kn,u._a[Vt])),ne(u),Yn(u)}else ea(u);else Ca(u)}function xr(u){var x=u._i,B=u._f;return u._locale=u._locale||ar(u._l),null===x||void 0===B&&""===x?gt({nullInput:!0}):("string"==typeof x&&(u._i=x=u._locale.preparse(x)),Q(x)?new et(Yn(x)):(Y(x)?u._d=x:h(B)?function Ri(u){var x,B,z,Oe,Nt,li,Ni=!1,qi=u._f.length;if(0===qi)return Ee(u).invalidFormat=!0,void(u._d=new Date(NaN));for(Oe=0;Oethis?this:u:gt()});function La(u,x){var B,z;if(1===x.length&&h(x[0])&&(x=x[0]),!x.length)return yn();for(B=x[0],z=1;z=0?new Date(u+400,x,B)-sr:new Date(u,x,B).valueOf()}function Oa(u,x,B){return u<100&&u>=0?Date.UTC(u+400,x,B)-sr:Date.UTC(u,x,B)}function dl(u,x){return x.erasAbbrRegex(u)}function Cs(){var Oe,Nt,li,Ni,qi,u=[],x=[],B=[],z=[],kn=this.eras();for(Oe=0,Nt=kn.length;Oe(Nt=Vn(u,z,Oe))&&(x=Nt),co.call(this,u,x,B,z,Oe))}function co(u,x,B,z,Oe){var Nt=kr(u,x,B,z,Oe),li=en(Nt.year,0,Nt.dayOfYear);return this.year(li.getUTCFullYear()),this.month(li.getUTCMonth()),this.date(li.getUTCDate()),this}te("N",0,0,"eraAbbr"),te("NN",0,0,"eraAbbr"),te("NNN",0,0,"eraAbbr"),te("NNNN",0,0,"eraName"),te("NNNNN",0,0,"eraNarrow"),te("y",["y",1],"yo","eraYear"),te("y",["yy",2],0,"eraYear"),te("y",["yyy",3],0,"eraYear"),te("y",["yyyy",4],0,"eraYear"),w("N",dl),w("NN",dl),w("NNN",dl),w("NNNN",function Fs(u,x){return x.erasNameRegex(u)}),w("NNNNN",function hc(u,x){return x.erasNarrowRegex(u)}),Ue(["N","NN","NNN","NNNN","NNNNN"],function(u,x,B,z){var Oe=B._locale.erasParse(u,z,B._strict);Oe?Ee(B).era=Oe:Ee(B).invalidEra=u}),w("y",Mt),w("yy",Mt),w("yyy",Mt),w("yyyy",Mt),w("yo",function fa(u,x){return x._eraYearOrdinalRegex||Mt}),Ue(["y","yy","yyy","yyyy"],Vt),Ue(["yo"],function(u,x,B,z){var Oe;B._locale._eraYearOrdinalRegex&&(Oe=u.match(B._locale._eraYearOrdinalRegex)),x[Vt]=B._locale.eraYearOrdinalParse?B._locale.eraYearOrdinalParse(u,Oe):parseInt(u,10)}),te(0,["gg",2],0,function(){return this.weekYear()%100}),te(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Ga("gggg","weekYear"),Ga("ggggg","weekYear"),Ga("GGGG","isoWeekYear"),Ga("GGGGG","isoWeekYear"),w("G",fe),w("g",fe),w("GG",le,Te),w("gg",le,Te),w("GGGG",Ht,Ze),w("gggg",Ht,Ze),w("GGGGG",vt,pt),w("ggggg",vt,pt),Ft(["gggg","ggggg","GGGG","GGGGG"],function(u,x,B,z){x[z.substr(0,2)]=bt(u)}),Ft(["gg","GG"],function(u,x,B,z){x[z]=s.parseTwoDigitYear(u)}),te("Q",0,"Qo","quarter"),w("Q",ve),Ue("Q",function(u,x){x[Ci]=3*(bt(u)-1)}),te("D",["DD",2],"Do","date"),w("D",le,V),w("DD",le,Te),w("Do",function(u,x){return u?x._dayOfMonthOrdinalParse||x._ordinalParse:x._dayOfMonthOrdinalParseLenient}),Ue(["D","DD"],We),Ue("Do",function(u,x){x[We]=bt(u.match(le)[0])});var _s=Je("Date",!0);te("DDD",["DDDD",3],"DDDo","dayOfYear"),w("DDD",ht),w("DDDD",at),Ue(["DDD","DDDD"],function(u,x,B){B._dayOfYear=bt(u)}),te("m",["mm",2],0,"minute"),w("m",le,Ce),w("mm",le,Te),Ue(["m","mm"],Ot);var uo=Je("Minutes",!1);te("s",["ss",2],0,"second"),w("s",le,Ce),w("ss",le,Te),Ue(["s","ss"],si);var Rn,fc,Va=Je("Seconds",!1);for(te("S",0,0,function(){return~~(this.millisecond()/100)}),te(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),te(0,["SSS",3],0,"millisecond"),te(0,["SSSS",4],0,function(){return 10*this.millisecond()}),te(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),te(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),te(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),te(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),te(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),w("S",ht,ve),w("SS",ht,Te),w("SSS",ht,at),Rn="SSSS";Rn.length<=9;Rn+="S")w(Rn,Mt);function Bs(u,x){x[yi]=bt(1e3*("0."+u))}for(Rn="S";Rn.length<=9;Rn+="S")Ue(Rn,Bs);fc=Je("Milliseconds",!1),te("z",0,0,"zoneAbbr"),te("zz",0,0,"zoneName");var Di=et.prototype;function C(u){return u}Di.add=Nr,Di.calendar=function H(u,x){1===arguments.length&&(arguments[0]?Wr(arguments[0])?(u=arguments[0],x=void 0):function p(u){var Oe,x=l(u)&&!g(u),B=!1,z=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"];for(Oe=0;OeB.valueOf():B.valueOf()9999?Ne(B,x?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):$e(Date.prototype.toISOString)?x?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",Ne(B,"Z")):Ne(B,x?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},Di.inspect=function F(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var B,z,u="moment",x="";return this.isLocal()||(u=0===this.utcOffset()?"moment.utc":"moment.parseZone",x="Z"),B="["+u+'("]',z=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",this.format(B+z+"-MM-DD[T]HH:mm:ss.SSS"+x+'[")]')},typeof Symbol<"u"&&null!=Symbol.for&&(Di[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),Di.toJSON=function so(){return this.isValid()?this.toISOString():null},Di.toString=function D(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},Di.unix=function Ra(){return Math.floor(this.valueOf()/1e3)},Di.valueOf=function vn(){return this._d.valueOf()-6e4*(this._offset||0)},Di.creationData=function oo(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},Di.eraName=function uc(){var u,x,B,z=this.localeData().eras();for(u=0,x=z.length;uthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},Di.isLocal=function Si(){return!!this.isValid()&&!this._isUTC},Di.isUtcOffset=function cn(){return!!this.isValid()&&this._isUTC},Di.isUtc=$i,Di.isUTC=$i,Di.zoneAbbr=function Hs(){return this._isUTC?"UTC":""},Di.zoneName=function _c(){return this._isUTC?"Coordinated Universal Time":""},Di.dates=ye("dates accessor is deprecated. Use date instead.",_s),Di.months=ye("months accessor is deprecated. Use month instead",Be),Di.years=ye("years accessor is deprecated. Use year instead",an),Di.zone=ye("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function pe(u,x){return null!=u?("string"!=typeof u&&(u=-u),this.utcOffset(u,x),this):-this.utcOffset()}),Di.isDSTShifted=ye("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function ui(){if(!b(this._isDSTShifted))return this._isDSTShifted;var x,u={};return Ye(u,this),(u=xr(u))._a?(x=u._isUTC?ae(u._a):yn(u._a),this._isDSTShifted=this.isValid()&&function Ha(u,x,B){var li,z=Math.min(u.length,x.length),Oe=Math.abs(u.length-x.length),Nt=0;for(li=0;li0):this._isDSTShifted=!1,this._isDSTShifted});var T=st.prototype;function X(u,x,B,z){var Oe=ar(),Nt=ae().set(z,x);return Oe[B](Nt,u)}function Se(u,x,B){if(R(u)&&(x=u,u=void 0),u=u||"",null!=x)return X(u,x,B,"month");var z,Oe=[];for(z=0;z<12;z++)Oe[z]=X(u,z,B,"month");return Oe}function rt(u,x,B,z){"boolean"==typeof u?(R(x)&&(B=x,x=void 0),x=x||""):(B=x=u,u=!1,R(x)&&(B=x,x=void 0),x=x||"");var li,Oe=ar(),Nt=u?Oe._week.dow:0,Ni=[];if(null!=B)return X(x,(B+Nt)%7,z,"day");for(li=0;li<7;li++)Ni[li]=X(x,(li+Nt)%7,z,"day");return Ni}T.calendar=function Jt(u,x,B){var z=this._calendar[u]||this._calendar.sameElse;return $e(z)?z.call(x,B):z},T.longDateFormat=function we(u){var x=this._longDateFormat[u],B=this._longDateFormat[u.toUpperCase()];return x||!B?x:(this._longDateFormat[u]=B.match(je).map(function(z){return"MMMM"===z||"MM"===z||"DD"===z||"dddd"===z?z.slice(1):z}).join(""),this._longDateFormat[u])},T.invalidDate=function U(){return this._invalidDate},T.ordinal=function Ke(u){return this._ordinal.replace("%d",u)},T.preparse=C,T.postformat=C,T.relativeTime=function Kt(u,x,B,z){var Oe=this._relativeTime[B];return $e(Oe)?Oe(u,x,B,z):Oe.replace(/%d/i,u)},T.pastFuture=function Ut(u,x){var B=this._relativeTime[u>0?"future":"past"];return $e(B)?B(x):B.replace(/%s/i,x)},T.set=function oe(u){var x,B;for(B in u)f(u,B)&&($e(x=u[B])?this[B]=x:this["_"+B]=x);this._config=u,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},T.eras=function zr(u,x){var B,z,Oe,Nt=this._eras||ar("en")._eras;for(B=0,z=Nt.length;B=0)return Nt[z]},T.erasConvertYear=function cl(u,x){var B=u.since<=u.until?1:-1;return void 0===x?s(u.since).year():s(u.since).year()+(x-u.offset)*B},T.erasAbbrRegex=function Ds(u){return f(this,"_erasAbbrRegex")||Cs.call(this),u?this._erasAbbrRegex:this._erasRegex},T.erasNameRegex=function es(u){return f(this,"_erasNameRegex")||Cs.call(this),u?this._erasNameRegex:this._erasRegex},T.erasNarrowRegex=function Ps(u){return f(this,"_erasNarrowRegex")||Cs.call(this),u?this._erasNarrowRegex:this._erasRegex},T.months=function ot(u,x){return u?h(this._months)?this._months[u.month()]:this._months[(this._months.isFormat||Zt).test(x)?"format":"standalone"][u.month()]:h(this._months)?this._months:this._months.standalone},T.monthsShort=function mi(u,x){return u?h(this._monthsShort)?this._monthsShort[u.month()]:this._monthsShort[Zt.test(x)?"format":"standalone"][u.month()]:h(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},T.monthsParse=function se(u,x,B){var z,Oe,Nt;if(this._monthsParseExact)return k.call(this,u,x,B);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),z=0;z<12;z++){if(Oe=ae([2e3,z]),B&&!this._longMonthsParse[z]&&(this._longMonthsParse[z]=new RegExp("^"+this.months(Oe,"").replace(".","")+"$","i"),this._shortMonthsParse[z]=new RegExp("^"+this.monthsShort(Oe,"").replace(".","")+"$","i")),!B&&!this._monthsParse[z]&&(Nt="^"+this.months(Oe,"")+"|^"+this.monthsShort(Oe,""),this._monthsParse[z]=new RegExp(Nt.replace(".",""),"i")),B&&"MMMM"===x&&this._longMonthsParse[z].test(u))return z;if(B&&"MMM"===x&&this._shortMonthsParse[z].test(u))return z;if(!B&&this._monthsParse[z].test(u))return z}},T.monthsRegex=function ji(u){return this._monthsParseExact?(f(this,"_monthsRegex")||sn.call(this),u?this._monthsStrictRegex:this._monthsRegex):(f(this,"_monthsRegex")||(this._monthsRegex=Li),this._monthsStrictRegex&&u?this._monthsStrictRegex:this._monthsRegex)},T.monthsShortRegex=function wi(u){return this._monthsParseExact?(f(this,"_monthsRegex")||sn.call(this),u?this._monthsShortStrictRegex:this._monthsShortRegex):(f(this,"_monthsShortRegex")||(this._monthsShortRegex=pi),this._monthsShortStrictRegex&&u?this._monthsShortStrictRegex:this._monthsShortRegex)},T.week=function Hr(u){return Zn(u,this._week.dow,this._week.doy).week},T.firstDayOfYear=function ir(){return this._week.doy},T.firstDayOfWeek=function ra(){return this._week.dow},T.weekdays=function or(u,x){var B=h(this._weekdays)?this._weekdays:this._weekdays[u&&!0!==u&&this._weekdays.isFormat.test(x)?"format":"standalone"];return!0===u?_n(B,this._week.dow):u?B[u.day()]:B},T.weekdaysMin=function bi(u){return!0===u?_n(this._weekdaysMin,this._week.dow):u?this._weekdaysMin[u.day()]:this._weekdaysMin},T.weekdaysShort=function on(u){return!0===u?_n(this._weekdaysShort,this._week.dow):u?this._weekdaysShort[u.day()]:this._weekdaysShort},T.weekdaysParse=function In(u,x,B){var z,Oe,Nt;if(this._weekdaysParseExact)return Pi.call(this,u,x,B);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),z=0;z<7;z++){if(Oe=ae([2e3,1]).day(z),B&&!this._fullWeekdaysParse[z]&&(this._fullWeekdaysParse[z]=new RegExp("^"+this.weekdays(Oe,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[z]=new RegExp("^"+this.weekdaysShort(Oe,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[z]=new RegExp("^"+this.weekdaysMin(Oe,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[z]||(Nt="^"+this.weekdays(Oe,"")+"|^"+this.weekdaysShort(Oe,"")+"|^"+this.weekdaysMin(Oe,""),this._weekdaysParse[z]=new RegExp(Nt.replace(".",""),"i")),B&&"dddd"===x&&this._fullWeekdaysParse[z].test(u))return z;if(B&&"ddd"===x&&this._shortWeekdaysParse[z].test(u))return z;if(B&&"dd"===x&&this._minWeekdaysParse[z].test(u))return z;if(!B&&this._weekdaysParse[z].test(u))return z}},T.weekdaysRegex=function br(u){return this._weekdaysParseExact?(f(this,"_weekdaysRegex")||Wn.call(this),u?this._weekdaysStrictRegex:this._weekdaysRegex):(f(this,"_weekdaysRegex")||(this._weekdaysRegex=ba),this._weekdaysStrictRegex&&u?this._weekdaysStrictRegex:this._weekdaysRegex)},T.weekdaysShortRegex=function pn(u){return this._weekdaysParseExact?(f(this,"_weekdaysRegex")||Wn.call(this),u?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(f(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Tr),this._weekdaysShortStrictRegex&&u?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},T.weekdaysMinRegex=function bn(u){return this._weekdaysParseExact?(f(this,"_weekdaysRegex")||Wn.call(this),u?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(f(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ar),this._weekdaysMinStrictRegex&&u?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},T.isPM=function xn(u){return"p"===(u+"").toLowerCase().charAt(0)},T.meridiem=function er(u,x,B){return u>11?B?"pm":"PM":B?"am":"AM"},cr("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(u){var x=u%10;return u+(1===bt(u%100/10)?"th":1===x?"st":2===x?"nd":3===x?"rd":"th")}}),s.lang=ye("moment.lang is deprecated. Use moment.locale instead.",cr),s.langData=ye("moment.langData is deprecated. Use moment.localeData instead.",ar);var Gn=Math.abs;function ts(u,x,B,z){var Oe=dn(x,B);return u._milliseconds+=z*Oe._milliseconds,u._days+=z*Oe._days,u._months+=z*Oe._months,u._bubble()}function xa(u){return u<0?Math.floor(u):Math.ceil(u)}function Vs(u){return 4800*u/146097}function js(u){return 146097*u/4800}function ja(u){return function(){return this.as(u)}}var ho=ja("ms"),$d=ja("s"),ml=ja("m"),Um=ja("h"),Wm=ja("d"),zm=ja("w"),$m=ja("M"),pl=ja("Q"),tn=ja("y"),Bn=ho;function bs(u){return function(){return this.isValid()?this._data[u]:NaN}}var Qm=bs("milliseconds"),Qd=bs("seconds"),fl=bs("minutes"),_l=bs("hours"),gc=bs("days"),_a=bs("months"),vc=bs("years");var is=Math.round,Ua={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function gl(u,x,B,z,Oe){return Oe.relativeTime(x||1,!!B,u,z)}var po=Math.abs;function Pa(u){return(u>0)-(u<0)||+u}function fo(){if(!this.isValid())return this.localeData().invalidDate();var z,Oe,Nt,li,qi,kn,ga,ns,u=po(this._milliseconds)/1e3,x=po(this._days),B=po(this._months),Ni=this.asSeconds();return Ni?(z=At(u/60),Oe=At(z/60),u%=60,z%=60,Nt=At(B/12),B%=12,li=u?u.toFixed(3).replace(/\.?0+$/,""):"",qi=Ni<0?"-":"",kn=Pa(this._months)!==Pa(Ni)?"-":"",ga=Pa(this._days)!==Pa(Ni)?"-":"",ns=Pa(this._milliseconds)!==Pa(Ni)?"-":"",qi+"P"+(Nt?kn+Nt+"Y":"")+(B?kn+B+"M":"")+(x?ga+x+"D":"")+(Oe||z||u?"T":"")+(Oe?ns+Oe+"H":"")+(z?ns+z+"M":"")+(u?ns+li+"S":"")):"P0D"}var mn=Pr.prototype;return mn.isValid=function ur(){return this._isValid},mn.abs=function gs(){var u=this._data;return this._milliseconds=Gn(this._milliseconds),this._days=Gn(this._days),this._months=Gn(this._months),u.milliseconds=Gn(u.milliseconds),u.seconds=Gn(u.seconds),u.minutes=Gn(u.minutes),u.hours=Gn(u.hours),u.months=Gn(u.months),u.years=Gn(u.years),this},mn.add=function vs(u,x){return ts(this,u,x,1)},mn.subtract=function Gs(u,x){return ts(this,u,x,-1)},mn.as=function hl(u){if(!this.isValid())return NaN;var x,B,z=this._milliseconds;if("month"===(u=Mi(u))||"quarter"===u||"year"===u)switch(x=this._days+z/864e5,B=this._months+Vs(x),u){case"month":return B;case"quarter":return B/3;case"year":return B/12}else switch(x=this._days+Math.round(js(this._months)),u){case"week":return x/7+z/6048e5;case"day":return x+z/864e5;case"hour":return 24*x+z/36e5;case"minute":return 1440*x+z/6e4;case"second":return 86400*x+z/1e3;case"millisecond":return Math.floor(864e5*x)+z;default:throw new Error("Unknown unit "+u)}},mn.asMilliseconds=ho,mn.asSeconds=$d,mn.asMinutes=ml,mn.asHours=Um,mn.asDays=Wm,mn.asWeeks=zm,mn.asMonths=$m,mn.asQuarters=pl,mn.asYears=tn,mn.valueOf=Bn,mn._bubble=function Qi(){var Oe,Nt,li,Ni,qi,u=this._milliseconds,x=this._days,B=this._months,z=this._data;return u>=0&&x>=0&&B>=0||u<=0&&x<=0&&B<=0||(u+=864e5*xa(js(B)+x),x=0,B=0),z.milliseconds=u%1e3,Oe=At(u/1e3),z.seconds=Oe%60,Nt=At(Oe/60),z.minutes=Nt%60,li=At(Nt/60),z.hours=li%24,x+=At(li/24),B+=qi=At(Vs(x)),x-=xa(js(qi)),Ni=At(B/12),B%=12,z.days=x,z.months=B,z.years=Ni,this},mn.clone=function Km(){return dn(this)},mn.get=function Kd(u){return u=Mi(u),this.isValid()?this[u+"s"]():NaN},mn.milliseconds=Qm,mn.seconds=Qd,mn.minutes=fl,mn.hours=_l,mn.days=gc,mn.weeks=function Xm(){return At(this.days()/7)},mn.months=_a,mn.years=vc,mn.humanize=function Jd(u,x){if(!this.isValid())return this.localeData().invalidDate();var Oe,Nt,B=!1,z=Ua;return"object"==typeof u&&(x=u,u=!1),"boolean"==typeof u&&(B=u),"object"==typeof x&&(z=Object.assign({},Ua,x),null!=x.s&&null==x.ss&&(z.ss=x.s-1)),Nt=function mo(u,x,B,z){var Oe=dn(u).abs(),Nt=is(Oe.as("s")),li=is(Oe.as("m")),Ni=is(Oe.as("h")),qi=is(Oe.as("d")),kn=is(Oe.as("M")),ga=is(Oe.as("w")),ns=is(Oe.as("y")),Fa=Nt<=B.ss&&["s",Nt]||Nt0,Fa[4]=z,gl.apply(null,Fa)}(this,!B,z,Oe=this.localeData()),B&&(Nt=Oe.pastFuture(+this,Nt)),Oe.postformat(Nt)},mn.toISOString=fo,mn.toString=fo,mn.toJSON=fo,mn.locale=Tn,mn.localeData=Ln,mn.toIsoString=ye("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",fo),mn.lang=An,te("X",0,0,"unix"),te("x",0,0,"valueOf"),w("x",fe),w("X",/[+-]?\d+(\.\d{1,3})?/),Ue("X",function(u,x,B){B._d=new Date(1e3*parseFloat(u))}),Ue("x",function(u,x,B){B._d=new Date(bt(u))}),s.version="2.30.1",function a(u){i=u}(yn),s.fn=Di,s.min=function Ka(){return La("isBefore",[].slice.call(arguments,0))},s.max=function us(){return La("isAfter",[].slice.call(arguments,0))},s.now=function(){return Date.now?Date.now():+new Date},s.utc=ae,s.unix=function y(u){return yn(1e3*u)},s.months=function ei(u,x){return Se(u,x,"months")},s.isDate=Y,s.locale=cr,s.invalid=gt,s.duration=dn,s.isMoment=Q,s.weekdays=function Ii(u,x,B){return rt(u,x,B,"weekdays")},s.parseZone=function O(){return yn.apply(null,arguments).parseZone()},s.localeData=ar,s.isDuration=Fr,s.monthsShort=function Xt(u,x){return Se(u,x,"monthsShort")},s.weekdaysMin=function fn(u,x,B){return rt(u,x,B,"weekdaysMin")},s.defineLocale=yr,s.updateLocale=function Cn(u,x){if(null!=x){var B,z,Oe=Jr;null!=ln[u]&&null!=ln[u].parentLocale?ln[u].set(ut(ln[u]._config,x)):(null!=(z=$n(u))&&(Oe=z._config),x=ut(Oe,x),null==z&&(x.abbr=u),(B=new st(x)).parentLocale=ln[u],ln[u]=B),cr(u)}else null!=ln[u]&&(null!=ln[u].parentLocale?(ln[u]=ln[u].parentLocale,u===cr()&&cr(u)):null!=ln[u]&&delete ln[u]);return ln[u]},s.locales=function Nn(){return $t(ln)},s.weekdaysShort=function Zi(u,x,B){return rt(u,x,B,"weekdaysShort")},s.normalizeUnits=Mi,s.relativeTimeRounding=function Xd(u){return void 0===u?is:"function"==typeof u&&(is=u,!0)},s.relativeTimeThreshold=function Zd(u,x){return void 0!==Ua[u]&&(void 0===x?Ua[u]:(Ua[u]=x,"s"===u&&(Ua.ss=x-1),!0))},s.calendarFormat=function L(u,x){var B=u.diff(x,"days",!0);return B<-6?"sameElse":B<-1?"lastWeek":B<0?"lastDay":B<1?"sameDay":B<2?"nextDay":B<7?"nextWeek":"sameElse"},s.prototype=Di,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}()},6700:(lt,me,d)=>{"use strict";d.d(me,{g:()=>s});var i=d(5657);class s extends i.E{constructor(h){super(),this._value=h}get value(){return this.getValue()}_subscribe(h){const l=super._subscribe(h);return!l.closed&&h.next(this._value),l}getValue(){const{hasError:h,thrownError:l,_value:f}=this;if(h)throw l;return this._throwIfClosed(),f}next(h){super.next(this._value=h)}}},3252:(lt,me,d)=>{"use strict";d.d(me,{_:()=>b});var i=d(9380),s=d(6928),a=d(472),h=d(3928),l=d(4491),f=d(8880),g=d(2075);let b=(()=>{class ie{constructor(Ie){Ie&&(this._subscribe=Ie)}lift(Ie){const Ee=new ie;return Ee.source=this,Ee.operator=Ie,Ee}subscribe(Ie,Ee,Ge){const tt=function J(ie){return ie&&ie instanceof i.yR||function Y(ie){return ie&&(0,f.m)(ie.next)&&(0,f.m)(ie.error)&&(0,f.m)(ie.complete)}(ie)&&(0,s.GI)(ie)}(Ie)?Ie:new i.ot(Ie,Ee,Ge);return(0,g.c)(()=>{const{operator:gt,source:Bt}=this;tt.add(gt?gt.call(tt,Bt):Bt?this._subscribe(tt):this._trySubscribe(tt))}),tt}_trySubscribe(Ie){try{return this._subscribe(Ie)}catch(Ee){Ie.error(Ee)}}forEach(Ie,Ee){return new(Ee=R(Ee))((Ge,tt)=>{const gt=new i.ot({next:Bt=>{try{Ie(Bt)}catch(kt){tt(kt),gt.unsubscribe()}},error:tt,complete:Ge});this.subscribe(gt)})}_subscribe(Ie){var Ee;return null===(Ee=this.source)||void 0===Ee?void 0:Ee.subscribe(Ie)}[a.a](){return this}pipe(...Ie){return(0,h.Y)(Ie)(this)}toPromise(Ie){return new(Ie=R(Ie))((Ee,Ge)=>{let tt;this.subscribe(gt=>tt=gt,gt=>Ge(gt),()=>Ee(tt))})}}return ie.create=ae=>new ie(ae),ie})();function R(ie){var ae;return null!==(ae=ie??l.config.Promise)&&void 0!==ae?ae:Promise}},5657:(lt,me,d)=>{"use strict";d.d(me,{E:()=>g});var i=d(3252),s=d(6928);const h=(0,d(4912).w)(R=>function(){R(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var l=d(1248),f=d(2075);let g=(()=>{class R extends i._{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(J){const ie=new b(this,this);return ie.operator=J,ie}_throwIfClosed(){if(this.closed)throw new h}next(J){(0,f.c)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const ie of this.currentObservers)ie.next(J)}})}error(J){(0,f.c)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=J;const{observers:ie}=this;for(;ie.length;)ie.shift().error(J)}})}complete(){(0,f.c)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:J}=this;for(;J.length;)J.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var J;return(null===(J=this.observers)||void 0===J?void 0:J.length)>0}_trySubscribe(J){return this._throwIfClosed(),super._trySubscribe(J)}_subscribe(J){return this._throwIfClosed(),this._checkFinalizedStatuses(J),this._innerSubscribe(J)}_innerSubscribe(J){const{hasError:ie,isStopped:ae,observers:Ie}=this;return ie||ae?s.au:(this.currentObservers=null,Ie.push(J),new s.wH(()=>{this.currentObservers=null,(0,l.k)(Ie,J)}))}_checkFinalizedStatuses(J){const{hasError:ie,thrownError:ae,isStopped:Ie}=this;ie?J.error(ae):Ie&&J.complete()}asObservable(){const J=new i._;return J.source=this,J}}return R.create=(Y,J)=>new b(Y,J),R})();class b extends g{constructor(Y,J){super(),this.destination=Y,this.source=J}next(Y){var J,ie;null===(ie=null===(J=this.destination)||void 0===J?void 0:J.next)||void 0===ie||ie.call(J,Y)}error(Y){var J,ie;null===(ie=null===(J=this.destination)||void 0===J?void 0:J.error)||void 0===ie||ie.call(J,Y)}complete(){var Y,J;null===(J=null===(Y=this.destination)||void 0===Y?void 0:Y.complete)||void 0===J||J.call(Y)}_subscribe(Y){var J,ie;return null!==(ie=null===(J=this.source)||void 0===J?void 0:J.subscribe(Y))&&void 0!==ie?ie:s.au}}},9380:(lt,me,d)=>{"use strict";d.d(me,{ot:()=>Ge,yR:()=>ie});var i=d(8880),s=d(6928),a=d(4491),h=d(1984),l=d(308);const f=R("C",void 0,void 0);function R(Ye,et,Q){return{kind:Ye,value:et,error:Q}}var Y=d(3376),J=d(2075);class ie extends s.wH{constructor(et){super(),this.isStopped=!1,et?(this.destination=et,(0,s.GI)(et)&&et.add(this)):this.destination=kt}static create(et,Q,_e){return new Ge(et,Q,_e)}next(et){this.isStopped?Bt(function b(Ye){return R("N",Ye,void 0)}(et),this):this._next(et)}error(et){this.isStopped?Bt(function g(Ye){return R("E",void 0,Ye)}(et),this):(this.isStopped=!0,this._error(et))}complete(){this.isStopped?Bt(f,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(et){this.destination.next(et)}_error(et){try{this.destination.error(et)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const ae=Function.prototype.bind;function Ie(Ye,et){return ae.call(Ye,et)}class Ee{constructor(et){this.partialObserver=et}next(et){const{partialObserver:Q}=this;if(Q.next)try{Q.next(et)}catch(_e){tt(_e)}}error(et){const{partialObserver:Q}=this;if(Q.error)try{Q.error(et)}catch(_e){tt(_e)}else tt(et)}complete(){const{partialObserver:et}=this;if(et.complete)try{et.complete()}catch(Q){tt(Q)}}}class Ge extends ie{constructor(et,Q,_e){let ye;if(super(),(0,i.m)(et)||!et)ye={next:et??void 0,error:Q??void 0,complete:_e??void 0};else{let Re;this&&a.config.useDeprecatedNextContext?(Re=Object.create(et),Re.unsubscribe=()=>this.unsubscribe(),ye={next:et.next&&Ie(et.next,Re),error:et.error&&Ie(et.error,Re),complete:et.complete&&Ie(et.complete,Re)}):ye=et}this.destination=new Ee(ye)}}function tt(Ye){a.config.useDeprecatedSynchronousErrorHandling?(0,J.q)(Ye):(0,h.U)(Ye)}function Bt(Ye,et){const{onStoppedNotification:Q}=a.config;Q&&Y.u.setTimeout(()=>Q(Ye,et))}const kt={closed:!0,next:l.K,error:function gt(Ye){throw Ye},complete:l.K}},6928:(lt,me,d)=>{"use strict";d.d(me,{au:()=>f,wH:()=>l,GI:()=>g});var i=d(8880);const a=(0,d(4912).w)(R=>function(J){R(this),this.message=J?`${J.length} errors occurred during unsubscription:\n${J.map((ie,ae)=>`${ae+1}) ${ie.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=J});var h=d(1248);class l{constructor(Y){this.initialTeardown=Y,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let Y;if(!this.closed){this.closed=!0;const{_parentage:J}=this;if(J)if(this._parentage=null,Array.isArray(J))for(const Ie of J)Ie.remove(this);else J.remove(this);const{initialTeardown:ie}=this;if((0,i.m)(ie))try{ie()}catch(Ie){Y=Ie instanceof a?Ie.errors:[Ie]}const{_finalizers:ae}=this;if(ae){this._finalizers=null;for(const Ie of ae)try{b(Ie)}catch(Ee){Y=Y??[],Ee instanceof a?Y=[...Y,...Ee.errors]:Y.push(Ee)}}if(Y)throw new a(Y)}}add(Y){var J;if(Y&&Y!==this)if(this.closed)b(Y);else{if(Y instanceof l){if(Y.closed||Y._hasParent(this))return;Y._addParent(this)}(this._finalizers=null!==(J=this._finalizers)&&void 0!==J?J:[]).push(Y)}}_hasParent(Y){const{_parentage:J}=this;return J===Y||Array.isArray(J)&&J.includes(Y)}_addParent(Y){const{_parentage:J}=this;this._parentage=Array.isArray(J)?(J.push(Y),J):J?[J,Y]:Y}_removeParent(Y){const{_parentage:J}=this;J===Y?this._parentage=null:Array.isArray(J)&&(0,h.k)(J,Y)}remove(Y){const{_finalizers:J}=this;J&&(0,h.k)(J,Y),Y instanceof l&&Y._removeParent(this)}}l.EMPTY=(()=>{const R=new l;return R.closed=!0,R})();const f=l.EMPTY;function g(R){return R instanceof l||R&&"closed"in R&&(0,i.m)(R.remove)&&(0,i.m)(R.add)&&(0,i.m)(R.unsubscribe)}function b(R){(0,i.m)(R)?R():R.unsubscribe()}},4491:(lt,me,d)=>{"use strict";d.d(me,{config:()=>i});const i={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},2376:(lt,me,d)=>{"use strict";d.d(me,{C:()=>f});var i=d(3252),s=d(6928),a=d(5704),h=d(7773),l=d(5448);class f extends i._{constructor(b,R){super(),this.source=b,this.subjectFactory=R,this._subject=null,this._refCount=0,this._connection=null,(0,l.e)(b)&&(this.lift=b.lift)}_subscribe(b){return this.getSubject().subscribe(b)}getSubject(){const b=this._subject;return(!b||b.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:b}=this;this._subject=this._connection=null,b?.unsubscribe()}connect(){let b=this._connection;if(!b){b=this._connection=new s.wH;const R=this.getSubject();b.add(this.source.subscribe((0,h.e)(R,void 0,()=>{this._teardown(),R.complete()},Y=>{this._teardown(),R.error(Y)},()=>this._teardown()))),b.closed&&(this._connection=null,b=s.wH.EMPTY)}return b}refCount(){return(0,a.O)()(this)}}},6040:(lt,me,d)=>{"use strict";d.d(me,{E:()=>Y});var i=d(3252),s=d(4300),a=d(4496),h=d(528),l=d(4187),f=d(6624),g=d(7904),b=d(7773),R=d(9399);function Y(...ae){const Ie=(0,f.e_)(ae),Ee=(0,f.yu)(ae),{args:Ge,keys:tt}=(0,s.Q)(ae);if(0===Ge.length)return(0,a.Q)([],Ie);const gt=new i._(function J(ae,Ie,Ee=h.Z){return Ge=>{ie(Ie,()=>{const{length:tt}=ae,gt=new Array(tt);let Bt=tt,kt=tt;for(let Ye=0;Ye{const et=(0,a.Q)(ae[Ye],Ie);let Q=!1;et.subscribe((0,b.e)(Ge,_e=>{gt[Ye]=_e,Q||(Q=!0,kt--),kt||Ge.next(Ee(gt.slice()))},()=>{--Bt||Ge.complete()}))},Ge)},Ge)}}(Ge,Ie,tt?Bt=>(0,g.q)(tt,Bt):h.Z));return Ee?gt.pipe((0,l.j)(Ee)):gt}function ie(ae,Ie,Ee){ae?(0,R._)(Ee,ae,Ie):Ie()}},7228:(lt,me,d)=>{"use strict";d.d(me,{W:()=>l});var i=d(267),a=d(6624),h=d(4496);function l(...f){return function s(){return(0,i.u)(1)}()((0,h.Q)(f,(0,a.e_)(f)))}},1424:(lt,me,d)=>{"use strict";d.d(me,{Q:()=>a});var i=d(3252),s=d(560);function a(h){return new i._(l=>{(0,s.Uv)(h()).subscribe(l)})}},8960:(lt,me,d)=>{"use strict";d.d(me,{k:()=>s});const s=new(d(3252)._)(l=>l.complete())},9336:(lt,me,d)=>{"use strict";d.d(me,{y:()=>b});var i=d(3252),s=d(4300),a=d(560),h=d(6624),l=d(7773),f=d(4187),g=d(7904);function b(...R){const Y=(0,h.yu)(R),{args:J,keys:ie}=(0,s.Q)(R),ae=new i._(Ie=>{const{length:Ee}=J;if(!Ee)return void Ie.complete();const Ge=new Array(Ee);let tt=Ee,gt=Ee;for(let Bt=0;Bt{kt||(kt=!0,gt--),Ge[Bt]=Ye},()=>tt--,void 0,()=>{(!tt||!kt)&&(gt||Ie.next(ie?(0,g.q)(ie,Ge):Ge),Ie.complete())}))}});return Y?ae.pipe((0,f.j)(Y)):ae}},4496:(lt,me,d)=>{"use strict";d.d(me,{Q:()=>_e});var i=d(560),s=d(9399),a=d(5448),h=d(7773);function l(ye,Re=0){return(0,a.i)((Xe,$e)=>{Xe.subscribe((0,h.e)($e,oe=>(0,s._)($e,ye,()=>$e.next(oe),Re),()=>(0,s._)($e,ye,()=>$e.complete(),Re),oe=>(0,s._)($e,ye,()=>$e.error(oe),Re)))})}function f(ye,Re=0){return(0,a.i)((Xe,$e)=>{$e.add(ye.schedule(()=>Xe.subscribe($e),Re))})}var R=d(3252),J=d(3835),ie=d(8880);function Ie(ye,Re){if(!ye)throw new Error("Iterable cannot be null");return new R._(Xe=>{(0,s._)(Xe,Re,()=>{const $e=ye[Symbol.asyncIterator]();(0,s._)(Xe,Re,()=>{$e.next().then(oe=>{oe.done?Xe.complete():Xe.next(oe.value)})},0,!0)})})}var Ee=d(5099),Ge=d(5432),tt=d(5428),gt=d(1688),Bt=d(376),kt=d(8272),Ye=d(5832);function _e(ye,Re){return Re?function Q(ye,Re){if(null!=ye){if((0,Ee.O)(ye))return function g(ye,Re){return(0,i.Uv)(ye).pipe(f(Re),l(Re))}(ye,Re);if((0,tt.G)(ye))return function Y(ye,Re){return new R._(Xe=>{let $e=0;return Re.schedule(function(){$e===ye.length?Xe.complete():(Xe.next(ye[$e++]),Xe.closed||this.schedule())})})}(ye,Re);if((0,Ge.u)(ye))return function b(ye,Re){return(0,i.Uv)(ye).pipe(f(Re),l(Re))}(ye,Re);if((0,Bt.E)(ye))return Ie(ye,Re);if((0,gt.i)(ye))return function ae(ye,Re){return new R._(Xe=>{let $e;return(0,s._)(Xe,Re,()=>{$e=ye[J.w](),(0,s._)(Xe,Re,()=>{let oe,ut;try{({value:oe,done:ut}=$e.next())}catch(st){return void Xe.error(st)}ut?Xe.complete():Xe.next(oe)},0,!0)}),()=>(0,ie.m)($e?.return)&&$e.return()})}(ye,Re);if((0,Ye.K)(ye))return function et(ye,Re){return Ie((0,Ye._)(ye),Re)}(ye,Re)}throw(0,kt.W)(ye)}(ye,Re):(0,i.Uv)(ye)}},800:(lt,me,d)=>{"use strict";d.d(me,{w:()=>Y});var i=d(560),s=d(3252),a=d(7400),h=d(5428),l=d(8880),f=d(4187);const g=["addListener","removeListener"],b=["addEventListener","removeEventListener"],R=["on","off"];function Y(Ee,Ge,tt,gt){if((0,l.m)(tt)&&(gt=tt,tt=void 0),gt)return Y(Ee,Ge,tt).pipe((0,f.j)(gt));const[Bt,kt]=function Ie(Ee){return(0,l.m)(Ee.addEventListener)&&(0,l.m)(Ee.removeEventListener)}(Ee)?b.map(Ye=>et=>Ee[Ye](Ge,et,tt)):function ie(Ee){return(0,l.m)(Ee.addListener)&&(0,l.m)(Ee.removeListener)}(Ee)?g.map(J(Ee,Ge)):function ae(Ee){return(0,l.m)(Ee.on)&&(0,l.m)(Ee.off)}(Ee)?R.map(J(Ee,Ge)):[];if(!Bt&&(0,h.G)(Ee))return(0,a.O)(Ye=>Y(Ye,Ge,tt))((0,i.Uv)(Ee));if(!Bt)throw new TypeError("Invalid event target");return new s._(Ye=>{const et=(...Q)=>Ye.next(1kt(et)})}function J(Ee,Ge){return tt=>gt=>Ee[tt](Ge,gt)}},560:(lt,me,d)=>{"use strict";d.d(me,{Uv:()=>ae});var i=d(1316),s=d(5428),a=d(5432),h=d(3252),l=d(5099),f=d(376),g=d(8272),b=d(1688),R=d(5832),Y=d(8880),J=d(1984),ie=d(472);function ae(Ye){if(Ye instanceof h._)return Ye;if(null!=Ye){if((0,l.O)(Ye))return function Ie(Ye){return new h._(et=>{const Q=Ye[ie.a]();if((0,Y.m)(Q.subscribe))return Q.subscribe(et);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(Ye);if((0,s.G)(Ye))return function Ee(Ye){return new h._(et=>{for(let Q=0;Q{Ye.then(Q=>{et.closed||(et.next(Q),et.complete())},Q=>et.error(Q)).then(null,J.U)})}(Ye);if((0,f.E)(Ye))return gt(Ye);if((0,b.i)(Ye))return function tt(Ye){return new h._(et=>{for(const Q of Ye)if(et.next(Q),et.closed)return;et.complete()})}(Ye);if((0,R.K)(Ye))return function Bt(Ye){return gt((0,R._)(Ye))}(Ye)}throw(0,g.W)(Ye)}function gt(Ye){return new h._(et=>{(function kt(Ye,et){var Q,_e,ye,Re;return(0,i.kH)(this,void 0,void 0,function*(){try{for(Q=(0,i.mA)(Ye);!(_e=yield Q.next()).done;)if(et.next(_e.value),et.closed)return}catch(Xe){ye={error:Xe}}finally{try{_e&&!_e.done&&(Re=Q.return)&&(yield Re.call(Q))}finally{if(ye)throw ye.error}}et.complete()})})(Ye,et).catch(Q=>et.error(Q))})}},3412:(lt,me,d)=>{"use strict";d.d(me,{U:()=>f});var i=d(267),s=d(560),a=d(8960),h=d(6624),l=d(4496);function f(...g){const b=(0,h.e_)(g),R=(0,h._8)(g,1/0),Y=g;return Y.length?1===Y.length?(0,s.Uv)(Y[0]):(0,i.u)(R)((0,l.Q)(Y,b)):a.k}},2700:(lt,me,d)=>{"use strict";d.d(me,{of:()=>a});var i=d(6624),s=d(4496);function a(...h){const l=(0,i.e_)(h);return(0,s.Q)(h,l)}},3800:(lt,me,d)=>{"use strict";d.d(me,{c:()=>a});var i=d(3252),s=d(8880);function a(h,l){const f=(0,s.m)(h)?h:()=>h,g=b=>b.error(f());return new i._(l?b=>l.schedule(g,0,b):g)}},4548:(lt,me,d)=>{"use strict";d.d(me,{k:()=>l});var i=d(3252),s=d(112),a=d(3048);function l(f=0,g,b=s.a){let R=-1;return null!=g&&((0,a.G)(g)?b=g:R=g),new i._(Y=>{let J=function h(f){return f instanceof Date&&!isNaN(f)}(f)?+f-b.now():f;J<0&&(J=0);let ie=0;return b.schedule(function(){Y.closed||(Y.next(ie++),0<=R?this.schedule(void 0,R):Y.complete())},J)})}},7773:(lt,me,d)=>{"use strict";d.d(me,{e:()=>s});var i=d(9380);function s(h,l,f,g,b){return new a(h,l,f,g,b)}class a extends i.yR{constructor(l,f,g,b,R,Y){super(l),this.onFinalize=R,this.shouldUnsubscribe=Y,this._next=f?function(J){try{f(J)}catch(ie){l.error(ie)}}:super._next,this._error=b?function(J){try{b(J)}catch(ie){l.error(ie)}finally{this.unsubscribe()}}:super._error,this._complete=g?function(){try{g()}catch(J){l.error(J)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var l;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:f}=this;super.unsubscribe(),!f&&(null===(l=this.onFinalize)||void 0===l||l.call(this))}}}},9144:(lt,me,d)=>{"use strict";d.d(me,{a:()=>h});var i=d(560),s=d(7773),a=d(5448);function h(l){return(0,a.i)((f,g)=>{let Y,b=null,R=!1;b=f.subscribe((0,s.e)(g,void 0,void 0,J=>{Y=(0,i.Uv)(l(J,h(l)(f))),b?(b.unsubscribe(),b=null,Y.subscribe(g)):R=!0})),R&&(b.unsubscribe(),b=null,Y.subscribe(g))})}},3639:(lt,me,d)=>{"use strict";d.d(me,{m:()=>a});var i=d(7400),s=d(8880);function a(h,l){return(0,s.m)(l)?(0,i.O)(h,l,1):(0,i.O)(h,1)}},4680:(lt,me,d)=>{"use strict";d.d(me,{o:()=>h});var i=d(112),s=d(5448),a=d(7773);function h(l,f=i.M){return(0,s.i)((g,b)=>{let R=null,Y=null,J=null;const ie=()=>{if(R){R.unsubscribe(),R=null;const Ie=Y;Y=null,b.next(Ie)}};function ae(){const Ie=J+l,Ee=f.now();if(Ee{Y=Ie,J=f.now(),R||(R=f.schedule(ae,l),b.add(R))},()=>{ie(),b.complete()},void 0,()=>{Y=R=null}))})}},7680:(lt,me,d)=>{"use strict";d.d(me,{o:()=>ae});var i=d(112),s=d(7228),a=d(3992),h=d(5448),l=d(7773),f=d(308),b=d(320),R=d(7400),Y=d(560);function J(Ie,Ee){return Ee?Ge=>(0,s.W)(Ee.pipe((0,a.U)(1),function g(){return(0,h.i)((Ie,Ee)=>{Ie.subscribe((0,l.e)(Ee,f.K))})}()),Ge.pipe(J(Ie))):(0,R.O)((Ge,tt)=>(0,Y.Uv)(Ie(Ge,tt)).pipe((0,a.U)(1),(0,b.e)(Ge)))}var ie=d(4548);function ae(Ie,Ee=i.M){const Ge=(0,ie.k)(Ie,Ee);return J(()=>Ge)}},4e3:(lt,me,d)=>{"use strict";d.d(me,{a:()=>h});var i=d(528),s=d(5448),a=d(7773);function h(f,g=i.Z){return f=f??l,(0,s.i)((b,R)=>{let Y,J=!0;b.subscribe((0,a.e)(R,ie=>{const ae=g(ie);(J||!f(Y,ae))&&(J=!1,Y=ae,R.next(ie))}))})}function l(f,g){return f===g}},6684:(lt,me,d)=>{"use strict";d.d(me,{I:()=>a});var i=d(5448),s=d(7773);function a(h,l){return(0,i.i)((f,g)=>{let b=0;f.subscribe((0,s.e)(g,R=>h.call(l,R,b++)&&g.next(R)))})}},8824:(lt,me,d)=>{"use strict";d.d(me,{U:()=>s});var i=d(5448);function s(a){return(0,i.i)((h,l)=>{try{h.subscribe(l)}finally{l.add(a)}})}},4704:(lt,me,d)=>{"use strict";d.d(me,{k:()=>a});var i=d(5448),s=d(7773);function a(h,l){return(0,i.i)((f,g)=>{let b=0;f.subscribe((0,s.e)(g,R=>{g.next(h.call(l,R,b++))}))})}},320:(lt,me,d)=>{"use strict";d.d(me,{e:()=>s});var i=d(4704);function s(a){return(0,i.k)(()=>a)}},267:(lt,me,d)=>{"use strict";d.d(me,{u:()=>a});var i=d(7400),s=d(528);function a(h=1/0){return(0,i.O)(s.Z,h)}},7400:(lt,me,d)=>{"use strict";d.d(me,{O:()=>b});var i=d(4704),s=d(560),a=d(5448),h=d(9399),l=d(7773),g=d(8880);function b(R,Y,J=1/0){return(0,g.m)(Y)?b((ie,ae)=>(0,i.k)((Ie,Ee)=>Y(ie,Ie,ae,Ee))((0,s.Uv)(R(ie,ae))),J):("number"==typeof Y&&(J=Y),(0,a.i)((ie,ae)=>function f(R,Y,J,ie,ae,Ie,Ee,Ge){const tt=[];let gt=0,Bt=0,kt=!1;const Ye=()=>{kt&&!tt.length&&!gt&&Y.complete()},et=_e=>gt{Ie&&Y.next(_e),gt++;let ye=!1;(0,s.Uv)(J(_e,Bt++)).subscribe((0,l.e)(Y,Re=>{ae?.(Re),Ie?et(Re):Y.next(Re)},()=>{ye=!0},void 0,()=>{if(ye)try{for(gt--;tt.length&>Q(Re)):Q(Re)}Ye()}catch(Re){Y.error(Re)}}))};return R.subscribe((0,l.e)(Y,et,()=>{kt=!0,Ye()})),()=>{Ge?.()}}(ie,ae,R,J)))}},5704:(lt,me,d)=>{"use strict";d.d(me,{O:()=>a});var i=d(5448),s=d(7773);function a(){return(0,i.i)((h,l)=>{let f=null;h._refCount++;const g=(0,s.e)(l,void 0,void 0,void 0,()=>{if(!h||h._refCount<=0||0<--h._refCount)return void(f=null);const b=h._connection,R=f;f=null,b&&(!R||b===R)&&b.unsubscribe(),l.unsubscribe()});h.subscribe(g),g.closed||(f=h.connect())})}},7648:(lt,me,d)=>{"use strict";d.d(me,{o:()=>l});var i=d(560),s=d(5657),a=d(9380),h=d(5448);function l(g={}){const{connector:b=(()=>new s.E),resetOnError:R=!0,resetOnComplete:Y=!0,resetOnRefCountZero:J=!0}=g;return ie=>{let ae,Ie,Ee,Ge=0,tt=!1,gt=!1;const Bt=()=>{Ie?.unsubscribe(),Ie=void 0},kt=()=>{Bt(),ae=Ee=void 0,tt=gt=!1},Ye=()=>{const et=ae;kt(),et?.unsubscribe()};return(0,h.i)((et,Q)=>{Ge++,!gt&&!tt&&Bt();const _e=Ee=Ee??b();Q.add(()=>{Ge--,0===Ge&&!gt&&!tt&&(Ie=f(Ye,J))}),_e.subscribe(Q),!ae&&Ge>0&&(ae=new a.ot({next:ye=>_e.next(ye),error:ye=>{gt=!0,Bt(),Ie=f(kt,R,ye),_e.error(ye)},complete:()=>{tt=!0,Bt(),Ie=f(kt,Y),_e.complete()}}),(0,i.Uv)(et).subscribe(ae))})(ie)}}function f(g,b,...R){if(!0===b)return void g();if(!1===b)return;const Y=new a.ot({next:()=>{Y.unsubscribe(),g()}});return(0,i.Uv)(b(...R)).subscribe(Y)}},832:(lt,me,d)=>{"use strict";d.d(me,{C:()=>l});var i=d(5657),s=d(5960);class a extends i.E{constructor(g=1/0,b=1/0,R=s.K){super(),this._bufferSize=g,this._windowTime=b,this._timestampProvider=R,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=b===1/0,this._bufferSize=Math.max(1,g),this._windowTime=Math.max(1,b)}next(g){const{isStopped:b,_buffer:R,_infiniteTimeWindow:Y,_timestampProvider:J,_windowTime:ie}=this;b||(R.push(g),!Y&&R.push(J.now()+ie)),this._trimBuffer(),super.next(g)}_subscribe(g){this._throwIfClosed(),this._trimBuffer();const b=this._innerSubscribe(g),{_infiniteTimeWindow:R,_buffer:Y}=this,J=Y.slice();for(let ie=0;ienew a(R,g,b),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:Y})}},2644:(lt,me,d)=>{"use strict";d.d(me,{s:()=>s});var i=d(6684);function s(a){return(0,i.I)((h,l)=>a<=l)}},5568:(lt,me,d)=>{"use strict";d.d(me,{W:()=>h});var i=d(7228),s=d(6624),a=d(5448);function h(...l){const f=(0,s.e_)(l);return(0,a.i)((g,b)=>{(f?(0,i.W)(l,g,f):(0,i.W)(l,g)).subscribe(b)})}},7368:(lt,me,d)=>{"use strict";d.d(me,{G:()=>h});var i=d(560),s=d(5448),a=d(7773);function h(l,f){return(0,s.i)((g,b)=>{let R=null,Y=0,J=!1;const ie=()=>J&&!R&&b.complete();g.subscribe((0,a.e)(b,ae=>{R?.unsubscribe();let Ie=0;const Ee=Y++;(0,i.Uv)(l(ae,Ee)).subscribe(R=(0,a.e)(b,Ge=>b.next(f?f(ae,Ge,Ee,Ie++):Ge),()=>{R=null,ie()}))},()=>{J=!0,ie()}))})}},3992:(lt,me,d)=>{"use strict";d.d(me,{U:()=>h});var i=d(8960),s=d(5448),a=d(7773);function h(l){return l<=0?()=>i.k:(0,s.i)((f,g)=>{let b=0;f.subscribe((0,a.e)(g,R=>{++b<=l&&(g.next(R),l<=b&&g.complete())}))})}},3616:(lt,me,d)=>{"use strict";d.d(me,{a:()=>l});var i=d(5448),s=d(7773),a=d(560),h=d(308);function l(f){return(0,i.i)((g,b)=>{(0,a.Uv)(f).subscribe((0,s.e)(b,()=>b.complete(),h.K)),!b.closed&&g.subscribe(b)})}},9212:(lt,me,d)=>{"use strict";d.d(me,{y:()=>l});var i=d(8880),s=d(5448),a=d(7773),h=d(528);function l(f,g,b){const R=(0,i.m)(f)||g||b?{next:f,error:g,complete:b}:f;return R?(0,s.i)((Y,J)=>{var ie;null===(ie=R.subscribe)||void 0===ie||ie.call(R);let ae=!0;Y.subscribe((0,a.e)(J,Ie=>{var Ee;null===(Ee=R.next)||void 0===Ee||Ee.call(R,Ie),J.next(Ie)},()=>{var Ie;ae=!1,null===(Ie=R.complete)||void 0===Ie||Ie.call(R),J.complete()},Ie=>{var Ee;ae=!1,null===(Ee=R.error)||void 0===Ee||Ee.call(R,Ie),J.error(Ie)},()=>{var Ie,Ee;ae&&(null===(Ie=R.unsubscribe)||void 0===Ie||Ie.call(R)),null===(Ee=R.finalize)||void 0===Ee||Ee.call(R)}))}):h.Z}},1364:(lt,me,d)=>{"use strict";d.d(me,{m:()=>l});var i=d(6928);class s extends i.wH{constructor(g,b){super()}schedule(g,b=0){return this}}const a={setInterval(f,g,...b){const{delegate:R}=a;return R?.setInterval?R.setInterval(f,g,...b):setInterval(f,g,...b)},clearInterval(f){const{delegate:g}=a;return(g?.clearInterval||clearInterval)(f)},delegate:void 0};var h=d(1248);class l extends s{constructor(g,b){super(g,b),this.scheduler=g,this.work=b,this.pending=!1}schedule(g,b=0){var R;if(this.closed)return this;this.state=g;const Y=this.id,J=this.scheduler;return null!=Y&&(this.id=this.recycleAsyncId(J,Y,b)),this.pending=!0,this.delay=b,this.id=null!==(R=this.id)&&void 0!==R?R:this.requestAsyncId(J,this.id,b),this}requestAsyncId(g,b,R=0){return a.setInterval(g.flush.bind(g,this),R)}recycleAsyncId(g,b,R=0){if(null!=R&&this.delay===R&&!1===this.pending)return b;null!=b&&a.clearInterval(b)}execute(g,b){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const R=this._execute(g,b);if(R)return R;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(g,b){let Y,R=!1;try{this.work(g)}catch(J){R=!0,Y=J||new Error("Scheduled action threw falsy error")}if(R)return this.unsubscribe(),Y}unsubscribe(){if(!this.closed){const{id:g,scheduler:b}=this,{actions:R}=b;this.work=this.state=this.scheduler=null,this.pending=!1,(0,h.k)(R,this),null!=g&&(this.id=this.recycleAsyncId(b,g,null)),this.delay=null,super.unsubscribe()}}}},9816:(lt,me,d)=>{"use strict";d.d(me,{k:()=>a});var i=d(5960);class s{constructor(l,f=s.now){this.schedulerActionCtor=l,this.now=f}schedule(l,f=0,g){return new this.schedulerActionCtor(this,l).schedule(g,f)}}s.now=i.K.now;class a extends s{constructor(l,f=s.now){super(l,f),this.actions=[],this._active=!1}flush(l){const{actions:f}=this;if(this._active)return void f.push(l);let g;this._active=!0;do{if(g=l.execute(l.state,l.delay))break}while(l=f.shift());if(this._active=!1,g){for(;l=f.shift();)l.unsubscribe();throw g}}}},4096:(lt,me,d)=>{"use strict";d.d(me,{A:()=>g});var i=d(1364),s=d(6928);const a={schedule(R){let Y=requestAnimationFrame,J=cancelAnimationFrame;const{delegate:ie}=a;ie&&(Y=ie.requestAnimationFrame,J=ie.cancelAnimationFrame);const ae=Y(Ie=>{J=void 0,R(Ie)});return new s.wH(()=>J?.(ae))},requestAnimationFrame(...R){const{delegate:Y}=a;return(Y?.requestAnimationFrame||requestAnimationFrame)(...R)},cancelAnimationFrame(...R){const{delegate:Y}=a;return(Y?.cancelAnimationFrame||cancelAnimationFrame)(...R)},delegate:void 0};var l=d(9816);const g=new class f extends l.k{flush(Y){this._active=!0;const J=this._scheduled;this._scheduled=void 0;const{actions:ie}=this;let ae;Y=Y||ie.shift();do{if(ae=Y.execute(Y.state,Y.delay))break}while((Y=ie[0])&&Y.id===J&&ie.shift());if(this._active=!1,ae){for(;(Y=ie[0])&&Y.id===J&&ie.shift();)Y.unsubscribe();throw ae}}}(class h extends i.m{constructor(Y,J){super(Y,J),this.scheduler=Y,this.work=J}requestAsyncId(Y,J,ie=0){return null!==ie&&ie>0?super.requestAsyncId(Y,J,ie):(Y.actions.push(this),Y._scheduled||(Y._scheduled=a.requestAnimationFrame(()=>Y.flush(void 0))))}recycleAsyncId(Y,J,ie=0){var ae;if(null!=ie?ie>0:this.delay>0)return super.recycleAsyncId(Y,J,ie);const{actions:Ie}=Y;null!=J&&(null===(ae=Ie[Ie.length-1])||void 0===ae?void 0:ae.id)!==J&&(a.cancelAnimationFrame(J),Y._scheduled=void 0)}})},1472:(lt,me,d)=>{"use strict";d.d(me,{u:()=>Ie});var i=d(1364);let a,s=1;const h={};function l(Ge){return Ge in h&&(delete h[Ge],!0)}const f={setImmediate(Ge){const tt=s++;return h[tt]=!0,a||(a=Promise.resolve()),a.then(()=>l(tt)&&Ge()),tt},clearImmediate(Ge){l(Ge)}},{setImmediate:b,clearImmediate:R}=f,Y={setImmediate(...Ge){const{delegate:tt}=Y;return(tt?.setImmediate||b)(...Ge)},clearImmediate(Ge){const{delegate:tt}=Y;return(tt?.clearImmediate||R)(Ge)},delegate:void 0};var ie=d(9816);const Ie=new class ae extends ie.k{flush(tt){this._active=!0;const gt=this._scheduled;this._scheduled=void 0;const{actions:Bt}=this;let kt;tt=tt||Bt.shift();do{if(kt=tt.execute(tt.state,tt.delay))break}while((tt=Bt[0])&&tt.id===gt&&Bt.shift());if(this._active=!1,kt){for(;(tt=Bt[0])&&tt.id===gt&&Bt.shift();)tt.unsubscribe();throw kt}}}(class J extends i.m{constructor(tt,gt){super(tt,gt),this.scheduler=tt,this.work=gt}requestAsyncId(tt,gt,Bt=0){return null!==Bt&&Bt>0?super.requestAsyncId(tt,gt,Bt):(tt.actions.push(this),tt._scheduled||(tt._scheduled=Y.setImmediate(tt.flush.bind(tt,void 0))))}recycleAsyncId(tt,gt,Bt=0){var kt;if(null!=Bt?Bt>0:this.delay>0)return super.recycleAsyncId(tt,gt,Bt);const{actions:Ye}=tt;null!=gt&&(null===(kt=Ye[Ye.length-1])||void 0===kt?void 0:kt.id)!==gt&&(Y.clearImmediate(gt),tt._scheduled===gt&&(tt._scheduled=void 0))}})},112:(lt,me,d)=>{"use strict";d.d(me,{M:()=>a,a:()=>h});var i=d(1364);const a=new(d(9816).k)(i.m),h=a},5960:(lt,me,d)=>{"use strict";d.d(me,{K:()=>i});const i={now:()=>(i.delegate||Date).now(),delegate:void 0}},3376:(lt,me,d)=>{"use strict";d.d(me,{u:()=>i});const i={setTimeout(s,a,...h){const{delegate:l}=i;return l?.setTimeout?l.setTimeout(s,a,...h):setTimeout(s,a,...h)},clearTimeout(s){const{delegate:a}=i;return(a?.clearTimeout||clearTimeout)(s)},delegate:void 0}},3835:(lt,me,d)=>{"use strict";d.d(me,{w:()=>s});const s=function i(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},472:(lt,me,d)=>{"use strict";d.d(me,{a:()=>i});const i="function"==typeof Symbol&&Symbol.observable||"@@observable"},6624:(lt,me,d)=>{"use strict";d.d(me,{_8:()=>f,e_:()=>l,yu:()=>h});var i=d(8880),s=d(3048);function a(g){return g[g.length-1]}function h(g){return(0,i.m)(a(g))?g.pop():void 0}function l(g){return(0,s.G)(a(g))?g.pop():void 0}function f(g,b){return"number"==typeof a(g)?g.pop():b}},4300:(lt,me,d)=>{"use strict";d.d(me,{Q:()=>l});const{isArray:i}=Array,{getPrototypeOf:s,prototype:a,keys:h}=Object;function l(g){if(1===g.length){const b=g[0];if(i(b))return{args:b,keys:null};if(function f(g){return g&&"object"==typeof g&&s(g)===a}(b)){const R=h(b);return{args:R.map(Y=>b[Y]),keys:R}}}return{args:g,keys:null}}},1248:(lt,me,d)=>{"use strict";function i(s,a){if(s){const h=s.indexOf(a);0<=h&&s.splice(h,1)}}d.d(me,{k:()=>i})},4912:(lt,me,d)=>{"use strict";function i(s){const h=s(l=>{Error.call(l),l.stack=(new Error).stack});return h.prototype=Object.create(Error.prototype),h.prototype.constructor=h,h}d.d(me,{w:()=>i})},7904:(lt,me,d)=>{"use strict";function i(s,a){return s.reduce((h,l,f)=>(h[l]=a[f],h),{})}d.d(me,{q:()=>i})},2075:(lt,me,d)=>{"use strict";d.d(me,{c:()=>a,q:()=>h});var i=d(4491);let s=null;function a(l){if(i.config.useDeprecatedSynchronousErrorHandling){const f=!s;if(f&&(s={errorThrown:!1,error:null}),l(),f){const{errorThrown:g,error:b}=s;if(s=null,g)throw b}}else l()}function h(l){i.config.useDeprecatedSynchronousErrorHandling&&s&&(s.errorThrown=!0,s.error=l)}},9399:(lt,me,d)=>{"use strict";function i(s,a,h,l=0,f=!1){const g=a.schedule(function(){h(),f?s.add(this.schedule(null,l)):this.unsubscribe()},l);if(s.add(g),!f)return g}d.d(me,{_:()=>i})},528:(lt,me,d)=>{"use strict";function i(s){return s}d.d(me,{Z:()=>i})},5428:(lt,me,d)=>{"use strict";d.d(me,{G:()=>i});const i=s=>s&&"number"==typeof s.length&&"function"!=typeof s},376:(lt,me,d)=>{"use strict";d.d(me,{E:()=>s});var i=d(8880);function s(a){return Symbol.asyncIterator&&(0,i.m)(a?.[Symbol.asyncIterator])}},8880:(lt,me,d)=>{"use strict";function i(s){return"function"==typeof s}d.d(me,{m:()=>i})},5099:(lt,me,d)=>{"use strict";d.d(me,{O:()=>a});var i=d(472),s=d(8880);function a(h){return(0,s.m)(h[i.a])}},1688:(lt,me,d)=>{"use strict";d.d(me,{i:()=>a});var i=d(3835),s=d(8880);function a(h){return(0,s.m)(h?.[i.w])}},1116:(lt,me,d)=>{"use strict";d.d(me,{X:()=>a});var i=d(3252),s=d(8880);function a(h){return!!h&&(h instanceof i._||(0,s.m)(h.lift)&&(0,s.m)(h.subscribe))}},5432:(lt,me,d)=>{"use strict";d.d(me,{u:()=>s});var i=d(8880);function s(a){return(0,i.m)(a?.then)}},5832:(lt,me,d)=>{"use strict";d.d(me,{K:()=>h,_:()=>a});var i=d(1316),s=d(8880);function a(l){return(0,i.o7)(this,arguments,function*(){const g=l.getReader();try{for(;;){const{value:b,done:R}=yield(0,i.U1)(g.read());if(R)return yield(0,i.U1)(void 0);yield yield(0,i.U1)(b)}}finally{g.releaseLock()}})}function h(l){return(0,s.m)(l?.getReader)}},3048:(lt,me,d)=>{"use strict";d.d(me,{G:()=>s});var i=d(8880);function s(a){return a&&(0,i.m)(a.schedule)}},5448:(lt,me,d)=>{"use strict";d.d(me,{e:()=>s,i:()=>a});var i=d(8880);function s(h){return(0,i.m)(h?.lift)}function a(h){return l=>{if(s(l))return l.lift(function(f){try{return h(f,this)}catch(g){this.error(g)}});throw new TypeError("Unable to lift unknown Observable type")}}},4187:(lt,me,d)=>{"use strict";d.d(me,{j:()=>h});var i=d(4704);const{isArray:s}=Array;function h(l){return(0,i.k)(f=>function a(l,f){return s(f)?l(...f):l(f)}(l,f))}},308:(lt,me,d)=>{"use strict";function i(){}d.d(me,{K:()=>i})},3928:(lt,me,d)=>{"use strict";d.d(me,{W:()=>s,Y:()=>a});var i=d(528);function s(...h){return a(h)}function a(h){return 0===h.length?i.Z:1===h.length?h[0]:function(f){return h.reduce((g,b)=>b(g),f)}}},1984:(lt,me,d)=>{"use strict";d.d(me,{U:()=>a});var i=d(4491),s=d(3376);function a(h){s.u.setTimeout(()=>{const{onUnhandledError:l}=i.config;if(!l)throw h;l(h)})}},8272:(lt,me,d)=>{"use strict";function i(s){return new TypeError(`You provided ${null!==s&&"object"==typeof s?"an invalid object":`'${s}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}d.d(me,{W:()=>i})},2348:(lt,me,d)=>{var i={"./af":5140,"./af.js":5140,"./ar":7276,"./ar-dz":7096,"./ar-dz.js":7096,"./ar-kw":2200,"./ar-kw.js":2200,"./ar-ly":7252,"./ar-ly.js":7252,"./ar-ma":9568,"./ar-ma.js":9568,"./ar-ps":3068,"./ar-ps.js":3068,"./ar-sa":9052,"./ar-sa.js":9052,"./ar-tn":3956,"./ar-tn.js":3956,"./ar.js":7276,"./az":8240,"./az.js":8240,"./be":7796,"./be.js":7796,"./bg":9880,"./bg.js":9880,"./bm":4328,"./bm.js":4328,"./bn":536,"./bn-bd":5104,"./bn-bd.js":5104,"./bn.js":536,"./bo":1108,"./bo.js":1108,"./br":1296,"./br.js":1296,"./bs":2032,"./bs.js":2032,"./ca":96,"./ca.js":96,"./cs":1152,"./cs.js":1152,"./cv":1950,"./cv.js":1950,"./cy":8875,"./cy.js":8875,"./da":5424,"./da.js":5424,"./de":992,"./de-at":2604,"./de-at.js":2604,"./de-ch":9168,"./de-ch.js":9168,"./de.js":992,"./dv":7300,"./dv.js":7300,"./el":4400,"./el.js":4400,"./en-au":3536,"./en-au.js":3536,"./en-ca":1760,"./en-ca.js":1760,"./en-gb":7032,"./en-gb.js":7032,"./en-ie":1832,"./en-ie.js":1832,"./en-il":404,"./en-il.js":404,"./en-in":5716,"./en-in.js":5716,"./en-nz":5312,"./en-nz.js":5312,"./en-sg":3320,"./en-sg.js":3320,"./eo":6392,"./eo.js":6392,"./es":1964,"./es-do":8540,"./es-do.js":8540,"./es-mx":3504,"./es-mx.js":3504,"./es-us":9224,"./es-us.js":9224,"./es.js":1964,"./et":596,"./et.js":596,"./eu":8060,"./eu.js":8060,"./fa":8184,"./fa.js":8184,"./fi":6736,"./fi.js":6736,"./fil":9264,"./fil.js":9264,"./fo":8299,"./fo.js":8299,"./fr":4344,"./fr-ca":4584,"./fr-ca.js":4584,"./fr-ch":8024,"./fr-ch.js":8024,"./fr.js":4344,"./fy":2672,"./fy.js":2672,"./ga":6476,"./ga.js":6476,"./gd":5148,"./gd.js":5148,"./gl":2176,"./gl.js":2176,"./gom-deva":7260,"./gom-deva.js":7260,"./gom-latn":3772,"./gom-latn.js":3772,"./gu":9528,"./gu.js":9528,"./he":6832,"./he.js":6832,"./hi":5592,"./hi.js":5592,"./hr":6208,"./hr.js":6208,"./hu":3697,"./hu.js":3697,"./hy-am":0,"./hy-am.js":0,"./id":7840,"./id.js":7840,"./is":1496,"./is.js":1496,"./it":6336,"./it-ch":5736,"./it-ch.js":5736,"./it.js":6336,"./ja":8008,"./ja.js":8008,"./jv":108,"./jv.js":108,"./ka":1844,"./ka.js":1844,"./kk":8980,"./kk.js":8980,"./km":8544,"./km.js":8544,"./kn":7716,"./kn.js":7716,"./ko":7420,"./ko.js":7420,"./ku":200,"./ku-kmr":4740,"./ku-kmr.js":4740,"./ku.js":200,"./ky":4976,"./ky.js":4976,"./lb":4652,"./lb.js":4652,"./lo":3984,"./lo.js":3984,"./lt":8792,"./lt.js":8792,"./lv":6296,"./lv.js":6296,"./me":8256,"./me.js":8256,"./mi":9284,"./mi.js":9284,"./mk":3196,"./mk.js":3196,"./ml":5896,"./ml.js":5896,"./mn":2460,"./mn.js":2460,"./mr":132,"./mr.js":132,"./ms":3136,"./ms-my":440,"./ms-my.js":440,"./ms.js":3136,"./mt":6227,"./mt.js":6227,"./my":8300,"./my.js":8300,"./nb":4784,"./nb.js":4784,"./ne":5060,"./ne.js":5060,"./nl":4971,"./nl-be":4796,"./nl-be.js":4796,"./nl.js":4971,"./nn":8984,"./nn.js":8984,"./oc-lnc":9928,"./oc-lnc.js":9928,"./pa-in":6440,"./pa-in.js":6440,"./pl":6768,"./pl.js":6768,"./pt":8968,"./pt-br":1528,"./pt-br.js":1528,"./pt.js":8968,"./ro":5760,"./ro.js":5760,"./ru":9760,"./ru.js":9760,"./sd":3804,"./sd.js":3804,"./se":4100,"./se.js":4100,"./si":5301,"./si.js":5301,"./sk":9992,"./sk.js":9992,"./sl":5208,"./sl.js":5208,"./sq":7408,"./sq.js":7408,"./sr":656,"./sr-cyrl":1128,"./sr-cyrl.js":1128,"./sr.js":656,"./ss":864,"./ss.js":864,"./sv":6900,"./sv.js":6900,"./sw":1636,"./sw.js":1636,"./ta":4180,"./ta.js":4180,"./te":7008,"./te.js":7008,"./tet":744,"./tet.js":744,"./tg":8084,"./tg.js":8084,"./th":1672,"./th.js":1672,"./tk":7232,"./tk.js":7232,"./tl-ph":9480,"./tl-ph.js":9480,"./tlh":8512,"./tlh.js":8512,"./tr":6020,"./tr.js":6020,"./tzl":6240,"./tzl.js":6240,"./tzm":3064,"./tzm-latn":3384,"./tzm-latn.js":3384,"./tzm.js":3064,"./ug-cn":5852,"./ug-cn.js":5852,"./uk":2480,"./uk.js":2480,"./ur":3877,"./ur.js":3877,"./uz":1712,"./uz-latn":2490,"./uz-latn.js":2490,"./uz.js":1712,"./vi":9984,"./vi.js":9984,"./x-pseudo":5708,"./x-pseudo.js":5708,"./yo":8476,"./yo.js":8476,"./zh-cn":3676,"./zh-cn.js":3676,"./zh-hk":2262,"./zh-hk.js":2262,"./zh-mo":1968,"./zh-mo.js":1968,"./zh-tw":3632,"./zh-tw.js":3632};function s(h){var l=a(h);return d(l)}function a(h){if(!d.o(i,h)){var l=new Error("Cannot find module '"+h+"'");throw l.code="MODULE_NOT_FOUND",l}return i[h]}s.keys=function(){return Object.keys(i)},s.resolve=a,lt.exports=s,s.id=2348},9684:(lt,me,d)=>{"use strict";d.d(me,{AN:()=>s,Cs:()=>h,K2:()=>b,Ql:()=>ie,Wq:()=>ye,aK:()=>Y,aM:()=>Re,gV:()=>a,iC:()=>f,kP:()=>_e,kt:()=>Ie,m0:()=>i,wb:()=>g,xZ:()=>R,yA:()=>l});var i=function(Xe){return Xe[Xe.State=0]="State",Xe[Xe.Transition=1]="Transition",Xe[Xe.Sequence=2]="Sequence",Xe[Xe.Group=3]="Group",Xe[Xe.Animate=4]="Animate",Xe[Xe.Keyframes=5]="Keyframes",Xe[Xe.Style=6]="Style",Xe[Xe.Trigger=7]="Trigger",Xe[Xe.Reference=8]="Reference",Xe[Xe.AnimateChild=9]="AnimateChild",Xe[Xe.AnimateRef=10]="AnimateRef",Xe[Xe.Query=11]="Query",Xe[Xe.Stagger=12]="Stagger",Xe}(i||{});const s="*";function a(Xe,$e){return{type:i.Trigger,name:Xe,definitions:$e,options:{}}}function h(Xe,$e=null){return{type:i.Animate,styles:$e,timings:Xe}}function l(Xe,$e=null){return{type:i.Group,steps:Xe,options:$e}}function f(Xe,$e=null){return{type:i.Sequence,steps:Xe,options:$e}}function g(Xe){return{type:i.Style,styles:Xe,offset:null}}function b(Xe,$e,oe){return{type:i.State,name:Xe,styles:$e,options:oe}}function R(Xe){return{type:i.Keyframes,steps:Xe}}function Y(Xe,$e,oe=null){return{type:i.Transition,expr:Xe,animation:$e,options:oe}}function ie(Xe=null){return{type:i.AnimateChild,options:Xe}}function Ie(Xe,$e,oe=null){return{type:i.Query,selector:Xe,animation:$e,options:oe}}class _e{constructor($e=0,oe=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=$e+oe}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach($e=>$e()),this._onDoneFns=[])}onStart($e){this._originalOnStartFns.push($e),this._onStartFns.push($e)}onDone($e){this._originalOnDoneFns.push($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(){queueMicrotask(()=>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(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition($e){this._position=this.totalTime?$e*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback($e){const oe="start"==$e?this._onStartFns:this._onDoneFns;oe.forEach(ut=>ut()),oe.length=0}}class ye{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 oe=0,ut=0,st=0;const $t=this.players.length;0==$t?queueMicrotask(()=>this._onFinish()):this.players.forEach(oi=>{oi.onDone(()=>{++oe==$t&&this._onFinish()}),oi.onDestroy(()=>{++ut==$t&&this._onDestroy()}),oi.onStart(()=>{++st==$t&&this._onStart()})}),this.totalTime=this.players.reduce((oi,Jt)=>Math.max(oi,Jt.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 oe=$e*this.totalTime;this.players.forEach(ut=>{const st=ut.totalTime?Math.min(1,oe/ut.totalTime):1;ut.setPosition(st)})}getPosition(){const $e=this.players.reduce((oe,ut)=>null===oe||ut.totalTime>oe.totalTime?ut:oe,null);return null!=$e?$e.getPosition():0}beforeDestroy(){this.players.forEach($e=>{$e.beforeDestroy&&$e.beforeDestroy()})}triggerCallback($e){const oe="start"==$e?this._onStartFns:this._onDoneFns;oe.forEach(ut=>ut()),oe.length=0}}const Re="!"},4723:(lt,me,d)=>{"use strict";d.d(me,{AZ:()=>Ye,Cs:()=>et,Eh:()=>Tt,G:()=>Fe,G3:()=>Mi,IH:()=>oi,Kk:()=>Mt,MM:()=>ri,OE:()=>vi,Si:()=>fe,Ux:()=>V,mE:()=>Pe,mJ:()=>$t,o9:()=>$e,q0:()=>wt});var i=d(1368),s=d(2116),a=d(5792),h=d(5657),l=d(6928),f=d(6700),g=d(2700),b=d(7800),R=d(9212),Y=d(4680),J=d(6684),ie=d(4704),ae=d(3992),Ie=d(2644),Ee=d(4e3),Ge=d(3616),tt=d(7712),gt=d(6640),Bt=d(1216);const kt=" ";function Ye(Ce,_,w){const S=Q(Ce,_);S.some($=>$.trim()==w.trim())||(S.push(w.trim()),Ce.setAttribute(_,S.join(kt)))}function et(Ce,_,w){const $=Q(Ce,_).filter(ze=>ze!=w.trim());$.length?Ce.setAttribute(_,$.join(kt)):Ce.removeAttribute(_)}function Q(Ce,_){return(Ce.getAttribute(_)||"").match(/\S+/g)||[]}const ye="cdk-describedby-message",Re="cdk-describedby-host";let Xe=0,$e=(()=>{class Ce{constructor(w,S){this._platform=S,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+Xe++,this._document=w,this._id=(0,s.uUt)(s.QHP)+"-"+Xe++}describe(w,S,$){if(!this._canBeDescribed(w,S))return;const ze=oe(S,$);"string"!=typeof S?(ut(S,this._id),this._messageRegistry.set(ze,{messageElement:S,referenceCount:0})):this._messageRegistry.has(ze)||this._createMessageElement(S,$),this._isElementDescribedByMessage(w,ze)||this._addMessageReference(w,ze)}removeDescription(w,S,$){if(!S||!this._isElementNode(w))return;const ze=oe(S,$);if(this._isElementDescribedByMessage(w,ze)&&this._removeMessageReference(w,ze),"string"==typeof S){const At=this._messageRegistry.get(ze);At&&0===At.referenceCount&&this._deleteMessageElement(ze)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const w=this._document.querySelectorAll(`[${Re}="${this._id}"]`);for(let S=0;S0!=$.indexOf(ye));w.setAttribute("aria-describedby",S.join(" "))}_addMessageReference(w,S){const $=this._messageRegistry.get(S);Ye(w,"aria-describedby",$.messageElement.id),w.setAttribute(Re,this._id),$.referenceCount++}_removeMessageReference(w,S){const $=this._messageRegistry.get(S);$.referenceCount--,et(w,"aria-describedby",$.messageElement.id),w.removeAttribute(Re)}_isElementDescribedByMessage(w,S){const $=Q(w,"aria-describedby"),ze=this._messageRegistry.get(S),At=ze&&ze.messageElement.id;return!!At&&-1!=$.indexOf(At)}_canBeDescribed(w,S){if(!this._isElementNode(w))return!1;if(S&&"object"==typeof S)return!0;const $=null==S?"":`${S}`.trim(),ze=w.getAttribute("aria-label");return!(!$||ze&&ze.trim()===$)}_isElementNode(w){return w.nodeType===this._document.ELEMENT_NODE}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.CoB(i.Ud),s.CoB(a.WU))};static#t=this.\u0275prov=s.wxM({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})();function oe(Ce,_){return"string"==typeof Ce?`${_||""}/${Ce}`:Ce}function ut(Ce,_){Ce.id||(Ce.id=`${ye}-${_}-${Xe++}`)}class st{constructor(_){this._items=_,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new h.E,this._typeaheadSubscription=l.wH.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._pageUpAndDown={enabled:!1,delta:10},this._skipPredicateFn=w=>w.disabled,this._pressedLetters=[],this.tabOut=new h.E,this.change=new h.E,_ instanceof s.VhX&&(this._itemChangesSubscription=_.changes.subscribe(w=>{if(this._activeItem){const $=w.toArray().indexOf(this._activeItem);$>-1&&$!==this._activeItemIndex&&(this._activeItemIndex=$)}}))}skipPredicate(_){return this._skipPredicateFn=_,this}withWrap(_=!0){return this._wrap=_,this}withVerticalOrientation(_=!0){return this._vertical=_,this}withHorizontalOrientation(_){return this._horizontal=_,this}withAllowedModifierKeys(_){return this._allowedModifierKeys=_,this}withTypeAhead(_=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,R.y)(w=>this._pressedLetters.push(w)),(0,Y.o)(_),(0,J.I)(()=>this._pressedLetters.length>0),(0,ie.k)(()=>this._pressedLetters.join(""))).subscribe(w=>{const S=this._getItemsArray();for(let $=1;$!_[ze]||this._allowedModifierKeys.indexOf(ze)>-1);switch(w){case b.k0:return void this.tabOut.next();case b.Oq:if(this._vertical&&$){this.setNextItemActive();break}return;case b.qI:if(this._vertical&&$){this.setPreviousItemActive();break}return;case b.a4:if(this._horizontal&&$){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case b.Mx:if(this._horizontal&&$){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case b.qU:if(this._homeAndEnd&&$){this.setFirstItemActive();break}return;case b.Mp:if(this._homeAndEnd&&$){this.setLastItemActive();break}return;case b.u_:if(this._pageUpAndDown.enabled&&$){const ze=this._activeItemIndex-this._pageUpAndDown.delta;this._setActiveItemByIndex(ze>0?ze:0,1);break}return;case b.yI:if(this._pageUpAndDown.enabled&&$){const ze=this._activeItemIndex+this._pageUpAndDown.delta,At=this._getItemsArray().length;this._setActiveItemByIndex(ze=b.A&&w<=b.Z||w>=b._I&&w<=b.SQ)&&this._letterKeyStream.next(String.fromCharCode(w))))}this._pressedLetters=[],_.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(_){const w=this._getItemsArray(),S="number"==typeof _?_:w.indexOf(_);this._activeItem=w[S]??null,this._activeItemIndex=S}destroy(){this._typeaheadSubscription.unsubscribe(),this._itemChangesSubscription?.unsubscribe(),this._letterKeyStream.complete(),this.tabOut.complete(),this.change.complete(),this._pressedLetters=[]}_setActiveItemByDelta(_){this._wrap?this._setActiveInWrapMode(_):this._setActiveInDefaultMode(_)}_setActiveInWrapMode(_){const w=this._getItemsArray();for(let S=1;S<=w.length;S++){const $=(this._activeItemIndex+_*S+w.length)%w.length;if(!this._skipPredicateFn(w[$]))return void this.setActiveItem($)}}_setActiveInDefaultMode(_){this._setActiveItemByIndex(this._activeItemIndex+_,_)}_setActiveItemByIndex(_,w){const S=this._getItemsArray();if(S[_]){for(;this._skipPredicateFn(S[_]);)if(!S[_+=w])return;this.setActiveItem(_)}}_getItemsArray(){return this._items instanceof s.VhX?this._items.toArray():this._items}}class $t extends st{setActiveItem(_){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(_),this.activeItem&&this.activeItem.setActiveStyles()}}class oi extends st{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(_){return this._origin=_,this}setActiveItem(_){super.setActiveItem(_),this.activeItem&&this.activeItem.focus(this._origin)}}let vi=(()=>{class Ce{constructor(w){this._platform=w}isDisabled(w){return w.hasAttribute("disabled")}isVisible(w){return function De(Ce){return!!(Ce.offsetWidth||Ce.offsetHeight||"function"==typeof Ce.getClientRects&&Ce.getClientRects().length)}(w)&&"visible"===getComputedStyle(w).visibility}isTabbable(w){if(!this._platform.isBrowser)return!1;const S=function je(Ce){try{return Ce.frameElement}catch{return null}}(function N(Ce){return Ce.ownerDocument&&Ce.ownerDocument.defaultView||window}(w));if(S&&(-1===be(S)||!this.isVisible(S)))return!1;let $=w.nodeName.toLowerCase(),ze=be(w);return w.hasAttribute("contenteditable")?-1!==ze:!("iframe"===$||"object"===$||this._platform.WEBKIT&&this._platform.IOS&&!function j(Ce){let _=Ce.nodeName.toLowerCase(),w="input"===_&&Ce.type;return"text"===w||"password"===w||"select"===_||"textarea"===_}(w))&&("audio"===$?!!w.hasAttribute("controls")&&-1!==ze:"video"===$?-1!==ze&&(null!==ze||this._platform.FIREFOX||w.hasAttribute("controls")):w.tabIndex>=0)}isFocusable(w,S){return function we(Ce){return!function Ve(Ce){return function ge(Ce){return"input"==Ce.nodeName.toLowerCase()}(Ce)&&"hidden"==Ce.type}(Ce)&&(function Le(Ce){let _=Ce.nodeName.toLowerCase();return"input"===_||"select"===_||"button"===_||"textarea"===_}(Ce)||function te(Ce){return function xt(Ce){return"a"==Ce.nodeName.toLowerCase()}(Ce)&&Ce.hasAttribute("href")}(Ce)||Ce.hasAttribute("contenteditable")||Ne(Ce))}(w)&&!this.isDisabled(w)&&(S?.ignoreVisibility||this.isVisible(w))}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.CoB(a.WU))};static#t=this.\u0275prov=s.wxM({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})();function Ne(Ce){if(!Ce.hasAttribute("tabindex")||void 0===Ce.tabIndex)return!1;let _=Ce.getAttribute("tabindex");return!(!_||isNaN(parseInt(_,10)))}function be(Ce){if(!Ne(Ce))return null;const _=parseInt(Ce.getAttribute("tabindex")||"",10);return isNaN(_)?-1:_}class U{get enabled(){return this._enabled}set enabled(_){this._enabled=_,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(_,this._startAnchor),this._toggleAnchorTabIndex(_,this._endAnchor))}constructor(_,w,S,$,ze=!1){this._element=_,this._checker=w,this._ngZone=S,this._document=$,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,ze||this.attachAnchors()}destroy(){const _=this._startAnchor,w=this._endAnchor;_&&(_.removeEventListener("focus",this.startAnchorListener),_.remove()),w&&(w.removeEventListener("focus",this.endAnchorListener),w.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}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(w=>{this._executeOnStable(()=>w(this.focusInitialElement(_)))})}focusFirstTabbableElementWhenReady(_){return new Promise(w=>{this._executeOnStable(()=>w(this.focusFirstTabbableElement(_)))})}focusLastTabbableElementWhenReady(_){return new Promise(w=>{this._executeOnStable(()=>w(this.focusLastTabbableElement(_)))})}_getRegionBoundary(_){const w=this._element.querySelectorAll(`[cdk-focus-region-${_}], [cdkFocusRegion${_}], [cdk-focus-${_}]`);return"start"==_?w.length?w[0]:this._getFirstTabbableElement(this._element):w.length?w[w.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(_){const w=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(w){if(!this._checker.isFocusable(w)){const S=this._getFirstTabbableElement(w);return S?.focus(_),!!S}return w.focus(_),!0}return this.focusFirstTabbableElement(_)}focusFirstTabbableElement(_){const w=this._getRegionBoundary("start");return w&&w.focus(_),!!w}focusLastTabbableElement(_){const w=this._getRegionBoundary("end");return w&&w.focus(_),!!w}hasAttached(){return this._hasAttached}_getFirstTabbableElement(_){if(this._checker.isFocusable(_)&&this._checker.isTabbable(_))return _;const w=_.children;for(let S=0;S=0;S--){const $=w[S].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(w[S]):null;if($)return $}return null}_createAnchor(){const _=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,_),_.classList.add("cdk-visually-hidden"),_.classList.add("cdk-focus-trap-anchor"),_.setAttribute("aria-hidden","true"),_}_toggleAnchorTabIndex(_,w){_?w.setAttribute("tabindex","0"):w.removeAttribute("tabindex")}toggleAnchors(_){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(_,this._startAnchor),this._toggleAnchorTabIndex(_,this._endAnchor))}_executeOnStable(_){this._ngZone.isStable?_():this._ngZone.onStable.pipe((0,ae.U)(1)).subscribe(_)}}let Fe=(()=>{class Ce{constructor(w,S,$){this._checker=w,this._ngZone=S,this._document=$}create(w,S=!1){return new U(w,this._checker,this._ngZone,this._document,S)}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.CoB(vi),s.CoB(s.WW2),s.CoB(i.Ud))};static#t=this.\u0275prov=s.wxM({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})(),Tt=(()=>{class Ce{get enabled(){return this.focusTrap.enabled}set enabled(w){this.focusTrap.enabled=(0,tt.W6)(w)}get autoCapture(){return this._autoCapture}set autoCapture(w){this._autoCapture=(0,tt.W6)(w)}constructor(w,S,$){this._elementRef=w,this._focusTrapFactory=S,this._previouslyFocusedElement=null,this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0)}ngOnDestroy(){this.focusTrap.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap.hasAttached()||this.focusTrap.attachAnchors()}ngOnChanges(w){const S=w.autoCapture;S&&!S.firstChange&&this.autoCapture&&this.focusTrap.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,a.Yx)(),this.focusTrap.focusInitialElementWhenReady()}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.GI1(s.GMv),s.GI1(Fe),s.GI1(i.Ud))};static#t=this.\u0275dir=s.Sc5({type:Ce,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[s.Wk5.None,"cdkTrapFocus","enabled"],autoCapture:[s.Wk5.None,"cdkTrapFocusAutoCapture","autoCapture"]},exportAs:["cdkTrapFocus"],features:[s.SYr]})}return Ce})();function Mi(Ce){return 0===Ce.buttons||0===Ce.detail}function wt(Ce){const _=Ce.touches&&Ce.touches[0]||Ce.changedTouches&&Ce.changedTouches[0];return!(!_||-1!==_.identifier||null!=_.radiusX&&1!==_.radiusX||null!=_.radiusY&&1!==_.radiusY)}const zt=new s.UbH("cdk-input-modality-detector-options"),Dt={ignoreKeys:[b.A$,b.s9,b.GW,b._Y,b._u]},Te=(0,a.W4)({passive:!0,capture:!0});let at=(()=>{class Ce{get mostRecentModality(){return this._modality.value}constructor(w,S,$,ze){this._platform=w,this._mostRecentTarget=null,this._modality=new f.g(null),this._lastTouchMs=0,this._onKeydown=At=>{this._options?.ignoreKeys?.some(bt=>bt===At.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,a.oZ)(At))},this._onMousedown=At=>{Date.now()-this._lastTouchMs<650||(this._modality.next(Mi(At)?"keyboard":"mouse"),this._mostRecentTarget=(0,a.oZ)(At))},this._onTouchstart=At=>{wt(At)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,a.oZ)(At))},this._options={...Dt,...ze},this.modalityDetected=this._modality.pipe((0,Ie.s)(1)),this.modalityChanged=this.modalityDetected.pipe((0,Ee.a)()),w.isBrowser&&S.runOutsideAngular(()=>{$.addEventListener("keydown",this._onKeydown,Te),$.addEventListener("mousedown",this._onMousedown,Te),$.addEventListener("touchstart",this._onTouchstart,Te)})}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,Te),document.removeEventListener("mousedown",this._onMousedown,Te),document.removeEventListener("touchstart",this._onTouchstart,Te))}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.CoB(a.WU),s.CoB(s.WW2),s.CoB(i.Ud),s.CoB(zt,8))};static#t=this.\u0275prov=s.wxM({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})();const Ze=new s.UbH("liveAnnouncerElement",{providedIn:"root",factory:function pt(){return null}}),le=new s.UbH("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let xe=0,Pe=(()=>{class Ce{constructor(w,S,$,ze){this._ngZone=S,this._defaultOptions=ze,this._document=$,this._liveElement=w||this._createLiveElement()}announce(w,...S){const $=this._defaultOptions;let ze,At;return 1===S.length&&"number"==typeof S[0]?At=S[0]:[ze,At]=S,this.clear(),clearTimeout(this._previousTimeout),ze||(ze=$&&$.politeness?$.politeness:"polite"),null==At&&$&&(At=$.duration),this._liveElement.setAttribute("aria-live",ze),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(bt=>this._currentResolve=bt)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=w,"number"==typeof At&&(this._previousTimeout=setTimeout(()=>this.clear(),At)),this._currentResolve(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const w="cdk-live-announcer-element",S=this._document.getElementsByClassName(w),$=this._document.createElement("div");for(let ze=0;ze .cdk-overlay-container [aria-modal="true"]');for(let $=0;${class Ce{constructor(w,S,$,ze,At){this._ngZone=w,this._platform=S,this._inputModalityDetector=$,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new h.E,this._rootNodeFocusAndBlurListener=bt=>{for(let Ue=(0,a.oZ)(bt);Ue;Ue=Ue.parentElement)"focus"===bt.type?this._onFocus(bt,Ue):this._onBlur(bt,Ue)},this._document=ze,this._detectionMode=At?.detectionMode||0}monitor(w,S=!1){const $=(0,tt.mk)(w);if(!this._platform.isBrowser||1!==$.nodeType)return(0,g.of)();const ze=(0,a.C8)($)||this._getDocument(),At=this._elementInfo.get($);if(At)return S&&(At.checkChildren=!0),At.subject;const bt={checkChildren:S,subject:new h.E,rootNode:ze};return this._elementInfo.set($,bt),this._registerGlobalListeners(bt),bt.subject}stopMonitoring(w){const S=(0,tt.mk)(w),$=this._elementInfo.get(S);$&&($.subject.complete(),this._setClasses(S),this._elementInfo.delete(S),this._removeGlobalListeners($))}focusVia(w,S,$){const ze=(0,tt.mk)(w);ze===this._getDocument().activeElement?this._getClosestElementsInfo(ze).forEach(([bt,yt])=>this._originChanged(bt,S,yt)):(this._setOrigin(S),"function"==typeof ze.focus&&ze.focus($))}ngOnDestroy(){this._elementInfo.forEach((w,S)=>this.stopMonitoring(S))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(w){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(w)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:w&&this._isLastInteractionFromInputLabel(w)?"mouse":"program"}_shouldBeAttributedToTouch(w){return 1===this._detectionMode||!!w?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(w,S){w.classList.toggle("cdk-focused",!!S),w.classList.toggle("cdk-touch-focused","touch"===S),w.classList.toggle("cdk-keyboard-focused","keyboard"===S),w.classList.toggle("cdk-mouse-focused","mouse"===S),w.classList.toggle("cdk-program-focused","program"===S)}_setOrigin(w,S=!1){this._ngZone.runOutsideAngular(()=>{this._origin=w,this._originFromTouchInteraction="touch"===w&&S,0===this._detectionMode&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(w,S){const $=this._elementInfo.get(S),ze=(0,a.oZ)(w);!$||!$.checkChildren&&S!==ze||this._originChanged(S,this._getFocusOrigin(ze),$)}_onBlur(w,S){const $=this._elementInfo.get(S);!$||$.checkChildren&&w.relatedTarget instanceof Node&&S.contains(w.relatedTarget)||(this._setClasses(S),this._emitOrigin($,null))}_emitOrigin(w,S){w.subject.observers.length&&this._ngZone.run(()=>w.subject.next(S))}_registerGlobalListeners(w){if(!this._platform.isBrowser)return;const S=w.rootNode,$=this._rootNodeFocusListenerCount.get(S)||0;$||this._ngZone.runOutsideAngular(()=>{S.addEventListener("focus",this._rootNodeFocusAndBlurListener,vt),S.addEventListener("blur",this._rootNodeFocusAndBlurListener,vt)}),this._rootNodeFocusListenerCount.set(S,$+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,Ge.a)(this._stopInputModalityDetector)).subscribe(ze=>{this._setOrigin(ze,!0)}))}_removeGlobalListeners(w){const S=w.rootNode;if(this._rootNodeFocusListenerCount.has(S)){const $=this._rootNodeFocusListenerCount.get(S);$>1?this._rootNodeFocusListenerCount.set(S,$-1):(S.removeEventListener("focus",this._rootNodeFocusAndBlurListener,vt),S.removeEventListener("blur",this._rootNodeFocusAndBlurListener,vt),this._rootNodeFocusListenerCount.delete(S))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(w,S,$){this._setClasses(w,S),this._emitOrigin($,S),this._lastFocusOrigin=S}_getClosestElementsInfo(w){const S=[];return this._elementInfo.forEach(($,ze)=>{(ze===w||$.checkChildren&&ze.contains(w))&&S.push([ze,$])}),S}_isLastInteractionFromInputLabel(w){const{_mostRecentTarget:S,mostRecentModality:$}=this._inputModalityDetector;if("mouse"!==$||!S||S===w||"INPUT"!==w.nodeName&&"TEXTAREA"!==w.nodeName||w.disabled)return!1;const ze=w.labels;if(ze)for(let At=0;At{class Ce{constructor(w,S){this._elementRef=w,this._focusMonitor=S,this._focusOrigin=null,this.cdkFocusChange=new s._w7}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const w=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(w,1===w.nodeType&&w.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(S=>{this._focusOrigin=S,this.cdkFocusChange.emit(S)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.GI1(s.GMv),s.GI1(Mt))};static#t=this.\u0275dir=s.Sc5({type:Ce,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"]})}return Ce})();const it="cdk-high-contrast-black-on-white",Et="cdk-high-contrast-white-on-black",ct="cdk-high-contrast-active";let ri=(()=>{class Ce{constructor(w,S){this._platform=w,this._document=S,this._breakpointSubscription=(0,s.uUt)(Bt.w$).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const w=this._document.createElement("div");w.style.backgroundColor="rgb(1,2,3)",w.style.position="absolute",this._document.body.appendChild(w);const S=this._document.defaultView||window,$=S&&S.getComputedStyle?S.getComputedStyle(w):null,ze=($&&$.backgroundColor||"").replace(/ /g,"");switch(w.remove(),ze){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return 2;case"rgb(255,255,255)":case"rgb(255,250,239)":return 1}return 0}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const w=this._document.body.classList;w.remove(ct,it,Et),this._hasCheckedHighContrastMode=!0;const S=this.getHighContrastMode();1===S?w.add(ct,it):2===S&&w.add(ct,Et)}}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.CoB(a.WU),s.CoB(i.Ud))};static#t=this.\u0275prov=s.wxM({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})(),V=(()=>{class Ce{constructor(w){w._applyBodyHighContrastModeCssClasses()}static#e=this.\u0275fac=function(S){return new(S||Ce)(s.CoB(ri))};static#t=this.\u0275mod=s.a4G({type:Ce});static#i=this.\u0275inj=s.s3X({imports:[gt.IT]})}return Ce})()},1900:(lt,me,d)=>{"use strict";d.d(me,{gN:()=>R,yG:()=>g});var i=d(2116),s=d(1368);const a=new i.UbH("cdk-dir-doc",{providedIn:"root",factory:function h(){return(0,i.uUt)(s.Ud)}}),l=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let g=(()=>{class Y{constructor(ie){this.value="ltr",this.change=new i._w7,ie&&(this.value=function f(Y){const J=Y?.toLowerCase()||"";return"auto"===J&&typeof navigator<"u"&&navigator?.language?l.test(navigator.language)?"rtl":"ltr":"rtl"===J?"rtl":"ltr"}((ie.body?ie.body.dir:null)||(ie.documentElement?ie.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static#e=this.\u0275fac=function(ae){return new(ae||Y)(i.CoB(a,8))};static#t=this.\u0275prov=i.wxM({token:Y,factory:Y.\u0275fac,providedIn:"root"})}return Y})(),R=(()=>{class Y{static#e=this.\u0275fac=function(ae){return new(ae||Y)};static#t=this.\u0275mod=i.a4G({type:Y});static#i=this.\u0275inj=i.s3X({})}return Y})()},7712:(lt,me,d)=>{"use strict";d.d(me,{Mt:()=>l,W6:()=>s,_s:()=>b,mk:()=>g,ph:()=>f,s3:()=>h,wZ:()=>a});var i=d(2116);function s(R){return null!=R&&"false"!=`${R}`}function a(R,Y=0){return h(R)?Number(R):Y}function h(R){return!isNaN(parseFloat(R))&&!isNaN(Number(R))}function l(R){return Array.isArray(R)?R:[R]}function f(R){return null==R?"":"string"==typeof R?R:`${R}px`}function g(R){return R instanceof i.GMv?R.nativeElement:R}function b(R,Y=/\s+/){const J=[];if(null!=R){const ie=Array.isArray(R)?R:`${R}`.split(Y);for(const ae of ie){const Ie=`${ae}`.trim();Ie&&J.push(Ie)}}return J}},1032:(lt,me,d)=>{"use strict";d.d(me,{Cc:()=>f,Yx:()=>Y,cz:()=>g,e2:()=>J,eo:()=>R,ys:()=>Ie});var i=d(2376),h=(d(1116),d(2700),d(5657)),l=d(2116);class f{}function g(Ee){return Ee&&"function"==typeof Ee.connect&&!(Ee instanceof i.C)}class R{applyChanges(Ge,tt,gt,Bt,kt){Ge.forEachOperation((Ye,et,Q)=>{let _e,ye;if(null==Ye.previousIndex){const Re=gt(Ye,et,Q);_e=tt.createEmbeddedView(Re.templateRef,Re.context,Re.index),ye=1}else null==Q?(tt.remove(et),ye=3):(_e=tt.get(et),tt.move(_e,Q),ye=2);kt&&kt({context:_e?.context,operation:ye,record:Ye})})}detach(){}}class Y{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(Ge,tt,gt,Bt,kt){Ge.forEachOperation((Ye,et,Q)=>{let _e,ye;null==Ye.previousIndex?(_e=this._insertView(()=>gt(Ye,et,Q),Q,tt,Bt(Ye)),ye=_e?1:0):null==Q?(this._detachAndCacheView(et,tt),ye=3):(_e=this._moveView(et,Q,tt,Bt(Ye)),ye=2),kt&&kt({context:_e?.context,operation:ye,record:Ye})})}detach(){for(const Ge of this._viewCache)Ge.destroy();this._viewCache=[]}_insertView(Ge,tt,gt,Bt){const kt=this._insertViewFromCache(tt,gt);if(kt)return void(kt.context.$implicit=Bt);const Ye=Ge();return gt.createEmbeddedView(Ye.templateRef,Ye.context,Ye.index)}_detachAndCacheView(Ge,tt){const gt=tt.detach(Ge);this._maybeCacheView(gt,tt)}_moveView(Ge,tt,gt,Bt){const kt=gt.get(Ge);return gt.move(kt,tt),kt.context.$implicit=Bt,kt}_maybeCacheView(Ge,tt){if(this._viewCache.lengththis._markSelected(kt)):this._markSelected(tt[0]),this._selectedToEmit.length=0)}select(...Ge){this._verifyValueAssignment(Ge),Ge.forEach(gt=>this._markSelected(gt));const tt=this._hasQueuedChanges();return this._emitChangeEvent(),tt}deselect(...Ge){this._verifyValueAssignment(Ge),Ge.forEach(gt=>this._unmarkSelected(gt));const tt=this._hasQueuedChanges();return this._emitChangeEvent(),tt}setSelection(...Ge){this._verifyValueAssignment(Ge);const tt=this.selected,gt=new Set(Ge);Ge.forEach(kt=>this._markSelected(kt)),tt.filter(kt=>!gt.has(kt)).forEach(kt=>this._unmarkSelected(kt));const Bt=this._hasQueuedChanges();return this._emitChangeEvent(),Bt}toggle(Ge){return this.isSelected(Ge)?this.deselect(Ge):this.select(Ge)}clear(Ge=!0){this._unmarkAll();const tt=this._hasQueuedChanges();return Ge&&this._emitChangeEvent(),tt}isSelected(Ge){return this._selection.has(this._getConcreteValue(Ge))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(Ge){this._multiple&&this.selected&&this._selected.sort(Ge)}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(Ge){Ge=this._getConcreteValue(Ge),this.isSelected(Ge)||(this._multiple||this._unmarkAll(),this.isSelected(Ge)||this._selection.add(Ge),this._emitChanges&&this._selectedToEmit.push(Ge))}_unmarkSelected(Ge){Ge=this._getConcreteValue(Ge),this.isSelected(Ge)&&(this._selection.delete(Ge),this._emitChanges&&this._deselectedToEmit.push(Ge))}_unmarkAll(){this.isEmpty()||this._selection.forEach(Ge=>this._unmarkSelected(Ge))}_verifyValueAssignment(Ge){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(Ge){if(this.compareWith){for(let tt of this._selection)if(this.compareWith(Ge,tt))return tt;return Ge}return Ge}}const Ie=new l.UbH("_ViewRepeater")},7800:(lt,me,d)=>{"use strict";d.d(me,{A:()=>Ve,A$:()=>b,G0:()=>_e,GW:()=>se,Gi:()=>ie,Mp:()=>Ee,Mx:()=>tt,Oq:()=>kt,SQ:()=>Jt,UX:()=>J,Yp:()=>K,Z:()=>pt,_I:()=>ye,_Y:()=>le,_u:()=>f,a4:()=>Bt,k0:()=>a,qI:()=>gt,qU:()=>Ge,s9:()=>g,u_:()=>ae,wJ:()=>l,yI:()=>Ie,y_:()=>s});const s=8,a=9,l=13,f=16,g=17,b=18,J=27,ie=32,ae=33,Ie=34,Ee=35,Ge=36,tt=37,gt=38,Bt=39,kt=40,_e=46,ye=48,Jt=57,Ve=65,pt=90,le=91,se=224;function K(Be,...Yt){return Yt.length?Yt.some(wi=>Be[wi]):Be.altKey||Be.shiftKey||Be.ctrlKey||Be.metaKey}},1216:(lt,me,d)=>{"use strict";d.d(me,{iG:()=>tt,kP:()=>et,w$:()=>kt});var i=d(2116),s=d(7712),a=d(5657),h=d(6040),l=d(7228),f=d(3252),g=d(3992),b=d(2644),R=d(4680),Y=d(4704),J=d(5568),ie=d(3616),ae=d(5792);const Ee=new Set;let Ge,tt=(()=>{class Q{constructor(ye,Re){this._platform=ye,this._nonce=Re,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):Bt}matchMedia(ye){return(this._platform.WEBKIT||this._platform.BLINK)&&function gt(Q,_e){if(!Ee.has(Q))try{Ge||(Ge=document.createElement("style"),_e&&(Ge.nonce=_e),Ge.setAttribute("type","text/css"),document.head.appendChild(Ge)),Ge.sheet&&(Ge.sheet.insertRule(`@media ${Q} {body{ }}`,0),Ee.add(Q))}catch(ye){console.error(ye)}}(ye,this._nonce),this._matchMedia(ye)}static#e=this.\u0275fac=function(Re){return new(Re||Q)(i.CoB(ae.WU),i.CoB(i.YND,8))};static#t=this.\u0275prov=i.wxM({token:Q,factory:Q.\u0275fac,providedIn:"root"})}return Q})();function Bt(Q){return{matches:"all"===Q||""===Q,media:Q,addListener:()=>{},removeListener:()=>{}}}let kt=(()=>{class Q{constructor(ye,Re){this._mediaMatcher=ye,this._zone=Re,this._queries=new Map,this._destroySubject=new a.E}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(ye){return Ye((0,s.Mt)(ye)).some(Xe=>this._registerQuery(Xe).mql.matches)}observe(ye){const Xe=Ye((0,s.Mt)(ye)).map(oe=>this._registerQuery(oe).observable);let $e=(0,h.E)(Xe);return $e=(0,l.W)($e.pipe((0,g.U)(1)),$e.pipe((0,b.s)(1),(0,R.o)(0))),$e.pipe((0,Y.k)(oe=>{const ut={matches:!1,breakpoints:{}};return oe.forEach(({matches:st,query:$t})=>{ut.matches=ut.matches||st,ut.breakpoints[$t]=st}),ut}))}_registerQuery(ye){if(this._queries.has(ye))return this._queries.get(ye);const Re=this._mediaMatcher.matchMedia(ye),$e={observable:new f._(oe=>{const ut=st=>this._zone.run(()=>oe.next(st));return Re.addListener(ut),()=>{Re.removeListener(ut)}}).pipe((0,J.W)(Re),(0,Y.k)(({matches:oe})=>({query:ye,matches:oe})),(0,ie.a)(this._destroySubject)),mql:Re};return this._queries.set(ye,$e),$e}static#e=this.\u0275fac=function(Re){return new(Re||Q)(i.CoB(tt),i.CoB(i.WW2))};static#t=this.\u0275prov=i.wxM({token:Q,factory:Q.\u0275fac,providedIn:"root"})}return Q})();function Ye(Q){return Q.map(_e=>_e.split(",")).reduce((_e,ye)=>_e.concat(ye)).map(_e=>_e.trim())}const et={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},6640:(lt,me,d)=>{"use strict";d.d(me,{IT:()=>R,Wk:()=>b});var i=d(7712),s=d(2116),a=d(3252),h=d(5657),l=d(4680);let f=(()=>{class Y{create(ie){return typeof MutationObserver>"u"?null:new MutationObserver(ie)}static#e=this.\u0275fac=function(ae){return new(ae||Y)};static#t=this.\u0275prov=s.wxM({token:Y,factory:Y.\u0275fac,providedIn:"root"})}return Y})(),g=(()=>{class Y{constructor(ie){this._mutationObserverFactory=ie,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((ie,ae)=>this._cleanupObserver(ae))}observe(ie){const ae=(0,i.mk)(ie);return new a._(Ie=>{const Ge=this._observeElement(ae).subscribe(Ie);return()=>{Ge.unsubscribe(),this._unobserveElement(ae)}})}_observeElement(ie){if(this._observedElements.has(ie))this._observedElements.get(ie).count++;else{const ae=new h.E,Ie=this._mutationObserverFactory.create(Ee=>ae.next(Ee));Ie&&Ie.observe(ie,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(ie,{observer:Ie,stream:ae,count:1})}return this._observedElements.get(ie).stream}_unobserveElement(ie){this._observedElements.has(ie)&&(this._observedElements.get(ie).count--,this._observedElements.get(ie).count||this._cleanupObserver(ie))}_cleanupObserver(ie){if(this._observedElements.has(ie)){const{observer:ae,stream:Ie}=this._observedElements.get(ie);ae&&ae.disconnect(),Ie.complete(),this._observedElements.delete(ie)}}static#e=this.\u0275fac=function(ae){return new(ae||Y)(s.CoB(f))};static#t=this.\u0275prov=s.wxM({token:Y,factory:Y.\u0275fac,providedIn:"root"})}return Y})(),b=(()=>{class Y{get disabled(){return this._disabled}set disabled(ie){this._disabled=(0,i.W6)(ie),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(ie){this._debounce=(0,i.wZ)(ie),this._subscribe()}constructor(ie,ae,Ie){this._contentObserver=ie,this._elementRef=ae,this._ngZone=Ie,this.event=new s._w7,this._disabled=!1,this._currentSubscription=null}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const ie=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?ie.pipe((0,l.o)(this.debounce)):ie).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}static#e=this.\u0275fac=function(ae){return new(ae||Y)(s.GI1(g),s.GI1(s.GMv),s.GI1(s.WW2))};static#t=this.\u0275dir=s.Sc5({type:Y,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[s.Wk5.None,"cdkObserveContentDisabled","disabled"],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]})}return Y})(),R=(()=>{class Y{static#e=this.\u0275fac=function(ae){return new(ae||Y)};static#t=this.\u0275mod=s.a4G({type:Y});static#i=this.\u0275inj=s.s3X({providers:[f]})}return Y})()},68:(lt,me,d)=>{"use strict";d.d(me,{eC:()=>Ut,wW:()=>Kt,g$:()=>te,mc:()=>Tt,o9:()=>Xe,Y:()=>je,Y1:()=>wt,aq:()=>De});var i=d(8408),s=d(1368),a=d(2116),h=d(7712),l=d(5792),f=d(6684),g=d(3992),b=d(3616),R=d(5448),Y=d(7773),ie=d(1900),ae=d(2488),Ie=d(5657),Ee=d(6928),Ge=d(3412),tt=d(7800);const gt=(0,l.kk)();class Bt{constructor(ve,Te){this._viewportRuler=ve,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=Te}attach(){}enable(){if(this._canBeEnabled()){const ve=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=ve.style.left||"",this._previousHTMLStyles.top=ve.style.top||"",ve.style.left=(0,h.ph)(-this._previousScrollPosition.left),ve.style.top=(0,h.ph)(-this._previousScrollPosition.top),ve.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const ve=this._document.documentElement,at=ve.style,Ze=this._document.body.style,pt=at.scrollBehavior||"",le=Ze.scrollBehavior||"";this._isEnabled=!1,at.left=this._previousHTMLStyles.left,at.top=this._previousHTMLStyles.top,ve.classList.remove("cdk-global-scrollblock"),gt&&(at.scrollBehavior=Ze.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),gt&&(at.scrollBehavior=pt,Ze.scrollBehavior=le)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Te=this._document.body,at=this._viewportRuler.getViewportSize();return Te.scrollHeight>at.height||Te.scrollWidth>at.width}}class Ye{constructor(ve,Te,at,Ze){this._scrollDispatcher=ve,this._ngZone=Te,this._viewportRuler=at,this._config=Ze,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(ve){this._overlayRef=ve}enable(){if(this._scrollSubscription)return;const ve=this._scrollDispatcher.scrolled(0).pipe((0,f.I)(Te=>!Te||!this._overlayRef.overlayElement.contains(Te.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=ve.subscribe(()=>{const Te=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Te-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=ve.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class et{enable(){}disable(){}attach(){}}function Q(Dt,ve){return ve.some(Te=>Dt.bottomTe.bottom||Dt.rightTe.right)}function _e(Dt,ve){return ve.some(Te=>Dt.topTe.bottom||Dt.leftTe.right)}class ye{constructor(ve,Te,at,Ze){this._scrollDispatcher=ve,this._viewportRuler=Te,this._ngZone=at,this._config=Ze,this._scrollSubscription=null}attach(ve){this._overlayRef=ve}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 Te=this._overlayRef.overlayElement.getBoundingClientRect(),{width:at,height:Ze}=this._viewportRuler.getViewportSize();Q(Te,[{width:at,height:Ze,bottom:Ze,right:at,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 Re=(()=>{class Dt{constructor(Te,at,Ze,pt){this._scrollDispatcher=Te,this._viewportRuler=at,this._ngZone=Ze,this.noop=()=>new et,this.close=le=>new Ye(this._scrollDispatcher,this._ngZone,this._viewportRuler,le),this.block=()=>new Bt(this._viewportRuler,this._document),this.reposition=le=>new ye(this._scrollDispatcher,this._viewportRuler,this._ngZone,le),this._document=pt}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.CoB(i.Yn),a.CoB(i.S8),a.CoB(a.WW2),a.CoB(s.Ud))};static#t=this.\u0275prov=a.wxM({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})();class Xe{constructor(ve){if(this.scrollStrategy=new et,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,ve){const Te=Object.keys(ve);for(const at of Te)void 0!==ve[at]&&(this[at]=ve[at])}}}class ut{constructor(ve,Te){this.connectionPair=ve,this.scrollableViewProperties=Te}}let oi=(()=>{class Dt{constructor(Te){this._attachedOverlays=[],this._document=Te}ngOnDestroy(){this.detach()}add(Te){this.remove(Te),this._attachedOverlays.push(Te)}remove(Te){const at=this._attachedOverlays.indexOf(Te);at>-1&&this._attachedOverlays.splice(at,1),0===this._attachedOverlays.length&&this.detach()}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.CoB(s.Ud))};static#t=this.\u0275prov=a.wxM({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})(),Jt=(()=>{class Dt extends oi{constructor(Te,at){super(Te),this._ngZone=at,this._keydownListener=Ze=>{const pt=this._attachedOverlays;for(let le=pt.length-1;le>-1;le--)if(pt[le]._keydownEvents.observers.length>0){const xe=pt[le]._keydownEvents;this._ngZone?this._ngZone.run(()=>xe.next(Ze)):xe.next(Ze);break}}}add(Te){super.add(Te),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.CoB(s.Ud),a.CoB(a.WW2,8))};static#t=this.\u0275prov=a.wxM({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})(),vi=(()=>{class Dt extends oi{constructor(Te,at,Ze){super(Te),this._platform=at,this._ngZone=Ze,this._cursorStyleIsSet=!1,this._pointerDownListener=pt=>{this._pointerDownEventTarget=(0,l.oZ)(pt)},this._clickListener=pt=>{const le=(0,l.oZ)(pt),xe="click"===pt.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:le;this._pointerDownEventTarget=null;const Pe=this._attachedOverlays.slice();for(let ht=Pe.length-1;ht>-1;ht--){const Ht=Pe[ht];if(Ht._outsidePointerEvents.observers.length<1||!Ht.hasAttached())continue;if(Ht.overlayElement.contains(le)||Ht.overlayElement.contains(xe))break;const vt=Ht._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>vt.next(pt)):vt.next(pt)}}}add(Te){if(super.add(Te),!this._isAttached){const at=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(at)):this._addEventListeners(at),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=at.style.cursor,at.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const Te=this._document.body;Te.removeEventListener("pointerdown",this._pointerDownListener,!0),Te.removeEventListener("click",this._clickListener,!0),Te.removeEventListener("auxclick",this._clickListener,!0),Te.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(Te.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(Te){Te.addEventListener("pointerdown",this._pointerDownListener,!0),Te.addEventListener("click",this._clickListener,!0),Te.addEventListener("auxclick",this._clickListener,!0),Te.addEventListener("contextmenu",this._clickListener,!0)}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.CoB(s.Ud),a.CoB(l.WU),a.CoB(a.WW2,8))};static#t=this.\u0275prov=a.wxM({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})(),je=(()=>{class Dt{constructor(Te,at){this._platform=at,this._document=Te}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Te="cdk-overlay-container";if(this._platform.isBrowser||(0,l.mW)()){const Ze=this._document.querySelectorAll(`.${Te}[platform="server"], .${Te}[platform="test"]`);for(let pt=0;ptthis._backdropClick.next(vt),this._backdropTransitionendHandler=vt=>{this._disposeBackdrop(vt.target)},this._keydownEvents=new Ie.E,this._outsidePointerEvents=new Ie.E,Ze.scrollStrategy&&(this._scrollStrategy=Ze.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=Ze.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(ve){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Te=this._portalOutlet.attach(ve);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,g.U)(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._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof Te?.onDestroy&&Te.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Te}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const ve=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),ve}dispose(){const ve=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),this._host?.remove(),this._previousHostParent=this._pane=this._host=null,ve&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(ve){ve!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=ve,this.hasAttached()&&(ve.attach(this),this.updatePosition()))}updateSize(ve){this._config={...this._config,...ve},this._updateElementSize()}setDirection(ve){this._config={...this._config,direction:ve},this._updateElementDirection()}addPanelClass(ve){this._pane&&this._toggleClasses(this._pane,ve,!0)}removePanelClass(ve){this._pane&&this._toggleClasses(this._pane,ve,!1)}getDirection(){const ve=this._config.direction;return ve?"string"==typeof ve?ve:ve.value:"ltr"}updateScrollStrategy(ve){ve!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=ve,this.hasAttached()&&(ve.attach(this),ve.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const ve=this._pane.style;ve.width=(0,h.ph)(this._config.width),ve.height=(0,h.ph)(this._config.height),ve.minWidth=(0,h.ph)(this._config.minWidth),ve.minHeight=(0,h.ph)(this._config.minHeight),ve.maxWidth=(0,h.ph)(this._config.maxWidth),ve.maxHeight=(0,h.ph)(this._config.maxHeight)}_togglePointerEvents(ve){this._pane.style.pointerEvents=ve?"":"none"}_attachBackdrop(){const ve="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),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),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(ve)})}):this._backdropElement.classList.add(ve)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const ve=this._backdropElement;if(ve){if(this._animationsDisabled)return void this._disposeBackdrop(ve);ve.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{ve.addEventListener("transitionend",this._backdropTransitionendHandler)}),ve.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(ve)},500))}}_toggleClasses(ve,Te,at){const Ze=(0,h.Mt)(Te||[]).filter(pt=>!!pt);Ze.length&&(at?ve.classList.add(...Ze):ve.classList.remove(...Ze))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const ve=this._ngZone.onStable.pipe((0,b.a)((0,Ge.U)(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._host.remove()),ve.unsubscribe())})})}_disposeScrollStrategy(){const ve=this._scrollStrategy;ve&&(ve.disable(),ve.detach&&ve.detach())}_disposeBackdrop(ve){ve&&(ve.removeEventListener("click",this._backdropClickHandler),ve.removeEventListener("transitionend",this._backdropTransitionendHandler),ve.remove(),this._backdropElement===ve&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const Le="cdk-overlay-connected-position-bounding-box",Ve=/([A-Za-z%]+)$/;class te{get positions(){return this._preferredPositions}constructor(ve,Te,at,Ze,pt){this._viewportRuler=Te,this._document=at,this._platform=Ze,this._overlayContainer=pt,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 Ie.E,this._resizeSubscription=Ee.wH.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(ve)}attach(ve){this._validatePositions(),ve.hostElement.classList.add(Le),this._overlayRef=ve,this._boundingBox=ve.hostElement,this._pane=ve.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(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const ve=this._originRect,Te=this._overlayRect,at=this._viewportRect,Ze=this._containerRect,pt=[];let le;for(let xe of this._preferredPositions){let Pe=this._getOriginPoint(ve,Ze,xe),ht=this._getOverlayPoint(Pe,Te,xe),Ht=this._getOverlayFit(ht,Te,at,xe);if(Ht.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(xe,Pe);this._canFitWithFlexibleDimensions(Ht,ht,at)?pt.push({position:xe,origin:Pe,overlayRect:Te,boundingBoxRect:this._calculateBoundingBoxRect(Pe,xe)}):(!le||le.overlayFit.visibleAreaPe&&(Pe=Ht,xe=ht)}return this._isPushed=!1,void this._applyPosition(xe.position,xe.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(le.position,le.originPoint);this._applyPosition(le.position,le.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&ge(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(Le),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const ve=this._lastPosition;if(ve){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Te=this._getOriginPoint(this._originRect,this._containerRect,ve);this._applyPosition(ve,Te)}else this.apply()}withScrollableContainers(ve){return this._scrollables=ve,this}withPositions(ve){return this._preferredPositions=ve,-1===ve.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(ve){return this._viewportMargin=ve,this}withFlexibleDimensions(ve=!0){return this._hasFlexibleDimensions=ve,this}withGrowAfterOpen(ve=!0){return this._growAfterOpen=ve,this}withPush(ve=!0){return this._canPush=ve,this}withLockedPosition(ve=!0){return this._positionLocked=ve,this}setOrigin(ve){return this._origin=ve,this}withDefaultOffsetX(ve){return this._offsetX=ve,this}withDefaultOffsetY(ve){return this._offsetY=ve,this}withTransformOriginOn(ve){return this._transformOriginSelector=ve,this}_getOriginPoint(ve,Te,at){let Ze,pt;if("center"==at.originX)Ze=ve.left+ve.width/2;else{const le=this._isRtl()?ve.right:ve.left,xe=this._isRtl()?ve.left:ve.right;Ze="start"==at.originX?le:xe}return Te.left<0&&(Ze-=Te.left),pt="center"==at.originY?ve.top+ve.height/2:"top"==at.originY?ve.top:ve.bottom,Te.top<0&&(pt-=Te.top),{x:Ze,y:pt}}_getOverlayPoint(ve,Te,at){let Ze,pt;return Ze="center"==at.overlayX?-Te.width/2:"start"===at.overlayX?this._isRtl()?-Te.width:0:this._isRtl()?0:-Te.width,pt="center"==at.overlayY?-Te.height/2:"top"==at.overlayY?0:-Te.height,{x:ve.x+Ze,y:ve.y+pt}}_getOverlayFit(ve,Te,at,Ze){const pt=Ne(Te);let{x:le,y:xe}=ve,Pe=this._getOffset(Ze,"x"),ht=this._getOffset(Ze,"y");Pe&&(le+=Pe),ht&&(xe+=ht);let Mt=0-xe,fe=xe+pt.height-at.height,it=this._subtractOverflows(pt.width,0-le,le+pt.width-at.width),Et=this._subtractOverflows(pt.height,Mt,fe),ct=it*Et;return{visibleArea:ct,isCompletelyWithinViewport:pt.width*pt.height===ct,fitsInViewportVertically:Et===pt.height,fitsInViewportHorizontally:it==pt.width}}_canFitWithFlexibleDimensions(ve,Te,at){if(this._hasFlexibleDimensions){const Ze=at.bottom-Te.y,pt=at.right-Te.x,le=xt(this._overlayRef.getConfig().minHeight),xe=xt(this._overlayRef.getConfig().minWidth);return(ve.fitsInViewportVertically||null!=le&&le<=Ze)&&(ve.fitsInViewportHorizontally||null!=xe&&xe<=pt)}return!1}_pushOverlayOnScreen(ve,Te,at){if(this._previousPushAmount&&this._positionLocked)return{x:ve.x+this._previousPushAmount.x,y:ve.y+this._previousPushAmount.y};const Ze=Ne(Te),pt=this._viewportRect,le=Math.max(ve.x+Ze.width-pt.width,0),xe=Math.max(ve.y+Ze.height-pt.height,0),Pe=Math.max(pt.top-at.top-ve.y,0),ht=Math.max(pt.left-at.left-ve.x,0);let Ht=0,vt=0;return Ht=Ze.width<=pt.width?ht||-le:ve.xit&&!this._isInitialRender&&!this._growAfterOpen&&(le=ve.y-it/2)}if("end"===Te.overlayX&&!Ze||"start"===Te.overlayX&&Ze)Mt=at.width-ve.x+this._viewportMargin,Ht=ve.x-this._viewportMargin;else if("start"===Te.overlayX&&!Ze||"end"===Te.overlayX&&Ze)vt=ve.x,Ht=at.right-ve.x;else{const fe=Math.min(at.right-ve.x+at.left,ve.x),it=this._lastBoundingBoxSize.width;Ht=2*fe,vt=ve.x-fe,Ht>it&&!this._isInitialRender&&!this._growAfterOpen&&(vt=ve.x-it/2)}return{top:le,left:vt,bottom:xe,right:Mt,width:Ht,height:pt}}_setBoundingBoxStyles(ve,Te){const at=this._calculateBoundingBoxRect(ve,Te);!this._isInitialRender&&!this._growAfterOpen&&(at.height=Math.min(at.height,this._lastBoundingBoxSize.height),at.width=Math.min(at.width,this._lastBoundingBoxSize.width));const Ze={};if(this._hasExactPosition())Ze.top=Ze.left="0",Ze.bottom=Ze.right=Ze.maxHeight=Ze.maxWidth="",Ze.width=Ze.height="100%";else{const pt=this._overlayRef.getConfig().maxHeight,le=this._overlayRef.getConfig().maxWidth;Ze.height=(0,h.ph)(at.height),Ze.top=(0,h.ph)(at.top),Ze.bottom=(0,h.ph)(at.bottom),Ze.width=(0,h.ph)(at.width),Ze.left=(0,h.ph)(at.left),Ze.right=(0,h.ph)(at.right),Ze.alignItems="center"===Te.overlayX?"center":"end"===Te.overlayX?"flex-end":"flex-start",Ze.justifyContent="center"===Te.overlayY?"center":"bottom"===Te.overlayY?"flex-end":"flex-start",pt&&(Ze.maxHeight=(0,h.ph)(pt)),le&&(Ze.maxWidth=(0,h.ph)(le))}this._lastBoundingBoxSize=at,ge(this._boundingBox.style,Ze)}_resetBoundingBoxStyles(){ge(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){ge(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(ve,Te){const at={},Ze=this._hasExactPosition(),pt=this._hasFlexibleDimensions,le=this._overlayRef.getConfig();if(Ze){const Ht=this._viewportRuler.getViewportScrollPosition();ge(at,this._getExactOverlayY(Te,ve,Ht)),ge(at,this._getExactOverlayX(Te,ve,Ht))}else at.position="static";let xe="",Pe=this._getOffset(Te,"x"),ht=this._getOffset(Te,"y");Pe&&(xe+=`translateX(${Pe}px) `),ht&&(xe+=`translateY(${ht}px)`),at.transform=xe.trim(),le.maxHeight&&(Ze?at.maxHeight=(0,h.ph)(le.maxHeight):pt&&(at.maxHeight="")),le.maxWidth&&(Ze?at.maxWidth=(0,h.ph)(le.maxWidth):pt&&(at.maxWidth="")),ge(this._pane.style,at)}_getExactOverlayY(ve,Te,at){let Ze={top:"",bottom:""},pt=this._getOverlayPoint(Te,this._overlayRect,ve);return this._isPushed&&(pt=this._pushOverlayOnScreen(pt,this._overlayRect,at)),"bottom"===ve.overlayY?Ze.bottom=this._document.documentElement.clientHeight-(pt.y+this._overlayRect.height)+"px":Ze.top=(0,h.ph)(pt.y),Ze}_getExactOverlayX(ve,Te,at){let le,Ze={left:"",right:""},pt=this._getOverlayPoint(Te,this._overlayRect,ve);return this._isPushed&&(pt=this._pushOverlayOnScreen(pt,this._overlayRect,at)),le=this._isRtl()?"end"===ve.overlayX?"left":"right":"end"===ve.overlayX?"right":"left","right"===le?Ze.right=this._document.documentElement.clientWidth-(pt.x+this._overlayRect.width)+"px":Ze.left=(0,h.ph)(pt.x),Ze}_getScrollVisibility(){const ve=this._getOriginRect(),Te=this._pane.getBoundingClientRect(),at=this._scrollables.map(Ze=>Ze.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:_e(ve,at),isOriginOutsideView:Q(ve,at),isOverlayClipped:_e(Te,at),isOverlayOutsideView:Q(Te,at)}}_subtractOverflows(ve,...Te){return Te.reduce((at,Ze)=>at-Math.max(Ze,0),ve)}_getNarrowedViewportRect(){const ve=this._document.documentElement.clientWidth,Te=this._document.documentElement.clientHeight,at=this._viewportRuler.getViewportScrollPosition();return{top:at.top+this._viewportMargin,left:at.left+this._viewportMargin,right:at.left+ve-this._viewportMargin,bottom:at.top+Te-this._viewportMargin,width:ve-2*this._viewportMargin,height:Te-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(ve,Te){return"x"===Te?null==ve.offsetX?this._offsetX:ve.offsetX:null==ve.offsetY?this._offsetY:ve.offsetY}_validatePositions(){}_addPanelClasses(ve){this._pane&&(0,h.Mt)(ve).forEach(Te=>{""!==Te&&-1===this._appliedPanelClasses.indexOf(Te)&&(this._appliedPanelClasses.push(Te),this._pane.classList.add(Te))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(ve=>{this._pane.classList.remove(ve)}),this._appliedPanelClasses=[])}_getOriginRect(){const ve=this._origin;if(ve instanceof a.GMv)return ve.nativeElement.getBoundingClientRect();if(ve instanceof Element)return ve.getBoundingClientRect();const Te=ve.width||0,at=ve.height||0;return{top:ve.y,bottom:ve.y+at,left:ve.x,right:ve.x+Te,height:at,width:Te}}}function ge(Dt,ve){for(let Te in ve)ve.hasOwnProperty(Te)&&(Dt[Te]=ve[Te]);return Dt}function xt(Dt){if("number"!=typeof Dt&&null!=Dt){const[ve,Te]=Dt.split(Ve);return Te&&"px"!==Te?null:parseFloat(ve)}return Dt||null}function Ne(Dt){return{top:Math.floor(Dt.top),right:Math.floor(Dt.right),bottom:Math.floor(Dt.bottom),left:Math.floor(Dt.left),width:Math.floor(Dt.width),height:Math.floor(Dt.height)}}const we="cdk-global-overlay-wrapper";class N{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(ve){const Te=ve.getConfig();this._overlayRef=ve,this._width&&!Te.width&&ve.updateSize({width:this._width}),this._height&&!Te.height&&ve.updateSize({height:this._height}),ve.hostElement.classList.add(we),this._isDisposed=!1}top(ve=""){return this._bottomOffset="",this._topOffset=ve,this._alignItems="flex-start",this}left(ve=""){return this._xOffset=ve,this._xPosition="left",this}bottom(ve=""){return this._topOffset="",this._bottomOffset=ve,this._alignItems="flex-end",this}right(ve=""){return this._xOffset=ve,this._xPosition="right",this}start(ve=""){return this._xOffset=ve,this._xPosition="start",this}end(ve=""){return this._xOffset=ve,this._xPosition="end",this}width(ve=""){return this._overlayRef?this._overlayRef.updateSize({width:ve}):this._width=ve,this}height(ve=""){return this._overlayRef?this._overlayRef.updateSize({height:ve}):this._height=ve,this}centerHorizontally(ve=""){return this.left(ve),this._xPosition="center",this}centerVertically(ve=""){return this.top(ve),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const ve=this._overlayRef.overlayElement.style,Te=this._overlayRef.hostElement.style,at=this._overlayRef.getConfig(),{width:Ze,height:pt,maxWidth:le,maxHeight:xe}=at,Pe=!("100%"!==Ze&&"100vw"!==Ze||le&&"100%"!==le&&"100vw"!==le),ht=!("100%"!==pt&&"100vh"!==pt||xe&&"100%"!==xe&&"100vh"!==xe),Ht=this._xPosition,vt=this._xOffset,Mt="rtl"===this._overlayRef.getConfig().direction;let fe="",it="",Et="";Pe?Et="flex-start":"center"===Ht?(Et="center",Mt?it=vt:fe=vt):Mt?"left"===Ht||"end"===Ht?(Et="flex-end",fe=vt):("right"===Ht||"start"===Ht)&&(Et="flex-start",it=vt):"left"===Ht||"start"===Ht?(Et="flex-start",fe=vt):("right"===Ht||"end"===Ht)&&(Et="flex-end",it=vt),ve.position=this._cssPosition,ve.marginLeft=Pe?"0":fe,ve.marginTop=ht?"0":this._topOffset,ve.marginBottom=this._bottomOffset,ve.marginRight=Pe?"0":it,Te.justifyContent=Et,Te.alignItems=ht?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const ve=this._overlayRef.overlayElement.style,Te=this._overlayRef.hostElement,at=Te.style;Te.classList.remove(we),at.justifyContent=at.alignItems=ve.marginTop=ve.marginBottom=ve.marginLeft=ve.marginRight=ve.position="",this._overlayRef=null,this._isDisposed=!0}}let U=(()=>{class Dt{constructor(Te,at,Ze,pt){this._viewportRuler=Te,this._document=at,this._platform=Ze,this._overlayContainer=pt}global(){return new N}flexibleConnectedTo(Te){return new te(Te,this._viewportRuler,this._document,this._platform,this._overlayContainer)}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.CoB(i.S8),a.CoB(s.Ud),a.CoB(l.WU),a.CoB(je))};static#t=this.\u0275prov=a.wxM({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})(),Fe=0,Tt=(()=>{class Dt{constructor(Te,at,Ze,pt,le,xe,Pe,ht,Ht,vt,Mt,fe){this.scrollStrategies=Te,this._overlayContainer=at,this._componentFactoryResolver=Ze,this._positionBuilder=pt,this._keyboardDispatcher=le,this._injector=xe,this._ngZone=Pe,this._document=ht,this._directionality=Ht,this._location=vt,this._outsideClickDispatcher=Mt,this._animationsModuleType=fe}create(Te){const at=this._createHostElement(),Ze=this._createPaneElement(at),pt=this._createPortalOutlet(Ze),le=new Xe(Te);return le.direction=le.direction||this._directionality.value,new De(pt,at,Ze,le,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(Te){const at=this._document.createElement("div");return at.id="cdk-overlay-"+Fe++,at.classList.add("cdk-overlay-pane"),Te.appendChild(at),at}_createHostElement(){const Te=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(Te),Te}_createPortalOutlet(Te){return this._appRef||(this._appRef=this._injector.get(a.Swk)),new ae.S4(Te,this._componentFactoryResolver,this._appRef,this._injector,this._document)}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.CoB(Re),a.CoB(je),a.CoB(a.ce5),a.CoB(U),a.CoB(Jt),a.CoB(a.zZn),a.CoB(a.WW2),a.CoB(s.Ud),a.CoB(ie.yG),a.CoB(s.oB),a.CoB(vi),a.CoB(a.qwP,8))};static#t=this.\u0275prov=a.wxM({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})();const Ke=[{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"}],Lt=new a.UbH("cdk-connected-overlay-scroll-strategy");let Kt=(()=>{class Dt{constructor(Te){this.elementRef=Te}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.GI1(a.GMv))};static#t=this.\u0275dir=a.Sc5({type:Dt,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"],standalone:!0})}return Dt})(),Ut=(()=>{class Dt{get offsetX(){return this._offsetX}set offsetX(Te){this._offsetX=Te,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Te){this._offsetY=Te,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(Te){this._hasBackdrop=(0,h.W6)(Te)}get lockPosition(){return this._lockPosition}set lockPosition(Te){this._lockPosition=(0,h.W6)(Te)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(Te){this._flexibleDimensions=(0,h.W6)(Te)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(Te){this._growAfterOpen=(0,h.W6)(Te)}get push(){return this._push}set push(Te){this._push=(0,h.W6)(Te)}constructor(Te,at,Ze,pt,le){this._overlay=Te,this._dir=le,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=Ee.wH.EMPTY,this._attachSubscription=Ee.wH.EMPTY,this._detachSubscription=Ee.wH.EMPTY,this._positionSubscription=Ee.wH.EMPTY,this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.backdropClick=new a._w7,this.positionChange=new a._w7,this.attach=new a._w7,this.detach=new a._w7,this.overlayKeydown=new a._w7,this.overlayOutsideClick=new a._w7,this._templatePortal=new ae.CC(at,Ze),this._scrollStrategyFactory=pt,this.scrollStrategy=this._scrollStrategyFactory()}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef&&this._overlayRef.dispose()}ngOnChanges(Te){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Te.origin&&this.open&&this._position.apply()),Te.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=Ke);const Te=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=Te.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Te.detachments().subscribe(()=>this.detach.emit()),Te.keydownEvents().subscribe(at=>{this.overlayKeydown.next(at),at.keyCode===tt.UX&&!this.disableClose&&!(0,tt.Yp)(at)&&(at.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(at=>{this.overlayOutsideClick.next(at)})}_buildConfig(){const Te=this._position=this.positionStrategy||this._createPositionStrategy(),at=new Xe({direction:this._dir,positionStrategy:Te,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(at.width=this.width),(this.height||0===this.height)&&(at.height=this.height),(this.minWidth||0===this.minWidth)&&(at.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(at.minHeight=this.minHeight),this.backdropClass&&(at.backdropClass=this.backdropClass),this.panelClass&&(at.panelClass=this.panelClass),at}_updatePositionStrategy(Te){const at=this.positions.map(Ze=>({originX:Ze.originX,originY:Ze.originY,overlayX:Ze.overlayX,overlayY:Ze.overlayY,offsetX:Ze.offsetX||this.offsetX,offsetY:Ze.offsetY||this.offsetY,panelClass:Ze.panelClass||void 0}));return Te.setOrigin(this._getFlexibleConnectedPositionStrategyOrigin()).withPositions(at).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Te=this._overlay.position().flexibleConnectedTo(this._getFlexibleConnectedPositionStrategyOrigin());return this._updatePositionStrategy(Te),Te}_getFlexibleConnectedPositionStrategyOrigin(){return this.origin instanceof Kt?this.origin.elementRef:this.origin}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(Te=>{this.backdropClick.emit(Te)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function J(Dt,ve=!1){return(0,R.i)((Te,at)=>{let Ze=0;Te.subscribe((0,Y.e)(at,pt=>{const le=Dt(pt,Ze++);(le||ve)&&at.next(pt),!le&&at.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Te=>{this.positionChange.emit(Te),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}static#e=this.\u0275fac=function(at){return new(at||Dt)(a.GI1(Tt),a.GI1(a.Yw2),a.GI1(a.y8U),a.GI1(Lt),a.GI1(ie.yG,8))};static#t=this.\u0275dir=a.Sc5({type:Dt,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:[a.Wk5.None,"cdkConnectedOverlayOrigin","origin"],positions:[a.Wk5.None,"cdkConnectedOverlayPositions","positions"],positionStrategy:[a.Wk5.None,"cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:[a.Wk5.None,"cdkConnectedOverlayOffsetX","offsetX"],offsetY:[a.Wk5.None,"cdkConnectedOverlayOffsetY","offsetY"],width:[a.Wk5.None,"cdkConnectedOverlayWidth","width"],height:[a.Wk5.None,"cdkConnectedOverlayHeight","height"],minWidth:[a.Wk5.None,"cdkConnectedOverlayMinWidth","minWidth"],minHeight:[a.Wk5.None,"cdkConnectedOverlayMinHeight","minHeight"],backdropClass:[a.Wk5.None,"cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:[a.Wk5.None,"cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:[a.Wk5.None,"cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:[a.Wk5.None,"cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:[a.Wk5.None,"cdkConnectedOverlayOpen","open"],disableClose:[a.Wk5.None,"cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:[a.Wk5.None,"cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:[a.Wk5.None,"cdkConnectedOverlayHasBackdrop","hasBackdrop"],lockPosition:[a.Wk5.None,"cdkConnectedOverlayLockPosition","lockPosition"],flexibleDimensions:[a.Wk5.None,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions"],growAfterOpen:[a.Wk5.None,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen"],push:[a.Wk5.None,"cdkConnectedOverlayPush","push"]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],standalone:!0,features:[a.SYr]})}return Dt})();const Mi={provide:Lt,deps:[Tt],useFactory:function ni(Dt){return()=>Dt.scrollStrategies.reposition()}};let wt=(()=>{class Dt{static#e=this.\u0275fac=function(at){return new(at||Dt)};static#t=this.\u0275mod=a.a4G({type:Dt});static#i=this.\u0275inj=a.s3X({providers:[Tt,Mi],imports:[ie.gN,ae.g$,i.c$,i.c$]})}return Dt})()},5792:(lt,me,d)=>{"use strict";d.d(me,{C8:()=>gt,Ml:()=>Ee,W4:()=>J,WU:()=>h,Yx:()=>Bt,kk:()=>Ie,mU:()=>b,mW:()=>Ye,oZ:()=>kt});var i=d(2116),s=d(1368);let a;try{a=typeof Intl<"u"&&Intl.v8BreakIterator}catch{a=!1}let f,h=(()=>{class et{constructor(_e){this._platformId=_e,this.isBrowser=this._platformId?(0,s.c0)(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&&!a)&&typeof CSS<"u"&&!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}static#e=this.\u0275fac=function(ye){return new(ye||et)(i.CoB(i.AHE))};static#t=this.\u0275prov=i.wxM({token:et,factory:et.\u0275fac,providedIn:"root"})}return et})();const g=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function b(){if(f)return f;if("object"!=typeof document||!document)return f=new Set(g),f;let et=document.createElement("input");return f=new Set(g.filter(Q=>(et.setAttribute("type",Q),et.type===Q))),f}let R,ie,ae,Ge;function J(et){return function Y(){if(null==R&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>R=!0}))}finally{R=R||!1}return R}()?et:!!et.capture}function Ie(){if(null==ae){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return ae=!1,ae;if("scrollBehavior"in document.documentElement.style)ae=!0;else{const et=Element.prototype.scrollTo;ae=!!et&&!/\{\s*\[native code\]\s*\}/.test(et.toString())}}return ae}function Ee(){if("object"!=typeof document||!document)return 0;if(null==ie){const et=document.createElement("div"),Q=et.style;et.dir="rtl",Q.width="1px",Q.overflow="auto",Q.visibility="hidden",Q.pointerEvents="none",Q.position="absolute";const _e=document.createElement("div"),ye=_e.style;ye.width="2px",ye.height="1px",et.appendChild(_e),document.body.appendChild(et),ie=0,0===et.scrollLeft&&(et.scrollLeft=1,ie=0===et.scrollLeft?1:2),et.remove()}return ie}function gt(et){if(function tt(){if(null==Ge){const et=typeof document<"u"?document.head:null;Ge=!(!et||!et.createShadowRoot&&!et.attachShadow)}return Ge}()){const Q=et.getRootNode?et.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&Q instanceof ShadowRoot)return Q}return null}function Bt(){let et=typeof document<"u"&&document?document.activeElement:null;for(;et&&et.shadowRoot;){const Q=et.shadowRoot.activeElement;if(Q===et)break;et=Q}return et}function kt(et){return et.composedPath?et.composedPath()[0]:et.target}function Ye(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}},2488:(lt,me,d)=>{"use strict";d.d(me,{CC:()=>J,Ef:()=>ae,IP:()=>Bt,KC:()=>Y,S4:()=>Ee,YT:()=>tt,g$:()=>Ye});var i=d(2116),s=d(1368);class R{attach(_e){return this._attachedHost=_e,_e.attach(this)}detach(){let _e=this._attachedHost;null!=_e&&(this._attachedHost=null,_e.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(_e){this._attachedHost=_e}}class Y extends R{constructor(_e,ye,Re,Xe,$e){super(),this.component=_e,this.viewContainerRef=ye,this.injector=Re,this.componentFactoryResolver=Xe,this.projectableNodes=$e}}class J extends R{constructor(_e,ye,Re,Xe){super(),this.templateRef=_e,this.viewContainerRef=ye,this.context=Re,this.injector=Xe}get origin(){return this.templateRef.elementRef}attach(_e,ye=this.context){return this.context=ye,super.attach(_e)}detach(){return this.context=void 0,super.detach()}}class ie extends R{constructor(_e){super(),this.element=_e instanceof i.GMv?_e.nativeElement:_e}}class ae{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(_e){return _e instanceof Y?(this._attachedPortal=_e,this.attachComponentPortal(_e)):_e instanceof J?(this._attachedPortal=_e,this.attachTemplatePortal(_e)):this.attachDomPortal&&_e instanceof ie?(this._attachedPortal=_e,this.attachDomPortal(_e)):void 0}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 Ee extends ae{constructor(_e,ye,Re,Xe,$e){super(),this.outletElement=_e,this._componentFactoryResolver=ye,this._appRef=Re,this._defaultInjector=Xe,this.attachDomPortal=oe=>{const ut=oe.element,st=this._document.createComment("dom-portal");ut.parentNode.insertBefore(st,ut),this.outletElement.appendChild(ut),this._attachedPortal=oe,super.setDisposeFn(()=>{st.parentNode&&st.parentNode.replaceChild(ut,st)})},this._document=$e}attachComponentPortal(_e){const Re=(_e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(_e.component);let Xe;return _e.viewContainerRef?(Xe=_e.viewContainerRef.createComponent(Re,_e.viewContainerRef.length,_e.injector||_e.viewContainerRef.injector,_e.projectableNodes||void 0),this.setDisposeFn(()=>Xe.destroy())):(Xe=Re.create(_e.injector||this._defaultInjector||i.zZn.NULL),this._appRef.attachView(Xe.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(Xe.hostView),Xe.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(Xe)),this._attachedPortal=_e,Xe}attachTemplatePortal(_e){let ye=_e.viewContainerRef,Re=ye.createEmbeddedView(_e.templateRef,_e.context,{injector:_e.injector});return Re.rootNodes.forEach(Xe=>this.outletElement.appendChild(Xe)),Re.detectChanges(),this.setDisposeFn(()=>{let Xe=ye.indexOf(Re);-1!==Xe&&ye.remove(Xe)}),this._attachedPortal=_e,Re}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(_e){return _e.hostView.rootNodes[0]}}let tt=(()=>{class Q extends J{constructor(ye,Re){super(ye,Re)}static#e=this.\u0275fac=function(Re){return new(Re||Q)(i.GI1(i.Yw2),i.GI1(i.y8U))};static#t=this.\u0275dir=i.Sc5({type:Q,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[i.eg9]})}return Q})(),Bt=(()=>{class Q extends ae{constructor(ye,Re,Xe){super(),this._componentFactoryResolver=ye,this._viewContainerRef=Re,this._isInitialized=!1,this.attached=new i._w7,this.attachDomPortal=$e=>{const oe=$e.element,ut=this._document.createComment("dom-portal");$e.setAttachedHost(this),oe.parentNode.insertBefore(ut,oe),this._getRootNode().appendChild(oe),this._attachedPortal=$e,super.setDisposeFn(()=>{ut.parentNode&&ut.parentNode.replaceChild(oe,ut)})},this._document=Xe}get portal(){return this._attachedPortal}set portal(ye){this.hasAttached()&&!ye&&!this._isInitialized||(this.hasAttached()&&super.detach(),ye&&super.attach(ye),this._attachedPortal=ye||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(ye){ye.setAttachedHost(this);const Re=null!=ye.viewContainerRef?ye.viewContainerRef:this._viewContainerRef,$e=(ye.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(ye.component),oe=Re.createComponent($e,Re.length,ye.injector||Re.injector,ye.projectableNodes||void 0);return Re!==this._viewContainerRef&&this._getRootNode().appendChild(oe.hostView.rootNodes[0]),super.setDisposeFn(()=>oe.destroy()),this._attachedPortal=ye,this._attachedRef=oe,this.attached.emit(oe),oe}attachTemplatePortal(ye){ye.setAttachedHost(this);const Re=this._viewContainerRef.createEmbeddedView(ye.templateRef,ye.context,{injector:ye.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=ye,this._attachedRef=Re,this.attached.emit(Re),Re}_getRootNode(){const ye=this._viewContainerRef.element.nativeElement;return ye.nodeType===ye.ELEMENT_NODE?ye:ye.parentNode}static#e=this.\u0275fac=function(Re){return new(Re||Q)(i.GI1(i.ce5),i.GI1(i.y8U),i.GI1(s.Ud))};static#t=this.\u0275dir=i.Sc5({type:Q,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[i.Wk5.None,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[i.eg9]})}return Q})(),Ye=(()=>{class Q{static#e=this.\u0275fac=function(Re){return new(Re||Q)};static#t=this.\u0275mod=i.a4G({type:Q});static#i=this.\u0275inj=i.s3X({})}return Q})()},8408:(lt,me,d)=>{"use strict";d.d(me,{Ci:()=>oe,uU:()=>ge,Yn:()=>$e,c$:()=>xt,S8:()=>st});var i=d(7712),s=d(2116),a=d(5657),h=d(2700),l=d(3252),f=d(800),R=(d(4096),d(1472),d(112)),Y=d(5448),J=d(560),ie=d(7773),Ie=d(4548);function Ee(Ne,be=R.M){return function ae(Ne){return(0,Y.i)((be,j)=>{let we=!1,N=null,U=null,Fe=!1;const Tt=()=>{if(U?.unsubscribe(),U=null,we){we=!1;const Lt=N;N=null,j.next(Lt)}Fe&&j.complete()},Ke=()=>{U=null,Fe&&j.complete()};be.subscribe((0,ie.e)(j,Lt=>{we=!0,N=Lt,U||(0,J.Uv)(Ne(Lt)).subscribe(U=(0,ie.e)(j,Tt,Ke))},()=>{Fe=!0,(!we||!U||U.closed)&&j.complete()}))})}(()=>(0,Ie.k)(Ne,be))}var Ge=d(6684),tt=d(3616),gt=d(5792),Bt=d(1368),kt=d(1900);let $e=(()=>{class Ne{constructor(j,we,N){this._ngZone=j,this._platform=we,this._scrolled=new a.E,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=N}register(j){this.scrollContainers.has(j)||this.scrollContainers.set(j,j.elementScrolled().subscribe(()=>this._scrolled.next(j)))}deregister(j){const we=this.scrollContainers.get(j);we&&(we.unsubscribe(),this.scrollContainers.delete(j))}scrolled(j=20){return this._platform.isBrowser?new l._(we=>{this._globalSubscription||this._addGlobalListener();const N=j>0?this._scrolled.pipe(Ee(j)).subscribe(we):this._scrolled.subscribe(we);return this._scrolledCount++,()=>{N.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,h.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((j,we)=>this.deregister(we)),this._scrolled.complete()}ancestorScrolled(j,we){const N=this.getAncestorScrollContainers(j);return this.scrolled(we).pipe((0,Ge.I)(U=>!U||N.indexOf(U)>-1))}getAncestorScrollContainers(j){const we=[];return this.scrollContainers.forEach((N,U)=>{this._scrollableContainsElement(U,j)&&we.push(U)}),we}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(j,we){let N=(0,i.mk)(we),U=j.getElementRef().nativeElement;do{if(N==U)return!0}while(N=N.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const j=this._getWindow();return(0,f.w)(j.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}static#e=this.\u0275fac=function(we){return new(we||Ne)(s.CoB(s.WW2),s.CoB(gt.WU),s.CoB(Bt.Ud,8))};static#t=this.\u0275prov=s.wxM({token:Ne,factory:Ne.\u0275fac,providedIn:"root"})}return Ne})(),oe=(()=>{class Ne{constructor(j,we,N,U){this.elementRef=j,this.scrollDispatcher=we,this.ngZone=N,this.dir=U,this._destroyed=new a.E,this._elementScrolled=new l._(Fe=>this.ngZone.runOutsideAngular(()=>(0,f.w)(this.elementRef.nativeElement,"scroll").pipe((0,tt.a)(this._destroyed)).subscribe(Fe)))}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(j){const we=this.elementRef.nativeElement,N=this.dir&&"rtl"==this.dir.value;null==j.left&&(j.left=N?j.end:j.start),null==j.right&&(j.right=N?j.start:j.end),null!=j.bottom&&(j.top=we.scrollHeight-we.clientHeight-j.bottom),N&&0!=(0,gt.Ml)()?(null!=j.left&&(j.right=we.scrollWidth-we.clientWidth-j.left),2==(0,gt.Ml)()?j.left=j.right:1==(0,gt.Ml)()&&(j.left=j.right?-j.right:j.right)):null!=j.right&&(j.left=we.scrollWidth-we.clientWidth-j.right),this._applyScrollToOptions(j)}_applyScrollToOptions(j){const we=this.elementRef.nativeElement;(0,gt.kk)()?we.scrollTo(j):(null!=j.top&&(we.scrollTop=j.top),null!=j.left&&(we.scrollLeft=j.left))}measureScrollOffset(j){const we="left",N="right",U=this.elementRef.nativeElement;if("top"==j)return U.scrollTop;if("bottom"==j)return U.scrollHeight-U.clientHeight-U.scrollTop;const Fe=this.dir&&"rtl"==this.dir.value;return"start"==j?j=Fe?N:we:"end"==j&&(j=Fe?we:N),Fe&&2==(0,gt.Ml)()?j==we?U.scrollWidth-U.clientWidth-U.scrollLeft:U.scrollLeft:Fe&&1==(0,gt.Ml)()?j==we?U.scrollLeft+U.scrollWidth-U.clientWidth:-U.scrollLeft:j==we?U.scrollLeft:U.scrollWidth-U.clientWidth-U.scrollLeft}static#e=this.\u0275fac=function(we){return new(we||Ne)(s.GI1(s.GMv),s.GI1($e),s.GI1(s.WW2),s.GI1(kt.yG,8))};static#t=this.\u0275dir=s.Sc5({type:Ne,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]],standalone:!0})}return Ne})(),st=(()=>{class Ne{constructor(j,we,N){this._platform=j,this._change=new a.E,this._changeListener=U=>{this._change.next(U)},this._document=N,we.runOutsideAngular(()=>{if(j.isBrowser){const U=this._getWindow();U.addEventListener("resize",this._changeListener),U.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const j=this._getWindow();j.removeEventListener("resize",this._changeListener),j.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const j={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),j}getViewportRect(){const j=this.getViewportScrollPosition(),{width:we,height:N}=this.getViewportSize();return{top:j.top,left:j.left,bottom:j.top+N,right:j.left+we,height:N,width:we}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const j=this._document,we=this._getWindow(),N=j.documentElement,U=N.getBoundingClientRect();return{top:-U.top||j.body.scrollTop||we.scrollY||N.scrollTop||0,left:-U.left||j.body.scrollLeft||we.scrollX||N.scrollLeft||0}}change(j=20){return j>0?this._change.pipe(Ee(j)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const j=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:j.innerWidth,height:j.innerHeight}:{width:0,height:0}}static#e=this.\u0275fac=function(we){return new(we||Ne)(s.CoB(gt.WU),s.CoB(s.WW2),s.CoB(Bt.Ud,8))};static#t=this.\u0275prov=s.wxM({token:Ne,factory:Ne.\u0275fac,providedIn:"root"})}return Ne})(),ge=(()=>{class Ne{static#e=this.\u0275fac=function(we){return new(we||Ne)};static#t=this.\u0275mod=s.a4G({type:Ne});static#i=this.\u0275inj=s.s3X({})}return Ne})(),xt=(()=>{class Ne{static#e=this.\u0275fac=function(we){return new(we||Ne)};static#t=this.\u0275mod=s.a4G({type:Ne});static#i=this.\u0275inj=s.s3X({imports:[kt.gN,ge,kt.gN,ge]})}return Ne})()},1368:(lt,me,d)=>{"use strict";d.d(me,{Ko:()=>sn,MD:()=>xn,MP:()=>tt,OM:()=>yr,QF:()=>Zt,Qd:()=>Ie,Qt:()=>Hr,Sg:()=>re,UZ:()=>en,Ud:()=>g,Wm:()=>qn,XV:()=>Er,YZ:()=>ya,_k:()=>_r,a:()=>_n,ay:()=>mi,c0:()=>ln,cf:()=>Wn,mQ:()=>R,mg:()=>l,oB:()=>gt,uC:()=>Ge,u_:()=>K,uf:()=>lr,ug:()=>h,uy:()=>a,y:()=>on});var i=d(2116);let s=null;function a(){return s}function h(D){s??=D}class l{}const g=new i.UbH("");let b=(()=>{class D{historyGo(F){throw new Error("")}static#e=this.\u0275fac=function(q){return new(q||D)};static#t=this.\u0275prov=i.wxM({token:D,factory:()=>(0,i.uUt)(Y),providedIn:"platform"})}return D})();const R=new i.UbH("");let Y=(()=>{class D extends b{constructor(){super(),this._doc=(0,i.uUt)(g),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return a().getBaseHref(this._doc)}onPopState(F){const q=a().getGlobalEventTarget(this._doc,"window");return q.addEventListener("popstate",F,!1),()=>q.removeEventListener("popstate",F)}onHashChange(F){const q=a().getGlobalEventTarget(this._doc,"window");return q.addEventListener("hashchange",F,!1),()=>q.removeEventListener("hashchange",F)}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(F){this._location.pathname=F}pushState(F,q,ft){this._history.pushState(F,q,ft)}replaceState(F,q,ft){this._history.replaceState(F,q,ft)}forward(){this._history.forward()}back(){this._history.back()}historyGo(F=0){this._history.go(F)}getState(){return this._history.state}static#e=this.\u0275fac=function(q){return new(q||D)};static#t=this.\u0275prov=i.wxM({token:D,factory:()=>new D,providedIn:"platform"})}return D})();function J(D,he){if(0==D.length)return he;if(0==he.length)return D;let F=0;return D.endsWith("/")&&F++,he.startsWith("/")&&F++,2==F?D+he.substring(1):1==F?D+he:D+"/"+he}function ie(D){const he=D.match(/#|\?|$/),F=he&&he.index||D.length;return D.slice(0,F-("/"===D[F-1]?1:0))+D.slice(F)}function ae(D){return D&&"?"!==D[0]?"?"+D:D}let Ie=(()=>{class D{historyGo(F){throw new Error("")}static#e=this.\u0275fac=function(q){return new(q||D)};static#t=this.\u0275prov=i.wxM({token:D,factory:()=>(0,i.uUt)(Ge),providedIn:"root"})}return D})();const Ee=new i.UbH("");let Ge=(()=>{class D extends Ie{constructor(F,q){super(),this._platformLocation=F,this._removeListenerFns=[],this._baseHref=q??this._platformLocation.getBaseHrefFromDOM()??(0,i.uUt)(g).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(F){this._removeListenerFns.push(this._platformLocation.onPopState(F),this._platformLocation.onHashChange(F))}getBaseHref(){return this._baseHref}prepareExternalUrl(F){return J(this._baseHref,F)}path(F=!1){const q=this._platformLocation.pathname+ae(this._platformLocation.search),ft=this._platformLocation.hash;return ft&&F?`${q}${ft}`:q}pushState(F,q,ft,Qt){const hi=this.prepareExternalUrl(ft+ae(Qt));this._platformLocation.pushState(F,q,hi)}replaceState(F,q,ft,Qt){const hi=this.prepareExternalUrl(ft+ae(Qt));this._platformLocation.replaceState(F,q,hi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(F=0){this._platformLocation.historyGo?.(F)}static#e=this.\u0275fac=function(q){return new(q||D)(i.CoB(b),i.CoB(Ee,8))};static#t=this.\u0275prov=i.wxM({token:D,factory:D.\u0275fac,providedIn:"root"})}return D})(),tt=(()=>{class D extends Ie{constructor(F,q){super(),this._platformLocation=F,this._baseHref="",this._removeListenerFns=[],null!=q&&(this._baseHref=q)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(F){this._removeListenerFns.push(this._platformLocation.onPopState(F),this._platformLocation.onHashChange(F))}getBaseHref(){return this._baseHref}path(F=!1){const q=this._platformLocation.hash??"#";return q.length>0?q.substring(1):q}prepareExternalUrl(F){const q=J(this._baseHref,F);return q.length>0?"#"+q:q}pushState(F,q,ft,Qt){let hi=this.prepareExternalUrl(ft+ae(Qt));0==hi.length&&(hi=this._platformLocation.pathname),this._platformLocation.pushState(F,q,hi)}replaceState(F,q,ft,Qt){let hi=this.prepareExternalUrl(ft+ae(Qt));0==hi.length&&(hi=this._platformLocation.pathname),this._platformLocation.replaceState(F,q,hi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(F=0){this._platformLocation.historyGo?.(F)}static#e=this.\u0275fac=function(q){return new(q||D)(i.CoB(b),i.CoB(Ee,8))};static#t=this.\u0275prov=i.wxM({token:D,factory:D.\u0275fac})}return D})(),gt=(()=>{class D{constructor(F){this._subject=new i._w7,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=F;const q=this._locationStrategy.getBaseHref();this._basePath=function et(D){if(new RegExp("^(https?:)?//").test(D)){const[,F]=D.split(/\/\/[^\/]+/);return F}return D}(ie(Ye(q))),this._locationStrategy.onPopState(ft=>{this._subject.emit({url:this.path(!0),pop:!0,state:ft.state,type:ft.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(F=!1){return this.normalize(this._locationStrategy.path(F))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(F,q=""){return this.path()==this.normalize(F+ae(q))}normalize(F){return D.stripTrailingSlash(function kt(D,he){if(!D||!he.startsWith(D))return he;const F=he.substring(D.length);return""===F||["/",";","?","#"].includes(F[0])?F:he}(this._basePath,Ye(F)))}prepareExternalUrl(F){return F&&"/"!==F[0]&&(F="/"+F),this._locationStrategy.prepareExternalUrl(F)}go(F,q="",ft=null){this._locationStrategy.pushState(ft,"",F,q),this._notifyUrlChangeListeners(this.prepareExternalUrl(F+ae(q)),ft)}replaceState(F,q="",ft=null){this._locationStrategy.replaceState(ft,"",F,q),this._notifyUrlChangeListeners(this.prepareExternalUrl(F+ae(q)),ft)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(F=0){this._locationStrategy.historyGo?.(F)}onUrlChange(F){return this._urlChangeListeners.push(F),this._urlChangeSubscription??=this.subscribe(q=>{this._notifyUrlChangeListeners(q.url,q.state)}),()=>{const q=this._urlChangeListeners.indexOf(F);this._urlChangeListeners.splice(q,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(F="",q){this._urlChangeListeners.forEach(ft=>ft(F,q))}subscribe(F,q,ft){return this._subject.subscribe({next:F,error:q,complete:ft})}static#e=this.normalizeQueryParams=ae;static#t=this.joinWithSlash=J;static#i=this.stripTrailingSlash=ie;static#n=this.\u0275fac=function(q){return new(q||D)(i.CoB(Ie))};static#r=this.\u0275prov=i.wxM({token:D,factory:()=>function Bt(){return new gt((0,i.CoB)(Ie))}(),providedIn:"root"})}return D})();function Ye(D){return D.replace(/\/index.html$/,"")}const Q={ADP:[void 0,void 0,0],AFN:[void 0,"\u060b",0],ALL:[void 0,void 0,0],AMD:[void 0,"\u058f",2],AOA:[void 0,"Kz"],ARS:[void 0,"$"],AUD:["A$","$"],AZN:[void 0,"\u20bc"],BAM:[void 0,"KM"],BBD:[void 0,"$"],BDT:[void 0,"\u09f3"],BHD:[void 0,void 0,3],BIF:[void 0,void 0,0],BMD:[void 0,"$"],BND:[void 0,"$"],BOB:[void 0,"Bs"],BRL:["R$"],BSD:[void 0,"$"],BWP:[void 0,"P"],BYN:[void 0,void 0,2],BYR:[void 0,void 0,0],BZD:[void 0,"$"],CAD:["CA$","$",2],CHF:[void 0,void 0,2],CLF:[void 0,void 0,4],CLP:[void 0,"$",0],CNY:["CN\xa5","\xa5"],COP:[void 0,"$",2],CRC:[void 0,"\u20a1",2],CUC:[void 0,"$"],CUP:[void 0,"$"],CZK:[void 0,"K\u010d",2],DJF:[void 0,void 0,0],DKK:[void 0,"kr",2],DOP:[void 0,"$"],EGP:[void 0,"E\xa3"],ESP:[void 0,"\u20a7",0],EUR:["\u20ac"],FJD:[void 0,"$"],FKP:[void 0,"\xa3"],GBP:["\xa3"],GEL:[void 0,"\u20be"],GHS:[void 0,"GH\u20b5"],GIP:[void 0,"\xa3"],GNF:[void 0,"FG",0],GTQ:[void 0,"Q"],GYD:[void 0,"$",2],HKD:["HK$","$"],HNL:[void 0,"L"],HRK:[void 0,"kn"],HUF:[void 0,"Ft",2],IDR:[void 0,"Rp",2],ILS:["\u20aa"],INR:["\u20b9"],IQD:[void 0,void 0,0],IRR:[void 0,void 0,0],ISK:[void 0,"kr",0],ITL:[void 0,void 0,0],JMD:[void 0,"$"],JOD:[void 0,void 0,3],JPY:["\xa5",void 0,0],KHR:[void 0,"\u17db"],KMF:[void 0,"CF",0],KPW:[void 0,"\u20a9",0],KRW:["\u20a9",void 0,0],KWD:[void 0,void 0,3],KYD:[void 0,"$"],KZT:[void 0,"\u20b8"],LAK:[void 0,"\u20ad",0],LBP:[void 0,"L\xa3",0],LKR:[void 0,"Rs"],LRD:[void 0,"$"],LTL:[void 0,"Lt"],LUF:[void 0,void 0,0],LVL:[void 0,"Ls"],LYD:[void 0,void 0,3],MGA:[void 0,"Ar",0],MGF:[void 0,void 0,0],MMK:[void 0,"K",0],MNT:[void 0,"\u20ae",2],MRO:[void 0,void 0,0],MUR:[void 0,"Rs",2],MXN:["MX$","$"],MYR:[void 0,"RM"],NAD:[void 0,"$"],NGN:[void 0,"\u20a6"],NIO:[void 0,"C$"],NOK:[void 0,"kr",2],NPR:[void 0,"Rs"],NZD:["NZ$","$"],OMR:[void 0,void 0,3],PHP:["\u20b1"],PKR:[void 0,"Rs",2],PLN:[void 0,"z\u0142"],PYG:[void 0,"\u20b2",0],RON:[void 0,"lei"],RSD:[void 0,void 0,0],RUB:[void 0,"\u20bd"],RWF:[void 0,"RF",0],SBD:[void 0,"$"],SEK:[void 0,"kr",2],SGD:[void 0,"$"],SHP:[void 0,"\xa3"],SLE:[void 0,void 0,2],SLL:[void 0,void 0,0],SOS:[void 0,void 0,0],SRD:[void 0,"$"],SSP:[void 0,"\xa3"],STD:[void 0,void 0,0],STN:[void 0,"Db"],SYP:[void 0,"\xa3",0],THB:[void 0,"\u0e3f"],TMM:[void 0,void 0,0],TND:[void 0,void 0,3],TOP:[void 0,"T$"],TRL:[void 0,void 0,0],TRY:[void 0,"\u20ba"],TTD:[void 0,"$"],TWD:["NT$","$",2],TZS:[void 0,void 0,2],UAH:[void 0,"\u20b4"],UGX:[void 0,void 0,0],USD:["$"],UYI:[void 0,void 0,0],UYU:[void 0,"$"],UYW:[void 0,void 0,4],UZS:[void 0,void 0,2],VEF:[void 0,"Bs",2],VND:["\u20ab",void 0,0],VUV:[void 0,void 0,0],XAF:["FCFA",void 0,0],XCD:["EC$","$"],XOF:["F\u202fCFA",void 0,0],XPF:["CFPF",void 0,0],XXX:["\xa4"],YER:[void 0,void 0,0],ZAR:[void 0,"R"],ZMK:[void 0,void 0,0],ZMW:[void 0,"ZK"],ZWD:[void 0,void 0,0]};var _e=function(D){return D[D.Decimal=0]="Decimal",D[D.Percent=1]="Percent",D[D.Currency=2]="Currency",D[D.Scientific=3]="Scientific",D}(_e||{}),Re=function(D){return D[D.Format=0]="Format",D[D.Standalone=1]="Standalone",D}(Re||{}),Xe=function(D){return D[D.Narrow=0]="Narrow",D[D.Abbreviated=1]="Abbreviated",D[D.Wide=2]="Wide",D[D.Short=3]="Short",D}(Xe||{}),$e=function(D){return D[D.Short=0]="Short",D[D.Medium=1]="Medium",D[D.Long=2]="Long",D[D.Full=3]="Full",D}($e||{}),oe=function(D){return D[D.Decimal=0]="Decimal",D[D.Group=1]="Group",D[D.List=2]="List",D[D.PercentSign=3]="PercentSign",D[D.PlusSign=4]="PlusSign",D[D.MinusSign=5]="MinusSign",D[D.Exponential=6]="Exponential",D[D.SuperscriptingExponent=7]="SuperscriptingExponent",D[D.PerMille=8]="PerMille",D[D.Infinity=9]="Infinity",D[D.NaN=10]="NaN",D[D.TimeSeparator=11]="TimeSeparator",D[D.CurrencyDecimal=12]="CurrencyDecimal",D[D.CurrencyGroup=13]="CurrencyGroup",D}(oe||{});function Le(D,he){return Lt((0,i.iMv)(D)[i.GUM.DateFormat],he)}function Ve(D,he){return Lt((0,i.iMv)(D)[i.GUM.TimeFormat],he)}function te(D,he){return Lt((0,i.iMv)(D)[i.GUM.DateTimeFormat],he)}function ge(D,he){const F=(0,i.iMv)(D),q=F[i.GUM.NumberSymbols][he];if(typeof q>"u"){if(he===oe.CurrencyDecimal)return F[i.GUM.NumberSymbols][oe.Decimal];if(he===oe.CurrencyGroup)return F[i.GUM.NumberSymbols][oe.Group]}return q}function U(D){if(!D[i.GUM.ExtraData])throw new Error(`Missing extra locale data for the locale "${D[i.GUM.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function Lt(D,he){for(let F=he;F>-1;F--)if(typeof D[F]<"u")return D[F];throw new Error("Locale data API: locale data undefined")}function Kt(D){const[he,F]=D.split(":");return{hours:+he,minutes:+F}}const wt=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,zt={},Dt=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;var ve=function(D){return D[D.Short=0]="Short",D[D.ShortGMT=1]="ShortGMT",D[D.Long=2]="Long",D[D.Extended=3]="Extended",D}(ve||{}),Te=function(D){return D[D.FullYear=0]="FullYear",D[D.Month=1]="Month",D[D.Date=2]="Date",D[D.Hours=3]="Hours",D[D.Minutes=4]="Minutes",D[D.Seconds=5]="Seconds",D[D.FractionalSeconds=6]="FractionalSeconds",D[D.Day=7]="Day",D}(Te||{}),at=function(D){return D[D.DayPeriods=0]="DayPeriods",D[D.Days=1]="Days",D[D.Months=2]="Months",D[D.Eras=3]="Eras",D}(at||{});function Ze(D,he,F,q){let ft=function bt(D){if(Ue(D))return D;if("number"==typeof D&&!isNaN(D))return new Date(D);if("string"==typeof D){if(D=D.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(D)){const[ft,Qt=1,hi=1]=D.split("-").map(Ai=>+Ai);return pt(ft,Qt-1,hi)}const F=parseFloat(D);if(!isNaN(D-F))return new Date(F);let q;if(q=D.match(wt))return function yt(D){const he=new Date(0);let F=0,q=0;const ft=D[8]?he.setUTCFullYear:he.setFullYear,Qt=D[8]?he.setUTCHours:he.setHours;D[9]&&(F=Number(D[9]+D[10]),q=Number(D[9]+D[11])),ft.call(he,Number(D[1]),Number(D[2])-1,Number(D[3]));const hi=Number(D[4]||0)-F,Ai=Number(D[5]||0)-q,Tn=Number(D[6]||0),An=Math.floor(1e3*parseFloat("0."+(D[7]||0)));return Qt.call(he,hi,Ai,Tn,An),he}(q)}const he=new Date(D);if(!Ue(he))throw new Error(`Unable to convert "${D}" into a date`);return he}(D);he=le(F,he)||he;let Ai,hi=[];for(;he;){if(Ai=Dt.exec(he),!Ai){hi.push(he);break}{hi=hi.concat(Ai.slice(1));const Ln=hi.pop();if(!Ln)break;he=Ln}}let Tn=ft.getTimezoneOffset();q&&(Tn=$(q,Tn),ft=function At(D,he,F){const q=F?-1:1,ft=D.getTimezoneOffset();return function ze(D,he){return(D=new Date(D.getTime())).setMinutes(D.getMinutes()+he),D}(D,q*($(he,ft)-ft))}(ft,q,!0));let An="";return hi.forEach(Ln=>{const Ki=function S(D){if(w[D])return w[D];let he;switch(D){case"G":case"GG":case"GGG":he=Mt(at.Eras,Xe.Abbreviated);break;case"GGGG":he=Mt(at.Eras,Xe.Wide);break;case"GGGGG":he=Mt(at.Eras,Xe.Narrow);break;case"y":he=Ht(Te.FullYear,1,0,!1,!0);break;case"yy":he=Ht(Te.FullYear,2,0,!0,!0);break;case"yyy":he=Ht(Te.FullYear,3,0,!1,!0);break;case"yyyy":he=Ht(Te.FullYear,4,0,!1,!0);break;case"Y":he=_(1);break;case"YY":he=_(2,!0);break;case"YYY":he=_(3);break;case"YYYY":he=_(4);break;case"M":case"L":he=Ht(Te.Month,1,1);break;case"MM":case"LL":he=Ht(Te.Month,2,1);break;case"MMM":he=Mt(at.Months,Xe.Abbreviated);break;case"MMMM":he=Mt(at.Months,Xe.Wide);break;case"MMMMM":he=Mt(at.Months,Xe.Narrow);break;case"LLL":he=Mt(at.Months,Xe.Abbreviated,Re.Standalone);break;case"LLLL":he=Mt(at.Months,Xe.Wide,Re.Standalone);break;case"LLLLL":he=Mt(at.Months,Xe.Narrow,Re.Standalone);break;case"w":he=Ce(1);break;case"ww":he=Ce(2);break;case"W":he=Ce(1,!0);break;case"d":he=Ht(Te.Date,1);break;case"dd":he=Ht(Te.Date,2);break;case"c":case"cc":he=Ht(Te.Day,1);break;case"ccc":he=Mt(at.Days,Xe.Abbreviated,Re.Standalone);break;case"cccc":he=Mt(at.Days,Xe.Wide,Re.Standalone);break;case"ccccc":he=Mt(at.Days,Xe.Narrow,Re.Standalone);break;case"cccccc":he=Mt(at.Days,Xe.Short,Re.Standalone);break;case"E":case"EE":case"EEE":he=Mt(at.Days,Xe.Abbreviated);break;case"EEEE":he=Mt(at.Days,Xe.Wide);break;case"EEEEE":he=Mt(at.Days,Xe.Narrow);break;case"EEEEEE":he=Mt(at.Days,Xe.Short);break;case"a":case"aa":case"aaa":he=Mt(at.DayPeriods,Xe.Abbreviated);break;case"aaaa":he=Mt(at.DayPeriods,Xe.Wide);break;case"aaaaa":he=Mt(at.DayPeriods,Xe.Narrow);break;case"b":case"bb":case"bbb":he=Mt(at.DayPeriods,Xe.Abbreviated,Re.Standalone,!0);break;case"bbbb":he=Mt(at.DayPeriods,Xe.Wide,Re.Standalone,!0);break;case"bbbbb":he=Mt(at.DayPeriods,Xe.Narrow,Re.Standalone,!0);break;case"B":case"BB":case"BBB":he=Mt(at.DayPeriods,Xe.Abbreviated,Re.Format,!0);break;case"BBBB":he=Mt(at.DayPeriods,Xe.Wide,Re.Format,!0);break;case"BBBBB":he=Mt(at.DayPeriods,Xe.Narrow,Re.Format,!0);break;case"h":he=Ht(Te.Hours,1,-12);break;case"hh":he=Ht(Te.Hours,2,-12);break;case"H":he=Ht(Te.Hours,1);break;case"HH":he=Ht(Te.Hours,2);break;case"m":he=Ht(Te.Minutes,1);break;case"mm":he=Ht(Te.Minutes,2);break;case"s":he=Ht(Te.Seconds,1);break;case"ss":he=Ht(Te.Seconds,2);break;case"S":he=Ht(Te.FractionalSeconds,1);break;case"SS":he=Ht(Te.FractionalSeconds,2);break;case"SSS":he=Ht(Te.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":he=it(ve.Short);break;case"ZZZZZ":he=it(ve.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":he=it(ve.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":he=it(ve.Long);break;default:return null}return w[D]=he,he}(Ln);An+=Ki?Ki(ft,F,Tn):"''"===Ln?"'":Ln.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),An}function pt(D,he,F){const q=new Date(0);return q.setFullYear(D,he,F),q.setHours(0,0,0),q}function le(D,he){const F=function st(D){return(0,i.iMv)(D)[i.GUM.LocaleId]}(D);if(zt[F]??={},zt[F][he])return zt[F][he];let q="";switch(he){case"shortDate":q=Le(D,$e.Short);break;case"mediumDate":q=Le(D,$e.Medium);break;case"longDate":q=Le(D,$e.Long);break;case"fullDate":q=Le(D,$e.Full);break;case"shortTime":q=Ve(D,$e.Short);break;case"mediumTime":q=Ve(D,$e.Medium);break;case"longTime":q=Ve(D,$e.Long);break;case"fullTime":q=Ve(D,$e.Full);break;case"short":const ft=le(D,"shortTime"),Qt=le(D,"shortDate");q=xe(te(D,$e.Short),[ft,Qt]);break;case"medium":const hi=le(D,"mediumTime"),Ai=le(D,"mediumDate");q=xe(te(D,$e.Medium),[hi,Ai]);break;case"long":const Tn=le(D,"longTime"),An=le(D,"longDate");q=xe(te(D,$e.Long),[Tn,An]);break;case"full":const Ln=le(D,"fullTime"),Ki=le(D,"fullDate");q=xe(te(D,$e.Full),[Ln,Ki])}return q&&(zt[F][he]=q),q}function xe(D,he){return he&&(D=D.replace(/\{([^}]+)}/g,function(F,q){return null!=he&&q in he?he[q]:F})),D}function Pe(D,he,F="-",q,ft){let Qt="";(D<0||ft&&D<=0)&&(ft?D=1-D:(D=-D,Qt=F));let hi=String(D);for(;hi.length0||Ai>-F)&&(Ai+=F),D===Te.Hours)0===Ai&&-12===F&&(Ai=12);else if(D===Te.FractionalSeconds)return function ht(D,he){return Pe(D,3).substring(0,he)}(Ai,he);const Tn=ge(hi,oe.MinusSign);return Pe(Ai,he,Tn,q,ft)}}function Mt(D,he,F=Re.Format,q=!1){return function(ft,Qt){return function fe(D,he,F,q,ft,Qt){switch(F){case at.Months:return function Jt(D,he,F){const q=(0,i.iMv)(D),Qt=Lt([q[i.GUM.MonthsFormat],q[i.GUM.MonthsStandalone]],he);return Lt(Qt,F)}(he,ft,q)[D.getMonth()];case at.Days:return function oi(D,he,F){const q=(0,i.iMv)(D),Qt=Lt([q[i.GUM.DaysFormat],q[i.GUM.DaysStandalone]],he);return Lt(Qt,F)}(he,ft,q)[D.getDay()];case at.DayPeriods:const hi=D.getHours(),Ai=D.getMinutes();if(Qt){const An=function Fe(D){const he=(0,i.iMv)(D);return U(he),(he[i.GUM.ExtraData][2]||[]).map(q=>"string"==typeof q?Kt(q):[Kt(q[0]),Kt(q[1])])}(he),Ln=function Tt(D,he,F){const q=(0,i.iMv)(D);U(q);const Qt=Lt([q[i.GUM.ExtraData][0],q[i.GUM.ExtraData][1]],he)||[];return Lt(Qt,F)||[]}(he,ft,q),Ki=An.findIndex(On=>{if(Array.isArray(On)){const[Dn,sr]=On,Yr=hi>=Dn.hours&&Ai>=Dn.minutes,Qn=hi0?Math.floor(ft/60):Math.ceil(ft/60);switch(D){case ve.Short:return(ft>=0?"+":"")+Pe(hi,2,Qt)+Pe(Math.abs(ft%60),2,Qt);case ve.ShortGMT:return"GMT"+(ft>=0?"+":"")+Pe(hi,1,Qt);case ve.Long:return"GMT"+(ft>=0?"+":"")+Pe(hi,2,Qt)+":"+Pe(Math.abs(ft%60),2,Qt);case ve.Extended:return 0===q?"Z":(ft>=0?"+":"")+Pe(hi,2,Qt)+":"+Pe(Math.abs(ft%60),2,Qt);default:throw new Error(`Unknown zone width "${D}"`)}}}const Et=0,ct=4;function V(D){const he=D.getDay(),F=0===he?-3:ct-he;return pt(D.getFullYear(),D.getMonth(),D.getDate()+F)}function Ce(D,he=!1){return function(F,q){let ft;if(he){const Qt=new Date(F.getFullYear(),F.getMonth(),1).getDay()-1,hi=F.getDate();ft=1+Math.floor((hi+Qt)/7)}else{const Qt=V(F),hi=function ri(D){const he=pt(D,Et,1).getDay();return pt(D,0,1+(he<=ct?ct:ct+7)-he)}(Qt.getFullYear()),Ai=Qt.getTime()-hi.getTime();ft=1+Math.round(Ai/6048e5)}return Pe(ft,D,ge(q,oe.MinusSign))}}function _(D,he=!1){return function(F,q){return Pe(V(F).getFullYear(),D,ge(q,oe.MinusSign),he)}}const w={};function $(D,he){D=D.replace(/:/g,"");const F=Date.parse("Jan 01, 1970 00:00:00 "+D)/6e4;return isNaN(F)?he:F}function Ue(D){return D instanceof Date&&!isNaN(D.valueOf())}const Ft=/^(\d+)?\.((\d+)(-(\d+))?)?$/,di=22,Ei=".",Vt="0",Ci=";",We=",",nt="#";function Ti(D,he,F,q,ft){const hi=function an(D,he="-"){const F={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},q=D.split(Ci),ft=q[0],Qt=q[1],hi=-1!==ft.indexOf(Ei)?ft.split(Ei):[ft.substring(0,ft.lastIndexOf(Vt)+1),ft.substring(ft.lastIndexOf(Vt)+1)],Ai=hi[0],Tn=hi[1]||"";F.posPre=Ai.substring(0,Ai.indexOf(nt));for(let Ln=0;Ln-1&&(he=he.replace(Ei,"")),(Qt=he.search(/e/i))>0?(ft<0&&(ft=Qt),ft+=+he.slice(Qt+1),he=he.substring(0,Qt)):ft<0&&(ft=he.length),Qt=0;he.charAt(Qt)===Vt;Qt++);if(Qt===(Ai=he.length))q=[0],ft=1;else{for(Ai--;he.charAt(Ai)===Vt;)Ai--;for(ft-=Qt,q=[],hi=0;Qt<=Ai;Qt++,hi++)q[hi]=Number(he.charAt(Qt))}return ft>di&&(q=q.splice(0,di-1),F=ft-1,ft=1),{digits:q,exponent:F,integerLen:ft}}(D);hi&&(An=function Xn(D){if(0===D.digits[0])return D;const he=D.digits.length-D.integerLen;return D.exponent?D.exponent+=2:(0===he?D.digits.push(0,0):1===he&&D.digits.push(0),D.integerLen+=2),D}(An));let Ln=he.minInt,Ki=he.minFrac,On=he.maxFrac;if(Qt){const Jn=Qt.match(Ft);if(null===Jn)throw new Error(`${Qt} is not a valid digit info`);const vr=Jn[1],vn=Jn[3],Ra=Jn[5];null!=vr&&(Ln=Me(vr)),null!=vn&&(Ki=Me(vn)),null!=Ra?On=Me(Ra):null!=vn&&Ki>On&&(On=Ki)}!function gi(D,he,F){if(he>F)throw new Error(`The minimum number of digits after fraction (${he}) is higher than the maximum (${F}).`);let q=D.digits,ft=q.length-D.integerLen;const Qt=Math.min(Math.max(he,ft),F);let hi=Qt+D.integerLen,Ai=q[hi];if(hi>0){q.splice(Math.max(D.integerLen,hi));for(let Ki=hi;Ki=5)if(hi-1<0){for(let Ki=0;Ki>hi;Ki--)q.unshift(0),D.integerLen++;q.unshift(1),D.integerLen++}else q[hi-1]++;for(;ft=An?sr.pop():Tn=!1),On>=10?1:0},0);Ln&&(q.unshift(Ln),D.integerLen++)}(An,Ki,On);let Dn=An.digits,sr=An.integerLen;const Yr=An.exponent;let Qn=[];for(Tn=Dn.every(Jn=>!Jn);sr0?Qn=Dn.splice(sr,Dn.length):(Qn=Dn,Dn=[0]);const Oa=[];for(Dn.length>=he.lgSize&&Oa.unshift(Dn.splice(-he.lgSize,Dn.length).join(""));Dn.length>he.gSize;)Oa.unshift(Dn.splice(-he.gSize,Dn.length).join(""));Dn.length&&Oa.unshift(Dn.join("")),Ai=Oa.join(ge(F,q)),Qn.length&&(Ai+=ge(F,ft)+Qn.join("")),Yr&&(Ai+=ge(F,oe.Exponential)+"+"+Yr)}else Ai=ge(F,oe.Infinity);return Ai=D<0&&!Tn?he.negPre+Ai+he.negSuf:he.posPre+Ai+he.posSuf,Ai}(D,hi,he,oe.CurrencyGroup,oe.CurrencyDecimal,ft).replace("\xa4",F).replace("\xa4","").trim()}function Me(D){const he=parseInt(D);if(isNaN(he))throw new Error("Invalid integer literal when parsing "+D);return he}function re(D,he){he=encodeURIComponent(he);for(const F of D.split(";")){const q=F.indexOf("="),[ft,Qt]=-1==q?[F,""]:[F.slice(0,q),F.slice(q+1)];if(ft.trim()===he)return decodeURIComponent(Qt)}return null}const mt=/\s+/,Wt=[];let Zt=(()=>{class D{constructor(F,q){this._ngEl=F,this._renderer=q,this.initialClasses=Wt,this.stateMap=new Map}set klass(F){this.initialClasses=null!=F?F.trim().split(mt):Wt}set ngClass(F){this.rawClass="string"==typeof F?F.trim().split(mt):F}ngDoCheck(){for(const q of this.initialClasses)this._updateState(q,!0);const F=this.rawClass;if(Array.isArray(F)||F instanceof Set)for(const q of F)this._updateState(q,!0);else if(null!=F)for(const q of Object.keys(F))this._updateState(q,!!F[q]);this._applyStateDiff()}_updateState(F,q){const ft=this.stateMap.get(F);void 0!==ft?(ft.enabled!==q&&(ft.changed=!0,ft.enabled=q),ft.touched=!0):this.stateMap.set(F,{enabled:q,changed:!0,touched:!0})}_applyStateDiff(){for(const F of this.stateMap){const q=F[0],ft=F[1];ft.changed?(this._toggleClass(q,ft.enabled),ft.changed=!1):ft.touched||(ft.enabled&&this._toggleClass(q,!1),this.stateMap.delete(q)),ft.touched=!1}}_toggleClass(F,q){(F=F.trim()).length>0&&F.split(mt).forEach(ft=>{q?this._renderer.addClass(this._ngEl.nativeElement,ft):this._renderer.removeClass(this._ngEl.nativeElement,ft)})}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.GMv),i.GI1(i.q87))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngClass",""]],inputs:{klass:[i.Wk5.None,"class","klass"],ngClass:"ngClass"},standalone:!0})}return D})();class ot{constructor(he,F,q,ft){this.$implicit=he,this.ngForOf=F,this.index=q,this.count=ft}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 mi=(()=>{class D{set ngForOf(F){this._ngForOf=F,this._ngForOfDirty=!0}set ngForTrackBy(F){this._trackByFn=F}get ngForTrackBy(){return this._trackByFn}constructor(F,q,ft){this._viewContainer=F,this._template=q,this._differs=ft,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForTemplate(F){F&&(this._template=F)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const F=this._ngForOf;!this._differ&&F&&(this._differ=this._differs.find(F).create(this.ngForTrackBy))}if(this._differ){const F=this._differ.diff(this._ngForOf);F&&this._applyChanges(F)}}_applyChanges(F){const q=this._viewContainer;F.forEachOperation((ft,Qt,hi)=>{if(null==ft.previousIndex)q.createEmbeddedView(this._template,new ot(ft.item,this._ngForOf,-1,-1),null===hi?void 0:hi);else if(null==hi)q.remove(null===Qt?void 0:Qt);else if(null!==Qt){const Ai=q.get(Qt);q.move(Ai,hi),k(Ai,ft)}});for(let ft=0,Qt=q.length;ft{k(q.get(ft.currentIndex),ft)})}static ngTemplateContextGuard(F,q){return!0}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.y8U),i.GI1(i.Yw2),i.GI1(i.Uj7))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0})}return D})();function k(D,he){D.context.$implicit=he.item}let K=(()=>{class D{constructor(F,q){this._viewContainer=F,this._context=new Be,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=q}set ngIf(F){this._context.$implicit=this._context.ngIf=F,this._updateView()}set ngIfThen(F){Yt("ngIfThen",F),this._thenTemplateRef=F,this._thenViewRef=null,this._updateView()}set ngIfElse(F){Yt("ngIfElse",F),this._elseTemplateRef=F,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(F,q){return!0}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.y8U),i.GI1(i.Yw2))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0})}return D})();class Be{constructor(){this.$implicit=null,this.ngIf=null}}function Yt(D,he){if(he&&!he.createEmbeddedView)throw new Error(`${D} must be a TemplateRef, but received '${(0,i.GEN)(he)}'.`)}class ji{constructor(he,F){this._viewContainerRef=he,this._templateRef=F,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(he){he&&!this._created?this.create():!he&&this._created&&this.destroy()}}let sn=(()=>{class D{constructor(){this._defaultViews=[],this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(F){this._ngSwitch=F,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(F){this._defaultViews.push(F)}_matchCase(F){const q=F===this._ngSwitch;return this._lastCasesMatched||=q,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),q}_updateDefaultCases(F){if(this._defaultViews.length>0&&F!==this._defaultUsed){this._defaultUsed=F;for(const q of this._defaultViews)q.enforceState(F)}}static#e=this.\u0275fac=function(q){return new(q||D)};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0})}return D})(),qn=(()=>{class D{constructor(F,q,ft){this.ngSwitch=ft,ft._addCase(),this._view=new ji(F,q)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.y8U),i.GI1(i.Yw2),i.GI1(sn,9))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0})}return D})(),en=(()=>{class D{constructor(F,q,ft){ft._addDefault(new ji(F,q))}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.y8U),i.GI1(i.Yw2),i.GI1(sn,9))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngSwitchDefault",""]],standalone:!0})}return D})(),Hr=(()=>{class D{constructor(F,q,ft){this._ngEl=F,this._differs=q,this._renderer=ft,this._ngStyle=null,this._differ=null}set ngStyle(F){this._ngStyle=F,!this._differ&&F&&(this._differ=this._differs.find(F).create())}ngDoCheck(){if(this._differ){const F=this._differ.diff(this._ngStyle);F&&this._applyChanges(F)}}_setStyle(F,q){const[ft,Qt]=F.split("."),hi=-1===ft.indexOf("-")?void 0:i.yzm.DashCase;null!=q?this._renderer.setStyle(this._ngEl.nativeElement,ft,Qt?`${q}${Qt}`:q,hi):this._renderer.removeStyle(this._ngEl.nativeElement,ft,hi)}_applyChanges(F){F.forEachRemovedItem(q=>this._setStyle(q.key,null)),F.forEachAddedItem(q=>this._setStyle(q.key,q.currentValue)),F.forEachChangedItem(q=>this._setStyle(q.key,q.currentValue))}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.GMv),i.GI1(i.YNh),i.GI1(i.q87))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0})}return D})(),Er=(()=>{class D{constructor(F){this._viewContainerRef=F,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(F){if(this._shouldRecreateView(F)){const q=this._viewContainerRef;if(this._viewRef&&q.remove(q.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const ft=this._createContextForwardProxy();this._viewRef=q.createEmbeddedView(this.ngTemplateOutlet,ft,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(F){return!!F.ngTemplateOutlet||!!F.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(F,q,ft)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,q,ft),get:(F,q,ft)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,q,ft)}})}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.y8U))};static#t=this.\u0275dir=i.Sc5({type:D,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[i.SYr]})}return D})();function ir(D,he){return new i.OBp(2100,!1)}class Sr{createSubscription(he,F){return(0,i.sRj)(()=>he.subscribe({next:F,error:q=>{throw q}}))}dispose(he){(0,i.sRj)(()=>he.unsubscribe())}}class Zr{createSubscription(he,F){return he.then(F,q=>{throw q})}dispose(he){}}const Xi=new Zr,Fn=new Sr;let _n=(()=>{class D{constructor(F){this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null,this._ref=F}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(F){return this._obj?F!==this._obj?(this._dispose(),this.transform(F)):this._latestValue:(F&&this._subscribe(F),this._latestValue)}_subscribe(F){this._obj=F,this._strategy=this._selectStrategy(F),this._subscription=this._strategy.createSubscription(F,q=>this._updateLatestValue(F,q))}_selectStrategy(F){if((0,i.w5$)(F))return Xi;if((0,i.gX2)(F))return Fn;throw ir()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(F,q){F===this._obj&&(this._latestValue=q,this._ref.markForCheck())}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.kD9,16))};static#t=this.\u0275pipe=i.UTH({name:"async",type:D,pure:!1,standalone:!0})}return D})();const Ar=new i.UbH(""),or=new i.UbH("");let on=(()=>{class D{constructor(F,q,ft){this.locale=F,this.defaultTimezone=q,this.defaultOptions=ft}transform(F,q,ft,Qt){if(null==F||""===F||F!=F)return null;try{return Ze(F,q??this.defaultOptions?.dateFormat??"mediumDate",Qt||this.locale,ft??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(hi){throw ir()}}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.KYU,16),i.GI1(Ar,24),i.GI1(or,24))};static#t=this.\u0275pipe=i.UTH({name:"date",type:D,pure:!0,standalone:!0})}return D})(),Wn=(()=>{class D{constructor(F,q="USD"){this._locale=F,this._defaultCurrencyCode=q}transform(F,q=this._defaultCurrencyCode,ft="symbol",Qt,hi){if(!function Bi(D){return!(null==D||""===D||D!=D)}(F))return null;hi||=this._locale,"boolean"==typeof ft&&(ft=ft?"symbol":"code");let Ai=q||this._defaultCurrencyCode;"code"!==ft&&(Ai="symbol"===ft||"symbol-narrow"===ft?function Ut(D,he,F="en"){const q=function we(D){return(0,i.iMv)(D)[i.GUM.Currencies]}(F)[D]||Q[D]||[],ft=q[1];return"narrow"===he&&"string"==typeof ft?ft:q[0]||D}(Ai,"symbol"===ft?"wide":"narrow",hi):ft);try{return Ti(function fr(D){if("string"==typeof D&&!isNaN(Number(D)-parseFloat(D)))return Number(D);if("number"!=typeof D)throw new Error(`${D} is not a number`);return D}(F),hi,Ai,q,Qt)}catch(Tn){throw ir()}}static#e=this.\u0275fac=function(q){return new(q||D)(i.GI1(i.KYU,16),i.GI1(i.ayF,16))};static#t=this.\u0275pipe=i.UTH({name:"currency",type:D,pure:!0,standalone:!0})}return D})();let xn=(()=>{class D{static#e=this.\u0275fac=function(q){return new(q||D)};static#t=this.\u0275mod=i.a4G({type:D});static#i=this.\u0275inj=i.s3X({})}return D})();const _r="browser",Vr="server";function ln(D){return D===_r}function lr(D){return D===Vr}let ya=(()=>{class D{static#e=this.\u0275prov=(0,i.wxM)({token:D,providedIn:"root",factory:()=>ln((0,i.uUt)(i.AHE))?new oa((0,i.uUt)(g),window):new cr})}return D})();class oa{constructor(he,F){this.document=he,this.window=F,this.offset=()=>[0,0]}setOffset(he){this.offset=Array.isArray(he)?()=>he:he}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(he){this.window.scrollTo(he[0],he[1])}scrollToAnchor(he){const F=function $n(D,he){const F=D.getElementById(he)||D.getElementsByName(he)[0];if(F)return F;if("function"==typeof D.createTreeWalker&&D.body&&"function"==typeof D.body.attachShadow){const q=D.createTreeWalker(D.body,NodeFilter.SHOW_ELEMENT);let ft=q.currentNode;for(;ft;){const Qt=ft.shadowRoot;if(Qt){const hi=Qt.getElementById(he)||Qt.querySelector(`[name="${he}"]`);if(hi)return hi}ft=q.nextNode()}}return null}(this.document,he);F&&(this.scrollToElement(F),F.focus())}setHistoryScrollRestoration(he){this.window.history.scrollRestoration=he}scrollToElement(he){const F=he.getBoundingClientRect(),q=F.left+this.window.pageXOffset,ft=F.top+this.window.pageYOffset,Qt=this.offset();this.window.scrollTo(q-Qt[0],ft-Qt[1])}}class cr{setOffset(he){}getScrollPosition(){return[0,0]}scrollToPosition(he){}scrollToAnchor(he){}setHistoryScrollRestoration(he){}}class yr{}},7048:(lt,me,d)=>{"use strict";d.d(me,{KK:()=>Le,SU:()=>Ci,So:()=>Fe,UD:()=>Ie,WA:()=>Jt,gj:()=>vi,i:()=>ut,i4:()=>et,m:()=>ae}),d(3908);var s=d(2116),a=d(2700),h=d(3252),l=d(4496),f=d(3639),g=d(6684),b=d(4704),R=d(8824),Y=d(7368),J=d(1368);class ie{}class ae{}class Ie{constructor(ee){this.normalizedNames=new Map,this.lazyUpdate=null,ee?"string"==typeof ee?this.lazyInit=()=>{this.headers=new Map,ee.split("\n").forEach(re=>{const mt=re.indexOf(":");if(mt>0){const Wt=re.slice(0,mt),Zt=Wt.toLowerCase(),pi=re.slice(mt+1).trim();this.maybeSetNormalizedName(Wt,Zt),this.headers.has(Zt)?this.headers.get(Zt).push(pi):this.headers.set(Zt,[pi])}})}:typeof Headers<"u"&&ee instanceof Headers?(this.headers=new Map,ee.forEach((re,mt)=>{this.setHeaderEntries(mt,re)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(ee).forEach(([re,mt])=>{this.setHeaderEntries(re,mt)})}:this.headers=new Map}has(ee){return this.init(),this.headers.has(ee.toLowerCase())}get(ee){this.init();const re=this.headers.get(ee.toLowerCase());return re&&re.length>0?re[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(ee){return this.init(),this.headers.get(ee.toLowerCase())||null}append(ee,re){return this.clone({name:ee,value:re,op:"a"})}set(ee,re){return this.clone({name:ee,value:re,op:"s"})}delete(ee,re){return this.clone({name:ee,value:re,op:"d"})}maybeSetNormalizedName(ee,re){this.normalizedNames.has(re)||this.normalizedNames.set(re,ee)}init(){this.lazyInit&&(this.lazyInit instanceof Ie?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(ee=>this.applyUpdate(ee)),this.lazyUpdate=null))}copyFrom(ee){ee.init(),Array.from(ee.headers.keys()).forEach(re=>{this.headers.set(re,ee.headers.get(re)),this.normalizedNames.set(re,ee.normalizedNames.get(re))})}clone(ee){const re=new Ie;return re.lazyInit=this.lazyInit&&this.lazyInit instanceof Ie?this.lazyInit:this,re.lazyUpdate=(this.lazyUpdate||[]).concat([ee]),re}applyUpdate(ee){const re=ee.name.toLowerCase();switch(ee.op){case"a":case"s":let mt=ee.value;if("string"==typeof mt&&(mt=[mt]),0===mt.length)return;this.maybeSetNormalizedName(ee.name,re);const Wt=("a"===ee.op?this.headers.get(re):void 0)||[];Wt.push(...mt),this.headers.set(re,Wt);break;case"d":const Zt=ee.value;if(Zt){let pi=this.headers.get(re);if(!pi)return;pi=pi.filter(Li=>-1===Zt.indexOf(Li)),0===pi.length?(this.headers.delete(re),this.normalizedNames.delete(re)):this.headers.set(re,pi)}else this.headers.delete(re),this.normalizedNames.delete(re)}}setHeaderEntries(ee,re){const mt=(Array.isArray(re)?re:[re]).map(Zt=>Zt.toString()),Wt=ee.toLowerCase();this.headers.set(Wt,mt),this.maybeSetNormalizedName(ee,Wt)}forEach(ee){this.init(),Array.from(this.normalizedNames.keys()).forEach(re=>ee(this.normalizedNames.get(re),this.headers.get(re)))}}class Ge{encodeKey(ee){return kt(ee)}encodeValue(ee){return kt(ee)}decodeKey(ee){return decodeURIComponent(ee)}decodeValue(ee){return decodeURIComponent(ee)}}const gt=/%(\d[a-f0-9])/gi,Bt={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function kt(A){return encodeURIComponent(A).replace(gt,(ee,re)=>Bt[re]??ee)}function Ye(A){return`${A}`}class et{constructor(ee={}){if(this.updates=null,this.cloneFrom=null,this.encoder=ee.encoder||new Ge,ee.fromString){if(ee.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function tt(A,ee){const re=new Map;return A.length>0&&A.replace(/^\?/,"").split("&").forEach(Wt=>{const Zt=Wt.indexOf("="),[pi,Li]=-1==Zt?[ee.decodeKey(Wt),""]:[ee.decodeKey(Wt.slice(0,Zt)),ee.decodeValue(Wt.slice(Zt+1))],ot=re.get(pi)||[];ot.push(Li),re.set(pi,ot)}),re}(ee.fromString,this.encoder)}else ee.fromObject?(this.map=new Map,Object.keys(ee.fromObject).forEach(re=>{const mt=ee.fromObject[re],Wt=Array.isArray(mt)?mt.map(Ye):[Ye(mt)];this.map.set(re,Wt)})):this.map=null}has(ee){return this.init(),this.map.has(ee)}get(ee){this.init();const re=this.map.get(ee);return re?re[0]:null}getAll(ee){return this.init(),this.map.get(ee)||null}keys(){return this.init(),Array.from(this.map.keys())}append(ee,re){return this.clone({param:ee,value:re,op:"a"})}appendAll(ee){const re=[];return Object.keys(ee).forEach(mt=>{const Wt=ee[mt];Array.isArray(Wt)?Wt.forEach(Zt=>{re.push({param:mt,value:Zt,op:"a"})}):re.push({param:mt,value:Wt,op:"a"})}),this.clone(re)}set(ee,re){return this.clone({param:ee,value:re,op:"s"})}delete(ee,re){return this.clone({param:ee,value:re,op:"d"})}toString(){return this.init(),this.keys().map(ee=>{const re=this.encoder.encodeKey(ee);return this.map.get(ee).map(mt=>re+"="+this.encoder.encodeValue(mt)).join("&")}).filter(ee=>""!==ee).join("&")}clone(ee){const re=new et({encoder:this.encoder});return re.cloneFrom=this.cloneFrom||this,re.updates=(this.updates||[]).concat(ee),re}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(ee=>this.map.set(ee,this.cloneFrom.map.get(ee))),this.updates.forEach(ee=>{switch(ee.op){case"a":case"s":const re=("a"===ee.op?this.map.get(ee.param):void 0)||[];re.push(Ye(ee.value)),this.map.set(ee.param,re);break;case"d":if(void 0===ee.value){this.map.delete(ee.param);break}{let mt=this.map.get(ee.param)||[];const Wt=mt.indexOf(Ye(ee.value));-1!==Wt&&mt.splice(Wt,1),mt.length>0?this.map.set(ee.param,mt):this.map.delete(ee.param)}}}),this.cloneFrom=this.updates=null)}}class _e{constructor(){this.map=new Map}set(ee,re){return this.map.set(ee,re),this}get(ee){return this.map.has(ee)||this.map.set(ee,ee.defaultValue()),this.map.get(ee)}delete(ee){return this.map.delete(ee),this}has(ee){return this.map.has(ee)}keys(){return this.map.keys()}}function Re(A){return typeof ArrayBuffer<"u"&&A instanceof ArrayBuffer}function Xe(A){return typeof Blob<"u"&&A instanceof Blob}function $e(A){return typeof FormData<"u"&&A instanceof FormData}class ut{constructor(ee,re,mt,Wt){let Zt;if(this.url=re,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=ee.toUpperCase(),function ye(A){switch(A){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||Wt?(this.body=void 0!==mt?mt:null,Zt=Wt):Zt=mt,Zt&&(this.reportProgress=!!Zt.reportProgress,this.withCredentials=!!Zt.withCredentials,Zt.responseType&&(this.responseType=Zt.responseType),Zt.headers&&(this.headers=Zt.headers),Zt.context&&(this.context=Zt.context),Zt.params&&(this.params=Zt.params),this.transferCache=Zt.transferCache),this.headers??=new Ie,this.context??=new _e,this.params){const pi=this.params.toString();if(0===pi.length)this.urlWithParams=re;else{const Li=re.indexOf("?");this.urlWithParams=re+(-1===Li?"?":Lise.set(K,ee.setHeaders[K]),ot)),ee.setParams&&(mi=Object.keys(ee.setParams).reduce((se,K)=>se.set(K,ee.setParams[K]),mi)),new ut(re,mt,Zt,{params:mi,headers:ot,context:k,reportProgress:Li,responseType:Wt,withCredentials:pi})}}var st=function(A){return A[A.Sent=0]="Sent",A[A.UploadProgress=1]="UploadProgress",A[A.ResponseHeader=2]="ResponseHeader",A[A.DownloadProgress=3]="DownloadProgress",A[A.Response=4]="Response",A[A.User=5]="User",A}(st||{});class $t{constructor(ee,re=je.Ok,mt="OK"){this.headers=ee.headers||new Ie,this.status=void 0!==ee.status?ee.status:re,this.statusText=ee.statusText||mt,this.url=ee.url||null,this.ok=this.status>=200&&this.status<300}}class oi extends $t{constructor(ee={}){super(ee),this.type=st.ResponseHeader}clone(ee={}){return new oi({headers:ee.headers||this.headers,status:void 0!==ee.status?ee.status:this.status,statusText:ee.statusText||this.statusText,url:ee.url||this.url||void 0})}}class Jt extends $t{constructor(ee={}){super(ee),this.type=st.Response,this.body=void 0!==ee.body?ee.body:null}clone(ee={}){return new Jt({body:void 0!==ee.body?ee.body:this.body,headers:ee.headers||this.headers,status:void 0!==ee.status?ee.status:this.status,statusText:ee.statusText||this.statusText,url:ee.url||this.url||void 0})}}class vi extends $t{constructor(ee){super(ee,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${ee.url||"(unknown url)"}`:`Http failure response for ${ee.url||"(unknown url)"}: ${ee.status} ${ee.statusText}`,this.error=ee.error||null}}var je=function(A){return A[A.Continue=100]="Continue",A[A.SwitchingProtocols=101]="SwitchingProtocols",A[A.Processing=102]="Processing",A[A.EarlyHints=103]="EarlyHints",A[A.Ok=200]="Ok",A[A.Created=201]="Created",A[A.Accepted=202]="Accepted",A[A.NonAuthoritativeInformation=203]="NonAuthoritativeInformation",A[A.NoContent=204]="NoContent",A[A.ResetContent=205]="ResetContent",A[A.PartialContent=206]="PartialContent",A[A.MultiStatus=207]="MultiStatus",A[A.AlreadyReported=208]="AlreadyReported",A[A.ImUsed=226]="ImUsed",A[A.MultipleChoices=300]="MultipleChoices",A[A.MovedPermanently=301]="MovedPermanently",A[A.Found=302]="Found",A[A.SeeOther=303]="SeeOther",A[A.NotModified=304]="NotModified",A[A.UseProxy=305]="UseProxy",A[A.Unused=306]="Unused",A[A.TemporaryRedirect=307]="TemporaryRedirect",A[A.PermanentRedirect=308]="PermanentRedirect",A[A.BadRequest=400]="BadRequest",A[A.Unauthorized=401]="Unauthorized",A[A.PaymentRequired=402]="PaymentRequired",A[A.Forbidden=403]="Forbidden",A[A.NotFound=404]="NotFound",A[A.MethodNotAllowed=405]="MethodNotAllowed",A[A.NotAcceptable=406]="NotAcceptable",A[A.ProxyAuthenticationRequired=407]="ProxyAuthenticationRequired",A[A.RequestTimeout=408]="RequestTimeout",A[A.Conflict=409]="Conflict",A[A.Gone=410]="Gone",A[A.LengthRequired=411]="LengthRequired",A[A.PreconditionFailed=412]="PreconditionFailed",A[A.PayloadTooLarge=413]="PayloadTooLarge",A[A.UriTooLong=414]="UriTooLong",A[A.UnsupportedMediaType=415]="UnsupportedMediaType",A[A.RangeNotSatisfiable=416]="RangeNotSatisfiable",A[A.ExpectationFailed=417]="ExpectationFailed",A[A.ImATeapot=418]="ImATeapot",A[A.MisdirectedRequest=421]="MisdirectedRequest",A[A.UnprocessableEntity=422]="UnprocessableEntity",A[A.Locked=423]="Locked",A[A.FailedDependency=424]="FailedDependency",A[A.TooEarly=425]="TooEarly",A[A.UpgradeRequired=426]="UpgradeRequired",A[A.PreconditionRequired=428]="PreconditionRequired",A[A.TooManyRequests=429]="TooManyRequests",A[A.RequestHeaderFieldsTooLarge=431]="RequestHeaderFieldsTooLarge",A[A.UnavailableForLegalReasons=451]="UnavailableForLegalReasons",A[A.InternalServerError=500]="InternalServerError",A[A.NotImplemented=501]="NotImplemented",A[A.BadGateway=502]="BadGateway",A[A.ServiceUnavailable=503]="ServiceUnavailable",A[A.GatewayTimeout=504]="GatewayTimeout",A[A.HttpVersionNotSupported=505]="HttpVersionNotSupported",A[A.VariantAlsoNegotiates=506]="VariantAlsoNegotiates",A[A.InsufficientStorage=507]="InsufficientStorage",A[A.LoopDetected=508]="LoopDetected",A[A.NotExtended=510]="NotExtended",A[A.NetworkAuthenticationRequired=511]="NetworkAuthenticationRequired",A}(je||{});function De(A,ee){return{body:ee,headers:A.headers,context:A.context,observe:A.observe,params:A.params,reportProgress:A.reportProgress,responseType:A.responseType,withCredentials:A.withCredentials,transferCache:A.transferCache}}let Le=(()=>{class A{constructor(re){this.handler=re}request(re,mt,Wt={}){let Zt;if(re instanceof ut)Zt=re;else{let ot,mi;ot=Wt.headers instanceof Ie?Wt.headers:new Ie(Wt.headers),Wt.params&&(mi=Wt.params instanceof et?Wt.params:new et({fromObject:Wt.params})),Zt=new ut(re,mt,void 0!==Wt.body?Wt.body:null,{headers:ot,context:Wt.context,params:mi,reportProgress:Wt.reportProgress,responseType:Wt.responseType||"json",withCredentials:Wt.withCredentials,transferCache:Wt.transferCache})}const pi=(0,a.of)(Zt).pipe((0,f.m)(ot=>this.handler.handle(ot)));if(re instanceof ut||"events"===Wt.observe)return pi;const Li=pi.pipe((0,g.I)(ot=>ot instanceof Jt));switch(Wt.observe||"body"){case"body":switch(Zt.responseType){case"arraybuffer":return Li.pipe((0,b.k)(ot=>{if(null!==ot.body&&!(ot.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return ot.body}));case"blob":return Li.pipe((0,b.k)(ot=>{if(null!==ot.body&&!(ot.body instanceof Blob))throw new Error("Response is not a Blob.");return ot.body}));case"text":return Li.pipe((0,b.k)(ot=>{if(null!==ot.body&&"string"!=typeof ot.body)throw new Error("Response is not a string.");return ot.body}));default:return Li.pipe((0,b.k)(ot=>ot.body))}case"response":return Li;default:throw new Error(`Unreachable: unhandled observe type ${Wt.observe}}`)}}delete(re,mt={}){return this.request("DELETE",re,mt)}get(re,mt={}){return this.request("GET",re,mt)}head(re,mt={}){return this.request("HEAD",re,mt)}jsonp(re,mt){return this.request("JSONP",re,{params:(new et).append(mt,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(re,mt={}){return this.request("OPTIONS",re,mt)}patch(re,mt,Wt={}){return this.request("PATCH",re,De(Wt,mt))}post(re,mt,Wt={}){return this.request("POST",re,De(Wt,mt))}put(re,mt,Wt={}){return this.request("PUT",re,De(Wt,mt))}static#e=this.\u0275fac=function(mt){return new(mt||A)(s.CoB(ie))};static#t=this.\u0275prov=s.wxM({token:A,factory:A.\u0275fac})}return A})();function we(A,ee){return ee(A)}function N(A,ee){return(re,mt)=>ee.intercept(re,{handle:Wt=>A(Wt,mt)})}const Fe=new s.UbH(""),Tt=new s.UbH(""),Ke=new s.UbH(""),Lt=new s.UbH("");function Kt(){let A=null;return(ee,re)=>{null===A&&(A=((0,s.uUt)(Fe,{optional:!0})??[]).reduceRight(N,we));const mt=(0,s.uUt)(s.g9Y),Wt=mt.add();return A(ee,re).pipe((0,R.U)(()=>mt.remove(Wt)))}}let Mi=(()=>{class A extends ie{constructor(re,mt){super(),this.backend=re,this.injector=mt,this.chain=null,this.pendingTasks=(0,s.uUt)(s.g9Y);const Wt=(0,s.uUt)(Lt,{optional:!0});this.backend=Wt??re}handle(re){if(null===this.chain){const Wt=Array.from(new Set([...this.injector.get(Tt),...this.injector.get(Ke,[])]));this.chain=Wt.reduceRight((Zt,pi)=>function U(A,ee,re){return(mt,Wt)=>(0,s.SMS)(re,()=>ee(mt,Zt=>A(Zt,Wt)))}(Zt,pi,this.injector),we)}const mt=this.pendingTasks.add();return this.chain(re,Wt=>this.backend.handle(Wt)).pipe((0,R.U)(()=>this.pendingTasks.remove(mt)))}static#e=this.\u0275fac=function(mt){return new(mt||A)(s.CoB(ae),s.CoB(s.SIe))};static#t=this.\u0275prov=s.wxM({token:A,factory:A.\u0275fac})}return A})();const ht=/^\)\]\}',?\n/;let vt=(()=>{class A{constructor(re){this.xhrFactory=re}handle(re){if("JSONP"===re.method)throw new s.OBp(-2800,!1);const mt=this.xhrFactory;return(mt.\u0275loadImpl?(0,l.Q)(mt.\u0275loadImpl()):(0,a.of)(null)).pipe((0,Y.G)(()=>new h._(Zt=>{const pi=mt.build();if(pi.open(re.method,re.urlWithParams),re.withCredentials&&(pi.withCredentials=!0),re.headers.forEach((wi,ji)=>pi.setRequestHeader(wi,ji.join(","))),re.headers.has("Accept")||pi.setRequestHeader("Accept","application/json, text/plain, */*"),!re.headers.has("Content-Type")){const wi=re.detectContentTypeHeader();null!==wi&&pi.setRequestHeader("Content-Type",wi)}if(re.responseType){const wi=re.responseType.toLowerCase();pi.responseType="json"!==wi?wi:"text"}const Li=re.serializeBody();let ot=null;const mi=()=>{if(null!==ot)return ot;const wi=pi.statusText||"OK",ji=new Ie(pi.getAllResponseHeaders()),sn=function Ht(A){return"responseURL"in A&&A.responseURL?A.responseURL:/^X-Request-URL:/m.test(A.getAllResponseHeaders())?A.getResponseHeader("X-Request-URL"):null}(pi)||re.url;return ot=new oi({headers:ji,status:pi.status,statusText:wi,url:sn}),ot},k=()=>{let{headers:wi,status:ji,statusText:sn,url:qn}=mi(),en=null;ji!==je.NoContent&&(en=typeof pi.response>"u"?pi.responseText:pi.response),0===ji&&(ji=en?je.Ok:0);let pr=ji>=200&&ji<300;if("json"===re.responseType&&"string"==typeof en){const kr=en;en=en.replace(ht,"");try{en=""!==en?JSON.parse(en):null}catch(Zn){en=kr,pr&&(pr=!1,en={error:Zn,text:en})}}pr?(Zt.next(new Jt({body:en,headers:wi,status:ji,statusText:sn,url:qn||void 0})),Zt.complete()):Zt.error(new vi({error:en,headers:wi,status:ji,statusText:sn,url:qn||void 0}))},se=wi=>{const{url:ji}=mi(),sn=new vi({error:wi,status:pi.status||0,statusText:pi.statusText||"Unknown Error",url:ji||void 0});Zt.error(sn)};let K=!1;const Be=wi=>{K||(Zt.next(mi()),K=!0);let ji={type:st.DownloadProgress,loaded:wi.loaded};wi.lengthComputable&&(ji.total=wi.total),"text"===re.responseType&&pi.responseText&&(ji.partialText=pi.responseText),Zt.next(ji)},Yt=wi=>{let ji={type:st.UploadProgress,loaded:wi.loaded};wi.lengthComputable&&(ji.total=wi.total),Zt.next(ji)};return pi.addEventListener("load",k),pi.addEventListener("error",se),pi.addEventListener("timeout",se),pi.addEventListener("abort",se),re.reportProgress&&(pi.addEventListener("progress",Be),null!==Li&&pi.upload&&pi.upload.addEventListener("progress",Yt)),pi.send(Li),Zt.next({type:st.Sent}),()=>{pi.removeEventListener("error",se),pi.removeEventListener("abort",se),pi.removeEventListener("load",k),pi.removeEventListener("timeout",se),re.reportProgress&&(pi.removeEventListener("progress",Be),null!==Li&&pi.upload&&pi.upload.removeEventListener("progress",Yt)),pi.readyState!==pi.DONE&&pi.abort()}})))}static#e=this.\u0275fac=function(mt){return new(mt||A)(s.CoB(J.OM))};static#t=this.\u0275prov=s.wxM({token:A,factory:A.\u0275fac})}return A})();const Mt=new s.UbH(""),it=new s.UbH("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),ct=new s.UbH("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class ri{}let V=(()=>{class A{constructor(re,mt,Wt){this.doc=re,this.platform=mt,this.cookieName=Wt,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const re=this.doc.cookie||"";return re!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,J.Sg)(re,this.cookieName),this.lastCookieString=re),this.lastToken}static#e=this.\u0275fac=function(mt){return new(mt||A)(s.CoB(J.Ud),s.CoB(s.AHE),s.CoB(it))};static#t=this.\u0275prov=s.wxM({token:A,factory:A.\u0275fac})}return A})();function Ce(A,ee){const re=A.url.toLowerCase();if(!(0,s.uUt)(Mt)||"GET"===A.method||"HEAD"===A.method||re.startsWith("http://")||re.startsWith("https://"))return ee(A);const mt=(0,s.uUt)(ri).getToken(),Wt=(0,s.uUt)(ct);return null!=mt&&!A.headers.has(Wt)&&(A=A.clone({headers:A.headers.set(Wt,mt)})),ee(A)}var w=function(A){return A[A.Interceptors=0]="Interceptors",A[A.LegacyInterceptors=1]="LegacyInterceptors",A[A.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",A[A.NoXsrfProtection=3]="NoXsrfProtection",A[A.JsonpSupport=4]="JsonpSupport",A[A.RequestsMadeViaParent=5]="RequestsMadeViaParent",A[A.Fetch=6]="Fetch",A}(w||{});function $(...A){const ee=[Le,vt,Mi,{provide:ie,useExisting:Mi},{provide:ae,useExisting:vt},{provide:Tt,useValue:Ce,multi:!0},{provide:Mt,useValue:!0},{provide:ri,useClass:V}];for(const re of A)ee.push(...re.\u0275providers);return(0,s.AFj)(ee)}const At=new s.UbH("");function bt(){return function S(A,ee){return{\u0275kind:A,\u0275providers:ee}}(w.LegacyInterceptors,[{provide:At,useFactory:Kt},{provide:Tt,useExisting:At,multi:!0}])}let Ci=(()=>{class A{static#e=this.\u0275fac=function(mt){return new(mt||A)};static#t=this.\u0275mod=s.a4G({type:A});static#i=this.\u0275inj=s.s3X({providers:[$(bt())]})}return A})()},2116:(lt,me,d)=>{"use strict";d.d(me,{qwP:()=>Gn,qid:()=>Pm,QHP:()=>ei,kZF:()=>_y,Ev2:()=>_S,Swk:()=>ro,YND:()=>gs,kD9:()=>g_,ESV:()=>JE,ce5:()=>Gl,ayF:()=>sS,syz:()=>Ws,GMv:()=>ms,SIe:()=>rs,eAe:()=>Es,_w7:()=>Ze,_6O:()=>ht,UbH:()=>rt,zZn:()=>Wa,Uj7:()=>bh,YNh:()=>yh,KYU:()=>Bd,obV:()=>sg,oF$:()=>qs,WW2:()=>Mr,T7N:()=>Mc,AHE:()=>Zi,crf:()=>Ii,VhX:()=>ps,q87:()=>xM,O8F:()=>l_,yzm:()=>zc,SI6:()=>Qs,Qfh:()=>Dc,Yw2:()=>Fl,G4X:()=>$E,eOv:()=>py,a8Z:()=>sy,y8U:()=>md,K6R:()=>Ci,I44:()=>C_,cZD:()=>jS,SIz:()=>lg,Gk1:()=>WD,grM:()=>ky,agy:()=>uS,wd:()=>xa,uUt:()=>z,_Ap:()=>Gr,AFj:()=>kc,m4O:()=>fS,o9M:()=>WS,SMS:()=>y0,sRj:()=>EM,yai:()=>_h,oPY:()=>oy,i4S:()=>pu,GUM:()=>il,g9Y:()=>$l,OBp:()=>Ut,aS5:()=>hy,Mn9:()=>my,Y8L:()=>Kt,Om8:()=>zp,ozE:()=>Vc,K2p:()=>To,GM_:()=>dw,u8n:()=>pw,ER9:()=>hw,Vfw:()=>uw,Gc:()=>mw,iMv:()=>dm,G58:()=>ni,y02:()=>lv,IHs:()=>nt,K_M:()=>_c,Guz:()=>Is,w5$:()=>Om,gX2:()=>fy,auf:()=>uo,GEN:()=>Ht,E2t:()=>ys,eg9:()=>Ph,Wk5:()=>A,QJr:()=>ag,SYr:()=>yu,M5G:()=>bb,UHJ:()=>yb,yG2:()=>Sf,e48:()=>$h,m8U:()=>Kg,uQ9:()=>tv,eAK:()=>em,szK:()=>Kv,In1:()=>Vn,Sc5:()=>Sr,wxM:()=>Rn,s3X:()=>Bs,a4G:()=>ra,UTH:()=>Zr,GI1:()=>Oo,wR5:()=>sm,C_f:()=>om,k70:()=>Sd,SAx:()=>Ed,C$Y:()=>kd,I0R:()=>Cd,KQA:()=>ov,otF:()=>Cp,SoX:()=>lm,CoB:()=>x,gJ8:()=>Iu,KEo:()=>Tf,qCj:()=>mm,Gqi:()=>Zv,gRP:()=>ll,S2Z:()=>Ra,GaO:()=>Nv,wVc:()=>Bb,kDX:()=>Hb,g7$:()=>Gb,I7O:()=>Vb,wB1:()=>jb,_Xx:()=>Bv,kPM:()=>Yv,E7m:()=>Zh,_6D:()=>_m,q4q:()=>Ib,S45:()=>Tb,IBC:()=>Ab,uAc:()=>Lb,WuN:()=>Ob,wto:()=>Xv,Gew:()=>Jv,CGJ:()=>ke,wLc:()=>lf,usT:()=>Wr,E3n:()=>$p,K6U:()=>Nu,YFg:()=>Qp,m4B:()=>qh,wcw:()=>pm,Swe:()=>cm,yuY:()=>Yo,gJz:()=>Ub,OEk:()=>lb,cNF:()=>vm,oRS:()=>Od,CAO:()=>bm,kNx:()=>gb,iHE:()=>wm,OKB:()=>ym,CC$:()=>Qv}),d(3908);let a=null,l=1;const f=Symbol("SIGNAL");function g(e){const t=a;return a=e,t}function Ie(e){if((!_e(e)||e.dirty)&&(e.dirty||e.lastCleanEpoch!==l)){if(!e.producerMustRecompute(e)&&!kt(e))return e.dirty=!1,void(e.lastCleanEpoch=l);e.producerRecomputeValue(e),e.dirty=!1,e.lastCleanEpoch=l}}function kt(e){ye(e);for(let t=0;t0}function ye(e){e.producerNode??=[],e.producerIndexOfThis??=[],e.producerLastReadVersion??=[]}let oi=null;var U=d(5657),Fe=d(6928),Tt=d(6700),Ke=d(4704);const Kt="https://g.co/ng/security#xss";class Ut extends Error{constructor(t,n){super(ni(t,n)),this.code=t}}function ni(e,t){return`NG0${Math.abs(e)}${t?": "+t:""}`}function at(e){return t=>{setTimeout(e,void 0,t)}}const Ze=class Te extends U.E{constructor(t=!1){super(),this.__isAsync=t}emit(t){super.next(t)}subscribe(t,n,r){let o=t,c=n||(()=>null),m=r;if(t&&"object"==typeof t){const E=t;o=E.next?.bind(E),c=E.error?.bind(E),m=E.complete?.bind(E)}this.__isAsync&&(c=at(c),o&&(o=at(o)),m&&(m=at(m)));const v=super.subscribe({next:o,error:c,complete:m});return t instanceof Fe.wH&&t.add(v),v}};var ht=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}(ht||{});function Ht(e){if("string"==typeof e)return e;if(Array.isArray(e))return"["+e.map(Ht).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 vt(e,t){return null==e||""===e?null===t?"":t:null==t||""===t?e:e+" "+t}var Vt=function(e){return e[e.OnPush=0]="OnPush",e[e.Default=1]="Default",e}(Vt||{}),Ci=function(e){return e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom",e}(Ci||{});function We(e){return{toString:e}.toString()}const nt=globalThis,yi={},Ti=[];function Fi(e){for(let t in e)if(e[t]===Fi)return t;throw Error("Could not find renamed property on target object.")}function hn(e,t){for(const n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n])}const an=Fi({\u0275cmp:Fi}),Xn=Fi({\u0275dir:Fi}),Je=Fi({\u0275pipe:Fi}),gi=Fi({\u0275mod:Fi}),Me=Fi({\u0275fac:Fi}),qe=Fi({__NG_ELEMENT_ID__:Fi}),Rt=Fi({__NG_ENV_ID__:Fi});var A=function(e){return e[e.None=0]="None",e[e.SignalBased=1]="SignalBased",e[e.HasDecoratorInputTransform=2]="HasDecoratorInputTransform",e}(A||{});function ee(e,t,n){let r=e.length;for(;;){const o=e.indexOf(t,n);if(-1===o)return o;if(0===o||e.charCodeAt(o-1)<=32){const c=t.length;if(o+c===r||e.charCodeAt(o+c)<=32)return o}n=o+1}}function re(e,t,n){let r=0;for(;rt){m=c-1;break}}}for(;cc?"":o[He+1].toLowerCase();const Gt=8&r?St:null;if(Gt&&-1!==ee(Gt,W,0)||2&r&&W!==St){if(K(r))return!1;m=!0}}}}else{if(!m&&!K(r)&&!K(E))return!1;if(m&&K(E))continue;m=!1,r=E|1&r}}return K(r)||m}function K(e){return 0==(1&e)}function Be(e,t,n,r){if(null===t)return-1;let o=0;if(r||!n){let c=!1;for(;o-1)for(n++;n0?'="'+v+'"':"")+"]"}else 8&r?o+="."+m:4&r&&(o+=" "+m);else""!==o&&!K(m)&&(t+=en(c,o),o=""),r=m,c=c||!K(r);n++}return""!==o&&(t+=en(c,o)),t}function Vn(e){return We(()=>{const t=Ir(e),n={...t,decls:e.decls,vars:e.vars,template:e.template,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,onPush:e.changeDetection===Vt.OnPush,directiveDefs:null,pipeDefs:null,dependencies:t.standalone&&e.dependencies||null,getStandaloneInjector:null,signals:e.signals??!1,data:e.data||{},encapsulation:e.encapsulation||Ci.Emulated,styles:e.styles||Ti,_:null,schemas:e.schemas||null,tView:null,id:""};ba(n);const r=e.dependencies;return n.directiveDefs=Tr(r,!1),n.pipeDefs=Tr(r,!0),n.id=function or(e){let t=0;const n=[e.selectors,e.ngContentSelectors,e.hostVars,e.hostAttrs,e.consts,e.vars,e.decls,e.encapsulation,e.standalone,e.signals,e.exportAs,JSON.stringify(e.inputs),JSON.stringify(e.outputs),Object.getOwnPropertyNames(e.type.prototype),!!e.contentQueries,!!e.viewQuery].join("|");for(const o of n)t=Math.imul(31,t)+o.charCodeAt(0)<<0;return t+=2147483648,"c"+t}(n),n})}function Hr(e){return Xi(e)||Fn(e)}function Er(e){return null!==e}function ra(e){return We(()=>({type:e.type,bootstrap:e.bootstrap||Ti,declarations:e.declarations||Ti,imports:e.imports||Ti,exports:e.exports||Ti,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null}))}function ir(e,t){if(null==e)return yi;const n={};for(const r in e)if(e.hasOwnProperty(r)){const o=e[r];let c,m,v=A.None;Array.isArray(o)?(v=o[0],c=o[1],m=o[2]??c):(c=o,m=o),t?(n[c]=v!==A.None?[r,v]:r,t[c]=m):n[c]=r}return n}function Sr(e){return We(()=>{const t=Ir(e);return ba(t),t})}function Zr(e){return{type:e.type,name:e.name,factory:null,pure:!1!==e.pure,standalone:!0===e.standalone,onDestroy:e.type.prototype.ngOnDestroy||null}}function Xi(e){return e[an]||null}function Fn(e){return e[Xn]||null}function _n(e){return e[Je]||null}function Gr(e){const t=Xi(e)||Fn(e)||_n(e);return null!==t&&t.standalone}function jn(e,t){const n=e[gi]||null;if(!n&&!0===t)throw new Error(`Type ${Ht(e)} does not have '\u0275mod' property.`);return n}function Ir(e){const t={};return{type:e.type,providersResolver:null,factory:null,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:t,inputTransforms:null,inputConfig:e.inputs||yi,exportAs:e.exportAs||null,standalone:!0===e.standalone,signals:!0===e.signals,selectors:e.selectors||Ti,viewQuery:e.viewQuery||null,features:e.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:ir(e.inputs,t),outputs:ir(e.outputs),debugInfo:null}}function ba(e){e.features?.forEach(t=>t(e))}function Tr(e,t){if(!e)return null;const n=t?_n:Hr;return()=>("function"==typeof e?e():e).map(r=>n(r)).filter(Er)}const on=0,bi=1,Pi=2,In=3,Un=4,Hn=5,nr=6,br=7,pn=8,bn=9,Wn=10,Bi=11,fr=12,aa=13,sa=14,xn=15,_r=16,Vr=17,er=18,Jr=19,ln=20,lr=21,gr=22,zn=23,Hi=25,ya=1,$n=7,yr=9,Cn=10;var ar=function(e){return e[e.None=0]="None",e[e.HasTransplantedViews=2]="HasTransplantedViews",e}(ar||{});function Nn(e){return Array.isArray(e)&&"object"==typeof e[ya]}function Yn(e){return Array.isArray(e)&&!0===e[ya]}function qr(e){return 0!=(4&e.flags)}function Lr(e){return e.componentOffset>-1}function mr(e){return 1==(1&e.flags)}function Pn(e){return!!e.template}function Da(e){return 0!=(512&e[Pi])}const ka="svg";let La=!1;function nn(e){for(;Array.isArray(e);)e=e[on];return e}function ia(e,t){return nn(t[e])}function ur(e,t){return nn(t[e.index])}function Pr(e,t){return e.data[t]}function Fr(e,t){return e[t]}function Kn(e,t){const n=t[e];return Nn(n)?n:n[on]}function pa(e){return 128==(128&e[Pi])}function ce(e,t){return null==t?null:e[t]}function M(e){e[Vr]=0}function I(e){1024&e[Pi]||(e[Pi]|=1024,pa(e)&&Ct(e))}function pe(e){return!!(9216&e[Pi]||e[zn]?.dirty)}function Qe(e){pe(e)?Ct(e):64&e[Pi]&&(function Ka(){return La}()?(e[Pi]|=1024,Ct(e)):e[Wn].changeDetectionScheduler?.notify())}function Ct(e){e[Wn].changeDetectionScheduler?.notify();let t=ai(e);for(;null!==t&&!(8192&t[Pi])&&(t[Pi]|=8192,pa(t));)t=ai(t)}function Pt(e,t){if(256==(256&e[Pi]))throw new Ut(911,!1);null===e[lr]&&(e[lr]=[]),e[lr].push(t)}function ai(e){const t=e[In];return Yn(t)?t[In]:t}const ui={lFrame:Dn(null),bindingsEnabled:!0,skipHydrationRootTNode:null};function dn(){return ui.bindingsEnabled}function wn(){return null!==ui.skipHydrationRootTNode}function ti(){return ui.lFrame.lView}function Vi(){return ui.lFrame.tView}function Wr(e){return ui.lFrame.contextLView=e,e[pn]}function ke(e){return ui.lFrame.contextLView=null,e}function de(){let e=p();for(;null!==e&&64===e.type;)e=e.parent;return e}function p(){return ui.lFrame.currentTNode}function H(e,t){const n=ui.lFrame;n.currentTNode=e,n.isParent=t}function _t(){return ui.lFrame.isParent}function dt(){ui.lFrame.isParent=!1}function Oi(){const e=ui.lFrame;let t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}function Ji(){return ui.lFrame.bindingIndex++}function D(e){const t=ui.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function q(e,t){const n=ui.lFrame;n.bindingIndex=n.bindingRootIndex=e,Qt(t)}function Qt(e){ui.lFrame.currentDirectiveIndex=e}function hi(e){const t=ui.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}function Ai(){return ui.lFrame.currentQueryIndex}function Tn(e){ui.lFrame.currentQueryIndex=e}function An(e){const t=e[bi];return 2===t.type?t.declTNode:1===t.type?e[Hn]:null}function Ln(e,t,n){if(n&ht.SkipSelf){let o=t,c=e;for(;!(o=o.parent,null!==o||n&ht.Host||(o=An(c),null===o||(c=c[sa],10&o.type))););if(null===o)return!1;t=o,e=c}const r=ui.lFrame=On();return r.currentTNode=t,r.lView=e,!0}function Ki(e){const t=On(),n=e[bi];ui.lFrame=t,t.currentTNode=n.firstChild,t.lView=e,t.tView=n,t.contextLView=e,t.bindingIndex=n.bindingStartIndex,t.inI18n=!1}function On(){const e=ui.lFrame,t=null===e?null:e.child;return null===t?Dn(e):t}function Dn(e){const t={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null,inI18n:!1};return null!==e&&(e.child=t),t}function sr(){const e=ui.lFrame;return ui.lFrame=e.parent,e.currentTNode=null,e.lView=null,e}const Yr=sr;function Qn(){const e=sr();e.isParent=!0,e.tView=null,e.selectedIndex=-1,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function Jn(){return ui.lFrame.selectedIndex}function vr(e){ui.lFrame.selectedIndex=e}function vn(){const e=ui.lFrame;return Pr(e.tView,e.selectedIndex)}function Ra(){ui.lFrame.currentNamespace=ka}function ll(){!function dc(){ui.lFrame.currentNamespace=null}()}let Ms=!0;function hs(){return Ms}function Qa(e){Ms=e}function oo(){return zr(de(),ti())}function zr(e,t){return new ms(ur(e,t))}let Ys,ms=(()=>{class e{constructor(n){this.nativeElement=n}static#e=this.__NG_ELEMENT_ID__=oo}return e})();function cl(e){return e instanceof ms?e.nativeElement:e}function Xa(e,t){e.forEach(n=>Array.isArray(n)?Xa(n,t):t(n))}function Rs(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function es(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function fa(e,t,n){let r=Ga(e,t);return r>=0?e[1|r]=n:(r=~r,function Fs(e,t,n,r){let o=e.length;if(o==t)e.push(n,r);else if(1===o)e.push(r,e[0]),e[0]=n;else{for(o--,e.push(e[o-1],e[o]);o>t;)e[o]=e[o-2],o--;e[t]=n,e[t+1]=r}}(e,r,t,n)),r}function Cs(e,t){const n=Ga(e,t);if(n>=0)return e[1|n]}function Ga(e,t){return function lo(e,t,n){let r=0,o=e.length>>n;for(;o!==r;){const c=r+(o-r>>1),m=e[c<t?o=c:r=c+1}return~(o<Xt}),Xt="ng",Ii=new rt(""),Zi=new rt("",{providedIn:"platform",factory:()=>"unknown"}),Gn=new rt(""),gs=new rt("",{providedIn:"root",factory:()=>Va().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),Gs=Fi({__forward_ref__:Fi});function xa(e){return e.__forward_ref__=xa,e.toString=function(){return Ht(this())},e}function Qi(e){return Vs(e)?e():e}function Vs(e){return"function"==typeof e&&e.hasOwnProperty(Gs)&&e.__forward_ref__===xa}function pl(e){return e&&!!e.\u0275providers}function tn(e){return"string"==typeof e?e:null==e?"":String(e)}function fl(e,t){throw new Ut(-201,!1)}let _l;function gc(){return _l}function _a(e){const t=_l;return _l=e,t}function vc(e,t,n){const r=Hs(e);return r&&"root"==r.providedIn?void 0===r.value?r.value=r.factory():r.value:n&ht.Optional?null:void 0!==t?t:void fl()}const Ua={},gl="__NG_DI_FLAG__",mo="ngTempTokenPath",Zd=/\n/gm,po="__source";let Pa;function mn(e){const t=Pa;return Pa=e,t}function u(e,t=ht.Default){if(void 0===Pa)throw new Ut(-203,!1);return null===Pa?vc(e,void 0,t):Pa.get(e,t&ht.Optional?null:void 0,t)}function x(e,t=ht.Default){return(gc()||u)(Qi(e),t)}function z(e,t=ht.Default){return x(e,Oe(t))}function Oe(e){return typeof e>"u"||"number"==typeof e?e:0|(e.optional&&8)|(e.host&&1)|(e.self&&2)|(e.skipSelf&&4)}function Nt(e){const t=[];for(let n=0;nnull;function su(e,t,n=!1){return Zm(e,t,n)}const yo="__parameters__";function xo(e,t,n){return We(()=>{const r=function du(e){return function(...n){if(e){const r=e(...n);for(const o in r)this[o]=r[o]}}}(t);function o(...c){if(this instanceof o)return r.apply(this,c),this;const m=new o(...c);return v.annotation=m,v;function v(E,W,ue){const He=E.hasOwnProperty(yo)?E[yo]:Object.defineProperty(E,yo,{value:[]})[yo];for(;He.length<=ue;)He.push(null);return(He[ue]=He[ue]||[]).push(m),E}}return n&&(o.prototype=Object.create(n.prototype)),o.prototype.ngMetadataName=e,o.annotationCls=o,o})}const Mc=li(xo("Optional"),8),Dc=li(xo("SkipSelf"),4);function Us(e,t){return e.hasOwnProperty(Me)?e[Me]:null}const Ws=new rt(""),np=new rt("",-1),uu=new rt("");class Cc{get(t,n=Ua){if(n===Ua){const r=new Error(`NullInjectorError: No provider for ${Ht(t)}!`);throw r.name="NullInjectorError",r}return n}}function kc(e){return{\u0275providers:e}}function u0(...e){return{\u0275providers:rp(0,e),\u0275fromNgModule:!0}}function rp(e,...t){const n=[],r=new Set;let o;const c=m=>{n.push(m)};return Xa(t,m=>{const v=m;Ec(v,c,[],r)&&(o||=[],o.push(v))}),void 0!==o&&ap(o,c),n}function ap(e,t){for(let n=0;n{t(c,r)})}}function Ec(e,t,n,r){if(!(e=Qi(e)))return!1;let o=null,c=O(e);const m=!c&&Xi(e);if(c||m){if(m&&!m.standalone)return!1;o=e}else{const E=e.ngModule;if(c=O(E),!c)return!1;o=E}const v=r.has(o);if(m){if(v)return!1;if(r.add(o),m.dependencies){const E="function"==typeof m.dependencies?m.dependencies():m.dependencies;for(const W of E)Ec(W,t,n,r)}}else{if(!c)return!1;{if(null!=c.imports&&!v){let W;r.add(o);try{Xa(c.imports,ue=>{Ec(ue,t,n,r)&&(W||=[],W.push(ue))})}finally{}void 0!==W&&ap(W,t)}if(!v){const W=Us(o)||(()=>new o);t({provide:o,useFactory:W,deps:Ti},o),t({provide:uu,useValue:o,multi:!0},o),t({provide:Ws,useValue:()=>x(o),multi:!0},o)}const E=c.providers;if(null!=E&&!v){const W=e;hu(E,ue=>{t(ue,W)})}}}return o!==e&&void 0!==e.providers}function hu(e,t){for(let n of e)pl(n)&&(n=n.\u0275providers),Array.isArray(n)?hu(n,t):t(n)}const h0=Fi({provide:String,useValue:Fi});function mu(e){return null!==e&&"object"==typeof e&&h0 in e}function zs(e){return"function"==typeof e}const pu=new rt(""),Sc={},p0={};let fu;function Ic(){return void 0===fu&&(fu=new Cc),fu}class rs{}class Mo extends rs{get destroyed(){return this._destroyed}constructor(t,n,r,o){super(),this.parent=n,this.source=r,this.scopes=o,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,gu(t,m=>this.processProvider(m)),this.records.set(np,Do(void 0,this)),o.has("environment")&&this.records.set(rs,Do(void 0,this));const c=this.records.get(pu);null!=c&&"string"==typeof c.value&&this.scopes.add(c.value),this.injectorDefTypes=new Set(this.get(uu,Ti,ht.Self))}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{for(const n of this._ngOnDestroyHooks)n.ngOnDestroy();const t=this._onDestroyHooks;this._onDestroyHooks=[];for(const n of t)n()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear()}}onDestroy(t){return this.assertNotDestroyed(),this._onDestroyHooks.push(t),()=>this.removeOnDestroy(t)}runInContext(t){this.assertNotDestroyed();const n=mn(this),r=_a(void 0);try{return t()}finally{mn(n),_a(r)}}get(t,n=Ua,r=ht.Default){if(this.assertNotDestroyed(),t.hasOwnProperty(Rt))return t[Rt](this);r=Oe(r);const c=mn(this),m=_a(void 0);try{if(!(r&ht.SkipSelf)){let E=this.records.get(t);if(void 0===E){const W=function b0(e){return"function"==typeof e||"object"==typeof e&&e instanceof rt}(t)&&Hs(t);E=W&&this.injectableDefInScope(W)?Do(_u(t),Sc):null,this.records.set(t,E)}if(null!=E)return this.hydrate(t,E)}return(r&ht.Self?Ic():this.parent).get(t,n=r&ht.Optional&&n===Ua?null:n)}catch(v){if("NullInjectorError"===v.name){if((v[mo]=v[mo]||[]).unshift(Ht(t)),c)throw v;return function qi(e,t,n,r){const o=e[mo];throw t[po]&&o.unshift(t[po]),e.message=function kn(e,t,n,r=null){e=e&&"\n"===e.charAt(0)&&"\u0275"==e.charAt(1)?e.slice(2):e;let o=Ht(t);if(Array.isArray(t))o=t.map(Ht).join(" -> ");else if("object"==typeof t){let c=[];for(let m in t)if(t.hasOwnProperty(m)){let v=t[m];c.push(m+":"+("string"==typeof v?JSON.stringify(v):Ht(v)))}o=`{${c.join(", ")}}`}return`${n}${r?"("+r+")":""}[${o}]: ${e.replace(Zd,"\n ")}`}("\n"+e.message,o,n,r),e.ngTokenPath=o,e[mo]=null,e}(v,t,"R3InjectorError",this.source)}throw v}finally{_a(m),mn(c)}}resolveInjectorInitializers(){const t=mn(this),n=_a(void 0);try{const o=this.get(Ws,Ti,ht.Self);for(const c of o)c()}finally{mn(t),_a(n)}}toString(){const t=[],n=this.records;for(const r of n.keys())t.push(Ht(r));return`R3Injector[${t.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new Ut(205,!1)}processProvider(t){let n=zs(t=Qi(t))?t:Qi(t&&t.provide);const r=function _0(e){return mu(e)?Do(void 0,e.useValue):Do(lp(e),Sc)}(t);if(!zs(t)&&!0===t.multi){let o=this.records.get(n);o||(o=Do(void 0,Sc,!0),o.factory=()=>Nt(o.multi),this.records.set(n,o)),n=t,o.multi.push(t)}this.records.set(n,r)}hydrate(t,n){return n.value===Sc&&(n.value=p0,n.value=n.factory()),"object"==typeof n.value&&n.value&&function v0(e){return null!==e&&"object"==typeof e&&"function"==typeof e.ngOnDestroy}(n.value)&&this._ngOnDestroyHooks.add(n.value),n.value}injectableDefInScope(t){if(!t.providedIn)return!1;const n=Qi(t.providedIn);return"string"==typeof n?"any"===n||this.scopes.has(n):this.injectorDefTypes.has(n)}removeOnDestroy(t){const n=this._onDestroyHooks.indexOf(t);-1!==n&&this._onDestroyHooks.splice(n,1)}}function _u(e){const t=Hs(e),n=null!==t?t.factory:Us(e);if(null!==n)return n;if(e instanceof rt)throw new Ut(204,!1);if(e instanceof Function)return function f0(e){if(e.length>0)throw new Ut(204,!1);const n=function y(e){return e&&(e[C]||e[X])||null}(e);return null!==n?()=>n.factory(e):()=>new e}(e);throw new Ut(204,!1)}function lp(e,t,n){let r;if(zs(e)){const o=Qi(e);return Us(o)||_u(o)}if(mu(e))r=()=>Qi(e.useValue);else if(function op(e){return!(!e||!e.useFactory)}(e))r=()=>e.useFactory(...Nt(e.deps||[]));else if(function sp(e){return!(!e||!e.useExisting)}(e))r=()=>x(Qi(e.useExisting));else{const o=Qi(e&&(e.useClass||e.provide));if(!function g0(e){return!!e.deps}(e))return Us(o)||_u(o);r=()=>new o(...Nt(e.deps))}return r}function Do(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function gu(e,t){for(const n of e)Array.isArray(n)?gu(n,t):n&&pl(n)?gu(n.\u0275providers,t):t(n)}function y0(e,t){e instanceof Mo&&e.assertNotDestroyed();const r=mn(e),o=_a(void 0);try{return t()}finally{mn(r),_a(o)}}class T0{constructor(t,n,r){this.previousValue=t,this.currentValue=n,this.firstChange=r}isFirstChange(){return this.firstChange}}function dp(e,t,n,r){null!==t?t.applyValueToInputSignal(t,r):e[n]=r}function yu(){return up}function up(e){return e.type.prototype.ngOnChanges&&(e.setInput=L0),A0}function A0(){const e=mp(this),t=e?.current;if(t){const n=e.previous;if(n===yi)e.previous=t;else for(let r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}}function L0(e,t,n,r,o){const c=this.declaredInputs[r],m=mp(e)||function O0(e,t){return e[hp]=t}(e,{previous:yi,current:null}),v=m.current||(m.current={}),E=m.previous,W=E[c];v[c]=new T0(W&&W.currentValue,n,E===yi),dp(e,t,o,n)}yu.ngInherit=!0;const hp="__ngSimpleChanges__";function mp(e){return e[hp]||null}const as=function(e,t,n){};function Ac(e,t){for(let n=t.directiveStart,r=t.directiveEnd;n=r)break}else t[E]<0&&(e[Vr]+=65536),(v>14>16&&(3&e[Pi])===t&&(e[Pi]+=16384,fp(v,c)):fp(v,c)}const ko=-1;class xl{constructor(t,n,r){this.factory=t,this.resolving=!1,this.canSeeViewProviders=n,this.injectImpl=r}}function Du(e){return e!==ko}function Ml(e){return 32767&e}function Dl(e,t){let n=function G0(e){return e>>16}(e),r=t;for(;n>0;)r=r[sa],n--;return r}let Cu=!0;function Rc(e){const t=Cu;return Cu=e,t}const _p=255,gp=5;let V0=0;const ss={};function Pc(e,t){const n=vp(e,t);if(-1!==n)return n;const r=t[bi];r.firstCreatePass&&(e.injectorIndex=t.length,ku(r.data,e),ku(t,null),ku(r.blueprint,null));const o=Fc(e,t),c=e.injectorIndex;if(Du(o)){const m=Ml(o),v=Dl(o,t),E=v[bi].data;for(let W=0;W<8;W++)t[c+W]=v[m+W]|E[m+W]}return t[c+8]=o,c}function ku(e,t){e.push(0,0,0,0,0,0,0,0,t)}function vp(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null===t[e.injectorIndex+8]?-1:e.injectorIndex}function Fc(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;let n=0,r=null,o=t;for(;null!==o;){if(r=kp(o),null===r)return ko;if(n++,o=o[sa],-1!==r.injectorIndex)return r.injectorIndex|n<<16}return ko}function Eu(e,t,n){!function j0(e,t,n){let r;"string"==typeof n?r=n.charCodeAt(0)||0:n.hasOwnProperty(qe)&&(r=n[qe]),null==r&&(r=n[qe]=V0++);const o=r&_p;t.data[e+(o>>gp)]|=1<=0?t&_p:$0:t}(n);if("function"==typeof c){if(!Ln(t,e,r))return r&ht.Host?bp(o,0,r):yp(t,n,r,o);try{let m;if(m=c(r),null!=m||r&ht.Optional)return m;fl()}finally{Yr()}}else if("number"==typeof c){let m=null,v=vp(e,t),E=ko,W=r&ht.Host?t[xn][Hn]:null;for((-1===v||r&ht.SkipSelf)&&(E=-1===v?Fc(e,t):t[v+8],E!==ko&&Dp(r,!1)?(m=t[bi],v=Ml(E),t=Dl(E,t)):v=-1);-1!==v;){const ue=t[bi];if(Mp(c,v,ue.data)){const He=W0(v,t,n,m,r,W);if(He!==ss)return He}E=t[v+8],E!==ko&&Dp(r,t[bi].data[v+8]===W)&&Mp(c,v,t)?(m=ue,v=Ml(E),t=Dl(E,t)):v=-1}}return o}function W0(e,t,n,r,o,c){const m=t[bi],v=m.data[e+8],ue=Nc(v,m,n,null==r?Lr(v)&&Cu:r!=m&&0!=(3&v.type),o&ht.Host&&c===v);return null!==ue?$s(t,m,ue,v):ss}function Nc(e,t,n,r,o){const c=e.providerIndexes,m=t.data,v=1048575&c,E=e.directiveStart,ue=c>>20,St=o?v+ue:e.directiveEnd;for(let Gt=r?v:v+ue;Gt=E&&ii.type===n)return Gt}if(o){const Gt=m[E];if(Gt&&Pn(Gt)&&Gt.type===n)return E}return null}function $s(e,t,n,r){let o=e[n];const c=t.data;if(function N0(e){return e instanceof xl}(o)){const m=o;m.resolving&&function bs(e,t){throw t&&t.join(" > "),new Ut(-200,e)}(function Bn(e){return"function"==typeof e?e.name||e.toString():"object"==typeof e&&null!=e&&"function"==typeof e.type?e.type.name||e.type.toString():tn(e)}(c[n]));const v=Rc(m.canSeeViewProviders);m.resolving=!0;const W=m.injectImpl?_a(m.injectImpl):null;Ln(e,r,ht.Default);try{o=e[n]=m.factory(void 0,c,e,r),t.firstCreatePass&&n>=r.directiveStart&&function P0(e,t,n){const{ngOnChanges:r,ngOnInit:o,ngDoCheck:c}=t.type.prototype;if(r){const m=up(t);(n.preOrderHooks??=[]).push(e,m),(n.preOrderCheckHooks??=[]).push(e,m)}o&&(n.preOrderHooks??=[]).push(0-e,o),c&&((n.preOrderHooks??=[]).push(e,c),(n.preOrderCheckHooks??=[]).push(e,c))}(n,c[n],t)}finally{null!==W&&_a(W),Rc(v),m.resolving=!1,Yr()}}return o}function Mp(e,t,n){return!!(n[t+(e>>gp)]&1<{const t=e.prototype.constructor,n=t[Me]||Su(t),r=Object.prototype;let o=Object.getPrototypeOf(e.prototype).constructor;for(;o&&o!==r;){const c=o[Me]||Su(o);if(c&&c!==n)return c;o=Object.getPrototypeOf(o)}return c=>new c})}function Su(e){return Vs(e)?()=>{const t=Su(Qi(e));return t&&t()}:Us(e)}function kp(e){const t=e[bi],n=t.type;return 2===n?t.declTNode:1===n?e[Hn]:null}function Iu(e){return function U0(e,t){if("class"===t)return e.classes;if("style"===t)return e.styles;const n=e.attrs;if(n){const r=n.length;let o=0;for(;o{class e{static#e=this.THROW_IF_NOT_FOUND=Ua;static#t=this.NULL=new Cc;static create(n,r){if(Array.isArray(n))return Ap({name:""},r,n,"");{const o=n.name??"";return Ap({name:o},n.parent,n.providers,o)}}static#i=this.\u0275prov=Rn({token:e,providedIn:"any",factory:()=>x(np)});static#n=this.__NG_ELEMENT_ID__=-1}return e})();function Au(e){return e.ngOriginalError}class Es{constructor(){this._console=console}handleError(t){const n=this._findOriginalError(t);this._console.error("ERROR",t),n&&this._console.error("ORIGINAL ERROR",n)}_findOriginalError(t){let n=t&&Au(t);for(;n&&Au(n);)n=Au(n);return n||null}}const Rp=new rt("",{providedIn:"root",factory:()=>z(Es).handleError.bind(void 0)}),Fp=new rt("",{providedIn:"root",factory:()=>!1});let Hc,Gc;function Io(e){return function Lu(){if(void 0===Hc&&(Hc=null,nt.trustedTypes))try{Hc=nt.trustedTypes.createPolicy("angular",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return Hc}()?.createHTML(e)||e}function Ou(){if(void 0===Gc&&(Gc=null,nt.trustedTypes))try{Gc=nt.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return Gc}function Np(e){return Ou()?.createHTML(e)||e}function Bp(e){return Ou()?.createScriptURL(e)||e}class Ks{constructor(t){this.changingThisBreaksApplicationSecurity=t}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${Kt})`}}class rw extends Ks{getTypeName(){return"HTML"}}class aw extends Ks{getTypeName(){return"Style"}}class sw extends Ks{getTypeName(){return"Script"}}class ow extends Ks{getTypeName(){return"URL"}}class lw extends Ks{getTypeName(){return"ResourceURL"}}function ys(e){return e instanceof Ks?e.changingThisBreaksApplicationSecurity:e}function To(e,t){const n=function cw(e){return e instanceof Ks&&e.getTypeName()||null}(e);if(null!=n&&n!==t){if("ResourceURL"===n&&"URL"===t)return!0;throw new Error(`Required a safe ${t}, got a ${n} (see ${Kt})`)}return n===t}function dw(e){return new rw(e)}function uw(e){return new aw(e)}function hw(e){return new sw(e)}function mw(e){return new ow(e)}function pw(e){return new lw(e)}class fw{constructor(t){this.inertDocumentHelper=t}getInertBodyElement(t){t=""+t;try{const n=(new window.DOMParser).parseFromString(Io(t),"text/html").body;return null===n?this.inertDocumentHelper.getInertBodyElement(t):(n.removeChild(n.firstChild),n)}catch{return null}}}class _w{constructor(t){this.defaultDoc=t,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(t){const n=this.inertDocument.createElement("template");return n.innerHTML=Io(t),n}}const vw=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function Vc(e){return(e=String(e)).match(vw)?e:"unsafe:"+e}function ws(e){const t={};for(const n of e.split(","))t[n]=!0;return t}function Cl(...e){const t={};for(const n of e)for(const r in n)n.hasOwnProperty(r)&&(t[r]=!0);return t}const Gp=ws("area,br,col,hr,img,wbr"),Vp=ws("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),jp=ws("rp,rt"),Ru=Cl(Gp,Cl(Vp,ws("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")),Cl(jp,ws("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")),Cl(jp,Vp)),Pu=ws("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Up=Cl(Pu,ws("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,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),ws("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")),bw=ws("script,style,template");class yw{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(t){let n=t.firstChild,r=!0;for(;n;)if(n.nodeType===Node.ELEMENT_NODE?r=this.startElement(n):n.nodeType===Node.TEXT_NODE?this.chars(n.nodeValue):this.sanitizedSomething=!0,r&&n.firstChild)n=n.firstChild;else for(;n;){n.nodeType===Node.ELEMENT_NODE&&this.endElement(n);let o=this.checkClobberedElement(n,n.nextSibling);if(o){n=o;break}n=this.checkClobberedElement(n,n.parentNode)}return this.buf.join("")}startElement(t){const n=t.nodeName.toLowerCase();if(!Ru.hasOwnProperty(n))return this.sanitizedSomething=!0,!bw.hasOwnProperty(n);this.buf.push("<"),this.buf.push(n);const r=t.attributes;for(let o=0;o"),!0}endElement(t){const n=t.nodeName.toLowerCase();Ru.hasOwnProperty(n)&&!Gp.hasOwnProperty(n)&&(this.buf.push(""))}chars(t){this.buf.push(Wp(t))}checkClobberedElement(t,n){if(n&&(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${t.outerHTML}`);return n}}const ww=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,xw=/([^\#-~ |!])/g;function Wp(e){return e.replace(/&/g,"&").replace(ww,function(t){return"&#"+(1024*(t.charCodeAt(0)-55296)+(t.charCodeAt(1)-56320)+65536)+";"}).replace(xw,function(t){return"&#"+t.charCodeAt(0)+";"}).replace(//g,">")}let jc;function zp(e,t){let n=null;try{jc=jc||function Hp(e){const t=new _w(e);return function gw(){try{return!!(new window.DOMParser).parseFromString(Io(""),"text/html")}catch{return!1}}()?new fw(t):t}(e);let r=t?String(t):"";n=jc.getInertBodyElement(r);let o=5,c=r;do{if(0===o)throw new Error("Failed to sanitize html because the input is unstable");o--,r=c,c=n.innerHTML,n=jc.getInertBodyElement(r)}while(r!==c);return Io((new yw).sanitizeChildren(Fu(n)||n))}finally{if(n){const r=Fu(n)||n;for(;r.firstChild;)r.removeChild(r.firstChild)}}}function Fu(e){return"content"in e&&function Mw(e){return e.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===e.nodeName}(e)?e.content:null}var Qs=function(e){return e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL",e}(Qs||{});function $p(e){const t=kl();return t?Np(t.sanitize(Qs.HTML,e)||""):To(e,"HTML")?Np(ys(e)):zp(Va(),tn(e))}function Nu(e){const t=kl();return t?t.sanitize(Qs.URL,e)||"":To(e,"URL")?ys(e):Vc(tn(e))}function Kp(e){const t=kl();if(t)return Bp(t.sanitize(Qs.RESOURCE_URL,e)||"");if(To(e,"ResourceURL"))return Bp(ys(e));throw new Ut(904,!1)}function Qp(e,t,n){return function Sw(e,t){return"src"===t&&("embed"===e||"frame"===e||"iframe"===e||"media"===e||"script"===e)||"href"===t&&("base"===e||"link"===e)?Kp:Nu}(t,n)(e)}function kl(){const e=ti();return e&&e[Wn].sanitizer}const Iw=/^>|^->||--!>|)/g,Aw="\u200b$1\u200b";const Yu=new Map;let Fw=0;const Hu="__ngContext__";function va(e,t){Nn(t)?(e[Hu]=t[Jr],function Yw(e){Yu.set(e[Jr],e)}(t)):e[Hu]=t}function lf(e){return e.ownerDocument}function Na(e){return e instanceof Function?e():e}var zc=function(e){return e[e.Important=1]="Important",e[e.DashCase=2]="DashCase",e}(zc||{});let Uu;function Wu(e,t){return Uu(e,t)}function Lo(e,t,n,r,o){if(null!=r){let c,m=!1;Yn(r)?c=r:Nn(r)&&(m=!0,r=r[on]);const v=nn(r);0===e&&null!==n?null==o?gf(t,n,v):Xs(t,n,v,o||null,!0):1===e&&null!==n?Xs(t,n,v,o||null,!0):2===e?function Jc(e,t,n){const r=Xc(e,t);r&&function ax(e,t,n,r){e.removeChild(t,n,r)}(e,r,t,n)}(t,v,m):3===e&&t.destroyNode(v),null!=c&&function lx(e,t,n,r,o){const c=n[$n];c!==nn(n)&&Lo(t,e,r,c,o);for(let v=Cn;vt.replace(Tw,Aw))}(t))}function Kc(e,t,n){return e.createElement(t,n)}function pf(e,t){qc(e,t,t[Bi],2,null,null)}function ff(e,t){const n=e[yr],r=n.indexOf(t);n.splice(r,1)}function Sl(e,t){if(e.length<=Cn)return;const n=Cn+t,r=e[n];if(r){const o=r[_r];null!==o&&o!==e&&ff(o,r),t>0&&(e[n-1][Un]=r[Un]);const c=es(e,Cn+t);!function Jw(e,t){pf(e,t),t[on]=null,t[Hn]=null}(r[bi],r);const m=c[er];null!==m&&m.detachView(c[bi]),r[In]=null,r[Un]=null,r[Pi]&=-129}return r}function Qc(e,t){if(!(256&t[Pi])){const n=t[Bi];n.destroyNode&&qc(e,t,n,3,null,null),function ex(e){let t=e[fr];if(!t)return $u(e[bi],e);for(;t;){let n=null;if(Nn(t))n=t[fr];else{const r=t[Cn];r&&(n=r)}if(!n){for(;t&&!t[Un]&&t!==e;)Nn(t)&&$u(t[bi],t),t=t[In];null===t&&(t=e),Nn(t)&&$u(t[bi],t),n=t&&t[Un]}t=n}}(t)}}function $u(e,t){if(!(256&t[Pi])){t[Pi]&=-129,t[Pi]|=256,t[zn]&&function Ye(e){if(ye(e),_e(e))for(let t=0;t=0?r[m]():r[-m].unsubscribe(),c+=2}else n[c].call(r[n[c+1]]);null!==r&&(t[br]=null);const o=t[lr];if(null!==o){t[lr]=null;for(let c=0;c-1){const{encapsulation:c}=e.data[r.directiveStart+o];if(c===Ci.None||c===Ci.Emulated)return null}return ur(r,n)}}(e,t.parent,n)}function Xs(e,t,n,r,o){e.insertBefore(t,n,r,o)}function gf(e,t,n){e.appendChild(t,n)}function vf(e,t,n,r,o){null!==r?Xs(e,t,n,r,o):gf(e,t,n)}function Xc(e,t){return e.parentNode(t)}function bf(e,t,n){return wf(e,t,n)}let Qu,wf=function yf(e,t,n){return 40&e.type?ur(e,n):null};function Zc(e,t,n,r){const o=Ku(e,r,t),c=t[Bi],v=bf(r.parent||t[Hn],r,t);if(null!=o)if(Array.isArray(n))for(let E=0;EHi&&If(e,t,Hi,!1),as(m?2:0,o),n(r,o)}finally{vr(c),as(m?3:1,o)}}function qu(e,t,n){if(qr(t)){const r=g(null);try{const c=t.directiveEnd;for(let m=t.directiveStart;mnull;function Pf(e,t,n,r,o){for(let c in t){if(!t.hasOwnProperty(c))continue;const m=t[c];if(void 0===m)continue;r??={};let v,E=A.None;Array.isArray(m)?(v=m[0],E=m[1]):v=m;let W=c;if(null!==o){if(!o.hasOwnProperty(c))continue;W=o[c]}0===e?Ff(r,n,W,v,E):Ff(r,n,W,v)}return r}function Ff(e,t,n,r,o){let c;e.hasOwnProperty(n)?(c=e[n]).push(t,r):c=e[n]=[t,r],void 0!==o&&c.push(o)}function Ia(e,t,n,r,o,c,m,v){const E=ur(t,n);let ue,W=t.inputs;!v&&null!=W&&(ue=W[r])?(oh(e,n,ue,r,o),Lr(t)&&function wx(e,t){const n=Kn(t,e);16&n[Pi]||(n[Pi]|=64)}(n,t.index)):3&t.type&&(r=function yx(e){return"class"===e?"className":"for"===e?"htmlFor":"formaction"===e?"formAction":"innerHtml"===e?"innerHTML":"readonly"===e?"readOnly":"tabindex"===e?"tabIndex":e}(r),o=null!=m?m(o,t.value||"",r):o,c.setProperty(E,r,o))}function nh(e,t,n,r){if(dn()){const o=null===r?null:{"":-1},c=function Ex(e,t){const n=e.directiveRegistry;let r=null,o=null;if(n)for(let c=0;c0;){const n=e[--t];if("number"==typeof n&&n<0)return n}return 0})(m)!=v&&m.push(v),m.push(n,r,c)}}(e,t,r,Tl(e,n,o.hostVars,un),o)}function os(e,t,n,r,o,c){const m=ur(e,t);!function ah(e,t,n,r,o,c,m){if(null==c)e.removeAttribute(t,o,n);else{const v=null==m?tn(c):m(c,r||"",o);e.setAttribute(t,o,v,n)}}(t[Bi],m,c,e.value,n,r,o)}function Ox(e,t,n,r,o,c){const m=c[t];if(null!==m)for(let v=0;v0&&(n[o-1][Un]=t),r!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{},consumerIsAlwaysLive:!0,consumerMarkedDirty:e=>{Ct(e.lView)},consumerOnSignalRead(){this.lView[zn]=this}};function $f(e){return Qf(e[fr])}function Kf(e){return Qf(e[Un])}function Qf(e){for(;null!==e&&!Yn(e);)e=e[Un];return e}function nd(e,t=!0,n=0){const r=e[Wn],o=r.rendererFactory;o.begin?.();try{!function Ux(e,t){dh(e,t);let n=0;for(;pe(e);){if(100===n)throw new Ut(103,!1);n++,dh(e,1)}}(e,n)}catch(m){throw t&&id(e,m),m}finally{o.end?.(),r.inlineEffectRunner?.flush()}}function Wx(e,t,n,r){const o=t[Pi];if(256==(256&o))return;t[Wn].inlineEffectRunner?.flush(),Ki(t);let m=null,v=null;(function zx(e){return 2!==e.type})(e)&&(v=function Yx(e){return e[zn]??function Bx(e){const t=zf.pop()??Object.create(Gx);return t.lView=e,t}(e)}(t),m=function gt(e){return e&&(e.nextProducerIndex=0),g(e)}(v));try{M(t),function Mn(e){return ui.lFrame.bindingIndex=e}(e.bindingStartIndex),null!==n&&Lf(e,t,n,2,r);const E=3==(3&o);if(E){const He=e.preOrderCheckHooks;null!==He&&Lc(t,He,null)}else{const He=e.preOrderHooks;null!==He&&Oc(t,He,0,null),xu(t,0)}if(function $x(e){for(let t=$f(e);null!==t;t=Kf(t)){if(!(t[Pi]&ar.HasTransplantedViews))continue;const n=t[yr];for(let r=0;re.nextProducerIndex;)e.producerNode.pop(),e.producerLastReadVersion.pop(),e.producerIndexOfThis.pop()}}(v,m),function Hx(e){e.lView[zn]!==e&&(e.lView=null,zf.push(e))}(v)),Qn()}}function Zf(e,t){for(let n=$f(e);null!==n;n=Kf(n))for(let r=Cn;r-1&&(Sl(t,r),es(n,r))}this._attachedToViewContainer=!1}Qc(this._lView[bi],this._lView)}onDestroy(t){Pt(this._lView,t)}markForCheck(){Rl(this._cdRefInjectingView||this._lView)}detach(){this._lView[Pi]&=-129}reattach(){Qe(this._lView),this._lView[Pi]|=128}detectChanges(){this._lView[Pi]|=1024,nd(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new Ut(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null,pf(this._lView[bi],this._lView)}attachToAppRef(t){if(this._attachedToViewContainer)throw new Ut(902,!1);this._appRef=t,Qe(this._lView)}}let Fl=(()=>{class e{static#e=this.__NG_ELEMENT_ID__=Zx}return e})();const Qx=Fl,Xx=class extends Qx{constructor(t,n,r){super(),this._declarationLView=t,this._declarationTContainer=n,this.elementRef=r}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(t,n){return this.createEmbeddedViewImpl(t,n)}createEmbeddedViewImpl(t,n,r){const o=function Al(e,t,n,r){const o=t.tView,v=ed(e,o,n,4096&e[Pi]?4096:16,null,t,null,null,null,r?.injector??null,r?.dehydratedView??null);v[_r]=e[t.index];const W=e[er];return null!==W&&(v[er]=W.createEmbeddedView(o)),lh(o,v,n),v}(this._declarationLView,this._declarationTContainer,t,{injector:n,dehydratedView:r});return new Pl(o)}};function Zx(){return rd(de(),ti())}function rd(e,t){return 4&e.type?new Xx(t,e,zr(e,t)):null}class _h{}class bM{}class s_{}class wM{resolveComponentFactory(t){throw function yM(e){const t=Error(`No component factory found for ${Ht(e)}.`);return t.ngComponent=e,t}(t)}}let Gl=(()=>{class e{static#e=this.NULL=new wM}return e})();class l_{}let xM=(()=>{class e{constructor(){this.destroyNode=null}static#e=this.__NG_ELEMENT_ID__=()=>function MM(){const e=ti(),n=Kn(de().index,e);return(Nn(n)?n:e)[Bi]}()}return e})(),DM=(()=>{class e{static#e=this.\u0275prov=Rn({token:e,providedIn:"root",factory:()=>null})}return e})();const gh={};function d_(e){return function c_(e){return"function"==typeof e&&void 0!==e[f]}(e)&&"function"==typeof e.set}function EM(e){const t=g(null);try{return e()}finally{g(t)}}function cd(e){return!!vh(e)&&(Array.isArray(e)||!(e instanceof Map)&&Symbol.iterator in e)}function vh(e){return null!==e&&("function"==typeof e||"object"==typeof e)}class u_{constructor(){}supports(t){return cd(t)}create(t){return new AM(t)}}const TM=(e,t)=>t;class AM{constructor(t){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||TM}forEachItem(t){let n;for(n=this._itHead;null!==n;n=n._next)t(n)}forEachOperation(t){let n=this._itHead,r=this._removalsHead,o=0,c=null;for(;n||r;){const m=!r||n&&n.currentIndex{m=this._trackByFn(o,v),null!==n&&Object.is(n.trackById,m)?(r&&(n=this._verifyReinsertion(n,v,m,o)),Object.is(n.item,v)||this._addIdentityChange(n,v)):(n=this._mismatch(n,v,m,o),r=!0),n=n._next,o++}),this.length=o;return this._truncate(n),this.collection=t,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let t;for(t=this._previousItHead=this._itHead;null!==t;t=t._next)t._nextPrevious=t._next;for(t=this._additionsHead;null!==t;t=t._nextAdded)t.previousIndex=t.currentIndex;for(this._additionsHead=this._additionsTail=null,t=this._movesHead;null!==t;t=t._nextMoved)t.previousIndex=t.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(t,n,r,o){let c;return null===t?c=this._itTail:(c=t._prev,this._remove(t)),null!==(t=null===this._unlinkedRecords?null:this._unlinkedRecords.get(r,null))?(Object.is(t.item,n)||this._addIdentityChange(t,n),this._reinsertAfter(t,c,o)):null!==(t=null===this._linkedRecords?null:this._linkedRecords.get(r,o))?(Object.is(t.item,n)||this._addIdentityChange(t,n),this._moveAfter(t,c,o)):t=this._addAfter(new LM(n,r),c,o),t}_verifyReinsertion(t,n,r,o){let c=null===this._unlinkedRecords?null:this._unlinkedRecords.get(r,null);return null!==c?t=this._reinsertAfter(c,t._prev,o):t.currentIndex!=o&&(t.currentIndex=o,this._addToMoves(t,o)),t}_truncate(t){for(;null!==t;){const n=t._next;this._addToRemovals(this._unlink(t)),t=n}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(t,n,r){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(t);const o=t._prevRemoved,c=t._nextRemoved;return null===o?this._removalsHead=c:o._nextRemoved=c,null===c?this._removalsTail=o:c._prevRemoved=o,this._insertAfter(t,n,r),this._addToMoves(t,r),t}_moveAfter(t,n,r){return this._unlink(t),this._insertAfter(t,n,r),this._addToMoves(t,r),t}_addAfter(t,n,r){return this._insertAfter(t,n,r),this._additionsTail=null===this._additionsTail?this._additionsHead=t:this._additionsTail._nextAdded=t,t}_insertAfter(t,n,r){const o=null===n?this._itHead:n._next;return t._next=o,t._prev=n,null===o?this._itTail=t:o._prev=t,null===n?this._itHead=t:n._next=t,null===this._linkedRecords&&(this._linkedRecords=new h_),this._linkedRecords.put(t),t.currentIndex=r,t}_remove(t){return this._addToRemovals(this._unlink(t))}_unlink(t){null!==this._linkedRecords&&this._linkedRecords.remove(t);const n=t._prev,r=t._next;return null===n?this._itHead=r:n._next=r,null===r?this._itTail=n:r._prev=n,t}_addToMoves(t,n){return t.previousIndex===n||(this._movesTail=null===this._movesTail?this._movesHead=t:this._movesTail._nextMoved=t),t}_addToRemovals(t){return null===this._unlinkedRecords&&(this._unlinkedRecords=new h_),this._unlinkedRecords.put(t),t.currentIndex=null,t._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=t,t._prevRemoved=null):(t._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=t),t}_addIdentityChange(t,n){return t.item=n,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=t:this._identityChangesTail._nextIdentityChange=t,t}}class LM{constructor(t,n){this.item=t,this.trackById=n,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 OM{constructor(){this._head=null,this._tail=null}add(t){null===this._head?(this._head=this._tail=t,t._nextDup=null,t._prevDup=null):(this._tail._nextDup=t,t._prevDup=this._tail,t._nextDup=null,this._tail=t)}get(t,n){let r;for(r=this._head;null!==r;r=r._nextDup)if((null===n||n<=r.currentIndex)&&Object.is(r.trackById,t))return r;return null}remove(t){const n=t._prevDup,r=t._nextDup;return null===n?this._head=r:n._nextDup=r,null===r?this._tail=n:r._prevDup=n,null===this._head}}class h_{constructor(){this.map=new Map}put(t){const n=t.trackById;let r=this.map.get(n);r||(r=new OM,this.map.set(n,r)),r.add(t)}get(t,n){const o=this.map.get(t);return o?o.get(t,n):null}remove(t){const n=t.trackById;return this.map.get(n).remove(t)&&this.map.delete(n),t}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function m_(e,t,n){const r=e.previousIndex;if(null===r)return r;let o=0;return n&&r{if(n&&n.key===o)this._maybeAddToChanges(n,r),this._appendAfter=n,n=n._next;else{const c=this._getOrCreateRecordForKey(o,r);n=this._insertBeforeOrAppend(n,c)}}),n){n._prev&&(n._prev._next=null),this._removalsHead=n;for(let r=n;null!==r;r=r._nextRemoved)r===this._mapHead&&(this._mapHead=null),this._records.delete(r.key),r._nextRemoved=r._next,r.previousValue=r.currentValue,r.currentValue=null,r._prev=null,r._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(t,n){if(t){const r=t._prev;return n._next=t,n._prev=r,t._prev=n,r&&(r._next=n),t===this._mapHead&&(this._mapHead=n),this._appendAfter=t,t}return this._appendAfter?(this._appendAfter._next=n,n._prev=this._appendAfter):this._mapHead=n,this._appendAfter=n,null}_getOrCreateRecordForKey(t,n){if(this._records.has(t)){const o=this._records.get(t);this._maybeAddToChanges(o,n);const c=o._prev,m=o._next;return c&&(c._next=m),m&&(m._prev=c),o._next=null,o._prev=null,o}const r=new PM(t);return this._records.set(t,r),r.currentValue=n,this._addToAdditions(r),r}_reset(){if(this.isDirty){let t;for(this._previousMapHead=this._mapHead,t=this._previousMapHead;null!==t;t=t._next)t._nextPrevious=t._next;for(t=this._changesHead;null!==t;t=t._nextChanged)t.previousValue=t.currentValue;for(t=this._additionsHead;null!=t;t=t._nextAdded)t.previousValue=t.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(t,n){Object.is(n,t.currentValue)||(t.previousValue=t.currentValue,t.currentValue=n,this._addToChanges(t))}_addToAdditions(t){null===this._additionsHead?this._additionsHead=this._additionsTail=t:(this._additionsTail._nextAdded=t,this._additionsTail=t)}_addToChanges(t){null===this._changesHead?this._changesHead=this._changesTail=t:(this._changesTail._nextChanged=t,this._changesTail=t)}_forEach(t,n){t instanceof Map?t.forEach(n):Object.keys(t).forEach(r=>n(t[r],r))}}class PM{constructor(t){this.key=t,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function f_(){return new bh([new u_])}let bh=(()=>{class e{static#e=this.\u0275prov=Rn({token:e,providedIn:"root",factory:f_});constructor(n){this.factories=n}static create(n,r){if(null!=r){const o=r.factories.slice();n=n.concat(o)}return new e(n)}static extend(n){return{provide:e,useFactory:r=>e.create(n,r||f_()),deps:[[e,new Dc,new Mc]]}}find(n){const r=this.factories.find(o=>o.supports(n));if(null!=r)return r;throw new Ut(901,!1)}}return e})();function __(){return new yh([new p_])}let yh=(()=>{class e{static#e=this.\u0275prov=Rn({token:e,providedIn:"root",factory:__});constructor(n){this.factories=n}static create(n,r){if(r){const o=r.factories.slice();n=n.concat(o)}return new e(n)}static extend(n){return{provide:e,useFactory:r=>e.create(n,r||__()),deps:[[e,new Dc,new Mc]]}}find(n){const r=this.factories.find(o=>o.supports(n));if(r)return r;throw new Ut(901,!1)}}return e})(),g_=(()=>{class e{static#e=this.__NG_ELEMENT_ID__=NM}return e})();function NM(e){return function YM(e,t,n){if(Lr(e)&&!n){const r=Kn(e.index,t);return new Pl(r,r)}return 47&e.type?new Pl(t[xn],t):null}(de(),ti(),16==(16&e))}let dd=(()=>{class e{static#e=this.__NG_ELEMENT_ID__=VM;static#t=this.__NG_ENV_ID__=n=>n}return e})();class GM extends dd{constructor(t){super(),this._lView=t}onDestroy(t){return Pt(this._lView,t),()=>function qt(e,t){if(null===e[lr])return;const n=e[lr].indexOf(t);-1!==n&&e[lr].splice(n,1)}(this._lView,t)}}function VM(){return new GM(ti())}const v_=new Set;function Zs(e){v_.has(e)||(v_.add(e),performance?.mark?.("mark_feature_usage",{detail:{feature:e}}))}function b_(...e){}class Mr{constructor({enableLongStackTrace:t=!1,shouldCoalesceEventChangeDetection:n=!1,shouldCoalesceRunChangeDetection:r=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Ze(!1),this.onMicrotaskEmpty=new Ze(!1),this.onStable=new Ze(!1),this.onError=new Ze(!1),typeof Zone>"u")throw new Ut(908,!1);Zone.assertZonePatched();const o=this;o._nesting=0,o._outer=o._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(o._inner=o._inner.fork(new Zone.TaskTrackingZoneSpec)),t&&Zone.longStackTraceZoneSpec&&(o._inner=o._inner.fork(Zone.longStackTraceZoneSpec)),o.shouldCoalesceEventChangeDetection=!r&&n,o.shouldCoalesceRunChangeDetection=r,o.lastRequestAnimationFrameId=-1,o.nativeRequestAnimationFrame=function KM(){const e="function"==typeof nt.requestAnimationFrame;let t=nt[e?"requestAnimationFrame":"setTimeout"],n=nt[e?"cancelAnimationFrame":"clearTimeout"];if(typeof Zone<"u"&&t&&n){const r=t[Zone.__symbol__("OriginalDelegate")];r&&(t=r);const o=n[Zone.__symbol__("OriginalDelegate")];o&&(n=o)}return{nativeRequestAnimationFrame:t,nativeCancelAnimationFrame:n}}().nativeRequestAnimationFrame,function ZM(e){const t=()=>{!function XM(e){e.isCheckStableRunning||-1!==e.lastRequestAnimationFrameId||(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(nt,()=>{e.fakeTopEventTask||(e.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{e.lastRequestAnimationFrameId=-1,xh(e),e.isCheckStableRunning=!0,wh(e),e.isCheckStableRunning=!1},void 0,()=>{},()=>{})),e.fakeTopEventTask.invoke()}),xh(e))}(e)};e._inner=e._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(n,r,o,c,m,v)=>{if(function JM(e){return!(!Array.isArray(e)||1!==e.length)&&!0===e[0].data?.__ignore_ng_zone__}(v))return n.invokeTask(o,c,m,v);try{return y_(e),n.invokeTask(o,c,m,v)}finally{(e.shouldCoalesceEventChangeDetection&&"eventTask"===c.type||e.shouldCoalesceRunChangeDetection)&&t(),w_(e)}},onInvoke:(n,r,o,c,m,v,E)=>{try{return y_(e),n.invoke(o,c,m,v,E)}finally{e.shouldCoalesceRunChangeDetection&&t(),w_(e)}},onHasTask:(n,r,o,c)=>{n.hasTask(o,c),r===o&&("microTask"==c.change?(e._hasPendingMicrotasks=c.microTask,xh(e),wh(e)):"macroTask"==c.change&&(e.hasPendingMacrotasks=c.macroTask))},onHandleError:(n,r,o,c)=>(n.handleError(o,c),e.runOutsideAngular(()=>e.onError.emit(c)),!1)})}(o)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!Mr.isInAngularZone())throw new Ut(909,!1)}static assertNotInAngularZone(){if(Mr.isInAngularZone())throw new Ut(909,!1)}run(t,n,r){return this._inner.run(t,n,r)}runTask(t,n,r,o){const c=this._inner,m=c.scheduleEventTask("NgZoneEvent: "+o,t,QM,b_,b_);try{return c.runTask(m,n,r)}finally{c.cancelTask(m)}}runGuarded(t,n,r){return this._inner.runGuarded(t,n,r)}runOutsideAngular(t){return this._outer.run(t)}}const QM={};function wh(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 xh(e){e.hasPendingMicrotasks=!!(e._hasPendingMicrotasks||(e.shouldCoalesceEventChangeDetection||e.shouldCoalesceRunChangeDetection)&&-1!==e.lastRequestAnimationFrameId)}function y_(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function w_(e){e._nesting--,wh(e)}class x_{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Ze,this.onMicrotaskEmpty=new Ze,this.onStable=new Ze,this.onError=new Ze}run(t,n,r){return t.apply(n,r)}runGuarded(t,n,r){return t.apply(n,r)}runOutsideAngular(t){return t()}runTask(t,n,r,o){return t.apply(n,r)}}var Js=function(e){return e[e.EarlyRead=0]="EarlyRead",e[e.Write=1]="Write",e[e.MixedReadWrite=2]="MixedReadWrite",e[e.Read=3]="Read",e}(Js||{});const M_={destroy(){}};function C_(e,t){!t&&function vu(e){if(!gc()&&!function fo(){return Pa}())throw new Ut(-203,!1)}();const n=t?.injector??z(Wa);if(!function Ss(e){return"browser"===(e??z(Wa)).get(Zi)}(n))return M_;Zs("NgAfterNextRender");const r=n.get(Vl),o=r.handler??=new E_,c=t?.phase??Js.MixedReadWrite,m=()=>{o.unregister(E),v()},v=n.get(dd).onDestroy(m),E=new k_(n,c,()=>{m(),e()});return o.register(E),{destroy:m}}class k_{constructor(t,n,r){this.phase=n,this.callbackFn=r,this.zone=t.get(Mr),this.errorHandler=t.get(Es,null,{optional:!0})}invoke(){try{this.zone.runOutsideAngular(this.callbackFn)}catch(t){this.errorHandler?.handleError(t)}}}class E_{constructor(){this.executingCallbacks=!1,this.buckets={[Js.EarlyRead]:new Set,[Js.Write]:new Set,[Js.MixedReadWrite]:new Set,[Js.Read]:new Set},this.deferredCallbacks=new Set}register(t){(this.executingCallbacks?this.deferredCallbacks:this.buckets[t.phase]).add(t)}unregister(t){this.buckets[t.phase].delete(t),this.deferredCallbacks.delete(t)}execute(){this.executingCallbacks=!0;for(const t of Object.values(this.buckets))for(const n of t)n.invoke();this.executingCallbacks=!1;for(const t of this.deferredCallbacks)this.buckets[t.phase].add(t);this.deferredCallbacks.clear()}destroy(){for(const t of Object.values(this.buckets))t.clear();this.deferredCallbacks.clear()}}let Vl=(()=>{class e{constructor(){this.handler=null,this.internalCallbacks=[]}execute(){const n=[...this.internalCallbacks];this.internalCallbacks.length=0;for(const r of n)r();this.handler?.execute()}ngOnDestroy(){this.handler?.destroy(),this.handler=null,this.internalCallbacks.length=0}static#e=this.\u0275prov=Rn({token:e,providedIn:"root",factory:()=>new e})}return e})();function Is(e){return!!jn(e)}function hd(e,t,n){let r=n?e.styles:null,o=n?e.classes:null,c=0;if(null!==t)for(let m=0;m0&&kf(e,n,c.join(" "))}}(St,Sn,ii,r),void 0!==n&&function uD(e,t,n){const r=e.projection=[];for(let o=0;o{class e{static#e=this.__NG_ELEMENT_ID__=mD}return e})();function mD(){return R_(de(),ti())}const pD=md,L_=class extends pD{constructor(t,n,r){super(),this._lContainer=t,this._hostTNode=n,this._hostLView=r}get element(){return zr(this._hostTNode,this._hostLView)}get injector(){return new Kr(this._hostTNode,this._hostLView)}get parentInjector(){const t=Fc(this._hostTNode,this._hostLView);if(Du(t)){const n=Dl(t,this._hostLView),r=Ml(t);return new Kr(n[bi].data[r+8],n)}return new Kr(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(t){const n=O_(this._lContainer);return null!==n&&n[t]||null}get length(){return this._lContainer.length-Cn}createEmbeddedView(t,n,r){let o,c;"number"==typeof r?o=r:null!=r&&(o=r.index,c=r.injector);const v=t.createEmbeddedViewImpl(n||{},c,null);return this.insertImpl(v,o,Po(this._hostTNode,null)),v}createComponent(t,n,r,o,c){const m=t&&!function wl(e){return"function"==typeof e}(t);let v;if(m)v=n;else{const ii=n||{};v=ii.index,r=ii.injector,o=ii.projectableNodes,c=ii.environmentInjector||ii.ngModuleRef}const E=m?t:new Wl(Xi(t)),W=r||this.parentInjector;if(!c&&null==E.ngModule){const _i=(m?W:this.parentInjector).get(rs,null);_i&&(c=_i)}Xi(E.componentType??{});const Gt=E.create(W,o,null,c);return this.insertImpl(Gt.hostView,v,Po(this._hostTNode,null)),Gt}insert(t,n){return this.insertImpl(t,n,!0)}insertImpl(t,n,r){const o=t._lView;if(function Ea(e){return Yn(e[In])}(o)){const v=this.indexOf(t);if(-1!==v)this.detach(v);else{const E=o[In],W=new L_(E,E[Hn],E[In]);W.detach(W.indexOf(t))}}const c=this._adjustIndex(n),m=this._lContainer;return Ll(m,o,c,r),t.attachToViewContainerRef(),Rs(Ch(m),c,t),t}move(t,n){return this.insert(t,n)}indexOf(t){const n=O_(this._lContainer);return null!==n?n.indexOf(t):-1}remove(t){const n=this._adjustIndex(t,-1),r=Sl(this._lContainer,n);r&&(es(Ch(this._lContainer),n),Qc(r[bi],r))}detach(t){const n=this._adjustIndex(t,-1),r=Sl(this._lContainer,n);return r&&null!=es(Ch(this._lContainer),n)?new Pl(r):null}_adjustIndex(t,n=0){return t??this.length+n}};function O_(e){return e[8]}function Ch(e){return e[8]||(e[8]=[])}function R_(e,t){let n;const r=t[e.index];return Yn(r)?n=r:(n=Bf(r,t,null,e),t[e.index]=n,td(t,n)),P_(n,t,e,r),new L_(n,e,t)}let P_=function N_(e,t,n,r){if(e[$n])return;let o;o=8&n.type?nn(r):function fD(e,t){const n=e[Bi],r=n.createComment(""),o=ur(t,e);return Xs(n,Xc(n,o),r,function sx(e,t){return e.nextSibling(t)}(n,o),!1),r}(t,n),e[$n]=o},kh=()=>!1;class Eh{constructor(t){this.queryList=t,this.matches=null}clone(){return new Eh(this.queryList)}setDirty(){this.queryList.setDirty()}}class Sh{constructor(t=[]){this.queries=t}createEmbeddedView(t){const n=t.queries;if(null!==n){const r=null!==t.contentQueries?t.contentQueries[0]:n.length,o=[];for(let c=0;ct.trim())}(t):t}}class Ih{constructor(t=[]){this.queries=t}elementStart(t,n){for(let r=0;r0)r.push(m[v/2]);else{const W=c[v+1],ue=t[-E];for(let He=Cn;He=0;r--){const o=e[r];o.hostVars=t+=o.hostVars,o.hostAttrs=Zt(o.hostAttrs,n=Zt(n,o.hostAttrs))}}(r)}function RD(e,t){for(const n in t.inputs){if(!t.inputs.hasOwnProperty(n)||e.inputs.hasOwnProperty(n))continue;const r=t.inputs[n];if(void 0!==r&&(e.inputs[n]=r,e.declaredInputs[n]=t.declaredInputs[n],null!==t.inputTransforms)){const o=Array.isArray(r)?r[0]:r;if(!t.inputTransforms.hasOwnProperty(o))continue;e.inputTransforms??={},e.inputTransforms[o]=t.inputTransforms[o]}}}function fd(e){return e===yi?{}:e===Ti?[]:e}function FD(e,t){const n=e.viewQuery;e.viewQuery=n?(r,o)=>{t(r,o),n(r,o)}:t}function ND(e,t){const n=e.contentQueries;e.contentQueries=n?(r,o,c)=>{t(r,o,c),n(r,o,c)}:t}function YD(e,t){const n=e.hostBindings;e.hostBindings=n?(r,o)=>{t(r,o),n(r,o)}:t}function ag(e){const t=e.inputConfig,n={};for(const r in t)if(t.hasOwnProperty(r)){const o=t[r];Array.isArray(o)&&o[3]&&(n[r]=o[3])}e.inputTransforms=n}class qs{}class sg{}function WD(e,t){return new Fh(e,t??null,[])}class Fh extends qs{constructor(t,n,r){super(),this._parent=n,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new T_(this);const o=jn(t);this._bootstrapComponents=Na(o.bootstrap),this._r3Injector=Lp(t,n,[{provide:qs,useValue:this},{provide:Gl,useValue:this.componentFactoryResolver},...r],Ht(t),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(t)}get injector(){return this._r3Injector}destroy(){const t=this._r3Injector;!t.destroyed&&t.destroy(),this.destroyCbs.forEach(n=>n()),this.destroyCbs=null}onDestroy(t){this.destroyCbs.push(t)}}class Nh extends sg{constructor(t){super(),this.moduleType=t}create(t){return new Fh(this.moduleType,t,[])}}class og extends qs{constructor(t){super(),this.componentFactoryResolver=new T_(this),this.instance=null;const n=new Mo([...t.providers,{provide:qs,useValue:this},{provide:Gl,useValue:this.componentFactoryResolver}],t.parent||Ic(),t.debugName,new Set(["environment"]));this.injector=n,t.runEnvironmentInitializers&&n.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(t){this.injector.onDestroy(t)}}function lg(e,t,n=null){return new og({providers:e,parent:t,debugName:n,runEnvironmentInitializers:!0}).injector}let $l=(()=>{class e{constructor(){this.taskId=0,this.pendingTasks=new Set,this.hasPendingTasks=new Tt.g(!1)}get _hasPendingTasks(){return this.hasPendingTasks.value}add(){this._hasPendingTasks||this.hasPendingTasks.next(!0);const n=this.taskId++;return this.pendingTasks.add(n),n}remove(n){this.pendingTasks.delete(n),0===this.pendingTasks.size&&this._hasPendingTasks&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this._hasPendingTasks&&this.hasPendingTasks.next(!1)}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function ls(e,t,n){return e[t]=n}function Dr(e,t,n){return!Object.is(e[t],n)&&(e[t]=n,!0)}function eo(e,t,n,r){const o=Dr(e,t,n);return Dr(e,t+1,r)||o}function Yo(e,t,n,r,o,c,m,v){const E=ti(),W=Vi(),ue=e+Hi,He=W.firstCreatePass?function $D(e,t,n,r,o,c,m,v,E){const W=t.consts,ue=Ro(t,e,4,m||null,ce(W,v));nh(t,n,ue,ce(W,E)),Ac(t,ue);const He=ue.tView=ih(2,ue,r,o,c,t.directiveRegistry,t.pipeRegistry,null,t.schemas,W,null);return null!==t.queries&&(t.queries.template(t,ue),He.queries=t.queries.embeddedTView(ue)),ue}(ue,W,E,t,n,r,o,c,m):W.data[ue];H(He,!1);const St=cg(W,E,He,e);hs()&&Zc(W,E,St,He),va(St,E);const Gt=Bf(St,E,St,He);return E[ue]=Gt,td(E,Gt),function F_(e,t,n){return kh(e,t,n)}(Gt,He,E),mr(He)&&eh(W,E,He),null!=m&&th(E,He,v),Yo}let cg=function dg(e,t,n,r){return Qa(!0),t[Bi].createComment("")};function $h(e,t,n,r){const o=ti();return Dr(o,Ji(),t)&&(Vi(),os(vn(),o,e,t,n,r)),$h}function zo(e,t,n,r){return Dr(e,Ji(),n)?t+tn(n)+r:un}function $o(e,t,n,r,o,c){const v=eo(e,function zi(){return ui.lFrame.bindingIndex}(),n,o);return D(2),v?t+tn(n)+r+tn(o)+c:un}function Md(e,t){return e<<17|t<<2}function Ls(e){return e>>17&32767}function Kh(e){return 2|e}function io(e){return(131068&e)>>2}function Qh(e,t){return-131069&e|t<<2}function Xh(e){return 1|e}function Gg(e,t,n,r){const o=e[n+1],c=null===t;let m=r?Ls(o):io(o),v=!1;for(;0!==m&&(!1===v||c);){const W=e[m+1];AC(e[m],t)&&(v=!0,e[m+1]=r?Xh(W):Kh(W)),m=r?Ls(W):io(W)}v&&(e[n+1]=r?Kh(o):Xh(o))}function AC(e,t){return null===e||null==t||(Array.isArray(e)?e[1]:e)===t||!(!Array.isArray(e)||"string"!=typeof t)&&Ga(e,t)>=0}const Qr={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function Vg(e){return e.substring(Qr.key,Qr.keyEnd)}function jg(e,t){const n=Qr.textEnd;return n===t?-1:(t=Qr.keyEnd=function PC(e,t,n){for(;t32;)t++;return t}(e,Qr.key=t,n),el(e,t,n))}function el(e,t,n){for(;t=0;n=jg(t,n))fa(e,Vg(t),!0)}function Za(e,t,n,r){const o=ti(),c=Vi(),m=D(2);c.firstUpdatePass&&Xg(c,e,m,r),t!==un&&Dr(o,m,t)&&Jg(c,c.data[Jn()],o,o[Bi],e,o[m+1]=function zC(e,t){return null==e||""===e||("string"==typeof t?e+=t:"object"==typeof e&&(e=Ht(ys(e)))),e}(t,n),r,m)}function Ja(e,t,n,r){const o=Vi(),c=D(2);o.firstUpdatePass&&Xg(o,null,c,r);const m=ti();if(n!==un&&Dr(m,c,n)){const v=o.data[Jn()];if(ev(v,r)&&!Qg(o,c)){let E=r?v.classesWithoutHost:v.stylesWithoutHost;null!==E&&(n=vt(E,n||"")),Jh(o,v,m,n,r)}else!function WC(e,t,n,r,o,c,m,v){o===un&&(o=Ti);let E=0,W=0,ue=0=e.expandoStartIndex}function Xg(e,t,n,r){const o=e.data;if(null===o[n+1]){const c=o[Jn()],m=Qg(e,n);ev(c,r)&&null===t&&!m&&(t=!1),t=function BC(e,t,n,r){const o=hi(e);let c=r?t.residualClasses:t.residualStyles;if(null===o)0===(r?t.classBindings:t.styleBindings)&&(n=Jl(n=tm(null,e,t,n,r),t.attrs,r),c=null);else{const m=t.directiveStylingLast;if(-1===m||e[m]!==o)if(n=tm(o,e,t,n,r),null===c){let E=function HC(e,t,n){const r=n?t.classBindings:t.styleBindings;if(0!==io(r))return e[Ls(r)]}(e,t,r);void 0!==E&&Array.isArray(E)&&(E=tm(null,e,t,E[1],r),E=Jl(E,t.attrs,r),function GC(e,t,n,r){e[Ls(n?t.classBindings:t.styleBindings)]=r}(e,t,r,E))}else c=function VC(e,t,n){let r;const o=t.directiveEnd;for(let c=1+t.directiveStylingLast;c0)&&(W=!0)):ue=n,o)if(0!==E){const St=Ls(e[v+1]);e[r+1]=Md(St,v),0!==St&&(e[St+1]=Qh(e[St+1],r)),e[v+1]=function EC(e,t){return 131071&e|t<<17}(e[v+1],r)}else e[r+1]=Md(v,0),0!==v&&(e[v+1]=Qh(e[v+1],r)),v=r;else e[r+1]=Md(E,0),0===v?v=r:e[E+1]=Qh(e[E+1],r),E=r;W&&(e[r+1]=Kh(e[r+1])),Gg(e,ue,r,!0),Gg(e,ue,r,!1),function TC(e,t,n,r,o){const c=o?e.residualClasses:e.residualStyles;null!=c&&"string"==typeof t&&Ga(c,t)>=0&&(n[r+1]=Xh(n[r+1]))}(t,ue,e,r,c),m=Md(v,E),c?t.classBindings=m:t.styleBindings=m}(o,c,t,n,m,r)}}function tm(e,t,n,r,o){let c=null;const m=n.directiveEnd;let v=n.directiveStylingLast;for(-1===v?v=n.directiveStart:v++;v0;){const E=e[o],W=Array.isArray(E),ue=W?E[1]:E,He=null===ue;let St=n[o+1];St===un&&(St=He?Ti:void 0);let Gt=He?Cs(St,r):ue===r?St:void 0;if(W&&!Dd(Gt)&&(Gt=Cs(E,r)),Dd(Gt)&&(v=Gt,m))return v;const ii=e[o+1];o=m?Ls(ii):io(ii)}if(null!==t){let E=c?t.residualClasses:t.residualStyles;null!=E&&(v=Cs(E,r))}return v}function Dd(e){return void 0!==e}function ev(e,t){return 0!=(e.flags&(t?8:16))}function tv(e,t,n){Ja(fa,ds,zo(ti(),e,t,n),!0)}function Cd(e,t,n,r){const o=ti(),c=Vi(),m=Hi+e,v=o[Bi],E=c.firstCreatePass?function f1(e,t,n,r,o,c){const m=t.consts,E=Ro(t,e,2,r,ce(m,o));return nh(t,n,E,ce(m,c)),null!==E.attrs&&hd(E,E.attrs,!1),null!==E.mergedAttrs&&hd(E,E.mergedAttrs,!0),null!==t.queries&&t.queries.elementStart(t,E),E}(m,c,o,t,n,r):c.data[m],W=av(c,o,E,v,t,e);o[m]=W;const ue=mr(E);return H(E,!0),Ef(v,W,E),32!=(32&E.flags)&&hs()&&Zc(c,o,W,E),0===function $i(){return ui.lFrame.elementDepthCount}()&&va(W,o),function Gi(){ui.lFrame.elementDepthCount++}(),ue&&(eh(c,o,E),qu(c,E,o)),null!==r&&th(o,E),Cd}function kd(){let e=de();_t()?dt():(e=e.parent,H(e,!1));const t=e;(function rr(e){return ui.skipHydrationRootTNode===e})(t)&&function Nr(){ui.skipHydrationRootTNode=null}(),function Wi(){ui.lFrame.elementDepthCount--}();const n=Vi();return n.firstCreatePass&&(Ac(n,e),qr(e)&&n.queries.elementEnd(e)),null!=t.classesWithoutHost&&function B0(e){return 0!=(8&e.flags)}(t)&&Jh(n,t,ti(),t.classesWithoutHost,!0),null!=t.stylesWithoutHost&&function H0(e){return 0!=(16&e.flags)}(t)&&Jh(n,t,ti(),t.stylesWithoutHost,!1),kd}function sm(e,t,n,r){return Cd(e,t,n,r),kd(),sm}let av=(e,t,n,r,o,c)=>(Qa(!0),Kc(r,o,function so(){return ui.lFrame.currentNamespace}()));function Ed(e,t,n){const r=ti(),o=Vi(),c=e+Hi,m=o.firstCreatePass?function v1(e,t,n,r,o){const c=t.consts,m=ce(c,r),v=Ro(t,e,8,"ng-container",m);return null!==m&&hd(v,m,!0),nh(t,n,v,ce(c,o)),null!==t.queries&&t.queries.elementStart(t,v),v}(c,o,r,t,n):o.data[c];H(m,!0);const v=sv(o,r,m,e);return r[c]=v,hs()&&Zc(o,r,v,m),va(v,r),mr(m)&&(eh(o,r,m),qu(o,m,r)),null!=n&&th(r,m),Ed}function Sd(){let e=de();const t=Vi();return _t()?dt():(e=e.parent,H(e,!1)),t.firstCreatePass&&(Ac(t,e),qr(e)&&t.queries.elementEnd(e)),Sd}function om(e,t,n){return Ed(e,t,n),Sd(),om}let sv=(e,t,n,r)=>(Qa(!0),zu(t[Bi],""));function ov(){return ti()}function lm(e,t,n){const r=ti();return Dr(r,Ji(),t)&&Ia(Vi(),vn(),r,e,t,r[Bi],n,!0),lm}function cm(e,t,n){const r=ti();if(Dr(r,Ji(),t)){const c=Vi(),m=vn();Ia(c,m,r,e,t,jf(hi(c.data),m,r),n,!0)}return cm}const no=void 0;var x1=["en",[["a","p"],["AM","PM"],no],[["AM","PM"],no,no],[["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"]],no,[["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"]],no,[["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}",no,"{1} 'at' {0}",no],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function w1(e){const n=Math.floor(Math.abs(e)),r=e.toString().replace(/^[^.]*\.?/,"").length;return 1===n&&0===r?1:5}];let tl={};function dm(e){const t=function M1(e){return e.toLowerCase().replace(/_/g,"-")}(e);let n=cv(t);if(n)return n;const r=t.split("-")[0];if(n=cv(r),n)return n;if("en"===r)return x1;throw new Ut(701,!1)}function lv(e){return dm(e)[il.PluralCase]}function cv(e){return e in tl||(tl[e]=nt.ng&&nt.ng.common&&nt.ng.common.locales&&nt.ng.common.locales[e]),tl[e]}var il=function(e){return e[e.LocaleId=0]="LocaleId",e[e.DayPeriodsFormat=1]="DayPeriodsFormat",e[e.DayPeriodsStandalone=2]="DayPeriodsStandalone",e[e.DaysFormat=3]="DaysFormat",e[e.DaysStandalone=4]="DaysStandalone",e[e.MonthsFormat=5]="MonthsFormat",e[e.MonthsStandalone=6]="MonthsStandalone",e[e.Eras=7]="Eras",e[e.FirstDayOfWeek=8]="FirstDayOfWeek",e[e.WeekendRange=9]="WeekendRange",e[e.DateFormat=10]="DateFormat",e[e.TimeFormat=11]="TimeFormat",e[e.DateTimeFormat=12]="DateTimeFormat",e[e.NumberSymbols=13]="NumberSymbols",e[e.NumberFormats=14]="NumberFormats",e[e.CurrencyCode=15]="CurrencyCode",e[e.CurrencySymbol=16]="CurrencySymbol",e[e.CurrencyName=17]="CurrencyName",e[e.Currencies=18]="Currencies",e[e.Directionality=19]="Directionality",e[e.PluralCase=20]="PluralCase",e[e.ExtraData=21]="ExtraData",e}(il||{});const nl="en-US";let dv=nl;function mm(e,t,n,r){const o=ti(),c=Vi(),m=de();return fm(c,o,o[Bi],m,e,t,r),mm}function pm(e,t){const n=de(),r=ti(),o=Vi();return fm(o,r,jf(hi(o.data),n,r),n,e,t),pm}function fm(e,t,n,r,o,c,m){const v=mr(r),W=e.firstCreatePass&&Vf(e),ue=t[pn],He=Gf(t);let St=!0;if(3&r.type||m){const _i=ur(r,t),ki=m?m(_i):_i,Yi=He.length,fi=m?En=>m(nn(En[r.index])):r.index;let rn=null;if(!m&&v&&(rn=function gk(e,t,n,r){const o=e.cleanup;if(null!=o)for(let c=0;cE?v[E]:null}"string"==typeof m&&(c+=2)}return null}(e,t,o,r.index)),null!==rn)(rn.__ngLastListenerFn__||rn).__ngNextListenerFn__=c,rn.__ngLastListenerFn__=c,St=!1;else{c=Fv(r,t,ue,c,!1);const En=n.listen(ki,o,c);He.push(c,En),W&&W.push(o,fi,Yi,Yi+1)}}else c=Fv(r,t,ue,c,!1);const Gt=r.outputs;let ii;if(St&&null!==Gt&&(ii=Gt[o])){const _i=ii.length;if(_i)for(let ki=0;ki<_i;ki+=2){const Sn=t[ii[ki]][ii[ki+1]].subscribe(c),da=He.length;He.push(c,Sn),W&&W.push(o,r.index,da,"function"==typeof Sn?da+1:-(da+1))}}}function Pv(e,t,n,r){try{return as(6,t,n),!1!==n(r)}catch(o){return id(e,o),!1}finally{as(7,t,n)}}function Fv(e,t,n,r,o){return function c(m){if(m===Function)return r;Rl(e.componentOffset>-1?Kn(e.index,t):t);let E=Pv(t,n,r,m),W=c.__ngNextListenerFn__;for(;W;)E=Pv(t,n,W,m)&&E,W=W.__ngNextListenerFn__;return o&&!1===E&&m.preventDefault(),E}}function Nv(e=1){return function Oa(e){return(ui.lFrame.contextLView=function G(e,t){for(;e>0;)t=t[sa],e--;return t}(e,ui.lFrame.contextLView))[pn]}(e)}function vk(e,t){let n=null;const r=function wi(e){const t=e.attrs;if(null!=t){const n=t.indexOf(5);if(!(1&n))return t[n+1]}return null}(e);for(let o=0;o(Qa(!0),function $c(e,t){return e.createText(t)}(t[Bi],r));function vm(e){return Od("",e,""),vm}function Od(e,t,n){const r=ti(),o=zo(r,e,t,n);return o!==un&&xs(r,Jn(),o),Od}function bm(e,t,n,r,o){const c=ti(),m=$o(c,e,t,n,r,o);return m!==un&&xs(c,Jn(),m),bm}function ym(e,t,n){d_(t)&&(t=t());const r=ti();return Dr(r,Ji(),t)&&Ia(Vi(),vn(),r,e,t,r[Bi],n,!1),ym}function gb(e,t){const n=d_(e);return n&&e.set(t),n}function wm(e,t){const n=ti(),r=Vi(),o=de();return fm(r,n,n[Bi],o,e,t),wm}function xm(e,t,n,r,o){if(e=Qi(e),Array.isArray(e))for(let c=0;c>20;if(zs(e)||!e.multi){const Gt=new xl(W,o,Oo),ii=Dm(E,t,o?ue:ue+St,He);-1===ii?(Eu(Pc(v,m),c,E),Mm(c,e,t.length),t.push(E),v.directiveStart++,v.directiveEnd++,o&&(v.providerIndexes+=1048576),n.push(Gt),m.push(Gt)):(n[ii]=Gt,m[ii]=Gt)}else{const Gt=Dm(E,t,ue+St,He),ii=Dm(E,t,ue,ue+St),ki=ii>=0&&n[ii];if(o&&!ki||!o&&!(Gt>=0&&n[Gt])){Eu(Pc(v,m),c,E);const Yi=function Nk(e,t,n,r,o){const c=new xl(e,n,Oo);return c.multi=[],c.index=t,c.componentProviders=0,vb(c,o,r&&!n),c}(o?Fk:Pk,n.length,o,r,W);!o&&ki&&(n[ii].providerFactory=Yi),Mm(c,e,t.length,0),t.push(E),v.directiveStart++,v.directiveEnd++,o&&(v.providerIndexes+=1048576),n.push(Yi),m.push(Yi)}else Mm(c,e,Gt>-1?Gt:ii,vb(n[o?ii:Gt],W,!o&&r));!o&&r&&ki&&n[ii].componentProviders++}}}function Mm(e,t,n,r){const o=zs(t),c=function m0(e){return!!e.useClass}(t);if(o||c){const E=(c?Qi(t.useClass):t).prototype.ngOnDestroy;if(E){const W=e.destroyHooks||(e.destroyHooks=[]);if(!o&&t.multi){const ue=W.indexOf(n);-1===ue?W.push(n,[r,E]):W[ue+1].push(r,E)}else W.push(n,E)}}}function vb(e,t,n){return n&&e.componentProviders++,e.multi.push(t)-1}function Dm(e,t,n,r){for(let o=n;o{n.providersResolver=(r,o)=>function Rk(e,t,n){const r=Vi();if(r.firstCreatePass){const o=Pn(e);xm(n,r.data,r.blueprint,o,!0),xm(t,r.data,r.blueprint,o,!1)}}(r,o?o(e):e,t)}}let Yk=(()=>{class e{constructor(n){this._injector=n,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(n){if(!n.standalone)return null;if(!this.cachedInjectors.has(n)){const r=rp(0,n.type),o=r.length>0?lg([r],this._injector,`Standalone[${n.type.name}]`):null;this.cachedInjectors.set(n,o)}return this.cachedInjectors.get(n)}ngOnDestroy(){try{for(const n of this.cachedInjectors.values())null!==n&&n.destroy()}finally{this.cachedInjectors.clear()}}static#e=this.\u0275prov=Rn({token:e,providedIn:"environment",factory:()=>new e(x(rs))})}return e})();function yb(e){Zs("NgStandalone"),e.getStandaloneInjector=t=>t.get(Yk).getOrCreateStandaloneInjector(e)}function Ib(e,t,n){const r=Oi()+e,o=ti();return o[r]===un?ls(o,r,n?t.call(n):t()):function Kl(e,t){return e[t]}(o,r)}function Tb(e,t,n,r){return Rb(ti(),Oi(),e,t,n,r)}function Ab(e,t,n,r,o){return Pb(ti(),Oi(),e,t,n,r,o)}function Lb(e,t,n,r,o,c){return Fb(ti(),Oi(),e,t,n,r,o,c)}function Ob(e,t,n,r,o,c,m){return Nb(ti(),Oi(),e,t,n,r,o,c,m)}function rc(e,t){const n=e[t];return n===un?void 0:n}function Rb(e,t,n,r,o,c){const m=t+n;return Dr(e,m,o)?ls(e,m+1,c?r.call(c,o):r(o)):rc(e,m+1)}function Pb(e,t,n,r,o,c,m){const v=t+n;return eo(e,v,o,c)?ls(e,v+2,m?r.call(m,o,c):r(o,c)):rc(e,v+2)}function Fb(e,t,n,r,o,c,m,v){const E=t+n;return function gd(e,t,n,r,o){const c=eo(e,t,n,r);return Dr(e,t+2,o)||c}(e,E,o,c,m)?ls(e,E+3,v?r.call(v,o,c,m):r(o,c,m)):rc(e,E+3)}function Nb(e,t,n,r,o,c,m,v,E){const W=t+n;return function za(e,t,n,r,o,c){const m=eo(e,t,n,r);return eo(e,t+2,o,c)||m}(e,W,o,c,m,v)?ls(e,W+4,E?r.call(E,o,c,m,v):r(o,c,m,v)):rc(e,W+4)}function Bb(e,t){const n=Vi();let r;const o=e+Hi;n.firstCreatePass?(r=function qk(e,t){if(t)for(let n=t.length-1;n>=0;n--){const r=t[n];if(e===r.name)return r}}(t,n.pipeRegistry),n.data[o]=r,r.onDestroy&&(n.destroyHooks??=[]).push(o,r.onDestroy)):r=n.data[o];const c=r.factory||(r.factory=Us(r.type)),v=_a(Oo);try{const E=Rc(!1),W=c();return Rc(E),function xk(e,t,n,r){n>=e.data.length&&(e.data[n]=null,e.blueprint[n]=null),t[n]=r}(n,ti(),o,W),W}finally{_a(v)}}function Hb(e,t,n){const r=e+Hi,o=ti(),c=Fr(o,r);return ac(o,r)?Rb(o,Oi(),t,c.transform,n,c):c.transform(n)}function Gb(e,t,n,r){const o=e+Hi,c=ti(),m=Fr(c,o);return ac(c,o)?Pb(c,Oi(),t,m.transform,n,r,m):m.transform(n,r)}function Vb(e,t,n,r,o){const c=e+Hi,m=ti(),v=Fr(m,c);return ac(m,c)?Fb(m,Oi(),t,v.transform,n,r,o,v):v.transform(n,r,o)}function jb(e,t,n,r,o,c){const m=e+Hi,v=ti(),E=Fr(v,m);return ac(v,m)?Nb(v,Oi(),t,E.transform,n,r,o,c,E):E.transform(n,r,o,c)}function ac(e,t){return e[bi].data[t].pure}function Ub(e,t){return rd(e,t)}class sy{constructor(t){this.full=t;const n=t.split(".");this.major=n[0],this.minor=n[1],this.patch=n.slice(2).join(".")}}let oy=(()=>{class e{log(n){console.log(n)}warn(n){console.warn(n)}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})();const hy=new rt(""),my=new rt("");let Lm,$E=(()=>{class e{constructor(n,r,o){this._ngZone=n,this.registry=r,this._pendingCount=0,this._isZoneStable=!0,this._callbacks=[],this.taskTrackingZone=null,Lm||(function KE(e){Lm=e}(o),o.addToWindow(r)),this._watchAngularEvents(),n.run(()=>{this.taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Mr.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,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())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let n=this._callbacks.pop();clearTimeout(n.timeoutId),n.doneCb()}});else{let n=this.getPendingTasks();this._callbacks=this._callbacks.filter(r=>!r.updateCb||!r.updateCb(n)||(clearTimeout(r.timeoutId),!1))}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(n=>({source:n.source,creationLocation:n.creationLocation,data:n.data})):[]}addCallback(n,r,o){let c=-1;r&&r>0&&(c=setTimeout(()=>{this._callbacks=this._callbacks.filter(m=>m.timeoutId!==c),n()},r)),this._callbacks.push({doneCb:n,timeoutId:c,updateCb:o})}whenStable(n,r,o){if(o&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(n,r,o),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}registerApplication(n){this.registry.registerApplication(n,this)}unregisterApplication(n){this.registry.unregisterApplication(n)}findProviders(n,r,o){return[]}static#e=this.\u0275fac=function(r){return new(r||e)(x(Mr),x(py),x(my))};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac})}return e})(),py=(()=>{class e{constructor(){this._applications=new Map}registerApplication(n,r){this._applications.set(n,r)}unregisterApplication(n){this._applications.delete(n)}unregisterAllApplications(){this._applications.clear()}getTestability(n){return this._applications.get(n)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(n,r=!0){return Lm?.findTestabilityInTree(this,n,r)??null}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})();function Om(e){return!!e&&"function"==typeof e.then}function fy(e){return!!e&&"function"==typeof e.subscribe}const _y=new rt("");let Rm=(()=>{class e{constructor(){this.initialized=!1,this.done=!1,this.donePromise=new Promise((n,r)=>{this.resolve=n,this.reject=r}),this.appInits=z(_y,{optional:!0})??[]}runInitializers(){if(this.initialized)return;const n=[];for(const o of this.appInits){const c=o();if(Om(c))n.push(c);else if(fy(c)){const m=new Promise((v,E)=>{c.subscribe({complete:v,error:E})});n.push(m)}}const r=()=>{this.done=!0,this.resolve()};Promise.all(n).then(()=>{r()}).catch(o=>{this.reject(o)}),0===n.length&&r(),this.initialized=!0}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();const Pm=new rt("");function by(e,t){return Array.isArray(t)?t.reduce(by,e):{...e,...t}}let ro=(()=>{class e{constructor(){this._bootstrapListeners=[],this._runningTick=!1,this._destroyed=!1,this._destroyListeners=[],this._views=[],this.internalErrorHandler=z(Rp),this.afterRenderEffectManager=z(Vl),this.componentTypes=[],this.components=[],this.isStable=z($l).hasPendingTasks.pipe((0,Ke.k)(n=>!n)),this._injector=z(rs)}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(n,r){const o=n instanceof s_;if(!this._injector.get(Rm).done)throw!o&&Gr(n),new Ut(405,!1);let m;m=o?n:this._injector.get(Gl).resolveComponentFactory(n),this.componentTypes.push(m.componentType);const v=function QE(e){return e.isBoundToModule}(m)?void 0:this._injector.get(qs),W=m.create(Wa.NULL,[],r||m.selector,v),ue=W.location.nativeElement,He=W.injector.get(hy,null);return He?.registerApplication(ue),W.onDestroy(()=>{this.detachView(W.hostView),Nd(this.components,W),He?.unregisterApplication(ue)}),this._loadComponent(W),W}tick(){if(this._runningTick)throw new Ut(101,!1);try{this._runningTick=!0,this.detectChangesInAttachedViews()}catch(n){this.internalErrorHandler(n)}finally{this._runningTick=!1}}detectChangesInAttachedViews(){let n=0;do{if(100===n)throw new Ut(103,!1);const r=0===n;for(let{_lView:o,notifyErrorHandler:c}of this._views)!r&&!yy(o)||this.detectChangesInView(o,c,r);this.afterRenderEffectManager.execute(),n++}while(this._views.some(({_lView:r})=>yy(r)))}detectChangesInView(n,r,o){let c;o?(c=0,n[Pi]|=1024):c=64&n[Pi]?0:1,nd(n,r,c)}attachView(n){const r=n;this._views.push(r),r.attachToAppRef(this)}detachView(n){const r=n;Nd(this._views,r),r.detachFromAppRef()}_loadComponent(n){this.attachView(n.hostView),this.tick(),this.components.push(n);const r=this._injector.get(Pm,[]);[...this._bootstrapListeners,...r].forEach(o=>o(n))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(n=>n()),this._views.slice().forEach(n=>n.destroy())}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(n){return this._destroyListeners.push(n),()=>Nd(this._destroyListeners,n)}destroy(){if(this._destroyed)throw new Ut(406,!1);const n=this._injector;n.destroy&&!n.destroyed&&n.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function Nd(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}function yy(e){return pe(e)}class ZE{constructor(t,n){this.ngModuleFactory=t,this.componentFactories=n}}let JE=(()=>{class e{compileModuleSync(n){return new Nh(n)}compileModuleAsync(n){return Promise.resolve(this.compileModuleSync(n))}compileModuleAndAllComponentsSync(n){const r=this.compileModuleSync(n),c=Na(jn(n).declarations).reduce((m,v)=>{const E=Xi(v);return E&&m.push(new Wl(E)),m},[]);return new ZE(r,c)}compileModuleAndAllComponentsAsync(n){return Promise.resolve(this.compileModuleAndAllComponentsSync(n))}clearCache(){}clearCacheFor(n){}getModuleId(n){}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),tS=(()=>{class e{constructor(){this.zone=z(Mr),this.applicationRef=z(ro)}initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function iS(){const e=z(Mr),t=z(Es);return n=>e.runOutsideAngular(()=>t.handleError(n))}let rS=(()=>{class e{constructor(){this.subscription=new Fe.wH,this.initialized=!1,this.zone=z(Mr),this.pendingTasks=z($l)}initialize(){if(this.initialized)return;this.initialized=!0;let n=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(n=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{Mr.assertNotInAngularZone(),queueMicrotask(()=>{null!==n&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(n),n=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{Mr.assertInAngularZone(),n??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static#e=this.\u0275fac=function(r){return new(r||e)};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();const Bd=new rt("",{providedIn:"root",factory:()=>z(Bd,ht.Optional|ht.SkipSelf)||function aS(){return typeof $localize<"u"&&$localize.locale||nl}()}),sS=new rt("",{providedIn:"root",factory:()=>"USD"}),Fm=new rt("");let Dy=(()=>{class e{constructor(n){this._injector=n,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(n,r){const o=function qM(e="zone.js",t){return"noop"===e?new x_:"zone.js"===e?new Mr(t):e}(r?.ngZone,function My(e){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:e?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:e?.runCoalescing??!1}}({eventCoalescing:r?.ngZoneEventCoalescing,runCoalescing:r?.ngZoneRunCoalescing}));return o.run(()=>{const c=function zD(e,t,n){return new Fh(e,t,n)}(n.moduleType,this.injector,function xy(e){return[{provide:Mr,useFactory:e},{provide:Ws,multi:!0,useFactory:()=>{const t=z(tS,{optional:!0});return()=>t.initialize()}},{provide:Ws,multi:!0,useFactory:()=>{const t=z(rS);return()=>{t.initialize()}}},{provide:Rp,useFactory:iS}]}(()=>o)),m=c.injector.get(Es,null);return o.runOutsideAngular(()=>{const v=o.onError.subscribe({next:E=>{m.handleError(E)}});c.onDestroy(()=>{Nd(this._modules,c),v.unsubscribe()})}),function vy(e,t,n){try{const r=n();return Om(r)?r.catch(o=>{throw t.runOutsideAngular(()=>e.handleError(o)),o}):r}catch(r){throw t.runOutsideAngular(()=>e.handleError(r)),r}}(m,o,()=>{const v=c.injector.get(Rm);return v.runInitializers(),v.donePromise.then(()=>(function uv(e){"string"==typeof e&&(dv=e.toLowerCase().replace(/_/g,"-"))}(c.injector.get(Bd,nl)||nl),this._moduleDoBootstrap(c),c))})})}bootstrapModule(n,r=[]){const o=by({},r);return function eS(e,t,n){const r=new Nh(n);return Promise.resolve(r)}(0,0,n).then(c=>this.bootstrapModuleFactory(c,o))}_moduleDoBootstrap(n){const r=n.injector.get(ro);if(n._bootstrapComponents.length>0)n._bootstrapComponents.forEach(o=>r.bootstrap(o));else{if(!n.instance.ngDoBootstrap)throw new Ut(-403,!1);n.instance.ngDoBootstrap(r)}this._modules.push(n)}onDestroy(n){this._destroyListeners.push(n)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Ut(404,!1);this._modules.slice().forEach(r=>r.destroy()),this._destroyListeners.forEach(r=>r());const n=this._injector.get(Fm,null);n&&(n.forEach(r=>r()),n.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static#e=this.\u0275fac=function(r){return new(r||e)(x(Wa))};static#t=this.\u0275prov=Rn({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})(),Os=null;const Cy=new rt("");function ky(e,t,n=[]){const r=`Platform: ${t}`,o=new rt(r);return(c=[])=>{let m=Nm();if(!m||m.injector.get(Cy,!1)){const v=[...n,...c,{provide:o,useValue:!0}];e?e(v):function lS(e){if(Os&&!Os.get(Cy,!1))throw new Ut(400,!1);(function gy(){!function vi(e){oi=e}(()=>{throw new Ut(600,!1)})})(),Os=e;const t=e.get(Dy);(function Sy(e){e.get(Ii,null)?.forEach(n=>n())})(e)}(function Ey(e=[],t){return Wa.create({name:t,providers:[{provide:pu,useValue:"platform"},{provide:Fm,useValue:new Set([()=>Os=null])},...e]})}(v,r))}return function cS(e){const t=Nm();if(!t)throw new Ut(401,!1);return t}()}}function Nm(){return Os?.get(Dy)??null}function uS(){}const fS=ky(null,"core",[]);let _S=(()=>{class e{constructor(n){}static#e=this.\u0275fac=function(r){return new(r||e)(x(ro))};static#t=this.\u0275mod=ra({type:e});static#i=this.\u0275inj=Bs({})}return e})();function jS(e){return"boolean"==typeof e?e:null!=e&&"false"!==e}function WS(e){const t=Xi(e);if(!t)return null;const n=new Wl(t);return{get selector(){return n.selector},get type(){return n.componentType},get inputs(){return n.inputs},get outputs(){return n.outputs},get ngContentSelectors(){return n.ngContentSelectors},get isStandalone(){return t.standalone},get isSignal(){return t.signals}}}},5864:(lt,me,d)=>{"use strict";function i(Y){for(let J in Y){let ie=Y[J]??"";switch(J){case"display":Y.display="flex"===ie?["-webkit-flex","flex"]:"inline-flex"===ie?["-webkit-inline-flex","inline-flex"]:ie;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":Y["-webkit-"+J]=ie;break;case"flex-direction":Y["-webkit-flex-direction"]=ie,Y["flex-direction"]=ie;break;case"order":Y.order=Y["-webkit-"+J]=isNaN(+ie)?"0":ie}}return Y}d.d(me,{AF:()=>i,IL:()=>f,_s:()=>h,g7:()=>R,qe:()=>a});const s="inline",a=["row","column","row-reverse","column-reverse"];function h(Y){let[J,ie,ae]=l(Y);return function b(Y,J=null,ie=!1){return{display:ie?"inline-flex":"flex","box-sizing":"border-box","flex-direction":Y,"flex-wrap":J||null}}(J,ie,ae)}function l(Y){Y=Y?.toLowerCase()??"";let[J,ie,ae]=Y.split(" ");return a.find(Ie=>Ie===J)||(J=a[0]),ie===s&&(ie=ae!==s?ae:"",ae=s),[J,g(ie),!!ae]}function f(Y){let[J]=l(Y);return J.indexOf("row")>-1}function g(Y){if(Y)switch(Y.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":Y="wrap-reverse";break;case"no":case"none":case"nowrap":Y="nowrap";break;default:Y="wrap"}return Y}function R(Y,...J){if(null==Y)throw TypeError("Cannot convert undefined or null to object");for(let ie of J)if(null!=ie)for(let ae in ie)ie.hasOwnProperty(ae)&&(Y[ae]=ie[ae]);return Y}},5784:(lt,me,d)=>{"use strict";d.d(me,{CW:()=>et,Ft:()=>ae,KY:()=>ni,Os:()=>Ht,Ow:()=>Ye,Q9:()=>Bt,QV:()=>Ge,_X:()=>gt,s7:()=>xe,wp:()=>tt,yK:()=>wt});var i=d(2116),s=d(1368),a=d(6700),h=d(3252),l=d(3412),f=d(5657),g=d(5864),b=d(6684),R=d(9212);const J={provide:i.qid,useFactory:function Y(vt,Mt){return()=>{if((0,s.c0)(Mt)){const fe=Array.from(vt.querySelectorAll(`[class*=${ie}]`)),it=/\bflex-layout-.+?\b/g;fe.forEach(Et=>{Et.classList.contains(`${ie}ssr`)&&Et.parentNode?Et.parentNode.removeChild(Et):Et.className.replace(it,"")})}}},deps:[s.Ud,i.AHE],multi:!0},ie="flex-layout-";let ae=(()=>{class vt{}return vt.\u0275fac=function(fe){return new(fe||vt)},vt.\u0275mod=i.a4G({type:vt}),vt.\u0275inj=i.s3X({providers:[J]}),vt})();class Ie{constructor(Mt=!1,fe="all",it="",Et="",ct=0){this.matches=Mt,this.mediaQuery=fe,this.mqAlias=it,this.suffix=Et,this.priority=ct,this.property=""}clone(){return new Ie(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let Ee=(()=>{class vt{constructor(){this.stylesheet=new Map}addStyleToElement(fe,it,Et){const ct=this.stylesheet.get(fe);ct?ct.set(it,Et):this.stylesheet.set(fe,new Map([[it,Et]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(fe,it){const Et=this.stylesheet.get(fe);let ct="";if(Et){const ri=Et.get(it);("number"==typeof ri||"string"==typeof ri)&&(ct=ri+"")}return ct}}return vt.\u0275fac=function(fe){return new(fe||vt)},vt.\u0275prov=i.wxM({token:vt,factory:vt.\u0275fac,providedIn:"root"}),vt})();const Ge={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},tt=new i.UbH("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>Ge}),gt=new i.UbH("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),Bt=new i.UbH("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function kt(vt,Mt){return vt=vt?.clone()??new Ie,Mt&&(vt.mqAlias=Mt.alias,vt.mediaQuery=Mt.mediaQuery,vt.suffix=Mt.suffix,vt.priority=Mt.priority),vt}class Ye{constructor(){this.shouldCache=!0}sideEffect(Mt,fe,it){}}let et=(()=>{class vt{constructor(fe,it,Et,ct){this._serverStylesheet=fe,this._serverModuleLoaded=it,this._platformId=Et,this.layoutConfig=ct}applyStyleToElement(fe,it,Et=null){let ct={};"string"==typeof it&&(ct[it]=Et,it=ct),ct=this.layoutConfig.disableVendorPrefixes?it:(0,g.AF)(it),this._applyMultiValueStyleToElement(ct,fe)}applyStyleToElements(fe,it=[]){const Et=this.layoutConfig.disableVendorPrefixes?fe:(0,g.AF)(fe);it.forEach(ct=>{this._applyMultiValueStyleToElement(Et,ct)})}getFlowDirection(fe){const it="flex-direction";let Et=this.lookupStyle(fe,it);return[Et||"row",this.lookupInlineStyle(fe,it)||(0,s.uf)(this._platformId)&&this._serverModuleLoaded?Et:""]}hasWrap(fe){return"wrap"===this.lookupStyle(fe,"flex-wrap")}lookupAttributeValue(fe,it){return fe.getAttribute(it)??""}lookupInlineStyle(fe,it){return(0,s.c0)(this._platformId)?fe.style.getPropertyValue(it):function Q(vt,Mt){return Re(vt)[Mt]??""}(fe,it)}lookupStyle(fe,it,Et=!1){let ct="";return fe&&((ct=this.lookupInlineStyle(fe,it))||((0,s.c0)(this._platformId)?Et||(ct=getComputedStyle(fe).getPropertyValue(it)):this._serverModuleLoaded&&(ct=this._serverStylesheet.getStyleForElement(fe,it)))),ct?ct.trim():""}_applyMultiValueStyleToElement(fe,it){Object.keys(fe).sort().forEach(Et=>{const ct=fe[Et],ri=Array.isArray(ct)?ct:[ct];ri.sort();for(let V of ri)V=V?V+"":"",(0,s.c0)(this._platformId)||!this._serverModuleLoaded?(0,s.c0)(this._platformId)?it.style.setProperty(Et,V):_e(it,Et,V):this._serverStylesheet.addStyleToElement(it,Et,V)})}}return vt.\u0275fac=function(fe){return new(fe||vt)(i.CoB(Ee),i.CoB(gt),i.CoB(i.AHE),i.CoB(tt))},vt.\u0275prov=i.wxM({token:vt,factory:vt.\u0275fac,providedIn:"root"}),vt})();function _e(vt,Mt,fe){Mt=Mt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const it=Re(vt);it[Mt]=fe??"",function ye(vt,Mt){let fe="";for(const it in Mt)Mt[it]&&(fe+=`${it}:${Mt[it]};`);vt.setAttribute("style",fe)}(vt,it)}function Re(vt){const Mt={},fe=vt.getAttribute("style");if(fe){const it=fe.split(/;+/g);for(let Et=0;Et0){const ri=ct.indexOf(":");if(-1===ri)throw new Error(`Invalid CSS style: ${ct}`);Mt[ct.substr(0,ri).trim()]=ct.substr(ri+1).trim()}}}return Mt}function Xe(vt,Mt){return(Mt&&Mt.priority||0)-(vt&&vt.priority||0)}function $e(vt,Mt){return(vt.priority||0)-(Mt.priority||0)}let oe=(()=>{class vt{constructor(fe,it,Et){this._zone=fe,this._platformId=it,this._document=Et,this.source=new a.g(new Ie(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const fe=[];return this.registry.forEach((it,Et)=>{it.matches&&fe.push(Et)}),fe}isActive(fe){return this.registry.get(fe)?.matches??this.registerQuery(fe).some(Et=>Et.matches)}observe(fe,it=!1){if(fe&&fe.length){const Et=this._observable$.pipe((0,b.I)(ri=>!it||fe.indexOf(ri.mediaQuery)>-1)),ct=new h._(ri=>{const V=this.registerQuery(fe);if(V.length){const Ce=V.pop();V.forEach(_=>{ri.next(_)}),this.source.next(Ce)}ri.complete()});return(0,l.U)(ct,Et)}return this._observable$}registerQuery(fe){const it=Array.isArray(fe)?fe:[fe],Et=[];return function st(vt,Mt){const fe=vt.filter(it=>!ut[it]);if(fe.length>0){const it=fe.join(", ");try{const Et=Mt.createElement("style");Et.setAttribute("type","text/css"),Et.styleSheet||Et.appendChild(Mt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${it} {.fx-query-test{ }}\n`)),Mt.head.appendChild(Et),fe.forEach(ct=>ut[ct]=Et)}catch(Et){console.error(Et)}}}(it,this._document),it.forEach(ct=>{const ri=Ce=>{this._zone.run(()=>this.source.next(new Ie(Ce.matches,ct)))};let V=this.registry.get(ct);V||(V=this.buildMQL(ct),V.addListener(ri),this.pendingRemoveListenerFns.push(()=>V.removeListener(ri)),this.registry.set(ct,V)),V.matches&&Et.push(new Ie(!0,ct))}),Et}ngOnDestroy(){let fe;for(;fe=this.pendingRemoveListenerFns.pop();)fe()}buildMQL(fe){return function oi(vt,Mt){return Mt&&window.matchMedia("all").addListener?window.matchMedia(vt):function $t(vt){const Mt=new EventTarget;return Mt.matches="all"===vt||""===vt,Mt.media=vt,Mt.addListener=()=>{},Mt.removeListener=()=>{},Mt.addEventListener=()=>{},Mt.dispatchEvent=()=>!1,Mt.onchange=null,Mt}(vt)}(fe,(0,s.c0)(this._platformId))}}return vt.\u0275fac=function(fe){return new(fe||vt)(i.CoB(i.WW2),i.CoB(i.AHE),i.CoB(s.Ud))},vt.\u0275prov=i.wxM({token:vt,factory:vt.\u0275fac,providedIn:"root"}),vt})();const ut={},Jt=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],vi="(orientation: portrait) and (max-width: 599.98px)",je="(orientation: landscape) and (max-width: 959.98px)",De="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",Le="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",Ve="(orientation: portrait) and (min-width: 840px)",te="(orientation: landscape) and (min-width: 1280px)",ge={HANDSET:`${vi}, ${je}`,TABLET:`${De} , ${Le}`,WEB:`${Ve}, ${te} `,HANDSET_PORTRAIT:`${vi}`,TABLET_PORTRAIT:`${De} `,WEB_PORTRAIT:`${Ve}`,HANDSET_LANDSCAPE:`${je}`,TABLET_LANDSCAPE:`${Le}`,WEB_LANDSCAPE:`${te}`},xt=[{alias:"handset",priority:2e3,mediaQuery:ge.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:ge.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:ge.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:ge.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:ge.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:ge.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:ge.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:ge.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:ge.WEB_PORTRAIT,overlapping:!0}],Ne=/(\.|-|_)/g;function be(vt){let Mt=vt.length>0?vt.charAt(0):"",fe=vt.length>1?vt.slice(1):"";return Mt.toUpperCase()+fe}const U=new i.UbH("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const vt=(0,i.uUt)(Bt),Mt=(0,i.uUt)(tt),fe=[].concat.apply([],(vt||[]).map(Et=>Array.isArray(Et)?Et:[Et]));return function N(vt,Mt=[]){const fe={};return vt.forEach(it=>{fe[it.alias]=it}),Mt.forEach(it=>{fe[it.alias]?(0,g.g7)(fe[it.alias],it):fe[it.alias]=it}),function we(vt){return vt.forEach(Mt=>{Mt.suffix||(Mt.suffix=function j(vt){return vt.replace(Ne,"|").split("|").map(be).join("")}(Mt.alias),Mt.overlapping=!!Mt.overlapping)}),vt}(Object.keys(fe).map(it=>fe[it]))}((Mt.disableDefaultBps?[]:Jt).concat(Mt.addOrientationBps?xt:[]),fe)}});let Fe=(()=>{class vt{constructor(fe){this.findByMap=new Map,this.items=[...fe].sort($e)}findByAlias(fe){return fe?this.findWithPredicate(fe,it=>it.alias===fe):null}findByQuery(fe){return this.findWithPredicate(fe,it=>it.mediaQuery===fe)}get overlappings(){return this.items.filter(fe=>fe.overlapping)}get aliases(){return this.items.map(fe=>fe.alias)}get suffixes(){return this.items.map(fe=>fe?.suffix??"")}findWithPredicate(fe,it){let Et=this.findByMap.get(fe);return Et||(Et=this.items.find(it)??null,this.findByMap.set(fe,Et)),Et??null}}return vt.\u0275fac=function(fe){return new(fe||vt)(i.CoB(U))},vt.\u0275prov=i.wxM({token:vt,factory:vt.\u0275fac,providedIn:"root"}),vt})();const Tt="print",Ke={alias:Tt,mediaQuery:Tt,priority:1e3};let Lt=(()=>{class vt{constructor(fe,it,Et){this.breakpoints=fe,this.layoutConfig=it,this._document=Et,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new Kt,this.deactivations=[]}withPrintQuery(fe){return[...fe,Tt]}isPrintEvent(fe){return fe.mediaQuery.startsWith(Tt)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(fe=>this.breakpoints.findByAlias(fe)).filter(fe=>null!==fe)}getEventBreakpoints({mediaQuery:fe}){const it=this.breakpoints.findByQuery(fe);return(it?[...this.printBreakPoints,it]:this.printBreakPoints).sort(Xe)}updateEvent(fe){let it=this.breakpoints.findByQuery(fe.mediaQuery);return this.isPrintEvent(fe)&&(it=this.getEventBreakpoints(fe)[0],fe.mediaQuery=it?.mediaQuery??""),kt(fe,it)}registerBeforeAfterPrintHooks(fe){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const it=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(fe,this.getEventBreakpoints(new Ie(!0,Tt))),fe.updateStyles())},Et=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(fe),fe.updateStyles())};this._document.defaultView.addEventListener("beforeprint",it),this._document.defaultView.addEventListener("afterprint",Et),this.beforePrintEventListeners.push(it),this.afterPrintEventListeners.push(Et)}interceptEvents(fe){return it=>{this.isPrintEvent(it)?it.matches&&!this.isPrinting?(this.startPrinting(fe,this.getEventBreakpoints(it)),fe.updateStyles()):!it.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(fe),fe.updateStyles()):this.collectActivations(fe,it)}}blockPropagation(){return fe=>!(this.isPrinting||this.isPrintEvent(fe))}startPrinting(fe,it){this.isPrinting=!0,this.formerActivations=fe.activatedBreakpoints,fe.activatedBreakpoints=this.queue.addPrintBreakpoints(it)}stopPrinting(fe){fe.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(fe,it){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!it.matches){const Et=this.breakpoints.findByQuery(it.mediaQuery);if(Et){const ct=this.formerActivations&&this.formerActivations.includes(Et),ri=!this.formerActivations&&fe.activatedBreakpoints.includes(Et);(ct||ri)&&(this.deactivations.push(Et),this.deactivations.sort(Xe))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(fe=>this._document.defaultView.removeEventListener("beforeprint",fe)),this.afterPrintEventListeners.forEach(fe=>this._document.defaultView.removeEventListener("afterprint",fe)))}}return vt.\u0275fac=function(fe){return new(fe||vt)(i.CoB(Fe),i.CoB(tt),i.CoB(s.Ud))},vt.\u0275prov=i.wxM({token:vt,factory:vt.\u0275fac,providedIn:"root"}),vt})();class Kt{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Mt){return Mt.push(Ke),Mt.sort(Xe),Mt.forEach(fe=>this.addBreakpoint(fe)),this.printBreakpoints}addBreakpoint(Mt){Mt&&void 0===this.printBreakpoints.find(it=>it.mediaQuery===Mt.mediaQuery)&&(this.printBreakpoints=function Ut(vt){return vt?.mediaQuery.startsWith(Tt)??!1}(Mt)?[Mt,...this.printBreakpoints]:[...this.printBreakpoints,Mt])}clear(){this.printBreakpoints=[]}}let ni=(()=>{class vt{constructor(fe,it,Et){this.matchMedia=fe,this.breakpoints=it,this.hook=Et,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new f.E,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(fe){this._activatedBreakpoints=[...fe]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(fe){this._useFallbacks=fe}onMediaChange(fe){const it=this.findByQuery(fe.mediaQuery);if(it){fe=kt(fe,it);const Et=this.activatedBreakpoints.indexOf(it);fe.matches&&-1===Et?(this._activatedBreakpoints.push(it),this._activatedBreakpoints.sort(Xe),this.updateStyles()):!fe.matches&&-1!==Et&&(this._activatedBreakpoints.splice(Et,1),this._activatedBreakpoints.sort(Xe),this.updateStyles())}}init(fe,it,Et,ct,ri=[]){Mi(this.updateMap,fe,it,Et),Mi(this.clearMap,fe,it,ct),this.buildElementKeyMap(fe,it),this.watchExtraTriggers(fe,it,ri)}getValue(fe,it,Et){const ct=this.elementMap.get(fe);if(ct){const ri=void 0!==Et?ct.get(Et):this.getActivatedValues(ct,it);if(ri)return ri.get(it)}}hasValue(fe,it){const Et=this.elementMap.get(fe);if(Et){const ct=this.getActivatedValues(Et,it);if(ct)return void 0!==ct.get(it)||!1}return!1}setValue(fe,it,Et,ct){let ri=this.elementMap.get(fe);if(ri){const Ce=(ri.get(ct)??new Map).set(it,Et);ri.set(ct,Ce),this.elementMap.set(fe,ri)}else ri=(new Map).set(ct,(new Map).set(it,Et)),this.elementMap.set(fe,ri);const V=this.getValue(fe,it);void 0!==V&&this.updateElement(fe,it,V)}trackValue(fe,it){return this.subject.asObservable().pipe((0,b.I)(Et=>Et.element===fe&&Et.key===it))}updateStyles(){this.elementMap.forEach((fe,it)=>{const Et=new Set(this.elementKeyMap.get(it));let ct=this.getActivatedValues(fe);ct&&ct.forEach((ri,V)=>{this.updateElement(it,V,ri),Et.delete(V)}),Et.forEach(ri=>{if(ct=this.getActivatedValues(fe,ri),ct){const V=ct.get(ri);this.updateElement(it,ri,V)}else this.clearElement(it,ri)})})}clearElement(fe,it){const Et=this.clearMap.get(fe);if(Et){const ct=Et.get(it);ct&&(ct(),this.subject.next({element:fe,key:it,value:""}))}}updateElement(fe,it,Et){const ct=this.updateMap.get(fe);if(ct){const ri=ct.get(it);ri&&(ri(Et),this.subject.next({element:fe,key:it,value:Et}))}}releaseElement(fe){const it=this.watcherMap.get(fe);it&&(it.forEach(ct=>ct.unsubscribe()),this.watcherMap.delete(fe));const Et=this.elementMap.get(fe);Et&&(Et.forEach((ct,ri)=>Et.delete(ri)),this.elementMap.delete(fe))}triggerUpdate(fe,it){const Et=this.elementMap.get(fe);if(Et){const ct=this.getActivatedValues(Et,it);ct&&(it?this.updateElement(fe,it,ct.get(it)):ct.forEach((ri,V)=>this.updateElement(fe,V,ri)))}}buildElementKeyMap(fe,it){let Et=this.elementKeyMap.get(fe);Et||(Et=new Set,this.elementKeyMap.set(fe,Et)),Et.add(it)}watchExtraTriggers(fe,it,Et){if(Et&&Et.length){let ct=this.watcherMap.get(fe);if(ct||(ct=new Map,this.watcherMap.set(fe,ct)),!ct.get(it)){const V=(0,l.U)(...Et).subscribe(()=>{const Ce=this.getValue(fe,it);this.updateElement(fe,it,Ce)});ct.set(it,V)}}}findByQuery(fe){return this.breakpoints.findByQuery(fe)}getActivatedValues(fe,it){for(let ct=0;ctit.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(fe)).pipe((0,R.y)(this.hook.interceptEvents(this)),(0,b.I)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return vt.\u0275fac=function(fe){return new(fe||vt)(i.CoB(oe),i.CoB(Fe),i.CoB(Lt))},vt.\u0275prov=i.wxM({token:vt,factory:vt.\u0275fac,providedIn:"root"}),vt})();function Mi(vt,Mt,fe,it){if(void 0!==it){const Et=vt.get(Mt)??new Map;Et.set(fe,it),vt.set(Mt,Et)}}let wt=(()=>{class vt{constructor(fe,it,Et,ct){this.elementRef=fe,this.styleBuilder=it,this.styler=Et,this.marshal=ct,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new f.E,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(fe){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,fe,this.marshal.activatedAlias)}ngOnChanges(fe){Object.keys(fe).forEach(it=>{if(-1!==this.inputs.indexOf(it)){const Et=it.split(".").slice(1).join(".");this.setValue(fe[it].currentValue,Et)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(fe=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),fe)}addStyles(fe,it){const Et=this.styleBuilder,ct=Et.shouldCache;let ri=this.styleCache.get(fe);(!ri||!ct)&&(ri=Et.buildStyles(fe,it),ct&&this.styleCache.set(fe,ri)),this.mru={...ri},this.applyStyleToElement(ri),Et.sideEffect(fe,ri,it)}clearStyles(){Object.keys(this.mru).forEach(fe=>{this.mru[fe]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(fe,it=!1){if(fe){const[Et,ct]=this.styler.getFlowDirection(fe);if(!ct&&it){const ri=(0,g._s)(Et);this.styler.applyStyleToElements(ri,[fe])}return Et.trim()}return"row"}hasWrap(fe){return this.styler.hasWrap(fe)}applyStyleToElement(fe,it,Et=this.nativeElement){this.styler.applyStyleToElement(Et,fe,it)}setValue(fe,it){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,fe,it)}updateWithValue(fe){this.currentValue!==fe&&(this.addStyles(fe),this.currentValue=fe)}}return vt.\u0275fac=function(fe){return new(fe||vt)(i.GI1(i.GMv),i.GI1(Ye),i.GI1(et),i.GI1(ni))},vt.\u0275dir=i.Sc5({type:vt,features:[i.SYr]}),vt})();function xe(vt,Mt="1",fe="1"){let it=[Mt,fe,vt],Et=vt.indexOf("calc");if(Et>0){it[2]=Pe(vt.substring(Et).trim());let ct=vt.substr(0,Et).trim().split(" ");2==ct.length&&(it[0]=ct[0],it[1]=ct[1])}else if(0==Et)it[2]=Pe(vt.trim());else{let ct=vt.split(" ");it=3===ct.length?ct:[Mt,fe,vt]}return it}function Pe(vt){return vt.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const ht="x";function Ht(vt,Mt){if(void 0===Mt)return vt;const fe=it=>{const Et=+it.slice(0,-ht.length);return vt.endsWith(ht)&&!isNaN(Et)?`${Et*Mt.value}${Mt.unit}`:vt};return vt.includes(" ")?vt.split(" ").map(fe).join(" "):fe(vt)}},2978:(lt,me,d)=>{"use strict";d.d(me,{K_:()=>Ge,fu:()=>je,s9:()=>et});var i=d(2116),s=d(5784),a=d(1368),h=d(7712),l=d(3616);d(4476);let ae=(()=>{class De extends s.yK{constructor(Ve,te,ge,xt,Ne,be,j){super(Ve,null,te,ge),this.ngClassInstance=j,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new a.QF(xt,Ne,Ve,be)),this.init(),this.setValue("","")}set klass(Ve){this.ngClassInstance.klass=Ve,this.setValue(Ve,"")}updateWithValue(Ve){this.ngClassInstance.ngClass=Ve,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return De.\u0275fac=function(Ve){return new(Ve||De)(i.GI1(i.GMv),i.GI1(s.CW),i.GI1(s.KY),i.GI1(i.Uj7),i.GI1(i.YNh),i.GI1(i.q87),i.GI1(a.QF,10))},De.\u0275dir=i.Sc5({type:De,inputs:{klass:[i.Wk5.None,"class","klass"]},features:[i.eg9]}),De})();const Ie=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let Ge=(()=>{class De extends ae{constructor(){super(...arguments),this.inputs=Ie}}return De.\u0275fac=(()=>{let Le;return function(te){return(Le||(Le=i.otF(De)))(te||De)}})(),De.\u0275dir=i.Sc5({type:De,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},features:[i.eg9]}),De})(),tt=(()=>{class De extends s.Ow{buildStyles(Ve,te){return{display:"true"===Ve?te.display||(te.isServer?"initial":""):"none"}}}return De.\u0275fac=(()=>{let Le;return function(te){return(Le||(Le=i.otF(De)))(te||De)}})(),De.\u0275prov=i.wxM({token:De,factory:De.\u0275fac,providedIn:"root"}),De})(),gt=(()=>{class De extends s.yK{constructor(Ve,te,ge,xt,Ne,be,j){super(Ve,te,ge,xt),this.layoutConfig=Ne,this.platformId=be,this.serverModuleLoaded=j,this.DIRECTIVE_KEY="show-hide",this.display="",this.hasLayout=!1,this.hasFlexChild=!1}ngAfterViewInit(){this.trackExtraTriggers();const Ve=Array.from(this.nativeElement.children);for(let ge=0;ge{if(-1!==this.inputs.indexOf(te)){const ge=te.split("."),xt=ge.slice(1).join("."),Ne=Ve[te].currentValue;let be=""===Ne||0!==Ne&&(0,h.W6)(Ne);"fxHide"===ge[0]&&(be=!be),this.setValue(be,xt)}})}trackExtraTriggers(){this.hasLayout=this.marshal.hasValue(this.nativeElement,"layout"),["layout","layout-align"].forEach(Ve=>{this.marshal.trackValue(this.nativeElement,Ve).pipe((0,l.a)(this.destroySubject)).subscribe(this.triggerUpdate.bind(this))})}getDisplayStyle(){return this.hasLayout||this.hasFlexChild&&this.layoutConfig.addFlexToParent?"flex":this.styler.lookupStyle(this.nativeElement,"display",!0)}updateWithValue(Ve=!0){if(""===Ve)return;const te=(0,a.uf)(this.platformId);this.addStyles(Ve?"true":"false",{display:this.display,isServer:te}),te&&this.serverModuleLoaded&&this.nativeElement.style.setProperty("display",""),this.marshal.triggerUpdate(this.parentElement,"layout-gap")}}return De.\u0275fac=function(Ve){return new(Ve||De)(i.GI1(i.GMv),i.GI1(tt),i.GI1(s.CW),i.GI1(s.KY),i.GI1(s.wp),i.GI1(i.AHE),i.GI1(s._X))},De.\u0275dir=i.Sc5({type:De,features:[i.eg9,i.SYr]}),De})();const Bt=new WeakMap,kt=["fxShow","fxShow.print","fxShow.xs","fxShow.sm","fxShow.md","fxShow.lg","fxShow.xl","fxShow.lt-sm","fxShow.lt-md","fxShow.lt-lg","fxShow.lt-xl","fxShow.gt-xs","fxShow.gt-sm","fxShow.gt-md","fxShow.gt-lg","fxHide","fxHide.print","fxHide.xs","fxHide.sm","fxHide.md","fxHide.lg","fxHide.xl","fxHide.lt-sm","fxHide.lt-md","fxHide.lt-lg","fxHide.lt-xl","fxHide.gt-xs","fxHide.gt-sm","fxHide.gt-md","fxHide.gt-lg"];let et=(()=>{class De extends gt{constructor(){super(...arguments),this.inputs=kt}}return De.\u0275fac=(()=>{let Le;return function(te){return(Le||(Le=i.otF(De)))(te||De)}})(),De.\u0275dir=i.Sc5({type:De,selectors:[["","fxShow",""],["","fxShow.print",""],["","fxShow.xs",""],["","fxShow.sm",""],["","fxShow.md",""],["","fxShow.lg",""],["","fxShow.xl",""],["","fxShow.lt-sm",""],["","fxShow.lt-md",""],["","fxShow.lt-lg",""],["","fxShow.lt-xl",""],["","fxShow.gt-xs",""],["","fxShow.gt-sm",""],["","fxShow.gt-md",""],["","fxShow.gt-lg",""],["","fxHide",""],["","fxHide.print",""],["","fxHide.xs",""],["","fxHide.sm",""],["","fxHide.md",""],["","fxHide.lg",""],["","fxHide.xl",""],["","fxHide.lt-sm",""],["","fxHide.lt-md",""],["","fxHide.lt-lg",""],["","fxHide.lt-xl",""],["","fxHide.gt-xs",""],["","fxHide.gt-sm",""],["","fxHide.gt-md",""],["","fxHide.gt-lg",""]],inputs:{fxShow:"fxShow","fxShow.print":"fxShow.print","fxShow.xs":"fxShow.xs","fxShow.sm":"fxShow.sm","fxShow.md":"fxShow.md","fxShow.lg":"fxShow.lg","fxShow.xl":"fxShow.xl","fxShow.lt-sm":"fxShow.lt-sm","fxShow.lt-md":"fxShow.lt-md","fxShow.lt-lg":"fxShow.lt-lg","fxShow.lt-xl":"fxShow.lt-xl","fxShow.gt-xs":"fxShow.gt-xs","fxShow.gt-sm":"fxShow.gt-sm","fxShow.gt-md":"fxShow.gt-md","fxShow.gt-lg":"fxShow.gt-lg",fxHide:"fxHide","fxHide.print":"fxHide.print","fxHide.xs":"fxHide.xs","fxHide.sm":"fxHide.sm","fxHide.md":"fxHide.md","fxHide.lg":"fxHide.lg","fxHide.xl":"fxHide.xl","fxHide.lt-sm":"fxHide.lt-sm","fxHide.lt-md":"fxHide.lt-md","fxHide.lt-lg":"fxHide.lt-lg","fxHide.lt-xl":"fxHide.lt-xl","fxHide.gt-xs":"fxHide.gt-xs","fxHide.gt-sm":"fxHide.gt-sm","fxHide.gt-md":"fxHide.gt-md","fxHide.gt-lg":"fxHide.gt-lg"},features:[i.eg9]}),De})(),je=(()=>{class De{}return De.\u0275fac=function(Ve){return new(Ve||De)},De.\u0275mod=i.a4G({type:De}),De.\u0275inj=i.s3X({imports:[s.Ft]}),De})()},2276:(lt,me,d)=>{"use strict";d.d(me,{CA:()=>$t,cZ:()=>gt,nQ:()=>ri,qG:()=>xe,sZ:()=>J});var i=d(2116),s=d(1900),a=d(5784),h=d(5864),l=d(5657),f=d(3616);let g=(()=>{class V extends a.Ow{buildStyles(_,{display:w}){const S=(0,h._s)(_);return{...S,display:"none"===w?w:S.display}}}return V.\u0275fac=(()=>{let Ce;return function(w){return(Ce||(Ce=i.otF(V)))(w||V)}})(),V.\u0275prov=i.wxM({token:V,factory:V.\u0275fac,providedIn:"root"}),V})();const b=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let Y=(()=>{class V extends a.yK{constructor(_,w,S,$,ze){super(_,S,w,$),this._config=ze,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(_){const S=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=ie.get(S)??new Map,ie.set(S,this.styleCache),this.currentValue!==_&&(this.addStyles(_,{display:S}),this.currentValue=_)}}return V.\u0275fac=function(_){return new(_||V)(i.GI1(i.GMv),i.GI1(a.CW),i.GI1(g),i.GI1(a.KY),i.GI1(a.wp))},V.\u0275dir=i.Sc5({type:V,features:[i.eg9]}),V})(),J=(()=>{class V extends Y{constructor(){super(...arguments),this.inputs=b}}return V.\u0275fac=(()=>{let Ce;return function(w){return(Ce||(Ce=i.otF(V)))(w||V)}})(),V.\u0275dir=i.Sc5({type:V,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},features:[i.eg9]}),V})();const ie=new Map,ae={"margin-left":null,"margin-right":null,"margin-top":null,"margin-bottom":null};let Ie=(()=>{class V extends a.Ow{constructor(_,w){super(),this._styler=_,this._config=w}buildStyles(_,w){return _.endsWith(Q)?(_=_.slice(0,_.indexOf(Q)),function ye(V,Ce){const[_,w]=V.split(" "),$=yt=>`-${yt}`;let ze="0px",At=$(w??_),bt="0px";return"rtl"===Ce?bt=$(_):ze=$(_),{margin:`0px ${ze} ${At} ${bt}`}}(_=(0,a.Os)(_,this._config.multiplier),w.directionality)):{}}sideEffect(_,w,S){const $=S.items;if(_.endsWith(Q)){_=_.slice(0,_.indexOf(Q));const ze=function _e(V,Ce){const[_,w]=V.split(" ");let $="0px",At="0px";return"rtl"===Ce?At=_:$=_,{padding:`0px ${$} ${w??_} ${At}`}}(_=(0,a.Os)(_,this._config.multiplier),S.directionality);this._styler.applyStyleToElements(ze,S.items)}else{_=(0,a.Os)(_,this._config.multiplier),_=this.addFallbackUnit(_);const ze=$.pop(),At=function Xe(V,Ce){const _=Re(Ce.directionality,Ce.layout),w={...ae};return w[_]=V,w}(_,S);this._styler.applyStyleToElements(At,$),this._styler.applyStyleToElements(ae,[ze])}}addFallbackUnit(_){return isNaN(+_)?_:`${_}${this._config.defaultUnit}`}}return V.\u0275fac=function(_){return new(_||V)(i.CoB(a.CW),i.CoB(a.wp))},V.\u0275prov=i.wxM({token:V,factory:V.\u0275fac,providedIn:"root"}),V})();const Ee=["fxLayoutGap","fxLayoutGap.xs","fxLayoutGap.sm","fxLayoutGap.md","fxLayoutGap.lg","fxLayoutGap.xl","fxLayoutGap.lt-sm","fxLayoutGap.lt-md","fxLayoutGap.lt-lg","fxLayoutGap.lt-xl","fxLayoutGap.gt-xs","fxLayoutGap.gt-sm","fxLayoutGap.gt-md","fxLayoutGap.gt-lg"];let tt=(()=>{class V extends a.yK{constructor(_,w,S,$,ze,At){super(_,ze,$,At),this.zone=w,this.directionality=S,this.styleUtils=$,this.layout="row",this.DIRECTIVE_KEY="layout-gap",this.observerSubject=new l.E;const bt=[this.directionality.change,this.observerSubject.asObservable()];this.init(bt),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,f.a)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}get childrenNodes(){const _=this.nativeElement.children,w=[];for(let S=_.length;S--;)w[S]=_[S];return w}ngAfterContentInit(){this.buildChildObservable(),this.triggerUpdate()}ngOnDestroy(){super.ngOnDestroy(),this.observer&&this.observer.disconnect()}onLayoutChange(_){const S=_.value.split(" ");this.layout=S[0],h.qe.find($=>$===this.layout)||(this.layout="row"),this.triggerUpdate()}updateWithValue(_){const w=this.childrenNodes.filter(S=>1===S.nodeType&&this.willDisplay(S)).sort((S,$)=>{const ze=+this.styler.lookupStyle(S,"order"),At=+this.styler.lookupStyle($,"order");return isNaN(ze)||isNaN(At)||ze===At?0:ze>At?1:-1});if(w.length>0){const S=this.directionality.value,$=this.layout;"row"===$&&"rtl"===S?this.styleCache=Bt:"row"===$&&"rtl"!==S?this.styleCache=Ye:"column"===$&&"rtl"===S?this.styleCache=kt:"column"===$&&"rtl"!==S&&(this.styleCache=et),this.addStyles(_,{directionality:S,items:w,layout:$})}}clearStyles(){const _=Object.keys(this.mru).length>0,w=_?"padding":Re(this.directionality.value,this.layout);_&&super.clearStyles(),this.styleUtils.applyStyleToElements({[w]:""},this.childrenNodes)}willDisplay(_){const w=this.marshal.getValue(_,"show-hide");return!0===w||void 0===w&&"none"!==this.styleUtils.lookupStyle(_,"display")}buildChildObservable(){this.zone.runOutsideAngular(()=>{typeof MutationObserver<"u"&&(this.observer=new MutationObserver(_=>{_.some(S=>S.addedNodes&&S.addedNodes.length>0||S.removedNodes&&S.removedNodes.length>0)&&this.observerSubject.next()}),this.observer.observe(this.nativeElement,{childList:!0}))})}}return V.\u0275fac=function(_){return new(_||V)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(s.yG),i.GI1(a.CW),i.GI1(Ie),i.GI1(a.KY))},V.\u0275dir=i.Sc5({type:V,features:[i.eg9]}),V})(),gt=(()=>{class V extends tt{constructor(){super(...arguments),this.inputs=Ee}}return V.\u0275fac=(()=>{let Ce;return function(w){return(Ce||(Ce=i.otF(V)))(w||V)}})(),V.\u0275dir=i.Sc5({type:V,selectors:[["","fxLayoutGap",""],["","fxLayoutGap.xs",""],["","fxLayoutGap.sm",""],["","fxLayoutGap.md",""],["","fxLayoutGap.lg",""],["","fxLayoutGap.xl",""],["","fxLayoutGap.lt-sm",""],["","fxLayoutGap.lt-md",""],["","fxLayoutGap.lt-lg",""],["","fxLayoutGap.lt-xl",""],["","fxLayoutGap.gt-xs",""],["","fxLayoutGap.gt-sm",""],["","fxLayoutGap.gt-md",""],["","fxLayoutGap.gt-lg",""]],inputs:{fxLayoutGap:"fxLayoutGap","fxLayoutGap.xs":"fxLayoutGap.xs","fxLayoutGap.sm":"fxLayoutGap.sm","fxLayoutGap.md":"fxLayoutGap.md","fxLayoutGap.lg":"fxLayoutGap.lg","fxLayoutGap.xl":"fxLayoutGap.xl","fxLayoutGap.lt-sm":"fxLayoutGap.lt-sm","fxLayoutGap.lt-md":"fxLayoutGap.lt-md","fxLayoutGap.lt-lg":"fxLayoutGap.lt-lg","fxLayoutGap.lt-xl":"fxLayoutGap.lt-xl","fxLayoutGap.gt-xs":"fxLayoutGap.gt-xs","fxLayoutGap.gt-sm":"fxLayoutGap.gt-sm","fxLayoutGap.gt-md":"fxLayoutGap.gt-md","fxLayoutGap.gt-lg":"fxLayoutGap.gt-lg"},features:[i.eg9]}),V})();const Bt=new Map,kt=new Map,Ye=new Map,et=new Map,Q=" grid";function Re(V,Ce){switch(Ce){case"column":return"margin-bottom";case"column-reverse":return"margin-top";case"row":default:return"rtl"===V?"margin-left":"margin-right";case"row-reverse":return"rtl"===V?"margin-right":"margin-left"}}let $e=(()=>{class V extends a.Ow{constructor(_){super(),this.layoutConfig=_}buildStyles(_,w){let[S,$,...ze]=_.split(" "),At=ze.join(" ");const bt=w.direction.indexOf("column")>-1?"column":"row",yt=(0,h.IL)(bt)?"max-width":"max-height",Ue=(0,h.IL)(bt)?"min-width":"min-height",Ft=String(At).indexOf("calc")>-1,di=Ft||"auto"===At,Ei=String(At).indexOf("%")>-1&&!Ft,Vt=String(At).indexOf("px")>-1||String(At).indexOf("rem")>-1||String(At).indexOf("em")>-1||String(At).indexOf("vw")>-1||String(At).indexOf("vh")>-1;let Ci=Ft||Vt;S="0"==S?0:S,$="0"==$?0:$;const We=!S&&!$;let nt={};const Ot={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(At||""){case"":At="row"===bt?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":S=0,At="auto";break;case"grow":At="100%";break;case"noshrink":$=0,At="auto";break;case"auto":break;case"none":S=0,$=0,At="auto";break;default:!Ci&&!Ei&&!isNaN(At)&&(At+="%"),"0%"===At&&(Ci=!0),"0px"===At&&(At="0%"),nt=(0,h.g7)(Ot,Ft?{"flex-grow":S,"flex-shrink":$,"flex-basis":Ci?At:"100%"}:{flex:`${S} ${$} ${Ci?At:"100%"}`})}return nt.flex||nt["flex-grow"]||(nt=(0,h.g7)(Ot,Ft?{"flex-grow":S,"flex-shrink":$,"flex-basis":At}:{flex:`${S} ${$} ${At}`})),"0%"!==At&&"0px"!==At&&"0.000000001px"!==At&&"auto"!==At&&(nt[Ue]=We||Ci&&S?At:null,nt[yt]=We||!di&&$?At:null),nt[Ue]||nt[yt]?w.hasWrap&&(nt[Ft?"flex-basis":"flex"]=nt[yt]?Ft?nt[yt]:`${S} ${$} ${nt[yt]}`:Ft?nt[Ue]:`${S} ${$} ${nt[Ue]}`):nt=(0,h.g7)(Ot,Ft?{"flex-grow":S,"flex-shrink":$,"flex-basis":At}:{flex:`${S} ${$} ${At}`}),(0,h.g7)(nt,{"box-sizing":"border-box"})}}return V.\u0275fac=function(_){return new(_||V)(i.CoB(a.wp))},V.\u0275prov=i.wxM({token:V,factory:V.\u0275fac,providedIn:"root"}),V})();const oe=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let st=(()=>{class V extends a.yK{constructor(_,w,S,$,ze){super(_,$,w,ze),this.layoutConfig=S,this.marshal=ze,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(_){this.flexShrink=_||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(_){this.flexGrow=_||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,f.a)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,f.a)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(_){const S=_.value.split(" ");this.direction=S[0],this.wrap=void 0!==S[1]&&"wrap"===S[1],this.triggerUpdate()}updateWithValue(_){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const S=this.direction,$=S.startsWith("row"),ze=this.wrap;$&&ze?this.styleCache=vi:$&&!ze?this.styleCache=oi:!$&&ze?this.styleCache=je:!$&&!ze&&(this.styleCache=Jt);const At=String(_).replace(";",""),bt=(0,a.s7)(At,this.flexGrow,this.flexShrink);this.addStyles(bt.join(" "),{direction:S,hasWrap:ze})}triggerReflow(){const _=this.activatedValue;if(void 0!==_){const w=(0,a.s7)(_+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,w.join(" "))}}}return V.\u0275fac=function(_){return new(_||V)(i.GI1(i.GMv),i.GI1(a.CW),i.GI1(a.wp),i.GI1($e),i.GI1(a.KY))},V.\u0275dir=i.Sc5({type:V,inputs:{shrink:[i.Wk5.None,"fxShrink","shrink"],grow:[i.Wk5.None,"fxGrow","grow"]},features:[i.eg9]}),V})(),$t=(()=>{class V extends st{constructor(){super(...arguments),this.inputs=oe}}return V.\u0275fac=(()=>{let Ce;return function(w){return(Ce||(Ce=i.otF(V)))(w||V)}})(),V.\u0275dir=i.Sc5({type:V,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},features:[i.eg9]}),V})();const oi=new Map,Jt=new Map,vi=new Map,je=new Map;let at=(()=>{class V extends a.Ow{buildStyles(_,w){const S={},[$,ze]=_.split(" ");switch($){case"center":S["justify-content"]="center";break;case"space-around":S["justify-content"]="space-around";break;case"space-between":S["justify-content"]="space-between";break;case"space-evenly":S["justify-content"]="space-evenly";break;case"end":case"flex-end":S["justify-content"]="flex-end";break;default:S["justify-content"]="flex-start"}switch(ze){case"start":case"flex-start":S["align-items"]=S["align-content"]="flex-start";break;case"center":S["align-items"]=S["align-content"]="center";break;case"end":case"flex-end":S["align-items"]=S["align-content"]="flex-end";break;case"space-between":S["align-content"]="space-between",S["align-items"]="stretch";break;case"space-around":S["align-content"]="space-around",S["align-items"]="stretch";break;case"baseline":S["align-content"]="stretch",S["align-items"]="baseline";break;default:S["align-items"]=S["align-content"]="stretch"}return(0,h.g7)(S,{display:w.inline?"inline-flex":"flex","flex-direction":w.layout,"box-sizing":"border-box","max-width":"stretch"===ze?(0,h.IL)(w.layout)?null:"100%":null,"max-height":"stretch"===ze&&(0,h.IL)(w.layout)?"100%":null})}}return V.\u0275fac=(()=>{let Ce;return function(w){return(Ce||(Ce=i.otF(V)))(w||V)}})(),V.\u0275prov=i.wxM({token:V,factory:V.\u0275fac,providedIn:"root"}),V})();const Ze=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let le=(()=>{class V extends a.yK{constructor(_,w,S,$){super(_,S,w,$),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,f.a)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(_){const w=this.layout||"row",S=this.inline;"row"===w&&S?this.styleCache=Mt:"row"!==w||S?"row-reverse"===w&&S?this.styleCache=it:"row-reverse"!==w||S?"column"===w&&S?this.styleCache=fe:"column"!==w||S?"column-reverse"===w&&S?this.styleCache=Et:"column-reverse"===w&&!S&&(this.styleCache=vt):this.styleCache=ht:this.styleCache=Ht:this.styleCache=Pe,this.addStyles(_,{layout:w,inline:S})}onLayoutChange(_){const w=_.value.split(" ");this.layout=w[0],this.inline=_.value.includes("inline"),h.qe.find(S=>S===this.layout)||(this.layout="row"),this.triggerUpdate()}}return V.\u0275fac=function(_){return new(_||V)(i.GI1(i.GMv),i.GI1(a.CW),i.GI1(at),i.GI1(a.KY))},V.\u0275dir=i.Sc5({type:V,features:[i.eg9]}),V})(),xe=(()=>{class V extends le{constructor(){super(...arguments),this.inputs=Ze}}return V.\u0275fac=(()=>{let Ce;return function(w){return(Ce||(Ce=i.otF(V)))(w||V)}})(),V.\u0275dir=i.Sc5({type:V,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},features:[i.eg9]}),V})();const Pe=new Map,ht=new Map,Ht=new Map,vt=new Map,Mt=new Map,fe=new Map,it=new Map,Et=new Map;let ri=(()=>{class V{}return V.\u0275fac=function(_){return new(_||V)},V.\u0275mod=i.a4G({type:V}),V.\u0275inj=i.s3X({imports:[a.Ft,s.gN]}),V})()},6504:(lt,me,d)=>{"use strict";d.d(me,{AQ:()=>kt,Mj:()=>qr,O4:()=>Sr,SC:()=>k,WM:()=>tt,Wo:()=>nr,Y6:()=>b,_G:()=>Er,cX:()=>cr,eJ:()=>$n,eq:()=>Fe,im:()=>Ya,k1:()=>yt,ot:()=>Ie,sl:()=>jr,sz:()=>ra,u:()=>Ut,uW:()=>or,ue:()=>Kt,y:()=>ma,yM:()=>Yt});var i=d(2116),s=d(1368),a=d(4496),h=d(9336),l=d(4704);let f=(()=>{class Z{constructor(P,Ae){this._renderer=P,this._elementRef=Ae,this.onChange=It=>{},this.onTouched=()=>{}}setProperty(P,Ae){this._renderer.setProperty(this._elementRef.nativeElement,P,Ae)}registerOnTouched(P){this.onTouched=P}registerOnChange(P){this.onChange=P}setDisabledState(P){this.setProperty("disabled",P)}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(i.q87),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Z})}return Z})(),g=(()=>{class Z extends f{static#e=this.\u0275fac=(()=>{let P;return function(It){return(P||(P=i.otF(Z)))(It||Z)}})();static#t=this.\u0275dir=i.Sc5({type:Z,features:[i.eg9]})}return Z})();const b=new i.UbH(""),J={provide:b,useExisting:(0,i.wd)(()=>Ie),multi:!0},ae=new i.UbH("");let Ie=(()=>{class Z extends f{constructor(P,Ae,It){super(P,Ae),this._compositionMode=It,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function ie(){const Z=(0,s.uy)()?(0,s.uy)().getUserAgent():"";return/android (\d+)/.test(Z.toLowerCase())}())}writeValue(P){this.setProperty("value",P??"")}_handleInput(P){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(P)}_compositionStart(){this._composing=!0}_compositionEnd(P){this._composing=!1,this._compositionMode&&this.onChange(P)}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(i.q87),i.GI1(i.GMv),i.GI1(ae,8))};static#t=this.\u0275dir=i.Sc5({type:Z,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(Ae,It){1&Ae&&i.qCj("input",function(Ui){return It._handleInput(Ui.target.value)})("blur",function(){return It.onTouched()})("compositionstart",function(){return It._compositionStart()})("compositionend",function(Ui){return It._compositionEnd(Ui.target.value)})},features:[i.M5G([J]),i.eg9]})}return Z})();function Ee(Z){return null==Z||("string"==typeof Z||Array.isArray(Z))&&0===Z.length}function Ge(Z){return null!=Z&&"number"==typeof Z.length}const tt=new i.UbH(""),gt=new i.UbH(""),Bt=/^(?=.{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 kt{static min(ne){return function Ye(Z){return ne=>{if(Ee(ne.value)||Ee(Z))return null;const P=parseFloat(ne.value);return!isNaN(P)&&P{if(Ee(ne.value)||Ee(Z))return null;const P=parseFloat(ne.value);return!isNaN(P)&&P>Z?{max:{max:Z,actual:ne.value}}:null}}(ne)}static required(ne){return Q(ne)}static requiredTrue(ne){return _e(ne)}static email(ne){return function ye(Z){return Ee(Z.value)||Bt.test(Z.value)?null:{email:!0}}(ne)}static minLength(ne){return function Re(Z){return ne=>Ee(ne.value)||!Ge(ne.value)?null:ne.value.length{if(Ee(Ae.value))return null;const It=Ae.value;return ne.test(It)?null:{pattern:{requiredPattern:P,actualValue:It}}}}(ne)}static nullValidator(ne){return null}static compose(ne){return je(ne)}static composeAsync(ne){return Le(ne)}}function Q(Z){return Ee(Z.value)?{required:!0}:null}function _e(Z){return!0===Z.value?null:{required:!0}}function Xe(Z){return ne=>Ge(ne.value)&&ne.value.length>Z?{maxlength:{requiredLength:Z,actualLength:ne.value.length}}:null}function oe(Z){return null}function ut(Z){return null!=Z}function st(Z){return(0,i.w5$)(Z)?(0,a.Q)(Z):Z}function $t(Z){let ne={};return Z.forEach(P=>{ne=null!=P?{...ne,...P}:ne}),0===Object.keys(ne).length?null:ne}function oi(Z,ne){return ne.map(P=>P(Z))}function vi(Z){return Z.map(ne=>function Jt(Z){return!Z.validate}(ne)?ne:P=>ne.validate(P))}function je(Z){if(!Z)return null;const ne=Z.filter(ut);return 0==ne.length?null:function(P){return $t(oi(P,ne))}}function De(Z){return null!=Z?je(vi(Z)):null}function Le(Z){if(!Z)return null;const ne=Z.filter(ut);return 0==ne.length?null:function(P){const Ae=oi(P,ne).map(st);return(0,h.y)(Ae).pipe((0,l.k)($t))}}function Ve(Z){return null!=Z?Le(vi(Z)):null}function te(Z,ne){return null===Z?[ne]:Array.isArray(Z)?[...Z,ne]:[Z,ne]}function ge(Z){return Z._rawValidators}function xt(Z){return Z._rawAsyncValidators}function Ne(Z){return Z?Array.isArray(Z)?Z:[Z]:[]}function be(Z,ne){return Array.isArray(Z)?Z.includes(ne):Z===ne}function j(Z,ne){const P=Ne(ne);return Ne(Z).forEach(It=>{be(P,It)||P.push(It)}),P}function we(Z,ne){return Ne(ne).filter(P=>!be(Z,P))}class N{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}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}_setValidators(ne){this._rawValidators=ne||[],this._composedValidatorFn=De(this._rawValidators)}_setAsyncValidators(ne){this._rawAsyncValidators=ne||[],this._composedAsyncValidatorFn=Ve(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(ne){this._onDestroyCallbacks.push(ne)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(ne=>ne()),this._onDestroyCallbacks=[]}reset(ne=void 0){this.control&&this.control.reset(ne)}hasError(ne,P){return!!this.control&&this.control.hasError(ne,P)}getError(ne,P){return this.control?this.control.getError(ne,P):null}}class U extends N{get formDirective(){return null}get path(){return null}}class Fe extends N{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class Tt{constructor(ne){this._cd=ne}get isTouched(){return!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return!!this._cd?.submitted}}let Kt=(()=>{class Z extends Tt{constructor(P){super(P)}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(Fe,2))};static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(Ae,It){2&Ae&&i.eAK("ng-untouched",It.isUntouched)("ng-touched",It.isTouched)("ng-pristine",It.isPristine)("ng-dirty",It.isDirty)("ng-valid",It.isValid)("ng-invalid",It.isInvalid)("ng-pending",It.isPending)},features:[i.eg9]})}return Z})(),Ut=(()=>{class Z extends Tt{constructor(P){super(P)}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(U,10))};static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(Ae,It){2&Ae&&i.eAK("ng-untouched",It.isUntouched)("ng-touched",It.isTouched)("ng-pristine",It.isPristine)("ng-dirty",It.isDirty)("ng-valid",It.isValid)("ng-invalid",It.isInvalid)("ng-pending",It.isPending)("ng-submitted",It.isSubmitted)},features:[i.eg9]})}return Z})();const fe="VALID",it="INVALID",Et="PENDING",ct="DISABLED";function ri(Z){return(w(Z)?Z.validators:Z)||null}function Ce(Z,ne){return(w(ne)?ne.asyncValidators:Z)||null}function w(Z){return null!=Z&&!Array.isArray(Z)&&"object"==typeof Z}function S(Z,ne,P){const Ae=Z.controls;if(!(ne?Object.keys(Ae):Ae).length)throw new i.OBp(1e3,"");if(!Ae[P])throw new i.OBp(1001,"")}function $(Z,ne,P){Z._forEachChild((Ae,It)=>{if(void 0===P[It])throw new i.OBp(1002,"")})}class ze{constructor(ne,P){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=!1,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._assignValidators(ne),this._assignAsyncValidators(P)}get validator(){return this._composedValidatorFn}set validator(ne){this._rawValidators=this._composedValidatorFn=ne}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(ne){this._rawAsyncValidators=this._composedAsyncValidatorFn=ne}get parent(){return this._parent}get valid(){return this.status===fe}get invalid(){return this.status===it}get pending(){return this.status==Et}get disabled(){return this.status===ct}get enabled(){return this.status!==ct}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(ne){this._assignValidators(ne)}setAsyncValidators(ne){this._assignAsyncValidators(ne)}addValidators(ne){this.setValidators(j(ne,this._rawValidators))}addAsyncValidators(ne){this.setAsyncValidators(j(ne,this._rawAsyncValidators))}removeValidators(ne){this.setValidators(we(ne,this._rawValidators))}removeAsyncValidators(ne){this.setAsyncValidators(we(ne,this._rawAsyncValidators))}hasValidator(ne){return be(this._rawValidators,ne)}hasAsyncValidator(ne){return be(this._rawAsyncValidators,ne)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(ne={}){this.touched=!0,this._parent&&!ne.onlySelf&&this._parent.markAsTouched(ne)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(ne=>ne.markAllAsTouched())}markAsUntouched(ne={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(P=>{P.markAsUntouched({onlySelf:!0})}),this._parent&&!ne.onlySelf&&this._parent._updateTouched(ne)}markAsDirty(ne={}){this.pristine=!1,this._parent&&!ne.onlySelf&&this._parent.markAsDirty(ne)}markAsPristine(ne={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(P=>{P.markAsPristine({onlySelf:!0})}),this._parent&&!ne.onlySelf&&this._parent._updatePristine(ne)}markAsPending(ne={}){this.status=Et,!1!==ne.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!ne.onlySelf&&this._parent.markAsPending(ne)}disable(ne={}){const P=this._parentMarkedDirty(ne.onlySelf);this.status=ct,this.errors=null,this._forEachChild(Ae=>{Ae.disable({...ne,onlySelf:!0})}),this._updateValue(),!1!==ne.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...ne,skipPristineCheck:P}),this._onDisabledChange.forEach(Ae=>Ae(!0))}enable(ne={}){const P=this._parentMarkedDirty(ne.onlySelf);this.status=fe,this._forEachChild(Ae=>{Ae.enable({...ne,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:ne.emitEvent}),this._updateAncestors({...ne,skipPristineCheck:P}),this._onDisabledChange.forEach(Ae=>Ae(!1))}_updateAncestors(ne){this._parent&&!ne.onlySelf&&(this._parent.updateValueAndValidity(ne),ne.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(ne){this._parent=ne}getRawValue(){return this.value}updateValueAndValidity(ne={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===fe||this.status===Et)&&this._runAsyncValidator(ne.emitEvent)),!1!==ne.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!ne.onlySelf&&this._parent.updateValueAndValidity(ne)}_updateTreeValidity(ne={emitEvent:!0}){this._forEachChild(P=>P._updateTreeValidity(ne)),this.updateValueAndValidity({onlySelf:!0,emitEvent:ne.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?ct:fe}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(ne){if(this.asyncValidator){this.status=Et,this._hasOwnPendingAsyncValidator=!0;const P=st(this.asyncValidator(this));this._asyncValidationSubscription=P.subscribe(Ae=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(Ae,{emitEvent:ne})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(ne,P={}){this.errors=ne,this._updateControlsErrors(!1!==P.emitEvent)}get(ne){let P=ne;return null==P||(Array.isArray(P)||(P=P.split(".")),0===P.length)?null:P.reduce((Ae,It)=>Ae&&Ae._find(It),this)}getError(ne,P){const Ae=P?this.get(P):this;return Ae&&Ae.errors?Ae.errors[ne]:null}hasError(ne,P){return!!this.getError(ne,P)}get root(){let ne=this;for(;ne._parent;)ne=ne._parent;return ne}_updateControlsErrors(ne){this.status=this._calculateStatus(),ne&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(ne)}_initObservables(){this.valueChanges=new i._w7,this.statusChanges=new i._w7}_calculateStatus(){return this._allControlsDisabled()?ct:this.errors?it:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Et)?Et:this._anyControlsHaveStatus(it)?it:fe}_anyControlsHaveStatus(ne){return this._anyControls(P=>P.status===ne)}_anyControlsDirty(){return this._anyControls(ne=>ne.dirty)}_anyControlsTouched(){return this._anyControls(ne=>ne.touched)}_updatePristine(ne={}){this.pristine=!this._anyControlsDirty(),this._parent&&!ne.onlySelf&&this._parent._updatePristine(ne)}_updateTouched(ne={}){this.touched=this._anyControlsTouched(),this._parent&&!ne.onlySelf&&this._parent._updateTouched(ne)}_registerOnCollectionChange(ne){this._onCollectionChange=ne}_setUpdateStrategy(ne){w(ne)&&null!=ne.updateOn&&(this._updateOn=ne.updateOn)}_parentMarkedDirty(ne){return!ne&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(ne){return null}_assignValidators(ne){this._rawValidators=Array.isArray(ne)?ne.slice():ne,this._composedValidatorFn=function V(Z){return Array.isArray(Z)?De(Z):Z||null}(this._rawValidators)}_assignAsyncValidators(ne){this._rawAsyncValidators=Array.isArray(ne)?ne.slice():ne,this._composedAsyncValidatorFn=function _(Z){return Array.isArray(Z)?Ve(Z):Z||null}(this._rawAsyncValidators)}}class At extends ze{constructor(ne,P,Ae){super(ri(P),Ce(Ae,P)),this.controls=ne,this._initObservables(),this._setUpdateStrategy(P),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(ne,P){return this.controls[ne]?this.controls[ne]:(this.controls[ne]=P,P.setParent(this),P._registerOnCollectionChange(this._onCollectionChange),P)}addControl(ne,P,Ae={}){this.registerControl(ne,P),this.updateValueAndValidity({emitEvent:Ae.emitEvent}),this._onCollectionChange()}removeControl(ne,P={}){this.controls[ne]&&this.controls[ne]._registerOnCollectionChange(()=>{}),delete this.controls[ne],this.updateValueAndValidity({emitEvent:P.emitEvent}),this._onCollectionChange()}setControl(ne,P,Ae={}){this.controls[ne]&&this.controls[ne]._registerOnCollectionChange(()=>{}),delete this.controls[ne],P&&this.registerControl(ne,P),this.updateValueAndValidity({emitEvent:Ae.emitEvent}),this._onCollectionChange()}contains(ne){return this.controls.hasOwnProperty(ne)&&this.controls[ne].enabled}setValue(ne,P={}){$(this,0,ne),Object.keys(ne).forEach(Ae=>{S(this,!0,Ae),this.controls[Ae].setValue(ne[Ae],{onlySelf:!0,emitEvent:P.emitEvent})}),this.updateValueAndValidity(P)}patchValue(ne,P={}){null!=ne&&(Object.keys(ne).forEach(Ae=>{const It=this.controls[Ae];It&&It.patchValue(ne[Ae],{onlySelf:!0,emitEvent:P.emitEvent})}),this.updateValueAndValidity(P))}reset(ne={},P={}){this._forEachChild((Ae,It)=>{Ae.reset(ne?ne[It]:null,{onlySelf:!0,emitEvent:P.emitEvent})}),this._updatePristine(P),this._updateTouched(P),this.updateValueAndValidity(P)}getRawValue(){return this._reduceChildren({},(ne,P,Ae)=>(ne[Ae]=P.getRawValue(),ne))}_syncPendingControls(){let ne=this._reduceChildren(!1,(P,Ae)=>!!Ae._syncPendingControls()||P);return ne&&this.updateValueAndValidity({onlySelf:!0}),ne}_forEachChild(ne){Object.keys(this.controls).forEach(P=>{const Ae=this.controls[P];Ae&&ne(Ae,P)})}_setUpControls(){this._forEachChild(ne=>{ne.setParent(this),ne._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(ne){for(const[P,Ae]of Object.entries(this.controls))if(this.contains(P)&&ne(Ae))return!0;return!1}_reduceValue(){return this._reduceChildren({},(P,Ae,It)=>((Ae.enabled||this.disabled)&&(P[It]=Ae.value),P))}_reduceChildren(ne,P){let Ae=ne;return this._forEachChild((It,Ri)=>{Ae=P(Ae,It,Ri)}),Ae}_allControlsDisabled(){for(const ne of Object.keys(this.controls))if(this.controls[ne].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(ne){return this.controls.hasOwnProperty(ne)?this.controls[ne]:null}}const yt=At;class Ft extends At{}const Ei=new i.UbH("CallSetDisabledState",{providedIn:"root",factory:()=>Vt}),Vt="always";function Ci(Z,ne){return[...ne.path,Z]}function We(Z,ne,P=Vt){yi(Z,ne),ne.valueAccessor.writeValue(Z.value),(Z.disabled||"always"===P)&&ne.valueAccessor.setDisabledState?.(Z.disabled),function Fi(Z,ne){ne.valueAccessor.registerOnChange(P=>{Z._pendingValue=P,Z._pendingChange=!0,Z._pendingDirty=!0,"change"===Z.updateOn&&an(Z,ne)})}(Z,ne),function Xn(Z,ne){const P=(Ae,It)=>{ne.valueAccessor.writeValue(Ae),It&&ne.viewToModelUpdate(Ae)};Z.registerOnChange(P),ne._registerOnDestroy(()=>{Z._unregisterOnChange(P)})}(Z,ne),function hn(Z,ne){ne.valueAccessor.registerOnTouched(()=>{Z._pendingTouched=!0,"blur"===Z.updateOn&&Z._pendingChange&&an(Z,ne),"submit"!==Z.updateOn&&Z.markAsTouched()})}(Z,ne),function si(Z,ne){if(ne.valueAccessor.setDisabledState){const P=Ae=>{ne.valueAccessor.setDisabledState(Ae)};Z.registerOnDisabledChange(P),ne._registerOnDestroy(()=>{Z._unregisterOnDisabledChange(P)})}}(Z,ne)}function nt(Z,ne,P=!0){const Ae=()=>{};ne.valueAccessor&&(ne.valueAccessor.registerOnChange(Ae),ne.valueAccessor.registerOnTouched(Ae)),Ti(Z,ne),Z&&(ne._invokeOnDestroyCallbacks(),Z._registerOnCollectionChange(()=>{}))}function Ot(Z,ne){Z.forEach(P=>{P.registerOnValidatorChange&&P.registerOnValidatorChange(ne)})}function yi(Z,ne){const P=ge(Z);null!==ne.validator?Z.setValidators(te(P,ne.validator)):"function"==typeof P&&Z.setValidators([P]);const Ae=xt(Z);null!==ne.asyncValidator?Z.setAsyncValidators(te(Ae,ne.asyncValidator)):"function"==typeof Ae&&Z.setAsyncValidators([Ae]);const It=()=>Z.updateValueAndValidity();Ot(ne._rawValidators,It),Ot(ne._rawAsyncValidators,It)}function Ti(Z,ne){let P=!1;if(null!==Z){if(null!==ne.validator){const It=ge(Z);if(Array.isArray(It)&&It.length>0){const Ri=It.filter(Ui=>Ui!==ne.validator);Ri.length!==It.length&&(P=!0,Z.setValidators(Ri))}}if(null!==ne.asyncValidator){const It=xt(Z);if(Array.isArray(It)&&It.length>0){const Ri=It.filter(Ui=>Ui!==ne.asyncValidator);Ri.length!==It.length&&(P=!0,Z.setAsyncValidators(Ri))}}}const Ae=()=>{};return Ot(ne._rawValidators,Ae),Ot(ne._rawAsyncValidators,Ae),P}function an(Z,ne){Z._pendingDirty&&Z.markAsDirty(),Z.setValue(Z._pendingValue,{emitModelToViewChange:!1}),ne.viewToModelUpdate(Z._pendingValue),Z._pendingChange=!1}function Je(Z,ne){yi(Z,ne)}function re(Z,ne){if(!Z.hasOwnProperty("model"))return!1;const P=Z.model;return!!P.isFirstChange()||!Object.is(ne,P.currentValue)}function Wt(Z,ne){Z._syncPendingControls(),ne.forEach(P=>{const Ae=P.control;"submit"===Ae.updateOn&&Ae._pendingChange&&(P.viewToModelUpdate(Ae._pendingValue),Ae._pendingChange=!1)})}function Zt(Z,ne){if(!ne)return null;let P,Ae,It;return Array.isArray(ne),ne.forEach(Ri=>{Ri.constructor===Ie?P=Ri:function mt(Z){return Object.getPrototypeOf(Z.constructor)===g}(Ri)?Ae=Ri:It=Ri}),It||Ae||P||null}const ot={provide:U,useExisting:(0,i.wd)(()=>k)},mi=Promise.resolve();let k=(()=>{class Z extends U{constructor(P,Ae,It){super(),this.callSetDisabledState=It,this.submitted=!1,this._directives=new Set,this.ngSubmit=new i._w7,this.form=new At({},De(P),Ve(Ae))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(P){mi.then(()=>{const Ae=this._findContainer(P.path);P.control=Ae.registerControl(P.name,P.control),We(P.control,P,this.callSetDisabledState),P.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(P)})}getControl(P){return this.form.get(P.path)}removeControl(P){mi.then(()=>{const Ae=this._findContainer(P.path);Ae&&Ae.removeControl(P.name),this._directives.delete(P)})}addFormGroup(P){mi.then(()=>{const Ae=this._findContainer(P.path),It=new At({});Je(It,P),Ae.registerControl(P.name,It),It.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(P){mi.then(()=>{const Ae=this._findContainer(P.path);Ae&&Ae.removeControl(P.name)})}getFormGroup(P){return this.form.get(P.path)}updateModel(P,Ae){mi.then(()=>{this.form.get(P.path).setValue(Ae)})}setValue(P){this.control.setValue(P)}onSubmit(P){return this.submitted=!0,Wt(this.form,this._directives),this.ngSubmit.emit(P),"dialog"===P?.target?.method}onReset(){this.resetForm()}resetForm(P=void 0){this.form.reset(P),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(P){return P.pop(),P.length?this.form.get(P):this.form}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(tt,10),i.GI1(gt,10),i.GI1(Ei,8))};static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(Ae,It){1&Ae&&i.qCj("submit",function(Ui){return It.onSubmit(Ui)})("reset",function(){return It.onReset()})},inputs:{options:[i.Wk5.None,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[i.M5G([ot]),i.eg9]})}return Z})();function se(Z,ne){const P=Z.indexOf(ne);P>-1&&Z.splice(P,1)}function K(Z){return"object"==typeof Z&&null!==Z&&2===Object.keys(Z).length&&"value"in Z&&"disabled"in Z}const Be=class extends ze{constructor(ne=null,P,Ae){super(ri(P),Ce(Ae,P)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(ne),this._setUpdateStrategy(P),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),w(P)&&(P.nonNullable||P.initialValueIsDefault)&&(this.defaultValue=K(ne)?ne.value:ne)}setValue(ne,P={}){this.value=this._pendingValue=ne,this._onChange.length&&!1!==P.emitModelToViewChange&&this._onChange.forEach(Ae=>Ae(this.value,!1!==P.emitViewToModelChange)),this.updateValueAndValidity(P)}patchValue(ne,P={}){this.setValue(ne,P)}reset(ne=this.defaultValue,P={}){this._applyFormState(ne),this.markAsPristine(P),this.markAsUntouched(P),this.setValue(this.value,P),this._pendingChange=!1}_updateValue(){}_anyControls(ne){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(ne){this._onChange.push(ne)}_unregisterOnChange(ne){se(this._onChange,ne)}registerOnDisabledChange(ne){this._onDisabledChange.push(ne)}_unregisterOnDisabledChange(ne){se(this._onDisabledChange,ne)}_forEachChild(ne){}_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(ne){K(ne)?(this.value=this._pendingValue=ne.value,ne.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=ne}},Yt=Be,Vn={provide:Fe,useExisting:(0,i.wd)(()=>Er)},Hr=Promise.resolve();let Er=(()=>{class Z extends Fe{constructor(P,Ae,It,Ri,Ui,dr){super(),this._changeDetectorRef=Ui,this.callSetDisabledState=dr,this.control=new Be,this._registered=!1,this.name="",this.update=new i._w7,this._parent=P,this._setValidators(Ae),this._setAsyncValidators(It),this.valueAccessor=Zt(0,Ri)}ngOnChanges(P){if(this._checkForErrors(),!this._registered||"name"in P){if(this._registered&&(this._checkName(),this.formDirective)){const Ae=P.name.previousValue;this.formDirective.removeControl({name:Ae,path:this._getPath(Ae)})}this._setUpControl()}"isDisabled"in P&&this._updateDisabled(P),re(P,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(P){this.viewModel=P,this.update.emit(P)}_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(){We(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(P){Hr.then(()=>{this.control.setValue(P,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(P){const Ae=P.isDisabled.currentValue,It=0!==Ae&&(0,i.cZD)(Ae);Hr.then(()=>{It&&!this.control.disabled?this.control.disable():!It&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(P){return this._parent?Ci(P,this._parent):[P]}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(U,9),i.GI1(tt,10),i.GI1(gt,10),i.GI1(b,10),i.GI1(i.kD9,8),i.GI1(Ei,8))};static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[i.Wk5.None,"disabled","isDisabled"],model:[i.Wk5.None,"ngModel","model"],options:[i.Wk5.None,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[i.M5G([Vn]),i.eg9,i.SYr]})}return Z})(),ra=(()=>{class Z{static#e=this.\u0275fac=function(Ae){return new(Ae||Z)};static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]})}return Z})();const ir={provide:b,useExisting:(0,i.wd)(()=>Sr),multi:!0};let Sr=(()=>{class Z extends g{writeValue(P){this.setProperty("value",P??"")}registerOnChange(P){this.onChange=Ae=>{P(""==Ae?null:parseFloat(Ae))}}static#e=this.\u0275fac=(()=>{let P;return function(It){return(P||(P=i.otF(Z)))(It||Z)}})();static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(Ae,It){1&Ae&&i.qCj("input",function(Ui){return It.onChange(Ui.target.value)})("blur",function(){return It.onTouched()})},features:[i.M5G([ir]),i.eg9]})}return Z})();const Ir=new i.UbH(""),Ar={provide:U,useExisting:(0,i.wd)(()=>or)};let or=(()=>{class Z extends U{constructor(P,Ae,It){super(),this.callSetDisabledState=It,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new i._w7,this._setValidators(P),this._setAsyncValidators(Ae)}ngOnChanges(P){this._checkFormPresent(),P.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(Ti(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(P){const Ae=this.form.get(P.path);return We(Ae,P,this.callSetDisabledState),Ae.updateValueAndValidity({emitEvent:!1}),this.directives.push(P),Ae}getControl(P){return this.form.get(P.path)}removeControl(P){nt(P.control||null,P,!1),function pi(Z,ne){const P=Z.indexOf(ne);P>-1&&Z.splice(P,1)}(this.directives,P)}addFormGroup(P){this._setUpFormContainer(P)}removeFormGroup(P){this._cleanUpFormContainer(P)}getFormGroup(P){return this.form.get(P.path)}addFormArray(P){this._setUpFormContainer(P)}removeFormArray(P){this._cleanUpFormContainer(P)}getFormArray(P){return this.form.get(P.path)}updateModel(P,Ae){this.form.get(P.path).setValue(Ae)}onSubmit(P){return this.submitted=!0,Wt(this.form,this.directives),this.ngSubmit.emit(P),"dialog"===P?.target?.method}onReset(){this.resetForm()}resetForm(P=void 0){this.form.reset(P),this.submitted=!1}_updateDomValue(){this.directives.forEach(P=>{const Ae=P.control,It=this.form.get(P.path);Ae!==It&&(nt(Ae||null,P),(Z=>Z instanceof Be)(It)&&(We(It,P,this.callSetDisabledState),P.control=It))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(P){const Ae=this.form.get(P.path);Je(Ae,P),Ae.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(P){if(this.form){const Ae=this.form.get(P.path);Ae&&function gi(Z,ne){return Ti(Z,ne)}(Ae,P)&&Ae.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){yi(this.form,this),this._oldForm&&Ti(this._oldForm,this)}_checkFormPresent(){}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(tt,10),i.GI1(gt,10),i.GI1(Ei,8))};static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["","formGroup",""]],hostBindings:function(Ae,It){1&Ae&&i.qCj("submit",function(Ui){return It.onSubmit(Ui)})("reset",function(){return It.onReset()})},inputs:{form:[i.Wk5.None,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[i.M5G([Ar]),i.eg9,i.SYr]})}return Z})();const Hn={provide:Fe,useExisting:(0,i.wd)(()=>nr)};let nr=(()=>{class Z extends Fe{set isDisabled(P){}static#e=this._ngModelWarningSentOnce=!1;constructor(P,Ae,It,Ri,Ui){super(),this._ngModelWarningConfig=Ui,this._added=!1,this.name=null,this.update=new i._w7,this._ngModelWarningSent=!1,this._parent=P,this._setValidators(Ae),this._setAsyncValidators(It),this.valueAccessor=Zt(0,Ri)}ngOnChanges(P){this._added||this._setUpControl(),re(P,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(P){this.viewModel=P,this.update.emit(P)}get path(){return Ci(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this._added=!0}static#t=this.\u0275fac=function(Ae){return new(Ae||Z)(i.GI1(U,13),i.GI1(tt,10),i.GI1(gt,10),i.GI1(b,10),i.GI1(Ir,8))};static#i=this.\u0275dir=i.Sc5({type:Z,selectors:[["","formControlName",""]],inputs:{name:[i.Wk5.None,"formControlName","name"],isDisabled:[i.Wk5.None,"disabled","isDisabled"],model:[i.Wk5.None,"ngModel","model"]},outputs:{update:"ngModelChange"},features:[i.M5G([Hn]),i.eg9,i.SYr]})}return Z})();let ln=(()=>{class Z{constructor(){this._validator=oe}ngOnChanges(P){if(this.inputName in P){const Ae=this.normalizeInput(P[this.inputName].currentValue);this._enabled=this.enabled(Ae),this._validator=this._enabled?this.createValidator(Ae):oe,this._onChange&&this._onChange()}}validate(P){return this._validator(P)}registerOnValidatorChange(P){this._onChange=P}enabled(P){return null!=P}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)};static#t=this.\u0275dir=i.Sc5({type:Z,features:[i.SYr]})}return Z})();const ya={provide:tt,useExisting:(0,i.wd)(()=>$n),multi:!0},oa={provide:tt,useExisting:(0,i.wd)(()=>cr),multi:!0};let $n=(()=>{class Z extends ln{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=i.cZD,this.createValidator=P=>Q}enabled(P){return P}static#e=this.\u0275fac=(()=>{let P;return function(It){return(P||(P=i.otF(Z)))(It||Z)}})();static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(Ae,It){2&Ae&&i.e48("required",It._enabled?"":null)},inputs:{required:"required"},features:[i.M5G([ya]),i.eg9]})}return Z})(),cr=(()=>{class Z extends $n{constructor(){super(...arguments),this.createValidator=P=>_e}static#e=this.\u0275fac=(()=>{let P;return function(It){return(P||(P=i.otF(Z)))(It||Z)}})();static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(Ae,It){2&Ae&&i.e48("required",It._enabled?"":null)},features:[i.M5G([oa]),i.eg9]})}return Z})();const Yn={provide:tt,useExisting:(0,i.wd)(()=>qr),multi:!0};let qr=(()=>{class Z extends ln{constructor(){super(...arguments),this.inputName="maxlength",this.normalizeInput=P=>function er(Z){return"number"==typeof Z?Z:parseInt(Z,10)}(P),this.createValidator=P=>Xe(P)}static#e=this.\u0275fac=(()=>{let P;return function(It){return(P||(P=i.otF(Z)))(It||Z)}})();static#t=this.\u0275dir=i.Sc5({type:Z,selectors:[["","maxlength","","formControlName",""],["","maxlength","","formControl",""],["","maxlength","","ngModel",""]],hostVars:1,hostBindings:function(Ae,It){2&Ae&&i.e48("maxlength",It._enabled?It.maxlength:null)},inputs:{maxlength:"maxlength"},features:[i.M5G([Yn]),i.eg9]})}return Z})(),ua=(()=>{class Z{static#e=this.\u0275fac=function(Ae){return new(Ae||Z)};static#t=this.\u0275mod=i.a4G({type:Z});static#i=this.\u0275inj=i.s3X({})}return Z})();class wr extends ze{constructor(ne,P,Ae){super(ri(P),Ce(Ae,P)),this.controls=ne,this._initObservables(),this._setUpdateStrategy(P),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(ne){return this.controls[this._adjustIndex(ne)]}push(ne,P={}){this.controls.push(ne),this._registerControl(ne),this.updateValueAndValidity({emitEvent:P.emitEvent}),this._onCollectionChange()}insert(ne,P,Ae={}){this.controls.splice(ne,0,P),this._registerControl(P),this.updateValueAndValidity({emitEvent:Ae.emitEvent})}removeAt(ne,P={}){let Ae=this._adjustIndex(ne);Ae<0&&(Ae=0),this.controls[Ae]&&this.controls[Ae]._registerOnCollectionChange(()=>{}),this.controls.splice(Ae,1),this.updateValueAndValidity({emitEvent:P.emitEvent})}setControl(ne,P,Ae={}){let It=this._adjustIndex(ne);It<0&&(It=0),this.controls[It]&&this.controls[It]._registerOnCollectionChange(()=>{}),this.controls.splice(It,1),P&&(this.controls.splice(It,0,P),this._registerControl(P)),this.updateValueAndValidity({emitEvent:Ae.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(ne,P={}){$(this,0,ne),ne.forEach((Ae,It)=>{S(this,!1,It),this.at(It).setValue(Ae,{onlySelf:!0,emitEvent:P.emitEvent})}),this.updateValueAndValidity(P)}patchValue(ne,P={}){null!=ne&&(ne.forEach((Ae,It)=>{this.at(It)&&this.at(It).patchValue(Ae,{onlySelf:!0,emitEvent:P.emitEvent})}),this.updateValueAndValidity(P))}reset(ne=[],P={}){this._forEachChild((Ae,It)=>{Ae.reset(ne[It],{onlySelf:!0,emitEvent:P.emitEvent})}),this._updatePristine(P),this._updateTouched(P),this.updateValueAndValidity(P)}getRawValue(){return this.controls.map(ne=>ne.getRawValue())}clear(ne={}){this.controls.length<1||(this._forEachChild(P=>P._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:ne.emitEvent}))}_adjustIndex(ne){return ne<0?ne+this.length:ne}_syncPendingControls(){let ne=this.controls.reduce((P,Ae)=>!!Ae._syncPendingControls()||P,!1);return ne&&this.updateValueAndValidity({onlySelf:!0}),ne}_forEachChild(ne){this.controls.forEach((P,Ae)=>{ne(P,Ae)})}_updateValue(){this.value=this.controls.filter(ne=>ne.enabled||this.disabled).map(ne=>ne.value)}_anyControls(ne){return this.controls.some(P=>P.enabled&&ne(P))}_setUpControls(){this._forEachChild(ne=>this._registerControl(ne))}_allControlsDisabled(){for(const ne of this.controls)if(ne.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(ne){ne.setParent(this),ne._registerOnCollectionChange(this._onCollectionChange)}_find(ne){return this.at(ne)??null}}function Rr(Z){return!!Z&&(void 0!==Z.asyncValidators||void 0!==Z.validators||void 0!==Z.updateOn)}let Ya=(()=>{class Z{constructor(){this.useNonNullable=!1}get nonNullable(){const P=new Z;return P.useNonNullable=!0,P}group(P,Ae=null){const It=this._reduceControls(P);let Ri={};return Rr(Ae)?Ri=Ae:null!==Ae&&(Ri.validators=Ae.validator,Ri.asyncValidators=Ae.asyncValidator),new At(It,Ri)}record(P,Ae=null){const It=this._reduceControls(P);return new Ft(It,Ae)}control(P,Ae,It){let Ri={};return this.useNonNullable?(Rr(Ae)?Ri=Ae:(Ri.validators=Ae,Ri.asyncValidators=It),new Be(P,{...Ri,nonNullable:!0})):new Be(P,Ae,It)}array(P,Ae,It){const Ri=P.map(Ui=>this._createControl(Ui));return new wr(Ri,Ae,It)}_reduceControls(P){const Ae={};return Object.keys(P).forEach(It=>{Ae[It]=this._createControl(P[It])}),Ae}_createControl(P){return P instanceof Be||P instanceof ze?P:Array.isArray(P)?this.control(P[0],P.length>1?P[1]:null,P.length>2?P[2]:null):this.control(P)}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)};static#t=this.\u0275prov=i.wxM({token:Z,factory:Z.\u0275fac,providedIn:"root"})}return Z})(),ma=(()=>{class Z{static withConfig(P){return{ngModule:Z,providers:[{provide:Ei,useValue:P.callSetDisabledState??Vt}]}}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)};static#t=this.\u0275mod=i.a4G({type:Z});static#i=this.\u0275inj=i.s3X({imports:[ua]})}return Z})(),jr=(()=>{class Z{static withConfig(P){return{ngModule:Z,providers:[{provide:Ir,useValue:P.warnOnNgModelWithFormControl??"always"},{provide:Ei,useValue:P.callSetDisabledState??Vt}]}}static#e=this.\u0275fac=function(Ae){return new(Ae||Z)};static#t=this.\u0275mod=i.a4G({type:Z});static#i=this.\u0275inj=i.s3X({imports:[ua]})}return Z})()},8156:(lt,me,d)=>{"use strict";d.d(me,{S:()=>R,g:()=>Y});var i=d(2116),s=d(3576),a=d(4723),h=d(7712),l=d(1368);let f=0;const g=(0,s.YB)(class{}),b="mat-badge-content";let R=(()=>{class J extends g{get color(){return this._color}set color(ae){this._setColor(ae),this._color=ae}get overlap(){return this._overlap}set overlap(ae){this._overlap=(0,h.W6)(ae)}get content(){return this._content}set content(ae){this._updateRenderedContent(ae)}get description(){return this._description}set description(ae){this._updateDescription(ae)}get hidden(){return this._hidden}set hidden(ae){this._hidden=(0,h.W6)(ae)}constructor(ae,Ie,Ee,Ge,tt){super(),this._ngZone=ae,this._elementRef=Ie,this._ariaDescriber=Ee,this._renderer=Ge,this._animationMode=tt,this._color="primary",this._overlap=!0,this.position="above after",this.size="medium",this._id=f++,this._isInitialized=!1,this._interactivityChecker=(0,i.uUt)(a.OE),this._document=(0,i.uUt)(l.Ud)}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&(this._renderer.destroyNode(this._badgeElement),this._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const ae=this._renderer.createElement("span"),Ie="mat-badge-active";return ae.setAttribute("id",`mat-badge-content-${this._id}`),ae.setAttribute("aria-hidden","true"),ae.classList.add(b),"NoopAnimations"===this._animationMode&&ae.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(ae),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{ae.classList.add(Ie)})}):ae.classList.add(Ie),ae}_updateRenderedContent(ae){const Ie=`${ae??""}`.trim();this._isInitialized&&Ie&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=Ie),this._content=Ie}_updateDescription(ae){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!ae||this._isHostInteractive())&&this._removeInlineDescription(),this._description=ae,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,ae):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(ae){const Ie=this._elementRef.nativeElement.classList;Ie.remove(`mat-badge-${this._color}`),ae&&Ie.add(`mat-badge-${ae}`)}_clearExistingBadges(){const ae=this._elementRef.nativeElement.querySelectorAll(`:scope > .${b}`);for(const Ie of Array.from(ae))Ie!==this._badgeElement&&Ie.remove()}static#e=this.\u0275fac=function(Ie){return new(Ie||J)(i.GI1(i.WW2),i.GI1(i.GMv),i.GI1(a.o9),i.GI1(i.q87),i.GI1(i.qwP,8))};static#t=this.\u0275dir=i.Sc5({type:J,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(Ie,Ee){2&Ie&&i.eAK("mat-badge-overlap",Ee.overlap)("mat-badge-above",Ee.isAbove())("mat-badge-below",!Ee.isAbove())("mat-badge-before",!Ee.isAfter())("mat-badge-after",Ee.isAfter())("mat-badge-small","small"===Ee.size)("mat-badge-medium","medium"===Ee.size)("mat-badge-large","large"===Ee.size)("mat-badge-hidden",Ee.hidden||!Ee.content)("mat-badge-disabled",Ee.disabled)},inputs:{disabled:[i.Wk5.None,"matBadgeDisabled","disabled"],color:[i.Wk5.None,"matBadgeColor","color"],overlap:[i.Wk5.None,"matBadgeOverlap","overlap"],position:[i.Wk5.None,"matBadgePosition","position"],content:[i.Wk5.None,"matBadge","content"],description:[i.Wk5.None,"matBadgeDescription","description"],size:[i.Wk5.None,"matBadgeSize","size"],hidden:[i.Wk5.None,"matBadgeHidden","hidden"]},features:[i.eg9]})}return J})(),Y=(()=>{class J{static#e=this.\u0275fac=function(Ie){return new(Ie||J)};static#t=this.\u0275mod=i.a4G({type:J});static#i=this.\u0275inj=i.s3X({imports:[a.Ux,s.AN,s.AN]})}return J})()},7816:(lt,me,d)=>{"use strict";d.d(me,{Gw:()=>ye,oJ:()=>De,um:()=>vi});var i=d(5792),s=d(2116),a=d(4723),h=d(7712),l=d(3576);const f=["mat-button",""],g=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],b=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],Ie=["mat-icon-button",""],Ee=["*"],Bt=[{selector:"mat-button",mdcClasses:["mdc-button","mat-mdc-button"]},{selector:"mat-flat-button",mdcClasses:["mdc-button","mdc-button--unelevated","mat-mdc-unelevated-button"]},{selector:"mat-raised-button",mdcClasses:["mdc-button","mdc-button--raised","mat-mdc-raised-button"]},{selector:"mat-stroked-button",mdcClasses:["mdc-button","mdc-button--outlined","mat-mdc-outlined-button"]},{selector:"mat-fab",mdcClasses:["mdc-fab","mat-mdc-fab"]},{selector:"mat-mini-fab",mdcClasses:["mdc-fab","mdc-fab--mini","mat-mdc-mini-fab"]},{selector:"mat-icon-button",mdcClasses:["mdc-icon-button","mat-mdc-icon-button"]}],kt=(0,l.i)((0,l.YB)((0,l.bc)(class{constructor(Le){this._elementRef=Le}})));let Ye=(()=>{class Le extends kt{get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(te){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,te)}get disableRipple(){return this._disableRipple}set disableRipple(te){this._disableRipple=(0,h.W6)(te),this._updateRippleDisabled()}get disabled(){return this._disabled}set disabled(te){this._disabled=(0,h.W6)(te),this._updateRippleDisabled()}constructor(te,ge,xt,Ne){super(te),this._platform=ge,this._ngZone=xt,this._animationMode=Ne,this._focusMonitor=(0,s.uUt)(a.Kk),this._rippleLoader=(0,s.uUt)(l.Ii),this._isFab=!1,this._disableRipple=!1,this._disabled=!1,this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-button-ripple"});const be=te.nativeElement.classList;for(const j of Bt)this._hasHostAttributes(j.selector)&&j.mdcClasses.forEach(we=>{be.add(we)})}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(te="program",ge){te?this._focusMonitor.focusVia(this._elementRef.nativeElement,te,ge):this._elementRef.nativeElement.focus(ge)}_hasHostAttributes(...te){return te.some(ge=>this._elementRef.nativeElement.hasAttribute(ge))}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}static#e=this.\u0275fac=function(ge){s.KEo()};static#t=this.\u0275dir=s.Sc5({type:Le,features:[s.eg9]})}return Le})(),ye=(()=>{class Le extends Ye{constructor(te,ge,xt,Ne){super(te,ge,xt,Ne)}static#e=this.\u0275fac=function(ge){return new(ge||Le)(s.GI1(s.GMv),s.GI1(i.WU),s.GI1(s.WW2),s.GI1(s.qwP,8))};static#t=this.\u0275cmp=s.In1({type:Le,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""]],hostVars:7,hostBindings:function(ge,xt){2&ge&&(s.e48("disabled",xt.disabled||null),s.eAK("_mat-animation-noopable","NoopAnimations"===xt._animationMode)("mat-unthemed",!xt.color)("mat-mdc-button-base",!0))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color"},exportAs:["matButton"],features:[s.eg9],attrs:f,ngContentSelectors:b,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(ge,xt){1&ge&&(s.kPM(g),s.wR5(0,"span",0),s._Xx(1),s.I0R(2,"span",1),s._Xx(3,1),s.C$Y(),s._Xx(4,2),s.wR5(5,"span",2)(6,"span",3)),2&ge&&s.eAK("mdc-button__ripple",!xt._isFab)("mdc-fab__ripple",xt._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button{position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;user-select:none;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0)}.mdc-button .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top}[dir=rtl] .mdc-button .mdc-button__icon,.mdc-button .mdc-button__icon[dir=rtl]{margin-left:8px;margin-right:0}.mdc-button .mdc-button__progress-indicator{font-size:0;position:absolute;transform:translate(-50%, -50%);top:50%;left:50%;line-height:initial}.mdc-button .mdc-button__label{position:relative}.mdc-button .mdc-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(\n 100% + 4px\n );width:calc(\n 100% + 4px\n );display:none}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring{border-color:CanvasText}}.mdc-button .mdc-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring::after{border-color:CanvasText}}@media screen and (forced-colors: active){.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__focus-ring,.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__focus-ring{display:block}}.mdc-button .mdc-button__touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-button__label+.mdc-button__icon{margin-left:8px;margin-right:0}[dir=rtl] .mdc-button__label+.mdc-button__icon,.mdc-button__label+.mdc-button__icon[dir=rtl]{margin-left:0;margin-right:8px}svg.mdc-button__icon{fill:currentColor}.mdc-button--touch{margin-top:6px;margin-bottom:6px}.mdc-button{padding:0 8px 0 8px}.mdc-button--unelevated{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--unelevated.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--unelevated.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--raised{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--raised.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--raised.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--outlined{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button--outlined .mdc-button__ripple{border-style:solid;border-color:rgba(0,0,0,0)}.mat-mdc-button{height:var(--mdc-text-button-container-height, 36px);border-radius:var(--mdc-text-button-container-shape, var(--mdc-shape-small, 4px))}.mat-mdc-button:not(:disabled){color:var(--mdc-text-button-label-text-color, inherit)}.mat-mdc-button:disabled{color:var(--mdc-text-button-disabled-label-text-color, rgba(0, 0, 0, 0.38))}.mat-mdc-button .mdc-button__ripple{border-radius:var(--mdc-text-button-container-shape, var(--mdc-shape-small, 4px))}.mat-mdc-unelevated-button{height:var(--mdc-filled-button-container-height, 36px);border-radius:var(--mdc-filled-button-container-shape, var(--mdc-shape-small, 4px))}.mat-mdc-unelevated-button:not(:disabled){background-color:var(--mdc-filled-button-container-color, transparent)}.mat-mdc-unelevated-button:disabled{background-color:var(--mdc-filled-button-disabled-container-color, rgba(0, 0, 0, 0.12))}.mat-mdc-unelevated-button:not(:disabled){color:var(--mdc-filled-button-label-text-color, inherit)}.mat-mdc-unelevated-button:disabled{color:var(--mdc-filled-button-disabled-label-text-color, rgba(0, 0, 0, 0.38))}.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mdc-filled-button-container-shape, var(--mdc-shape-small, 4px))}.mat-mdc-raised-button{height:var(--mdc-protected-button-container-height, 36px);border-radius:var(--mdc-protected-button-container-shape, var(--mdc-shape-small, 4px));box-shadow:var(--mdc-protected-button-container-elevation, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-raised-button:not(:disabled){background-color:var(--mdc-protected-button-container-color, transparent)}.mat-mdc-raised-button:disabled{background-color:var(--mdc-protected-button-disabled-container-color, rgba(0, 0, 0, 0.12))}.mat-mdc-raised-button:not(:disabled){color:var(--mdc-protected-button-label-text-color, inherit)}.mat-mdc-raised-button:disabled{color:var(--mdc-protected-button-disabled-label-text-color, rgba(0, 0, 0, 0.38))}.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mdc-protected-button-container-shape, var(--mdc-shape-small, 4px))}.mat-mdc-raised-button.mdc-ripple-upgraded--background-focused,.mat-mdc-raised-button:not(.mdc-ripple-upgraded):focus{box-shadow:var(--mdc-protected-button-focus-container-elevation, 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-raised-button:hover{box-shadow:var(--mdc-protected-button-hover-container-elevation, 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-raised-button:not(:disabled):active{box-shadow:var(--mdc-protected-button-pressed-container-elevation, 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12))}.mat-mdc-raised-button:disabled{box-shadow:var(--mdc-protected-button-disabled-container-elevation, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-outlined-button{height:var(--mdc-outlined-button-container-height, 36px);border-radius:var(--mdc-outlined-button-container-shape, var(--mdc-shape-small, 4px));padding:0 15px 0 15px;border-width:var(--mdc-outlined-button-outline-width, 1px)}.mat-mdc-outlined-button:not(:disabled){color:var(--mdc-outlined-button-label-text-color, inherit)}.mat-mdc-outlined-button:disabled{color:var(--mdc-outlined-button-disabled-label-text-color, rgba(0, 0, 0, 0.38))}.mat-mdc-outlined-button .mdc-button__ripple{border-radius:var(--mdc-outlined-button-container-shape, var(--mdc-shape-small, 4px))}.mat-mdc-outlined-button:not(:disabled){border-color:var(--mdc-outlined-button-outline-color, rgba(0, 0, 0, 0.12))}.mat-mdc-outlined-button:disabled{border-color:var(--mdc-outlined-button-disabled-outline-color, rgba(0, 0, 0, 0.12))}.mat-mdc-outlined-button.mdc-button--icon-trailing{padding:0 11px 0 15px}.mat-mdc-outlined-button.mdc-button--icon-leading{padding:0 15px 0 11px}.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:var(--mdc-outlined-button-outline-width, 1px)}.mat-mdc-outlined-button .mdc-button__touch{left:calc(-1 * var(--mdc-outlined-button-outline-width, 1px));width:calc(100% + 2 * var(--mdc-outlined-button-outline-width, 1px))}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0;background-color:var(--mat-mdc-button-persistent-ripple-color)}.mat-mdc-button .mat-ripple-element,.mat-mdc-unelevated-button .mat-ripple-element,.mat-mdc-raised-button .mat-ripple-element,.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-mdc-button-ripple-color)}.mat-mdc-button .mdc-button__label,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-outlined-button .mdc-button__label{z-index:1}.mat-mdc-button .mat-mdc-focus-indicator,.mat-mdc-unelevated-button .mat-mdc-focus-indicator,.mat-mdc-raised-button .mat-mdc-focus-indicator,.mat-mdc-outlined-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-unelevated-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-raised-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-outlined-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-button[disabled],.mat-mdc-unelevated-button[disabled],.mat-mdc-raised-button[disabled],.mat-mdc-outlined-button[disabled]{cursor:default;pointer-events:none}.mat-mdc-button .mat-mdc-button-touch-target,.mat-mdc-unelevated-button .mat-mdc-button-touch-target,.mat-mdc-raised-button .mat-mdc-button-touch-target,.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}[dir=rtl] .mat-mdc-button>.mat-icon,.mat-mdc-button>.mat-icon[dir=rtl]{margin-left:8px;margin-right:0}.mat-mdc-button .mdc-button__label+.mat-icon{margin-left:8px;margin-right:0}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon,.mat-mdc-button .mdc-button__label+.mat-icon[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem;margin-left:-4px;margin-right:8px}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon,[dir=rtl] .mat-mdc-raised-button>.mat-icon,[dir=rtl] .mat-mdc-outlined-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon[dir=rtl],.mat-mdc-raised-button>.mat-icon[dir=rtl],.mat-mdc-outlined-button>.mat-icon[dir=rtl]{margin-left:8px;margin-right:0}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon,[dir=rtl] .mat-mdc-raised-button>.mat-icon,[dir=rtl] .mat-mdc-outlined-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon[dir=rtl],.mat-mdc-raised-button>.mat-icon[dir=rtl],.mat-mdc-outlined-button>.mat-icon[dir=rtl]{margin-left:8px;margin-right:-4px}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon,.mat-mdc-raised-button .mdc-button__label+.mat-icon,.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-left:8px;margin-right:-4px}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon,.mat-mdc-unelevated-button .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-raised-button .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-outlined-button .mdc-button__label+.mat-icon[dir=rtl]{margin-left:-4px;margin-right:8px}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:-1px}.mat-mdc-unelevated-button .mat-mdc-focus-indicator::before,.mat-mdc-raised-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px) * -1)}.mat-mdc-outlined-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 3px) * -1)}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return Le})(),vi=(()=>{class Le extends Ye{constructor(te,ge,xt,Ne){super(te,ge,xt,Ne),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static#e=this.\u0275fac=function(ge){return new(ge||Le)(s.GI1(s.GMv),s.GI1(i.WU),s.GI1(s.WW2),s.GI1(s.qwP,8))};static#t=this.\u0275cmp=s.In1({type:Le,selectors:[["button","mat-icon-button",""]],hostVars:7,hostBindings:function(ge,xt){2&ge&&(s.e48("disabled",xt.disabled||null),s.eAK("_mat-animation-noopable","NoopAnimations"===xt._animationMode)("mat-unthemed",!xt.color)("mat-mdc-button-base",!0))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color"},exportAs:["matButton"],features:[s.eg9],attrs:Ie,ngContentSelectors:Ee,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(ge,xt){1&ge&&(s.kPM(),s.wR5(0,"span",0),s._Xx(1),s.wR5(2,"span",1)(3,"span",2))},styles:['.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}@media screen and (forced-colors: active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block}}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button[hidden]{display:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;display:none}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring{border-color:CanvasText}}.mdc-icon-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.mat-mdc-icon-button{height:var(--mdc-icon-button-state-layer-size);width:var(--mdc-icon-button-state-layer-size);color:var(--mdc-icon-button-icon-color);--mdc-icon-button-state-layer-size:48px;--mdc-icon-button-icon-size:24px;--mdc-icon-button-disabled-icon-color:black;--mdc-icon-button-disabled-icon-opacity:0.38}.mat-mdc-icon-button .mdc-button__icon{font-size:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button svg,.mat-mdc-icon-button img{width:var(--mdc-icon-button-icon-size);height:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button:disabled{opacity:var(--mdc-icon-button-disabled-icon-opacity)}.mat-mdc-icon-button:disabled{color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button{padding:12px;font-size:var(--mdc-icon-button-icon-size);border-radius:50%;flex-shrink:0;text-align:center;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button svg{vertical-align:baseline}.mat-mdc-icon-button[disabled]{cursor:default;pointer-events:none;opacity:1}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0;background-color:var(--mat-mdc-button-persistent-ripple-color)}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-mdc-button-ripple-color)}.mat-mdc-icon-button .mdc-button__label{z-index:1}.mat-mdc-icon-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-icon-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:50%}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return Le})(),De=(()=>{class Le{static#e=this.\u0275fac=function(ge){return new(ge||Le)};static#t=this.\u0275mod=s.a4G({type:Le});static#i=this.\u0275inj=s.s3X({imports:[l.AN,l.KE,l.AN]})}return Le})()},2080:(lt,me,d)=>{"use strict";d.d(me,{NR:()=>ye,SM:()=>Y,Uc:()=>Ge,W0:()=>Ee,WK:()=>ae,gp:()=>J,uK:()=>Ie});var i=d(2116),s=d(1368),a=d(3576);const h=["*"],g=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],b=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],R=new i.UbH("MAT_CARD_CONFIG");let Y=(()=>{class Re{constructor($e){this.appearance=$e?.appearance||"raised"}static#e=this.\u0275fac=function(oe){return new(oe||Re)(i.GI1(R,8))};static#t=this.\u0275cmp=i.In1({type:Re,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:4,hostBindings:function(oe,ut){2&oe&&i.eAK("mat-mdc-card-outlined","outlined"===ut.appearance)("mdc-card--outlined","outlined"===ut.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],ngContentSelectors:h,decls:1,vars:0,template:function(oe,ut){1&oe&&(i.kPM(),i._Xx(0))},styles:['.mdc-card{display:flex;flex-direction:column;box-sizing:border-box}.mdc-card::after{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none;pointer-events:none}@media screen and (forced-colors: active){.mdc-card::after{border-color:CanvasText}}.mdc-card--outlined::after{border:none}.mdc-card__content{border-radius:inherit;height:100%}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__media--square::before{margin-top:100%}.mdc-card__media--16-9::before{margin-top:56.25%}.mdc-card__media-content{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box}.mdc-card__primary-action{display:flex;flex-direction:column;box-sizing:border-box;position:relative;outline:none;color:inherit;text-decoration:none;cursor:pointer;overflow:hidden}.mdc-card__primary-action:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__primary-action:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mdc-card__actions--full-bleed{padding:0}.mdc-card__action-buttons,.mdc-card__action-icons{display:flex;flex-direction:row;align-items:center;box-sizing:border-box}.mdc-card__action-icons{color:rgba(0, 0, 0, 0.6);flex-grow:1;justify-content:flex-end}.mdc-card__action-buttons+.mdc-card__action-icons{margin-left:16px;margin-right:0}[dir=rtl] .mdc-card__action-buttons+.mdc-card__action-icons,.mdc-card__action-buttons+.mdc-card__action-icons[dir=rtl]{margin-left:0;margin-right:16px}.mdc-card__action{display:inline-flex;flex-direction:row;align-items:center;box-sizing:border-box;justify-content:center;cursor:pointer;user-select:none}.mdc-card__action:focus{outline:none}.mdc-card__action--button{margin-left:0;margin-right:8px;padding:0 8px}[dir=rtl] .mdc-card__action--button,.mdc-card__action--button[dir=rtl]{margin-left:8px;margin-right:0}.mdc-card__action--button:last-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-card__action--button:last-child,.mdc-card__action--button:last-child[dir=rtl]{margin-left:0;margin-right:0}.mdc-card__actions--full-bleed .mdc-card__action--button{justify-content:space-between;width:100%;height:auto;max-height:none;margin:0;padding:8px 16px;text-align:left}[dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button,.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl]{text-align:right}.mdc-card__action--icon{margin:-6px 0;padding:12px}.mdc-card__action--icon:not(:disabled){color:rgba(0, 0, 0, 0.6)}.mat-mdc-card{border-radius:var(--mdc-elevated-card-container-shape);background-color:var(--mdc-elevated-card-container-color);border-width:0;border-style:solid;border-color:var(--mdc-elevated-card-container-color);box-shadow:var(--mdc-elevated-card-container-elevation);--mdc-elevated-card-container-shape:4px;--mdc-outlined-card-container-shape:4px;--mdc-outlined-card-outline-width:1px}.mat-mdc-card .mdc-card::after{border-radius:var(--mdc-elevated-card-container-shape)}.mat-mdc-card-outlined{border-width:var(--mdc-outlined-card-outline-width);border-style:solid;border-color:var(--mdc-outlined-card-outline-color);border-radius:var(--mdc-outlined-card-container-shape);background-color:var(--mdc-outlined-card-container-color);box-shadow:var(--mdc-outlined-card-container-elevation)}.mat-mdc-card-outlined .mdc-card::after{border-radius:var(--mdc-outlined-card-container-shape)}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font);line-height:var(--mat-card-title-text-line-height);font-size:var(--mat-card-title-text-size);letter-spacing:var(--mat-card-title-text-tracking);font-weight:var(--mat-card-title-text-weight)}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color);font-family:var(--mat-card-subtitle-text-font);line-height:var(--mat-card-subtitle-text-line-height);font-size:var(--mat-card-subtitle-text-size);letter-spacing:var(--mat-card-subtitle-text-tracking);font-weight:var(--mat-card-subtitle-text-weight)}.mat-mdc-card{position:relative}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}'],encapsulation:2,changeDetection:0})}return Re})(),J=(()=>{class Re{static#e=this.\u0275fac=function(oe){return new(oe||Re)};static#t=this.\u0275dir=i.Sc5({type:Re,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"]})}return Re})(),ae=(()=>{class Re{static#e=this.\u0275fac=function(oe){return new(oe||Re)};static#t=this.\u0275dir=i.Sc5({type:Re,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"]})}return Re})(),Ie=(()=>{class Re{static#e=this.\u0275fac=function(oe){return new(oe||Re)};static#t=this.\u0275dir=i.Sc5({type:Re,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"]})}return Re})(),Ee=(()=>{class Re{constructor(){this.align="start"}static#e=this.\u0275fac=function(oe){return new(oe||Re)};static#t=this.\u0275dir=i.Sc5({type:Re,selectors:[["mat-card-actions"]],hostAttrs:[1,"mat-mdc-card-actions","mdc-card__actions"],hostVars:2,hostBindings:function(oe,ut){2&oe&&i.eAK("mat-mdc-card-actions-align-end","end"===ut.align)},inputs:{align:"align"},exportAs:["matCardActions"]})}return Re})(),Ge=(()=>{class Re{static#e=this.\u0275fac=function(oe){return new(oe||Re)};static#t=this.\u0275cmp=i.In1({type:Re,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],ngContentSelectors:b,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(oe,ut){1&oe&&(i.kPM(g),i._Xx(0),i.I0R(1,"div",0),i._Xx(2,1),i.C$Y(),i._Xx(3,2))},encapsulation:2,changeDetection:0})}return Re})(),ye=(()=>{class Re{static#e=this.\u0275fac=function(oe){return new(oe||Re)};static#t=this.\u0275mod=i.a4G({type:Re});static#i=this.\u0275inj=i.s3X({imports:[a.AN,s.MD,a.AN]})}return Re})()},3840:(lt,me,d)=>{"use strict";d.d(me,{Vn:()=>kt,WK:()=>Ge});var i=d(2116),s=d(6504),a=d(3576),h=d(7712);const l=["input"],f=["label"],g=["*"],b=new i.UbH("mat-checkbox-default-options",{providedIn:"root",factory:R});function R(){return{color:"accent",clickAction:"check-indeterminate"}}const Y={provide:s.Y6,useExisting:(0,i.wd)(()=>Ge),multi:!0};class J{}let ie=0;const ae=R(),Ie=(0,a.S)((0,a.i)((0,a.bc)((0,a.YB)(class{constructor(Ye){this._elementRef=Ye}}))));let Ee=(()=>{class Ye extends Ie{get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(Q){this._required=(0,h.W6)(Q)}constructor(Q,_e,ye,Re,Xe,$e,oe){super(_e),this._changeDetectorRef=ye,this._ngZone=Re,this._animationMode=$e,this._options=oe,this.ariaLabel="",this.ariaLabelledby=null,this.labelPosition="after",this.name=null,this.change=new i._w7,this.indeterminateChange=new i._w7,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||ae,this.color=this.defaultColor=this._options.color||ae.color,this.tabIndex=parseInt(Xe)||0,this.id=this._uniqueId=`${Q}${++ie}`}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(Q){const _e=(0,h.W6)(Q);_e!=this.checked&&(this._checked=_e,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(Q){const _e=(0,h.W6)(Q);_e!==this.disabled&&(this._disabled=_e,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(Q){const _e=Q!=this._indeterminate;this._indeterminate=(0,h.W6)(Q),_e&&(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(Q){this.checked=!!Q}registerOnChange(Q){this._controlValueAccessorChangeFn=Q}registerOnTouched(Q){this._onTouched=Q}setDisabledState(Q){this.disabled=Q}_transitionCheckState(Q){let _e=this._currentCheckState,ye=this._getAnimationTargetElement();if(_e!==Q&&ye&&(this._currentAnimationClass&&ye.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(_e,Q),this._currentCheckState=Q,this._currentAnimationClass.length>0)){ye.classList.add(this._currentAnimationClass);const Re=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{ye.classList.remove(Re)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const Q=this._options?.clickAction;this.disabled||"noop"===Q?!this.disabled&&"noop"===Q&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==Q&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}_onInteractionEvent(Q){Q.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(Q,_e){if("NoopAnimations"===this._animationMode)return"";switch(Q){case 0:if(1===_e)return this._animationClasses.uncheckedToChecked;if(3==_e)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case 2:return 1===_e?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case 1:return 2===_e?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case 3:return 1===_e?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(Q){const _e=this._inputElement;_e&&(_e.nativeElement.indeterminate=Q)}static#e=this.\u0275fac=function(_e){i.KEo()};static#t=this.\u0275dir=i.Sc5({type:Ye,viewQuery:function(_e,ye){if(1&_e&&(i.CC$(l,5),i.CC$(f,5),i.CC$(a.UZ,5)),2&_e){let Re;i.wto(Re=i.Gqi())&&(ye._inputElement=Re.first),i.wto(Re=i.Gqi())&&(ye._labelElement=Re.first),i.wto(Re=i.Gqi())&&(ye.ripple=Re.first)}},inputs:{ariaLabel:[i.Wk5.None,"aria-label","ariaLabel"],ariaLabelledby:[i.Wk5.None,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[i.Wk5.None,"aria-describedby","ariaDescribedby"],id:"id",required:"required",labelPosition:"labelPosition",name:"name",value:"value",checked:"checked",disabled:"disabled",indeterminate:"indeterminate"},outputs:{change:"change",indeterminateChange:"indeterminateChange"},features:[i.eg9]})}return Ye})(),Ge=(()=>{class Ye extends Ee{constructor(Q,_e,ye,Re,Xe,$e){super("mat-mdc-checkbox-",Q,_e,ye,Re,Xe,$e),this._animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"}}focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(Q){const _e=new J;return _e.source=this,_e.checked=Q,_e}_getAnimationTargetElement(){return this._inputElement?.nativeElement}_onInputClick(){super._handleInputClick()}_onTouchTargetClick(){super._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(Q){Q.target&&this._labelElement.nativeElement.contains(Q.target)&&Q.stopPropagation()}static#e=this.\u0275fac=function(_e){return new(_e||Ye)(i.GI1(i.GMv),i.GI1(i.kD9),i.GI1(i.WW2),i.gJ8("tabindex"),i.GI1(i.qwP,8),i.GI1(b,8))};static#t=this.\u0275cmp=i.In1({type:Ye,selectors:[["mat-checkbox"]],hostAttrs:[1,"mat-mdc-checkbox"],hostVars:12,hostBindings:function(_e,ye){2&_e&&(i.SoX("id",ye.id),i.e48("tabindex",null)("aria-label",null)("aria-labelledby",null),i.eAK("_mat-animation-noopable","NoopAnimations"===ye._animationMode)("mdc-checkbox--disabled",ye.disabled)("mat-mdc-checkbox-disabled",ye.disabled)("mat-mdc-checkbox-checked",ye.checked))},inputs:{disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex"},exportAs:["matCheckbox"],features:[i.M5G([Y]),i.eg9],ngContentSelectors:g,decls:15,vars:20,consts:[[1,"mdc-form-field",3,"click"],[1,"mdc-checkbox"],["checkbox",""],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"checked","indeterminate","disabled","id","required","tabIndex","blur","click","change"],["input",""],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"],["label",""]],template:function(_e,ye){if(1&_e&&(i.kPM(),i.I0R(0,"div",0),i.qCj("click",function(Xe){return ye._preventBubblingFromLabel(Xe)}),i.I0R(1,"div",1,2)(3,"div",3),i.qCj("click",function(){return ye._onTouchTargetClick()}),i.C$Y(),i.I0R(4,"input",4,5),i.qCj("blur",function(){return ye._onBlur()})("click",function(){return ye._onInputClick()})("change",function(Xe){return ye._onInteractionEvent(Xe)}),i.C$Y(),i.wR5(6,"div",6),i.I0R(7,"div",7),i.S2Z(),i.I0R(8,"svg",8),i.wR5(9,"path",9),i.C$Y(),i.gRP(),i.wR5(10,"div",10),i.C$Y(),i.wR5(11,"div",11),i.C$Y(),i.I0R(12,"label",12,13),i._Xx(14),i.C$Y()()),2&_e){const Re=i.Gew(2);i.eAK("mdc-form-field--align-end","before"==ye.labelPosition),i.yG2(4),i.eAK("mdc-checkbox--selected",ye.checked),i.E7m("checked",ye.checked)("indeterminate",ye.indeterminate)("disabled",ye.disabled)("id",ye.inputId)("required",ye.required)("tabIndex",ye.tabIndex),i.e48("aria-label",ye.ariaLabel||null)("aria-labelledby",ye.ariaLabelledby)("aria-describedby",ye.ariaDescribedby)("aria-checked",ye.indeterminate?"mixed":null)("name",ye.name)("value",ye.value),i.yG2(7),i.E7m("matRippleTrigger",Re)("matRippleDisabled",ye.disableRipple||ye.disabled)("matRippleCentered",!0),i.yG2(),i.E7m("for",ye.inputId)}},dependencies:[a.UZ],styles:['.mdc-touch-target-wrapper{display:inline}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-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 mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:mdc-animation-deceleration-curve-timing-function;transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}}.mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}@keyframes mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}}@keyframes mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}}.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2)}.mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:focus:not(:checked):not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color);background-color:var(--mdc-checkbox-selected-focus-icon-color)}.mdc-checkbox:hover .mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox:hover .mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}html{--mdc-checkbox-disabled-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-state-layer-opacity:0.16;--mdc-checkbox-selected-hover-state-layer-opacity:0.04;--mdc-checkbox-selected-pressed-state-layer-opacity:0.16;--mdc-checkbox-unselected-focus-state-layer-opacity:0.16;--mdc-checkbox-unselected-hover-state-layer-opacity:0.04;--mdc-checkbox-unselected-pressed-state-layer-opacity:0.16}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default}.mat-mdc-checkbox label:empty{display:none}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Ye})(),Bt=(()=>{class Ye{static#e=this.\u0275fac=function(_e){return new(_e||Ye)};static#t=this.\u0275mod=i.a4G({type:Ye});static#i=this.\u0275inj=i.s3X({})}return Ye})(),kt=(()=>{class Ye{static#e=this.\u0275fac=function(_e){return new(_e||Ye)};static#t=this.\u0275mod=i.a4G({type:Ye});static#i=this.\u0275inj=i.s3X({imports:[a.AN,a.KE,Bt,a.AN,Bt]})}return Ye})()},3576:(lt,me,d)=>{"use strict";d.d(me,{iI:()=>kt,Gs:()=>Ye,Wu:()=>je,u9:()=>j,IR:()=>De,KQ:()=>Jt,KG:()=>Ht,K6:()=>le,Ge:()=>ve,AN:()=>_e,Cs:()=>we,A3:()=>Fe,I5:()=>Et,Ax:()=>V,EZ:()=>fe,oD:()=>pt,UZ:()=>Te,Ii:()=>At,KE:()=>at,Ch:()=>zt,aq:()=>ct,ms:()=>ri,i:()=>oe,bc:()=>ut,YB:()=>$e,Sk:()=>$t,aU:()=>oi,S:()=>st});var i=d(2116),s=d(4723),a=d(1900),l=d(1368),f=d(5792),g=d(7712),b=d(3252),R=d(5657),Y=d(7800);const ae=["text"];function Ie(bt,yt){if(1&bt&&i.wR5(0,"mat-pseudo-checkbox",6),2&bt){const Ue=i.GaO();i.E7m("disabled",Ue.disabled)("state",Ue.selected?"checked":"unchecked")}}function Ee(bt,yt){if(1&bt&&i.wR5(0,"mat-pseudo-checkbox",7),2&bt){const Ue=i.GaO();i.E7m("disabled",Ue.disabled)}}function Ge(bt,yt){if(1&bt&&(i.I0R(0,"span",8),i.OEk(1),i.C$Y()),2&bt){const Ue=i.GaO();i.yG2(),i.oRS("(",Ue.group.label,")")}}const tt=[[["mat-icon"]],"*"],gt=["mat-icon","*"];let kt=(()=>{class bt{static#e=this.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)";static#t=this.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)";static#i=this.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)";static#n=this.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)"}return bt})(),Ye=(()=>{class bt{static#e=this.COMPLEX="375ms";static#t=this.ENTERING="225ms";static#i=this.EXITING="195ms"}return bt})();const Q=new i.UbH("mat-sanity-checks",{providedIn:"root",factory:function et(){return!0}});let _e=(()=>{class bt{constructor(Ue,Ft,di){this._sanityChecks=Ft,this._document=di,this._hasDoneGlobalChecks=!1,Ue._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(Ue){return!(0,f.mW)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[Ue])}static#e=this.\u0275fac=function(Ft){return new(Ft||bt)(i.CoB(s.MM),i.CoB(Q,8),i.CoB(l.Ud))};static#t=this.\u0275mod=i.a4G({type:bt});static#i=this.\u0275inj=i.s3X({imports:[a.gN,a.gN]})}return bt})();function $e(bt){return class extends bt{get disabled(){return this._disabled}set disabled(yt){this._disabled=(0,g.W6)(yt)}constructor(...yt){super(...yt),this._disabled=!1}}}function oe(bt,yt){return class extends bt{get color(){return this._color}set color(Ue){const Ft=Ue||this.defaultColor;Ft!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),Ft&&this._elementRef.nativeElement.classList.add(`mat-${Ft}`),this._color=Ft)}constructor(...Ue){super(...Ue),this.defaultColor=yt,this.color=yt}}}function ut(bt){return class extends bt{get disableRipple(){return this._disableRipple}set disableRipple(yt){this._disableRipple=(0,g.W6)(yt)}constructor(...yt){super(...yt),this._disableRipple=!1}}}function st(bt,yt=0){return class extends bt{get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(Ue){this._tabIndex=null!=Ue?(0,g.wZ)(Ue):this.defaultTabIndex}constructor(...Ue){super(...Ue),this._tabIndex=yt,this.defaultTabIndex=yt}}}function $t(bt){return class extends bt{updateErrorState(){const yt=this.errorState,Ei=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);Ei!==yt&&(this.errorState=Ei,this.stateChanges.next())}constructor(...yt){super(...yt),this.errorState=!1}}}function oi(bt){return class extends bt{constructor(...yt){super(...yt),this._isInitialized=!1,this._pendingSubscribers=[],this.initialized=new b._(Ue=>{this._isInitialized?this._notifySubscriber(Ue):this._pendingSubscribers.push(Ue)})}_markInitialized(){this._isInitialized=!0,this._pendingSubscribers.forEach(this._notifySubscriber),this._pendingSubscribers=null}_notifySubscriber(yt){yt.next(),yt.complete()}}}const Jt=new i.UbH("MAT_DATE_LOCALE",{providedIn:"root",factory:function vi(){return(0,i.uUt)(i.KYU)}});class je{constructor(){this._localeChanges=new R.E,this.localeChanges=this._localeChanges}getValidDateOrNull(yt){return this.isDateInstance(yt)&&this.isValid(yt)?yt:null}deserialize(yt){return null==yt||this.isDateInstance(yt)&&this.isValid(yt)?yt:this.invalid()}setLocale(yt){this.locale=yt,this._localeChanges.next()}compareDate(yt,Ue){return this.getYear(yt)-this.getYear(Ue)||this.getMonth(yt)-this.getMonth(Ue)||this.getDate(yt)-this.getDate(Ue)}sameDate(yt,Ue){if(yt&&Ue){let Ft=this.isValid(yt),di=this.isValid(Ue);return Ft&&di?!this.compareDate(yt,Ue):Ft==di}return yt==Ue}clampDate(yt,Ue,Ft){return Ue&&this.compareDate(yt,Ue)<0?Ue:Ft&&this.compareDate(yt,Ft)>0?Ft:yt}}const De=new i.UbH("mat-date-formats");let j=(()=>{class bt{isErrorState(Ue,Ft){return!!(Ue&&Ue.invalid&&(Ue.touched||Ft&&Ft.submitted))}static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275prov=i.wxM({token:bt,factory:bt.\u0275fac,providedIn:"root"})}return bt})(),we=(()=>{class bt{static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275dir=i.Sc5({type:bt,selectors:[["","mat-line",""],["","matLine",""]],hostAttrs:[1,"mat-line"]})}return bt})(),Fe=(()=>{class bt{static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275mod=i.a4G({type:bt});static#i=this.\u0275inj=i.s3X({imports:[_e,_e]})}return bt})();class Tt{constructor(yt,Ue,Ft,di=!1){this._renderer=yt,this.element=Ue,this.config=Ft,this._animationForciblyDisabledThroughCss=di,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const Ke=(0,f.W4)({passive:!0,capture:!0});class Lt{constructor(){this._events=new Map,this._delegateEventHandler=yt=>{const Ue=(0,f.oZ)(yt);Ue&&this._events.get(yt.type)?.forEach((Ft,di)=>{(di===Ue||di.contains(Ue))&&Ft.forEach(Ei=>Ei.handleEvent(yt))})}}addHandler(yt,Ue,Ft,di){const Ei=this._events.get(Ue);if(Ei){const Vt=Ei.get(Ft);Vt?Vt.add(di):Ei.set(Ft,new Set([di]))}else this._events.set(Ue,new Map([[Ft,new Set([di])]])),yt.runOutsideAngular(()=>{document.addEventListener(Ue,this._delegateEventHandler,Ke)})}removeHandler(yt,Ue,Ft){const di=this._events.get(yt);if(!di)return;const Ei=di.get(Ue);Ei&&(Ei.delete(Ft),0===Ei.size&&di.delete(Ue),0===di.size&&(this._events.delete(yt),document.removeEventListener(yt,this._delegateEventHandler,Ke)))}}const Kt={enterDuration:225,exitDuration:150},ni=(0,f.W4)({passive:!0,capture:!0}),Mi=["mousedown","touchstart"],wt=["mouseup","mouseleave","touchend","touchcancel"];class zt{static#e=this._eventManager=new Lt;constructor(yt,Ue,Ft,di){this._target=yt,this._ngZone=Ue,this._platform=di,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,di.isBrowser&&(this._containerElement=(0,g.mk)(Ft))}fadeInRipple(yt,Ue,Ft={}){const di=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),Ei={...Kt,...Ft.animation};Ft.centered&&(yt=di.left+di.width/2,Ue=di.top+di.height/2);const Vt=Ft.radius||function Dt(bt,yt,Ue){const Ft=Math.max(Math.abs(bt-Ue.left),Math.abs(bt-Ue.right)),di=Math.max(Math.abs(yt-Ue.top),Math.abs(yt-Ue.bottom));return Math.sqrt(Ft*Ft+di*di)}(yt,Ue,di),Ci=yt-di.left,We=Ue-di.top,nt=Ei.enterDuration,Ot=document.createElement("div");Ot.classList.add("mat-ripple-element"),Ot.style.left=Ci-Vt+"px",Ot.style.top=We-Vt+"px",Ot.style.height=2*Vt+"px",Ot.style.width=2*Vt+"px",null!=Ft.color&&(Ot.style.backgroundColor=Ft.color),Ot.style.transitionDuration=`${nt}ms`,this._containerElement.appendChild(Ot);const si=window.getComputedStyle(Ot),Ti=si.transitionDuration,Fi="none"===si.transitionProperty||"0s"===Ti||"0s, 0s"===Ti||0===di.width&&0===di.height,hn=new Tt(this,Ot,Ft,Fi);Ot.style.transform="scale3d(1, 1, 1)",hn.state=0,Ft.persistent||(this._mostRecentTransientRipple=hn);let an=null;return!Fi&&(nt||Ei.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const Xn=()=>this._finishRippleTransition(hn),Je=()=>this._destroyRipple(hn);Ot.addEventListener("transitionend",Xn),Ot.addEventListener("transitioncancel",Je),an={onTransitionEnd:Xn,onTransitionCancel:Je}}),this._activeRipples.set(hn,an),(Fi||!nt)&&this._finishRippleTransition(hn),hn}fadeOutRipple(yt){if(2===yt.state||3===yt.state)return;const Ue=yt.element,Ft={...Kt,...yt.config.animation};Ue.style.transitionDuration=`${Ft.exitDuration}ms`,Ue.style.opacity="0",yt.state=2,(yt._animationForciblyDisabledThroughCss||!Ft.exitDuration)&&this._finishRippleTransition(yt)}fadeOutAll(){this._getActiveRipples().forEach(yt=>yt.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(yt=>{yt.config.persistent||yt.fadeOut()})}setupTriggerEvents(yt){const Ue=(0,g.mk)(yt);!this._platform.isBrowser||!Ue||Ue===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=Ue,Mi.forEach(Ft=>{zt._eventManager.addHandler(this._ngZone,Ft,Ue,this)}))}handleEvent(yt){"mousedown"===yt.type?this._onMousedown(yt):"touchstart"===yt.type?this._onTouchStart(yt):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{wt.forEach(Ue=>{this._triggerElement.addEventListener(Ue,this,ni)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(yt){0===yt.state?this._startFadeOutTransition(yt):2===yt.state&&this._destroyRipple(yt)}_startFadeOutTransition(yt){const Ue=yt===this._mostRecentTransientRipple,{persistent:Ft}=yt.config;yt.state=1,!Ft&&(!Ue||!this._isPointerDown)&&yt.fadeOut()}_destroyRipple(yt){const Ue=this._activeRipples.get(yt)??null;this._activeRipples.delete(yt),this._activeRipples.size||(this._containerRect=null),yt===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),yt.state=3,null!==Ue&&(yt.element.removeEventListener("transitionend",Ue.onTransitionEnd),yt.element.removeEventListener("transitioncancel",Ue.onTransitionCancel)),yt.element.remove()}_onMousedown(yt){const Ue=(0,s.G3)(yt),Ft=this._lastTouchStartEvent&&Date.now(){!yt.config.persistent&&(1===yt.state||yt.config.terminateOnPointerUp&&0===yt.state)&&yt.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const yt=this._triggerElement;yt&&(Mi.forEach(Ue=>zt._eventManager.removeHandler(Ue,yt,this)),this._pointerUpEventsRegistered&&wt.forEach(Ue=>yt.removeEventListener(Ue,this,ni)))}}const ve=new i.UbH("mat-ripple-global-options");let Te=(()=>{class bt{get disabled(){return this._disabled}set disabled(Ue){Ue&&this.fadeOutAllNonPersistent(),this._disabled=Ue,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(Ue){this._trigger=Ue,this._setupTriggerEventsIfEnabled()}constructor(Ue,Ft,di,Ei,Vt){this._elementRef=Ue,this._animationMode=Vt,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=Ei||{},this._rippleRenderer=new zt(this,Ft,Ue,di)}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:{...this._globalOptions.animation,..."NoopAnimations"===this._animationMode?{enterDuration:0,exitDuration:0}:{},...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(Ue,Ft=0,di){return"number"==typeof Ue?this._rippleRenderer.fadeInRipple(Ue,Ft,{...this.rippleConfig,...di}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...Ue})}static#e=this.\u0275fac=function(Ft){return new(Ft||bt)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(f.WU),i.GI1(ve,8),i.GI1(i.qwP,8))};static#t=this.\u0275dir=i.Sc5({type:bt,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(Ft,di){2&Ft&&i.eAK("mat-ripple-unbounded",di.unbounded)},inputs:{color:[i.Wk5.None,"matRippleColor","color"],unbounded:[i.Wk5.None,"matRippleUnbounded","unbounded"],centered:[i.Wk5.None,"matRippleCentered","centered"],radius:[i.Wk5.None,"matRippleRadius","radius"],animation:[i.Wk5.None,"matRippleAnimation","animation"],disabled:[i.Wk5.None,"matRippleDisabled","disabled"],trigger:[i.Wk5.None,"matRippleTrigger","trigger"]},exportAs:["matRipple"]})}return bt})(),at=(()=>{class bt{static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275mod=i.a4G({type:bt});static#i=this.\u0275inj=i.s3X({imports:[_e,_e]})}return bt})(),Ze=(()=>{class bt{constructor(Ue){this._animationMode=Ue,this.state="unchecked",this.disabled=!1,this.appearance="full"}static#e=this.\u0275fac=function(Ft){return new(Ft||bt)(i.GI1(i.qwP,8))};static#t=this.\u0275cmp=i.In1({type:bt,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(Ft,di){2&Ft&&i.eAK("mat-pseudo-checkbox-indeterminate","indeterminate"===di.state)("mat-pseudo-checkbox-checked","checked"===di.state)("mat-pseudo-checkbox-disabled",di.disabled)("mat-pseudo-checkbox-minimal","minimal"===di.appearance)("mat-pseudo-checkbox-full","full"===di.appearance)("_mat-animation-noopable","NoopAnimations"===di._animationMode)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},decls:0,vars:0,template:function(Ft,di){},styles:['.mat-pseudo-checkbox{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-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-full{border:2px solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}'],encapsulation:2,changeDetection:0})}return bt})(),pt=(()=>{class bt{static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275mod=i.a4G({type:bt});static#i=this.\u0275inj=i.s3X({imports:[_e]})}return bt})();const le=new i.UbH("MAT_OPTION_PARENT_COMPONENT"),Ht=new i.UbH("MatOptgroup");let Mt=0;class fe{constructor(yt,Ue=!1){this.source=yt,this.isUserInput=Ue}}let it=(()=>{class bt{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(Ue){this._disabled=(0,g.W6)(Ue)}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}constructor(Ue,Ft,di,Ei){this._element=Ue,this._changeDetectorRef=Ft,this._parent=di,this.group=Ei,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+Mt++,this.onSelectionChange=new i._w7,this._stateChanges=new R.E}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(Ue=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),Ue&&this._emitSelectionChangeEvent())}deselect(Ue=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),Ue&&this._emitSelectionChangeEvent())}focus(Ue,Ft){const di=this._getHostElement();"function"==typeof di.focus&&di.focus(Ft)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(Ue){(Ue.keyCode===Y.wJ||Ue.keyCode===Y.Gi)&&!(0,Y.Yp)(Ue)&&(this._selectViaInteraction(),Ue.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const Ue=this.viewValue;Ue!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=Ue)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(Ue=!1){this.onSelectionChange.emit(new fe(this,Ue))}static#e=this.\u0275fac=function(Ft){i.KEo()};static#t=this.\u0275dir=i.Sc5({type:bt,viewQuery:function(Ft,di){if(1&Ft&&i.CC$(ae,7),2&Ft){let Ei;i.wto(Ei=i.Gqi())&&(di._text=Ei.first)}},inputs:{value:"value",id:"id",disabled:"disabled"},outputs:{onSelectionChange:"onSelectionChange"}})}return bt})(),Et=(()=>{class bt extends it{constructor(Ue,Ft,di,Ei){super(Ue,Ft,di,Ei)}static#e=this.\u0275fac=function(Ft){return new(Ft||bt)(i.GI1(i.GMv),i.GI1(i.kD9),i.GI1(le,8),i.GI1(Ht,8))};static#t=this.\u0275cmp=i.In1({type:bt,selectors:[["mat-option"]],hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(Ft,di){1&Ft&&i.qCj("click",function(){return di._selectViaInteraction()})("keydown",function(Vt){return di._handleKeydown(Vt)}),2&Ft&&(i.SoX("id",di.id),i.e48("aria-selected",di.selected)("aria-disabled",di.disabled.toString()),i.eAK("mdc-list-item--selected",di.selected)("mat-mdc-option-multiple",di.multiple)("mat-mdc-option-active",di.active)("mdc-list-item--disabled",di.disabled))},exportAs:["matOption"],features:[i.eg9],ngContentSelectors:gt,decls:8,vars:5,consts:[["class","mat-mdc-option-pseudo-checkbox","aria-hidden","true",3,"disabled","state",4,"ngIf"],[1,"mdc-list-item__primary-text"],["text",""],["class","mat-mdc-option-pseudo-checkbox","state","checked","aria-hidden","true","appearance","minimal",3,"disabled",4,"ngIf"],["class","cdk-visually-hidden",4,"ngIf"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"]],template:function(Ft,di){1&Ft&&(i.kPM(tt),i.yuY(0,Ie,1,2,"mat-pseudo-checkbox",0),i._Xx(1),i.I0R(2,"span",1,2),i._Xx(4,1),i.C$Y(),i.yuY(5,Ee,1,1,"mat-pseudo-checkbox",3)(6,Ge,2,1,"span",4),i.wR5(7,"div",5)),2&Ft&&(i.E7m("ngIf",di.multiple),i.yG2(5),i.E7m("ngIf",!di.multiple&&di.selected&&!di.hideSingleSelectionIndicator),i.yG2(),i.E7m("ngIf",di.group&&di.group._inert),i.yG2(),i.E7m("matRippleTrigger",di._getHostElement())("matRippleDisabled",di.disabled||di.disableRipple))},dependencies:[Te,l.u_,Ze],styles:['.mat-mdc-option{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color);font-family:var(--mat-option-label-text-font);line-height:var(--mat-option-label-text-line-height);font-size:var(--mat-option-label-text-size);letter-spacing:var(--mat-option-label-text-tracking);font-weight:var(--mat-option-label-text-weight);min-height:48px}.mat-mdc-option:focus{outline:none}[dir=rtl] .mat-mdc-option,.mat-mdc-option[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color)}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color)}.mat-mdc-option.mdc-list-item{align-items:center}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}.cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{right:auto;left:16px}.mat-mdc-option-active .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return bt})();function ct(bt,yt,Ue){if(Ue.length){let Ft=yt.toArray(),di=Ue.toArray(),Ei=0;for(let Vt=0;VtUe+Ft?Math.max(0,bt-Ft+yt):Ue}let V=(()=>{class bt{static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275mod=i.a4G({type:bt});static#i=this.\u0275inj=i.s3X({imports:[at,l.MD,_e,pt]})}return bt})();const Ce={capture:!0},_=["focus","click","mouseenter","touchstart"],w="mat-ripple-loader-uninitialized",S="mat-ripple-loader-class-name",$="mat-ripple-loader-centered",ze="mat-ripple-loader-disabled";let At=(()=>{class bt{constructor(){this._document=(0,i.uUt)(l.Ud,{optional:!0}),this._animationMode=(0,i.uUt)(i.qwP,{optional:!0}),this._globalRippleOptions=(0,i.uUt)(ve,{optional:!0}),this._platform=(0,i.uUt)(f.WU),this._ngZone=(0,i.uUt)(i.WW2),this._hosts=new Map,this._onInteraction=Ue=>{if(!(Ue.target instanceof HTMLElement))return;const di=Ue.target.closest(`[${w}]`);di&&this._createRipple(di)},this._ngZone.runOutsideAngular(()=>{for(const Ue of _)this._document?.addEventListener(Ue,this._onInteraction,Ce)})}ngOnDestroy(){const Ue=this._hosts.keys();for(const Ft of Ue)this.destroyRipple(Ft);for(const Ft of _)this._document?.removeEventListener(Ft,this._onInteraction,Ce)}configureRipple(Ue,Ft){Ue.setAttribute(w,""),(Ft.className||!Ue.hasAttribute(S))&&Ue.setAttribute(S,Ft.className||""),Ft.centered&&Ue.setAttribute($,""),Ft.disabled&&Ue.setAttribute(ze,"")}getRipple(Ue){return this._hosts.get(Ue)||this._createRipple(Ue)}setDisabled(Ue,Ft){const di=this._hosts.get(Ue);di?di.disabled=Ft:Ft?Ue.setAttribute(ze,""):Ue.removeAttribute(ze)}_createRipple(Ue){if(!this._document)return;const Ft=this._hosts.get(Ue);if(Ft)return Ft;Ue.querySelector(".mat-ripple")?.remove();const di=this._document.createElement("span");di.classList.add("mat-ripple",Ue.getAttribute(S)),Ue.append(di);const Ei=new Te(new i.GMv(di),this._ngZone,this._platform,this._globalRippleOptions?this._globalRippleOptions:void 0,this._animationMode?this._animationMode:void 0);return Ei._isInitialized=!0,Ei.trigger=Ue,Ei.centered=Ue.hasAttribute($),Ei.disabled=Ue.hasAttribute(ze),this.attachRipple(Ue,Ei),Ei}attachRipple(Ue,Ft){Ue.removeAttribute(w),this._hosts.set(Ue,Ft)}destroyRipple(Ue){const Ft=this._hosts.get(Ue);Ft&&(Ft.ngOnDestroy(),this._hosts.delete(Ue))}static#e=this.\u0275fac=function(Ft){return new(Ft||bt)};static#t=this.\u0275prov=i.wxM({token:bt,factory:bt.\u0275fac,providedIn:"root"})}return bt})()},9120:(lt,me,d)=>{"use strict";d.d(me,{SU:()=>Ei,Ul:()=>si,iU:()=>Li,yu:()=>Ti});var i=d(4723),s=d(68),a=d(2488),h=d(1368),l=d(2116),f=d(7816),g=d(8408),b=d(3576),R=d(5657),Y=d(6928),J=d(3412),ie=d(2700),ae=d(7800),Ie=d(1900),Ee=d(5792),Ge=d(3992),tt=d(5568),gt=d(6684),Bt=d(7712),kt=d(9684),Ye=d(6504),et=d(4060),Q=d(7536);const _e=["mat-calendar-body",""];function ye(ot,mi){if(1&ot&&(l.I0R(0,"tr",3)(1,"td",4),l.OEk(2),l.C$Y()()),2&ot){const k=l.GaO();l.yG2(),l.m4B("padding-top",k._cellPadding)("padding-bottom",k._cellPadding),l.e48("colspan",k.numCols),l.yG2(),l.oRS(" ",k.label," ")}}function Re(ot,mi){if(1&ot&&(l.I0R(0,"td",4),l.OEk(1),l.C$Y()),2&ot){const k=l.GaO(2);l.m4B("padding-top",k._cellPadding)("padding-bottom",k._cellPadding),l.e48("colspan",k._firstRowOffset),l.yG2(),l.oRS(" ",k._firstRowOffset>=k.labelMinRequiredCells?k.label:""," ")}}function Xe(ot,mi){if(1&ot){const k=l.KQA();l.I0R(0,"td",8)(1,"button",9),l.qCj("click",function(K){const Yt=l.usT(k).$implicit,wi=l.GaO(2);return l.CGJ(wi._cellClicked(Yt,K))})("focus",function(K){const Yt=l.usT(k).$implicit,wi=l.GaO(2);return l.CGJ(wi._emitActiveDateChange(Yt,K))}),l.I0R(2,"span",10),l.OEk(3),l.C$Y(),l.wR5(4,"span",11),l.C$Y()()}if(2&ot){const k=mi.$implicit,se=mi.index,K=l.GaO().index,Be=l.GaO();l.m4B("width",Be._cellWidth)("padding-top",Be._cellPadding)("padding-bottom",Be._cellPadding),l.e48("data-mat-row",K)("data-mat-col",se),l.yG2(),l.eAK("mat-calendar-body-disabled",!k.enabled)("mat-calendar-body-active",Be._isActiveCell(K,se))("mat-calendar-body-range-start",Be._isRangeStart(k.compareValue))("mat-calendar-body-range-end",Be._isRangeEnd(k.compareValue))("mat-calendar-body-in-range",Be._isInRange(k.compareValue))("mat-calendar-body-comparison-bridge-start",Be._isComparisonBridgeStart(k.compareValue,K,se))("mat-calendar-body-comparison-bridge-end",Be._isComparisonBridgeEnd(k.compareValue,K,se))("mat-calendar-body-comparison-start",Be._isComparisonStart(k.compareValue))("mat-calendar-body-comparison-end",Be._isComparisonEnd(k.compareValue))("mat-calendar-body-in-comparison-range",Be._isInComparisonRange(k.compareValue))("mat-calendar-body-preview-start",Be._isPreviewStart(k.compareValue))("mat-calendar-body-preview-end",Be._isPreviewEnd(k.compareValue))("mat-calendar-body-in-preview",Be._isInPreview(k.compareValue)),l.E7m("ngClass",k.cssClasses)("tabindex",Be._isActiveCell(K,se)?0:-1),l.e48("aria-label",k.ariaLabel)("aria-disabled",!k.enabled||null)("aria-pressed",Be._isSelected(k.compareValue))("aria-current",Be.todayValue===k.compareValue?"date":null)("aria-describedby",Be._getDescribedby(k.compareValue)),l.yG2(),l.eAK("mat-calendar-body-selected",Be._isSelected(k.compareValue))("mat-calendar-body-comparison-identical",Be._isComparisonIdentical(k.compareValue))("mat-calendar-body-today",Be.todayValue===k.compareValue),l.yG2(),l.oRS(" ",k.displayValue," ")}}function $e(ot,mi){if(1&ot&&(l.I0R(0,"tr",5),l.yuY(1,Re,2,6,"td",6)(2,Xe,5,48,"td",7),l.C$Y()),2&ot){const k=mi.$implicit,se=mi.index,K=l.GaO();l.yG2(),l.E7m("ngIf",0===se&&K._firstRowOffset),l.yG2(),l.E7m("ngForOf",k)}}function oe(ot,mi){if(1&ot&&(l.I0R(0,"th",5)(1,"span",6),l.OEk(2),l.C$Y(),l.I0R(3,"span",7),l.OEk(4),l.C$Y()()),2&ot){const k=mi.$implicit;l.yG2(2),l.cNF(k.long),l.yG2(2),l.cNF(k.narrow)}}const ut=["*"];function st(ot,mi){}function $t(ot,mi){if(1&ot){const k=l.KQA();l.I0R(0,"mat-month-view",5),l.iHE("activeDateChange",function(K){l.usT(k);const Be=l.GaO();return l.kNx(Be.activeDate,K)||(Be.activeDate=K),l.CGJ(K)}),l.qCj("_userSelection",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._dateSelected(K))})("dragStarted",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._dragStarted(K))})("dragEnded",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._dragEnded(K))}),l.C$Y()}if(2&ot){const k=l.GaO();l.OKB("activeDate",k.activeDate),l.E7m("selected",k.selected)("dateFilter",k.dateFilter)("maxDate",k.maxDate)("minDate",k.minDate)("dateClass",k.dateClass)("comparisonStart",k.comparisonStart)("comparisonEnd",k.comparisonEnd)("startDateAccessibleName",k.startDateAccessibleName)("endDateAccessibleName",k.endDateAccessibleName)("activeDrag",k._activeDrag)}}function oi(ot,mi){if(1&ot){const k=l.KQA();l.I0R(0,"mat-year-view",6),l.iHE("activeDateChange",function(K){l.usT(k);const Be=l.GaO();return l.kNx(Be.activeDate,K)||(Be.activeDate=K),l.CGJ(K)}),l.qCj("monthSelected",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._monthSelectedInYearView(K))})("selectedChange",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._goToDateInView(K,"month"))}),l.C$Y()}if(2&ot){const k=l.GaO();l.OKB("activeDate",k.activeDate),l.E7m("selected",k.selected)("dateFilter",k.dateFilter)("maxDate",k.maxDate)("minDate",k.minDate)("dateClass",k.dateClass)}}function Jt(ot,mi){if(1&ot){const k=l.KQA();l.I0R(0,"mat-multi-year-view",7),l.iHE("activeDateChange",function(K){l.usT(k);const Be=l.GaO();return l.kNx(Be.activeDate,K)||(Be.activeDate=K),l.CGJ(K)}),l.qCj("yearSelected",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._yearSelectedInMultiYearView(K))})("selectedChange",function(K){l.usT(k);const Be=l.GaO();return l.CGJ(Be._goToDateInView(K,"year"))}),l.C$Y()}if(2&ot){const k=l.GaO();l.OKB("activeDate",k.activeDate),l.E7m("selected",k.selected)("dateFilter",k.dateFilter)("maxDate",k.maxDate)("minDate",k.minDate)("dateClass",k.dateClass)}}function vi(ot,mi){}const je=["button"];function De(ot,mi){1&ot&&(l.S2Z(),l.I0R(0,"svg",3),l.wR5(1,"path",4),l.C$Y())}const Le=[[["","matDatepickerToggleIcon",""]]],Ve=["[matDatepickerToggleIcon]"];let be=(()=>{class ot{constructor(){this.changes=new R.E,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(k,se){return`${k} \u2013 ${se}`}formatYearRangeLabel(k,se){return`${k} to ${se}`}static#e=this.\u0275fac=function(se){return new(se||ot)};static#t=this.\u0275prov=l.wxM({token:ot,factory:ot.\u0275fac,providedIn:"root"})}return ot})();class j{constructor(mi,k,se,K,Be={},Yt=mi,wi){this.value=mi,this.displayValue=k,this.ariaLabel=se,this.enabled=K,this.cssClasses=Be,this.compareValue=Yt,this.rawValue=wi}}let we=1;const N=(0,Ee.W4)({passive:!1,capture:!0}),U=(0,Ee.W4)({passive:!0,capture:!0}),Fe=(0,Ee.W4)({passive:!0});let Tt=(()=>{class ot{ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}constructor(k,se){this._elementRef=k,this._ngZone=se,this._platform=(0,l.uUt)(Ee.WU),this._focusActiveCellAfterViewChecked=!1,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new l._w7,this.previewChange=new l._w7,this.activeDateChange=new l._w7,this.dragStarted=new l._w7,this.dragEnded=new l._w7,this._didDragSinceMouseDown=!1,this._enterHandler=K=>{if(this._skipNextFocus&&"focus"===K.type)this._skipNextFocus=!1;else if(K.target&&this.isRange){const Be=this._getCellFromElement(K.target);Be&&this._ngZone.run(()=>this.previewChange.emit({value:Be.enabled?Be:null,event:K}))}},this._touchmoveHandler=K=>{if(!this.isRange)return;const Be=Mi(K),Yt=Be?this._getCellFromElement(Be):null;Be!==K.target&&(this._didDragSinceMouseDown=!0),Lt(K.target)&&K.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:Yt?.enabled?Yt:null,event:K}))},this._leaveHandler=K=>{null!==this.previewEnd&&this.isRange&&("blur"!==K.type&&(this._didDragSinceMouseDown=!0),K.target&&this._getCellFromElement(K.target)&&(!K.relatedTarget||!this._getCellFromElement(K.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:K})))},this._mousedownHandler=K=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const Be=K.target&&this._getCellFromElement(K.target);!Be||!this._isInRange(Be.rawValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:Be.rawValue,event:K})})},this._mouseupHandler=K=>{if(!this.isRange)return;const Be=Lt(K.target);Be?Be.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const Yt=this._getCellFromElement(Be);this.dragEnded.emit({value:Yt?.rawValue??null,event:K})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:K})})},this._touchendHandler=K=>{const Be=Mi(K);Be&&this._mouseupHandler({target:Be})},this._id="mat-calendar-body-"+we++,this._startDateLabelId=`${this._id}-start-date`,this._endDateLabelId=`${this._id}-end-date`,se.runOutsideAngular(()=>{const K=k.nativeElement;K.addEventListener("touchmove",this._touchmoveHandler,N),K.addEventListener("mouseenter",this._enterHandler,U),K.addEventListener("focus",this._enterHandler,U),K.addEventListener("mouseleave",this._leaveHandler,U),K.addEventListener("blur",this._leaveHandler,U),K.addEventListener("mousedown",this._mousedownHandler,Fe),K.addEventListener("touchstart",this._mousedownHandler,Fe),this._platform.isBrowser&&(window.addEventListener("mouseup",this._mouseupHandler),window.addEventListener("touchend",this._touchendHandler))})}_cellClicked(k,se){this._didDragSinceMouseDown||k.enabled&&this.selectedValueChange.emit({value:k.value,event:se})}_emitActiveDateChange(k,se){k.enabled&&this.activeDateChange.emit({value:k.value,event:se})}_isSelected(k){return this.startValue===k||this.endValue===k}ngOnChanges(k){const se=k.numCols,{rows:K,numCols:Be}=this;(k.rows||se)&&(this._firstRowOffset=K&&K.length&&K[0].length?Be-K[0].length:0),(k.cellAspectRatio||se||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/Be+"%"),(se||!this._cellWidth)&&(this._cellWidth=100/Be+"%")}ngOnDestroy(){const k=this._elementRef.nativeElement;k.removeEventListener("touchmove",this._touchmoveHandler,N),k.removeEventListener("mouseenter",this._enterHandler,U),k.removeEventListener("focus",this._enterHandler,U),k.removeEventListener("mouseleave",this._leaveHandler,U),k.removeEventListener("blur",this._leaveHandler,U),k.removeEventListener("mousedown",this._mousedownHandler,Fe),k.removeEventListener("touchstart",this._mousedownHandler,Fe),this._platform.isBrowser&&(window.removeEventListener("mouseup",this._mouseupHandler),window.removeEventListener("touchend",this._touchendHandler))}_isActiveCell(k,se){let K=k*this.numCols+se;return k&&(K-=this._firstRowOffset),K==this.activeCell}_focusActiveCell(k=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,Ge.U)(1)).subscribe(()=>{setTimeout(()=>{const se=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");se&&(k||(this._skipNextFocus=!0),se.focus())})})})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(k){return Kt(k,this.startValue,this.endValue)}_isRangeEnd(k){return Ut(k,this.startValue,this.endValue)}_isInRange(k){return ni(k,this.startValue,this.endValue,this.isRange)}_isComparisonStart(k){return Kt(k,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(k,se,K){if(!this._isComparisonStart(k)||this._isRangeStart(k)||!this._isInRange(k))return!1;let Be=this.rows[se][K-1];if(!Be){const Yt=this.rows[se-1];Be=Yt&&Yt[Yt.length-1]}return Be&&!this._isRangeEnd(Be.compareValue)}_isComparisonBridgeEnd(k,se,K){if(!this._isComparisonEnd(k)||this._isRangeEnd(k)||!this._isInRange(k))return!1;let Be=this.rows[se][K+1];if(!Be){const Yt=this.rows[se+1];Be=Yt&&Yt[0]}return Be&&!this._isRangeStart(Be.compareValue)}_isComparisonEnd(k){return Ut(k,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(k){return ni(k,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(k){return this.comparisonStart===this.comparisonEnd&&k===this.comparisonStart}_isPreviewStart(k){return Kt(k,this.previewStart,this.previewEnd)}_isPreviewEnd(k){return Ut(k,this.previewStart,this.previewEnd)}_isInPreview(k){return ni(k,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(k){return this.isRange?this.startValue===k&&this.endValue===k?`${this._startDateLabelId} ${this._endDateLabelId}`:this.startValue===k?this._startDateLabelId:this.endValue===k?this._endDateLabelId:null:null}_getCellFromElement(k){const se=Lt(k);if(se){const K=se.getAttribute("data-mat-row"),Be=se.getAttribute("data-mat-col");if(K&&Be)return this.rows[parseInt(K)][parseInt(Be)]}return null}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(l.GMv),l.GI1(l.WW2))};static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],features:[l.SYr],attrs:_e,decls:6,vars:6,consts:[["aria-hidden","true",4,"ngIf"],["role","row",4,"ngFor","ngForOf"],[1,"mat-calendar-body-hidden-label",3,"id"],["aria-hidden","true"],[1,"mat-calendar-body-label"],["role","row"],["class","mat-calendar-body-label",3,"paddingTop","paddingBottom",4,"ngIf"],["role","gridcell","class","mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom",4,"ngFor","ngForOf"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"ngClass","tabindex","click","focus"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(se,K){1&se&&(l.yuY(0,ye,3,6,"tr",0)(1,$e,3,2,"tr",1),l.I0R(2,"label",2),l.OEk(3),l.C$Y(),l.I0R(4,"label",2),l.OEk(5),l.C$Y()),2&se&&(l.E7m("ngIf",K._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color)}.cdk-high-contrast-active .mat-calendar-body-disabled{opacity:.5}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color);border-color:var(--mat-datepicker-calendar-date-outline-color)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}.cdk-high-contrast-active .mat-calendar-body-cell-content{border:none}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-focus-state-background-color)}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-hover-state-background-color)}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color);color:var(--mat-datepicker-calendar-date-selected-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color)}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color)}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color)}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color)}.cdk-high-contrast-active .mat-datepicker-popup:not(:empty),.cdk-high-contrast-active .mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.cdk-high-contrast-active .mat-calendar-body-today{outline:dotted 1px}.cdk-high-contrast-active .mat-calendar-body-cell::before,.cdk-high-contrast-active .mat-calendar-body-cell::after,.cdk-high-contrast-active .mat-calendar-body-selected{background:none}.cdk-high-contrast-active .mat-calendar-body-in-range::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-start::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.cdk-high-contrast-active .mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}[dir=rtl] .mat-calendar-body-label{text-align:right}'],encapsulation:2,changeDetection:0})}return ot})();function Ke(ot){return"TD"===ot?.nodeName}function Lt(ot){let mi;return Ke(ot)?mi=ot:Ke(ot.parentNode)?mi=ot.parentNode:Ke(ot.parentNode?.parentNode)&&(mi=ot.parentNode.parentNode),null!=mi?.getAttribute("data-mat-row")?mi:null}function Kt(ot,mi,k){return null!==k&&mi!==k&&ot=mi&&ot===k}function ni(ot,mi,k,se){return se&&null!==mi&&null!==k&&mi!==k&&ot>=mi&&ot<=k}function Mi(ot){const mi=ot.changedTouches[0];return document.elementFromPoint(mi.clientX,mi.clientY)}class wt{constructor(mi,k){this.start=mi,this.end=k}}let zt=(()=>{class ot{constructor(k,se){this.selection=k,this._adapter=se,this._selectionChanged=new R.E,this.selectionChanged=this._selectionChanged,this.selection=k}updateSelection(k,se){const K=this.selection;this.selection=k,this._selectionChanged.next({selection:k,source:se,oldValue:K})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(k){return this._adapter.isDateInstance(k)&&this._adapter.isValid(k)}static#e=this.\u0275fac=function(se){l.KEo()};static#t=this.\u0275prov=l.wxM({token:ot,factory:ot.\u0275fac})}return ot})(),Dt=(()=>{class ot extends zt{constructor(k){super(null,k)}add(k){super.updateSelection(k,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const k=new ot(this._adapter);return k.updateSelection(this.selection,this),k}static#e=this.\u0275fac=function(se){return new(se||ot)(l.CoB(b.Wu))};static#t=this.\u0275prov=l.wxM({token:ot,factory:ot.\u0275fac})}return ot})();const at={provide:zt,deps:[[new l.T7N,new l.Qfh,zt],b.Wu],useFactory:function Te(ot,mi){return ot||new Dt(mi)}},le=new l.UbH("MAT_DATE_RANGE_SELECTION_STRATEGY");let vt=(()=>{class ot{get activeDate(){return this._activeDate}set activeDate(k){const se=this._activeDate,K=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(K,this.minDate,this.maxDate),this._hasSameMonthAndYear(se,this._activeDate)||this._init()}get selected(){return this._selected}set selected(k){this._selected=k instanceof wt?k:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k)),this._setRanges(this._selected)}get minDate(){return this._minDate}set minDate(k){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get maxDate(){return this._maxDate}set maxDate(k){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}constructor(k,se,K,Be,Yt){this._changeDetectorRef=k,this._dateFormats=se,this._dateAdapter=K,this._dir=Be,this._rangeStrategy=Yt,this._rerenderSubscription=Y.wH.EMPTY,this.activeDrag=null,this.selectedChange=new l._w7,this._userSelection=new l._w7,this.dragStarted=new l._w7,this.dragEnded=new l._w7,this.activeDateChange=new l._w7,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,tt.W)(null)).subscribe(()=>this._init())}ngOnChanges(k){const se=k.comparisonStart||k.comparisonEnd;se&&!se.firstChange&&this._setRanges(this.selected),k.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(k){const se=k.value,K=this._getDateFromDayOfMonth(se);let Be,Yt;this._selected instanceof wt?(Be=this._getDateInCurrentMonth(this._selected.start),Yt=this._getDateInCurrentMonth(this._selected.end)):Be=Yt=this._getDateInCurrentMonth(this._selected),(Be!==se||Yt!==se)&&this.selectedChange.emit(K),this._userSelection.emit({value:K,event:k.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(k){const K=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(k.value),this._dateAdapter.compareDate(K,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(k){const se=this._activeDate,K=this._isRtl();switch(k.keyCode){case ae.Mx:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,K?1:-1);break;case ae.a4:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,K?-1:1);break;case ae.qI:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case ae.Oq:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case ae.qU:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case ae.Mp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case ae.u_:this.activeDate=k.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case ae.yI:this.activeDate=k.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case ae.wJ:case ae.Gi:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&k.preventDefault());case ae.UX:return void(null!=this._previewEnd&&!(0,ae.Yp)(k)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:k}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:k})),k.preventDefault(),k.stopPropagation()));default:return}this._dateAdapter.compareDate(se,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),k.preventDefault()}_handleCalendarBodyKeyup(k){(k.keyCode===ae.Gi||k.keyCode===ae.wJ)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:k}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate=this._getCellCompareValue(this._dateAdapter.today()),this._monthLabel=this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase();let k=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset=(7+this._dateAdapter.getDayOfWeek(k)-this._dateAdapter.getFirstDayOfWeek())%7,this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(k){this._matCalendarBody._focusActiveCell(k)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:k,value:se}){if(this._rangeStrategy){const K=se?se.rawValue:null,Be=this._rangeStrategy.createPreview(K,this.selected,k);if(this._previewStart=this._getCellCompareValue(Be.start),this._previewEnd=this._getCellCompareValue(Be.end),this.activeDrag&&K){const Yt=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,K,k);Yt&&(this._previewStart=this._getCellCompareValue(Yt.start),this._previewEnd=this._getCellCompareValue(Yt.end))}this._changeDetectorRef.detectChanges()}}_dragEnded(k){if(this.activeDrag)if(k.value){const se=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,k.value,k.event);this.dragEnded.emit({value:se??null,event:k.event})}else this.dragEnded.emit({value:null,event:k.event})}_getDateFromDayOfMonth(k){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),k)}_initWeekdays(){const k=this._dateAdapter.getFirstDayOfWeek(),se=this._dateAdapter.getDayOfWeekNames("narrow");let Be=this._dateAdapter.getDayOfWeekNames("long").map((Yt,wi)=>({long:Yt,narrow:se[wi]}));this._weekdays=Be.slice(k).concat(Be.slice(0,k))}_createWeekCells(){const k=this._dateAdapter.getNumDaysInMonth(this.activeDate),se=this._dateAdapter.getDateNames();this._weeks=[[]];for(let K=0,Be=this._firstWeekOffset;K=0)&&(!this.maxDate||this._dateAdapter.compareDate(k,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(k))}_getDateInCurrentMonth(k){return k&&this._hasSameMonthAndYear(k,this.activeDate)?this._dateAdapter.getDate(k):null}_hasSameMonthAndYear(k,se){return!(!k||!se||this._dateAdapter.getMonth(k)!=this._dateAdapter.getMonth(se)||this._dateAdapter.getYear(k)!=this._dateAdapter.getYear(se))}_getCellCompareValue(k){if(k){const se=this._dateAdapter.getYear(k),K=this._dateAdapter.getMonth(k),Be=this._dateAdapter.getDate(k);return new Date(se,K,Be).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(k){k instanceof wt?(this._rangeStart=this._getCellCompareValue(k.start),this._rangeEnd=this._getCellCompareValue(k.end),this._isRange=!0):(this._rangeStart=this._rangeEnd=this._getCellCompareValue(k),this._isRange=!1),this._comparisonRangeStart=this._getCellCompareValue(this.comparisonStart),this._comparisonRangeEnd=this._getCellCompareValue(this.comparisonEnd)}_canSelect(k){return!this.dateFilter||this.dateFilter(k)}_clearPreview(){this._previewStart=this._previewEnd=null}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(l.kD9),l.GI1(b.IR,8),l.GI1(b.Wu,8),l.GI1(Ie.yG,8),l.GI1(le,8))};static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["mat-month-view"]],viewQuery:function(se,K){if(1&se&&l.CC$(Tt,5),2&se){let Be;l.wto(Be=l.Gqi())&&(K._matCalendarBody=Be.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[l.SYr],decls:7,vars:15,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col",4,"ngFor","ngForOf"],["aria-hidden","true","colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","startDateAccessibleName","endDateAccessibleName","selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown"],["scope","col"],[1,"cdk-visually-hidden"],["aria-hidden","true"]],template:function(se,K){1&se&&(l.I0R(0,"table",0)(1,"thead",1)(2,"tr"),l.yuY(3,oe,5,2,"th",2),l.C$Y(),l.I0R(4,"tr"),l.wR5(5,"th",3),l.C$Y()(),l.I0R(6,"tbody",4),l.qCj("selectedValueChange",function(Yt){return K._dateSelected(Yt)})("activeDateChange",function(Yt){return K._updateActiveDate(Yt)})("previewChange",function(Yt){return K._previewChanged(Yt)})("dragStarted",function(Yt){return K.dragStarted.emit(Yt)})("dragEnded",function(Yt){return K._dragEnded(Yt)})("keyup",function(Yt){return K._handleCalendarBodyKeyup(Yt)})("keydown",function(Yt){return K._handleCalendarBodyKeydown(Yt)}),l.C$Y()()),2&se&&(l.yG2(3),l.E7m("ngForOf",K._weekdays),l.yG2(3),l.E7m("label",K._monthLabel)("rows",K._weeks)("todayValue",K._todayDate)("startValue",K._rangeStart)("endValue",K._rangeEnd)("comparisonStart",K._comparisonRangeStart)("comparisonEnd",K._comparisonRangeEnd)("previewStart",K._previewStart)("previewEnd",K._previewEnd)("isRange",K._isRange)("labelMinRequiredCells",3)("activeCell",K._dateAdapter.getDate(K.activeDate)-1)("startDateAccessibleName",K.startDateAccessibleName)("endDateAccessibleName",K.endDateAccessibleName))},dependencies:[h.ay,Tt],encapsulation:2,changeDetection:0})}return ot})();const Mt=24;let it=(()=>{class ot{get activeDate(){return this._activeDate}set activeDate(k){let se=this._activeDate;const K=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(K,this.minDate,this.maxDate),Et(this._dateAdapter,se,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(k){this._selected=k instanceof wt?k:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k)),this._setSelectedYear(k)}get minDate(){return this._minDate}set minDate(k){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get maxDate(){return this._maxDate}set maxDate(k){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}constructor(k,se,K){this._changeDetectorRef=k,this._dateAdapter=se,this._dir=K,this._rerenderSubscription=Y.wH.EMPTY,this.selectedChange=new l._w7,this.yearSelected=new l._w7,this.activeDateChange=new l._w7,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,tt.W)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const se=this._dateAdapter.getYear(this._activeDate)-ct(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let K=0,Be=[];Kthis._createCellForYear(Yt))),Be=[]);this._changeDetectorRef.markForCheck()}_yearSelected(k){const se=k.value,K=this._dateAdapter.createDate(se,0,1),Be=this._getDateFromYear(se);this.yearSelected.emit(K),this.selectedChange.emit(Be)}_updateActiveDate(k){const K=this._activeDate;this.activeDate=this._getDateFromYear(k.value),this._dateAdapter.compareDate(K,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(k){const se=this._activeDate,K=this._isRtl();switch(k.keyCode){case ae.Mx:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,K?1:-1);break;case ae.a4:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,K?-1:1);break;case ae.qI:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case ae.Oq:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case ae.qU:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-ct(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case ae.Mp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Mt-ct(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case ae.u_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,k.altKey?10*-Mt:-Mt);break;case ae.yI:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,k.altKey?10*Mt:Mt);break;case ae.wJ:case ae.Gi:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(se,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),k.preventDefault()}_handleCalendarBodyKeyup(k){(k.keyCode===ae.Gi||k.keyCode===ae.wJ)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:k}),this._selectionKeyPressed=!1)}_getActiveCell(){return ct(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(k){const se=this._dateAdapter.getMonth(this.activeDate),K=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(k,se,1));return this._dateAdapter.createDate(k,se,Math.min(this._dateAdapter.getDate(this.activeDate),K))}_createCellForYear(k){const se=this._dateAdapter.createDate(k,0,1),K=this._dateAdapter.getYearName(se),Be=this.dateClass?this.dateClass(se,"multi-year"):void 0;return new j(k,K,K,this._shouldEnableYear(k),Be)}_shouldEnableYear(k){if(null==k||this.maxDate&&k>this._dateAdapter.getYear(this.maxDate)||this.minDate&&k{class ot{get activeDate(){return this._activeDate}set activeDate(k){let se=this._activeDate;const K=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(K,this.minDate,this.maxDate),this._dateAdapter.getYear(se)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(k){this._selected=k instanceof wt?k:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k)),this._setSelectedMonth(k)}get minDate(){return this._minDate}set minDate(k){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get maxDate(){return this._maxDate}set maxDate(k){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}constructor(k,se,K,Be){this._changeDetectorRef=k,this._dateFormats=se,this._dateAdapter=K,this._dir=Be,this._rerenderSubscription=Y.wH.EMPTY,this.selectedChange=new l._w7,this.monthSelected=new l._w7,this.activeDateChange=new l._w7,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,tt.W)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(k){const se=k.value,K=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),se,1);this.monthSelected.emit(K);const Be=this._getDateFromMonth(se);this.selectedChange.emit(Be)}_updateActiveDate(k){const K=this._activeDate;this.activeDate=this._getDateFromMonth(k.value),this._dateAdapter.compareDate(K,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(k){const se=this._activeDate,K=this._isRtl();switch(k.keyCode){case ae.Mx:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,K?1:-1);break;case ae.a4:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,K?-1:1);break;case ae.qI:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case ae.Oq:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case ae.qU:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case ae.Mp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case ae.u_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,k.altKey?-10:-1);break;case ae.yI:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,k.altKey?10:1);break;case ae.wJ:case ae.Gi:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(se,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),k.preventDefault()}_handleCalendarBodyKeyup(k){(k.keyCode===ae.Gi||k.keyCode===ae.wJ)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:k}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth=this._getMonthInCurrentYear(this._dateAdapter.today()),this._yearLabel=this._dateAdapter.getYearName(this.activeDate);let k=this._dateAdapter.getMonthNames("short");this._months=[[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(se=>se.map(K=>this._createCellForMonth(K,k[K]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(k){return k&&this._dateAdapter.getYear(k)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(k):null}_getDateFromMonth(k){const se=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),k,1),K=this._dateAdapter.getNumDaysInMonth(se);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),k,Math.min(this._dateAdapter.getDate(this.activeDate),K))}_createCellForMonth(k,se){const K=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),k,1),Be=this._dateAdapter.format(K,this._dateFormats.display.monthYearA11yLabel),Yt=this.dateClass?this.dateClass(K,"year"):void 0;return new j(k,se.toLocaleUpperCase(),Be,this._shouldEnableMonth(k),Yt)}_shouldEnableMonth(k){const se=this._dateAdapter.getYear(this.activeDate);if(null==k||this._isYearAndMonthAfterMaxDate(se,k)||this._isYearAndMonthBeforeMinDate(se,k))return!1;if(!this.dateFilter)return!0;for(let Be=this._dateAdapter.createDate(se,k,1);this._dateAdapter.getMonth(Be)==k;Be=this._dateAdapter.addCalendarDays(Be,1))if(this.dateFilter(Be))return!0;return!1}_isYearAndMonthAfterMaxDate(k,se){if(this.maxDate){const K=this._dateAdapter.getYear(this.maxDate),Be=this._dateAdapter.getMonth(this.maxDate);return k>K||k===K&&se>Be}return!1}_isYearAndMonthBeforeMinDate(k,se){if(this.minDate){const K=this._dateAdapter.getYear(this.minDate),Be=this._dateAdapter.getMonth(this.minDate);return k{class ot{constructor(k,se,K,Be,Yt){this._intl=k,this.calendar=se,this._dateAdapter=K,this._dateFormats=Be,this._id="mat-calendar-header-"+_++,this._periodButtonLabelId=`${this._id}-period-label`,this.calendar.stateChanges.subscribe(()=>Yt.markForCheck())}get periodButtonText(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRange(...this._formatMinAndMaxYearLabels())}get periodButtonDescription(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRangeLabel(...this._formatMinAndMaxYearLabels())}get periodButtonLabel(){return"month"==this.calendar.currentView?this._intl.switchToMultiYearViewLabel:this._intl.switchToMonthViewLabel}get prevButtonLabel(){return{month:this._intl.prevMonthLabel,year:this._intl.prevYearLabel,"multi-year":this._intl.prevMultiYearLabel}[this.calendar.currentView]}get nextButtonLabel(){return{month:this._intl.nextMonthLabel,year:this._intl.nextYearLabel,"multi-year":this._intl.nextMultiYearLabel}[this.calendar.currentView]}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-Mt)}nextClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:Mt)}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_isSameView(k,se){return"month"==this.calendar.currentView?this._dateAdapter.getYear(k)==this._dateAdapter.getYear(se)&&this._dateAdapter.getMonth(k)==this._dateAdapter.getMonth(se):"year"==this.calendar.currentView?this._dateAdapter.getYear(k)==this._dateAdapter.getYear(se):Et(this._dateAdapter,k,se,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const se=this._dateAdapter.getYear(this.calendar.activeDate)-ct(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),K=se+Mt-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(se,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(K,0,1))]}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(be),l.GI1((0,l.wd)(()=>S)),l.GI1(b.Wu,8),l.GI1(b.IR,8),l.GI1(l.kD9))};static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:ut,decls:13,vars:11,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["mat-button","","type","button","aria-live","polite",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["mat-icon-button","","type","button",1,"mat-calendar-previous-button",3,"disabled","click"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"disabled","click"],[1,"mat-calendar-hidden-label",3,"id"]],template:function(se,K){1&se&&(l.kPM(),l.I0R(0,"div",0)(1,"div",1)(2,"button",2),l.qCj("click",function(){return K.currentPeriodClicked()}),l.I0R(3,"span",3),l.OEk(4),l.C$Y(),l.S2Z(),l.I0R(5,"svg",4),l.wR5(6,"polygon",5),l.C$Y()(),l.gRP(),l.wR5(7,"div",6),l._Xx(8),l.I0R(9,"button",7),l.qCj("click",function(){return K.previousClicked()}),l.C$Y(),l.I0R(10,"button",8),l.qCj("click",function(){return K.nextClicked()}),l.C$Y()()(),l.I0R(11,"label",9),l.OEk(12),l.C$Y()),2&se&&(l.yG2(2),l.e48("aria-label",K.periodButtonLabel)("aria-describedby",K._periodButtonLabelId),l.yG2(2),l.cNF(K.periodButtonText),l.yG2(),l.eAK("mat-calendar-invert","month"!==K.calendar.currentView),l.yG2(4),l.E7m("disabled",!K.previousEnabled()),l.e48("aria-label",K.prevButtonLabel),l.yG2(),l.E7m("disabled",!K.nextEnabled()),l.e48("aria-label",K.nextButtonLabel),l.yG2(),l.E7m("id",K._periodButtonLabelId),l.yG2(),l.cNF(K.periodButtonDescription))},dependencies:[f.Gw,f.um],encapsulation:2,changeDetection:0})}return ot})(),S=(()=>{class ot{get startAt(){return this._startAt}set startAt(k){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get selected(){return this._selected}set selected(k){this._selected=k instanceof wt?k:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get minDate(){return this._minDate}set minDate(k){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get maxDate(){return this._maxDate}set maxDate(k){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get activeDate(){return this._clampedActiveDate}set activeDate(k){this._clampedActiveDate=this._dateAdapter.clampDate(k,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}get currentView(){return this._currentView}set currentView(k){const se=this._currentView!==k?k:null;this._currentView=k,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),se&&this.viewChanged.emit(se)}constructor(k,se,K,Be){this._dateAdapter=se,this._dateFormats=K,this._changeDetectorRef=Be,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new l._w7,this.yearSelected=new l._w7,this.monthSelected=new l._w7,this.viewChanged=new l._w7(!0),this._userSelection=new l._w7,this._userDragDrop=new l._w7,this._activeDrag=null,this.stateChanges=new R.E,this._intlChanges=k.changes.subscribe(()=>{Be.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new a.KC(this.headerComponent||w),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(k){const se=k.minDate&&!this._dateAdapter.sameDate(k.minDate.previousValue,k.minDate.currentValue)?k.minDate:void 0,K=k.maxDate&&!this._dateAdapter.sameDate(k.maxDate.previousValue,k.maxDate.currentValue)?k.maxDate:void 0,Be=se||K||k.dateFilter;if(Be&&!Be.firstChange){const Yt=this._getCurrentViewComponent();Yt&&(this._changeDetectorRef.detectChanges(),Yt._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(k){const se=k.value;(this.selected instanceof wt||se&&!this._dateAdapter.sameDate(se,this.selected))&&this.selectedChange.emit(se),this._userSelection.emit(k)}_yearSelectedInMultiYearView(k){this.yearSelected.emit(k)}_monthSelectedInYearView(k){this.monthSelected.emit(k)}_goToDateInView(k,se){this.activeDate=k,this.currentView=se}_dragStarted(k){this._activeDrag=k}_dragEnded(k){this._activeDrag&&(k.value&&this._userDragDrop.emit(k),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(be),l.GI1(b.Wu,8),l.GI1(b.IR,8),l.GI1(l.kD9))};static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["mat-calendar"]],viewQuery:function(se,K){if(1&se&&(l.CC$(vt,5),l.CC$(Ce,5),l.CC$(it,5)),2&se){let Be;l.wto(Be=l.Gqi())&&(K.monthView=Be.first),l.wto(Be=l.Gqi())&&(K.yearView=Be.first),l.wto(Be=l.Gqi())&&(K.multiYearView=Be.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],features:[l.M5G([at]),l.SYr],decls:5,vars:5,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content",3,"ngSwitch"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag","activeDateChange","_userSelection","dragStarted","dragEnded",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag","activeDateChange","_userSelection","dragStarted","dragEnded"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange"]],template:function(se,K){1&se&&(l.yuY(0,st,0,0,"ng-template",0),l.I0R(1,"div",1),l.yuY(2,$t,1,11,"mat-month-view",2)(3,oi,1,6,"mat-year-view",3)(4,Jt,1,6,"mat-multi-year-view",4),l.C$Y()),2&se&&(l.E7m("cdkPortalOutlet",K._calendarHeaderPortal),l.yG2(),l.E7m("ngSwitch",K.currentView),l.yG2(),l.E7m("ngSwitchCase","month"),l.yG2(),l.E7m("ngSwitchCase","year"),l.yG2(),l.E7m("ngSwitchCase","multi-year"))},dependencies:[h.Ko,h.Wm,i.Si,a.IP,vt,Ce,it],styles:['.mat-calendar{display:block;font-family:var(--mat-datepicker-calendar-text-font);font-size:var(--mat-datepicker-calendar-text-size)}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size);font-weight:var(--mat-datepicker-calendar-period-button-text-weight)}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color)}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.cdk-high-contrast-active .mat-calendar-arrow{fill:CanvasText}.mat-calendar-previous-button,.mat-calendar-next-button{position:relative}.mat-datepicker-content .mat-calendar-previous-button,.mat-datepicker-content .mat-calendar-next-button{color:var(--mat-datepicker-calendar-navigation-button-icon-color)}.mat-calendar-previous-button::after,.mat-calendar-next-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:"";margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0;color:var(--mat-datepicker-calendar-header-text-color);font-size:var(--mat-datepicker-calendar-header-text-size);font-weight:var(--mat-datepicker-calendar-header-text-weight)}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px;background:var(--mat-datepicker-calendar-header-divider-color)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px) * -1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}.mat-calendar-hidden-label{display:none}'],encapsulation:2,changeDetection:0})}return ot})();const $={transformPanel:(0,kt.gV)("transformPanel",[(0,kt.aK)("void => enter-dropdown",(0,kt.Cs)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,kt.xZ)([(0,kt.wb)({opacity:0,transform:"scale(1, 0.8)"}),(0,kt.wb)({opacity:1,transform:"scale(1, 1)"})]))),(0,kt.aK)("void => enter-dialog",(0,kt.Cs)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,kt.xZ)([(0,kt.wb)({opacity:0,transform:"scale(0.7)"}),(0,kt.wb)({transform:"none",opacity:1})]))),(0,kt.aK)("* => void",(0,kt.Cs)("100ms linear",(0,kt.wb)({opacity:0})))]),fadeInCalendar:(0,kt.gV)("fadeInCalendar",[(0,kt.K2)("void",(0,kt.wb)({opacity:0})),(0,kt.K2)("enter",(0,kt.wb)({opacity:1})),(0,kt.aK)("void => *",(0,kt.Cs)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let ze=0;const At=new l.UbH("mat-datepicker-scroll-strategy"),yt={provide:At,deps:[s.mc],useFactory:function bt(ot){return()=>ot.scrollStrategies.reposition()}},Ue=(0,b.i)(class{constructor(ot){this._elementRef=ot}});let Ft=(()=>{class ot extends Ue{constructor(k,se,K,Be,Yt,wi){super(k),this._changeDetectorRef=se,this._globalModel=K,this._dateAdapter=Be,this._rangeSelectionStrategy=Yt,this._subscriptions=new Y.wH,this._animationDone=new R.E,this._isAnimating=!1,this._actionsPortal=null,this._closeButtonText=wi.closeCalendarLabel}ngOnInit(){this._animationState=this.datepicker.touchUi?"enter-dialog":"enter-dropdown"}ngAfterViewInit(){this._subscriptions.add(this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})),this._calendar.focusActiveCell()}ngOnDestroy(){this._subscriptions.unsubscribe(),this._animationDone.complete()}_handleUserSelection(k){const se=this._model.selection,K=k.value,Be=se instanceof wt;if(Be&&this._rangeSelectionStrategy){const Yt=this._rangeSelectionStrategy.selectionFinished(K,se,k.event);this._model.updateSelection(Yt,this)}else K&&(Be||!this._dateAdapter.sameDate(K,se))&&this._model.add(K);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(k){this._model.updateSelection(k.value,this)}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_handleAnimationEvent(k){this._isAnimating="start"===k.phaseName,this._isAnimating||this._animationDone.next()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(k,se){this._model=k?this._globalModel.clone():this._globalModel,this._actionsPortal=k,se&&this._changeDetectorRef.detectChanges()}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(l.GMv),l.GI1(l.kD9),l.GI1(zt),l.GI1(b.Wu),l.GI1(le,8),l.GI1(be))};static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["mat-datepicker-content"]],viewQuery:function(se,K){if(1&se&&l.CC$(S,5),2&se){let Be;l.wto(Be=l.Gqi())&&(K._calendar=Be.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:3,hostBindings:function(se,K){1&se&&l.wcw("@transformPanel.start",function(Yt){return K._handleAnimationEvent(Yt)})("@transformPanel.done",function(Yt){return K._handleAnimationEvent(Yt)}),2&se&&(l.Swe("@transformPanel",K._animationState),l.eAK("mat-datepicker-content-touch",K.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],features:[l.eg9],decls:5,vars:26,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"id","ngClass","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop"],[3,"cdkPortalOutlet"],["type","button","mat-raised-button","",1,"mat-datepicker-close-button",3,"color","focus","blur","click"]],template:function(se,K){if(1&se&&(l.I0R(0,"div",0)(1,"mat-calendar",1),l.qCj("yearSelected",function(Yt){return K.datepicker._selectYear(Yt)})("monthSelected",function(Yt){return K.datepicker._selectMonth(Yt)})("viewChanged",function(Yt){return K.datepicker._viewChanged(Yt)})("_userSelection",function(Yt){return K._handleUserSelection(Yt)})("_userDragDrop",function(Yt){return K._handleUserDragDrop(Yt)}),l.C$Y(),l.yuY(2,vi,0,0,"ng-template",2),l.I0R(3,"button",3),l.qCj("focus",function(){return K._closeButtonFocused=!0})("blur",function(){return K._closeButtonFocused=!1})("click",function(){return K.datepicker.close()}),l.OEk(4),l.C$Y()()),2&se){let Be;l.eAK("mat-datepicker-content-container-with-custom-header",K.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",K._actionsPortal),l.e48("aria-modal",!0)("aria-labelledby",null!==(Be=K._dialogLabelId)&&void 0!==Be?Be:void 0),l.yG2(),l.E7m("id",K.datepicker.id)("ngClass",K.datepicker.panelClass)("startAt",K.datepicker.startAt)("startView",K.datepicker.startView)("minDate",K.datepicker._getMinDate())("maxDate",K.datepicker._getMaxDate())("dateFilter",K.datepicker._getDateFilter())("headerComponent",K.datepicker.calendarHeaderComponent)("selected",K._getSelected())("dateClass",K.datepicker.dateClass)("comparisonStart",K.comparisonStart)("comparisonEnd",K.comparisonEnd)("@fadeInCalendar","enter")("startDateAccessibleName",K.startDateAccessibleName)("endDateAccessibleName",K.endDateAccessibleName),l.yG2(),l.E7m("cdkPortalOutlet",K._actionsPortal),l.yG2(),l.eAK("cdk-visually-hidden",!K._closeButtonFocused),l.E7m("color",K.color||"primary"),l.yG2(),l.cNF(K._closeButtonText)}},dependencies:[h.QF,f.Gw,i.Eh,a.IP,S],styles:[".mat-datepicker-content{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);display:block;border-radius:4px;background-color:var(--mat-datepicker-calendar-container-background-color);color:var(--mat-datepicker-calendar-container-text-color)}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.ng-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);display:block;max-height:80vh;position:relative;overflow:visible}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}"],encapsulation:2,data:{animation:[$.transformPanel,$.fadeInCalendar]},changeDetection:0})}return ot})(),di=(()=>{class ot{get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(k){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k))}get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(k){this._color=k}get touchUi(){return this._touchUi}set touchUi(k){this._touchUi=(0,Bt.W6)(k)}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(k){const se=(0,Bt.W6)(k);se!==this._disabled&&(this._disabled=se,this.stateChanges.next(void 0))}get restoreFocus(){return this._restoreFocus}set restoreFocus(k){this._restoreFocus=(0,Bt.W6)(k)}get panelClass(){return this._panelClass}set panelClass(k){this._panelClass=(0,Bt._s)(k)}get opened(){return this._opened}set opened(k){(0,Bt.W6)(k)?this.open():this.close()}_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}constructor(k,se,K,Be,Yt,wi,ji){this._overlay=k,this._ngZone=se,this._viewContainerRef=K,this._dateAdapter=Yt,this._dir=wi,this._model=ji,this._inputStateChanges=Y.wH.EMPTY,this._document=(0,l.uUt)(h.Ud),this.startView="month",this._touchUi=!1,this.xPosition="start",this.yPosition="below",this._restoreFocus=!0,this.yearSelected=new l._w7,this.monthSelected=new l._w7,this.viewChanged=new l._w7(!0),this.openedStream=new l._w7,this.closedStream=new l._w7,this._opened=!1,this.id="mat-datepicker-"+ze++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new R.E,this._scrollStrategy=Be}ngOnChanges(k){const se=k.xPosition||k.yPosition;if(se&&!se.firstChange&&this._overlayRef){const K=this._overlayRef.getConfig().positionStrategy;K instanceof s.g$&&(this._setConnectedPositions(K),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(k){this._model.add(k)}_selectYear(k){this.yearSelected.emit(k)}_selectMonth(k){this.monthSelected.emit(k)}_viewChanged(k){this.viewChanged.emit(k)}registerInput(k){return this._inputStateChanges.unsubscribe(),this.datepickerInput=k,this._inputStateChanges=k.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(k){this._actionsPortal=k,this._componentRef?.instance._assignActions(k,!0)}removeActions(k){k===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,Ee.Yx)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const k=this._restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,se=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:K,location:Be}=this._componentRef;K._startExitAnimation(),K._animationDone.pipe((0,Ge.U)(1)).subscribe(()=>{const Yt=this._document.activeElement;k&&(!Yt||Yt===this._document.activeElement||Be.nativeElement.contains(Yt))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()})}k?setTimeout(se):se()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(k){k.datepicker=this,k.color=this.color,k._dialogLabelId=this.datepickerInput.getOverlayLabelId(),k._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const k=this.touchUi,se=new a.KC(Ft,this._viewContainerRef),K=this._overlayRef=this._overlay.create(new s.o9({positionStrategy:k?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[k?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir,scrollStrategy:k?this._overlay.scrollStrategies.block():this._scrollStrategy(),panelClass:"mat-datepicker-"+(k?"dialog":"popup")}));this._getCloseStream(K).subscribe(Be=>{Be&&Be.preventDefault(),this.close()}),K.keydownEvents().subscribe(Be=>{const Yt=Be.keyCode;(Yt===ae.qI||Yt===ae.Oq||Yt===ae.Mx||Yt===ae.a4||Yt===ae.u_||Yt===ae.yI)&&Be.preventDefault()}),this._componentRef=K.attach(se),this._forwardContentValues(this._componentRef.instance),k||this._ngZone.onStable.pipe((0,Ge.U)(1)).subscribe(()=>K.updatePosition())}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return this._overlay.position().global().centerHorizontally().centerVertically()}_getDropdownStrategy(){const k=this._overlay.position().flexibleConnectedTo(this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(k)}_setConnectedPositions(k){const se="end"===this.xPosition?"end":"start",K="start"===se?"end":"start",Be="above"===this.yPosition?"bottom":"top",Yt="top"===Be?"bottom":"top";return k.withPositions([{originX:se,originY:Yt,overlayX:se,overlayY:Be},{originX:se,originY:Be,overlayX:se,overlayY:Yt},{originX:K,originY:Yt,overlayX:K,overlayY:Be},{originX:K,originY:Be,overlayX:K,overlayY:Yt}])}_getCloseStream(k){const se=["ctrlKey","shiftKey","metaKey"];return(0,J.U)(k.backdropClick(),k.detachments(),k.keydownEvents().pipe((0,gt.I)(K=>K.keyCode===ae.UX&&!(0,ae.Yp)(K)||this.datepickerInput&&(0,ae.Yp)(K,"altKey")&&K.keyCode===ae.qI&&se.every(Be=>!(0,ae.Yp)(K,Be)))))}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(s.mc),l.GI1(l.WW2),l.GI1(l.y8U),l.GI1(At),l.GI1(b.Wu,8),l.GI1(Ie.yG,8),l.GI1(zt))};static#t=this.\u0275dir=l.Sc5({type:ot,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:"touchUi",disabled:"disabled",xPosition:"xPosition",yPosition:"yPosition",restoreFocus:"restoreFocus",dateClass:"dateClass",panelClass:"panelClass",opened:"opened"},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[l.SYr]})}return ot})(),Ei=(()=>{class ot extends di{static#e=this.\u0275fac=(()=>{let k;return function(K){return(k||(k=l.otF(ot)))(K||ot)}})();static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[l.M5G([at,{provide:di,useExisting:ot}]),l.eg9],decls:0,vars:0,template:function(se,K){},encapsulation:2,changeDetection:0})}return ot})();class Vt{constructor(mi,k){this.target=mi,this.targetElement=k,this.value=this.target.value}}let Ci=(()=>{class ot{get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(k){this._assignValueProgrammatically(k)}get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(k){const se=(0,Bt.W6)(k),K=this._elementRef.nativeElement;this._disabled!==se&&(this._disabled=se,this.stateChanges.next(void 0)),se&&this._isInitialized&&K.blur&&K.blur()}_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(k){this._model=k,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(se=>{if(this._shouldHandleChangeEvent(se)){const K=this._getValueFromModel(se.selection);this._lastValueValid=this._isValidValue(K),this._cvaOnChange(K),this._onTouched(),this._formatValue(K),this.dateInput.emit(new Vt(this,this._elementRef.nativeElement)),this.dateChange.emit(new Vt(this,this._elementRef.nativeElement))}})}constructor(k,se,K){this._elementRef=k,this._dateAdapter=se,this._dateFormats=K,this.dateChange=new l._w7,this.dateInput=new l._w7,this.stateChanges=new R.E,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=Y.wH.EMPTY,this._localeSubscription=Y.wH.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=Be=>{const Yt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Be.value));return!Yt||this._matchesFilter(Yt)?null:{matDatepickerFilter:!0}},this._minValidator=Be=>{const Yt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Be.value)),wi=this._getMinDate();return!wi||!Yt||this._dateAdapter.compareDate(wi,Yt)<=0?null:{matDatepickerMin:{min:wi,actual:Yt}}},this._maxValidator=Be=>{const Yt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Be.value)),wi=this._getMaxDate();return!wi||!Yt||this._dateAdapter.compareDate(wi,Yt)>=0?null:{matDatepickerMax:{max:wi,actual:Yt}}},this._lastValueValid=!1,this._localeSubscription=se.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(k){(function We(ot,mi){const k=Object.keys(ot);for(let se of k){const{previousValue:K,currentValue:Be}=ot[se];if(!mi.isDateInstance(K)||!mi.isDateInstance(Be))return!0;if(!mi.sameDate(K,Be))return!0}return!1})(k,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(k){this._validatorOnChange=k}validate(k){return this._validator?this._validator(k):null}writeValue(k){this._assignValueProgrammatically(k)}registerOnChange(k){this._cvaOnChange=k}registerOnTouched(k){this._onTouched=k}setDisabledState(k){this.disabled=k}_onKeydown(k){(0,ae.Yp)(k,"altKey")&&k.keyCode===ae.Oq&&["ctrlKey","shiftKey","metaKey"].every(Be=>!(0,ae.Yp)(k,Be))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),k.preventDefault())}_onInput(k){const se=this._lastValueValid;let K=this._dateAdapter.parse(k,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(K),K=this._dateAdapter.getValidDateOrNull(K);const Be=!this._dateAdapter.sameDate(K,this.value);!K||Be?this._cvaOnChange(K):(k&&!this.value&&this._cvaOnChange(K),se!==this._lastValueValid&&this._validatorOnChange()),Be&&(this._assignValue(K),this.dateInput.emit(new Vt(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new Vt(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(k){this._elementRef.nativeElement.value=null!=k?this._dateAdapter.format(k,this._dateFormats.display.dateInput):""}_assignValue(k){this._model?(this._assignValueToModel(k),this._pendingValue=null):this._pendingValue=k}_isValidValue(k){return!k||this._dateAdapter.isValid(k)}_parentDisabled(){return!1}_assignValueProgrammatically(k){k=this._dateAdapter.deserialize(k),this._lastValueValid=this._isValidValue(k),k=this._dateAdapter.getValidDateOrNull(k),this._assignValue(k),this._formatValue(k)}_matchesFilter(k){const se=this._getDateFilter();return!se||se(k)}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(l.GMv),l.GI1(b.Wu,8),l.GI1(b.IR,8))};static#t=this.\u0275dir=l.Sc5({type:ot,inputs:{value:"value",disabled:"disabled"},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[l.SYr]})}return ot})();const nt={provide:Ye.Y6,useExisting:(0,l.wd)(()=>si),multi:!0},Ot={provide:Ye.WM,useExisting:(0,l.wd)(()=>si),multi:!0};let si=(()=>{class ot extends Ci{set matDatepicker(k){k&&(this._datepicker=k,this._closedSubscription=k.closedStream.subscribe(()=>this._onTouched()),this._registerModel(k.registerInput(this)))}get min(){return this._min}set min(k){const se=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k));this._dateAdapter.sameDate(se,this._min)||(this._min=se,this._validatorOnChange())}get max(){return this._max}set max(k){const se=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(k));this._dateAdapter.sameDate(se,this._max)||(this._max=se,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(k){const se=this._matchesFilter(this.value);this._dateFilter=k,this._matchesFilter(this.value)!==se&&this._validatorOnChange()}constructor(k,se,K,Be){super(k,se,K),this._formField=Be,this._closedSubscription=Y.wH.EMPTY,this._validator=Ye.AQ.compose(super._getValidators())}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(k){return k}_assignValueToModel(k){this._model&&this._model.updateSelection(k,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(k){return k.source!==this}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(l.GMv),l.GI1(b.Wu,8),l.GI1(b.IR,8),l.GI1(et.Y$,8))};static#t=this.\u0275dir=l.Sc5({type:ot,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(se,K){1&se&&l.qCj("input",function(Yt){return K._onInput(Yt.target.value)})("change",function(){return K._onChange()})("blur",function(){return K._onBlur()})("keydown",function(Yt){return K._onKeydown(Yt)}),2&se&&(l.SoX("disabled",K.disabled),l.e48("aria-haspopup",K._datepicker?"dialog":null)("aria-owns",(null==K._datepicker?null:K._datepicker.opened)&&K._datepicker.id||null)("min",K.min?K._dateAdapter.toIso8601(K.min):null)("max",K.max?K._dateAdapter.toIso8601(K.max):null)("data-mat-calendar",K._datepicker?K._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[l.Wk5.None,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[l.M5G([nt,Ot,{provide:Q.wq,useExisting:ot}]),l.eg9]})}return ot})(),yi=(()=>{class ot{static#e=this.\u0275fac=function(se){return new(se||ot)};static#t=this.\u0275dir=l.Sc5({type:ot,selectors:[["","matDatepickerToggleIcon",""]]})}return ot})(),Ti=(()=>{class ot{get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(k){this._disabled=(0,Bt.W6)(k)}constructor(k,se,K){this._intl=k,this._changeDetectorRef=se,this._stateChanges=Y.wH.EMPTY;const Be=Number(K);this.tabIndex=Be||0===Be?Be:null}ngOnChanges(k){k.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(k){this.datepicker&&!this.disabled&&(this.datepicker.open(),k.stopPropagation())}_watchStateChanges(){const k=this.datepicker?this.datepicker.stateChanges:(0,ie.of)(),se=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,ie.of)(),K=this.datepicker?(0,J.U)(this.datepicker.openedStream,this.datepicker.closedStream):(0,ie.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,J.U)(this._intl.changes,k,se,K).subscribe(()=>this._changeDetectorRef.markForCheck())}static#e=this.\u0275fac=function(se){return new(se||ot)(l.GI1(be),l.GI1(l.kD9),l.gJ8("tabindex"))};static#t=this.\u0275cmp=l.In1({type:ot,selectors:[["mat-datepicker-toggle"]],contentQueries:function(se,K,Be){if(1&se&&l.szK(Be,yi,5),2&se){let Yt;l.wto(Yt=l.Gqi())&&(K._customIcon=Yt.first)}},viewQuery:function(se,K){if(1&se&&l.CC$(je,5),2&se){let Be;l.wto(Be=l.Gqi())&&(K._button=Be.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(se,K){1&se&&l.qCj("click",function(Yt){return K._open(Yt)}),2&se&&(l.e48("tabindex",null)("data-mat-calendar",K.datepicker?K.datepicker.id:null),l.eAK("mat-datepicker-toggle-active",K.datepicker&&K.datepicker.opened)("mat-accent",K.datepicker&&"accent"===K.datepicker.color)("mat-warn",K.datepicker&&"warn"===K.datepicker.color))},inputs:{datepicker:[l.Wk5.None,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[l.Wk5.None,"aria-label","ariaLabel"],disabled:"disabled",disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[l.SYr],ngContentSelectors:Ve,decls:4,vars:6,consts:[["mat-icon-button","","type","button",3,"disabled","disableRipple"],["button",""],["class","mat-datepicker-toggle-default-icon","viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",4,"ngIf"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(se,K){1&se&&(l.kPM(Le),l.I0R(0,"button",0,1),l.yuY(2,De,2,0,"svg",2),l._Xx(3),l.C$Y()),2&se&&(l.E7m("disabled",K.disabled)("disableRipple",K.disableRipple),l.e48("aria-haspopup",K.datepicker?"dialog":null)("aria-label",K.ariaLabel||K._intl.openCalendarLabel)("tabindex",K.disabled?-1:K.tabIndex),l.yG2(2),l.E7m("ngIf",!K._customIcon))},dependencies:[h.u_,f.um],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color)}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color)}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}"],encapsulation:2,changeDetection:0})}return ot})(),Li=(()=>{class ot{static#e=this.\u0275fac=function(se){return new(se||ot)};static#t=this.\u0275mod=l.a4G({type:ot});static#i=this.\u0275inj=l.s3X({providers:[be,yt],imports:[h.MD,f.oJ,s.Y1,i.Ux,a.g$,b.AN,g.uU]})}return ot})()},2864:(lt,me,d)=>{"use strict";d.d(me,{sR:()=>we,qW:()=>Ut,Yp:()=>Dt,iU:()=>zt,sr:()=>Te,yI:()=>be,WQ:()=>wt});var i=d(68),s=d(1368),a=d(2116),h=d(4723),l=d(5792),f=d(2488),g=d(7800),b=d(5657),R=d(1424),Y=d(2700),J=d(1900),ie=d(5568);function ae(pt,le){}class Ie{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0,this.closeOnOverlayDetachments=!0}}let Ge=(()=>{class pt extends f.Ef{constructor(xe,Pe,ht,Ht,vt,Mt,fe,it){super(),this._elementRef=xe,this._focusTrapFactory=Pe,this._config=Ht,this._interactivityChecker=vt,this._ngZone=Mt,this._overlayRef=fe,this._focusMonitor=it,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this._ariaLabelledByQueue=[],this.attachDomPortal=Et=>{this._portalOutlet.hasAttached();const ct=this._portalOutlet.attachDomPortal(Et);return this._contentAttached(),ct},this._document=ht,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal(xe){this._portalOutlet.hasAttached();const Pe=this._portalOutlet.attachComponentPortal(xe);return this._contentAttached(),Pe}attachTemplatePortal(xe){this._portalOutlet.hasAttached();const Pe=this._portalOutlet.attachTemplatePortal(xe);return this._contentAttached(),Pe}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(xe,Pe){this._interactivityChecker.isFocusable(xe)||(xe.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const ht=()=>{xe.removeEventListener("blur",ht),xe.removeEventListener("mousedown",ht),xe.removeAttribute("tabindex")};xe.addEventListener("blur",ht),xe.addEventListener("mousedown",ht)})),xe.focus(Pe)}_focusByCssSelector(xe,Pe){let ht=this._elementRef.nativeElement.querySelector(xe);ht&&this._forceFocus(ht,Pe)}_trapFocus(){const xe=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||xe.focus();break;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(Pe=>{Pe||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const xe=this._config.restoreFocus;let Pe=null;if("string"==typeof xe?Pe=this._document.querySelector(xe):"boolean"==typeof xe?Pe=xe?this._elementFocusedBeforeDialogWasOpened:null:xe&&(Pe=xe),this._config.restoreFocus&&Pe&&"function"==typeof Pe.focus){const ht=(0,l.Yx)(),Ht=this._elementRef.nativeElement;(!ht||ht===this._document.body||ht===Ht||Ht.contains(ht))&&(this._focusMonitor?(this._focusMonitor.focusVia(Pe,this._closeInteractionType),this._closeInteractionType=null):Pe.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const xe=this._elementRef.nativeElement,Pe=(0,l.Yx)();return xe===Pe||xe.contains(Pe)}_initializeFocusTrap(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,l.Yx)())}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)(a.GI1(a.GMv),a.GI1(h.G),a.GI1(s.Ud,8),a.GI1(Ie),a.GI1(h.OE),a.GI1(a.WW2),a.GI1(i.aq),a.GI1(h.Kk))};static#t=this.\u0275cmp=a.In1({type:pt,selectors:[["cdk-dialog-container"]],viewQuery:function(Pe,ht){if(1&Pe&&a.CC$(f.IP,7),2&Pe){let Ht;a.wto(Ht=a.Gqi())&&(ht._portalOutlet=Ht.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(Pe,ht){2&Pe&&a.e48("id",ht._config.id||null)("role",ht._config.role)("aria-modal",ht._config.ariaModal)("aria-labelledby",ht._config.ariaLabel?null:ht._ariaLabelledByQueue[0])("aria-label",ht._config.ariaLabel)("aria-describedby",ht._config.ariaDescribedBy||null)},features:[a.eg9],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(Pe,ht){1&Pe&&a.yuY(0,ae,0,0,"ng-template",0)},dependencies:[f.IP],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2})}return pt})();class tt{constructor(le,xe){this.overlayRef=le,this.config=xe,this.closed=new b.E,this.disableClose=xe.disableClose,this.backdropClick=le.backdropClick(),this.keydownEvents=le.keydownEvents(),this.outsidePointerEvents=le.outsidePointerEvents(),this.id=xe.id,this.keydownEvents.subscribe(Pe=>{Pe.keyCode===g.UX&&!this.disableClose&&!(0,g.Yp)(Pe)&&(Pe.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})}),this._detachSubscription=le.detachments().subscribe(()=>{!1!==xe.closeOnOverlayDetachments&&this.close()})}close(le,xe){if(this.containerInstance){const Pe=this.closed;this.containerInstance._closeInteractionType=xe?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),Pe.next(le),Pe.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(le="",xe=""){return this.overlayRef.updateSize({width:le,height:xe}),this}addPanelClass(le){return this.overlayRef.addPanelClass(le),this}removePanelClass(le){return this.overlayRef.removePanelClass(le),this}}const gt=new a.UbH("DialogScrollStrategy"),Bt=new a.UbH("DialogData"),kt=new a.UbH("DefaultDialogConfig"),et={provide:gt,deps:[i.mc],useFactory:function Ye(pt){return()=>pt.scrollStrategies.block()}};let Q=0,_e=(()=>{class pt{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}constructor(xe,Pe,ht,Ht,vt,Mt){this._overlay=xe,this._injector=Pe,this._defaultOptions=ht,this._parentDialog=Ht,this._overlayContainer=vt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new b.E,this._afterOpenedAtThisLevel=new b.E,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,R.Q)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,ie.W)(void 0))),this._scrollStrategy=Mt}open(xe,Pe){(Pe={...this._defaultOptions||new Ie,...Pe}).id=Pe.id||"cdk-dialog-"+Q++,Pe.id&&this.getDialogById(Pe.id);const Ht=this._getOverlayConfig(Pe),vt=this._overlay.create(Ht),Mt=new tt(vt,Pe),fe=this._attachContainer(vt,Mt,Pe);return Mt.containerInstance=fe,this._attachDialogContent(xe,Mt,fe,Pe),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(Mt),Mt.closed.subscribe(()=>this._removeOpenDialog(Mt,!0)),this.afterOpened.next(Mt),Mt}closeAll(){ye(this.openDialogs,xe=>xe.close())}getDialogById(xe){return this.openDialogs.find(Pe=>Pe.id===xe)}ngOnDestroy(){ye(this._openDialogsAtThisLevel,xe=>{!1===xe.config.closeOnDestroy&&this._removeOpenDialog(xe,!1)}),ye(this._openDialogsAtThisLevel,xe=>xe.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(xe){const Pe=new i.o9({positionStrategy:xe.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:xe.scrollStrategy||this._scrollStrategy(),panelClass:xe.panelClass,hasBackdrop:xe.hasBackdrop,direction:xe.direction,minWidth:xe.minWidth,minHeight:xe.minHeight,maxWidth:xe.maxWidth,maxHeight:xe.maxHeight,width:xe.width,height:xe.height,disposeOnNavigation:xe.closeOnNavigation});return xe.backdropClass&&(Pe.backdropClass=xe.backdropClass),Pe}_attachContainer(xe,Pe,ht){const Ht=ht.injector||ht.viewContainerRef?.injector,vt=[{provide:Ie,useValue:ht},{provide:tt,useValue:Pe},{provide:i.aq,useValue:xe}];let Mt;ht.container?"function"==typeof ht.container?Mt=ht.container:(Mt=ht.container.type,vt.push(...ht.container.providers(ht))):Mt=Ge;const fe=new f.KC(Mt,ht.viewContainerRef,a.zZn.create({parent:Ht||this._injector,providers:vt}),ht.componentFactoryResolver);return xe.attach(fe).instance}_attachDialogContent(xe,Pe,ht,Ht){if(xe instanceof a.Yw2){const vt=this._createInjector(Ht,Pe,ht,void 0);let Mt={$implicit:Ht.data,dialogRef:Pe};Ht.templateContext&&(Mt={...Mt,..."function"==typeof Ht.templateContext?Ht.templateContext():Ht.templateContext}),ht.attachTemplatePortal(new f.CC(xe,null,Mt,vt))}else{const vt=this._createInjector(Ht,Pe,ht,this._injector),Mt=ht.attachComponentPortal(new f.KC(xe,Ht.viewContainerRef,vt,Ht.componentFactoryResolver));Pe.componentRef=Mt,Pe.componentInstance=Mt.instance}}_createInjector(xe,Pe,ht,Ht){const vt=xe.injector||xe.viewContainerRef?.injector,Mt=[{provide:Bt,useValue:xe.data},{provide:tt,useValue:Pe}];return xe.providers&&("function"==typeof xe.providers?Mt.push(...xe.providers(Pe,xe,ht)):Mt.push(...xe.providers)),xe.direction&&(!vt||!vt.get(J.yG,null,{optional:!0}))&&Mt.push({provide:J.yG,useValue:{value:xe.direction,change:(0,Y.of)()}}),a.zZn.create({parent:vt||Ht,providers:Mt})}_removeOpenDialog(xe,Pe){const ht=this.openDialogs.indexOf(xe);ht>-1&&(this.openDialogs.splice(ht,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Ht,vt)=>{Ht?vt.setAttribute("aria-hidden",Ht):vt.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),Pe&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const xe=this._overlayContainer.getContainerElement();if(xe.parentElement){const Pe=xe.parentElement.children;for(let ht=Pe.length-1;ht>-1;ht--){const Ht=Pe[ht];Ht!==xe&&"SCRIPT"!==Ht.nodeName&&"STYLE"!==Ht.nodeName&&!Ht.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Ht,Ht.getAttribute("aria-hidden")),Ht.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const xe=this._parentDialog;return xe?xe._getAfterAllClosed():this._afterAllClosedAtThisLevel}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)(a.CoB(i.mc),a.CoB(a.zZn),a.CoB(kt,8),a.CoB(pt,12),a.CoB(i.Y),a.CoB(gt))};static#t=this.\u0275prov=a.wxM({token:pt,factory:pt.\u0275fac})}return pt})();function ye(pt,le){let xe=pt.length;for(;xe--;)le(pt[xe])}let Re=(()=>{class pt{static#e=this.\u0275fac=function(Pe){return new(Pe||pt)};static#t=this.\u0275mod=a.a4G({type:pt});static#i=this.\u0275inj=a.s3X({providers:[_e,et],imports:[i.Y1,f.g$,h.Ux,f.g$]})}return pt})();var Xe=d(7712),$e=d(3412),oe=d(6684),ut=d(3992),st=d(3576);function oi(pt,le){}d(9684);class Jt{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.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const vi="mdc-dialog--open",je="mdc-dialog--opening",De="mdc-dialog--closing";let te=(()=>{class pt extends Ge{constructor(xe,Pe,ht,Ht,vt,Mt,fe,it){super(xe,Pe,ht,Ht,vt,Mt,fe,it),this._animationStateChanged=new a._w7}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(xe){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:xe})}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)(a.GI1(a.GMv),a.GI1(h.G),a.GI1(s.Ud,8),a.GI1(Jt),a.GI1(h.OE),a.GI1(a.WW2),a.GI1(i.aq),a.GI1(h.Kk))};static#t=this.\u0275cmp=a.In1({type:pt,selectors:[["ng-component"]],features:[a.eg9],decls:0,vars:0,template:function(Pe,ht){},encapsulation:2})}return pt})();const ge="--mat-dialog-transition-duration";function xt(pt){return null==pt?null:"number"==typeof pt?pt:pt.endsWith("ms")?(0,Xe.wZ)(pt.substring(0,pt.length-2)):pt.endsWith("s")?1e3*(0,Xe.wZ)(pt.substring(0,pt.length-1)):"0"===pt?0:null}let Ne=(()=>{class pt extends te{constructor(xe,Pe,ht,Ht,vt,Mt,fe,it,Et){super(xe,Pe,ht,Ht,vt,Mt,fe,Et),this._animationMode=it,this._animationsEnabled="NoopAnimations"!==this._animationMode,this._hostElement=this._elementRef.nativeElement,this._enterAnimationDuration=this._animationsEnabled?xt(this._config.enterAnimationDuration)??150:0,this._exitAnimationDuration=this._animationsEnabled?xt(this._config.exitAnimationDuration)??75:0,this._animationTimer=null,this._finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)},this._finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})}}_contentAttached(){super._contentAttached(),this._startOpenAnimation()}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(ge,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(je,vi)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(vi),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(vi),this._animationsEnabled?(this._hostElement.style.setProperty(ge,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(De)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_clearAnimationClasses(){this._hostElement.classList.remove(je,De)}_waitForAnimationToComplete(xe,Pe){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(Pe,xe)}_requestAnimationFrame(xe){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(xe):xe()})}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)(a.GI1(a.GMv),a.GI1(h.G),a.GI1(s.Ud,8),a.GI1(Jt),a.GI1(h.OE),a.GI1(a.WW2),a.GI1(i.aq),a.GI1(a.qwP,8),a.GI1(h.Kk))};static#t=this.\u0275cmp=a.In1({type:pt,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:8,hostBindings:function(Pe,ht){2&Pe&&(a.SoX("id",ht._config.id),a.e48("aria-modal",ht._config.ariaModal)("role",ht._config.role)("aria-labelledby",ht._config.ariaLabel?null:ht._ariaLabelledByQueue[0])("aria-label",ht._config.ariaLabel)("aria-describedby",ht._config.ariaDescribedBy||null),a.eAK("_mat-animation-noopable",!ht._animationsEnabled))},features:[a.eg9],decls:3,vars:0,consts:[[1,"mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(Pe,ht){1&Pe&&(a.I0R(0,"div",0)(1,"div",1),a.yuY(2,oi,0,0,"ng-template",2),a.C$Y()())},dependencies:[f.IP],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-dialog,.mdc-dialog__scrim{position:fixed;top:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.mdc-dialog{display:none;z-index:var(--mdc-dialog-z-index, 7)}.mdc-dialog .mdc-dialog__content{padding:20px 24px 20px 24px}.mdc-dialog .mdc-dialog__surface{min-width:280px}@media(max-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:calc(100vw - 32px)}}@media(min-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:560px}}.mdc-dialog .mdc-dialog__surface{max-height:calc(100% - 32px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-width:none}@media(max-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px;width:560px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 112px)}}@media(max-width: 720px)and (min-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:560px}}@media(max-width: 720px)and (max-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:calc(100vh - 160px)}}@media(max-width: 720px)and (min-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px}}@media(max-width: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-height: 400px),(max-width: 600px),(min-width: 720px)and (max-height: 400px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{height:100%;max-height:100vh;max-width:100vw;width:100vw;border-radius:0}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{order:-1;left:-12px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__header{padding:0 16px 9px;justify-content:flex-start}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__title{margin-left:calc(16px - 2 * 12px)}}@media(min-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 400px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}.mdc-dialog.mdc-dialog__scrim--hidden .mdc-dialog__scrim{opacity:0}.mdc-dialog__scrim{opacity:0;z-index:-1}.mdc-dialog__container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;transform:scale(0.8);opacity:0;pointer-events:none}.mdc-dialog__surface{position:relative;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;max-width:100%;max-height:100%;pointer-events:auto;overflow-y:auto;outline:0}.mdc-dialog__surface .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}[dir=rtl] .mdc-dialog__surface,.mdc-dialog__surface[dir=rtl]{text-align:right}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-dialog__surface{outline:2px solid windowText}}.mdc-dialog__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-dialog__surface::before{border-color:CanvasText}}@media screen and (-ms-high-contrast: active),screen and (-ms-high-contrast: none){.mdc-dialog__surface::before{content:none}}.mdc-dialog__title{display:block;margin-top:0;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:0 24px 9px}.mdc-dialog__title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mdc-dialog__title,.mdc-dialog__title[dir=rtl]{text-align:right}.mdc-dialog--scrollable .mdc-dialog__title{margin-bottom:1px;padding-bottom:15px}.mdc-dialog--fullscreen .mdc-dialog__header{align-items:baseline;border-bottom:1px solid rgba(0,0,0,0);display:inline-flex;justify-content:space-between;padding:0 24px 9px;z-index:1}@media screen and (forced-colors: active){.mdc-dialog--fullscreen .mdc-dialog__header{border-bottom-color:CanvasText}}.mdc-dialog--fullscreen .mdc-dialog__header .mdc-dialog__close{right:-12px}.mdc-dialog--fullscreen .mdc-dialog__title{margin-bottom:0;padding:0;border-bottom:0}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__title{border-bottom:0;margin-bottom:0}.mdc-dialog--fullscreen .mdc-dialog__close{top:5px}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--fullscreen--titleless .mdc-dialog__close{margin-top:4px}.mdc-dialog--fullscreen--titleless.mdc-dialog--scrollable .mdc-dialog__close{margin-top:0}.mdc-dialog__content{flex-grow:1;box-sizing:border-box;margin:0;overflow:auto}.mdc-dialog__content>:first-child{margin-top:0}.mdc-dialog__content>:last-child{margin-bottom:0}.mdc-dialog__title+.mdc-dialog__content,.mdc-dialog__header+.mdc-dialog__content{padding-top:0}.mdc-dialog--scrollable .mdc-dialog__title+.mdc-dialog__content{padding-top:8px;padding-bottom:8px}.mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:6px 0 0}.mdc-dialog--scrollable .mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:0}.mdc-dialog__actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--stacked .mdc-dialog__actions{flex-direction:column;align-items:flex-end}.mdc-dialog__button{margin-left:8px;margin-right:0;max-width:100%;text-align:right}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{margin-left:0;margin-right:8px}.mdc-dialog__button:first-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button:first-child,.mdc-dialog__button:first-child[dir=rtl]{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{text-align:left}.mdc-dialog--stacked .mdc-dialog__button:not(:first-child){margin-top:12px}.mdc-dialog--open,.mdc-dialog--opening,.mdc-dialog--closing{display:flex}.mdc-dialog--opening .mdc-dialog__scrim{transition:opacity 150ms linear}.mdc-dialog--opening .mdc-dialog__container{transition:opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-dialog--closing .mdc-dialog__scrim,.mdc-dialog--closing .mdc-dialog__container{transition:opacity 75ms linear}.mdc-dialog--closing .mdc-dialog__container{transform:none}.mdc-dialog--open .mdc-dialog__scrim{opacity:1}.mdc-dialog--open .mdc-dialog__container{transform:none;opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim{opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{transition:opacity 75ms linear}.mdc-dialog--open.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim{transition:opacity 150ms linear}.mdc-dialog__surface-scrim{display:none;opacity:0;position:absolute;width:100%;height:100%;z-index:1}.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{display:block}.mdc-dialog-scroll-lock{overflow:hidden}.mdc-dialog--no-content-padding .mdc-dialog__content{padding:0}.mdc-dialog--sheet .mdc-dialog__container .mdc-dialog__close{right:12px;top:9px;position:absolute;z-index:1}.mdc-dialog__scrim--removed{pointer-events:none}.mdc-dialog__scrim--removed .mdc-dialog__scrim,.mdc-dialog__scrim--removed .mdc-dialog__surface-scrim{display:none}.mat-mdc-dialog-content{max-height:65vh}.mat-mdc-dialog-container{position:static;display:block}.mat-mdc-dialog-container,.mat-mdc-dialog-container .mdc-dialog__container,.mat-mdc-dialog-container .mdc-dialog__surface{max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mat-mdc-dialog-container .mdc-dialog__surface{display:block;width:100%;height:100%}.mat-mdc-dialog-container{--mdc-dialog-container-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mdc-dialog-container-shadow-color:#000;--mdc-dialog-container-shape:4px;--mdc-dialog-container-elevation: var(--mdc-dialog-container-elevation-shadow);outline:0}.mat-mdc-dialog-container .mdc-dialog__surface{background-color:var(--mdc-dialog-container-color, white)}.mat-mdc-dialog-container .mdc-dialog__surface{box-shadow:var(--mdc-dialog-container-elevation, 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12))}.mat-mdc-dialog-container .mdc-dialog__surface{border-radius:var(--mdc-dialog-container-shape, 4px)}.mat-mdc-dialog-container .mdc-dialog__title{font-family:var(--mdc-dialog-subhead-font, Roboto, sans-serif);line-height:var(--mdc-dialog-subhead-line-height, 1.5rem);font-size:var(--mdc-dialog-subhead-size, 1rem);font-weight:var(--mdc-dialog-subhead-weight, 400);letter-spacing:var(--mdc-dialog-subhead-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__title{color:var(--mdc-dialog-subhead-color, rgba(0, 0, 0, 0.87))}.mat-mdc-dialog-container .mdc-dialog__content{font-family:var(--mdc-dialog-supporting-text-font, Roboto, sans-serif);line-height:var(--mdc-dialog-supporting-text-line-height, 1.5rem);font-size:var(--mdc-dialog-supporting-text-size, 1rem);font-weight:var(--mdc-dialog-supporting-text-weight, 400);letter-spacing:var(--mdc-dialog-supporting-text-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__content{color:var(--mdc-dialog-supporting-text-color, rgba(0, 0, 0, 0.6))}.mat-mdc-dialog-container .mdc-dialog__container{transition-duration:var(--mat-dialog-transition-duration, 0ms)}.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__container{transition:none}.mat-mdc-dialog-content{display:block}.mat-mdc-dialog-actions{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}'],encapsulation:2})}return pt})();class be{constructor(le,xe,Pe){this._ref=le,this._containerInstance=Pe,this._afterOpened=new b.E,this._beforeClosed=new b.E,this._state=0,this.disableClose=xe.disableClose,this.id=le.id,Pe._animationStateChanged.pipe((0,oe.I)(ht=>"opened"===ht.state),(0,ut.U)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),Pe._animationStateChanged.pipe((0,oe.I)(ht=>"closed"===ht.state),(0,ut.U)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),le.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,$e.U)(this.backdropClick(),this.keydownEvents().pipe((0,oe.I)(ht=>ht.keyCode===g.UX&&!this.disableClose&&!(0,g.Yp)(ht)))).subscribe(ht=>{this.disableClose||(ht.preventDefault(),function j(pt,le,xe){pt._closeInteractionType=le,pt.close(xe)}(this,"keydown"===ht.type?"keyboard":"mouse"))})}close(le){this._result=le,this._containerInstance._animationStateChanged.pipe((0,oe.I)(xe=>"closing"===xe.state),(0,ut.U)(1)).subscribe(xe=>{this._beforeClosed.next(le),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),xe.totalTime+100)}),this._state=1,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(le){let xe=this._ref.config.positionStrategy;return le&&(le.left||le.right)?le.left?xe.left(le.left):xe.right(le.right):xe.centerHorizontally(),le&&(le.top||le.bottom)?le.top?xe.top(le.top):xe.bottom(le.bottom):xe.centerVertically(),this._ref.updatePosition(),this}updateSize(le="",xe=""){return this._ref.updateSize(le,xe),this}addPanelClass(le){return this._ref.addPanelClass(le),this}removePanelClass(le){return this._ref.removePanelClass(le),this}getState(){return this._state}_finishDialogClose(){this._state=2,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}const we=new a.UbH("MatMdcDialogData"),N=new a.UbH("mat-mdc-dialog-default-options"),U=new a.UbH("mat-mdc-dialog-scroll-strategy"),Tt={provide:U,deps:[i.mc],useFactory:function Fe(pt){return()=>pt.scrollStrategies.block()}};let Lt=0,Kt=(()=>{class pt{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const xe=this._parentDialog;return xe?xe._getAfterAllClosed():this._afterAllClosedAtThisLevel}constructor(xe,Pe,ht,Ht,vt,Mt,fe,it,Et,ct){this._overlay=xe,this._defaultOptions=ht,this._parentDialog=Ht,this._dialogRefConstructor=fe,this._dialogContainerType=it,this._dialogDataToken=Et,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new b.E,this._afterOpenedAtThisLevel=new b.E,this._idPrefix="mat-dialog-",this.dialogConfigClass=Jt,this.afterAllClosed=(0,R.Q)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,ie.W)(void 0))),this._scrollStrategy=Mt,this._dialog=Pe.get(_e)}open(xe,Pe){let ht;(Pe={...this._defaultOptions||new Jt,...Pe}).id=Pe.id||`${this._idPrefix}${Lt++}`,Pe.scrollStrategy=Pe.scrollStrategy||this._scrollStrategy();const Ht=this._dialog.open(xe,{...Pe,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:Pe},{provide:Ie,useValue:Pe}]},templateContext:()=>({dialogRef:ht}),providers:(vt,Mt,fe)=>(ht=new this._dialogRefConstructor(vt,Pe,fe),ht.updatePosition(Pe?.position),[{provide:this._dialogContainerType,useValue:fe},{provide:this._dialogDataToken,useValue:Mt.data},{provide:this._dialogRefConstructor,useValue:ht}])});return ht.componentRef=Ht.componentRef,ht.componentInstance=Ht.componentInstance,this.openDialogs.push(ht),this.afterOpened.next(ht),ht.afterClosed().subscribe(()=>{const vt=this.openDialogs.indexOf(ht);vt>-1&&(this.openDialogs.splice(vt,1),this.openDialogs.length||this._getAfterAllClosed().next())}),ht}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(xe){return this.openDialogs.find(Pe=>Pe.id===xe)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(xe){let Pe=xe.length;for(;Pe--;)xe[Pe].close()}static#e=this.\u0275fac=function(Pe){a.KEo()};static#t=this.\u0275prov=a.wxM({token:pt,factory:pt.\u0275fac})}return pt})(),Ut=(()=>{class pt extends Kt{constructor(xe,Pe,ht,Ht,vt,Mt,fe,it){super(xe,Pe,Ht,Mt,fe,vt,be,Ne,we,it),this._idPrefix="mat-mdc-dialog-"}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)(a.CoB(i.mc),a.CoB(a.zZn),a.CoB(s.oB,8),a.CoB(N,8),a.CoB(U),a.CoB(pt,12),a.CoB(i.Y),a.CoB(a.qwP,8))};static#t=this.\u0275prov=a.wxM({token:pt,factory:pt.\u0275fac})}return pt})(),ni=0,wt=(()=>{class pt{constructor(xe,Pe,ht){this._dialogRef=xe,this._elementRef=Pe,this._dialog=ht,this.id="mat-mdc-dialog-title-"+ni++}ngOnInit(){this._dialogRef||(this._dialogRef=function ve(pt,le){let xe=pt.nativeElement.parentElement;for(;xe&&!xe.classList.contains("mat-mdc-dialog-container");)xe=xe.parentElement;return xe?le.find(Pe=>Pe.id===xe.id):null}(this._elementRef,this._dialog.openDialogs)),this._dialogRef&&Promise.resolve().then(()=>{this._dialogRef._containerInstance?._ariaLabelledByQueue?.push(this.id)})}ngOnDestroy(){const xe=this._dialogRef?._containerInstance?._ariaLabelledByQueue;xe&&Promise.resolve().then(()=>{const Pe=xe.indexOf(this.id);Pe>-1&&xe.splice(Pe,1)})}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)(a.GI1(be,8),a.GI1(a.GMv),a.GI1(Ut))};static#t=this.\u0275dir=a.Sc5({type:pt,selectors:[["","mat-dialog-title",""],["","matDialogTitle",""]],hostAttrs:[1,"mat-mdc-dialog-title","mdc-dialog__title"],hostVars:1,hostBindings:function(Pe,ht){2&Pe&&a.SoX("id",ht.id)},inputs:{id:"id"},exportAs:["matDialogTitle"]})}return pt})(),zt=(()=>{class pt{static#e=this.\u0275fac=function(Pe){return new(Pe||pt)};static#t=this.\u0275dir=a.Sc5({type:pt,selectors:[["","mat-dialog-content",""],["mat-dialog-content"],["","matDialogContent",""]],hostAttrs:[1,"mat-mdc-dialog-content","mdc-dialog__content"]})}return pt})(),Dt=(()=>{class pt{constructor(){this.align="start"}static#e=this.\u0275fac=function(Pe){return new(Pe||pt)};static#t=this.\u0275dir=a.Sc5({type:pt,selectors:[["","mat-dialog-actions",""],["mat-dialog-actions"],["","matDialogActions",""]],hostAttrs:[1,"mat-mdc-dialog-actions","mdc-dialog__actions"],hostVars:4,hostBindings:function(Pe,ht){2&Pe&&a.eAK("mat-mdc-dialog-actions-align-center","center"===ht.align)("mat-mdc-dialog-actions-align-end","end"===ht.align)},inputs:{align:"align"}})}return pt})(),Te=(()=>{class pt{static#e=this.\u0275fac=function(Pe){return new(Pe||pt)};static#t=this.\u0275mod=a.a4G({type:pt});static#i=this.\u0275inj=a.s3X({providers:[Ut,Tt],imports:[Re,i.Y1,f.g$,st.AN,st.AN]})}return pt})()},3584:(lt,me,d)=>{"use strict";d.d(me,{U:()=>l,k:()=>h});var i=d(2116),s=d(7712),a=d(3576);let h=(()=>{class f{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(b){this._vertical=(0,s.W6)(b)}get inset(){return this._inset}set inset(b){this._inset=(0,s.W6)(b)}static#e=this.\u0275fac=function(R){return new(R||f)};static#t=this.\u0275cmp=i.In1({type:f,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(R,Y){2&R&&(i.e48("aria-orientation",Y.vertical?"vertical":"horizontal"),i.eAK("mat-divider-vertical",Y.vertical)("mat-divider-horizontal",!Y.vertical)("mat-divider-inset",Y.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(R,Y){},styles:[".mat-divider{--mat-divider-width:1px;display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color);border-top-width:var(--mat-divider-width)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color);border-right-width:var(--mat-divider-width)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],encapsulation:2,changeDetection:0})}return f})(),l=(()=>{class f{static#e=this.\u0275fac=function(R){return new(R||f)};static#t=this.\u0275mod=i.a4G({type:f});static#i=this.\u0275inj=i.s3X({imports:[a.AN,a.AN]})}return f})()},4060:(lt,me,d)=>{"use strict";d.d(me,{Y$:()=>xe,wJ:()=>N,Up:()=>it,u0:()=>at,wb:()=>Et,w5:()=>be,Gm:()=>Kt});var i=d(2116),s=d(1900),a=d(5792),h=d(6928),l=d(5657),f=d(3412),g=d(3616),b=d(3252),R=d(6684),Y=d(832);class ie{constructor(ri){this._box=ri,this._destroyed=new l.E,this._resizeSubject=new l.E,this._elementObservables=new Map,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(V=>this._resizeSubject.next(V)))}observe(ri){return this._elementObservables.has(ri)||this._elementObservables.set(ri,new b._(V=>{const Ce=this._resizeSubject.subscribe(V);return this._resizeObserver?.observe(ri,{box:this._box}),()=>{this._resizeObserver?.unobserve(ri),Ce.unsubscribe(),this._elementObservables.delete(ri)}}).pipe((0,R.I)(V=>V.some(Ce=>Ce.target===ri)),(0,Y.C)({bufferSize:1,refCount:!0}),(0,g.a)(this._destroyed))),this._elementObservables.get(ri)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let ae=(()=>{class ct{constructor(){this._observers=new Map,this._ngZone=(0,i.uUt)(i.WW2)}ngOnDestroy(){for(const[,V]of this._observers)V.destroy();this._observers.clear()}observe(V,Ce){const _=Ce?.box||"content-box";return this._observers.has(_)||this._observers.set(_,new ie(_)),this._observers.get(_).observe(V)}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)};static#t=this.\u0275prov=i.wxM({token:ct,factory:ct.\u0275fac,providedIn:"root"})}return ct})();var Ie=d(7712),Ee=d(9684),Ge=d(1368),tt=d(6640),gt=d(3576);const Bt=["notch"],kt=["matFormFieldNotchedOutline",""],Ye=["*"],et=["textField"],Q=["iconPrefixContainer"],_e=["textPrefixContainer"];function ye(ct,ri){1&ct&&i.wR5(0,"span",19)}function Re(ct,ri){if(1&ct&&(i.I0R(0,"label",17),i._Xx(1,1),i.yuY(2,ye,1,0,"span",18),i.C$Y()),2&ct){const V=i.GaO(2);i.E7m("floating",V._shouldLabelFloat())("monitorResize",V._hasOutline())("id",V._labelId),i.e48("for",V._control.id),i.yG2(2),i.E7m("ngIf",!V.hideRequiredMarker&&V._control.required)}}function Xe(ct,ri){if(1&ct&&i.yuY(0,Re,3,5,"label",16),2&ct){const V=i.GaO();i.E7m("ngIf",V._hasFloatingLabel())}}function $e(ct,ri){1&ct&&i.wR5(0,"div",20)}function oe(ct,ri){}function ut(ct,ri){if(1&ct&&i.yuY(0,oe,0,0,"ng-template",22),2&ct){i.GaO(2);const V=i.Gew(1);i.E7m("ngTemplateOutlet",V)}}function st(ct,ri){if(1&ct&&(i.I0R(0,"div",21),i.yuY(1,ut,1,1,"ng-template",9),i.C$Y()),2&ct){const V=i.GaO();i.E7m("matFormFieldNotchedOutlineOpen",V._shouldLabelFloat()),i.yG2(),i.E7m("ngIf",!V._forceDisplayInfixLabel())}}function $t(ct,ri){1&ct&&(i.I0R(0,"div",23,24),i._Xx(2,2),i.C$Y())}function oi(ct,ri){1&ct&&(i.I0R(0,"div",25,26),i._Xx(2,3),i.C$Y())}function Jt(ct,ri){}function vi(ct,ri){if(1&ct&&i.yuY(0,Jt,0,0,"ng-template",22),2&ct){i.GaO();const V=i.Gew(1);i.E7m("ngTemplateOutlet",V)}}function je(ct,ri){1&ct&&(i.I0R(0,"div",27),i._Xx(1,4),i.C$Y())}function De(ct,ri){1&ct&&(i.I0R(0,"div",28),i._Xx(1,5),i.C$Y())}function Le(ct,ri){1&ct&&i.wR5(0,"div",29)}function Ve(ct,ri){if(1&ct&&(i.I0R(0,"div",30),i._Xx(1,6),i.C$Y()),2&ct){const V=i.GaO();i.E7m("@transitionMessages",V._subscriptAnimationState)}}function te(ct,ri){if(1&ct&&(i.I0R(0,"mat-hint",34),i.OEk(1),i.C$Y()),2&ct){const V=i.GaO(2);i.E7m("id",V._hintLabelId),i.yG2(),i.cNF(V.hintLabel)}}function ge(ct,ri){if(1&ct&&(i.I0R(0,"div",31),i.yuY(1,te,2,2,"mat-hint",32),i._Xx(2,7),i.wR5(3,"div",33),i._Xx(4,8),i.C$Y()),2&ct){const V=i.GaO();i.E7m("@transitionMessages",V._subscriptAnimationState),i.yG2(),i.E7m("ngIf",V.hintLabel)}}const xt=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],Ne=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];let be=(()=>{class ct{static#e=this.\u0275fac=function(Ce){return new(Ce||ct)};static#t=this.\u0275dir=i.Sc5({type:ct,selectors:[["mat-label"]]})}return ct})(),j=0;const we=new i.UbH("MatError");let N=(()=>{class ct{constructor(V,Ce){this.id="mat-mdc-error-"+j++,V||Ce.nativeElement.setAttribute("aria-live","polite")}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)(i.gJ8("aria-live"),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:ct,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(Ce,_){2&Ce&&i.SoX("id",_.id)},inputs:{id:"id"},features:[i.M5G([{provide:we,useExisting:ct}])]})}return ct})(),U=0,Fe=(()=>{class ct{constructor(){this.align="start",this.id="mat-mdc-hint-"+U++}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)};static#t=this.\u0275dir=i.Sc5({type:ct,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(Ce,_){2&Ce&&(i.SoX("id",_.id),i.e48("align",null),i.eAK("mat-mdc-form-field-hint-end","end"===_.align))},inputs:{align:"align",id:"id"}})}return ct})();const Tt=new i.UbH("MatPrefix"),Lt=new i.UbH("MatSuffix");let Kt=(()=>{class ct{constructor(){this._isText=!1}set _isTextSelector(V){this._isText=!0}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)};static#t=this.\u0275dir=i.Sc5({type:ct,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[i.Wk5.None,"matTextSuffix","_isTextSelector"]},features:[i.M5G([{provide:Lt,useExisting:ct}])]})}return ct})();const Ut=new i.UbH("FloatingLabelParent");let ni=(()=>{class ct{get floating(){return this._floating}set floating(V){this._floating=V,this.monitorResize&&this._handleResize()}get monitorResize(){return this._monitorResize}set monitorResize(V){this._monitorResize=V,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}constructor(V){this._elementRef=V,this._floating=!1,this._monitorResize=!1,this._resizeObserver=(0,i.uUt)(ae),this._ngZone=(0,i.uUt)(i.WW2),this._parent=(0,i.uUt)(Ut),this._resizeSubscription=new h.wH}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function Mi(ct){if(null!==ct.offsetParent)return ct.scrollWidth;const V=ct.cloneNode(!0);V.style.setProperty("position","absolute"),V.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(V);const Ce=V.scrollWidth;return V.remove(),Ce}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)(i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:ct,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(Ce,_){2&Ce&&i.eAK("mdc-floating-label--float-above",_.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"}})}return ct})();const wt="mdc-line-ripple--active",zt="mdc-line-ripple--deactivating";let Dt=(()=>{class ct{constructor(V,Ce){this._elementRef=V,this._handleTransitionEnd=_=>{const w=this._elementRef.nativeElement.classList,S=w.contains(zt);"opacity"===_.propertyName&&S&&w.remove(wt,zt)},Ce.runOutsideAngular(()=>{V.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const V=this._elementRef.nativeElement.classList;V.remove(zt),V.add(wt)}deactivate(){this._elementRef.nativeElement.classList.add(zt)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)(i.GI1(i.GMv),i.GI1(i.WW2))};static#t=this.\u0275dir=i.Sc5({type:ct,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]})}return ct})(),ve=(()=>{class ct{constructor(V,Ce){this._elementRef=V,this._ngZone=Ce,this.open=!1}ngAfterViewInit(){const V=this._elementRef.nativeElement.querySelector(".mdc-floating-label");V?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(V.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>V.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(V){this._notch.nativeElement.style.width=this.open&&V?`calc(${V}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)(i.GI1(i.GMv),i.GI1(i.WW2))};static#t=this.\u0275cmp=i.In1({type:ct,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(Ce,_){if(1&Ce&&i.CC$(Bt,5),2&Ce){let w;i.wto(w=i.Gqi())&&(_._notch=w.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(Ce,_){2&Ce&&i.eAK("mdc-notched-outline--notched",_.open)},inputs:{open:[i.Wk5.None,"matFormFieldNotchedOutlineOpen","open"]},attrs:kt,ngContentSelectors:Ye,decls:5,vars:0,consts:[[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],["notch",""],[1,"mdc-notched-outline__trailing"]],template:function(Ce,_){1&Ce&&(i.kPM(),i.wR5(0,"div",0),i.I0R(1,"div",1,2),i._Xx(3),i.C$Y(),i.wR5(4,"div",3))},encapsulation:2,changeDetection:0})}return ct})();const Te={transitionMessages:(0,Ee.gV)("transitionMessages",[(0,Ee.K2)("enter",(0,Ee.wb)({opacity:1,transform:"translateY(0%)"})),(0,Ee.aK)("void => enter",[(0,Ee.wb)({opacity:0,transform:"translateY(-5px)"}),(0,Ee.Cs)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let at=(()=>{class ct{static#e=this.\u0275fac=function(Ce){return new(Ce||ct)};static#t=this.\u0275dir=i.Sc5({type:ct})}return ct})();const xe=new i.UbH("MatFormField"),Pe=new i.UbH("MAT_FORM_FIELD_DEFAULT_OPTIONS");let ht=0,it=(()=>{class ct{get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(V){this._hideRequiredMarker=(0,Ie.W6)(V)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(V){V!==this._floatLabel&&(this._floatLabel=V,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(V){const Ce=this._appearance;this._appearance=V||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==Ce&&(this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(V){this._subscriptSizing=V||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(V){this._hintLabel=V,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(V){this._explicitFormFieldControl=V}constructor(V,Ce,_,w,S,$,ze,At){this._elementRef=V,this._changeDetectorRef=Ce,this._ngZone=_,this._dir=w,this._platform=S,this._defaults=$,this._animationMode=ze,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+ht++,this._hintLabelId="mat-mdc-hint-"+ht++,this._subscriptAnimationState="",this._destroyed=new l.E,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,$&&($.appearance&&(this.appearance=$.appearance),this._hideRequiredMarker=!!$?.hideRequiredMarker,$.color&&(this.color=$.color))}ngAfterViewInit(){this._updateFocusState(),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const V=this._control;V.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${V.controlType}`),V.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),V.ngControl&&V.ngControl.valueChanges&&V.ngControl.valueChanges.pipe((0,g.a)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(V=>!V._isText),this._hasTextPrefix=!!this._prefixChildren.find(V=>V._isText),this._hasIconSuffix=!!this._suffixChildren.find(V=>!V._isText),this._hasTextSuffix=!!this._suffixChildren.find(V=>V._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,f.U)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,g.a)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,g.a)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(V){const Ce=this._control?this._control.ngControl:null;return Ce&&Ce[V]}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let V=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&V.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const Ce=this._hintChildren?this._hintChildren.find(w=>"start"===w.align):null,_=this._hintChildren?this._hintChildren.find(w=>"end"===w.align):null;Ce?V.push(Ce.id):this._hintLabel&&V.push(this._hintLabelId),_&&V.push(_.id)}else this._errorChildren&&V.push(...this._errorChildren.map(Ce=>Ce.id));this._control.setDescribedByIds(V)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const V=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(V.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const Ce=this._iconPrefixContainer?.nativeElement,_=this._textPrefixContainer?.nativeElement,w=Ce?.getBoundingClientRect().width??0,S=_?.getBoundingClientRect().width??0;V.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${w+S}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const V=this._elementRef.nativeElement;if(V.getRootNode){const Ce=V.getRootNode();return Ce&&Ce!==V}return document.documentElement.contains(V)}static#e=this.\u0275fac=function(Ce){return new(Ce||ct)(i.GI1(i.GMv),i.GI1(i.kD9),i.GI1(i.WW2),i.GI1(s.yG),i.GI1(a.WU),i.GI1(Pe,8),i.GI1(i.qwP,8),i.GI1(Ge.Ud))};static#t=this.\u0275cmp=i.In1({type:ct,selectors:[["mat-form-field"]],contentQueries:function(Ce,_,w){if(1&Ce&&(i.szK(w,be,5),i.szK(w,be,7),i.szK(w,at,5),i.szK(w,Tt,5),i.szK(w,Lt,5),i.szK(w,we,5),i.szK(w,Fe,5)),2&Ce){let S;i.wto(S=i.Gqi())&&(_._labelChildNonStatic=S.first),i.wto(S=i.Gqi())&&(_._labelChildStatic=S.first),i.wto(S=i.Gqi())&&(_._formFieldControl=S.first),i.wto(S=i.Gqi())&&(_._prefixChildren=S),i.wto(S=i.Gqi())&&(_._suffixChildren=S),i.wto(S=i.Gqi())&&(_._errorChildren=S),i.wto(S=i.Gqi())&&(_._hintChildren=S)}},viewQuery:function(Ce,_){if(1&Ce&&(i.CC$(et,5),i.CC$(Q,5),i.CC$(_e,5),i.CC$(ni,5),i.CC$(ve,5),i.CC$(Dt,5)),2&Ce){let w;i.wto(w=i.Gqi())&&(_._textField=w.first),i.wto(w=i.Gqi())&&(_._iconPrefixContainer=w.first),i.wto(w=i.Gqi())&&(_._textPrefixContainer=w.first),i.wto(w=i.Gqi())&&(_._floatingLabel=w.first),i.wto(w=i.Gqi())&&(_._notchedOutline=w.first),i.wto(w=i.Gqi())&&(_._lineRipple=w.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(Ce,_){2&Ce&&i.eAK("mat-mdc-form-field-label-always-float",_._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",_._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",_._hasIconSuffix)("mat-form-field-invalid",_._control.errorState)("mat-form-field-disabled",_._control.disabled)("mat-form-field-autofilled",_._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===_._animationMode)("mat-form-field-appearance-fill","fill"==_.appearance)("mat-form-field-appearance-outline","outline"==_.appearance)("mat-form-field-hide-placeholder",_._hasFloatingLabel()&&!_._shouldLabelFloat())("mat-focused",_._control.focused)("mat-primary","accent"!==_.color&&"warn"!==_.color)("mat-accent","accent"===_.color)("mat-warn","warn"===_.color)("ng-untouched",_._shouldForward("untouched"))("ng-touched",_._shouldForward("touched"))("ng-pristine",_._shouldForward("pristine"))("ng-dirty",_._shouldForward("dirty"))("ng-valid",_._shouldForward("valid"))("ng-invalid",_._shouldForward("invalid"))("ng-pending",_._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[i.M5G([{provide:xe,useExisting:ct},{provide:Ut,useExisting:ct}])],ngContentSelectors:Ne,decls:18,vars:23,consts:[["labelTemplate",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],["textField",""],["class","mat-mdc-form-field-focus-overlay",4,"ngIf"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen",4,"ngIf"],["class","mat-mdc-form-field-icon-prefix",4,"ngIf"],["class","mat-mdc-form-field-text-prefix",4,"ngIf"],[1,"mat-mdc-form-field-infix"],[3,"ngIf"],["class","mat-mdc-form-field-text-suffix",4,"ngIf"],["class","mat-mdc-form-field-icon-suffix",4,"ngIf"],["matFormFieldLineRipple","",4,"ngIf"],[1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align",3,"ngSwitch"],["class","mat-mdc-form-field-error-wrapper",4,"ngSwitchCase"],["class","mat-mdc-form-field-hint-wrapper",4,"ngSwitchCase"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id",4,"ngIf"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true","class","mat-mdc-form-field-required-marker mdc-floating-label--required",4,"ngIf"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[1,"mat-mdc-form-field-focus-overlay"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-icon-prefix"],["iconPrefixContainer",""],[1,"mat-mdc-form-field-text-prefix"],["textPrefixContainer",""],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],[3,"id",4,"ngIf"],[1,"mat-mdc-form-field-hint-spacer"],[3,"id"]],template:function(Ce,_){1&Ce&&(i.kPM(xt),i.yuY(0,Xe,1,1,"ng-template",null,0,i.gJz),i.I0R(2,"div",1,2),i.qCj("click",function(S){return _._control.onContainerClick(S)}),i.yuY(4,$e,1,0,"div",3),i.I0R(5,"div",4),i.yuY(6,st,2,2,"div",5)(7,$t,3,0,"div",6)(8,oi,3,0,"div",7),i.I0R(9,"div",8),i.yuY(10,vi,1,1,"ng-template",9),i._Xx(11),i.C$Y(),i.yuY(12,je,2,0,"div",10)(13,De,2,0,"div",11),i.C$Y(),i.yuY(14,Le,1,0,"div",12),i.C$Y(),i.I0R(15,"div",13),i.yuY(16,Ve,2,1,"div",14)(17,ge,5,2,"div",15),i.C$Y()),2&Ce&&(i.yG2(2),i.eAK("mdc-text-field--filled",!_._hasOutline())("mdc-text-field--outlined",_._hasOutline())("mdc-text-field--no-label",!_._hasFloatingLabel())("mdc-text-field--disabled",_._control.disabled)("mdc-text-field--invalid",_._control.errorState),i.yG2(2),i.E7m("ngIf",!_._hasOutline()&&!_._control.disabled),i.yG2(2),i.E7m("ngIf",_._hasOutline()),i.yG2(),i.E7m("ngIf",_._hasIconPrefix),i.yG2(),i.E7m("ngIf",_._hasTextPrefix),i.yG2(2),i.E7m("ngIf",!_._hasOutline()||_._forceDisplayInfixLabel()),i.yG2(2),i.E7m("ngIf",_._hasTextSuffix),i.yG2(),i.E7m("ngIf",_._hasIconSuffix),i.yG2(),i.E7m("ngIf",!_._hasOutline()),i.yG2(),i.eAK("mat-mdc-form-field-subscript-dynamic-size","dynamic"===_.subscriptSizing),i.E7m("ngSwitch",_._getDisplayedMessages()),i.yG2(),i.E7m("ngSwitchCase","error"),i.yG2(),i.E7m("ngSwitchCase","hint"))},dependencies:[Ge.u_,Ge.XV,Ge.Ko,Ge.Wm,Fe,ni,ve,Dt],styles:['.mdc-text-field{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}}.mdc-text-field__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px, var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px, var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px, var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px, var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px, var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px, var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 64px / 0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 64px / 0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 96px / 0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after,.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)[dir=rtl]::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;pointer-events:none}.mdc-notched-outline__trailing{flex-grow:1}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{border-top:1px solid;border-bottom:1px solid}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{max-width:calc(100% - 12px * 2)}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::after{border-bottom-width:2px}.mdc-text-field--filled{--mdc-filled-text-field-active-indicator-height:1px;--mdc-filled-text-field-focus-active-indicator-height:2px;--mdc-filled-text-field-container-shape:4px;border-top-left-radius:var(--mdc-filled-text-field-container-shape);border-top-right-radius:var(--mdc-filled-text-field-container-shape);border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-caret-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-error-caret-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-filled-text-field-input-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-filled-text-field-disabled-input-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-focus-label-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-disabled-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-focus-label-text-color)}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mdc-filled-text-field-label-text-font);font-size:var(--mdc-filled-text-field-label-text-size);font-weight:var(--mdc-filled-text-field-label-text-weight);letter-spacing:var(--mdc-filled-text-field-label-text-tracking)}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mdc-filled-text-field-container-color)}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mdc-filled-text-field-disabled-container-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-hover-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-focus-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-disabled-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-hover-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-error-focus-active-indicator-color)}.mdc-text-field--filled .mdc-line-ripple::before{border-bottom-width:var(--mdc-filled-text-field-active-indicator-height)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mdc-filled-text-field-focus-active-indicator-height)}.mdc-text-field--outlined{--mdc-outlined-text-field-outline-width:1px;--mdc-outlined-text-field-focus-outline-width:2px;--mdc-outlined-text-field-container-shape:4px}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-caret-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-error-caret-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-outlined-text-field-input-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-outlined-text-field-disabled-input-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-focus-label-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-disabled-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-focus-label-text-color)}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mdc-outlined-text-field-label-text-font);font-size:var(--mdc-outlined-text-field-label-text-size);font-weight:var(--mdc-outlined-text-field-label-text-weight);letter-spacing:var(--mdc-outlined-text-field-label-text-tracking)}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px, var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px, var(--mdc-outlined-text-field-container-shape))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px, calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px, var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px, calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px, var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px, var(--mdc-outlined-text-field-container-shape))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px, var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px, calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px, calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-hover-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-focus-outline-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-disabled-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-hover-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-focus-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-outline-width)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-focus-outline-width)}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-text-field-wrapper::before{content:none}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-active .mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font);line-height:var(--mat-form-field-container-text-line-height);font-size:var(--mat-form-field-container-text-size);letter-spacing:var(--mat-form-field-container-text-tracking);font-weight:var(--mat-form-field-container-text-weight)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size) * var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:12px;box-sizing:content-box}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}'],encapsulation:2,data:{animation:[Te.transitionMessages]},changeDetection:0})}return ct})(),Et=(()=>{class ct{static#e=this.\u0275fac=function(Ce){return new(Ce||ct)};static#t=this.\u0275mod=i.a4G({type:ct});static#i=this.\u0275inj=i.s3X({imports:[gt.AN,Ge.MD,tt.IT,gt.AN]})}return ct})()},6232:(lt,me,d)=>{"use strict";d.d(me,{CQ:()=>Re,ae:()=>ye,cn:()=>ie});var i=d(2116),s=d(3576),a=d(7712),h=d(1900);const l=["*"];class R{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const oe=Math.max(...this.tracker);return oe>1?this.rowCount+oe-1:this.rowCount}update(oe,ut){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(oe),this.tracker.fill(0,0,this.tracker.length),this.positions=ut.map(st=>this._trackTile(st))}_trackTile(oe){const ut=this._findMatchingGap(oe.colspan);return this._markTilePosition(ut,oe),this.columnIndex=ut+oe.colspan,new Y(this.rowIndex,ut)}_findMatchingGap(oe){let ut=-1,st=-1;do{this.columnIndex+oe>this.tracker.length?(this._nextRow(),ut=this.tracker.indexOf(0,this.columnIndex),st=this._findGapEndIndex(ut)):(ut=this.tracker.indexOf(0,this.columnIndex),-1!=ut?(st=this._findGapEndIndex(ut),this.columnIndex=ut+1):(this._nextRow(),ut=this.tracker.indexOf(0,this.columnIndex),st=this._findGapEndIndex(ut)))}while(st-ut{class $e{constructor(ut,st){this._element=ut,this._gridList=st,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(ut){this._rowspan=Math.round((0,a.wZ)(ut))}get colspan(){return this._colspan}set colspan(ut){this._colspan=Math.round((0,a.wZ)(ut))}_setStyle(ut,st){this._element.nativeElement.style[ut]=st}static#e=this.\u0275fac=function(st){return new(st||$e)(i.GI1(i.GMv),i.GI1(J,8))};static#t=this.\u0275cmp=i.In1({type:$e,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(st,$t){2&st&&i.e48("rowspan",$t.rowspan)("colspan",$t.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:l,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(st,$t){1&st&&(i.kPM(),i.I0R(0,"div",0),i._Xx(1),i.C$Y())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}"],encapsulation:2,changeDetection:0})}return $e})();const tt=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class gt{constructor(){this._rows=0,this._rowspan=0}init(oe,ut,st,$t){this._gutterSize=Q(oe),this._rows=ut.rowCount,this._rowspan=ut.rowspan,this._cols=st,this._direction=$t}getBaseTileSize(oe,ut){return`(${oe}% - (${this._gutterSize} * ${ut}))`}getTilePosition(oe,ut){return 0===ut?"0":et(`(${oe} + ${this._gutterSize}) * ${ut}`)}getTileSize(oe,ut){return`(${oe} * ${ut}) + (${ut-1} * ${this._gutterSize})`}setStyle(oe,ut,st){let $t=100/this._cols,oi=(this._cols-1)/this._cols;this.setColStyles(oe,st,$t,oi),this.setRowStyles(oe,ut,$t,oi)}setColStyles(oe,ut,st,$t){let oi=this.getBaseTileSize(st,$t);oe._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(oi,ut)),oe._setStyle("width",et(this.getTileSize(oi,oe.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(oe){return`${this._rowspan} * ${this.getTileSize(oe,1)}`}getComputedHeight(){return null}}class Bt extends gt{constructor(oe){super(),this.fixedRowHeight=oe}init(oe,ut,st,$t){super.init(oe,ut,st,$t),this.fixedRowHeight=Q(this.fixedRowHeight),tt.test(this.fixedRowHeight)}setRowStyles(oe,ut){oe._setStyle("top",this.getTilePosition(this.fixedRowHeight,ut)),oe._setStyle("height",et(this.getTileSize(this.fixedRowHeight,oe.rowspan)))}getComputedHeight(){return["height",et(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(oe){oe._setListStyle(["height",null]),oe._tiles&&oe._tiles.forEach(ut=>{ut._setStyle("top",null),ut._setStyle("height",null)})}}class kt extends gt{constructor(oe){super(),this._parseRatio(oe)}setRowStyles(oe,ut,st,$t){this.baseTileHeight=this.getBaseTileSize(st/this.rowHeightRatio,$t),oe._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,ut)),oe._setStyle("paddingTop",et(this.getTileSize(this.baseTileHeight,oe.rowspan)))}getComputedHeight(){return["paddingBottom",et(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(oe){oe._setListStyle(["paddingBottom",null]),oe._tiles.forEach(ut=>{ut._setStyle("marginTop",null),ut._setStyle("paddingTop",null)})}_parseRatio(oe){const ut=oe.split(":");this.rowHeightRatio=parseFloat(ut[0])/parseFloat(ut[1])}}class Ye extends gt{setRowStyles(oe,ut){let oi=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);oe._setStyle("top",this.getTilePosition(oi,ut)),oe._setStyle("height",et(this.getTileSize(oi,oe.rowspan)))}reset(oe){oe._tiles&&oe._tiles.forEach(ut=>{ut._setStyle("top",null),ut._setStyle("height",null)})}}function et($e){return`calc(${$e})`}function Q($e){return $e.match(/([A-Za-z%]+)$/)?$e:`${$e}px`}let ye=(()=>{class $e{constructor(ut,st){this._element=ut,this._dir=st,this._gutter="1px"}get cols(){return this._cols}set cols(ut){this._cols=Math.max(1,Math.round((0,a.wZ)(ut)))}get gutterSize(){return this._gutter}set gutterSize(ut){this._gutter=`${ut??""}`}get rowHeight(){return this._rowHeight}set rowHeight(ut){const st=`${ut??""}`;st!==this._rowHeight&&(this._rowHeight=st,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(ut){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===ut?new Ye:ut&&ut.indexOf(":")>-1?new kt(ut):new Bt(ut)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new R);const ut=this._tileCoordinator,st=this._tiles.filter(oi=>!oi._gridList||oi._gridList===this),$t=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,st),this._tileStyler.init(this.gutterSize,ut,this.cols,$t),st.forEach((oi,Jt)=>{const vi=ut.positions[Jt];this._tileStyler.setStyle(oi,vi.row,vi.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(ut){ut&&(this._element.nativeElement.style[ut[0]]=ut[1])}static#e=this.\u0275fac=function(st){return new(st||$e)(i.GI1(i.GMv),i.GI1(h.yG,8))};static#t=this.\u0275cmp=i.In1({type:$e,selectors:[["mat-grid-list"]],contentQueries:function(st,$t,oi){if(1&st&&i.szK(oi,ie,5),2&st){let Jt;i.wto(Jt=i.Gqi())&&($t._tiles=Jt)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(st,$t){2&st&&i.e48("cols",$t.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[i.M5G([{provide:J,useExisting:$e}])],ngContentSelectors:l,decls:2,vars:0,template:function(st,$t){1&st&&(i.kPM(),i.I0R(0,"div"),i._Xx(1),i.C$Y())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}"],encapsulation:2,changeDetection:0})}return $e})(),Re=(()=>{class $e{static#e=this.\u0275fac=function(st){return new(st||$e)};static#t=this.\u0275mod=i.a4G({type:$e});static#i=this.\u0275inj=i.s3X({imports:[s.A3,s.AN,s.A3,s.AN]})}return $e})()},1560:(lt,me,d)=>{"use strict";d.d(me,{oB:()=>te,qL:()=>Ve});var i=d(2116),s=d(3576),a=d(7712),h=d(1368),l=d(2700),f=d(3800),g=d(9336),b=d(6928),R=d(9212),Y=d(4704),J=d(9144),ie=d(8824),ae=d(7648),Ie=d(3992),Ee=d(7048),Ge=d(4476);const tt=["*"];let gt;function kt(ge){return function Bt(){if(void 0===gt&&(gt=null,typeof window<"u")){const ge=window;void 0!==ge.trustedTypes&&(gt=ge.trustedTypes.createPolicy("angular#components",{createHTML:xt=>xt}))}return gt}()?.createHTML(ge)||ge}function Ye(ge){return Error(`Unable to find icon with the name "${ge}"`)}function Q(ge){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${ge}".`)}function _e(ge){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${ge}".`)}class ye{constructor(xt,Ne,be){this.url=xt,this.svgText=Ne,this.options=be}}let Re=(()=>{class ge{constructor(Ne,be,j,we){this._httpClient=Ne,this._sanitizer=be,this._errorHandler=we,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass=["material-icons","mat-ligature-font"],this._document=j}addSvgIcon(Ne,be,j){return this.addSvgIconInNamespace("",Ne,be,j)}addSvgIconLiteral(Ne,be,j){return this.addSvgIconLiteralInNamespace("",Ne,be,j)}addSvgIconInNamespace(Ne,be,j,we){return this._addSvgIconConfig(Ne,be,new ye(j,null,we))}addSvgIconResolver(Ne){return this._resolvers.push(Ne),this}addSvgIconLiteralInNamespace(Ne,be,j,we){const N=this._sanitizer.sanitize(i.SI6.HTML,j);if(!N)throw _e(j);const U=kt(N);return this._addSvgIconConfig(Ne,be,new ye("",U,we))}addSvgIconSet(Ne,be){return this.addSvgIconSetInNamespace("",Ne,be)}addSvgIconSetLiteral(Ne,be){return this.addSvgIconSetLiteralInNamespace("",Ne,be)}addSvgIconSetInNamespace(Ne,be,j){return this._addSvgIconSetConfig(Ne,new ye(be,null,j))}addSvgIconSetLiteralInNamespace(Ne,be,j){const we=this._sanitizer.sanitize(i.SI6.HTML,be);if(!we)throw _e(be);const N=kt(we);return this._addSvgIconSetConfig(Ne,new ye("",N,j))}registerFontClassAlias(Ne,be=Ne){return this._fontCssClassesByAlias.set(Ne,be),this}classNameForFontAlias(Ne){return this._fontCssClassesByAlias.get(Ne)||Ne}setDefaultFontSetClass(...Ne){return this._defaultFontSetClass=Ne,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(Ne){const be=this._sanitizer.sanitize(i.SI6.RESOURCE_URL,Ne);if(!be)throw Q(Ne);const j=this._cachedIconsByUrl.get(be);return j?(0,l.of)(oe(j)):this._loadSvgIconFromConfig(new ye(Ne,null)).pipe((0,R.y)(we=>this._cachedIconsByUrl.set(be,we)),(0,Y.k)(we=>oe(we)))}getNamedSvgIcon(Ne,be=""){const j=ut(be,Ne);let we=this._svgIconConfigs.get(j);if(we)return this._getSvgFromConfig(we);if(we=this._getIconConfigFromResolvers(be,Ne),we)return this._svgIconConfigs.set(j,we),this._getSvgFromConfig(we);const N=this._iconSetConfigs.get(be);return N?this._getSvgFromIconSetConfigs(Ne,N):(0,f.c)(Ye(j))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(Ne){return Ne.svgText?(0,l.of)(oe(this._svgElementFromConfig(Ne))):this._loadSvgIconFromConfig(Ne).pipe((0,Y.k)(be=>oe(be)))}_getSvgFromIconSetConfigs(Ne,be){const j=this._extractIconWithNameFromAnySet(Ne,be);if(j)return(0,l.of)(j);const we=be.filter(N=>!N.svgText).map(N=>this._loadSvgIconSetFromConfig(N).pipe((0,J.a)(U=>{const Tt=`Loading icon set URL: ${this._sanitizer.sanitize(i.SI6.RESOURCE_URL,N.url)} failed: ${U.message}`;return this._errorHandler.handleError(new Error(Tt)),(0,l.of)(null)})));return(0,g.y)(we).pipe((0,Y.k)(()=>{const N=this._extractIconWithNameFromAnySet(Ne,be);if(!N)throw Ye(Ne);return N}))}_extractIconWithNameFromAnySet(Ne,be){for(let j=be.length-1;j>=0;j--){const we=be[j];if(we.svgText&&we.svgText.toString().indexOf(Ne)>-1){const N=this._svgElementFromConfig(we),U=this._extractSvgIconFromSet(N,Ne,we.options);if(U)return U}}return null}_loadSvgIconFromConfig(Ne){return this._fetchIcon(Ne).pipe((0,R.y)(be=>Ne.svgText=be),(0,Y.k)(()=>this._svgElementFromConfig(Ne)))}_loadSvgIconSetFromConfig(Ne){return Ne.svgText?(0,l.of)(null):this._fetchIcon(Ne).pipe((0,R.y)(be=>Ne.svgText=be))}_extractSvgIconFromSet(Ne,be,j){const we=Ne.querySelector(`[id="${be}"]`);if(!we)return null;const N=we.cloneNode(!0);if(N.removeAttribute("id"),"svg"===N.nodeName.toLowerCase())return this._setSvgAttributes(N,j);if("symbol"===N.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(N),j);const U=this._svgElementFromString(kt(""));return U.appendChild(N),this._setSvgAttributes(U,j)}_svgElementFromString(Ne){const be=this._document.createElement("DIV");be.innerHTML=Ne;const j=be.querySelector("svg");if(!j)throw Error(" tag not found");return j}_toSvgElement(Ne){const be=this._svgElementFromString(kt("")),j=Ne.attributes;for(let we=0;wekt(Tt)),(0,ie.U)(()=>this._inProgressUrlFetches.delete(N)),(0,ae.o)());return this._inProgressUrlFetches.set(N,Fe),Fe}_addSvgIconConfig(Ne,be,j){return this._svgIconConfigs.set(ut(Ne,be),j),this}_addSvgIconSetConfig(Ne,be){const j=this._iconSetConfigs.get(Ne);return j?j.push(be):this._iconSetConfigs.set(Ne,[be]),this}_svgElementFromConfig(Ne){if(!Ne.svgElement){const be=this._svgElementFromString(Ne.svgText);this._setSvgAttributes(be,Ne.options),Ne.svgElement=be}return Ne.svgElement}_getIconConfigFromResolvers(Ne,be){for(let j=0;jxt?xt.pathname+xt.search:""}}}),je=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],De=je.map(ge=>`[${ge}]`).join(", "),Le=/^url\(['"]?#(.*?)['"]?\)$/;let Ve=(()=>{class ge extends $t{get inline(){return this._inline}set inline(Ne){this._inline=(0,a.W6)(Ne)}get svgIcon(){return this._svgIcon}set svgIcon(Ne){Ne!==this._svgIcon&&(Ne?this._updateSvgIcon(Ne):this._svgIcon&&this._clearSvgElement(),this._svgIcon=Ne)}get fontSet(){return this._fontSet}set fontSet(Ne){const be=this._cleanupFontValue(Ne);be!==this._fontSet&&(this._fontSet=be,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(Ne){const be=this._cleanupFontValue(Ne);be!==this._fontIcon&&(this._fontIcon=be,this._updateFontIconClasses())}constructor(Ne,be,j,we,N,U){super(Ne),this._iconRegistry=be,this._location=we,this._errorHandler=N,this._inline=!1,this._previousFontSetClass=[],this._currentIconFetch=b.wH.EMPTY,U&&(U.color&&(this.color=this.defaultColor=U.color),U.fontSet&&(this.fontSet=U.fontSet)),j||Ne.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(Ne){if(!Ne)return["",""];const be=Ne.split(":");switch(be.length){case 1:return["",be[0]];case 2:return be;default:throw Error(`Invalid icon name: "${Ne}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const Ne=this._elementsWithExternalReferences;if(Ne&&Ne.size){const be=this._location.getPathname();be!==this._previousPath&&(this._previousPath=be,this._prependPathToReferences(be))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(Ne){this._clearSvgElement();const be=this._location.getPathname();this._previousPath=be,this._cacheChildrenWithExternalReferences(Ne),this._prependPathToReferences(be),this._elementRef.nativeElement.appendChild(Ne)}_clearSvgElement(){const Ne=this._elementRef.nativeElement;let be=Ne.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();be--;){const j=Ne.childNodes[be];(1!==j.nodeType||"svg"===j.nodeName.toLowerCase())&&j.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const Ne=this._elementRef.nativeElement,be=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(j=>j.length>0);this._previousFontSetClass.forEach(j=>Ne.classList.remove(j)),be.forEach(j=>Ne.classList.add(j)),this._previousFontSetClass=be,this.fontIcon!==this._previousFontIconClass&&!be.includes("mat-ligature-font")&&(this._previousFontIconClass&&Ne.classList.remove(this._previousFontIconClass),this.fontIcon&&Ne.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(Ne){return"string"==typeof Ne?Ne.trim().split(" ")[0]:Ne}_prependPathToReferences(Ne){const be=this._elementsWithExternalReferences;be&&be.forEach((j,we)=>{j.forEach(N=>{we.setAttribute(N.name,`url('${Ne}#${N.value}')`)})})}_cacheChildrenWithExternalReferences(Ne){const be=Ne.querySelectorAll(De),j=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let we=0;we{const U=be[we],Fe=U.getAttribute(N),Tt=Fe?Fe.match(Le):null;if(Tt){let Ke=j.get(U);Ke||(Ke=[],j.set(U,Ke)),Ke.push({name:N,value:Tt[1]})}})}_updateSvgIcon(Ne){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),Ne){const[be,j]=this._splitIconName(Ne);be&&(this._svgNamespace=be),j&&(this._svgName=j),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(j,be).pipe((0,Ie.U)(1)).subscribe(we=>this._setSvgElement(we),we=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${be}:${j}! ${we.message}`))})}}static#e=this.\u0275fac=function(be){return new(be||ge)(i.GI1(i.GMv),i.GI1(Re),i.gJ8("aria-hidden"),i.GI1(Jt),i.GI1(i.eAe),i.GI1(oi,8))};static#t=this.\u0275cmp=i.In1({type:ge,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:8,hostBindings:function(be,j){2&be&&(i.e48("data-mat-icon-type",j._usingFontIcon()?"font":"svg")("data-mat-icon-name",j._svgName||j.fontIcon)("data-mat-icon-namespace",j._svgNamespace||j.fontSet)("fontIcon",j._usingFontIcon()?j.fontIcon:null),i.eAK("mat-icon-inline",j.inline)("mat-icon-no-color","primary"!==j.color&&"accent"!==j.color&&"warn"!==j.color))},inputs:{color:"color",inline:"inline",svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],features:[i.eg9],ngContentSelectors:tt,decls:1,vars:0,template:function(be,j){1&be&&(i.kPM(),i._Xx(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[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}"],encapsulation:2,changeDetection:0})}return ge})(),te=(()=>{class ge{static#e=this.\u0275fac=function(be){return new(be||ge)};static#t=this.\u0275mod=i.a4G({type:ge});static#i=this.\u0275inj=i.s3X({imports:[s.AN,s.AN]})}return ge})()},7536:(lt,me,d)=>{"use strict";d.d(me,{wq:()=>Ee,yi:()=>Bt,cN:()=>kt});var i=d(7712),s=d(5792),a=d(2116),h=d(8960),l=d(5657);const f=(0,s.W4)({passive:!0});let g=(()=>{class Ye{constructor(Q,_e){this._platform=Q,this._ngZone=_e,this._monitoredElements=new Map}monitor(Q){if(!this._platform.isBrowser)return h.k;const _e=(0,i.mk)(Q),ye=this._monitoredElements.get(_e);if(ye)return ye.subject;const Re=new l.E,Xe="cdk-text-field-autofilled",$e=oe=>{"cdk-text-field-autofill-start"!==oe.animationName||_e.classList.contains(Xe)?"cdk-text-field-autofill-end"===oe.animationName&&_e.classList.contains(Xe)&&(_e.classList.remove(Xe),this._ngZone.run(()=>Re.next({target:oe.target,isAutofilled:!1}))):(_e.classList.add(Xe),this._ngZone.run(()=>Re.next({target:oe.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{_e.addEventListener("animationstart",$e,f),_e.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(_e,{subject:Re,unlisten:()=>{_e.removeEventListener("animationstart",$e,f)}}),Re}stopMonitoring(Q){const _e=(0,i.mk)(Q),ye=this._monitoredElements.get(_e);ye&&(ye.unlisten(),ye.subject.complete(),_e.classList.remove("cdk-text-field-autofill-monitored"),_e.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(_e))}ngOnDestroy(){this._monitoredElements.forEach((Q,_e)=>this.stopMonitoring(_e))}static#e=this.\u0275fac=function(_e){return new(_e||Ye)(a.CoB(s.WU),a.CoB(a.WW2))};static#t=this.\u0275prov=a.wxM({token:Ye,factory:Ye.\u0275fac,providedIn:"root"})}return Ye})(),Y=(()=>{class Ye{static#e=this.\u0275fac=function(_e){return new(_e||Ye)};static#t=this.\u0275mod=a.a4G({type:Ye});static#i=this.\u0275inj=a.s3X({})}return Ye})();var J=d(6504),ie=d(3576),ae=d(4060);const Ee=new a.UbH("MAT_INPUT_VALUE_ACCESSOR"),Ge=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let tt=0;const gt=(0,ie.Sk)(class{constructor(Ye,et,Q,_e){this._defaultErrorStateMatcher=Ye,this._parentForm=et,this._parentFormGroup=Q,this.ngControl=_e,this.stateChanges=new l.E}});let Bt=(()=>{class Ye extends gt{get disabled(){return this._disabled}set disabled(Q){this._disabled=(0,i.W6)(Q),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(Q){this._id=Q||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(J.AQ.required)??!1}set required(Q){this._required=(0,i.W6)(Q)}get type(){return this._type}set type(Q){this._type=Q||"text",this._validateType(),!this._isTextarea&&(0,s.mU)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(Q){Q!==this.value&&(this._inputValueAccessor.value=Q,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(Q){this._readonly=(0,i.W6)(Q)}constructor(Q,_e,ye,Re,Xe,$e,oe,ut,st,$t){super($e,Re,Xe,ye),this._elementRef=Q,this._platform=_e,this._autofillMonitor=ut,this._formField=$t,this._uid="mat-input-"+tt++,this.focused=!1,this.stateChanges=new l.E,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(vi=>(0,s.mU)().has(vi)),this._iOSKeyupListener=vi=>{const je=vi.target;!je.value&&0===je.selectionStart&&0===je.selectionEnd&&(je.setSelectionRange(1,1),je.setSelectionRange(0,0))};const oi=this._elementRef.nativeElement,Jt=oi.nodeName.toLowerCase();this._inputValueAccessor=oe||oi,this._previousNativeValue=this.value,this.id=this.id,_e.IOS&&st.runOutsideAngular(()=>{Q.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===Jt,this._isTextarea="textarea"===Jt,this._isInFormField=!!$t,this._isNativeSelect&&(this.controlType=oi.multiple?"mat-native-select-multiple":"mat-native-select")}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(Q=>{this.autofilled=Q.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&(this.updateErrorState(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(Q){this._elementRef.nativeElement.focus(Q)}_focusChanged(Q){Q!==this.focused&&(this.focused=Q,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const Q=this._elementRef.nativeElement.value;this._previousNativeValue!==Q&&(this._previousNativeValue=Q,this.stateChanges.next())}_dirtyCheckPlaceholder(){const Q=this._getPlaceholder();if(Q!==this._previousPlaceholder){const _e=this._elementRef.nativeElement;this._previousPlaceholder=Q,Q?_e.setAttribute("placeholder",Q):_e.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){Ge.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let Q=this._elementRef.nativeElement.validity;return Q&&Q.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const Q=this._elementRef.nativeElement,_e=Q.options[0];return this.focused||Q.multiple||!this.empty||!!(Q.selectedIndex>-1&&_e&&_e.label)}return this.focused||!this.empty}setDescribedByIds(Q){Q.length?this._elementRef.nativeElement.setAttribute("aria-describedby",Q.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const Q=this._elementRef.nativeElement;return this._isNativeSelect&&(Q.multiple||Q.size>1)}static#e=this.\u0275fac=function(_e){return new(_e||Ye)(a.GI1(a.GMv),a.GI1(s.WU),a.GI1(J.eq,10),a.GI1(J.SC,8),a.GI1(J.uW,8),a.GI1(ie.u9),a.GI1(Ee,10),a.GI1(g),a.GI1(a.WW2),a.GI1(ae.Y$,8))};static#t=this.\u0275dir=a.Sc5({type:Ye,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(_e,ye){1&_e&&a.qCj("focus",function(){return ye._focusChanged(!0)})("blur",function(){return ye._focusChanged(!1)})("input",function(){return ye._onInput()}),2&_e&&(a.SoX("id",ye.id)("disabled",ye.disabled)("required",ye.required),a.e48("name",ye.name||null)("readonly",ye.readonly&&!ye._isNativeSelect||null)("aria-invalid",ye.empty&&ye.required?null:ye.errorState)("aria-required",ye.required)("id",ye.id),a.eAK("mat-input-server",ye._isServer)("mat-mdc-form-field-textarea-control",ye._isInFormField&&ye._isTextarea)("mat-mdc-form-field-input-control",ye._isInFormField)("mdc-text-field__input",ye._isInFormField)("mat-mdc-native-select-inline",ye._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:[a.Wk5.None,"aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],features:[a.M5G([{provide:ae.u0,useExisting:Ye}]),a.eg9,a.SYr]})}return Ye})(),kt=(()=>{class Ye{static#e=this.\u0275fac=function(_e){return new(_e||Ye)};static#t=this.\u0275mod=a.a4G({type:Ye});static#i=this.\u0275inj=a.s3X({imports:[ie.AN,ae.wb,ae.wb,Y,ie.AN]})}return Ye})()},6664:(lt,me,d)=>{"use strict";d.d(me,{G2:()=>zt,Qp:()=>Mi,U9:()=>ge,UV:()=>te,Y1:()=>j,g9:()=>Kt,iI:()=>at,oL:()=>Lt});var i=d(2116),s=d(7712),a=d(5792),h=d(3576),l=d(6928),f=d(3412),b=(d(5657),d(6640)),R=d(1368),Y=d(3584);d(4723),d(1032),d(7800),d(6504),d(3616);const Ge=["*"],tt='@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-list-divider::after{content:"";display:block;border-bottom-width:1px;border-bottom-style:solid}}.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item__wrapper{display:block}.mdc-list-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer}.mdc-list-item:focus{outline:none}.mdc-list-item.mdc-list-item--with-one-line{height:48px}.mdc-list-item.mdc-list-item--with-two-lines{height:64px}.mdc-list-item.mdc-list-item--with-three-lines{height:88px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--disabled,.mdc-list-item.mdc-list-item--non-interactive{cursor:auto}.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px double rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected:focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected:focus::before{border-color:CanvasText}}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__content[for]{pointer-events:none}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;line-height:normal}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item__overline-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:24px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start,.mdc-list-item--with-leading-avatar .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-avatar .mdc-list-item__start{border-radius:50%}.mdc-list-item--with-leading-icon.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-leading-icon .mdc-list-item__start[dir=rtl]{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-thumbnail.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-thumbnail.mdc-list-item,.mdc-list-item--with-leading-thumbnail.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-thumbnail .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-thumbnail .mdc-list-item__start,.mdc-list-item--with-leading-thumbnail .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-image.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-image.mdc-list-item,.mdc-list-item--with-leading-image.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-image .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-image .mdc-list-item__start,.mdc-list-item--with-leading-image .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-video.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-video.mdc-list-item,.mdc-list-item--with-leading-video.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-video .mdc-list-item__start{margin-left:0;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-video .mdc-list-item__start,.mdc-list-item--with-leading-video .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-checkbox.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-radio.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-radio.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-radio .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-radio .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-switch.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-switch.mdc-list-item,.mdc-list-item--with-leading-switch.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-switch .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-switch .mdc-list-item__start,.mdc-list-item--with-leading-switch .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item,.mdc-list-item--with-trailing-icon.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-icon .mdc-list-item__end,.mdc-list-item--with-trailing-icon .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item,.mdc-list-item--with-trailing-meta.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-trailing-meta .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);line-height:var(--mdc-typography-caption-line-height);font-weight:var(--mdc-typography-caption-font-weight);letter-spacing:var(--mdc-typography-caption-letter-spacing);text-decoration:var(--mdc-typography-caption-text-decoration);text-transform:var(--mdc-typography-caption-text-transform)}.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-radio.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-radio .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-radio .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-switch.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-switch.mdc-list-item,.mdc-list-item--with-trailing-switch.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-switch .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-switch .mdc-list-item__end,.mdc-list-item--with-trailing-switch .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-switch.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item{padding-left:16px;padding-right:16px}[dir=rtl] .mdc-list-item,.mdc-list-item[dir=rtl]{padding-left:16px;padding-right:16px}.mdc-list-group .mdc-deprecated-list{padding:0}.mdc-list-group__subheader{margin:calc((3rem - 1.5rem)/2) 16px}.mdc-list-divider{padding:0;background-clip:content-box}.mdc-list-divider.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset{padding-left:16px;padding-right:auto}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset,.mdc-list-divider.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:16px}.mdc-list-divider.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset{padding-left:auto;padding-right:16px}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset,.mdc-list-divider.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset[dir=rtl]{padding-left:16px;padding-right:auto}.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset{padding-left:0px;padding-right:auto}[dir=rtl] .mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:0px}[dir=rtl] .mdc-list-divider,.mdc-list-divider[dir=rtl]{padding:0}.mdc-list-item{background-color:var(--mdc-list-list-item-container-color)}.mdc-list-item.mdc-list-item--selected{background-color:var(--mdc-list-list-item-selected-container-color)}.mdc-list-item--with-one-line{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-avatar,.mdc-list-item--with-one-line.mdc-list-item--with-leading-icon,.mdc-list-item--with-one-line.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-one-line.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-one-line.mdc-list-item--with-leading-radio,.mdc-list-item--with-one-line.mdc-list-item--with-leading-switch{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-image,.mdc-list-item--with-one-line.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines.mdc-list-item--with-leading-avatar,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-icon,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-radio,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-switch,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-image,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-three-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mdc-list-list-item-one-line-container-height)}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mdc-list-list-item-two-line-container-height)}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mdc-list-list-item-three-line-container-height)}.mdc-list-item__primary-text{color:var(--mdc-list-list-item-label-text-color)}.mdc-list-item__primary-text{font-family:var(--mdc-list-list-item-label-text-font);line-height:var(--mdc-list-list-item-label-text-line-height);font-size:var(--mdc-list-list-item-label-text-size);font-weight:var(--mdc-list-list-item-label-text-weight);letter-spacing:var(--mdc-list-list-item-label-text-tracking)}.mdc-list-item__secondary-text{color:var(--mdc-list-list-item-supporting-text-color)}.mdc-list-item__secondary-text{font-family:var(--mdc-list-list-item-supporting-text-font);line-height:var(--mdc-list-list-item-supporting-text-line-height);font-size:var(--mdc-list-list-item-supporting-text-size);font-weight:var(--mdc-list-list-item-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-supporting-text-tracking)}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-leading-icon-color)}.mdc-list-item--with-leading-icon .mdc-list-item__start{width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start>i{font-size:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon{font-size:var(--mdc-list-list-item-leading-icon-size);width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon,.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mdc-list-list-item-leading-avatar-size);height:var(--mdc-list-list-item-leading-avatar-size)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-supporting-text-color)}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mdc-list-list-item-trailing-supporting-text-font);line-height:var(--mdc-list-list-item-trailing-supporting-text-line-height);font-size:var(--mdc-list-list-item-trailing-supporting-text-size);font-weight:var(--mdc-list-list-item-trailing-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-trailing-supporting-text-tracking)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-icon-color)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end>i{font-size:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon{font-size:var(--mdc-list-list-item-trailing-icon-size);width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon,.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-selected-trailing-icon-color)}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text,.mdc-list-item--disabled .mdc-list-item__overline-text{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-disabled-leading-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{opacity:var(--mdc-list-list-item-disabled-leading-icon-opacity)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-disabled-trailing-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{opacity:var(--mdc-list-list-item-disabled-trailing-icon-opacity)}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mdc-list-list-item-hover-label-text-color)}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mdc-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mdc-list-list-item-hover-trailing-icon-color)}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mdc-list-list-item-focus-label-text-color)}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-list-list-item-disabled-label-text-color)}.mdc-list-item:hover::before{background-color:var(--mdc-list-list-item-hover-state-layer-color);opacity:var(--mdc-list-list-item-hover-state-layer-opacity)}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mdc-list-list-item-disabled-state-layer-color);opacity:var(--mdc-list-list-item-disabled-state-layer-opacity)}.mdc-list-item:focus::before{background-color:var(--mdc-list-list-item-focus-state-layer-color);opacity:var(--mdc-list-list-item-focus-state-layer-opacity)}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mdc-list-list-item-leading-avatar-shape);background-color:var(--mdc-list-list-item-leading-avatar-color)}.mat-mdc-list-base{--mdc-list-list-item-container-shape:0;--mdc-list-list-item-leading-avatar-shape:50%;--mdc-list-list-item-container-color:transparent;--mdc-list-list-item-selected-container-color:transparent;--mdc-list-list-item-leading-avatar-color:transparent;--mdc-list-list-item-leading-icon-size:24px;--mdc-list-list-item-leading-avatar-size:40px;--mdc-list-list-item-trailing-icon-size:24px;--mdc-list-list-item-disabled-state-layer-color:transparent;--mdc-list-list-item-disabled-state-layer-opacity:0;--mdc-list-list-item-disabled-label-text-opacity:0.38;--mdc-list-list-item-disabled-leading-icon-opacity:0.38;--mdc-list-list-item-disabled-trailing-icon-opacity:0.38}.cdk-high-contrast-active a.mdc-list-item--activated::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}.cdk-high-contrast-active a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none}.mat-mdc-list-item>.mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-mdc-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:left}[dir=rtl] mat-action-list button{text-align:right}mat-action-list button::-moz-focus-inner{border:0}',gt=["unscopedContent"],Bt=["text"],kt=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],Ye=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],Ve=new i.UbH("ListOption");let te=(()=>{class Ze{constructor(le){this._elementRef=le}static#e=this.\u0275fac=function(xe){return new(xe||Ze)(i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Ze,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"]})}return Ze})(),ge=(()=>{class Ze{constructor(le){this._elementRef=le}static#e=this.\u0275fac=function(xe){return new(xe||Ze)(i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Ze,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"]})}return Ze})(),xt=(()=>{class Ze{static#e=this.\u0275fac=function(xe){return new(xe||Ze)};static#t=this.\u0275dir=i.Sc5({type:Ze,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"]})}return Ze})(),Ne=(()=>{class Ze{constructor(le){this._listOption=le}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static#e=this.\u0275fac=function(xe){return new(xe||Ze)(i.GI1(Ve,8))};static#t=this.\u0275dir=i.Sc5({type:Ze,hostVars:4,hostBindings:function(xe,Pe){2&xe&&i.eAK("mdc-list-item__start",Pe._isAlignedAtStart())("mdc-list-item__end",!Pe._isAlignedAtStart())}})}return Ze})(),be=(()=>{class Ze extends Ne{static#e=this.\u0275fac=(()=>{let le;return function(Pe){return(le||(le=i.otF(Ze)))(Pe||Ze)}})();static#t=this.\u0275dir=i.Sc5({type:Ze,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],features:[i.eg9]})}return Ze})(),j=(()=>{class Ze extends Ne{static#e=this.\u0275fac=(()=>{let le;return function(Pe){return(le||(le=i.otF(Ze)))(Pe||Ze)}})();static#t=this.\u0275dir=i.Sc5({type:Ze,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],features:[i.eg9]})}return Ze})();const we=new i.UbH("MAT_LIST_CONFIG");let N=(()=>{class Ze{constructor(){this._isNonInteractive=!0,this._disableRipple=!1,this._disabled=!1,this._defaultOptions=(0,i.uUt)(we,{optional:!0})}get disableRipple(){return this._disableRipple}set disableRipple(le){this._disableRipple=(0,s.W6)(le)}get disabled(){return this._disabled}set disabled(le){this._disabled=(0,s.W6)(le)}static#e=this.\u0275fac=function(xe){return new(xe||Ze)};static#t=this.\u0275dir=i.Sc5({type:Ze,hostVars:1,hostBindings:function(xe,Pe){2&xe&&i.e48("aria-disabled",Pe.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"}})}return Ze})(),U=(()=>{class Ze{set lines(le){this._explicitLines=(0,s.wZ)(le,null),this._updateItemLines(!1)}get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(le){this._disableRipple=(0,s.W6)(le)}get disabled(){return this._disabled||!!this._listBase?.disabled}set disabled(le){this._disabled=(0,s.W6)(le)}get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(le,xe,Pe,ht,Ht,vt){this._elementRef=le,this._ngZone=xe,this._listBase=Pe,this._platform=ht,this._explicitLines=null,this._disableRipple=!1,this._disabled=!1,this._subscriptions=new l.wH,this._rippleRenderer=null,this._hasUnscopedTextContent=!1,this.rippleConfig=Ht||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._noopAnimations="NoopAnimations"===vt,Pe&&!Pe._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new h.Ch(this,this._ngZone,this._hostElement,this._platform),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,f.U)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(le){if(!this._lines||!this._titles||!this._unscopedContent)return;le&&this._checkDomForUnscopedTextContent();const xe=this._explicitLines??this._inferLinesFromContent(),Pe=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",xe<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",xe<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===xe),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===xe),this._hasUnscopedTextContent){const ht=0===this._titles.length&&1===xe;Pe.classList.toggle("mdc-list-item__primary-text",ht),Pe.classList.toggle("mdc-list-item__secondary-text",!ht)}else Pe.classList.remove("mdc-list-item__primary-text"),Pe.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let le=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(le+=1),le}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(le=>le.nodeType!==le.COMMENT_NODE).some(le=>!(!le.textContent||!le.textContent.trim()))}static#e=this.\u0275fac=function(xe){return new(xe||Ze)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(N,8),i.GI1(a.WU),i.GI1(h.Ge,8),i.GI1(i.qwP,8))};static#t=this.\u0275dir=i.Sc5({type:Ze,contentQueries:function(xe,Pe,ht){if(1&xe&&(i.szK(ht,be,4),i.szK(ht,j,4)),2&xe){let Ht;i.wto(Ht=i.Gqi())&&(Pe._avatars=Ht),i.wto(Ht=i.Gqi())&&(Pe._icons=Ht)}},hostVars:4,hostBindings:function(xe,Pe){2&xe&&(i.e48("aria-disabled",Pe.disabled)("disabled",Pe._isButtonElement&&Pe.disabled||null),i.eAK("mdc-list-item--disabled",Pe.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"}})}return Ze})(),Lt=(()=>{class Ze extends N{static#e=this.\u0275fac=(()=>{let le;return function(Pe){return(le||(le=i.otF(Ze)))(Pe||Ze)}})();static#t=this.\u0275cmp=i.In1({type:Ze,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],features:[i.M5G([{provide:N,useExisting:Ze}]),i.eg9],ngContentSelectors:Ge,decls:1,vars:0,template:function(xe,Pe){1&xe&&(i.kPM(),i._Xx(0))},styles:[tt],encapsulation:2,changeDetection:0})}return Ze})(),Kt=(()=>{class Ze extends U{get activated(){return this._activated}set activated(le){this._activated=(0,s.W6)(le)}constructor(le,xe,Pe,ht,Ht,vt){super(le,xe,Pe,ht,Ht,vt),this._activated=!1}_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}static#e=this.\u0275fac=function(xe){return new(xe||Ze)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(N,8),i.GI1(a.WU),i.GI1(h.Ge,8),i.GI1(i.qwP,8))};static#t=this.\u0275cmp=i.In1({type:Ze,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(xe,Pe,ht){if(1&xe&&(i.szK(ht,ge,5),i.szK(ht,te,5),i.szK(ht,xt,5)),2&xe){let Ht;i.wto(Ht=i.Gqi())&&(Pe._lines=Ht),i.wto(Ht=i.Gqi())&&(Pe._titles=Ht),i.wto(Ht=i.Gqi())&&(Pe._meta=Ht)}},viewQuery:function(xe,Pe){if(1&xe&&(i.CC$(gt,5),i.CC$(Bt,5)),2&xe){let ht;i.wto(ht=i.Gqi())&&(Pe._unscopedContent=ht.first),i.wto(ht=i.Gqi())&&(Pe._itemText=ht.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:11,hostBindings:function(xe,Pe){2&xe&&(i.e48("aria-current",Pe._getAriaCurrent()),i.eAK("mdc-list-item--activated",Pe.activated)("mdc-list-item--with-leading-avatar",0!==Pe._avatars.length)("mdc-list-item--with-leading-icon",0!==Pe._icons.length)("mdc-list-item--with-trailing-meta",0!==Pe._meta.length)("_mat-animation-noopable",Pe._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],features:[i.eg9],ngContentSelectors:Ye,decls:10,vars:0,consts:[[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],["unscopedContent",""],[1,"mat-mdc-focus-indicator"]],template:function(xe,Pe){1&xe&&(i.kPM(kt),i._Xx(0),i.I0R(1,"span",0),i._Xx(2,1),i._Xx(3,2),i.I0R(4,"span",1,2),i.qCj("cdkObserveContent",function(){return Pe._updateItemLines(!0)}),i._Xx(6,3),i.C$Y()(),i._Xx(7,4),i._Xx(8,5),i.wR5(9,"div",3))},dependencies:[b.Wk],encapsulation:2,changeDetection:0})}return Ze})(),Mi=(()=>{class Ze{static#e=this.\u0275fac=function(xe){return new(xe||Ze)};static#t=this.\u0275dir=i.Sc5({type:Ze,selectors:[["","mat-subheader",""],["","matSubheader",""]],hostAttrs:[1,"mat-mdc-subheader","mdc-list-group__subheader"]})}return Ze})(),zt=(()=>{class Ze extends N{constructor(){super(...arguments),this._isNonInteractive=!1}static#e=this.\u0275fac=(()=>{let le;return function(Pe){return(le||(le=i.otF(Ze)))(Pe||Ze)}})();static#t=this.\u0275cmp=i.In1({type:Ze,selectors:[["mat-nav-list"]],hostAttrs:["role","navigation",1,"mat-mdc-nav-list","mat-mdc-list-base","mdc-list"],exportAs:["matNavList"],features:[i.M5G([{provide:N,useExisting:Ze}]),i.eg9],ngContentSelectors:Ge,decls:1,vars:0,template:function(xe,Pe){1&xe&&(i.kPM(),i._Xx(0))},styles:[tt],encapsulation:2,changeDetection:0})}return Ze})(),at=(()=>{class Ze{static#e=this.\u0275fac=function(xe){return new(xe||Ze)};static#t=this.\u0275mod=i.a4G({type:Ze});static#i=this.\u0275inj=i.s3X({imports:[b.IT,R.MD,h.AN,h.KE,h.oD,Y.U]})}return Ze})()},7500:(lt,me,d)=>{"use strict";d.d(me,{OQ:()=>$t,_A:()=>Ut,aM:()=>we,yG:()=>Kt});var i=d(2116),s=d(4723),a=d(7712),h=d(7800),l=d(5657),f=d(3412),g=d(6928),b=d(2700),R=d(1472),Y=d(5568),J=d(7368),ie=d(3992),ae=d(3616),Ie=d(6684),Ee=d(7680),Ge=d(3576),tt=d(1368),gt=d(2488),Bt=d(9684),kt=d(1900),Ye=d(68),et=d(5792),Q=d(8408);const _e=["mat-menu-item",""];function ye(ni,Mi){1&ni&&(i.S2Z(),i.I0R(0,"svg",3),i.wR5(1,"polygon",4),i.C$Y())}const Re=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],Xe=["mat-icon, [matMenuItemIcon]","*"];function $e(ni,Mi){if(1&ni){const wt=i.KQA();i.I0R(0,"div",0),i.qCj("keydown",function(Dt){i.usT(wt);const ve=i.GaO();return i.CGJ(ve._handleKeydown(Dt))})("click",function(){i.usT(wt);const Dt=i.GaO();return i.CGJ(Dt.closed.emit("click"))})("@transformMenu.start",function(Dt){i.usT(wt);const ve=i.GaO();return i.CGJ(ve._onAnimationStart(Dt))})("@transformMenu.done",function(Dt){i.usT(wt);const ve=i.GaO();return i.CGJ(ve._onAnimationDone(Dt))}),i.I0R(1,"div",1),i._Xx(2),i.C$Y()()}if(2&ni){const wt=i.GaO();i.E7m("id",wt.panelId)("ngClass",wt._classList)("@transformMenu",wt._panelAnimationState),i.e48("aria-label",wt.ariaLabel||null)("aria-labelledby",wt.ariaLabelledby||null)("aria-describedby",wt.ariaDescribedby||null)}}const oe=["*"],ut=new i.UbH("MAT_MENU_PANEL"),st=(0,Ge.bc)((0,Ge.YB)(class{}));let $t=(()=>{class ni extends st{constructor(wt,zt,Dt,ve,Te){super(),this._elementRef=wt,this._document=zt,this._focusMonitor=Dt,this._parentMenu=ve,this._changeDetectorRef=Te,this.role="menuitem",this._hovered=new l.E,this._focused=new l.E,this._highlighted=!1,this._triggersSubmenu=!1,ve?.addItem?.(this)}focus(wt,zt){this._focusMonitor&&wt?this._focusMonitor.focusVia(this._getHostElement(),wt,zt):this._getHostElement().focus(zt),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}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(wt){this.disabled&&(wt.preventDefault(),wt.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const wt=this._elementRef.nativeElement.cloneNode(!0),zt=wt.querySelectorAll("mat-icon, .material-icons");for(let Dt=0;Dt enter",(0,Bt.Cs)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,Bt.wb)({opacity:1,transform:"scale(1)"}))),(0,Bt.aK)("* => void",(0,Bt.Cs)("100ms 25ms linear",(0,Bt.wb)({opacity:0})))]),fadeInItems:(0,Bt.gV)("fadeInItems",[(0,Bt.K2)("showing",(0,Bt.wb)({opacity:1})),(0,Bt.aK)("void => *",[(0,Bt.wb)({opacity:0}),(0,Bt.Cs)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let xt=0;const Ne=new i.UbH("mat-menu-default-options",{providedIn:"root",factory:function be(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let j=(()=>{class ni{get xPosition(){return this._xPosition}set xPosition(wt){this._xPosition=wt,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(wt){this._yPosition=wt,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(wt){this._overlapTrigger=(0,a.W6)(wt)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(wt){this._hasBackdrop=(0,a.W6)(wt)}set panelClass(wt){const zt=this._previousPanelClass;zt&&zt.length&&zt.split(" ").forEach(Dt=>{this._classList[Dt]=!1}),this._previousPanelClass=wt,wt&&wt.length&&(wt.split(" ").forEach(Dt=>{this._classList[Dt]=!0}),this._elementRef.nativeElement.className="")}get classList(){return this.panelClass}set classList(wt){this.panelClass=wt}constructor(wt,zt,Dt,ve){this._elementRef=wt,this._ngZone=zt,this._changeDetectorRef=ve,this._directDescendantItems=new i.VhX,this._classList={},this._panelAnimationState="void",this._animationDone=new l.E,this.closed=new i._w7,this.close=this.closed,this.panelId="mat-menu-panel-"+xt++,this.overlayPanelClass=Dt.overlayPanelClass||"",this._xPosition=Dt.xPosition,this._yPosition=Dt.yPosition,this.backdropClass=Dt.backdropClass,this._overlapTrigger=Dt.overlapTrigger,this._hasBackdrop=Dt.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new s.IH(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,Y.W)(this._directDescendantItems),(0,J.G)(wt=>(0,f.U)(...wt.map(zt=>zt._focused)))).subscribe(wt=>this._keyManager.updateActiveItem(wt)),this._directDescendantItems.changes.subscribe(wt=>{const zt=this._keyManager;if("enter"===this._panelAnimationState&&zt.activeItem?._hasFocus()){const Dt=wt.toArray(),ve=Math.max(0,Math.min(Dt.length-1,zt.activeItemIndex||0));Dt[ve]&&!Dt[ve].disabled?zt.setActiveItem(ve):zt.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusSubscription?.unsubscribe()}_hovered(){return this._directDescendantItems.changes.pipe((0,Y.W)(this._directDescendantItems),(0,J.G)(zt=>(0,f.U)(...zt.map(Dt=>Dt._hovered))))}addItem(wt){}removeItem(wt){}_handleKeydown(wt){const zt=wt.keyCode,Dt=this._keyManager;switch(zt){case h.UX:(0,h.Yp)(wt)||(wt.preventDefault(),this.closed.emit("keydown"));break;case h.Mx:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case h.a4:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(zt===h.qI||zt===h.Oq)&&Dt.setFocusOrigin("keyboard"),void Dt.onKeydown(wt)}wt.stopPropagation()}focusFirstItem(wt="program"){this._firstItemFocusSubscription?.unsubscribe(),this._firstItemFocusSubscription=this._ngZone.onStable.pipe((0,ie.U)(1)).subscribe(()=>{let zt=null;if(this._directDescendantItems.length&&(zt=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!zt||!zt.contains(document.activeElement)){const Dt=this._keyManager;Dt.setFocusOrigin(wt).setFirstItemActive(),!Dt.activeItem&&zt&&zt.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(wt){const zt=Math.min(this._baseElevation+wt,24),Dt=`${this._elevationPrefix}${zt}`,ve=Object.keys(this._classList).find(Te=>Te.startsWith(this._elevationPrefix));(!ve||ve===this._previousElevation)&&(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[Dt]=!0,this._previousElevation=Dt)}setPositionClasses(wt=this.xPosition,zt=this.yPosition){const Dt=this._classList;Dt["mat-menu-before"]="before"===wt,Dt["mat-menu-after"]="after"===wt,Dt["mat-menu-above"]="above"===zt,Dt["mat-menu-below"]="below"===zt,this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(wt){this._animationDone.next(wt),this._isAnimating=!1}_onAnimationStart(wt){this._isAnimating=!0,"enter"===wt.toState&&0===this._keyManager.activeItemIndex&&(wt.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,Y.W)(this._allItems)).subscribe(wt=>{this._directDescendantItems.reset(wt.filter(zt=>zt._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}static#e=this.\u0275fac=function(zt){return new(zt||ni)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(Ne),i.GI1(i.kD9))};static#t=this.\u0275dir=i.Sc5({type:ni,contentQueries:function(zt,Dt,ve){if(1&zt&&(i.szK(ve,je,5),i.szK(ve,$t,5),i.szK(ve,$t,4)),2&zt){let Te;i.wto(Te=i.Gqi())&&(Dt.lazyContent=Te.first),i.wto(Te=i.Gqi())&&(Dt._allItems=Te),i.wto(Te=i.Gqi())&&(Dt.items=Te)}},viewQuery:function(zt,Dt){if(1&zt&&i.CC$(i.Yw2,5),2&zt){let ve;i.wto(ve=i.Gqi())&&(Dt.templateRef=ve.first)}},inputs:{backdropClass:"backdropClass",ariaLabel:[i.Wk5.None,"aria-label","ariaLabel"],ariaLabelledby:[i.Wk5.None,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[i.Wk5.None,"aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:"overlapTrigger",hasBackdrop:"hasBackdrop",panelClass:[i.Wk5.None,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"}})}return ni})(),we=(()=>{class ni extends j{constructor(wt,zt,Dt,ve){super(wt,zt,Dt,ve),this._elevationPrefix="mat-elevation-z",this._baseElevation=8}static#e=this.\u0275fac=function(zt){return new(zt||ni)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(Ne),i.GI1(i.kD9))};static#t=this.\u0275cmp=i.In1({type:ni,selectors:[["mat-menu"]],hostAttrs:["ngSkipHydration",""],hostVars:3,hostBindings:function(zt,Dt){2&zt&&i.e48("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},exportAs:["matMenu"],features:[i.M5G([{provide:ut,useExisting:ni}]),i.eg9],ngContentSelectors:oe,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel","mat-mdc-elevation-specific",3,"id","ngClass","keydown","click"],[1,"mat-mdc-menu-content"]],template:function(zt,Dt){1&zt&&(i.kPM(),i.yuY(0,$e,3,6,"ng-template"))},dependencies:[tt.QF],styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;list-style-type:none}.mat-mdc-menu-content:focus{outline:none}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;white-space:normal;font-family:var(--mat-menu-item-label-text-font);line-height:var(--mat-menu-item-label-text-line-height);font-size:var(--mat-menu-item-label-text-size);letter-spacing:var(--mat-menu-item-label-text-tracking);font-weight:var(--mat-menu-item-label-text-weight)}.mat-mdc-menu-panel{--mat-menu-container-shape:4px;min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;outline:0;border-radius:var(--mat-menu-container-shape);background-color:var(--mat-menu-container-color);will-change:transform,opacity}.mat-mdc-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-mdc-menu-panel{outline:solid 1px}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;align-items:center;min-height:48px}.mat-mdc-menu-item:focus{outline:none}[dir=rtl] .mat-mdc-menu-item,.mat-mdc-menu-item[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-menu-item::-moz-focus-inner{border:0}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color)}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color)}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item .mat-icon{margin-right:16px}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:16px}.mat-mdc-menu-item.mat-mdc-menu-item-submenu-trigger{padding-right:32px}[dir=rtl] .mat-mdc-menu-item.mat-mdc-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color)}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color)}.cdk-high-contrast-active .mat-mdc-menu-item{margin-top:1px}.mat-mdc-menu-submenu-icon{position:absolute;top:50%;right:16px;transform:translateY(-50%);width:5px;height:10px;fill:currentColor}[dir=rtl] .mat-mdc-menu-submenu-icon{right:auto;left:16px;transform:translateY(-50%) scaleX(-1)}.cdk-high-contrast-active .mat-mdc-menu-submenu-icon{fill:CanvasText}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}'],encapsulation:2,data:{animation:[Ve.transformMenu,Ve.fadeInItems]},changeDetection:0})}return ni})();const N=new i.UbH("mat-menu-scroll-strategy"),Fe={provide:N,deps:[Ye.mc],useFactory:function U(ni){return()=>ni.scrollStrategies.reposition()}},Tt=(0,et.W4)({passive:!0});let Lt=(()=>{class ni{get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(wt){this.menu=wt}get menu(){return this._menu}set menu(wt){wt!==this._menu&&(this._menu=wt,this._menuCloseSubscription.unsubscribe(),wt&&(this._menuCloseSubscription=wt.close.subscribe(zt=>{this._destroyMenu(zt),("click"===zt||"tab"===zt)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(zt)})),this._menuItemInstance?._setTriggersSubmenu(this.triggersSubmenu()))}constructor(wt,zt,Dt,ve,Te,at,Ze,pt,le){this._overlay=wt,this._element=zt,this._viewContainerRef=Dt,this._menuItemInstance=at,this._dir=Ze,this._focusMonitor=pt,this._ngZone=le,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=g.wH.EMPTY,this._hoverSubscription=g.wH.EMPTY,this._menuCloseSubscription=g.wH.EMPTY,this._changeDetectorRef=(0,i.uUt)(i.kD9),this._handleTouchStart=xe=>{(0,s.q0)(xe)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new i._w7,this.onMenuOpen=this.menuOpened,this.menuClosed=new i._w7,this.onMenuClose=this.menuClosed,this._scrollStrategy=ve,this._parentMaterialMenu=Te instanceof j?Te:void 0,zt.nativeElement.addEventListener("touchstart",this._handleTouchStart,Tt)}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,Tt),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._parentMaterialMenu&&this.menu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const wt=this.menu;if(this._menuOpen||!wt)return;const zt=this._createOverlay(wt),Dt=zt.getConfig(),ve=Dt.positionStrategy;this._setPosition(wt,ve),Dt.hasBackdrop=null==wt.hasBackdrop?!this.triggersSubmenu():wt.hasBackdrop,zt.attach(this._getPortal(wt)),wt.lazyContent&&wt.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(wt),wt instanceof j&&(wt._startAnimation(),wt._directDescendantItems.changes.pipe((0,ae.a)(wt.close)).subscribe(()=>{ve.withLockedPosition(!1).reapplyLastPosition(),ve.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(wt,zt){this._focusMonitor&&wt?this._focusMonitor.focusVia(this._element,wt,zt):this._element.nativeElement.focus(zt)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(wt){if(!this._overlayRef||!this.menuOpen)return;const zt=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===wt||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,zt instanceof j?(zt._resetAnimation(),zt.lazyContent?zt._animationDone.pipe((0,Ie.I)(Dt=>"void"===Dt.toState),(0,ie.U)(1),(0,ae.a)(zt.lazyContent._attached)).subscribe({next:()=>zt.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),zt?.lazyContent?.detach())}_initMenu(wt){wt.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,wt.direction=this.dir,this._setMenuElevation(wt),wt.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(wt){if(wt.setElevation){let zt=0,Dt=wt.parentMenu;for(;Dt;)zt++,Dt=Dt.parentMenu;wt.setElevation(zt)}}_setIsMenuOpen(wt){wt!==this._menuOpen&&(this._menuOpen=wt,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(wt),this._changeDetectorRef.markForCheck())}_createOverlay(wt){if(!this._overlayRef){const zt=this._getOverlayConfig(wt);this._subscribeToPositions(wt,zt.positionStrategy),this._overlayRef=this._overlay.create(zt),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(wt){return new Ye.o9({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:wt.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:wt.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(wt,zt){wt.setPositionClasses&&zt.positionChanges.subscribe(Dt=>{const ve="start"===Dt.connectionPair.overlayX?"after":"before",Te="top"===Dt.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>wt.setPositionClasses(ve,Te)):wt.setPositionClasses(ve,Te)})}_setPosition(wt,zt){let[Dt,ve]="before"===wt.xPosition?["end","start"]:["start","end"],[Te,at]="above"===wt.yPosition?["bottom","top"]:["top","bottom"],[Ze,pt]=[Te,at],[le,xe]=[Dt,ve],Pe=0;if(this.triggersSubmenu()){if(xe=Dt="before"===wt.xPosition?"start":"end",ve=le="end"===Dt?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const ht=this._parentMaterialMenu.items.first;this._parentInnerPadding=ht?ht._getHostElement().offsetTop:0}Pe="bottom"===Te?this._parentInnerPadding:-this._parentInnerPadding}}else wt.overlapTrigger||(Ze="top"===Te?"bottom":"top",pt="top"===at?"bottom":"top");zt.withPositions([{originX:Dt,originY:Ze,overlayX:le,overlayY:Te,offsetY:Pe},{originX:ve,originY:Ze,overlayX:xe,overlayY:Te,offsetY:Pe},{originX:Dt,originY:pt,overlayX:le,overlayY:at,offsetY:-Pe},{originX:ve,originY:pt,overlayX:xe,overlayY:at,offsetY:-Pe}])}_menuClosingActions(){const wt=this._overlayRef.backdropClick(),zt=this._overlayRef.detachments(),Dt=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,b.of)(),ve=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,Ie.I)(Te=>Te!==this._menuItemInstance),(0,Ie.I)(()=>this._menuOpen)):(0,b.of)();return(0,f.U)(wt,Dt,ve,zt)}_handleMousedown(wt){(0,s.G3)(wt)||(this._openedBy=0===wt.button?"mouse":void 0,this.triggersSubmenu()&&wt.preventDefault())}_handleKeydown(wt){const zt=wt.keyCode;(zt===h.wJ||zt===h.Gi)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(zt===h.a4&&"ltr"===this.dir||zt===h.Mx&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(wt){this.triggersSubmenu()?(wt.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,Ie.I)(wt=>wt===this._menuItemInstance&&!wt.disabled),(0,Ee.o)(0,R.u)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof j&&this.menu._isAnimating?this.menu._animationDone.pipe((0,ie.U)(1),(0,Ee.o)(0,R.u),(0,ae.a)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(wt){return(!this._portal||this._portal.templateRef!==wt.templateRef)&&(this._portal=new gt.CC(wt.templateRef,this._viewContainerRef)),this._portal}static#e=this.\u0275fac=function(zt){return new(zt||ni)(i.GI1(Ye.mc),i.GI1(i.GMv),i.GI1(i.y8U),i.GI1(N),i.GI1(ut,8),i.GI1($t,10),i.GI1(kt.yG,8),i.GI1(s.Kk),i.GI1(i.WW2))};static#t=this.\u0275dir=i.Sc5({type:ni,hostVars:3,hostBindings:function(zt,Dt){1&zt&&i.qCj("click",function(Te){return Dt._handleClick(Te)})("mousedown",function(Te){return Dt._handleMousedown(Te)})("keydown",function(Te){return Dt._handleKeydown(Te)}),2&zt&&i.e48("aria-haspopup",Dt.menu?"menu":null)("aria-expanded",Dt.menuOpen)("aria-controls",Dt.menuOpen?Dt.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:[i.Wk5.None,"mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:[i.Wk5.None,"matMenuTriggerFor","menu"],menuData:[i.Wk5.None,"matMenuTriggerData","menuData"],restoreFocus:[i.Wk5.None,"matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"}})}return ni})(),Kt=(()=>{class ni extends Lt{static#e=this.\u0275fac=(()=>{let wt;return function(Dt){return(wt||(wt=i.otF(ni)))(Dt||ni)}})();static#t=this.\u0275dir=i.Sc5({type:ni,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],exportAs:["matMenuTrigger"],features:[i.eg9]})}return ni})(),Ut=(()=>{class ni{static#e=this.\u0275fac=function(zt){return new(zt||ni)};static#t=this.\u0275mod=i.a4G({type:ni});static#i=this.\u0275inj=i.s3X({providers:[Fe],imports:[tt.MD,Ge.KE,Ge.AN,Ye.Y1,Q.uU,Ge.AN]})}return ni})()},2156:(lt,me,d)=>{"use strict";d.d(me,{Qb:()=>ye,w5:()=>Re});var i=d(1368),s=d(2116),a=d(5657),h=d(7816),l=d(2096),f=d(6496),g=d(3576),b=d(7712),R=d(4060);function Y(Xe,$e){if(1&Xe&&(s.I0R(0,"mat-option",19),s.OEk(1),s.C$Y()),2&Xe){const oe=$e.$implicit;s.E7m("value",oe),s.yG2(),s.oRS(" ",oe," ")}}function J(Xe,$e){if(1&Xe){const oe=s.KQA();s.I0R(0,"mat-form-field",16)(1,"mat-select",17),s.qCj("selectionChange",function(st){s.usT(oe);const $t=s.GaO(2);return s.CGJ($t._changePageSize(st.value))}),s.yuY(2,Y,2,2,"mat-option",18),s.C$Y()()}if(2&Xe){const oe=s.GaO(2);s.E7m("appearance",oe._formFieldAppearance)("color",oe.color),s.yG2(),s.E7m("value",oe.pageSize)("disabled",oe.disabled)("aria-labelledby",oe._pageSizeLabelId)("panelClass",oe.selectConfig.panelClass||"")("disableOptionCentering",oe.selectConfig.disableOptionCentering),s.yG2(),s.E7m("ngForOf",oe._displayedPageSizeOptions)}}function ie(Xe,$e){if(1&Xe&&(s.I0R(0,"div",20),s.OEk(1),s.C$Y()),2&Xe){const oe=s.GaO(2);s.yG2(),s.cNF(oe.pageSize)}}function ae(Xe,$e){if(1&Xe&&(s.I0R(0,"div",12)(1,"div",13),s.OEk(2),s.C$Y(),s.yuY(3,J,3,8,"mat-form-field",14)(4,ie,2,1,"div",15),s.C$Y()),2&Xe){const oe=s.GaO();s.yG2(),s._6D("id",oe._pageSizeLabelId),s.yG2(),s.oRS(" ",oe._intl.itemsPerPageLabel," "),s.yG2(),s.E7m("ngIf",oe._displayedPageSizeOptions.length>1),s.yG2(),s.E7m("ngIf",oe._displayedPageSizeOptions.length<=1)}}function Ie(Xe,$e){if(1&Xe){const oe=s.KQA();s.I0R(0,"button",21),s.qCj("click",function(){s.usT(oe);const st=s.GaO();return s.CGJ(st.firstPage())}),s.S2Z(),s.I0R(1,"svg",7),s.wR5(2,"path",22),s.C$Y()()}if(2&Xe){const oe=s.GaO();s.E7m("matTooltip",oe._intl.firstPageLabel)("matTooltipDisabled",oe._previousButtonsDisabled())("matTooltipPosition","above")("disabled",oe._previousButtonsDisabled()),s.e48("aria-label",oe._intl.firstPageLabel)}}function Ee(Xe,$e){if(1&Xe){const oe=s.KQA();s.S2Z(),s.gRP(),s.I0R(0,"button",23),s.qCj("click",function(){s.usT(oe);const st=s.GaO();return s.CGJ(st.lastPage())}),s.S2Z(),s.I0R(1,"svg",7),s.wR5(2,"path",24),s.C$Y()()}if(2&Xe){const oe=s.GaO();s.E7m("matTooltip",oe._intl.lastPageLabel)("matTooltipDisabled",oe._nextButtonsDisabled())("matTooltipPosition","above")("disabled",oe._nextButtonsDisabled()),s.e48("aria-label",oe._intl.lastPageLabel)}}let Ge=(()=>{class Xe{constructor(){this.changes=new a.E,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(oe,ut,st)=>{if(0==st||0==ut)return`0 of ${st}`;const $t=oe*ut;return`${$t+1} \u2013 ${$t<(st=Math.max(st,0))?Math.min($t+ut,st):$t+ut} of ${st}`}}static#e=this.\u0275fac=function(ut){return new(ut||Xe)};static#t=this.\u0275prov=s.wxM({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})();const gt={provide:Ge,deps:[[new s.T7N,new s.Qfh,Ge]],useFactory:function tt(Xe){return Xe||new Ge}},Ye=new s.UbH("MAT_PAGINATOR_DEFAULT_OPTIONS"),et=(0,g.YB)((0,g.aU)(class{}));let Q=(()=>{class Xe extends et{get pageIndex(){return this._pageIndex}set pageIndex(oe){this._pageIndex=Math.max((0,b.wZ)(oe),0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(oe){this._length=(0,b.wZ)(oe),this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(oe){this._pageSize=Math.max((0,b.wZ)(oe),0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(oe){this._pageSizeOptions=(oe||[]).map(ut=>(0,b.wZ)(ut)),this._updateDisplayedPageSizeOptions()}get hidePageSize(){return this._hidePageSize}set hidePageSize(oe){this._hidePageSize=(0,b.W6)(oe)}get showFirstLastButtons(){return this._showFirstLastButtons}set showFirstLastButtons(oe){this._showFirstLastButtons=(0,b.W6)(oe)}constructor(oe,ut,st){if(super(),this._intl=oe,this._changeDetectorRef=ut,this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this._hidePageSize=!1,this._showFirstLastButtons=!1,this.selectConfig={},this.page=new s._w7,this._intlChanges=oe.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),st){const{pageSize:$t,pageSizeOptions:oi,hidePageSize:Jt,showFirstLastButtons:vi}=st;null!=$t&&(this._pageSize=$t),null!=oi&&(this._pageSizeOptions=oi),null!=Jt&&(this._hidePageSize=Jt),null!=vi&&(this._showFirstLastButtons=vi)}}ngOnInit(){this._initialized=!0,this._updateDisplayedPageSizeOptions(),this._markInitialized()}ngOnDestroy(){this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const oe=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(oe)}previousPage(){if(!this.hasPreviousPage())return;const oe=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(oe)}firstPage(){if(!this.hasPreviousPage())return;const oe=this.pageIndex;this.pageIndex=0,this._emitPageEvent(oe)}lastPage(){if(!this.hasNextPage())return;const oe=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(oe)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const oe=this.getNumberOfPages()-1;return this.pageIndexoe-ut),this._changeDetectorRef.markForCheck())}_emitPageEvent(oe){this.page.emit({previousPageIndex:oe,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}static#e=this.\u0275fac=function(ut){s.KEo()};static#t=this.\u0275dir=s.Sc5({type:Xe,inputs:{color:"color",pageIndex:"pageIndex",length:"length",pageSize:"pageSize",pageSizeOptions:"pageSizeOptions",hidePageSize:"hidePageSize",showFirstLastButtons:"showFirstLastButtons",selectConfig:"selectConfig"},outputs:{page:"page"},features:[s.eg9]})}return Xe})(),_e=0,ye=(()=>{class Xe extends Q{constructor(oe,ut,st){super(oe,ut,st),this._pageSizeLabelId="mat-paginator-page-size-label-"+_e++,this._formFieldAppearance=st?.formFieldAppearance||"outline"}static#e=this.\u0275fac=function(ut){return new(ut||Xe)(s.GI1(Ge),s.GI1(s.kD9),s.GI1(Ye,8))};static#t=this.\u0275cmp=s.In1({type:Xe,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{disabled:"disabled"},exportAs:["matPaginator"],features:[s.eg9],decls:14,vars:14,consts:[[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],["class","mat-mdc-paginator-page-size",4,"ngIf"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["mat-icon-button","","type","button","class","mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click",4,"ngIf"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-previous",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-next",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button","class","mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click",4,"ngIf"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-page-size-label",3,"id"],["class","mat-mdc-paginator-page-size-select",3,"appearance","color",4,"ngIf"],["class","mat-mdc-paginator-page-size-value",4,"ngIf"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],["hideSingleSelectionIndicator","",3,"value","disabled","aria-labelledby","panelClass","disableOptionCentering","selectionChange"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],[1,"mat-mdc-paginator-page-size-value"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(ut,st){1&ut&&(s.I0R(0,"div",0)(1,"div",1),s.yuY(2,ae,5,4,"div",2),s.I0R(3,"div",3)(4,"div",4),s.OEk(5),s.C$Y(),s.yuY(6,Ie,3,5,"button",5),s.I0R(7,"button",6),s.qCj("click",function(){return st.previousPage()}),s.S2Z(),s.I0R(8,"svg",7),s.wR5(9,"path",8),s.C$Y()(),s.gRP(),s.I0R(10,"button",9),s.qCj("click",function(){return st.nextPage()}),s.S2Z(),s.I0R(11,"svg",7),s.wR5(12,"path",10),s.C$Y()(),s.yuY(13,Ee,3,5,"button",11),s.C$Y()()()),2&ut&&(s.yG2(2),s.E7m("ngIf",!st.hidePageSize),s.yG2(3),s.oRS(" ",st._intl.getRangeLabel(st.pageIndex,st.pageSize,st.length)," "),s.yG2(),s.E7m("ngIf",st.showFirstLastButtons),s.yG2(),s.E7m("matTooltip",st._intl.previousPageLabel)("matTooltipDisabled",st._previousButtonsDisabled())("matTooltipPosition","above")("disabled",st._previousButtonsDisabled()),s.e48("aria-label",st._intl.previousPageLabel),s.yG2(3),s.E7m("matTooltip",st._intl.nextPageLabel)("matTooltipDisabled",st._nextButtonsDisabled())("matTooltipPosition","above")("disabled",st._nextButtonsDisabled()),s.e48("aria-label",st._intl.nextPageLabel),s.yG2(3),s.E7m("ngIf",st.showFirstLastButtons))},dependencies:[i.ay,i.u_,h.um,R.Up,l.kX,g.I5,f.a4],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color);background-color:var(--mat-paginator-container-background-color);font-family:var(--mat-paginator-container-text-font);line-height:var(--mat-paginator-container-text-line-height);font-size:var(--mat-paginator-container-text-size);font-weight:var(--mat-paginator-container-text-weight);letter-spacing:var(--mat-paginator-container-text-tracking)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size)}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap-reverse;width:100%;min-height:var(--mat-paginator-container-size)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:84px}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color)}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,.cdk-high-contrast-active .mat-mdc-paginator-icon{fill:currentColor;fill:CanvasText}.cdk-high-contrast-active .mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return Xe})(),Re=(()=>{class Xe{static#e=this.\u0275fac=function(ut){return new(ut||Xe)};static#t=this.\u0275mod=s.a4G({type:Xe});static#i=this.\u0275inj=s.s3X({providers:[gt],imports:[i.MD,h.oJ,l.d5,f.KO]})}return Xe})()},9092:(lt,me,d)=>{"use strict";d.d(me,{Ko:()=>J,wx:()=>R});var i=d(2116),a=(d(1368),d(3576)),h=d(7712);const l=new i.UbH("MAT_PROGRESS_BAR_DEFAULT_OPTIONS"),b=(0,a.i)(class{constructor(ie){this._elementRef=ie}},"primary");let R=(()=>{class ie extends b{constructor(Ie,Ee,Ge,tt,gt){super(Ie),this._ngZone=Ee,this._changeDetectorRef=Ge,this._animationMode=tt,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new i._w7,this._mode="determinate",this._transitionendHandler=Bt=>{0===this.animationEnd.observers.length||!Bt.target||!Bt.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))},this._isNoopAnimation="NoopAnimations"===tt,gt&&(gt.color&&(this.color=this.defaultColor=gt.color),this.mode=gt.mode||this.mode)}get value(){return this._value}set value(Ie){this._value=Y((0,h.wZ)(Ie)),this._changeDetectorRef.markForCheck()}get bufferValue(){return this._bufferValue||0}set bufferValue(Ie){this._bufferValue=Y((0,h.wZ)(Ie)),this._changeDetectorRef.markForCheck()}get mode(){return this._mode}set mode(Ie){this._mode=Ie,this._changeDetectorRef.markForCheck()}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("transitionend",this._transitionendHandler)})}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._transitionendHandler)}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}static#e=this.\u0275fac=function(Ee){return new(Ee||ie)(i.GI1(i.GMv),i.GI1(i.WW2),i.GI1(i.kD9),i.GI1(i.qwP,8),i.GI1(l,8))};static#t=this.\u0275cmp=i.In1({type:ie,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:8,hostBindings:function(Ee,Ge){2&Ee&&(i.e48("aria-valuenow",Ge._isIndeterminate()?null:Ge.value)("mode",Ge.mode),i.eAK("_mat-animation-noopable",Ge._isNoopAnimation)("mdc-linear-progress--animation-ready",!Ge._isNoopAnimation)("mdc-linear-progress--indeterminate",Ge._isIndeterminate()))},inputs:{color:"color",value:"value",bufferValue:"bufferValue",mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],features:[i.eg9],decls:7,vars:4,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(Ee,Ge){1&Ee&&(i.I0R(0,"div",0),i.wR5(1,"div",1)(2,"div",2),i.C$Y(),i.I0R(3,"div",3),i.wR5(4,"span",4),i.C$Y(),i.I0R(5,"div",5),i.wR5(6,"span",4),i.C$Y()),2&Ee&&(i.yG2(),i.m4B("flex-basis",Ge._getBufferBarFlexBasis()),i.yG2(2),i.m4B("transform",Ge._getPrimaryBarTransform()))},styles:["@keyframes mdc-linear-progress-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(var(--mdc-linear-progress-primary-half))}100%{transform:translateX(var(--mdc-linear-progress-primary-full))}}@keyframes mdc-linear-progress-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 mdc-linear-progress-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(var(--mdc-linear-progress-secondary-quarter))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full))}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{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(var(--mdc-linear-progress-primary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-primary-full-neg))}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{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(var(--mdc-linear-progress-secondary-quarter-neg))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full-neg))}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}@media screen and (forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden}.mdc-linear-progress__buffer-dots{background-repeat:repeat-x;flex:auto;transform:rotate(180deg);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");animation:mdc-linear-progress-buffering 250ms infinite linear}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale 2s infinite linear}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar{right:0;-webkit-transform-origin:center right;transform-origin:center right}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse 250ms infinite linear;transform:rotate(0)}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}.mdc-linear-progress--closed{opacity:0}.mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots{animation:none}.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner{animation:none}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height) * -2.5))}}.mdc-linear-progress__bar-inner{border-color:var(--mdc-linear-progress-active-indicator-color)}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill=''/%3E%3C/svg%3E\")}}.mdc-linear-progress{height:max(var(--mdc-linear-progress-track-height), var(--mdc-linear-progress-active-indicator-height))}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress{height:4px}}.mdc-linear-progress__bar{height:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__bar-inner{border-top-width:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__buffer{height:var(--mdc-linear-progress-track-height)}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-size:10px var(--mdc-linear-progress-track-height)}}.mdc-linear-progress__buffer{border-radius:var(--mdc-linear-progress-track-shape)}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-height:4px;--mdc-linear-progress-track-height:4px;--mdc-linear-progress-track-shape:0}.mat-mdc-progress-bar{display:block;text-align:left;--mdc-linear-progress-primary-half: 83.67142%;--mdc-linear-progress-primary-full: 200.611057%;--mdc-linear-progress-secondary-quarter: 37.651913%;--mdc-linear-progress-secondary-half: 84.386165%;--mdc-linear-progress-secondary-full: 160.277782%;--mdc-linear-progress-primary-half-neg: -83.67142%;--mdc-linear-progress-primary-full-neg: -200.611057%;--mdc-linear-progress-secondary-quarter-neg: -37.651913%;--mdc-linear-progress-secondary-half-neg: -84.386165%;--mdc-linear-progress-secondary-full-neg: -160.277782%}[dir=rtl] .mat-mdc-progress-bar{text-align:right}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}"],encapsulation:2,changeDetection:0})}return ie})();function Y(ie,ae=0,Ie=100){return Math.max(ae,Math.min(Ie,ie))}let J=(()=>{class ie{static#e=this.\u0275fac=function(Ee){return new(Ee||ie)};static#t=this.\u0275mod=i.a4G({type:ie});static#i=this.\u0275inj=i.s3X({imports:[a.AN]})}return ie})()},2096:(lt,me,d)=>{"use strict";d.d(me,{d5:()=>U,kX:()=>N});var i=d(68),s=d(1368),a=d(2116),h=d(3576),l=d(4060),f=d(8408),g=d(4723),b=d(1900),R=d(7712),Y=d(1032),J=d(7800),ie=d(6504),ae=d(5657),Ie=d(1424),Ee=d(3412),Ge=d(5568),tt=d(7368),gt=d(3992),Bt=d(6684),kt=d(4704),Ye=d(4e3),et=d(3616),Q=d(9684);const _e=["trigger"],ye=["panel"];function Re(Fe,Tt){if(1&Fe&&(a.I0R(0,"span",10),a.OEk(1),a.C$Y()),2&Fe){const Ke=a.GaO();a.yG2(),a.cNF(Ke.placeholder)}}function Xe(Fe,Tt){if(1&Fe&&(a.I0R(0,"span",14),a.OEk(1),a.C$Y()),2&Fe){const Ke=a.GaO(2);a.yG2(),a.cNF(Ke.triggerValue)}}function $e(Fe,Tt){1&Fe&&a._Xx(0,0,["*ngSwitchCase","true"])}function oe(Fe,Tt){if(1&Fe&&(a.I0R(0,"span",11),a.yuY(1,Xe,2,1,"span",12)(2,$e,1,0,"ng-content",13),a.C$Y()),2&Fe){const Ke=a.GaO();a.E7m("ngSwitch",!!Ke.customTrigger),a.yG2(2),a.E7m("ngSwitchCase",!0)}}function ut(Fe,Tt){if(1&Fe){const Ke=a.KQA();a.S2Z(),a.gRP(),a.I0R(0,"div",15,16),a.qCj("@transformPanel.done",function(Kt){a.usT(Ke);const Ut=a.GaO();return a.CGJ(Ut._panelDoneAnimatingStream.next(Kt.toState))})("keydown",function(Kt){a.usT(Ke);const Ut=a.GaO();return a.CGJ(Ut._handleKeydown(Kt))}),a._Xx(2,1),a.C$Y()}if(2&Fe){const Ke=a.GaO();a.uQ9("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",Ke._getPanelTheme(),""),a.E7m("ngClass",Ke.panelClass)("@transformPanel","showing"),a.e48("id",Ke.id+"-panel")("aria-multiselectable",Ke.multiple)("aria-label",Ke.ariaLabel||null)("aria-labelledby",Ke._getPanelAriaLabelledby())}}const st=[[["mat-select-trigger"]],"*"],$t=["mat-select-trigger","*"],oi={transformPanelWrap:(0,Q.gV)("transformPanelWrap",[(0,Q.aK)("* => void",(0,Q.kt)("@transformPanel",[(0,Q.Ql)()],{optional:!0}))]),transformPanel:(0,Q.gV)("transformPanel",[(0,Q.K2)("void",(0,Q.wb)({opacity:0,transform:"scale(1, 0.8)"})),(0,Q.aK)("void => showing",(0,Q.Cs)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,Q.wb)({opacity:1,transform:"scale(1, 1)"}))),(0,Q.aK)("* => void",(0,Q.Cs)("100ms linear",(0,Q.wb)({opacity:0})))])};let De=0;const Le=new a.UbH("mat-select-scroll-strategy"),te=new a.UbH("MAT_SELECT_CONFIG"),ge={provide:Le,deps:[i.mc],useFactory:function Ve(Fe){return()=>Fe.scrollStrategies.reposition()}},xt=new a.UbH("MatSelectTrigger");class Ne{constructor(Tt,Ke){this.source=Tt,this.value=Ke}}const be=(0,h.bc)((0,h.S)((0,h.YB)((0,h.Sk)(class{constructor(Fe,Tt,Ke,Lt,Kt){this._elementRef=Fe,this._defaultErrorStateMatcher=Tt,this._parentForm=Ke,this._parentFormGroup=Lt,this.ngControl=Kt,this.stateChanges=new ae.E}}))));let j=(()=>{class Fe extends be{get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(Ke){this._placeholder=Ke,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(ie.AQ.required)??!1}set required(Ke){this._required=(0,R.W6)(Ke),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(Ke){this._multiple=(0,R.W6)(Ke)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(Ke){this._disableOptionCentering=(0,R.W6)(Ke)}get compareWith(){return this._compareWith}set compareWith(Ke){this._compareWith=Ke,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(Ke){this._assignValue(Ke)&&this._onChange(Ke)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(Ke){this._typeaheadDebounceInterval=(0,R.wZ)(Ke)}get id(){return this._id}set id(Ke){this._id=Ke||this._uid,this.stateChanges.next()}constructor(Ke,Lt,Kt,Ut,ni,Mi,wt,zt,Dt,ve,Te,at,Ze,pt){super(ni,Ut,wt,zt,ve),this._viewportRuler=Ke,this._changeDetectorRef=Lt,this._ngZone=Kt,this._dir=Mi,this._parentFormField=Dt,this._liveAnnouncer=Ze,this._defaultOptions=pt,this._panelOpen=!1,this._compareWith=(le,xe)=>le===xe,this._uid="mat-select-"+De++,this._triggerAriaLabelledBy=null,this._destroy=new ae.E,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+De++,this._panelDoneAnimatingStream=new ae.E,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this._multiple=!1,this._disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.optionSelectionChanges=(0,Ie.Q)(()=>{const le=this.options;return le?le.changes.pipe((0,Ge.W)(le),(0,tt.G)(()=>(0,Ee.U)(...le.map(xe=>xe.onSelectionChange)))):this._ngZone.onStable.pipe((0,gt.U)(1),(0,tt.G)(()=>this.optionSelectionChanges))}),this.openedChange=new a._w7,this._openedStream=this.openedChange.pipe((0,Bt.I)(le=>le),(0,kt.k)(()=>{})),this._closedStream=this.openedChange.pipe((0,Bt.I)(le=>!le),(0,kt.k)(()=>{})),this.selectionChange=new a._w7,this.valueChange=new a._w7,this._trackedModal=null,this.ngControl&&(this.ngControl.valueAccessor=this),null!=pt?.typeaheadDebounceInterval&&(this._typeaheadDebounceInterval=pt.typeaheadDebounceInterval),this._scrollStrategyFactory=at,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(Te)||0,this.id=this.id}ngOnInit(){this._selectionModel=new Y.e2(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,Ye.a)(),(0,et.a)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen))}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe((0,et.a)(this._destroy)).subscribe(Ke=>{Ke.added.forEach(Lt=>Lt.select()),Ke.removed.forEach(Lt=>Lt.deselect())}),this.options.changes.pipe((0,Ge.W)(null),(0,et.a)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const Ke=this._getTriggerAriaLabelledby(),Lt=this.ngControl;if(Ke!==this._triggerAriaLabelledBy){const Kt=this._elementRef.nativeElement;this._triggerAriaLabelledBy=Ke,Ke?Kt.setAttribute("aria-labelledby",Ke):Kt.removeAttribute("aria-labelledby")}Lt&&(this._previousControl!==Lt.control&&(void 0!==this._previousControl&&null!==Lt.disabled&&Lt.disabled!==this.disabled&&(this.disabled=Lt.disabled),this._previousControl=Lt.control),this.updateErrorState())}ngOnChanges(Ke){(Ke.disabled||Ke.userAriaDescribedBy)&&this.stateChanges.next(),Ke.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._applyModalPanelOwnership(),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck())}_applyModalPanelOwnership(){const Ke=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!Ke)return;const Lt=`${this.id}-panel`;this._trackedModal&&(0,g.Cs)(this._trackedModal,"aria-owns",Lt),(0,g.AZ)(Ke,"aria-owns",Lt),this._trackedModal=Ke}_clearFromModal(){this._trackedModal&&((0,g.Cs)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(Ke){this._assignValue(Ke)}registerOnChange(Ke){this._onChange=Ke}registerOnTouched(Ke){this._onTouched=Ke}setDisabledState(Ke){this.disabled=Ke,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 Ke=this._selectionModel.selected.map(Lt=>Lt.viewValue);return this._isRtl()&&Ke.reverse(),Ke.join(", ")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(Ke){this.disabled||(this.panelOpen?this._handleOpenKeydown(Ke):this._handleClosedKeydown(Ke))}_handleClosedKeydown(Ke){const Lt=Ke.keyCode,Kt=Lt===J.Oq||Lt===J.qI||Lt===J.Mx||Lt===J.a4,Ut=Lt===J.wJ||Lt===J.Gi,ni=this._keyManager;if(!ni.isTyping()&&Ut&&!(0,J.Yp)(Ke)||(this.multiple||Ke.altKey)&&Kt)Ke.preventDefault(),this.open();else if(!this.multiple){const Mi=this.selected;ni.onKeydown(Ke);const wt=this.selected;wt&&Mi!==wt&&this._liveAnnouncer.announce(wt.viewValue,1e4)}}_handleOpenKeydown(Ke){const Lt=this._keyManager,Kt=Ke.keyCode,Ut=Kt===J.Oq||Kt===J.qI,ni=Lt.isTyping();if(Ut&&Ke.altKey)Ke.preventDefault(),this.close();else if(ni||Kt!==J.wJ&&Kt!==J.Gi||!Lt.activeItem||(0,J.Yp)(Ke))if(!ni&&this._multiple&&Kt===J.A&&Ke.ctrlKey){Ke.preventDefault();const Mi=this.options.some(wt=>!wt.disabled&&!wt.selected);this.options.forEach(wt=>{wt.disabled||(Mi?wt.select():wt.deselect())})}else{const Mi=Lt.activeItemIndex;Lt.onKeydown(Ke),this._multiple&&Ut&&Ke.shiftKey&&Lt.activeItem&&Lt.activeItemIndex!==Mi&&Lt.activeItem._selectViaInteraction()}else Ke.preventDefault(),Lt.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,gt.U)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(Ke){if(this.options.forEach(Lt=>Lt.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&Ke)Array.isArray(Ke),Ke.forEach(Lt=>this._selectOptionByValue(Lt)),this._sortValues();else{const Lt=this._selectOptionByValue(Ke);Lt?this._keyManager.updateActiveItem(Lt):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(Ke){const Lt=this.options.find(Kt=>{if(this._selectionModel.isSelected(Kt))return!1;try{return null!=Kt.value&&this._compareWith(Kt.value,Ke)}catch{return!1}});return Lt&&this._selectionModel.select(Lt),Lt}_assignValue(Ke){return!!(Ke!==this._value||this._multiple&&Array.isArray(Ke))&&(this.options&&this._setSelectionByValue(Ke),this._value=Ke,!0)}_skipPredicate(Ke){return Ke.disabled}_initKeyManager(){this._keyManager=new g.mJ(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const Ke=(0,Ee.U)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,et.a)(Ke)).subscribe(Lt=>{this._onSelect(Lt.source,Lt.isUserInput),Lt.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,Ee.U)(...this.options.map(Lt=>Lt._stateChanges)).pipe((0,et.a)(Ke)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(Ke,Lt){const Kt=this._selectionModel.isSelected(Ke);null!=Ke.value||this._multiple?(Kt!==Ke.selected&&(Ke.selected?this._selectionModel.select(Ke):this._selectionModel.deselect(Ke)),Lt&&this._keyManager.setActiveItem(Ke),this.multiple&&(this._sortValues(),Lt&&this.focus())):(Ke.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(Ke.value)),Kt!==this._selectionModel.isSelected(Ke)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const Ke=this.options.toArray();this._selectionModel.sort((Lt,Kt)=>this.sortComparator?this.sortComparator(Lt,Kt,Ke):Ke.indexOf(Lt)-Ke.indexOf(Kt)),this.stateChanges.next()}}_propagateChanges(Ke){let Lt=null;Lt=this.multiple?this.selected.map(Kt=>Kt.value):this.selected?this.selected.value:Ke,this._value=Lt,this.valueChange.emit(Lt),this._onChange(Lt),this.selectionChange.emit(this._getChangeEvent(Lt)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let Ke=-1;for(let Lt=0;Lt0}focus(Ke){this._elementRef.nativeElement.focus(Ke)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const Ke=this._parentFormField?.getLabelId();return this.ariaLabelledby?(Ke?Ke+" ":"")+this.ariaLabelledby:Ke}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const Ke=this._parentFormField?.getLabelId();let Lt=(Ke?Ke+" ":"")+this._valueId;return this.ariaLabelledby&&(Lt+=" "+this.ariaLabelledby),Lt}_panelDoneAnimating(Ke){this.openedChange.emit(Ke)}setDescribedByIds(Ke){Ke.length?this._elementRef.nativeElement.setAttribute("aria-describedby",Ke.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty||this._focused&&!!this._placeholder}static#e=this.\u0275fac=function(Lt){return new(Lt||Fe)(a.GI1(f.S8),a.GI1(a.kD9),a.GI1(a.WW2),a.GI1(h.u9),a.GI1(a.GMv),a.GI1(b.yG,8),a.GI1(ie.SC,8),a.GI1(ie.uW,8),a.GI1(l.Y$,8),a.GI1(ie.eq,10),a.gJ8("tabindex"),a.GI1(Le),a.GI1(g.mE),a.GI1(te,8))};static#t=this.\u0275dir=a.Sc5({type:Fe,viewQuery:function(Lt,Kt){if(1&Lt&&(a.CC$(_e,5),a.CC$(ye,5),a.CC$(i.eC,5)),2&Lt){let Ut;a.wto(Ut=a.Gqi())&&(Kt.trigger=Ut.first),a.wto(Ut=a.Gqi())&&(Kt.panel=Ut.first),a.wto(Ut=a.Gqi())&&(Kt._overlayDir=Ut.first)}},inputs:{userAriaDescribedBy:[a.Wk5.None,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",placeholder:"placeholder",required:"required",multiple:"multiple",disableOptionCentering:"disableOptionCentering",compareWith:"compareWith",value:"value",ariaLabel:[a.Wk5.None,"aria-label","ariaLabel"],ariaLabelledby:[a.Wk5.None,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:"typeaheadDebounceInterval",sortComparator:"sortComparator",id:"id"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},features:[a.eg9,a.SYr]})}return Fe})(),N=(()=>{class Fe extends j{constructor(){super(...arguments),this.panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto",this._positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}],this._hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1,this._skipPredicate=Ke=>!this.panelOpen&&Ke.disabled}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}ngOnInit(){super.ngOnInit(),this._viewportRuler.change().pipe((0,et.a)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}open(){this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),super.open(),this.stateChanges.next()}close(){super.close(),this.stateChanges.next()}_scrollOptionIntoView(Ke){const Lt=this.options.toArray()[Ke];if(Lt){const Kt=this.panel.nativeElement,Ut=(0,h.aq)(Ke,this.options,this.optionGroups),ni=Lt._getHostElement();Kt.scrollTop=0===Ke&&1===Ut?0:(0,h.ms)(ni.offsetTop,ni.offsetHeight,Kt.scrollTop,Kt.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(Ke){return new Ne(this,Ke)}_getOverlayWidth(Ke){return"auto"===this.panelWidth?(Ke instanceof i.wW?Ke.elementRef:Ke||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(Ke){this._hideSingleSelectionIndicator=(0,R.W6)(Ke),this._syncParentProperties()}_syncParentProperties(){if(this.options)for(const Ke of this.options)Ke._changeDetectorRef.markForCheck()}static#e=this.\u0275fac=(()=>{let Ke;return function(Kt){return(Ke||(Ke=a.otF(Fe)))(Kt||Fe)}})();static#t=this.\u0275cmp=a.In1({type:Fe,selectors:[["mat-select"]],contentQueries:function(Lt,Kt,Ut){if(1&Lt&&(a.szK(Ut,xt,5),a.szK(Ut,h.I5,5),a.szK(Ut,h.KG,5)),2&Lt){let ni;a.wto(ni=a.Gqi())&&(Kt.customTrigger=ni.first),a.wto(ni=a.Gqi())&&(Kt.options=ni),a.wto(ni=a.Gqi())&&(Kt.optionGroups=ni)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox","ngSkipHydration","",1,"mat-mdc-select"],hostVars:19,hostBindings:function(Lt,Kt){1&Lt&&a.qCj("keydown",function(ni){return Kt._handleKeydown(ni)})("focus",function(){return Kt._onFocus()})("blur",function(){return Kt._onBlur()}),2&Lt&&(a.e48("id",Kt.id)("tabindex",Kt.tabIndex)("aria-controls",Kt.panelOpen?Kt.id+"-panel":null)("aria-expanded",Kt.panelOpen)("aria-label",Kt.ariaLabel||null)("aria-required",Kt.required.toString())("aria-disabled",Kt.disabled.toString())("aria-invalid",Kt.errorState)("aria-activedescendant",Kt._getAriaActiveDescendant()),a.eAK("mat-mdc-select-disabled",Kt.disabled)("mat-mdc-select-invalid",Kt.errorState)("mat-mdc-select-required",Kt.required)("mat-mdc-select-empty",Kt.empty)("mat-mdc-select-multiple",Kt.multiple))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex",panelWidth:"panelWidth",hideSingleSelectionIndicator:"hideSingleSelectionIndicator"},exportAs:["matSelect"],features:[a.M5G([{provide:l.u0,useExisting:Fe},{provide:h.K6,useExisting:Fe}]),a.eg9],ngContentSelectors:$t,decls:11,vars:10,consts:[["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],[1,"mat-mdc-select-value",3,"ngSwitch"],["class","mat-mdc-select-placeholder mat-mdc-select-min-line",4,"ngSwitchCase"],["class","mat-mdc-select-value-text",3,"ngSwitch",4,"ngSwitchCase"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","backdropClick","attach","detach"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text",3,"ngSwitch"],["class","mat-mdc-select-min-line",4,"ngSwitchDefault"],[4,"ngSwitchCase"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"ngClass","keydown"],["panel",""]],template:function(Lt,Kt){if(1&Lt&&(a.kPM(st),a.I0R(0,"div",0,1),a.qCj("click",function(){return Kt.toggle()}),a.I0R(3,"div",2),a.yuY(4,Re,2,1,"span",3)(5,oe,3,2,"span",4),a.C$Y(),a.I0R(6,"div",5)(7,"div",6),a.S2Z(),a.I0R(8,"svg",7),a.wR5(9,"path",8),a.C$Y()()()(),a.yuY(10,ut,3,9,"ng-template",9),a.qCj("backdropClick",function(){return Kt.close()})("attach",function(){return Kt._onAttached()})("detach",function(){return Kt.close()})),2&Lt){const Ut=a.Gew(1);a.yG2(3),a.E7m("ngSwitch",Kt.empty),a.e48("id",Kt._valueId),a.yG2(),a.E7m("ngSwitchCase",!0),a.yG2(),a.E7m("ngSwitchCase",!1),a.yG2(5),a.E7m("cdkConnectedOverlayPanelClass",Kt._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",Kt._scrollStrategy)("cdkConnectedOverlayOrigin",Kt._preferredOverlayOrigin||Ut)("cdkConnectedOverlayOpen",Kt.panelOpen)("cdkConnectedOverlayPositions",Kt._positions)("cdkConnectedOverlayWidth",Kt._overlayWidth)}},dependencies:[s.QF,s.Ko,s.Wm,s.UZ,i.eC,i.wW],styles:['.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color);font-family:var(--mat-select-trigger-text-font);line-height:var(--mat-select-trigger-text-line-height);font-size:var(--mat-select-trigger-text-size);font-weight:var(--mat-select-trigger-text-weight);letter-spacing:var(--mat-select-trigger-text-tracking)}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color)}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:translateY(-8px)}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color)}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow{color:var(--mat-select-invalid-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color)}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:GrayText}div.mat-mdc-select-panel{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:static;background-color:var(--mat-select-panel-background-color)}.cdk-high-contrast-active div.mat-mdc-select-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color)}._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}'],encapsulation:2,data:{animation:[oi.transformPanel]},changeDetection:0})}return Fe})(),U=(()=>{class Fe{static#e=this.\u0275fac=function(Lt){return new(Lt||Fe)};static#t=this.\u0275mod=a.a4G({type:Fe});static#i=this.\u0275inj=a.s3X({providers:[ge],imports:[s.MD,i.Y1,h.Ax,h.AN,f.uU,l.wb,h.Ax,h.AN]})}return Fe})()},9964:(lt,me,d)=>{"use strict";d.d(me,{Ar:()=>xt,Uq:()=>ge,WS:()=>Ne,sb:()=>be});var i=d(8408),s=d(1368),a=d(2116),h=d(3576),l=d(4723),f=d(1900),g=d(7712),b=d(7800),R=d(5792),Y=d(5657),J=d(800),ie=d(3412),ae=d(6684),Ie=d(4704),Ee=d(320),Ge=d(3616),tt=d(4e3),gt=d(3992),Bt=d(5568),kt=d(4680),Ye=d(9684);const et=["*"],Q=["content"];function _e(j,we){if(1&j){const N=a.KQA();a.I0R(0,"div",2),a.qCj("click",function(){a.usT(N);const Fe=a.GaO();return a.CGJ(Fe._onBackdropClicked())}),a.C$Y()}if(2&j){const N=a.GaO();a.eAK("mat-drawer-shown",N._isShowingBackdrop())}}function ye(j,we){1&j&&(a.I0R(0,"mat-drawer-content"),a._Xx(1,2),a.C$Y())}const Re=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],Xe=["mat-drawer","mat-drawer-content","*"];function $e(j,we){if(1&j){const N=a.KQA();a.I0R(0,"div",2),a.qCj("click",function(){a.usT(N);const Fe=a.GaO();return a.CGJ(Fe._onBackdropClicked())}),a.C$Y()}if(2&j){const N=a.GaO();a.eAK("mat-drawer-shown",N._isShowingBackdrop())}}function oe(j,we){1&j&&(a.I0R(0,"mat-sidenav-content"),a._Xx(1,2),a.C$Y())}const ut=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],st=["mat-sidenav","mat-sidenav-content","*"],oi={transformDrawer:(0,Ye.gV)("transform",[(0,Ye.K2)("open, open-instant",(0,Ye.wb)({transform:"none",visibility:"visible"})),(0,Ye.K2)("void",(0,Ye.wb)({"box-shadow":"none",visibility:"hidden"})),(0,Ye.aK)("void => open-instant",(0,Ye.Cs)("0ms")),(0,Ye.aK)("void <=> open, open-instant => void",(0,Ye.Cs)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},vi=new a.UbH("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function De(){return!1}}),je=new a.UbH("MAT_DRAWER_CONTAINER");let Le=(()=>{class j extends i.Ci{constructor(N,U,Fe,Tt,Ke){super(Fe,Tt,Ke),this._changeDetectorRef=N,this._container=U}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(U){return new(U||j)(a.GI1(a.kD9),a.GI1((0,a.wd)(()=>te)),a.GI1(a.GMv),a.GI1(i.Yn),a.GI1(a.WW2))};static#t=this.\u0275cmp=a.In1({type:j,selectors:[["mat-drawer-content"]],hostAttrs:["ngSkipHydration","",1,"mat-drawer-content"],hostVars:4,hostBindings:function(U,Fe){2&U&&a.m4B("margin-left",Fe._container._contentMargins.left,"px")("margin-right",Fe._container._contentMargins.right,"px")},features:[a.M5G([{provide:i.Ci,useExisting:j}]),a.eg9],ngContentSelectors:et,decls:1,vars:0,template:function(U,Fe){1&U&&(a.kPM(),a._Xx(0))},encapsulation:2,changeDetection:0})}return j})(),Ve=(()=>{class j{get position(){return this._position}set position(N){(N="end"===N?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(N),this._position=N,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(N){this._mode=N,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(N){this._disableClose=(0,g.W6)(N)}get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(N){("true"===N||"false"===N||null==N)&&(N=(0,g.W6)(N)),this._autoFocus=N}get opened(){return this._opened}set opened(N){this.toggle((0,g.W6)(N))}constructor(N,U,Fe,Tt,Ke,Lt,Kt,Ut){this._elementRef=N,this._focusTrapFactory=U,this._focusMonitor=Fe,this._platform=Tt,this._ngZone=Ke,this._interactivityChecker=Lt,this._doc=Kt,this._container=Ut,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new Y.E,this._animationEnd=new Y.E,this._animationState="void",this.openedChange=new a._w7(!0),this._openedStream=this.openedChange.pipe((0,ae.I)(ni=>ni),(0,Ie.k)(()=>{})),this.openedStart=this._animationStarted.pipe((0,ae.I)(ni=>ni.fromState!==ni.toState&&0===ni.toState.indexOf("open")),(0,Ee.e)(void 0)),this._closedStream=this.openedChange.pipe((0,ae.I)(ni=>!ni),(0,Ie.k)(()=>{})),this.closedStart=this._animationStarted.pipe((0,ae.I)(ni=>ni.fromState!==ni.toState&&"void"===ni.toState),(0,Ee.e)(void 0)),this._destroyed=new Y.E,this.onPositionChanged=new a._w7,this._modeChanged=new Y.E,this.openedChange.subscribe(ni=>{ni?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,J.w)(this._elementRef.nativeElement,"keydown").pipe((0,ae.I)(ni=>ni.keyCode===b.UX&&!this.disableClose&&!(0,b.Yp)(ni)),(0,Ge.a)(this._destroyed)).subscribe(ni=>this._ngZone.run(()=>{this.close(),ni.stopPropagation(),ni.preventDefault()}))}),this._animationEnd.pipe((0,tt.a)((ni,Mi)=>ni.fromState===Mi.fromState&&ni.toState===Mi.toState)).subscribe(ni=>{const{fromState:Mi,toState:wt}=ni;(0===wt.indexOf("open")&&"void"===Mi||"void"===wt&&0===Mi.indexOf("open"))&&this.openedChange.emit(this._opened)})}_forceFocus(N,U){this._interactivityChecker.isFocusable(N)||(N.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Fe=()=>{N.removeEventListener("blur",Fe),N.removeEventListener("mousedown",Fe),N.removeAttribute("tabindex")};N.addEventListener("blur",Fe),N.addEventListener("mousedown",Fe)})),N.focus(U)}_focusByCssSelector(N,U){let Fe=this._elementRef.nativeElement.querySelector(N);Fe&&this._forceFocus(Fe,U)}_takeFocus(){if(!this._focusTrap)return;const N=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(U=>{!U&&"function"==typeof this._elementRef.nativeElement.focus&&N.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(N){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,N):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const N=this._doc.activeElement;return!!N&&this._elementRef.nativeElement.contains(N)}ngAfterViewInit(){this._isAttached=!0,this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState(),"end"===this._position&&this._updatePositionInParent("end")}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap&&this._focusTrap.destroy(),this._anchor?.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(N){return this.toggle(!0,N)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(N=!this.opened,U){N&&U&&(this._openedVia=U);const Fe=this._setOpen(N,!N&&this._isFocusWithinDrawer(),this._openedVia||"program");return N||(this._openedVia=null),Fe}_setOpen(N,U,Fe){return this._opened=N,N?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",U&&this._restoreFocus(Fe)),this._updateFocusTrapState(),new Promise(Tt=>{this.openedChange.pipe((0,gt.U)(1)).subscribe(Ke=>Tt(Ke?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop)}_updatePositionInParent(N){const U=this._elementRef.nativeElement,Fe=U.parentNode;"end"===N?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),Fe.insertBefore(this._anchor,U)),Fe.appendChild(U)):this._anchor&&this._anchor.parentNode.insertBefore(U,this._anchor)}static#e=this.\u0275fac=function(U){return new(U||j)(a.GI1(a.GMv),a.GI1(l.G),a.GI1(l.Kk),a.GI1(R.WU),a.GI1(a.WW2),a.GI1(l.OE),a.GI1(s.Ud,8),a.GI1(je,8))};static#t=this.\u0275cmp=a.In1({type:j,selectors:[["mat-drawer"]],viewQuery:function(U,Fe){if(1&U&&a.CC$(Q,5),2&U){let Tt;a.wto(Tt=a.Gqi())&&(Fe._content=Tt.first)}},hostAttrs:["tabIndex","-1","ngSkipHydration","",1,"mat-drawer"],hostVars:12,hostBindings:function(U,Fe){1&U&&a.wcw("@transform.start",function(Ke){return Fe._animationStarted.next(Ke)})("@transform.done",function(Ke){return Fe._animationEnd.next(Ke)}),2&U&&(a.e48("align",null),a.Swe("@transform",Fe._animationState),a.eAK("mat-drawer-end","end"===Fe.position)("mat-drawer-over","over"===Fe.mode)("mat-drawer-push","push"===Fe.mode)("mat-drawer-side","side"===Fe.mode)("mat-drawer-opened",Fe.opened))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],ngContentSelectors:et,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(U,Fe){1&U&&(a.kPM(),a.I0R(0,"div",0,1),a._Xx(2),a.C$Y())},dependencies:[i.Ci],encapsulation:2,data:{animation:[oi.transformDrawer]},changeDetection:0})}return j})(),te=(()=>{class j{get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(N){this._autosize=(0,g.W6)(N)}get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(N){this._backdropOverride=null==N?null:(0,g.W6)(N)}get scrollable(){return this._userContent||this._content}constructor(N,U,Fe,Tt,Ke,Lt=!1,Kt){this._dir=N,this._element=U,this._ngZone=Fe,this._changeDetectorRef=Tt,this._animationMode=Kt,this._drawers=new a.VhX,this.backdropClick=new a._w7,this._destroyed=new Y.E,this._doCheckSubject=new Y.E,this._contentMargins={left:null,right:null},this._contentMarginChanges=new Y.E,N&&N.change.pipe((0,Ge.a)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),Ke.change().pipe((0,Ge.a)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=Lt}ngAfterContentInit(){this._allDrawers.changes.pipe((0,Bt.W)(this._allDrawers),(0,Ge.a)(this._destroyed)).subscribe(N=>{this._drawers.reset(N.filter(U=>!U._container||U._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,Bt.W)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(N=>{this._watchDrawerToggle(N),this._watchDrawerPosition(N),this._watchDrawerMode(N)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,kt.o)(10),(0,Ge.a)(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(N=>N.open())}close(){this._drawers.forEach(N=>N.close())}updateContentMargins(){let N=0,U=0;if(this._left&&this._left.opened)if("side"==this._left.mode)N+=this._left._getWidth();else if("push"==this._left.mode){const Fe=this._left._getWidth();N+=Fe,U-=Fe}if(this._right&&this._right.opened)if("side"==this._right.mode)U+=this._right._getWidth();else if("push"==this._right.mode){const Fe=this._right._getWidth();U+=Fe,N-=Fe}N=N||null,U=U||null,(N!==this._contentMargins.left||U!==this._contentMargins.right)&&(this._contentMargins={left:N,right:U},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(N){N._animationStarted.pipe((0,ae.I)(U=>U.fromState!==U.toState),(0,Ge.a)(this._drawers.changes)).subscribe(U=>{"open-instant"!==U.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==N.mode&&N.openedChange.pipe((0,Ge.a)(this._drawers.changes)).subscribe(()=>this._setContainerClass(N.opened))}_watchDrawerPosition(N){N&&N.onPositionChanged.pipe((0,Ge.a)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,gt.U)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(N){N&&N._modeChanged.pipe((0,Ge.a)((0,ie.U)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(N){const U=this._element.nativeElement.classList,Fe="mat-drawer-container-has-open";N?U.add(Fe):U.remove(Fe)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(N=>{"end"==N.position?this._end=N:this._start=N}),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._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(N=>N&&!N.disableClose&&this._drawerHasBackdrop(N)).forEach(N=>N._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(N){return null!=N&&N.opened}_drawerHasBackdrop(N){return null==this._backdropOverride?!!N&&"side"!==N.mode:this._backdropOverride}static#e=this.\u0275fac=function(U){return new(U||j)(a.GI1(f.yG,8),a.GI1(a.GMv),a.GI1(a.WW2),a.GI1(a.kD9),a.GI1(i.S8),a.GI1(vi),a.GI1(a.qwP,8))};static#t=this.\u0275cmp=a.In1({type:j,selectors:[["mat-drawer-container"]],contentQueries:function(U,Fe,Tt){if(1&U&&(a.szK(Tt,Le,5),a.szK(Tt,Ve,5)),2&U){let Ke;a.wto(Ke=a.Gqi())&&(Fe._content=Ke.first),a.wto(Ke=a.Gqi())&&(Fe._allDrawers=Ke)}},viewQuery:function(U,Fe){if(1&U&&a.CC$(Le,5),2&U){let Tt;a.wto(Tt=a.Gqi())&&(Fe._userContent=Tt.first)}},hostAttrs:["ngSkipHydration","",1,"mat-drawer-container"],hostVars:2,hostBindings:function(U,Fe){2&U&&a.eAK("mat-drawer-container-explicit-backdrop",Fe._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[a.M5G([{provide:je,useExisting:j}])],ngContentSelectors:Xe,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(U,Fe){1&U&&(a.kPM(Re),a.yuY(0,_e,1,2,"div",0),a._Xx(1),a._Xx(2,1),a.yuY(3,ye,2,0,"mat-drawer-content",1)),2&U&&(a.E7m("ngIf",Fe.hasBackdrop),a.yG2(3),a.E7m("ngIf",!Fe._content))},dependencies:[s.u_,Le],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);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;background-color:var(--mat-sidenav-scrim-color)}.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{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);position:relative;z-index:4;--mat-sidenav-container-shape:0;color:var(--mat-sidenav-container-text-color);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);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);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return j})(),ge=(()=>{class j extends Le{constructor(N,U,Fe,Tt,Ke){super(N,U,Fe,Tt,Ke)}static#e=this.\u0275fac=function(U){return new(U||j)(a.GI1(a.kD9),a.GI1((0,a.wd)(()=>Ne)),a.GI1(a.GMv),a.GI1(i.Yn),a.GI1(a.WW2))};static#t=this.\u0275cmp=a.In1({type:j,selectors:[["mat-sidenav-content"]],hostAttrs:["ngSkipHydration","",1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(U,Fe){2&U&&a.m4B("margin-left",Fe._container._contentMargins.left,"px")("margin-right",Fe._container._contentMargins.right,"px")},features:[a.M5G([{provide:i.Ci,useExisting:j}]),a.eg9],ngContentSelectors:et,decls:1,vars:0,template:function(U,Fe){1&U&&(a.kPM(),a._Xx(0))},encapsulation:2,changeDetection:0})}return j})(),xt=(()=>{class j extends Ve{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(N){this._fixedInViewport=(0,g.W6)(N)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(N){this._fixedTopGap=(0,g.wZ)(N)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(N){this._fixedBottomGap=(0,g.wZ)(N)}static#e=this.\u0275fac=(()=>{let N;return function(Fe){return(N||(N=a.otF(j)))(Fe||j)}})();static#t=this.\u0275cmp=a.In1({type:j,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1","ngSkipHydration","",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(U,Fe){2&U&&(a.e48("align",null),a.m4B("top",Fe.fixedInViewport?Fe.fixedTopGap:null,"px")("bottom",Fe.fixedInViewport?Fe.fixedBottomGap:null,"px"),a.eAK("mat-drawer-end","end"===Fe.position)("mat-drawer-over","over"===Fe.mode)("mat-drawer-push","push"===Fe.mode)("mat-drawer-side","side"===Fe.mode)("mat-drawer-opened",Fe.opened)("mat-sidenav-fixed",Fe.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[a.eg9],ngContentSelectors:et,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(U,Fe){1&U&&(a.kPM(),a.I0R(0,"div",0,1),a._Xx(2),a.C$Y())},dependencies:[i.Ci],encapsulation:2,data:{animation:[oi.transformDrawer]},changeDetection:0})}return j})(),Ne=(()=>{class j extends te{constructor(){super(...arguments),this._allDrawers=void 0,this._content=void 0}static#e=this.\u0275fac=(()=>{let N;return function(Fe){return(N||(N=a.otF(j)))(Fe||j)}})();static#t=this.\u0275cmp=a.In1({type:j,selectors:[["mat-sidenav-container"]],contentQueries:function(U,Fe,Tt){if(1&U&&(a.szK(Tt,ge,5),a.szK(Tt,xt,5)),2&U){let Ke;a.wto(Ke=a.Gqi())&&(Fe._content=Ke.first),a.wto(Ke=a.Gqi())&&(Fe._allDrawers=Ke)}},hostAttrs:["ngSkipHydration","",1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(U,Fe){2&U&&a.eAK("mat-drawer-container-explicit-backdrop",Fe._backdropOverride)},exportAs:["matSidenavContainer"],features:[a.M5G([{provide:je,useExisting:j}]),a.eg9],ngContentSelectors:st,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(U,Fe){1&U&&(a.kPM(ut),a.yuY(0,$e,1,2,"div",0),a._Xx(1),a._Xx(2,1),a.yuY(3,oe,2,0,"mat-sidenav-content",1)),2&U&&(a.E7m("ngIf",Fe.hasBackdrop),a.yG2(3),a.E7m("ngIf",!Fe._content))},dependencies:[s.u_,ge],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);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;background-color:var(--mat-sidenav-scrim-color)}.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{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);position:relative;z-index:4;--mat-sidenav-container-shape:0;color:var(--mat-sidenav-container-text-color);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);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);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return j})(),be=(()=>{class j{static#e=this.\u0275fac=function(U){return new(U||j)};static#t=this.\u0275mod=a.a4G({type:j});static#i=this.\u0275inj=a.s3X({imports:[s.MD,h.AN,i.uU,i.uU,h.AN]})}return j})()},7760:(lt,me,d)=>{"use strict";d.d(me,{GE:()=>kt,cP:()=>Ge});var i=d(2116),s=d(6504),a=d(4723),h=d(3576),l=d(7712),f=d(1368);const g=["switch"];function b(Ye,et){1&Ye&&(i.I0R(0,"div",12),i.S2Z(),i.I0R(1,"svg",13),i.wR5(2,"path",14),i.C$Y(),i.I0R(3,"svg",15),i.wR5(4,"path",16),i.C$Y()())}const R=["*"],Y=new i.UbH("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1})}),J={provide:s.Y6,useExisting:(0,i.wd)(()=>Ge),multi:!0};class ie{constructor(et,Q){this.source=et,this.checked=Q}}let ae=0;const Ie=(0,h.S)((0,h.i)((0,h.bc)((0,h.YB)(class{constructor(Ye){this._elementRef=Ye}}))));let Ee=(()=>{class Ye extends Ie{get required(){return this._required}set required(Q){this._required=(0,l.W6)(Q)}get checked(){return this._checked}set checked(Q){this._checked=(0,l.W6)(Q),this._changeDetectorRef.markForCheck()}get hideIcon(){return this._hideIcon}set hideIcon(Q){this._hideIcon=(0,l.W6)(Q)}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(Q,_e,ye,Re,Xe,$e,oe){super(Q),this._focusMonitor=_e,this._changeDetectorRef=ye,this.defaults=Xe,this._onChange=ut=>{},this._onTouched=()=>{},this._required=!1,this._checked=!1,this.name=null,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this._hideIcon=!1,this.change=new i._w7,this.toggleChange=new i._w7,this.tabIndex=parseInt(Re)||0,this.color=this.defaultColor=Xe.color||"accent",this._noopAnimations="NoopAnimations"===$e,this.id=this._uniqueId=`${oe}${++ae}`,this._hideIcon=Xe.hideIcon??!1}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(Q=>{"keyboard"===Q||"program"===Q?(this._focused=!0,this._changeDetectorRef.markForCheck()):Q||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(Q){this.checked=!!Q}registerOnChange(Q){this._onChange=Q}registerOnTouched(Q){this._onTouched=Q}setDisabledState(Q){this.disabled=Q,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}static#e=this.\u0275fac=function(_e){i.KEo()};static#t=this.\u0275dir=i.Sc5({type:Ye,inputs:{name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:[i.Wk5.None,"aria-label","ariaLabel"],ariaLabelledby:[i.Wk5.None,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[i.Wk5.None,"aria-describedby","ariaDescribedby"],required:"required",checked:"checked",hideIcon:"hideIcon"},outputs:{change:"change",toggleChange:"toggleChange"},features:[i.eg9]})}return Ye})(),Ge=(()=>{class Ye extends Ee{get buttonId(){return`${this.id||this._uniqueId}-button`}constructor(Q,_e,ye,Re,Xe,$e){super(Q,_e,ye,Re,Xe,$e,"mat-mdc-slide-toggle-"),this._labelId=this._uniqueId+"-label"}_handleClick(){this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new ie(this,this.checked)))}focus(){this._switchElement.nativeElement.focus()}_createChangeEvent(Q){return new ie(this,Q)}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static#e=this.\u0275fac=function(_e){return new(_e||Ye)(i.GI1(i.GMv),i.GI1(a.Kk),i.GI1(i.kD9),i.gJ8("tabindex"),i.GI1(Y),i.GI1(i.qwP,8))};static#t=this.\u0275cmp=i.In1({type:Ye,selectors:[["mat-slide-toggle"]],viewQuery:function(_e,ye){if(1&_e&&i.CC$(g,5),2&_e){let Re;i.wto(Re=i.Gqi())&&(ye._switchElement=Re.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:11,hostBindings:function(_e,ye){2&_e&&(i.SoX("id",ye.id),i.e48("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),i.eAK("mat-mdc-slide-toggle-focused",ye._focused)("mat-mdc-slide-toggle-checked",ye.checked)("_mat-animation-noopable",ye._noopAnimations))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex"},exportAs:["matSlideToggle"],features:[i.M5G([J]),i.eg9],ngContentSelectors:R,decls:13,vars:25,consts:[[1,"mdc-form-field"],["role","switch","type","button",1,"mdc-switch",3,"tabIndex","disabled","click"],["switch",""],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],["class","mdc-switch__icons",4,"ngIf"],[1,"mdc-label",3,"for","click"],[1,"mdc-switch__icons"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(_e,ye){if(1&_e&&(i.kPM(),i.I0R(0,"div",0)(1,"button",1,2),i.qCj("click",function(){return ye._handleClick()}),i.wR5(3,"div",3),i.I0R(4,"div",4)(5,"div",5)(6,"div",6),i.wR5(7,"div",7),i.C$Y(),i.I0R(8,"div",8),i.wR5(9,"div",9),i.C$Y(),i.yuY(10,b,5,0,"div",10),i.C$Y()()(),i.I0R(11,"label",11),i.qCj("click",function(Xe){return Xe.stopPropagation()}),i._Xx(12),i.C$Y()()),2&_e){const Re=i.Gew(2);i.eAK("mdc-form-field--align-end","before"==ye.labelPosition),i.yG2(),i.eAK("mdc-switch--selected",ye.checked)("mdc-switch--unselected",!ye.checked)("mdc-switch--checked",ye.checked)("mdc-switch--disabled",ye.disabled),i.E7m("tabIndex",ye.tabIndex)("disabled",ye.disabled),i.e48("id",ye.buttonId)("name",ye.name)("aria-label",ye.ariaLabel)("aria-labelledby",ye._getAriaLabelledBy())("aria-describedby",ye.ariaDescribedby)("aria-required",ye.required||null)("aria-checked",ye.checked),i.yG2(8),i.E7m("matRippleTrigger",Re)("matRippleDisabled",ye.disableRipple||ye.disabled)("matRippleCentered",!0),i.yG2(),i.E7m("ngIf",!ye.hideIcon),i.yG2(),i.E7m("for",ye.buttonId),i.e48("id",ye._labelId)}},dependencies:[h.UZ,f.u_],styles:['.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative}.mdc-switch[hidden]{display:none}.mdc-switch:disabled{cursor:default;pointer-events:none}.mdc-switch__track{overflow:hidden;position:relative;width:100%}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%}@media screen and (forced-colors: active){.mdc-switch__track::before,.mdc-switch__track::after{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(-100%)}[dir=rtl] .mdc-switch__track::after,.mdc-switch__track[dir=rtl]::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track[dir=rtl]::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0)}[dir=rtl] .mdc-switch__handle-track,.mdc-switch__handle-track[dir=rtl]{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track,.mdc-switch--selected .mdc-switch__handle-track[dir=rtl]{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto}[dir=rtl] .mdc-switch__handle,.mdc-switch__handle[dir=rtl]{left:auto;right:0}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media screen and (forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-elevation-overlay{bottom:0;left:0;right:0;top:0}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1}.mdc-switch:disabled .mdc-switch__ripple{display:none}.mdc-switch__icons{height:100%;position:relative;width:100%;z-index:1}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mdc-switch{width:var(--mdc-switch-track-width);--mdc-switch-disabled-handle-opacity:0.38;--mdc-switch-disabled-selected-icon-opacity:0.38;--mdc-switch-disabled-track-opacity:0.12;--mdc-switch-disabled-unselected-icon-opacity:0.38;--mdc-switch-handle-height:20px;--mdc-switch-handle-shape:10px;--mdc-switch-handle-width:20px;--mdc-switch-selected-icon-size:18px;--mdc-switch-track-height:14px;--mdc-switch-track-shape:7px;--mdc-switch-track-width:36px;--mdc-switch-unselected-icon-size:18px;--mdc-switch-state-layer-size:40px;--mdc-switch-selected-focus-state-layer-opacity:0.12;--mdc-switch-selected-hover-state-layer-opacity:0.04;--mdc-switch-selected-pressed-state-layer-opacity:0.1;--mdc-switch-unselected-focus-state-layer-opacity:0.12;--mdc-switch-unselected-hover-state-layer-opacity:0.04;--mdc-switch-unselected-pressed-state-layer-opacity:0.1}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-selected-handle-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-hover-handle-color)}.mdc-switch.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-focus-handle-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-selected-pressed-handle-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-selected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-unselected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-hover-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-focus-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-unselected-pressed-handle-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-unselected-handle-color)}.mdc-switch .mdc-switch__handle::before{background:var(--mdc-switch-handle-surface-color)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation)}.mdc-switch .mdc-switch__focus-ring-wrapper,.mdc-switch .mdc-switch__handle{height:var(--mdc-switch-handle-height)}.mdc-switch:disabled .mdc-switch__handle::after{opacity:var(--mdc-switch-disabled-handle-opacity)}.mdc-switch .mdc-switch__handle{border-radius:var(--mdc-switch-handle-shape)}.mdc-switch .mdc-switch__handle{width:var(--mdc-switch-handle-width)}.mdc-switch .mdc-switch__handle-track{width:calc(100% - var(--mdc-switch-handle-width))}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__icon{fill:var(--mdc-switch-selected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-selected-icon-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__icon{fill:var(--mdc-switch-unselected-icon-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-unselected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-selected-icon-opacity)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-unselected-icon-opacity)}.mdc-switch.mdc-switch--selected .mdc-switch__icon{width:var(--mdc-switch-selected-icon-size);height:var(--mdc-switch-selected-icon-size)}.mdc-switch.mdc-switch--unselected .mdc-switch__icon{width:var(--mdc-switch-unselected-icon-size);height:var(--mdc-switch-unselected-icon-size)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-hover-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-focus-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-pressed-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-hover-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-focus-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-pressed-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-selected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-selected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-unselected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-unselected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch .mdc-switch__ripple{height:var(--mdc-switch-state-layer-size);width:var(--mdc-switch-state-layer-size)}.mdc-switch .mdc-switch__track{height:var(--mdc-switch-track-height)}.mdc-switch:disabled .mdc-switch__track{opacity:var(--mdc-switch-disabled-track-opacity)}.mdc-switch:enabled .mdc-switch__track::after{background:var(--mdc-switch-selected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mdc-switch-selected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::after{background:var(--mdc-switch-disabled-selected-track-color)}.mdc-switch:enabled .mdc-switch__track::before{background:var(--mdc-switch-unselected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mdc-switch-unselected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::before{background:var(--mdc-switch-disabled-unselected-track-color)}.mdc-switch .mdc-switch__track{border-radius:var(--mdc-switch-track-shape)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation-shadow)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation-shadow)}.mat-mdc-slide-toggle .mdc-label{font-family:var(--mat-slide-toggle-label-text-font);font-size:var(--mat-slide-toggle-label-text-size);letter-spacing:var(--mat-slide-toggle-label-text-tracking);line-height:var(--mat-slide-toggle-label-text-line-height);font-weight:var(--mat-slide-toggle-label-text-weight)}.mat-mdc-slide-toggle{display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle .mdc-switch__ripple::after{content:"";opacity:0}.mat-mdc-slide-toggle .mdc-switch:hover .mdc-switch__ripple::after{opacity:.04;transition:opacity 75ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after{opacity:.12}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-mdc-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-elevation-overlay,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}'],encapsulation:2,changeDetection:0})}return Ye})(),Bt=(()=>{class Ye{static#e=this.\u0275fac=function(_e){return new(_e||Ye)};static#t=this.\u0275mod=i.a4G({type:Ye});static#i=this.\u0275inj=i.s3X({})}return Ye})(),kt=(()=>{class Ye{static#e=this.\u0275fac=function(_e){return new(_e||Ye)};static#t=this.\u0275mod=i.a4G({type:Ye});static#i=this.\u0275inj=i.s3X({imports:[Bt,h.AN,h.KE,f.MD,Bt,h.AN]})}return Ye})()},1624:(lt,me,d)=>{"use strict";d.d(me,{uE:()=>oe,yS:()=>oi});var i=d(2116),s=d(5657),a=d(1368),h=d(7816),l=d(9684),f=d(2488),g=d(5792),b=d(3992),R=d(3616),Y=d(4723),J=d(1216),ie=d(68),ae=d(3576);function Ie(Jt,vi){if(1&Jt){const je=i.KQA();i.I0R(0,"div",2)(1,"button",3),i.qCj("click",function(){i.usT(je);const Le=i.GaO();return i.CGJ(Le.action())}),i.OEk(2),i.C$Y()()}if(2&Jt){const je=i.GaO();i.yG2(2),i.oRS(" ",je.data.action," ")}}const Ee=["label"];function Ge(Jt,vi){}const tt=Math.pow(2,31)-1;class gt{constructor(vi,je){this._overlayRef=je,this._afterDismissed=new s.E,this._afterOpened=new s.E,this._onAction=new s.E,this._dismissedByAction=!1,this.containerInstance=vi,vi._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(vi){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(vi,tt))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}const Bt=new i.UbH("MatSnackBarData");class kt{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}let Ye=(()=>{class Jt{static#e=this.\u0275fac=function(De){return new(De||Jt)};static#t=this.\u0275dir=i.Sc5({type:Jt,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"]})}return Jt})(),et=(()=>{class Jt{static#e=this.\u0275fac=function(De){return new(De||Jt)};static#t=this.\u0275dir=i.Sc5({type:Jt,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"]})}return Jt})(),Q=(()=>{class Jt{static#e=this.\u0275fac=function(De){return new(De||Jt)};static#t=this.\u0275dir=i.Sc5({type:Jt,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"]})}return Jt})(),_e=(()=>{class Jt{constructor(je,De){this.snackBarRef=je,this.data=De}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static#e=this.\u0275fac=function(De){return new(De||Jt)(i.GI1(gt),i.GI1(Bt))};static#t=this.\u0275cmp=i.In1({type:Jt,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions","",4,"ngIf"],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(De,Le){1&De&&(i.I0R(0,"div",0),i.OEk(1),i.C$Y(),i.yuY(2,Ie,3,1,"div",1)),2&De&&(i.yG2(),i.oRS(" ",Le.data.message,"\n"),i.yG2(),i.E7m("ngIf",Le.hasAction))},dependencies:[a.u_,h.Gw,Ye,et,Q],styles:[".mat-mdc-simple-snack-bar{display:flex}"],encapsulation:2,changeDetection:0})}return Jt})();const ye={snackBarState:(0,l.gV)("state",[(0,l.K2)("void, hidden",(0,l.wb)({transform:"scale(0.8)",opacity:0})),(0,l.K2)("visible",(0,l.wb)({transform:"scale(1)",opacity:1})),(0,l.aK)("* => visible",(0,l.Cs)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,l.aK)("* => void, * => hidden",(0,l.Cs)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,l.wb)({opacity:0})))])};let Re=0,Xe=(()=>{class Jt extends f.Ef{constructor(je,De,Le,Ve,te){super(),this._ngZone=je,this._elementRef=De,this._changeDetectorRef=Le,this._platform=Ve,this.snackBarConfig=te,this._document=(0,i.uUt)(a.Ud),this._trackedModals=new Set,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new s.E,this._onExit=new s.E,this._onEnter=new s.E,this._animationState="void",this._liveElementId="mat-snack-bar-container-live-"+Re++,this.attachDomPortal=ge=>{this._assertNotAttached();const xt=this._portalOutlet.attachDomPortal(ge);return this._afterPortalAttached(),xt},this._live="assertive"!==te.politeness||te.announcementMessage?"off"===te.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(je){this._assertNotAttached();const De=this._portalOutlet.attachComponentPortal(je);return this._afterPortalAttached(),De}attachTemplatePortal(je){this._assertNotAttached();const De=this._portalOutlet.attachTemplatePortal(je);return this._afterPortalAttached(),De}onAnimationEnd(je){const{fromState:De,toState:Le}=je;if(("void"===Le&&"void"!==De||"hidden"===Le)&&this._completeExit(),"visible"===Le){const Ve=this._onEnter;this._ngZone.run(()=>{Ve.next(),Ve.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){this._ngZone.onMicrotaskEmpty.pipe((0,b.U)(1)).subscribe(()=>{this._ngZone.run(()=>{this._onExit.next(),this._onExit.complete()})})}_afterPortalAttached(){const je=this._elementRef.nativeElement,De=this.snackBarConfig.panelClass;De&&(Array.isArray(De)?De.forEach(Le=>je.classList.add(Le)):je.classList.add(De)),this._exposeToModals()}_exposeToModals(){const je=this._liveElementId,De=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let Le=0;Le{const De=je.getAttribute("aria-owns");if(De){const Le=De.replace(this._liveElementId,"").trim();Le.length>0?je.setAttribute("aria-owns",Le):je.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const je=this._elementRef.nativeElement.querySelector("[aria-hidden]"),De=this._elementRef.nativeElement.querySelector("[aria-live]");if(je&&De){let Le=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&je.contains(document.activeElement)&&(Le=document.activeElement),je.removeAttribute("aria-hidden"),De.appendChild(je),Le?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static#e=this.\u0275fac=function(De){return new(De||Jt)(i.GI1(i.WW2),i.GI1(i.GMv),i.GI1(i.kD9),i.GI1(g.WU),i.GI1(kt))};static#t=this.\u0275dir=i.Sc5({type:Jt,viewQuery:function(De,Le){if(1&De&&i.CC$(f.IP,7),2&De){let Ve;i.wto(Ve=i.Gqi())&&(Le._portalOutlet=Ve.first)}},features:[i.eg9]})}return Jt})(),$e=(()=>{class Jt extends Xe{_afterPortalAttached(){super._afterPortalAttached();const je=this._label.nativeElement,De="mdc-snackbar__label";je.classList.toggle(De,!je.querySelector(`.${De}`))}static#e=this.\u0275fac=(()=>{let je;return function(Le){return(je||(je=i.otF(Jt)))(Le||Jt)}})();static#t=this.\u0275cmp=i.In1({type:Jt,selectors:[["mat-snack-bar-container"]],viewQuery:function(De,Le){if(1&De&&i.CC$(Ee,7),2&De){let Ve;i.wto(Ve=i.Gqi())&&(Le._label=Ve.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container","mdc-snackbar--open"],hostVars:1,hostBindings:function(De,Le){1&De&&i.wcw("@state.done",function(te){return Le.onAnimationEnd(te)}),2&De&&i.Swe("@state",Le._animationState)},features:[i.eg9],decls:6,vars:3,consts:[[1,"mdc-snackbar__surface"],[1,"mat-mdc-snack-bar-label"],["label",""],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(De,Le){1&De&&(i.I0R(0,"div",0)(1,"div",1,2)(3,"div",3),i.yuY(4,Ge,0,0,"ng-template",4),i.C$Y(),i.wR5(5,"div"),i.C$Y()()),2&De&&(i.yG2(5),i.e48("aria-live",Le._live)("role",Le._role)("id",Le._liveElementId))},dependencies:[f.IP],styles:['.mdc-snackbar{display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-snackbar__surface::before{border-color:CanvasText}}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1)}.mdc-snackbar__label{padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-snack-bar-container{margin:8px;--mdc-snackbar-container-shape:4px;position:static}.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:100%}}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container{width:100vw}}.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:672px}.mat-mdc-snack-bar-container .mdc-snackbar__surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{background-color:var(--mdc-snackbar-container-color)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{border-radius:var(--mdc-snackbar-container-shape)}.mat-mdc-snack-bar-container .mdc-snackbar__label{color:var(--mdc-snackbar-supporting-text-color)}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-size:var(--mdc-snackbar-supporting-text-size);font-family:var(--mdc-snackbar-supporting-text-font);font-weight:var(--mdc-snackbar-supporting-text-weight);line-height:var(--mdc-snackbar-supporting-text-line-height)}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){color:var(--mat-snack-bar-button-color);--mat-mdc-button-persistent-ripple-color: currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{background-color:currentColor;opacity:.1}.mat-mdc-snack-bar-container .mdc-snackbar__label::before{display:none}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-handset .mdc-snackbar__surface{width:100%}'],encapsulation:2,data:{animation:[ye.snackBarState]}})}return Jt})(),oe=(()=>{class Jt{static#e=this.\u0275fac=function(De){return new(De||Jt)};static#t=this.\u0275mod=i.a4G({type:Jt});static#i=this.\u0275inj=i.s3X({imports:[ie.Y1,f.g$,a.MD,h.oJ,ae.AN,ae.AN]})}return Jt})();const st=new i.UbH("mat-snack-bar-default-options",{providedIn:"root",factory:function ut(){return new kt}});let $t=(()=>{class Jt{get _openedSnackBarRef(){const je=this._parentSnackBar;return je?je._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(je){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=je:this._snackBarRefAtThisLevel=je}constructor(je,De,Le,Ve,te,ge){this._overlay=je,this._live=De,this._injector=Le,this._breakpointObserver=Ve,this._parentSnackBar=te,this._defaultConfig=ge,this._snackBarRefAtThisLevel=null}openFromComponent(je,De){return this._attach(je,De)}openFromTemplate(je,De){return this._attach(je,De)}open(je,De="",Le){const Ve={...this._defaultConfig,...Le};return Ve.data={message:je,action:De},Ve.announcementMessage===je&&(Ve.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,Ve)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(je,De){const Ve=i.zZn.create({parent:De&&De.viewContainerRef&&De.viewContainerRef.injector||this._injector,providers:[{provide:kt,useValue:De}]}),te=new f.KC(this.snackBarContainerComponent,De.viewContainerRef,Ve),ge=je.attach(te);return ge.instance.snackBarConfig=De,ge.instance}_attach(je,De){const Le={...new kt,...this._defaultConfig,...De},Ve=this._createOverlay(Le),te=this._attachSnackBarContainer(Ve,Le),ge=new gt(te,Ve);if(je instanceof i.Yw2){const xt=new f.CC(je,null,{$implicit:Le.data,snackBarRef:ge});ge.instance=te.attachTemplatePortal(xt)}else{const xt=this._createInjector(Le,ge),Ne=new f.KC(je,void 0,xt),be=te.attachComponentPortal(Ne);ge.instance=be.instance}return this._breakpointObserver.observe(J.kP.HandsetPortrait).pipe((0,R.a)(Ve.detachments())).subscribe(xt=>{Ve.overlayElement.classList.toggle(this.handsetCssClass,xt.matches)}),Le.announcementMessage&&te._onAnnounce.subscribe(()=>{this._live.announce(Le.announcementMessage,Le.politeness)}),this._animateSnackBar(ge,Le),this._openedSnackBarRef=ge,this._openedSnackBarRef}_animateSnackBar(je,De){je.afterDismissed().subscribe(()=>{this._openedSnackBarRef==je&&(this._openedSnackBarRef=null),De.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{je.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):je.containerInstance.enter(),De.duration&&De.duration>0&&je.afterOpened().subscribe(()=>je._dismissAfter(De.duration))}_createOverlay(je){const De=new ie.o9;De.direction=je.direction;let Le=this._overlay.position().global();const Ve="rtl"===je.direction,te="left"===je.horizontalPosition||"start"===je.horizontalPosition&&!Ve||"end"===je.horizontalPosition&&Ve,ge=!te&&"center"!==je.horizontalPosition;return te?Le.left("0"):ge?Le.right("0"):Le.centerHorizontally(),"top"===je.verticalPosition?Le.top("0"):Le.bottom("0"),De.positionStrategy=Le,this._overlay.create(De)}_createInjector(je,De){return i.zZn.create({parent:je&&je.viewContainerRef&&je.viewContainerRef.injector||this._injector,providers:[{provide:gt,useValue:De},{provide:Bt,useValue:je.data}]})}static#e=this.\u0275fac=function(De){return new(De||Jt)(i.CoB(ie.mc),i.CoB(Y.mE),i.CoB(i.zZn),i.CoB(J.w$),i.CoB(Jt,12),i.CoB(st))};static#t=this.\u0275prov=i.wxM({token:Jt,factory:Jt.\u0275fac})}return Jt})(),oi=(()=>{class Jt extends $t{constructor(je,De,Le,Ve,te,ge){super(je,De,Le,Ve,te,ge),this.simpleSnackBarComponent=_e,this.snackBarContainerComponent=$e,this.handsetCssClass="mat-mdc-snack-bar-handset"}static#e=this.\u0275fac=function(De){return new(De||Jt)(i.CoB(ie.mc),i.CoB(Y.mE),i.CoB(i.zZn),i.CoB(J.w$),i.CoB(Jt,12),i.CoB(st))};static#t=this.\u0275prov=i.wxM({token:Jt,factory:Jt.\u0275fac,providedIn:oe})}return Jt})()},8059:(lt,me,d)=>{"use strict";d.d(me,{E9:()=>Bt,Su:()=>$e,e6:()=>Xe});var i=d(2116),s=d(4723),a=d(7712),h=d(7800),l=d(3576),f=d(5657),g=d(3412),b=d(9684),R=d(1368);const Y=["mat-sort-header",""];function J(oe,ut){if(1&oe){const st=i.KQA();i.I0R(0,"div",3),i.qCj("@arrowPosition.start",function(){i.usT(st);const oi=i.GaO();return i.CGJ(oi._disableViewStateAnimation=!0)})("@arrowPosition.done",function(){i.usT(st);const oi=i.GaO();return i.CGJ(oi._disableViewStateAnimation=!1)}),i.wR5(1,"div",4),i.I0R(2,"div",5),i.wR5(3,"div",6)(4,"div",7)(5,"div",8),i.C$Y()()}if(2&oe){const st=i.GaO();i.E7m("@arrowOpacity",st._getArrowViewState())("@arrowPosition",st._getArrowViewState())("@allowChildren",st._getArrowDirectionState()),i.yG2(2),i.E7m("@indicator",st._getArrowDirectionState()),i.yG2(),i.E7m("@leftPointer",st._getArrowDirectionState()),i.yG2(),i.E7m("@rightPointer",st._getArrowDirectionState())}}const ie=["*"],tt=new i.UbH("MAT_SORT_DEFAULT_OPTIONS"),gt=(0,l.aU)((0,l.YB)(class{}));let Bt=(()=>{class oe extends gt{get direction(){return this._direction}set direction(st){this._direction=st}get disableClear(){return this._disableClear}set disableClear(st){this._disableClear=(0,a.W6)(st)}constructor(st){super(),this._defaultOptions=st,this.sortables=new Map,this._stateChanges=new f.E,this.start="asc",this._direction="",this.sortChange=new i._w7}register(st){this.sortables.set(st.id,st)}deregister(st){this.sortables.delete(st.id)}sort(st){this.active!=st.id?(this.active=st.id,this.direction=st.start?st.start:this.start):this.direction=this.getNextSortDirection(st),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(st){if(!st)return"";let oi=function kt(oe,ut){let st=["asc","desc"];return"desc"==oe&&st.reverse(),ut||st.push(""),st}(st.start||this.start,st?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),Jt=oi.indexOf(this.direction)+1;return Jt>=oi.length&&(Jt=0),oi[Jt]}ngOnInit(){this._markInitialized()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}static#e=this.\u0275fac=function($t){return new($t||oe)(i.GI1(tt,8))};static#t=this.\u0275dir=i.Sc5({type:oe,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{disabled:[i.Wk5.None,"matSortDisabled","disabled"],active:[i.Wk5.None,"matSortActive","active"],start:[i.Wk5.None,"matSortStart","start"],direction:[i.Wk5.None,"matSortDirection","direction"],disableClear:[i.Wk5.None,"matSortDisableClear","disableClear"]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],features:[i.eg9,i.SYr]})}return oe})();const Ye=l.Gs.ENTERING+" "+l.iI.STANDARD_CURVE,et={indicator:(0,b.gV)("indicator",[(0,b.K2)("active-asc, asc",(0,b.wb)({transform:"translateY(0px)"})),(0,b.K2)("active-desc, desc",(0,b.wb)({transform:"translateY(10px)"})),(0,b.aK)("active-asc <=> active-desc",(0,b.Cs)(Ye))]),leftPointer:(0,b.gV)("leftPointer",[(0,b.K2)("active-asc, asc",(0,b.wb)({transform:"rotate(-45deg)"})),(0,b.K2)("active-desc, desc",(0,b.wb)({transform:"rotate(45deg)"})),(0,b.aK)("active-asc <=> active-desc",(0,b.Cs)(Ye))]),rightPointer:(0,b.gV)("rightPointer",[(0,b.K2)("active-asc, asc",(0,b.wb)({transform:"rotate(45deg)"})),(0,b.K2)("active-desc, desc",(0,b.wb)({transform:"rotate(-45deg)"})),(0,b.aK)("active-asc <=> active-desc",(0,b.Cs)(Ye))]),arrowOpacity:(0,b.gV)("arrowOpacity",[(0,b.K2)("desc-to-active, asc-to-active, active",(0,b.wb)({opacity:1})),(0,b.K2)("desc-to-hint, asc-to-hint, hint",(0,b.wb)({opacity:.54})),(0,b.K2)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,b.wb)({opacity:0})),(0,b.aK)("* => asc, * => desc, * => active, * => hint, * => void",(0,b.Cs)("0ms")),(0,b.aK)("* <=> *",(0,b.Cs)(Ye))]),arrowPosition:(0,b.gV)("arrowPosition",[(0,b.aK)("* => desc-to-hint, * => desc-to-active",(0,b.Cs)(Ye,(0,b.xZ)([(0,b.wb)({transform:"translateY(-25%)"}),(0,b.wb)({transform:"translateY(0)"})]))),(0,b.aK)("* => hint-to-desc, * => active-to-desc",(0,b.Cs)(Ye,(0,b.xZ)([(0,b.wb)({transform:"translateY(0)"}),(0,b.wb)({transform:"translateY(25%)"})]))),(0,b.aK)("* => asc-to-hint, * => asc-to-active",(0,b.Cs)(Ye,(0,b.xZ)([(0,b.wb)({transform:"translateY(25%)"}),(0,b.wb)({transform:"translateY(0)"})]))),(0,b.aK)("* => hint-to-asc, * => active-to-asc",(0,b.Cs)(Ye,(0,b.xZ)([(0,b.wb)({transform:"translateY(0)"}),(0,b.wb)({transform:"translateY(-25%)"})]))),(0,b.K2)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,b.wb)({transform:"translateY(0)"})),(0,b.K2)("hint-to-desc, active-to-desc, desc",(0,b.wb)({transform:"translateY(-25%)"})),(0,b.K2)("hint-to-asc, active-to-asc, asc",(0,b.wb)({transform:"translateY(25%)"}))]),allowChildren:(0,b.gV)("allowChildren",[(0,b.aK)("* <=> *",[(0,b.kt)("@*",(0,b.Ql)(),{optional:!0})])])};let Q=(()=>{class oe{constructor(){this.changes=new f.E}static#e=this.\u0275fac=function($t){return new($t||oe)};static#t=this.\u0275prov=i.wxM({token:oe,factory:oe.\u0275fac,providedIn:"root"})}return oe})();const ye={provide:Q,deps:[[new i.T7N,new i.Qfh,Q]],useFactory:function _e(oe){return oe||new Q}},Re=(0,l.YB)(class{});let Xe=(()=>{class oe extends Re{get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(st){this._updateSortActionDescription(st)}get disableClear(){return this._disableClear}set disableClear(st){this._disableClear=(0,a.W6)(st)}constructor(st,$t,oi,Jt,vi,je,De,Le){super(),this._intl=st,this._changeDetectorRef=$t,this._sort=oi,this._columnDef=Jt,this._focusMonitor=vi,this._elementRef=je,this._ariaDescriber=De,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this._sortActionDescription="Sort",Le?.arrowPosition&&(this.arrowPosition=Le?.arrowPosition),this._handleStateChanges()}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(st=>{const $t=!!st;$t!==this._showIndicatorHint&&(this._setIndicatorHintVisible($t),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe()}_setIndicatorHintVisible(st){this._isDisabled()&&st||(this._showIndicatorHint=st,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(st){this._viewState=st||{},this._disableViewStateAnimation&&(this._viewState={toState:st.toState})}_toggleOnInteraction(){this._sort.sort(this),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0)}_handleClick(){this._isDisabled()||this._sort.sort(this)}_handleKeydown(st){!this._isDisabled()&&(st.keyCode===h.Gi||st.keyCode===h.wJ)&&(st.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_getArrowDirectionState(){return`${this._isSorted()?"active-":""}${this._arrowDirection}`}_getArrowViewState(){const st=this._viewState.fromState;return(st?`${st}-to-`:"")+this._viewState.toState}_updateArrowDirection(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(st){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,st)),this._sortActionDescription=st}_handleStateChanges(){this._rerenderSubscription=(0,g.U)(this._sort.sortChange,this._sort._stateChanges,this._intl.changes).subscribe(()=>{this._isSorted()&&(this._updateArrowDirection(),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0),this._setAnimationTransitionState({fromState:this._arrowDirection,toState:"active"}),this._showIndicatorHint=!1),!this._isSorted()&&this._viewState&&"active"===this._viewState.toState&&(this._disableViewStateAnimation=!1,this._setAnimationTransitionState({fromState:"active",toState:this._arrowDirection})),this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function($t){return new($t||oe)(i.GI1(Q),i.GI1(i.kD9),i.GI1(Bt,8),i.GI1("MAT_SORT_HEADER_COLUMN_DEF",8),i.GI1(s.Kk),i.GI1(i.GMv),i.GI1(s.o9,8),i.GI1(tt,8))};static#t=this.\u0275cmp=i.In1({type:oe,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function($t,oi){1&$t&&i.qCj("click",function(){return oi._handleClick()})("keydown",function(vi){return oi._handleKeydown(vi)})("mouseenter",function(){return oi._setIndicatorHintVisible(!0)})("mouseleave",function(){return oi._setIndicatorHintVisible(!1)}),2&$t&&(i.e48("aria-sort",oi._getAriaSortAttribute()),i.eAK("mat-sort-header-disabled",oi._isDisabled()))},inputs:{disabled:"disabled",id:[i.Wk5.None,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",sortActionDescription:"sortActionDescription",disableClear:"disableClear"},exportAs:["matSortHeader"],features:[i.eg9],attrs:Y,ngContentSelectors:ie,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],["class","mat-sort-header-arrow",4,"ngIf"],[1,"mat-sort-header-arrow"],[1,"mat-sort-header-stem"],[1,"mat-sort-header-indicator"],[1,"mat-sort-header-pointer-left"],[1,"mat-sort-header-pointer-right"],[1,"mat-sort-header-pointer-middle"]],template:function($t,oi){1&$t&&(i.kPM(),i.I0R(0,"div",0)(1,"div",1),i._Xx(2),i.C$Y(),i.yuY(3,J,6,6,"div",2),i.C$Y()),2&$t&&(i.eAK("mat-sort-header-sorted",oi._isSorted())("mat-sort-header-position-before","before"===oi.arrowPosition),i.e48("tabindex",oi._isDisabled()?null:0)("role",oi._isDisabled()?null:"button"),i.yG2(3),i.E7m("ngIf",oi._renderArrow()))},dependencies:[R.u_],styles:[".mat-sort-header-container{display:flex;cursor:pointer;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px) * -1)}.mat-sort-header-content{text-align:center;display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;opacity:0}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}.cdk-high-contrast-active .mat-sort-header-stem{width:0;border-left:solid 2px}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}.cdk-high-contrast-active .mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}.cdk-high-contrast-active .mat-sort-header-pointer-left,.cdk-high-contrast-active .mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}"],encapsulation:2,data:{animation:[et.indicator,et.leftPointer,et.rightPointer,et.arrowOpacity,et.arrowPosition,et.allowChildren]},changeDetection:0})}return oe})(),$e=(()=>{class oe{static#e=this.\u0275fac=function($t){return new($t||oe)};static#t=this.\u0275mod=i.a4G({type:oe});static#i=this.\u0275inj=i.s3X({providers:[ye],imports:[R.MD,l.AN]})}return oe})()},8818:(lt,me,d)=>{"use strict";d.d(me,{cX:()=>Ft,uc:()=>$,Af:()=>bt,qC:()=>yt,ie:()=>ze,yC:()=>We,aG:()=>Ei,_I:()=>Ot,gx:()=>Ci,wL:()=>S,_c:()=>Xn,If:()=>Fi});var i=d(2116),s=d(1900),a=d(7712),h=d(1032),l=d(5792),f=d(8408),g=d(1368),b=d(5657),R=d(4496),Y=d(6700),J=d(1116),ie=d(2700),ae=d(3616),Ie=d(3992);const Ee=[[["caption"]],[["colgroup"],["col"]]],Ge=["caption","colgroup, col"];function Bt(Je){return class extends Je{get sticky(){return this._sticky}set sticky(gi){const Me=this._sticky;this._sticky=(0,a.W6)(gi),this._hasStickyChanged=Me!==this._sticky}hasStickyChanged(){const gi=this._hasStickyChanged;return this._hasStickyChanged=!1,gi}resetStickyChanged(){this._hasStickyChanged=!1}constructor(...gi){super(...gi),this._sticky=!1,this._hasStickyChanged=!1}}}const kt=new i.UbH("CDK_TABLE");let et=(()=>{class Je{constructor(Me){this.template=Me}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkCellDef",""]]})}return Je})(),Q=(()=>{class Je{constructor(Me){this.template=Me}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkHeaderCellDef",""]]})}return Je})(),_e=(()=>{class Je{constructor(Me){this.template=Me}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkFooterCellDef",""]]})}return Je})();class ye{}const Re=Bt(ye);let Xe=(()=>{class Je extends Re{get name(){return this._name}set name(Me){this._setNameInput(Me)}get stickyEnd(){return this._stickyEnd}set stickyEnd(Me){const qe=this._stickyEnd;this._stickyEnd=(0,a.W6)(Me),this._hasStickyChanged=qe!==this._stickyEnd}constructor(Me){super(),this._table=Me,this._stickyEnd=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(Me){Me&&(this._name=Me,this.cssClassFriendlyName=Me.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(kt,8))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkColumnDef",""]],contentQueries:function(qe,Rt,A){if(1&qe&&(i.szK(A,et,5),i.szK(A,Q,5),i.szK(A,_e,5)),2&qe){let ee;i.wto(ee=i.Gqi())&&(Rt.cell=ee.first),i.wto(ee=i.Gqi())&&(Rt.headerCell=ee.first),i.wto(ee=i.Gqi())&&(Rt.footerCell=ee.first)}},inputs:{sticky:"sticky",name:[i.Wk5.None,"cdkColumnDef","name"],stickyEnd:"stickyEnd"},features:[i.M5G([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Je}]),i.eg9]})}return Je})();class $e{constructor(gi,Me){Me.nativeElement.classList.add(...gi._columnCssClassName)}}let oe=(()=>{class Je extends $e{constructor(Me,qe){super(Me,qe)}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(Xe),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[i.eg9]})}return Je})(),st=(()=>{class Je extends $e{constructor(Me,qe){if(super(Me,qe),1===Me._table?._elementRef.nativeElement.nodeType){const Rt=Me._table._elementRef.nativeElement.getAttribute("role");qe.nativeElement.setAttribute("role","grid"===Rt||"treegrid"===Rt?"gridcell":"cell")}}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(Xe),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[i.eg9]})}return Je})();class $t{constructor(){this.tasks=[],this.endTasks=[]}}const oi=new i.UbH("_COALESCED_STYLE_SCHEDULER");let Jt=(()=>{class Je{constructor(Me){this._ngZone=Me,this._currentSchedule=null,this._destroyed=new b.E}schedule(Me){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(Me)}scheduleEnd(Me){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(Me)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new $t,this._getScheduleObservable().pipe((0,ae.a)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const Me=this._currentSchedule;this._currentSchedule=new $t;for(const qe of Me.tasks)qe();for(const qe of Me.endTasks)qe()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,R.Q)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,Ie.U)(1))}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.CoB(i.WW2))};static#t=this.\u0275prov=i.wxM({token:Je,factory:Je.\u0275fac})}return Je})(),je=(()=>{class Je{constructor(Me,qe){this.template=Me,this._differs=qe}ngOnChanges(Me){if(!this._columnsDiffer){const qe=Me.columns&&Me.columns.currentValue||[];this._columnsDiffer=this._differs.find(qe).create(),this._columnsDiffer.diff(qe)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(Me){return this instanceof Ve?Me.headerCell.template:this instanceof xt?Me.footerCell.template:Me.cell.template}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2),i.GI1(i.Uj7))};static#t=this.\u0275dir=i.Sc5({type:Je,features:[i.SYr]})}return Je})();class De extends je{}const Le=Bt(De);let Ve=(()=>{class Je extends Le{constructor(Me,qe,Rt){super(Me,qe),this._table=Rt}ngOnChanges(Me){super.ngOnChanges(Me)}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2),i.GI1(i.Uj7),i.GI1(kt,8))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[i.Wk5.None,"cdkHeaderRowDef","columns"],sticky:[i.Wk5.None,"cdkHeaderRowDefSticky","sticky"]},features:[i.eg9,i.SYr]})}return Je})();class te extends je{}const ge=Bt(te);let xt=(()=>{class Je extends ge{constructor(Me,qe,Rt){super(Me,qe),this._table=Rt}ngOnChanges(Me){super.ngOnChanges(Me)}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2),i.GI1(i.Uj7),i.GI1(kt,8))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[i.Wk5.None,"cdkFooterRowDef","columns"],sticky:[i.Wk5.None,"cdkFooterRowDefSticky","sticky"]},features:[i.eg9,i.SYr]})}return Je})(),Ne=(()=>{class Je extends je{constructor(Me,qe,Rt){super(Me,qe),this._table=Rt}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2),i.GI1(i.Uj7),i.GI1(kt,8))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkRowDef",""]],inputs:{columns:[i.Wk5.None,"cdkRowDefColumns","columns"],when:[i.Wk5.None,"cdkRowDefWhen","when"]},features:[i.eg9]})}return Je})(),be=(()=>{class Je{static#e=this.mostRecentCellOutlet=null;constructor(Me){this._viewContainer=Me,Je.mostRecentCellOutlet=this}ngOnDestroy(){Je.mostRecentCellOutlet===this&&(Je.mostRecentCellOutlet=null)}static#t=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.y8U))};static#i=this.\u0275dir=i.Sc5({type:Je,selectors:[["","cdkCellOutlet",""]]})}return Je})(),j=(()=>{class Je{static#e=this.\u0275fac=function(qe){return new(qe||Je)};static#t=this.\u0275cmp=i.In1({type:Je,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(qe,Rt){1&qe&&i.C_f(0,0)},dependencies:[be],encapsulation:2})}return Je})(),N=(()=>{class Je{static#e=this.\u0275fac=function(qe){return new(qe||Je)};static#t=this.\u0275cmp=i.In1({type:Je,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(qe,Rt){1&qe&&i.C_f(0,0)},dependencies:[be],encapsulation:2})}return Je})(),U=(()=>{class Je{constructor(Me){this.templateRef=Me,this._contentClassName="cdk-no-data-row"}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Yw2))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["ng-template","cdkNoDataRow",""]]})}return Je})();const Fe=["top","bottom","left","right"];class Tt{constructor(gi,Me,qe,Rt,A=!0,ee=!0,re){this._isNativeHtmlTable=gi,this._stickCellCss=Me,this.direction=qe,this._coalescedStyleScheduler=Rt,this._isBrowser=A,this._needsPositionStickyOnElement=ee,this._positionListener=re,this._cachedCellWidths=[],this._borderCellCss={top:`${Me}-border-elem-top`,bottom:`${Me}-border-elem-bottom`,left:`${Me}-border-elem-left`,right:`${Me}-border-elem-right`}}clearStickyPositioning(gi,Me){const qe=[];for(const Rt of gi)if(Rt.nodeType===Rt.ELEMENT_NODE){qe.push(Rt);for(let A=0;A{for(const Rt of qe)this._removeStickyStyle(Rt,Me)})}updateStickyColumns(gi,Me,qe,Rt=!0){if(!gi.length||!this._isBrowser||!Me.some(Li=>Li)&&!qe.some(Li=>Li))return void(this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]})));const A=gi[0],ee=A.children.length,re=this._getCellWidths(A,Rt),mt=this._getStickyStartColumnPositions(re,Me),Wt=this._getStickyEndColumnPositions(re,qe),Zt=Me.lastIndexOf(!0),pi=qe.indexOf(!0);this._coalescedStyleScheduler.schedule(()=>{const Li="rtl"===this.direction,ot=Li?"right":"left",mi=Li?"left":"right";for(const k of gi)for(let se=0;seMe[se]?k:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===pi?[]:re.slice(pi).map((k,se)=>qe[se+pi]?k:null).reverse()}))})}stickRows(gi,Me,qe){if(!this._isBrowser)return;const Rt="bottom"===qe?gi.slice().reverse():gi,A="bottom"===qe?Me.slice().reverse():Me,ee=[],re=[],mt=[];for(let Zt=0,pi=0;Zt{for(let Zt=0;Zt{Me.some(Rt=>!Rt)?this._removeStickyStyle(qe,["bottom"]):this._addStickyStyle(qe,"bottom",0,!1)})}_removeStickyStyle(gi,Me){for(const Rt of Me)gi.style[Rt]="",gi.classList.remove(this._borderCellCss[Rt]);Fe.some(Rt=>-1===Me.indexOf(Rt)&&gi.style[Rt])?gi.style.zIndex=this._getCalculatedZIndex(gi):(gi.style.zIndex="",this._needsPositionStickyOnElement&&(gi.style.position=""),gi.classList.remove(this._stickCellCss))}_addStickyStyle(gi,Me,qe,Rt){gi.classList.add(this._stickCellCss),Rt&&gi.classList.add(this._borderCellCss[Me]),gi.style[Me]=`${qe}px`,gi.style.zIndex=this._getCalculatedZIndex(gi),this._needsPositionStickyOnElement&&(gi.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(gi){const Me={top:100,bottom:10,left:1,right:1};let qe=0;for(const Rt of Fe)gi.style[Rt]&&(qe+=Me[Rt]);return qe?`${qe}`:""}_getCellWidths(gi,Me=!0){if(!Me&&this._cachedCellWidths.length)return this._cachedCellWidths;const qe=[],Rt=gi.children;for(let A=0;A0;A--)Me[A]&&(qe[A]=Rt,Rt+=gi[A]);return qe}}const Dt=new i.UbH("CDK_SPL");let Te=(()=>{class Je{constructor(Me,qe){this.viewContainer=Me,this.elementRef=qe}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.y8U),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","rowOutlet",""]]})}return Je})(),at=(()=>{class Je{constructor(Me,qe){this.viewContainer=Me,this.elementRef=qe}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.y8U),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","headerRowOutlet",""]]})}return Je})(),Ze=(()=>{class Je{constructor(Me,qe){this.viewContainer=Me,this.elementRef=qe}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.y8U),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","footerRowOutlet",""]]})}return Je})(),pt=(()=>{class Je{constructor(Me,qe){this.viewContainer=Me,this.elementRef=qe}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.y8U),i.GI1(i.GMv))};static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","noDataRowOutlet",""]]})}return Je})(),Pe=(()=>{class Je{get trackBy(){return this._trackByFn}set trackBy(Me){this._trackByFn=Me}get dataSource(){return this._dataSource}set dataSource(Me){this._dataSource!==Me&&this._switchDataSource(Me)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(Me){this._multiTemplateDataRows=(0,a.W6)(Me),this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(Me){this._fixedLayout=(0,a.W6)(Me),this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}constructor(Me,qe,Rt,A,ee,re,mt,Wt,Zt,pi,Li,ot){this._differs=Me,this._changeDetectorRef=qe,this._elementRef=Rt,this._dir=ee,this._platform=mt,this._viewRepeater=Wt,this._coalescedStyleScheduler=Zt,this._viewportRuler=pi,this._stickyPositioningListener=Li,this._ngZone=ot,this._onDestroy=new b.E,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._stickyColumnStylesNeedReset=!0,this._forceRecalculateCellWidths=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this.needsPositionStickyOnElement=!0,this._isShowingNoDataRow=!1,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new i._w7,this.viewChange=new Y.g({start:0,end:Number.MAX_VALUE}),A||this._elementRef.nativeElement.setAttribute("role","table"),this._document=re,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName}ngOnInit(){this._setupStickyStyler(),this._isNativeHtmlTable&&this._applyNativeTableSections(),this._dataDiffer=this._differs.find([]).create((Me,qe)=>this.trackBy?this.trackBy(qe.dataIndex,qe.data):qe),this._viewportRuler.change().pipe((0,ae.a)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentChecked(){this._cacheRowDefs(),this._cacheColumnDefs();const qe=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||qe,this._forceRecalculateCellWidths=qe,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}ngOnDestroy(){[this._rowOutlet.viewContainer,this._headerRowOutlet.viewContainer,this._footerRowOutlet.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(Me=>{Me.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,h.cz)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const Me=this._dataDiffer.diff(this._renderRows);if(!Me)return this._updateNoDataRow(),void this.contentChanged.next();const qe=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(Me,qe,(Rt,A,ee)=>this._getEmbeddedViewArgs(Rt.item,ee),Rt=>Rt.item.data,Rt=>{1===Rt.operation&&Rt.context&&this._renderCellTemplateForItem(Rt.record.item.rowDef,Rt.context)}),this._updateRowIndexContext(),Me.forEachIdentityChange(Rt=>{qe.get(Rt.currentIndex).context.$implicit=Rt.item.data}),this._updateNoDataRow(),this._ngZone&&i.WW2.isInAngularZone()?this._ngZone.onStable.pipe((0,Ie.U)(1),(0,ae.a)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(Me){this._customColumnDefs.add(Me)}removeColumnDef(Me){this._customColumnDefs.delete(Me)}addRowDef(Me){this._customRowDefs.add(Me)}removeRowDef(Me){this._customRowDefs.delete(Me)}addHeaderRowDef(Me){this._customHeaderRowDefs.add(Me),this._headerRowDefChanged=!0}removeHeaderRowDef(Me){this._customHeaderRowDefs.delete(Me),this._headerRowDefChanged=!0}addFooterRowDef(Me){this._customFooterRowDefs.add(Me),this._footerRowDefChanged=!0}removeFooterRowDef(Me){this._customFooterRowDefs.delete(Me),this._footerRowDefChanged=!0}setNoDataRow(Me){this._customNoDataRow=Me}updateStickyHeaderRowStyles(){const Me=this._getRenderedRows(this._headerRowOutlet),Rt=this._elementRef.nativeElement.querySelector("thead");Rt&&(Rt.style.display=Me.length?"":"none");const A=this._headerRowDefs.map(ee=>ee.sticky);this._stickyStyler.clearStickyPositioning(Me,["top"]),this._stickyStyler.stickRows(Me,A,"top"),this._headerRowDefs.forEach(ee=>ee.resetStickyChanged())}updateStickyFooterRowStyles(){const Me=this._getRenderedRows(this._footerRowOutlet),Rt=this._elementRef.nativeElement.querySelector("tfoot");Rt&&(Rt.style.display=Me.length?"":"none");const A=this._footerRowDefs.map(ee=>ee.sticky);this._stickyStyler.clearStickyPositioning(Me,["bottom"]),this._stickyStyler.stickRows(Me,A,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,A),this._footerRowDefs.forEach(ee=>ee.resetStickyChanged())}updateStickyColumnStyles(){const Me=this._getRenderedRows(this._headerRowOutlet),qe=this._getRenderedRows(this._rowOutlet),Rt=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...Me,...qe,...Rt],["left","right"]),this._stickyColumnStylesNeedReset=!1),Me.forEach((A,ee)=>{this._addStickyColumnStyles([A],this._headerRowDefs[ee])}),this._rowDefs.forEach(A=>{const ee=[];for(let re=0;re{this._addStickyColumnStyles([A],this._footerRowDefs[ee])}),Array.from(this._columnDefsByName.values()).forEach(A=>A.resetStickyChanged())}_getAllRenderRows(){const Me=[],qe=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let Rt=0;Rt{const re=Rt&&Rt.has(ee)?Rt.get(ee):[];if(re.length){const mt=re.shift();return mt.dataIndex=qe,mt}return{data:Me,rowDef:ee,dataIndex:qe}})}_cacheColumnDefs(){this._columnDefsByName.clear(),ht(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(qe=>{this._columnDefsByName.has(qe.name),this._columnDefsByName.set(qe.name,qe)})}_cacheRowDefs(){this._headerRowDefs=ht(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=ht(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=ht(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const Me=this._rowDefs.filter(qe=>!qe.when);this._defaultRowDef=Me[0]}_renderUpdatedColumns(){const Me=(ee,re)=>ee||!!re.getColumnsDiff(),qe=this._rowDefs.reduce(Me,!1);qe&&this._forceRenderDataRows();const Rt=this._headerRowDefs.reduce(Me,!1);Rt&&this._forceRenderHeaderRows();const A=this._footerRowDefs.reduce(Me,!1);return A&&this._forceRenderFooterRows(),qe||Rt||A}_switchDataSource(Me){this._data=[],(0,h.cz)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),Me||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear()),this._dataSource=Me}_observeRenderChanges(){if(!this.dataSource)return;let Me;(0,h.cz)(this.dataSource)?Me=this.dataSource.connect(this):(0,J.X)(this.dataSource)?Me=this.dataSource:Array.isArray(this.dataSource)&&(Me=(0,ie.of)(this.dataSource)),this._renderChangeSubscription=Me.pipe((0,ae.a)(this._onDestroy)).subscribe(qe=>{this._data=qe||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((Me,qe)=>this._renderRow(this._headerRowOutlet,Me,qe)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((Me,qe)=>this._renderRow(this._footerRowOutlet,Me,qe)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(Me,qe){const Rt=Array.from(qe.columns||[]).map(re=>this._columnDefsByName.get(re)),A=Rt.map(re=>re.sticky),ee=Rt.map(re=>re.stickyEnd);this._stickyStyler.updateStickyColumns(Me,A,ee,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(Me){const qe=[];for(let Rt=0;Rt!A.when||A.when(qe,Me));else{let A=this._rowDefs.find(ee=>ee.when&&ee.when(qe,Me))||this._defaultRowDef;A&&Rt.push(A)}return Rt}_getEmbeddedViewArgs(Me,qe){return{templateRef:Me.rowDef.template,context:{$implicit:Me.data},index:qe}}_renderRow(Me,qe,Rt,A={}){const ee=Me.viewContainer.createEmbeddedView(qe.template,A,Rt);return this._renderCellTemplateForItem(qe,A),ee}_renderCellTemplateForItem(Me,qe){for(let Rt of this._getCellTemplates(Me))be.mostRecentCellOutlet&&be.mostRecentCellOutlet._viewContainer.createEmbeddedView(Rt,qe);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const Me=this._rowOutlet.viewContainer;for(let qe=0,Rt=Me.length;qe{const Rt=this._columnDefsByName.get(qe);return Me.extractCellTemplate(Rt)}):[]}_applyNativeTableSections(){const Me=this._document.createDocumentFragment(),qe=[{tag:"thead",outlets:[this._headerRowOutlet]},{tag:"tbody",outlets:[this._rowOutlet,this._noDataRowOutlet]},{tag:"tfoot",outlets:[this._footerRowOutlet]}];for(const Rt of qe){const A=this._document.createElement(Rt.tag);A.setAttribute("role","rowgroup");for(const ee of Rt.outlets)A.appendChild(ee.elementRef.nativeElement);Me.appendChild(A)}this._elementRef.nativeElement.appendChild(Me)}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const Me=(qe,Rt)=>qe||Rt.hasStickyChanged();this._headerRowDefs.reduce(Me,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(Me,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(Me,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new Tt(this._isNativeHtmlTable,this.stickyCssClass,this._dir?this._dir.value:"ltr",this._coalescedStyleScheduler,this._platform.isBrowser,this.needsPositionStickyOnElement,this._stickyPositioningListener),(this._dir?this._dir.change:(0,ie.of)()).pipe((0,ae.a)(this._onDestroy)).subscribe(qe=>{this._stickyStyler.direction=qe,this.updateStickyColumnStyles()})}_getOwnDefs(Me){return Me.filter(qe=>!qe._table||qe._table===this)}_updateNoDataRow(){const Me=this._customNoDataRow||this._noDataRow;if(!Me)return;const qe=0===this._rowOutlet.viewContainer.length;if(qe===this._isShowingNoDataRow)return;const Rt=this._noDataRowOutlet.viewContainer;if(qe){const A=Rt.createEmbeddedView(Me.templateRef),ee=A.rootNodes[0];1===A.rootNodes.length&&ee?.nodeType===this._document.ELEMENT_NODE&&(ee.setAttribute("role","row"),ee.classList.add(Me._contentClassName))}else Rt.clear();this._isShowingNoDataRow=qe,this._changeDetectorRef.markForCheck()}static#e=this.\u0275fac=function(qe){return new(qe||Je)(i.GI1(i.Uj7),i.GI1(i.kD9),i.GI1(i.GMv),i.gJ8("role"),i.GI1(s.yG,8),i.GI1(g.Ud),i.GI1(l.WU),i.GI1(h.ys),i.GI1(oi),i.GI1(f.S8),i.GI1(Dt,12),i.GI1(i.WW2,8))};static#t=this.\u0275cmp=i.In1({type:Je,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(qe,Rt,A){if(1&qe&&(i.szK(A,U,5),i.szK(A,Xe,5),i.szK(A,Ne,5),i.szK(A,Ve,5),i.szK(A,xt,5)),2&qe){let ee;i.wto(ee=i.Gqi())&&(Rt._noDataRow=ee.first),i.wto(ee=i.Gqi())&&(Rt._contentColumnDefs=ee),i.wto(ee=i.Gqi())&&(Rt._contentRowDefs=ee),i.wto(ee=i.Gqi())&&(Rt._contentHeaderRowDefs=ee),i.wto(ee=i.Gqi())&&(Rt._contentFooterRowDefs=ee)}},viewQuery:function(qe,Rt){if(1&qe&&(i.CC$(Te,7),i.CC$(at,7),i.CC$(Ze,7),i.CC$(pt,7)),2&qe){let A;i.wto(A=i.Gqi())&&(Rt._rowOutlet=A.first),i.wto(A=i.Gqi())&&(Rt._headerRowOutlet=A.first),i.wto(A=i.Gqi())&&(Rt._footerRowOutlet=A.first),i.wto(A=i.Gqi())&&(Rt._noDataRowOutlet=A.first)}},hostAttrs:["ngSkipHydration","",1,"cdk-table"],hostVars:2,hostBindings:function(qe,Rt){2&qe&&i.eAK("cdk-table-fixed-layout",Rt.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:"multiTemplateDataRows",fixedLayout:"fixedLayout"},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],features:[i.M5G([{provide:kt,useExisting:Je},{provide:h.ys,useClass:h.eo},{provide:oi,useClass:Jt},{provide:Dt,useValue:null}])],ngContentSelectors:Ge,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(qe,Rt){1&qe&&(i.kPM(Ee),i._Xx(0),i._Xx(1,1),i.C_f(2,0)(3,1)(4,2)(5,3))},dependencies:[Te,at,Ze,pt],styles:[".cdk-table-fixed-layout{table-layout:fixed}"],encapsulation:2})}return Je})();function ht(Je,gi){return Je.concat(Array.from(gi))}let Mt=(()=>{class Je{static#e=this.\u0275fac=function(qe){return new(qe||Je)};static#t=this.\u0275mod=i.a4G({type:Je});static#i=this.\u0275inj=i.s3X({imports:[f.c$]})}return Je})();var fe=d(3576),it=d(3412),Et=d(6040),ct=d(4704);const ri=[[["caption"]],[["colgroup"],["col"]]],V=["caption","colgroup, col"];let S=(()=>{class Je extends Pe{constructor(){super(...arguments),this.stickyCssClass="mat-mdc-table-sticky",this.needsPositionStickyOnElement=!1}ngOnInit(){super.ngOnInit(),this._isNativeHtmlTable&&this._elementRef.nativeElement.querySelector("tbody").classList.add("mdc-data-table__content")}static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275cmp=i.In1({type:Je,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:["ngSkipHydration","",1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(qe,Rt){2&qe&&i.eAK("mdc-table-fixed-layout",Rt.fixedLayout)},exportAs:["matTable"],features:[i.M5G([{provide:Pe,useExisting:Je},{provide:kt,useExisting:Je},{provide:oi,useClass:Jt},{provide:h.ys,useClass:h.eo},{provide:Dt,useValue:null}]),i.eg9],ngContentSelectors:V,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(qe,Rt){1&qe&&(i.kPM(ri),i._Xx(0),i._Xx(1,1),i.C_f(2,0)(3,1)(4,2)(5,3))},dependencies:[Te,at,Ze,pt],styles:[".mat-mdc-table-sticky{position:sticky !important}.mdc-data-table{-webkit-overflow-scrolling:touch;display:inline-flex;flex-direction:column;box-sizing:border-box;position:relative}.mdc-data-table__table-container{-webkit-overflow-scrolling:touch;overflow-x:auto;width:100%}.mdc-data-table__table{min-width:100%;border:0;white-space:nowrap;border-spacing:0;table-layout:fixed}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell,.mdc-data-table__cell[dir=rtl]{text-align:right}.mdc-data-table__cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__cell--numeric,.mdc-data-table__cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell{box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mdc-data-table__header-cell,.mdc-data-table__header-cell[dir=rtl]{text-align:right}.mdc-data-table__header-cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__header-cell--numeric,.mdc-data-table__header-cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell-wrapper{align-items:center;display:inline-flex;vertical-align:middle}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px 0 16px}.mdc-data-table__header-cell--checkbox,.mdc-data-table__cell--checkbox{padding-left:4px;padding-right:0}[dir=rtl] .mdc-data-table__header-cell--checkbox,[dir=rtl] .mdc-data-table__cell--checkbox,.mdc-data-table__header-cell--checkbox[dir=rtl],.mdc-data-table__cell--checkbox[dir=rtl]{padding-left:0;padding-right:4px}mat-table{display:block}mat-header-row{min-height:56px}mat-row,mat-footer-row{min-height:48px}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}.mat-mdc-table{--mat-table-row-item-outline-width:1px;table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color)}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-header-headline-font, Roboto, sans-serif);line-height:var(--mat-table-header-headline-line-height);font-size:var(--mat-table-header-headline-size, 14px);font-weight:var(--mat-table-header-headline-weight, 500)}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, Roboto, sans-serif);line-height:var(--mat-table-row-item-label-text-line-height);font-size:var(--mat-table-row-item-label-text-size, 14px);font-weight:var(--mat-table-row-item-label-text-weight)}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-footer-supporting-text-font, Roboto, sans-serif);line-height:var(--mat-table-footer-supporting-text-line-height);font-size:var(--mat-table-footer-supporting-text-size, 14px);font-weight:var(--mat-table-footer-supporting-text-weight);letter-spacing:var(--mat-table-footer-supporting-text-tracking)}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking);font-weight:inherit;line-height:inherit}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking);line-height:inherit}.mdc-data-table__row:last-child .mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking)}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}"],encapsulation:2})}return Je})(),$=(()=>{class Je extends et{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","matCellDef",""]],features:[i.M5G([{provide:et,useExisting:Je}]),i.eg9]})}return Je})(),ze=(()=>{class Je extends Q{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","matHeaderCellDef",""]],features:[i.M5G([{provide:Q,useExisting:Je}]),i.eg9]})}return Je})(),bt=(()=>{class Je extends Xe{get name(){return this._name}set name(Me){this._setNameInput(Me)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","matColumnDef",""]],inputs:{sticky:"sticky",name:[i.Wk5.None,"matColumnDef","name"]},features:[i.M5G([{provide:Xe,useExisting:Je},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Je}]),i.eg9]})}return Je})(),yt=(()=>{class Je extends oe{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],features:[i.eg9]})}return Je})(),Ft=(()=>{class Je extends st{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],features:[i.eg9]})}return Je})(),Ei=(()=>{class Je extends Ve{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[i.Wk5.None,"matHeaderRowDef","columns"],sticky:[i.Wk5.None,"matHeaderRowDefSticky","sticky"]},features:[i.M5G([{provide:Ve,useExisting:Je}]),i.eg9]})}return Je})(),Ci=(()=>{class Je extends Ne{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275dir=i.Sc5({type:Je,selectors:[["","matRowDef",""]],inputs:{columns:[i.Wk5.None,"matRowDefColumns","columns"],when:[i.Wk5.None,"matRowDefWhen","when"]},features:[i.M5G([{provide:Ne,useExisting:Je}]),i.eg9]})}return Je})(),We=(()=>{class Je extends j{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275cmp=i.In1({type:Je,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],features:[i.M5G([{provide:j,useExisting:Je}]),i.eg9],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(qe,Rt){1&qe&&i.C_f(0,0)},dependencies:[be],encapsulation:2})}return Je})(),Ot=(()=>{class Je extends N{static#e=this.\u0275fac=(()=>{let Me;return function(Rt){return(Me||(Me=i.otF(Je)))(Rt||Je)}})();static#t=this.\u0275cmp=i.In1({type:Je,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],features:[i.M5G([{provide:N,useExisting:Je}]),i.eg9],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(qe,Rt){1&qe&&i.C_f(0,0)},dependencies:[be],encapsulation:2})}return Je})(),Fi=(()=>{class Je{static#e=this.\u0275fac=function(qe){return new(qe||Je)};static#t=this.\u0275mod=i.a4G({type:Je});static#i=this.\u0275inj=i.s3X({imports:[fe.AN,Mt,fe.AN]})}return Je})();class an extends h.Cc{get data(){return this._data.value}set data(gi){gi=Array.isArray(gi)?gi:[],this._data.next(gi),this._renderChangesSubscription||this._filterData(gi)}get filter(){return this._filter.value}set filter(gi){this._filter.next(gi),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(gi){this._sort=gi,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(gi){this._paginator=gi,this._updateChangeSubscription()}constructor(gi=[]){super(),this._renderData=new Y.g([]),this._filter=new Y.g(""),this._internalPageChanges=new b.E,this._renderChangesSubscription=null,this.sortingDataAccessor=(Me,qe)=>{const Rt=Me[qe];if((0,a.s3)(Rt)){const A=Number(Rt);return A<9007199254740991?A:Rt}return Rt},this.sortData=(Me,qe)=>{const Rt=qe.active,A=qe.direction;return Rt&&""!=A?Me.sort((ee,re)=>{let mt=this.sortingDataAccessor(ee,Rt),Wt=this.sortingDataAccessor(re,Rt);const Zt=typeof mt,pi=typeof Wt;Zt!==pi&&("number"===Zt&&(mt+=""),"number"===pi&&(Wt+=""));let Li=0;return null!=mt&&null!=Wt?mt>Wt?Li=1:mt{const Rt=Object.keys(Me).reduce((ee,re)=>ee+Me[re]+"\u25ec","").toLowerCase(),A=qe.trim().toLowerCase();return-1!=Rt.indexOf(A)},this._data=new Y.g(gi),this._updateChangeSubscription()}_updateChangeSubscription(){const gi=this._sort?(0,it.U)(this._sort.sortChange,this._sort.initialized):(0,ie.of)(null),Me=this._paginator?(0,it.U)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,ie.of)(null),Rt=(0,Et.E)([this._data,this._filter]).pipe((0,ct.k)(([re])=>this._filterData(re))),A=(0,Et.E)([Rt,gi]).pipe((0,ct.k)(([re])=>this._orderData(re))),ee=(0,Et.E)([A,Me]).pipe((0,ct.k)(([re])=>this._pageData(re)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=ee.subscribe(re=>this._renderData.next(re))}_filterData(gi){return this.filteredData=null==this.filter||""===this.filter?gi:gi.filter(Me=>this.filterPredicate(Me,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(gi){return this.sort?this.sortData(gi.slice(),this.sort):gi}_pageData(gi){if(!this.paginator)return gi;const Me=this.paginator.pageIndex*this.paginator.pageSize;return gi.slice(Me,Me+this.paginator.pageSize)}_updatePaginator(gi){Promise.resolve().then(()=>{const Me=this.paginator;if(Me&&(Me.length=gi,Me.pageIndex>0)){const qe=Math.ceil(Me.length/Me.pageSize)-1||0,Rt=Math.min(Me.pageIndex,qe);Rt!==Me.pageIndex&&(Me.pageIndex=Rt,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}class Xn extends an{}},180:(lt,me,d)=>{"use strict";d.d(me,{WG:()=>Ei,_q:()=>w,aJ:()=>Ht,i0:()=>ni});var i=d(1368),s=d(2116),a=d(3576),h=d(2488),l=d(6640),f=d(4723),g=d(1900),b=d(6928),R=d(5657),Y=d(800),J=d(2700),ie=d(3412),ae=d(8960),Ie=d(3252),Ee=d(4548),Ge=d(5568),tt=d(4e3),gt=d(3616),Bt=d(3992),kt=d(7368),Ye=d(2644),et=d(6684),Q=d(9684),_e=d(7712),ye=d(8408),Re=d(5792),Xe=d(7800);function $e(Vt,Ci){}const oe=Vt=>({animationDuration:Vt}),ut=(Vt,Ci)=>({value:Vt,params:Ci});function st(Vt,Ci){1&Vt&&s._Xx(0)}const $t=["*"],oi=["tabListContainer"],Jt=["tabList"],vi=["tabListInner"],je=["nextPaginator"],De=["previousPaginator"],Le=["tabBodyWrapper"],Ve=["tabHeader"];function te(Vt,Ci){}function ge(Vt,Ci){if(1&Vt&&s.yuY(0,te,0,0,"ng-template",14),2&Vt){const We=s.GaO().$implicit;s.E7m("cdkPortalOutlet",We.templateLabel)}}function xt(Vt,Ci){if(1&Vt&&s.OEk(0),2&Vt){const We=s.GaO().$implicit;s.cNF(We.textLabel)}}function Ne(Vt,Ci){if(1&Vt){const We=s.KQA();s.I0R(0,"div",6,7),s.qCj("click",function(){const Ot=s.usT(We),si=Ot.$implicit,yi=Ot.index,Ti=s.GaO(),Fi=s.Gew(1);return s.CGJ(Ti._handleClick(si,Fi,yi))})("cdkFocusChange",function(Ot){const yi=s.usT(We).index,Ti=s.GaO();return s.CGJ(Ti._tabFocusChanged(Ot,yi))}),s.wR5(2,"span",8)(3,"div",9),s.I0R(4,"span",10)(5,"span",11),s.yuY(6,ge,1,1,"ng-template",12)(7,xt,1,1,"ng-template",null,13,s.gJz),s.C$Y()()()}if(2&Vt){const We=Ci.$implicit,nt=Ci.index,Ot=s.Gew(1),si=s.Gew(8),yi=s.GaO();s.eAK("mdc-tab--active",yi.selectedIndex===nt),s.E7m("id",yi._getTabLabelId(nt))("ngClass",We.labelClass)("disabled",We.disabled)("fitInkBarToContent",yi.fitInkBarToContent),s.e48("tabIndex",yi._getTabIndex(nt))("aria-posinset",nt+1)("aria-setsize",yi._tabs.length)("aria-controls",yi._getTabContentId(nt))("aria-selected",yi.selectedIndex===nt)("aria-label",We.ariaLabel||null)("aria-labelledby",!We.ariaLabel&&We.ariaLabelledby?We.ariaLabelledby:null),s.yG2(3),s.E7m("matRippleTrigger",Ot)("matRippleDisabled",We.disabled||yi.disableRipple),s.yG2(3),s.E7m("ngIf",We.templateLabel)("ngIfElse",si)}}function be(Vt,Ci){if(1&Vt){const We=s.KQA();s.I0R(0,"mat-tab-body",15),s.qCj("_onCentered",function(){s.usT(We);const Ot=s.GaO();return s.CGJ(Ot._removeTabBodyWrapperHeight())})("_onCentering",function(Ot){s.usT(We);const si=s.GaO();return s.CGJ(si._setTabBodyWrapperHeight(Ot))}),s.C$Y()}if(2&Vt){const We=Ci.$implicit,nt=Ci.index,Ot=s.GaO();s.eAK("mat-mdc-tab-body-active",Ot.selectedIndex===nt),s.E7m("id",Ot._getTabContentId(nt))("ngClass",We.bodyClass)("content",We.content)("position",We.position)("origin",We.origin)("animationDuration",Ot.animationDuration)("preserveContent",Ot.preserveContent),s.e48("tabindex",null!=Ot.contentTabIndex&&Ot.selectedIndex===nt?Ot.contentTabIndex:null)("aria-labelledby",Ot._getTabLabelId(nt))("aria-hidden",Ot.selectedIndex!==nt)}}const N={translateTab:(0,Q.gV)("translateTab",[(0,Q.K2)("center, void, left-origin-center, right-origin-center",(0,Q.wb)({transform:"none"})),(0,Q.K2)("left",(0,Q.wb)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,Q.K2)("right",(0,Q.wb)({transform:"translate3d(100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,Q.aK)("* => left, * => right, left => center, right => center",(0,Q.Cs)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,Q.aK)("void => left-origin-center",[(0,Q.wb)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"}),(0,Q.Cs)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,Q.aK)("void => right-origin-center",[(0,Q.wb)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"}),(0,Q.Cs)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let U=(()=>{class Vt extends h.IP{constructor(We,nt,Ot,si){super(We,nt,si),this._host=Ot,this._centeringSub=b.wH.EMPTY,this._leavingSub=b.wH.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,Ge.W)(this._host._isCenterPosition(this._host._position))).subscribe(We=>{We&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.ce5),s.GI1(s.y8U),s.GI1((0,s.wd)(()=>Tt)),s.GI1(i.Ud))};static#t=this.\u0275dir=s.Sc5({type:Vt,selectors:[["","matTabBodyHost",""]],features:[s.eg9]})}return Vt})(),Fe=(()=>{class Vt{set position(We){this._positionIndex=We,this._computePositionAnimationState()}constructor(We,nt,Ot){this._elementRef=We,this._dir=nt,this._dirChangeSubscription=b.wH.EMPTY,this._translateTabComplete=new R.E,this._onCentering=new s._w7,this._beforeCentering=new s._w7,this._afterLeavingCenter=new s._w7,this._onCentered=new s._w7(!0),this.animationDuration="500ms",this.preserveContent=!1,nt&&(this._dirChangeSubscription=nt.change.subscribe(si=>{this._computePositionAnimationState(si),Ot.markForCheck()})),this._translateTabComplete.pipe((0,tt.a)((si,yi)=>si.fromState===yi.fromState&&si.toState===yi.toState)).subscribe(si=>{this._isCenterPosition(si.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(si.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(We){const nt=this._isCenterPosition(We.toState);this._beforeCentering.emit(nt),nt&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(We){return"center"==We||"left-origin-center"==We||"right-origin-center"==We}_computePositionAnimationState(We=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==We?"left":"right":this._positionIndex>0?"ltr"==We?"right":"left":"center"}_computePositionFromOrigin(We){const nt=this._getLayoutDirection();return"ltr"==nt&&We<=0||"rtl"==nt&&We>0?"left-origin-center":"right-origin-center"}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(g.yG,8),s.GI1(s.kD9))};static#t=this.\u0275dir=s.Sc5({type:Vt,inputs:{_content:[s.Wk5.None,"content","_content"],origin:"origin",animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"}})}return Vt})(),Tt=(()=>{class Vt extends Fe{constructor(We,nt,Ot){super(We,nt,Ot)}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(g.yG,8),s.GI1(s.kD9))};static#t=this.\u0275cmp=s.In1({type:Vt,selectors:[["mat-tab-body"]],viewQuery:function(nt,Ot){if(1&nt&&s.CC$(h.IP,5),2&nt){let si;s.wto(si=s.Gqi())&&(Ot._portalHost=si.first)}},hostAttrs:[1,"mat-mdc-tab-body"],features:[s.eg9],decls:3,vars:6,consts:[["cdkScrollable","",1,"mat-mdc-tab-body-content"],["content",""],["matTabBodyHost",""]],template:function(nt,Ot){1&nt&&(s.I0R(0,"div",0,1),s.qCj("@translateTab.start",function(yi){return Ot._onTranslateTabStarted(yi)})("@translateTab.done",function(yi){return Ot._translateTabComplete.next(yi)}),s.yuY(2,$e,0,0,"ng-template",2),s.C$Y()),2&nt&&s.E7m("@translateTab",s.IBC(3,ut,Ot._position,s.S45(1,oe,Ot.animationDuration)))},dependencies:[U],styles:['.mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-mdc-tab-body-content[style*="visibility: hidden"]{display:none}'],encapsulation:2,data:{animation:[N.translateTab]}})}return Vt})();const Ke=new s.UbH("MatTabContent");let Lt=(()=>{class Vt{constructor(We){this.template=We}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.Yw2))};static#t=this.\u0275dir=s.Sc5({type:Vt,selectors:[["","matTabContent",""]],features:[s.M5G([{provide:Ke,useExisting:Vt}])]})}return Vt})();const Kt=new s.UbH("MatTabLabel"),Ut=new s.UbH("MAT_TAB");let ni=(()=>{class Vt extends h.YT{constructor(We,nt,Ot){super(We,nt),this._closestTab=Ot}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.Yw2),s.GI1(s.y8U),s.GI1(Ut,8))};static#t=this.\u0275dir=s.Sc5({type:Vt,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[s.M5G([{provide:Kt,useExisting:Vt}]),s.eg9]})}return Vt})();const Mi="mdc-tab-indicator--active",wt="mdc-tab-indicator--no-transition";class zt{constructor(Ci){this._items=Ci}hide(){this._items.forEach(Ci=>Ci.deactivateInkBar())}alignToElement(Ci){const We=this._items.find(Ot=>Ot.elementRef.nativeElement===Ci),nt=this._currentItem;if(We!==nt&&(nt?.deactivateInkBar(),We)){const Ot=nt?.elementRef.nativeElement.getBoundingClientRect?.();We.activateInkBar(Ot),this._currentItem=We}}}function Dt(Vt){return class extends Vt{constructor(...Ci){super(...Ci),this._fitToContent=!1}get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(Ci){const We=(0,_e.W6)(Ci);this._fitToContent!==We&&(this._fitToContent=We,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(Ci){const We=this.elementRef.nativeElement;if(!Ci||!We.getBoundingClientRect||!this._inkBarContentElement)return void We.classList.add(Mi);const nt=We.getBoundingClientRect(),Ot=Ci.width/nt.width,si=Ci.left-nt.left;We.classList.add(wt),this._inkBarContentElement.style.setProperty("transform",`translateX(${si}px) scaleX(${Ot})`),We.getBoundingClientRect(),We.classList.remove(wt),We.classList.add(Mi),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this.elementRef.nativeElement.classList.remove(Mi)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const Ci=this.elementRef.nativeElement.ownerDocument||document;this._inkBarElement=Ci.createElement("span"),this._inkBarContentElement=Ci.createElement("span"),this._inkBarElement.className="mdc-tab-indicator",this._inkBarContentElement.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",this._inkBarElement.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this.elementRef.nativeElement.querySelector(".mdc-tab__content"):this.elementRef.nativeElement).appendChild(this._inkBarElement)}}}const at=(0,a.YB)(class{}),pt=Dt((()=>{class Vt extends at{constructor(We){super(),this.elementRef=We}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv))};static#t=this.\u0275dir=s.Sc5({type:Vt,features:[s.eg9]})}return Vt})());let le=(()=>{class Vt extends pt{static#e=this.\u0275fac=(()=>{let We;return function(Ot){return(We||(We=s.otF(Vt)))(Ot||Vt)}})();static#t=this.\u0275dir=s.Sc5({type:Vt,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(nt,Ot){2&nt&&(s.e48("aria-disabled",!!Ot.disabled),s.eAK("mat-mdc-tab-disabled",Ot.disabled))},inputs:{disabled:"disabled",fitInkBarToContent:"fitInkBarToContent"},features:[s.eg9]})}return Vt})();const xe=(0,a.YB)(class{}),Pe=new s.UbH("MAT_TAB_GROUP");let ht=(()=>{class Vt extends xe{get content(){return this._contentPortal}constructor(We,nt){super(),this._viewContainerRef=We,this._closestTabGroup=nt,this.textLabel="",this._contentPortal=null,this._stateChanges=new R.E,this.position=null,this.origin=null,this.isActive=!1}ngOnChanges(We){(We.hasOwnProperty("textLabel")||We.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new h.CC(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(We){We&&We._closestTab===this&&(this._templateLabel=We)}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.y8U),s.GI1(Pe,8))};static#t=this.\u0275dir=s.Sc5({type:Vt,viewQuery:function(nt,Ot){if(1&nt&&s.CC$(s.Yw2,7),2&nt){let si;s.wto(si=s.Gqi())&&(Ot._implicitContent=si.first)}},inputs:{textLabel:[s.Wk5.None,"label","textLabel"],ariaLabel:[s.Wk5.None,"aria-label","ariaLabel"],ariaLabelledby:[s.Wk5.None,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},features:[s.eg9,s.SYr]})}return Vt})(),Ht=(()=>{class Vt extends ht{constructor(){super(...arguments),this._explicitContent=void 0}get templateLabel(){return this._templateLabel}set templateLabel(We){this._setTemplateLabelInput(We)}static#e=this.\u0275fac=(()=>{let We;return function(Ot){return(We||(We=s.otF(Vt)))(Ot||Vt)}})();static#t=this.\u0275cmp=s.In1({type:Vt,selectors:[["mat-tab"]],contentQueries:function(nt,Ot,si){if(1&nt&&(s.szK(si,Lt,7,s.Yw2),s.szK(si,ni,5)),2&nt){let yi;s.wto(yi=s.Gqi())&&(Ot._explicitContent=yi.first),s.wto(yi=s.Gqi())&&(Ot.templateLabel=yi.first)}},inputs:{disabled:"disabled"},exportAs:["matTab"],features:[s.M5G([{provide:Ut,useExisting:Vt}]),s.eg9],ngContentSelectors:$t,decls:1,vars:0,template:function(nt,Ot){1&nt&&(s.kPM(),s.yuY(0,st,1,0,"ng-template"))},encapsulation:2})}return Vt})();const vt=(0,Re.W4)({passive:!0});let it=(()=>{class Vt{get disablePagination(){return this._disablePagination}set disablePagination(We){this._disablePagination=(0,_e.W6)(We)}get selectedIndex(){return this._selectedIndex}set selectedIndex(We){We=(0,_e.wZ)(We),this._selectedIndex!=We&&(this._selectedIndexChanged=!0,this._selectedIndex=We,this._keyManager&&this._keyManager.updateActiveItem(We))}constructor(We,nt,Ot,si,yi,Ti,Fi){this._elementRef=We,this._changeDetectorRef=nt,this._viewportRuler=Ot,this._dir=si,this._ngZone=yi,this._platform=Ti,this._animationMode=Fi,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new R.E,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new R.E,this._disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new s._w7,this.indexFocused=new s._w7,yi.runOutsideAngular(()=>{(0,Y.w)(We.nativeElement,"mouseleave").pipe((0,gt.a)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}ngAfterViewInit(){(0,Y.w)(this._previousPaginator.nativeElement,"touchstart",vt).pipe((0,gt.a)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,Y.w)(this._nextPaginator.nativeElement,"touchstart",vt).pipe((0,gt.a)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const We=this._dir?this._dir.change:(0,J.of)("ltr"),nt=this._viewportRuler.change(150),Ot=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new f.IH(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,Bt.U)(1)).subscribe(Ot),(0,ie.U)(We,nt,this._items.changes,this._itemsResized()).pipe((0,gt.a)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ot()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(si=>{this.indexFocused.emit(si),this._setTabFocus(si)})}_itemsResized(){return"function"!=typeof ResizeObserver?ae.k:this._items.changes.pipe((0,Ge.W)(this._items),(0,kt.G)(We=>new Ie._(nt=>this._ngZone.runOutsideAngular(()=>{const Ot=new ResizeObserver(si=>nt.next(si));return We.forEach(si=>Ot.observe(si.elementRef.nativeElement)),()=>{Ot.disconnect()}}))),(0,Ye.s)(1),(0,et.I)(We=>We.some(nt=>nt.contentRect.width>0&&nt.contentRect.height>0)))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(We){if(!(0,Xe.Yp)(We))switch(We.keyCode){case Xe.wJ:case Xe.Gi:if(this.focusIndex!==this.selectedIndex){const nt=this._items.get(this.focusIndex);nt&&!nt.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(We))}break;default:this._keyManager.onKeydown(We)}}_onContentChanges(){const We=this._elementRef.nativeElement.textContent;We!==this._currentTextContent&&(this._currentTextContent=We||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(We){!this._isValidIndex(We)||this.focusIndex===We||!this._keyManager||this._keyManager.setActiveItem(We)}_isValidIndex(We){return!this._items||!!this._items.toArray()[We]}_setTabFocus(We){if(this._showPaginationControls&&this._scrollToLabel(We),this._items&&this._items.length){this._items.toArray()[We].focus();const nt=this._tabListContainer.nativeElement;nt.scrollLeft="ltr"==this._getLayoutDirection()?0:nt.scrollWidth-nt.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const We=this.scrollDistance,nt="ltr"===this._getLayoutDirection()?-We:We;this._tabList.nativeElement.style.transform=`translateX(${Math.round(nt)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(We){this._scrollTo(We)}_scrollHeader(We){return this._scrollTo(this._scrollDistance+("before"==We?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(We){this._stopInterval(),this._scrollHeader(We)}_scrollToLabel(We){if(this.disablePagination)return;const nt=this._items?this._items.toArray()[We]:null;if(!nt)return;const Ot=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:si,offsetWidth:yi}=nt.elementRef.nativeElement;let Ti,Fi;"ltr"==this._getLayoutDirection()?(Ti=si,Fi=Ti+yi):(Fi=this._tabListInner.nativeElement.offsetWidth-si,Ti=Fi-yi);const hn=this.scrollDistance,an=this.scrollDistance+Ot;Tian&&(this.scrollDistance+=Math.min(Fi-an,Ti-hn))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const We=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;We||(this.scrollDistance=0),We!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=We}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const We=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,nt=We?We.elementRef.nativeElement:null;nt?this._inkBar.alignToElement(nt):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(We,nt){nt&&null!=nt.button&&0!==nt.button||(this._stopInterval(),(0,Ee.k)(650,100).pipe((0,gt.a)((0,ie.U)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Ot,distance:si}=this._scrollHeader(We);(0===si||si>=Ot)&&this._stopInterval()}))}_scrollTo(We){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const nt=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(nt,We)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:nt,distance:this._scrollDistance}}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(s.kD9),s.GI1(ye.S8),s.GI1(g.yG,8),s.GI1(s.WW2),s.GI1(Re.WU),s.GI1(s.qwP,8))};static#t=this.\u0275dir=s.Sc5({type:Vt,inputs:{disablePagination:"disablePagination"}})}return Vt})(),Et=(()=>{class Vt extends it{get disableRipple(){return this._disableRipple}set disableRipple(We){this._disableRipple=(0,_e.W6)(We)}constructor(We,nt,Ot,si,yi,Ti,Fi){super(We,nt,Ot,si,yi,Ti,Fi),this._disableRipple=!1}_itemSelected(We){We.preventDefault()}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(s.kD9),s.GI1(ye.S8),s.GI1(g.yG,8),s.GI1(s.WW2),s.GI1(Re.WU),s.GI1(s.qwP,8))};static#t=this.\u0275dir=s.Sc5({type:Vt,inputs:{disableRipple:"disableRipple"},features:[s.eg9]})}return Vt})(),ct=(()=>{class Vt extends Et{constructor(We,nt,Ot,si,yi,Ti,Fi){super(We,nt,Ot,si,yi,Ti,Fi)}ngAfterContentInit(){this._inkBar=new zt(this._items),super.ngAfterContentInit()}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(s.kD9),s.GI1(ye.S8),s.GI1(g.yG,8),s.GI1(s.WW2),s.GI1(Re.WU),s.GI1(s.qwP,8))};static#t=this.\u0275cmp=s.In1({type:Vt,selectors:[["mat-tab-header"]],contentQueries:function(nt,Ot,si){if(1&nt&&s.szK(si,le,4),2&nt){let yi;s.wto(yi=s.Gqi())&&(Ot._items=yi)}},viewQuery:function(nt,Ot){if(1&nt&&(s.CC$(oi,7),s.CC$(Jt,7),s.CC$(vi,7),s.CC$(je,5),s.CC$(De,5)),2&nt){let si;s.wto(si=s.Gqi())&&(Ot._tabListContainer=si.first),s.wto(si=s.Gqi())&&(Ot._tabList=si.first),s.wto(si=s.Gqi())&&(Ot._tabListInner=si.first),s.wto(si=s.Gqi())&&(Ot._nextPaginator=si.first),s.wto(si=s.Gqi())&&(Ot._previousPaginator=si.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(nt,Ot){2&nt&&s.eAK("mat-mdc-tab-header-pagination-controls-enabled",Ot._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==Ot._getLayoutDirection())},inputs:{selectedIndex:"selectedIndex"},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[s.eg9],ngContentSelectors:$t,decls:13,vars:10,consts:[["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"matRippleDisabled","disabled","click","mousedown","touchend"],["previousPaginator",""],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["tabListContainer",""],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],["tabList",""],[1,"mat-mdc-tab-labels"],["tabListInner",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"matRippleDisabled","disabled","mousedown","click","touchend"],["nextPaginator",""]],template:function(nt,Ot){1&nt&&(s.kPM(),s.I0R(0,"button",0,1),s.qCj("click",function(){return Ot._handlePaginatorClick("before")})("mousedown",function(yi){return Ot._handlePaginatorPress("before",yi)})("touchend",function(){return Ot._stopInterval()}),s.wR5(2,"div",2),s.C$Y(),s.I0R(3,"div",3,4),s.qCj("keydown",function(yi){return Ot._handleKeydown(yi)}),s.I0R(5,"div",5,6),s.qCj("cdkObserveContent",function(){return Ot._onContentChanges()}),s.I0R(7,"div",7,8),s._Xx(9),s.C$Y()()(),s.I0R(10,"button",9,10),s.qCj("mousedown",function(yi){return Ot._handlePaginatorPress("after",yi)})("click",function(){return Ot._handlePaginatorClick("after")})("touchend",function(){return Ot._stopInterval()}),s.wR5(12,"div",2),s.C$Y()),2&nt&&(s.eAK("mat-mdc-tab-header-pagination-disabled",Ot._disableScrollBefore),s.E7m("matRippleDisabled",Ot._disableScrollBefore||Ot.disableRipple)("disabled",Ot._disableScrollBefore||null),s.yG2(3),s.eAK("_mat-animation-noopable","NoopAnimations"===Ot._animationMode),s.yG2(7),s.eAK("mat-mdc-tab-header-pagination-disabled",Ot._disableScrollAfter),s.E7m("matRippleDisabled",Ot._disableScrollAfter||Ot.disableRipple)("disabled",Ot._disableScrollAfter||null))},dependencies:[a.UZ,l.Wk],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0;--mdc-tab-indicator-active-indicator-height:2px;--mdc-tab-indicator-active-indicator-shape:0;--mdc-secondary-navigation-tab-container-height:48px}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-header-pagination-icon-color)}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}._mat-animation-noopable span.mdc-tab-indicator__content,._mat-animation-noopable span.mdc-tab__text-label{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.mat-mdc-tab::before{margin:5px}.cdk-high-contrast-active .mat-mdc-tab[aria-disabled=true]{color:GrayText}"],encapsulation:2})}return Vt})();const ri=new s.UbH("MAT_TABS_CONFIG");let V=0;const Ce=(0,a.i)((0,a.bc)(class{constructor(Vt){this._elementRef=Vt}}),"primary");let _=(()=>{class Vt extends Ce{get dynamicHeight(){return this._dynamicHeight}set dynamicHeight(We){this._dynamicHeight=(0,_e.W6)(We)}get selectedIndex(){return this._selectedIndex}set selectedIndex(We){this._indexToSelect=(0,_e.wZ)(We,null)}get animationDuration(){return this._animationDuration}set animationDuration(We){this._animationDuration=/^\d+$/.test(We+"")?We+"ms":We}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(We){this._contentTabIndex=(0,_e.wZ)(We,null)}get disablePagination(){return this._disablePagination}set disablePagination(We){this._disablePagination=(0,_e.W6)(We)}get preserveContent(){return this._preserveContent}set preserveContent(We){this._preserveContent=(0,_e.W6)(We)}get backgroundColor(){return this._backgroundColor}set backgroundColor(We){const nt=this._elementRef.nativeElement.classList;nt.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),We&&nt.add("mat-tabs-with-background",`mat-background-${We}`),this._backgroundColor=We}constructor(We,nt,Ot,si){super(We),this._changeDetectorRef=nt,this._animationMode=si,this._tabs=new s.VhX,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=b.wH.EMPTY,this._tabLabelSubscription=b.wH.EMPTY,this._dynamicHeight=!1,this._selectedIndex=null,this.headerPosition="above",this._disablePagination=!1,this._preserveContent=!1,this.selectedIndexChange=new s._w7,this.focusChange=new s._w7,this.animationDone=new s._w7,this.selectedTabChange=new s._w7(!0),this._groupId=V++,this.animationDuration=Ot&&Ot.animationDuration?Ot.animationDuration:"500ms",this.disablePagination=!(!Ot||null==Ot.disablePagination)&&Ot.disablePagination,this.dynamicHeight=!(!Ot||null==Ot.dynamicHeight)&&Ot.dynamicHeight,this.contentTabIndex=Ot?.contentTabIndex??null,this.preserveContent=!!Ot?.preserveContent}ngAfterContentChecked(){const We=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=We){const nt=null==this._selectedIndex;if(!nt){this.selectedTabChange.emit(this._createChangeEvent(We));const Ot=this._tabBodyWrapper.nativeElement;Ot.style.minHeight=Ot.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Ot,si)=>Ot.isActive=si===We),nt||(this.selectedIndexChange.emit(We),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((nt,Ot)=>{nt.position=Ot-We,null!=this._selectedIndex&&0==nt.position&&!nt.origin&&(nt.origin=We-this._selectedIndex)}),this._selectedIndex!==We&&(this._selectedIndex=We,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const We=this._clampTabIndex(this._indexToSelect);if(We===this._selectedIndex){const nt=this._tabs.toArray();let Ot;for(let si=0;si{nt[We].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(We))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,Ge.W)(this._allTabs)).subscribe(We=>{this._tabs.reset(We.filter(nt=>nt._closestTabGroup===this||!nt._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(We){const nt=this._tabHeader;nt&&(nt.focusIndex=We)}_focusChanged(We){this._lastFocusedTabIndex=We,this.focusChange.emit(this._createChangeEvent(We))}_createChangeEvent(We){const nt=new S;return nt.index=We,this._tabs&&this._tabs.length&&(nt.tab=this._tabs.toArray()[We]),nt}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,ie.U)(...this._tabs.map(We=>We._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(We){return Math.min(this._tabs.length-1,Math.max(We||0,0))}_getTabLabelId(We){return`mat-tab-label-${this._groupId}-${We}`}_getTabContentId(We){return`mat-tab-content-${this._groupId}-${We}`}_setTabBodyWrapperHeight(We){if(!this._dynamicHeight||!this._tabBodyWrapperHeight)return;const nt=this._tabBodyWrapper.nativeElement;nt.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(nt.style.height=We+"px")}_removeTabBodyWrapperHeight(){const We=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=We.clientHeight,We.style.height="",this.animationDone.emit()}_handleClick(We,nt,Ot){nt.focusIndex=Ot,We.disabled||(this.selectedIndex=Ot)}_getTabIndex(We){return We===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(We,nt){We&&"mouse"!==We&&"touch"!==We&&(this._tabHeader.focusIndex=nt)}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(s.kD9),s.GI1(ri,8),s.GI1(s.qwP,8))};static#t=this.\u0275dir=s.Sc5({type:Vt,inputs:{dynamicHeight:"dynamicHeight",selectedIndex:"selectedIndex",headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:"contentTabIndex",disablePagination:"disablePagination",preserveContent:"preserveContent",backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},features:[s.eg9]})}return Vt})(),w=(()=>{class Vt extends _{get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(We){this._fitInkBarToContent=(0,_e.W6)(We),this._changeDetectorRef.markForCheck()}get stretchTabs(){return this._stretchTabs}set stretchTabs(We){this._stretchTabs=(0,_e.W6)(We)}constructor(We,nt,Ot,si){super(We,nt,Ot,si),this._fitInkBarToContent=!1,this._stretchTabs=!0,this.fitInkBarToContent=!(!Ot||null==Ot.fitInkBarToContent)&&Ot.fitInkBarToContent,this.stretchTabs=!Ot||null==Ot.stretchTabs||Ot.stretchTabs}static#e=this.\u0275fac=function(nt){return new(nt||Vt)(s.GI1(s.GMv),s.GI1(s.kD9),s.GI1(ri,8),s.GI1(s.qwP,8))};static#t=this.\u0275cmp=s.In1({type:Vt,selectors:[["mat-tab-group"]],contentQueries:function(nt,Ot,si){if(1&nt&&s.szK(si,Ht,5),2&nt){let yi;s.wto(yi=s.Gqi())&&(Ot._allTabs=yi)}},viewQuery:function(nt,Ot){if(1&nt&&(s.CC$(Le,5),s.CC$(Ve,5)),2&nt){let si;s.wto(si=s.Gqi())&&(Ot._tabBodyWrapper=si.first),s.wto(si=s.Gqi())&&(Ot._tabHeader=si.first)}},hostAttrs:["ngSkipHydration","",1,"mat-mdc-tab-group"],hostVars:8,hostBindings:function(nt,Ot){2&nt&&(s.m4B("--mat-tab-animation-duration",Ot.animationDuration),s.eAK("mat-mdc-tab-group-dynamic-height",Ot.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===Ot.headerPosition)("mat-mdc-tab-group-stretch-tabs",Ot.stretchTabs))},inputs:{color:"color",disableRipple:"disableRipple",fitInkBarToContent:"fitInkBarToContent",stretchTabs:[s.Wk5.None,"mat-stretch-tabs","stretchTabs"]},exportAs:["matTabGroup"],features:[s.M5G([{provide:Pe,useExisting:Vt}]),s.eg9],decls:6,vars:7,consts:[[3,"selectedIndex","disableRipple","disablePagination","indexFocused","selectFocusedIndex"],["tabHeader",""],["class","mdc-tab mat-mdc-tab mat-mdc-focus-indicator","role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",3,"id","mdc-tab--active","ngClass","disabled","fitInkBarToContent","click","cdkFocusChange",4,"ngFor","ngForOf"],[1,"mat-mdc-tab-body-wrapper"],["tabBodyWrapper",""],["role","tabpanel",3,"id","mat-mdc-tab-body-active","ngClass","content","position","origin","animationDuration","preserveContent","_onCentered","_onCentering",4,"ngFor","ngForOf"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"id","ngClass","disabled","fitInkBarToContent","click","cdkFocusChange"],["tabNode",""],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"ngIf","ngIfElse"],["tabTextLabel",""],[3,"cdkPortalOutlet"],["role","tabpanel",3,"id","ngClass","content","position","origin","animationDuration","preserveContent","_onCentered","_onCentering"]],template:function(nt,Ot){1&nt&&(s.I0R(0,"mat-tab-header",0,1),s.qCj("indexFocused",function(yi){return Ot._focusChanged(yi)})("selectFocusedIndex",function(yi){return Ot.selectedIndex=yi}),s.yuY(2,Ne,9,17,"div",2),s.C$Y(),s.I0R(3,"div",3,4),s.yuY(5,be,1,12,"mat-tab-body",5),s.C$Y()),2&nt&&(s.E7m("selectedIndex",Ot.selectedIndex||0)("disableRipple",Ot.disableRipple)("disablePagination",Ot.disablePagination),s.yG2(2),s.E7m("ngForOf",Ot._tabs),s.yG2(),s.eAK("_mat-animation-noopable","NoopAnimations"===Ot._animationMode),s.yG2(2),s.E7m("ngForOf",Ot._tabs))},dependencies:[i.QF,i.ay,i.u_,h.IP,a.UZ,f.Si,Tt,le,ct],styles:['.mdc-tab{min-width:90px;padding-right:24px;padding-left:24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;margin:0;padding-top:0;padding-bottom:0;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;-webkit-appearance:none;z-index:1}.mdc-tab::-moz-focus-inner{padding:0;border:0}.mdc-tab[hidden]{display:none}.mdc-tab--min-width{flex:0 1 auto}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab__icon{transition:150ms color linear;z-index:2}.mdc-tab--stacked .mdc-tab__content{flex-direction:column;align-items:center;justify-content:center}.mdc-tab--stacked .mdc-tab__text-label{padding-top:6px;padding-bottom:4px}.mdc-tab--active .mdc-tab__text-label,.mdc-tab--active .mdc-tab__icon{transition-delay:100ms}.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label{padding-left:8px;padding-right:0}[dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label,.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label[dir=rtl]{padding-left:0;padding-right:8px}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator__content--icon{align-self:center;margin:0 auto}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}.mdc-tab-indicator .mdc-tab-indicator__content{transition:250ms transform cubic-bezier(0.4, 0, 0.2, 1)}.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition:150ms opacity linear}.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition-delay:100ms}.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}'],encapsulation:2})}return Vt})();class S{}let Ei=(()=>{class Vt{static#e=this.\u0275fac=function(nt){return new(nt||Vt)};static#t=this.\u0275mod=s.a4G({type:Vt});static#i=this.\u0275inj=s.s3X({imports:[i.MD,a.AN,h.g$,a.KE,l.IT,f.Ux,a.AN]})}return Vt})()},964:(lt,me,d)=>{"use strict";d.d(me,{A9:()=>b,EZ:()=>R,Gm:()=>J});var i=d(2116),s=d(3576),a=d(5792),h=d(1368);const l=["*",[["mat-toolbar-row"]]],f=["*","mat-toolbar-row"],g=(0,s.i)(class{constructor(ie){this._elementRef=ie}});let b=(()=>{class ie{static#e=this.\u0275fac=function(Ee){return new(Ee||ie)};static#t=this.\u0275dir=i.Sc5({type:ie,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]})}return ie})(),R=(()=>{class ie extends g{constructor(Ie,Ee,Ge){super(Ie),this._platform=Ee,this._document=Ge}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static#e=this.\u0275fac=function(Ee){return new(Ee||ie)(i.GI1(i.GMv),i.GI1(a.WU),i.GI1(h.Ud))};static#t=this.\u0275cmp=i.In1({type:ie,selectors:[["mat-toolbar"]],contentQueries:function(Ee,Ge,tt){if(1&Ee&&i.szK(tt,b,5),2&Ee){let gt;i.wto(gt=i.Gqi())&&(Ge._toolbarRows=gt)}},hostAttrs:[1,"mat-toolbar"],hostVars:4,hostBindings:function(Ee,Ge){2&Ee&&i.eAK("mat-toolbar-multiple-rows",Ge._toolbarRows.length>0)("mat-toolbar-single-row",0===Ge._toolbarRows.length)},inputs:{color:"color"},exportAs:["matToolbar"],features:[i.eg9],ngContentSelectors:f,decls:2,vars:0,template:function(Ee,Ge){1&Ee&&(i.kPM(l),i._Xx(0),i._Xx(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color);color:var(--mat-toolbar-container-text-color)}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font);font-size:var(--mat-toolbar-title-text-size);line-height:var(--mat-toolbar-title-text-line-height);font-weight:var(--mat-toolbar-title-text-weight);letter-spacing:var(--mat-toolbar-title-text-tracking);margin:0}.cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mdc-text-button-label-text-color: inherit;--mdc-outlined-button-label-text-color: inherit}.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;height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height)}}"],encapsulation:2,changeDetection:0})}return ie})(),J=(()=>{class ie{static#e=this.\u0275fac=function(Ee){return new(Ee||ie)};static#t=this.\u0275mod=i.a4G({type:ie});static#i=this.\u0275inj=i.s3X({imports:[s.AN,s.AN]})}return ie})()},6496:(lt,me,d)=>{"use strict";d.d(me,{KO:()=>De,a4:()=>oi});var i=d(3616),s=d(3992),a=d(7712),h=d(7800),l=d(2116),f=d(1368),g=d(5792),b=d(4723),R=d(1900),Y=d(68),J=d(8408),ie=d(2488),ae=d(5657),Ee=(d(9684),d(3576));const Ge=["tooltip"],Bt=new l.UbH("mat-tooltip-scroll-strategy"),Ye={provide:Bt,deps:[Y.mc],useFactory:function kt(Le){return()=>Le.scrollStrategies.reposition({scrollThrottle:20})}},Q=new l.UbH("mat-tooltip-default-options",{providedIn:"root",factory:function et(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),ye="tooltip-panel",Re=(0,g.W4)({passive:!0});let $t=(()=>{class Le{get position(){return this._position}set position(te){te!==this._position&&(this._position=te,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(te){this._positionAtOrigin=(0,a.W6)(te),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(te){this._disabled=(0,a.W6)(te),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(te){this._showDelay=(0,a.wZ)(te)}get hideDelay(){return this._hideDelay}set hideDelay(te){this._hideDelay=(0,a.wZ)(te),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(te){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=te?String(te).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(te){this._tooltipClass=te,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}constructor(te,ge,xt,Ne,be,j,we,N,U,Fe,Tt,Ke){this._overlay=te,this._elementRef=ge,this._scrollDispatcher=xt,this._viewContainerRef=Ne,this._ngZone=be,this._platform=j,this._ariaDescriber=we,this._focusMonitor=N,this._dir=Fe,this._defaultOptions=Tt,this._position="below",this._positionAtOrigin=!1,this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._viewportMargin=8,this._cssClassPrefix="mat",this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new ae.E,this._scrollStrategy=U,this._document=Ke,Tt&&(this._showDelay=Tt.showDelay,this._hideDelay=Tt.hideDelay,Tt.position&&(this.position=Tt.position),Tt.positionAtOrigin&&(this.positionAtOrigin=Tt.positionAtOrigin),Tt.touchGestures&&(this.touchGestures=Tt.touchGestures)),Fe.change.pipe((0,i.a)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,i.a)(this._destroyed)).subscribe(te=>{te?"keyboard"===te&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const te=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([ge,xt])=>{te.removeEventListener(ge,xt,Re)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(te,this.message,"tooltip"),this._focusMonitor.stopMonitoring(te)}show(te=this.showDelay,ge){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const xt=this._createOverlay(ge);this._detach(),this._portal=this._portal||new ie.KC(this._tooltipComponent,this._viewContainerRef);const Ne=this._tooltipInstance=xt.attach(this._portal).instance;Ne._triggerElement=this._elementRef.nativeElement,Ne._mouseLeaveHideDelay=this._hideDelay,Ne.afterHidden().pipe((0,i.a)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),Ne.show(te)}hide(te=this.hideDelay){const ge=this._tooltipInstance;ge&&(ge.isVisible()?ge.hide(te):(ge._cancelPendingAnimations(),this._detach()))}toggle(te){this._isTooltipVisible()?this.hide():this.show(void 0,te)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(te){if(this._overlayRef){const Ne=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!te)&&Ne._origin instanceof l.GMv)return this._overlayRef;this._detach()}const ge=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),xt=this._overlay.position().flexibleConnectedTo(this.positionAtOrigin&&te||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(ge);return xt.positionChanges.pipe((0,i.a)(this._destroyed)).subscribe(Ne=>{this._updateCurrentPositionClass(Ne.connectionPair),this._tooltipInstance&&Ne.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:xt,panelClass:`${this._cssClassPrefix}-${ye}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,i.a)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,i.a)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,i.a)(this._destroyed)).subscribe(Ne=>{this._isTooltipVisible()&&Ne.keyCode===h.UX&&!(0,h.Yp)(Ne)&&(Ne.preventDefault(),Ne.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(te){const ge=te.getConfig().positionStrategy,xt=this._getOrigin(),Ne=this._getOverlayPosition();ge.withPositions([this._addOffset({...xt.main,...Ne.main}),this._addOffset({...xt.fallback,...Ne.fallback})])}_addOffset(te){return te}_getOrigin(){const te=!this._dir||"ltr"==this._dir.value,ge=this.position;let xt;"above"==ge||"below"==ge?xt={originX:"center",originY:"above"==ge?"top":"bottom"}:"before"==ge||"left"==ge&&te||"right"==ge&&!te?xt={originX:"start",originY:"center"}:("after"==ge||"right"==ge&&te||"left"==ge&&!te)&&(xt={originX:"end",originY:"center"});const{x:Ne,y:be}=this._invertPosition(xt.originX,xt.originY);return{main:xt,fallback:{originX:Ne,originY:be}}}_getOverlayPosition(){const te=!this._dir||"ltr"==this._dir.value,ge=this.position;let xt;"above"==ge?xt={overlayX:"center",overlayY:"bottom"}:"below"==ge?xt={overlayX:"center",overlayY:"top"}:"before"==ge||"left"==ge&&te||"right"==ge&&!te?xt={overlayX:"end",overlayY:"center"}:("after"==ge||"right"==ge&&te||"left"==ge&&!te)&&(xt={overlayX:"start",overlayY:"center"});const{x:Ne,y:be}=this._invertPosition(xt.overlayX,xt.overlayY);return{main:xt,fallback:{overlayX:Ne,overlayY:be}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,s.U)(1),(0,i.a)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(te){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=te,this._tooltipInstance._markForCheck())}_invertPosition(te,ge){return"above"===this.position||"below"===this.position?"top"===ge?ge="bottom":"bottom"===ge&&(ge="top"):"end"===te?te="start":"start"===te&&(te="end"),{x:te,y:ge}}_updateCurrentPositionClass(te){const{overlayY:ge,originX:xt,originY:Ne}=te;let be;if(be="center"===ge?this._dir&&"rtl"===this._dir.value?"end"===xt?"left":"right":"start"===xt?"left":"right":"bottom"===ge&&"top"===Ne?"above":"below",be!==this._currentPosition){const j=this._overlayRef;if(j){const we=`${this._cssClassPrefix}-${ye}-`;j.removePanelClass(we+this._currentPosition),j.addPanelClass(we+be)}this._currentPosition=be}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",te=>{let ge;this._setupPointerExitEventsIfNeeded(),void 0!==te.x&&void 0!==te.y&&(ge=te),this.show(void 0,ge)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",te=>{const ge=te.targetTouches?.[0],xt=ge?{x:ge.clientX,y:ge.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(void 0,xt),500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const te=[];if(this._platformSupportsMouseEvents())te.push(["mouseleave",ge=>{const xt=ge.relatedTarget;(!xt||!this._overlayRef?.overlayElement.contains(xt))&&this.hide()}],["wheel",ge=>this._wheelListener(ge)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const ge=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};te.push(["touchend",ge],["touchcancel",ge])}this._addListeners(te),this._passiveListeners.push(...te)}_addListeners(te){te.forEach(([ge,xt])=>{this._elementRef.nativeElement.addEventListener(ge,xt,Re)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(te){if(this._isTooltipVisible()){const ge=this._document.elementFromPoint(te.clientX,te.clientY),xt=this._elementRef.nativeElement;ge!==xt&&!xt.contains(ge)&&this.hide()}}_disableNativeGesturesIfNecessary(){const te=this.touchGestures;if("off"!==te){const ge=this._elementRef.nativeElement,xt=ge.style;("on"===te||"INPUT"!==ge.nodeName&&"TEXTAREA"!==ge.nodeName)&&(xt.userSelect=xt.msUserSelect=xt.webkitUserSelect=xt.MozUserSelect="none"),("on"===te||!ge.draggable)&&(xt.webkitUserDrag="none"),xt.touchAction="none",xt.webkitTapHighlightColor="transparent"}}static#e=this.\u0275fac=function(ge){l.KEo()};static#t=this.\u0275dir=l.Sc5({type:Le,inputs:{position:[l.Wk5.None,"matTooltipPosition","position"],positionAtOrigin:[l.Wk5.None,"matTooltipPositionAtOrigin","positionAtOrigin"],disabled:[l.Wk5.None,"matTooltipDisabled","disabled"],showDelay:[l.Wk5.None,"matTooltipShowDelay","showDelay"],hideDelay:[l.Wk5.None,"matTooltipHideDelay","hideDelay"],touchGestures:[l.Wk5.None,"matTooltipTouchGestures","touchGestures"],message:[l.Wk5.None,"matTooltip","message"],tooltipClass:[l.Wk5.None,"matTooltipClass","tooltipClass"]}})}return Le})(),oi=(()=>{class Le extends $t{constructor(te,ge,xt,Ne,be,j,we,N,U,Fe,Tt,Ke){super(te,ge,xt,Ne,be,j,we,N,U,Fe,Tt,Ke),this._tooltipComponent=vi,this._cssClassPrefix="mat-mdc",this._viewportMargin=8}_addOffset(te){const xt=!this._dir||"ltr"==this._dir.value;return"top"===te.originY?te.offsetY=-8:"bottom"===te.originY?te.offsetY=8:"start"===te.originX?te.offsetX=xt?-8:8:"end"===te.originX&&(te.offsetX=xt?8:-8),te}static#e=this.\u0275fac=function(ge){return new(ge||Le)(l.GI1(Y.mc),l.GI1(l.GMv),l.GI1(J.Yn),l.GI1(l.y8U),l.GI1(l.WW2),l.GI1(g.WU),l.GI1(b.o9),l.GI1(b.Kk),l.GI1(Bt),l.GI1(R.yG,8),l.GI1(Q,8),l.GI1(f.Ud))};static#t=this.\u0275dir=l.Sc5({type:Le,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(ge,xt){2&ge&&l.eAK("mat-mdc-tooltip-disabled",xt.disabled)},exportAs:["matTooltip"],features:[l.eg9]})}return Le})(),Jt=(()=>{class Le{constructor(te,ge){this._changeDetectorRef=te,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new ae.E,this._animationsDisabled="NoopAnimations"===ge}show(te){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},te)}hide(te){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},te)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:te}){(!te||!this._triggerElement.contains(te))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){}_handleAnimationEnd({animationName:te}){(te===this._showAnimation||te===this._hideAnimation)&&this._finalizeAnimation(te===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(te){te?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(te){const ge=this._tooltip.nativeElement,xt=this._showAnimation,Ne=this._hideAnimation;if(ge.classList.remove(te?Ne:xt),ge.classList.add(te?xt:Ne),this._isVisible=te,te&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const be=getComputedStyle(ge);("0s"===be.getPropertyValue("animation-duration")||"none"===be.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}te&&this._onShow(),this._animationsDisabled&&(ge.classList.add("_mat-animation-noopable"),this._finalizeAnimation(te))}static#e=this.\u0275fac=function(ge){return new(ge||Le)(l.GI1(l.kD9),l.GI1(l.qwP,8))};static#t=this.\u0275dir=l.Sc5({type:Le})}return Le})(),vi=(()=>{class Le extends Jt{constructor(te,ge,xt){super(te,xt),this._elementRef=ge,this._isMultiline=!1,this._showAnimation="mat-mdc-tooltip-show",this._hideAnimation="mat-mdc-tooltip-hide"}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const te=this._elementRef.nativeElement.getBoundingClientRect();return te.height>24&&te.width>=200}static#e=this.\u0275fac=function(ge){return new(ge||Le)(l.GI1(l.kD9),l.GI1(l.GMv),l.GI1(l.qwP,8))};static#t=this.\u0275cmp=l.In1({type:Le,selectors:[["mat-tooltip-component"]],viewQuery:function(ge,xt){if(1&ge&&l.CC$(Ge,7),2&ge){let Ne;l.wto(Ne=l.Gqi())&&(xt._tooltip=Ne.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(ge,xt){1&ge&&l.qCj("mouseleave",function(be){return xt._handleMouseLeave(be)}),2&ge&&l.m4B("zoom",xt.isVisible()?1:null)},features:[l.eg9],decls:4,vars:4,consts:[[1,"mdc-tooltip","mdc-tooltip--shown","mat-mdc-tooltip",3,"ngClass","animationend"],["tooltip",""],[1,"mdc-tooltip__surface","mdc-tooltip__surface-animation"]],template:function(ge,xt){1&ge&&(l.I0R(0,"div",0,1),l.qCj("animationend",function(be){return xt._handleAnimationEnd(be)}),l.I0R(2,"div",2),l.OEk(3),l.C$Y()()),2&ge&&(l.eAK("mdc-tooltip--multiline",xt._isMultiline),l.E7m("ngClass",xt.tooltipClass),l.yG2(3),l.cNF(xt.message))},dependencies:[f.QF],styles:['.mdc-tooltip__surface{word-break:break-all;word-break:var(--mdc-tooltip-word-break, normal);overflow-wrap:anywhere}.mdc-tooltip--showing-transition .mdc-tooltip__surface-animation{transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-tooltip--hide-transition .mdc-tooltip__surface-animation{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-tooltip{position:fixed;display:none;z-index:9}.mdc-tooltip-wrapper--rich{position:relative}.mdc-tooltip--shown,.mdc-tooltip--showing,.mdc-tooltip--hide{display:inline-flex}.mdc-tooltip--shown.mdc-tooltip--rich,.mdc-tooltip--showing.mdc-tooltip--rich,.mdc-tooltip--hide.mdc-tooltip--rich{display:inline-block;left:-320px;position:absolute}.mdc-tooltip__surface{line-height:16px;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center}.mdc-tooltip__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-tooltip__surface::before{border-color:CanvasText}}.mdc-tooltip--rich .mdc-tooltip__surface{align-items:flex-start;display:flex;flex-direction:column;min-height:24px;min-width:40px;max-width:320px;position:relative}.mdc-tooltip--multiline .mdc-tooltip__surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface,.mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl]{text-align:right}.mdc-tooltip__surface .mdc-tooltip__title{margin:0 8px}.mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(200px - (2 * 8px));margin:8px;text-align:left}[dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content,.mdc-tooltip__surface .mdc-tooltip__content[dir=rtl]{text-align:right}.mdc-tooltip--rich .mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(320px - (2 * 8px));align-self:stretch}.mdc-tooltip__surface .mdc-tooltip__content-link{text-decoration:none}.mdc-tooltip--rich-actions,.mdc-tooltip__content,.mdc-tooltip__title{z-index:1}.mdc-tooltip__surface-animation{opacity:0;transform:scale(0.8);will-change:transform,opacity}.mdc-tooltip--shown .mdc-tooltip__surface-animation{transform:scale(1);opacity:1}.mdc-tooltip--hide .mdc-tooltip__surface-animation{transform:scale(1)}.mdc-tooltip__caret-surface-top,.mdc-tooltip__caret-surface-bottom{position:absolute;height:24px;width:24px;transform:rotate(35deg) skewY(20deg) scaleX(0.9396926208)}.mdc-tooltip__caret-surface-top .mdc-elevation-overlay,.mdc-tooltip__caret-surface-bottom .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-tooltip__caret-surface-bottom{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);outline:1px solid rgba(0,0,0,0);z-index:-1}@media screen and (forced-colors: active){.mdc-tooltip__caret-surface-bottom{outline-color:CanvasText}}.mat-mdc-tooltip{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}.mat-mdc-tooltip .mdc-tooltip__surface{background-color:var(--mdc-plain-tooltip-container-color)}.mat-mdc-tooltip .mdc-tooltip__surface{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__caret-surface-top,.mat-mdc-tooltip .mdc-tooltip__caret-surface-bottom{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__surface{color:var(--mdc-plain-tooltip-supporting-text-color)}.mat-mdc-tooltip .mdc-tooltip__surface{font-family:var(--mdc-plain-tooltip-supporting-text-font);line-height:var(--mdc-plain-tooltip-supporting-text-line-height);font-size:var(--mdc-plain-tooltip-supporting-text-size);font-weight:var(--mdc-plain-tooltip-supporting-text-weight);letter-spacing:var(--mdc-plain-tooltip-supporting-text-tracking)}.mat-mdc-tooltip{position:relative;transform:scale(0)}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}'],encapsulation:2,changeDetection:0})}return Le})(),De=(()=>{class Le{static#e=this.\u0275fac=function(ge){return new(ge||Le)};static#t=this.\u0275mod=l.a4G({type:Le});static#i=this.\u0275inj=l.s3X({providers:[Ye],imports:[b.Ux,f.MD,Y.Y1,Ee.AN,Ee.AN,J.uU]})}return Le})()},4476:(lt,me,d)=>{"use strict";d.d(me,{OY:()=>Kt,iE:()=>Tt,mI:()=>ht,o_:()=>we,q:()=>ye});var i=d(2116),s=d(1368);class a extends s.mg{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class h extends a{static makeCurrent(){(0,s.ug)(new h)}onAndCancel(w,S,$){return w.addEventListener(S,$),()=>{w.removeEventListener(S,$)}}dispatchEvent(w,S){w.dispatchEvent(S)}remove(w){w.parentNode&&w.parentNode.removeChild(w)}createElement(w,S){return(S=S||this.getDefaultDocument()).createElement(w)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(w){return w.nodeType===Node.ELEMENT_NODE}isShadowRoot(w){return w instanceof DocumentFragment}getGlobalEventTarget(w,S){return"window"===S?window:"document"===S?w:"body"===S?w.body:null}getBaseHref(w){const S=function f(){return l=l||document.querySelector("base"),l?l.getAttribute("href"):null}();return null==S?null:function g(_){return new URL(_,document.baseURI).pathname}(S)}resetBaseElement(){l=null}getUserAgent(){return window.navigator.userAgent}getCookie(w){return(0,s.Sg)(document.cookie,w)}}let l=null,R=(()=>{class _{build(){return new XMLHttpRequest}static#e=this.\u0275fac=function($){return new($||_)};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac})}return _})();const Y=new i.UbH("");let J=(()=>{class _{constructor(S,$){this._zone=$,this._eventNameToPlugin=new Map,S.forEach(ze=>{ze.manager=this}),this._plugins=S.slice().reverse()}addEventListener(S,$,ze){return this._findPluginFor($).addEventListener(S,$,ze)}getZone(){return this._zone}_findPluginFor(S){let $=this._eventNameToPlugin.get(S);if($)return $;if($=this._plugins.find(At=>At.supports(S)),!$)throw new i.OBp(5101,!1);return this._eventNameToPlugin.set(S,$),$}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(Y),i.CoB(i.WW2))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac})}return _})();class ie{constructor(w){this._doc=w}}const ae="ng-app-id";let Ie=(()=>{class _{constructor(S,$,ze,At={}){this.doc=S,this.appId=$,this.nonce=ze,this.platformId=At,this.styleRef=new Map,this.hostNodes=new Set,this.styleNodesInDOM=this.collectServerRenderedStyles(),this.platformIsServer=(0,s.uf)(At),this.resetHostNodes()}addStyles(S){for(const $ of S)1===this.changeUsageCount($,1)&&this.onStyleAdded($)}removeStyles(S){for(const $ of S)this.changeUsageCount($,-1)<=0&&this.onStyleRemoved($)}ngOnDestroy(){const S=this.styleNodesInDOM;S&&(S.forEach($=>$.remove()),S.clear());for(const $ of this.getAllStyles())this.onStyleRemoved($);this.resetHostNodes()}addHost(S){this.hostNodes.add(S);for(const $ of this.getAllStyles())this.addStyleToHost(S,$)}removeHost(S){this.hostNodes.delete(S)}getAllStyles(){return this.styleRef.keys()}onStyleAdded(S){for(const $ of this.hostNodes)this.addStyleToHost($,S)}onStyleRemoved(S){const $=this.styleRef;$.get(S)?.elements?.forEach(ze=>ze.remove()),$.delete(S)}collectServerRenderedStyles(){const S=this.doc.head?.querySelectorAll(`style[${ae}="${this.appId}"]`);if(S?.length){const $=new Map;return S.forEach(ze=>{null!=ze.textContent&&$.set(ze.textContent,ze)}),$}return null}changeUsageCount(S,$){const ze=this.styleRef;if(ze.has(S)){const At=ze.get(S);return At.usage+=$,At.usage}return ze.set(S,{usage:$,elements:[]}),$}getStyleElement(S,$){const ze=this.styleNodesInDOM,At=ze?.get($);if(At?.parentNode===S)return ze.delete($),At.removeAttribute(ae),At;{const bt=this.doc.createElement("style");return this.nonce&&bt.setAttribute("nonce",this.nonce),bt.textContent=$,this.platformIsServer&&bt.setAttribute(ae,this.appId),S.appendChild(bt),bt}}addStyleToHost(S,$){const ze=this.getStyleElement(S,$),At=this.styleRef,bt=At.get($)?.elements;bt?bt.push(ze):At.set($,{elements:[ze],usage:1})}resetHostNodes(){const S=this.hostNodes;S.clear(),S.add(this.doc.head)}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(s.Ud),i.CoB(i.QHP),i.CoB(i.YND,8),i.CoB(i.AHE))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac})}return _})();const Ee={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/",math:"http://www.w3.org/1998/MathML/"},Ge=/%COMP%/g,Ye=new i.UbH("",{providedIn:"root",factory:()=>!0});function _e(_,w){return w.map(S=>S.replace(Ge,_))}let ye=(()=>{class _{constructor(S,$,ze,At,bt,yt,Ue,Ft=null){this.eventManager=S,this.sharedStylesHost=$,this.appId=ze,this.removeStylesOnCompDestroy=At,this.doc=bt,this.platformId=yt,this.ngZone=Ue,this.nonce=Ft,this.rendererByCompId=new Map,this.platformIsServer=(0,s.uf)(yt),this.defaultRenderer=new Re(S,bt,Ue,this.platformIsServer)}createRenderer(S,$){if(!S||!$)return this.defaultRenderer;this.platformIsServer&&$.encapsulation===i.K6R.ShadowDom&&($={...$,encapsulation:i.K6R.Emulated});const ze=this.getOrCreateRenderer(S,$);return ze instanceof $t?ze.applyToHost(S):ze instanceof st&&ze.applyStyles(),ze}getOrCreateRenderer(S,$){const ze=this.rendererByCompId;let At=ze.get($.id);if(!At){const bt=this.doc,yt=this.ngZone,Ue=this.eventManager,Ft=this.sharedStylesHost,di=this.removeStylesOnCompDestroy,Ei=this.platformIsServer;switch($.encapsulation){case i.K6R.Emulated:At=new $t(Ue,Ft,$,this.appId,di,bt,yt,Ei);break;case i.K6R.ShadowDom:return new ut(Ue,Ft,S,$,bt,yt,this.nonce,Ei);default:At=new st(Ue,Ft,$,di,bt,yt,Ei)}ze.set($.id,At)}return At}ngOnDestroy(){this.rendererByCompId.clear()}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(J),i.CoB(Ie),i.CoB(i.QHP),i.CoB(Ye),i.CoB(s.Ud),i.CoB(i.AHE),i.CoB(i.WW2),i.CoB(i.YND))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac})}return _})();class Re{constructor(w,S,$,ze){this.eventManager=w,this.doc=S,this.ngZone=$,this.platformIsServer=ze,this.data=Object.create(null),this.throwOnSyntheticProps=!0,this.destroyNode=null}destroy(){}createElement(w,S){return S?this.doc.createElementNS(Ee[S]||S,w):this.doc.createElement(w)}createComment(w){return this.doc.createComment(w)}createText(w){return this.doc.createTextNode(w)}appendChild(w,S){(oe(w)?w.content:w).appendChild(S)}insertBefore(w,S,$){w&&(oe(w)?w.content:w).insertBefore(S,$)}removeChild(w,S){w&&w.removeChild(S)}selectRootElement(w,S){let $="string"==typeof w?this.doc.querySelector(w):w;if(!$)throw new i.OBp(-5104,!1);return S||($.textContent=""),$}parentNode(w){return w.parentNode}nextSibling(w){return w.nextSibling}setAttribute(w,S,$,ze){if(ze){S=ze+":"+S;const At=Ee[ze];At?w.setAttributeNS(At,S,$):w.setAttribute(S,$)}else w.setAttribute(S,$)}removeAttribute(w,S,$){if($){const ze=Ee[$];ze?w.removeAttributeNS(ze,S):w.removeAttribute(`${$}:${S}`)}else w.removeAttribute(S)}addClass(w,S){w.classList.add(S)}removeClass(w,S){w.classList.remove(S)}setStyle(w,S,$,ze){ze&(i.yzm.DashCase|i.yzm.Important)?w.style.setProperty(S,$,ze&i.yzm.Important?"important":""):w.style[S]=$}removeStyle(w,S,$){$&i.yzm.DashCase?w.style.removeProperty(S):w.style[S]=""}setProperty(w,S,$){null!=w&&(w[S]=$)}setValue(w,S){w.nodeValue=S}listen(w,S,$){if("string"==typeof w&&!(w=(0,s.uy)().getGlobalEventTarget(this.doc,w)))throw new Error(`Unsupported event target ${w} for event ${S}`);return this.eventManager.addEventListener(w,S,this.decoratePreventDefault($))}decoratePreventDefault(w){return S=>{if("__ngUnwrap__"===S)return w;!1===(this.platformIsServer?this.ngZone.runGuarded(()=>w(S)):w(S))&&S.preventDefault()}}}function oe(_){return"TEMPLATE"===_.tagName&&void 0!==_.content}class ut extends Re{constructor(w,S,$,ze,At,bt,yt,Ue){super(w,At,bt,Ue),this.sharedStylesHost=S,this.hostEl=$,this.shadowRoot=$.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const Ft=_e(ze.id,ze.styles);for(const di of Ft){const Ei=document.createElement("style");yt&&Ei.setAttribute("nonce",yt),Ei.textContent=di,this.shadowRoot.appendChild(Ei)}}nodeOrShadowRoot(w){return w===this.hostEl?this.shadowRoot:w}appendChild(w,S){return super.appendChild(this.nodeOrShadowRoot(w),S)}insertBefore(w,S,$){return super.insertBefore(this.nodeOrShadowRoot(w),S,$)}removeChild(w,S){return super.removeChild(this.nodeOrShadowRoot(w),S)}parentNode(w){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(w)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class st extends Re{constructor(w,S,$,ze,At,bt,yt,Ue){super(w,At,bt,yt),this.sharedStylesHost=S,this.removeStylesOnCompDestroy=ze,this.styles=Ue?_e(Ue,$.styles):$.styles}applyStyles(){this.sharedStylesHost.addStyles(this.styles)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles)}}class $t extends st{constructor(w,S,$,ze,At,bt,yt,Ue){const Ft=ze+"-"+$.id;super(w,S,$,At,bt,yt,Ue,Ft),this.contentAttr=function et(_){return"_ngcontent-%COMP%".replace(Ge,_)}(Ft),this.hostAttr=function Q(_){return"_nghost-%COMP%".replace(Ge,_)}(Ft)}applyToHost(w){this.applyStyles(),this.setAttribute(w,this.hostAttr,"")}createElement(w,S){const $=super.createElement(w,S);return super.setAttribute($,this.contentAttr,""),$}}let oi=(()=>{class _ extends ie{constructor(S){super(S)}supports(S){return!0}addEventListener(S,$,ze){return S.addEventListener($,ze,!1),()=>this.removeEventListener(S,$,ze)}removeEventListener(S,$,ze){return S.removeEventListener($,ze)}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(s.Ud))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac})}return _})();const Jt=["alt","control","meta","shift"],vi={"\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"},je={alt:_=>_.altKey,control:_=>_.ctrlKey,meta:_=>_.metaKey,shift:_=>_.shiftKey};let De=(()=>{class _ extends ie{constructor(S){super(S)}supports(S){return null!=_.parseEventName(S)}addEventListener(S,$,ze){const At=_.parseEventName($),bt=_.eventCallback(At.fullKey,ze,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,s.uy)().onAndCancel(S,At.domEventName,bt))}static parseEventName(S){const $=S.toLowerCase().split("."),ze=$.shift();if(0===$.length||"keydown"!==ze&&"keyup"!==ze)return null;const At=_._normalizeKey($.pop());let bt="",yt=$.indexOf("code");if(yt>-1&&($.splice(yt,1),bt="code."),Jt.forEach(Ft=>{const di=$.indexOf(Ft);di>-1&&($.splice(di,1),bt+=Ft+".")}),bt+=At,0!=$.length||0===At.length)return null;const Ue={};return Ue.domEventName=ze,Ue.fullKey=bt,Ue}static matchEventFullKeyCode(S,$){let ze=vi[S.key]||S.key,At="";return $.indexOf("code.")>-1&&(ze=S.code,At="code."),!(null==ze||!ze)&&(ze=ze.toLowerCase()," "===ze?ze="space":"."===ze&&(ze="dot"),Jt.forEach(bt=>{bt!==ze&&(0,je[bt])(S)&&(At+=bt+".")}),At+=ze,At===$)}static eventCallback(S,$,ze){return At=>{_.matchEventFullKeyCode(At,S)&&ze.runGuarded(()=>$(At))}}static _normalizeKey(S){return"esc"===S?"escape":S}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(s.Ud))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac})}return _})();const we=(0,i.grM)(i.m4O,"browser",[{provide:i.AHE,useValue:s._k},{provide:i.crf,useValue:function xt(){h.makeCurrent()},multi:!0},{provide:s.Ud,useFactory:function be(){return(0,i.auf)(document),document},deps:[]}]),N=new i.UbH(""),U=[{provide:i.Mn9,useClass:class b{addToWindow(w){i.IHs.getAngularTestability=($,ze=!0)=>{const At=w.findTestabilityInTree($,ze);if(null==At)throw new i.OBp(5103,!1);return At},i.IHs.getAllAngularTestabilities=()=>w.getAllTestabilities(),i.IHs.getAllAngularRootElements=()=>w.getAllRootElements(),i.IHs.frameworkStabilizers||(i.IHs.frameworkStabilizers=[]),i.IHs.frameworkStabilizers.push($=>{const ze=i.IHs.getAllAngularTestabilities();let At=ze.length;const bt=function(){At--,0==At&&$()};ze.forEach(yt=>{yt.whenStable(bt)})})}findTestabilityInTree(w,S,$){return null==S?null:w.getTestability(S)??($?(0,s.uy)().isShadowRoot(S)?this.findTestabilityInTree(w,S.host,!0):this.findTestabilityInTree(w,S.parentElement,!0):null)}},deps:[]},{provide:i.aS5,useClass:i.G4X,deps:[i.WW2,i.eOv,i.Mn9]},{provide:i.G4X,useClass:i.G4X,deps:[i.WW2,i.eOv,i.Mn9]}],Fe=[{provide:i.i4S,useValue:"root"},{provide:i.eAe,useFactory:function Ne(){return new i.eAe},deps:[]},{provide:Y,useClass:oi,multi:!0,deps:[s.Ud,i.WW2,i.AHE]},{provide:Y,useClass:De,multi:!0,deps:[s.Ud]},ye,Ie,J,{provide:i.O8F,useExisting:ye},{provide:s.OM,useClass:R,deps:[]},[]];let Tt=(()=>{class _{constructor(S){}static withServerTransition(S){return{ngModule:_,providers:[{provide:i.QHP,useValue:S.appId}]}}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(N,12))};static#t=this.\u0275mod=i.a4G({type:_});static#i=this.\u0275inj=i.s3X({providers:[...Fe,...U],imports:[s.MD,i.Ev2]})}return _})(),Kt=(()=>{class _{constructor(S){this._doc=S}getTitle(){return this._doc.title}setTitle(S){this._doc.title=S||""}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(s.Ud))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac,providedIn:"root"})}return _})(),ht=(()=>{class _{static#e=this.\u0275fac=function($){return new($||_)};static#t=this.\u0275prov=i.wxM({token:_,factory:function($){let ze=null;return ze=$?new($||_):i.CoB(Ht),ze},providedIn:"root"})}return _})(),Ht=(()=>{class _ extends ht{constructor(S){super(),this._doc=S}sanitize(S,$){if(null==$)return null;switch(S){case i.SI6.NONE:return $;case i.SI6.HTML:return(0,i.K2p)($,"HTML")?(0,i.E2t)($):(0,i.Om8)(this._doc,String($)).toString();case i.SI6.STYLE:return(0,i.K2p)($,"Style")?(0,i.E2t)($):$;case i.SI6.SCRIPT:if((0,i.K2p)($,"Script"))return(0,i.E2t)($);throw new i.OBp(5200,!1);case i.SI6.URL:return(0,i.K2p)($,"URL")?(0,i.E2t)($):(0,i.ozE)(String($));case i.SI6.RESOURCE_URL:if((0,i.K2p)($,"ResourceURL"))return(0,i.E2t)($);throw new i.OBp(5201,!1);default:throw new i.OBp(5202,!1)}}bypassSecurityTrustHtml(S){return(0,i.GM_)(S)}bypassSecurityTrustStyle(S){return(0,i.Vfw)(S)}bypassSecurityTrustScript(S){return(0,i.ER9)(S)}bypassSecurityTrustUrl(S){return(0,i.Gc)(S)}bypassSecurityTrustResourceUrl(S){return(0,i.u8n)(S)}static#e=this.\u0275fac=function($){return new($||_)(i.CoB(s.Ud))};static#t=this.\u0275prov=i.wxM({token:_,factory:_.\u0275fac,providedIn:"root"})}return _})()},2992:(lt,me,d)=>{"use strict";d.d(me,{gV:()=>Un,E5:()=>Qn,ER:()=>vr,LC:()=>vn,qQ:()=>ul,cP:()=>aa});var i=d(2116),s=d(1116),a=d(4496),h=d(2700),l=d(6700),f=d(6040);const b=(0,d(4912).w)(y=>function(){y(this),this.name="EmptyError",this.message="no elements in sequence"});var R=d(7228),Y=d(1424),J=d(3928),ie=d(3800),ae=d(8960),Ie=d(2376),Ee=d(5657),Ge=d(6928),tt=d(1368),gt=d(4704),Bt=d(7368),kt=d(3992),Ye=d(5568),et=d(6684),Q=d(7400),_e=d(5448),ye=d(7773);function Re(y){return(0,_e.i)((O,C)=>{let T=!1;O.subscribe((0,ye.e)(C,X=>{T=!0,C.next(X)},()=>{T||C.next(y),C.complete()}))})}function Xe(y=$e){return(0,_e.i)((O,C)=>{let T=!1;O.subscribe((0,ye.e)(C,X=>{T=!0,C.next(X)},()=>T?C.complete():C.error(y())))})}function $e(){return new b}var oe=d(528);function ut(y,O){const C=arguments.length>=2;return T=>T.pipe(y?(0,et.I)((X,Se)=>y(X,Se,T)):oe.Z,(0,kt.U)(1),C?Re(O):Xe(()=>new b))}var st=d(3639),$t=d(9212),oi=d(9144);function je(y){return y<=0?()=>ae.k:(0,_e.i)((O,C)=>{let T=[];O.subscribe((0,ye.e)(C,X=>{T.push(X),y{for(const X of T)C.next(X);C.complete()},void 0,()=>{T=null}))})}var Le=d(320),Ve=d(8824),te=d(5704),ge=d(3616),xt=d(267),Ne=d(4476);const be="primary",j=Symbol("RouteTitle");class we{constructor(O){this.params=O||{}}has(O){return Object.prototype.hasOwnProperty.call(this.params,O)}get(O){if(this.has(O)){const C=this.params[O];return Array.isArray(C)?C[0]:C}return null}getAll(O){if(this.has(O)){const C=this.params[O];return Array.isArray(C)?C:[C]}return[]}get keys(){return Object.keys(this.params)}}function N(y){return new we(y)}function U(y,O,C){const T=C.path.split("/");if(T.length>y.length||"full"===C.pathMatch&&(O.hasChildren()||T.lengthT[Se]===X)}return y===O}function Kt(y){return y.length>0?y[y.length-1]:null}function Ut(y){return(0,s.X)(y)?y:(0,i.w5$)(y)?(0,a.Q)(Promise.resolve(y)):(0,h.of)(y)}const ni={exact:function Dt(y,O,C){if(!ht(y.segments,O.segments)||!Ze(y.segments,O.segments,C)||y.numberOfChildren!==O.numberOfChildren)return!1;for(const T in O.children)if(!y.children[T]||!Dt(y.children[T],O.children[T],C))return!1;return!0},subset:Te},Mi={exact:function zt(y,O){return Tt(y,O)},subset:function ve(y,O){return Object.keys(O).length<=Object.keys(y).length&&Object.keys(O).every(C=>Lt(y[C],O[C]))},ignored:()=>!0};function wt(y,O,C){return ni[C.paths](y.root,O.root,C.matrixParams)&&Mi[C.queryParams](y.queryParams,O.queryParams)&&!("exact"===C.fragment&&y.fragment!==O.fragment)}function Te(y,O,C){return at(y,O,O.segments,C)}function at(y,O,C,T){if(y.segments.length>C.length){const X=y.segments.slice(0,C.length);return!(!ht(X,C)||O.hasChildren()||!Ze(X,C,T))}if(y.segments.length===C.length){if(!ht(y.segments,C)||!Ze(y.segments,C,T))return!1;for(const X in O.children)if(!y.children[X]||!Te(y.children[X],O.children[X],T))return!1;return!0}{const X=C.slice(0,y.segments.length),Se=C.slice(y.segments.length);return!!(ht(y.segments,X)&&Ze(y.segments,X,T)&&y.children[be])&&at(y.children[be],O,Se,T)}}function Ze(y,O,C){return O.every((T,X)=>Mi[C](y[X].parameters,T.parameters))}class pt{constructor(O=new le([],{}),C={},T=null){this.root=O,this.queryParams=C,this.fragment=T}get queryParamMap(){return this._queryParamMap??=N(this.queryParams),this._queryParamMap}toString(){return fe.serialize(this)}}class le{constructor(O,C){this.segments=O,this.children=C,this.parent=null,Object.values(C).forEach(T=>T.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return it(this)}}class xe{constructor(O,C){this.path=O,this.parameters=C}get parameterMap(){return this._parameterMap??=N(this.parameters),this._parameterMap}toString(){return S(this)}}function ht(y,O){return y.length===O.length&&y.every((C,T)=>C.path===O[T].path)}let vt=(()=>{class y{static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:()=>new Mt,providedIn:"root"})}return y})();class Mt{parse(O){const C=new Ci(O);return new pt(C.parseRootSegment(),C.parseQueryParams(),C.parseFragment())}serialize(O){const C=`/${Et(O.root,!0)}`,T=function ze(y){const O=Object.entries(y).map(([C,T])=>Array.isArray(T)?T.map(X=>`${ri(C)}=${ri(X)}`).join("&"):`${ri(C)}=${ri(T)}`).filter(C=>C);return O.length?`?${O.join("&")}`:""}(O.queryParams);return`${C}${T}${"string"==typeof O.fragment?`#${function V(y){return encodeURI(y)}(O.fragment)}`:""}`}}const fe=new Mt;function it(y){return y.segments.map(O=>S(O)).join("/")}function Et(y,O){if(!y.hasChildren())return it(y);if(O){const C=y.children[be]?Et(y.children[be],!1):"",T=[];return Object.entries(y.children).forEach(([X,Se])=>{X!==be&&T.push(`${X}:${Et(Se,!1)}`)}),T.length>0?`${C}(${T.join("//")})`:C}{const C=function Ht(y,O){let C=[];return Object.entries(y.children).forEach(([T,X])=>{T===be&&(C=C.concat(O(X,T)))}),Object.entries(y.children).forEach(([T,X])=>{T!==be&&(C=C.concat(O(X,T)))}),C}(y,(T,X)=>X===be?[Et(y.children[be],!1)]:[`${X}:${Et(T,!1)}`]);return 1===Object.keys(y.children).length&&null!=y.children[be]?`${it(y)}/${C[0]}`:`${it(y)}/(${C.join("//")})`}}function ct(y){return encodeURIComponent(y).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function ri(y){return ct(y).replace(/%3B/gi,";")}function Ce(y){return ct(y).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function _(y){return decodeURIComponent(y)}function w(y){return _(y.replace(/\+/g,"%20"))}function S(y){return`${Ce(y.path)}${function $(y){return Object.entries(y).map(([O,C])=>`;${Ce(O)}=${Ce(C)}`).join("")}(y.parameters)}`}const At=/^[^\/()?;#]+/;function bt(y){const O=y.match(At);return O?O[0]:""}const yt=/^[^\/()?;=#]+/,Ft=/^[^=?&#]+/,Ei=/^[^&#]+/;class Ci{constructor(O){this.url=O,this.remaining=O}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new le([],{}):new le([],this.parseChildren())}parseQueryParams(){const O={};if(this.consumeOptional("?"))do{this.parseQueryParam(O)}while(this.consumeOptional("&"));return O}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const O=[];for(this.peekStartsWith("(")||O.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),O.push(this.parseSegment());let C={};this.peekStartsWith("/(")&&(this.capture("/"),C=this.parseParens(!0));let T={};return this.peekStartsWith("(")&&(T=this.parseParens(!1)),(O.length>0||Object.keys(C).length>0)&&(T[be]=new le(O,C)),T}parseSegment(){const O=bt(this.remaining);if(""===O&&this.peekStartsWith(";"))throw new i.OBp(4009,!1);return this.capture(O),new xe(_(O),this.parseMatrixParams())}parseMatrixParams(){const O={};for(;this.consumeOptional(";");)this.parseParam(O);return O}parseParam(O){const C=function Ue(y){const O=y.match(yt);return O?O[0]:""}(this.remaining);if(!C)return;this.capture(C);let T="";if(this.consumeOptional("=")){const X=bt(this.remaining);X&&(T=X,this.capture(T))}O[_(C)]=_(T)}parseQueryParam(O){const C=function di(y){const O=y.match(Ft);return O?O[0]:""}(this.remaining);if(!C)return;this.capture(C);let T="";if(this.consumeOptional("=")){const rt=function Vt(y){const O=y.match(Ei);return O?O[0]:""}(this.remaining);rt&&(T=rt,this.capture(T))}const X=w(C),Se=w(T);if(O.hasOwnProperty(X)){let rt=O[X];Array.isArray(rt)||(rt=[rt],O[X]=rt),rt.push(Se)}else O[X]=Se}parseParens(O){const C={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const T=bt(this.remaining),X=this.remaining[T.length];if("/"!==X&&")"!==X&&";"!==X)throw new i.OBp(4010,!1);let Se;T.indexOf(":")>-1?(Se=T.slice(0,T.indexOf(":")),this.capture(Se),this.capture(":")):O&&(Se=be);const rt=this.parseChildren();C[Se]=1===Object.keys(rt).length?rt[be]:new le([],rt),this.consumeOptional("//")}return C}peekStartsWith(O){return this.remaining.startsWith(O)}consumeOptional(O){return!!this.peekStartsWith(O)&&(this.remaining=this.remaining.substring(O.length),!0)}capture(O){if(!this.consumeOptional(O))throw new i.OBp(4011,!1)}}function We(y){return y.segments.length>0?new le([],{[be]:y}):y}function nt(y){const O={};for(const[T,X]of Object.entries(y.children)){const Se=nt(X);if(T===be&&0===Se.segments.length&&Se.hasChildren())for(const[rt,ei]of Object.entries(Se.children))O[rt]=ei;else(Se.segments.length>0||Se.hasChildren())&&(O[T]=Se)}return function Ot(y){if(1===y.numberOfChildren&&y.children[be]){const O=y.children[be];return new le(y.segments.concat(O.segments),O.children)}return y}(new le(y.segments,O))}function si(y){return y instanceof pt}function Ti(y){let O;const X=We(function C(Se){const rt={};for(const Xt of Se.children){const Ii=C(Xt);rt[Xt.outlet]=Ii}const ei=new le(Se.url,rt);return Se===y&&(O=ei),ei}(y.root));return O??X}function Fi(y,O,C,T){let X=y;for(;X.parent;)X=X.parent;if(0===O.length)return Xn(X,X,X,C,T);const Se=function Me(y){if("string"==typeof y[0]&&1===y.length&&"/"===y[0])return new gi(!0,0,y);let O=0,C=!1;const T=y.reduce((X,Se,rt)=>{if("object"==typeof Se&&null!=Se){if(Se.outlets){const ei={};return Object.entries(Se.outlets).forEach(([Xt,Ii])=>{ei[Xt]="string"==typeof Ii?Ii.split("/"):Ii}),[...X,{outlets:ei}]}if(Se.segmentPath)return[...X,Se.segmentPath]}return"string"!=typeof Se?[...X,Se]:0===rt?(Se.split("/").forEach((ei,Xt)=>{0==Xt&&"."===ei||(0==Xt&&""===ei?C=!0:".."===ei?O++:""!=ei&&X.push(ei))}),X):[...X,Se]},[]);return new gi(C,O,T)}(O);if(Se.toRoot())return Xn(X,X,new le([],{}),C,T);const rt=function Rt(y,O,C){if(y.isAbsolute)return new qe(O,!0,0);if(!C)return new qe(O,!1,NaN);if(null===C.parent)return new qe(C,!0,0);const T=hn(y.commands[0])?0:1;return function A(y,O,C){let T=y,X=O,Se=C;for(;Se>X;){if(Se-=X,T=T.parent,!T)throw new i.OBp(4005,!1);X=T.segments.length}return new qe(T,!1,X-Se)}(C,C.segments.length-1+T,y.numberOfDoubleDots)}(Se,X,y),ei=rt.processChildren?mt(rt.segmentGroup,rt.index,Se.commands):re(rt.segmentGroup,rt.index,Se.commands);return Xn(X,rt.segmentGroup,ei,C,T)}function hn(y){return"object"==typeof y&&null!=y&&!y.outlets&&!y.segmentPath}function an(y){return"object"==typeof y&&null!=y&&y.outlets}function Xn(y,O,C,T,X){let rt,Se={};T&&Object.entries(T).forEach(([Xt,Ii])=>{Se[Xt]=Array.isArray(Ii)?Ii.map(Zi=>`${Zi}`):`${Ii}`}),rt=y===O?C:Je(y,O,C);const ei=We(nt(rt));return new pt(ei,Se,X)}function Je(y,O,C){const T={};return Object.entries(y.children).forEach(([X,Se])=>{T[X]=Se===O?C:Je(Se,O,C)}),new le(y.segments,T)}class gi{constructor(O,C,T){if(this.isAbsolute=O,this.numberOfDoubleDots=C,this.commands=T,O&&T.length>0&&hn(T[0]))throw new i.OBp(4003,!1);const X=T.find(an);if(X&&X!==Kt(T))throw new i.OBp(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class qe{constructor(O,C,T){this.segmentGroup=O,this.processChildren=C,this.index=T}}function re(y,O,C){if(y??=new le([],{}),0===y.segments.length&&y.hasChildren())return mt(y,O,C);const T=function Wt(y,O,C){let T=0,X=O;const Se={match:!1,pathIndex:0,commandIndex:0};for(;X=C.length)return Se;const rt=y.segments[X],ei=C[T];if(an(ei))break;const Xt=`${ei}`,Ii=T0&&void 0===Xt)break;if(Xt&&Ii&&"object"==typeof Ii&&void 0===Ii.outlets){if(!ot(Xt,Ii,rt))return Se;T+=2}else{if(!ot(Xt,{},rt))return Se;T++}X++}return{match:!0,pathIndex:X,commandIndex:T}}(y,O,C),X=C.slice(T.commandIndex);if(T.match&&T.pathIndexSe!==be)&&y.children[be]&&1===y.numberOfChildren&&0===y.children[be].segments.length){const Se=mt(y.children[be],O,C);return new le(y.segments,Se.children)}return Object.entries(T).forEach(([Se,rt])=>{"string"==typeof rt&&(rt=[rt]),null!==rt&&(X[Se]=re(y.children[Se],O,rt))}),Object.entries(y.children).forEach(([Se,rt])=>{void 0===T[Se]&&(X[Se]=rt)}),new le(y.segments,X)}}function Zt(y,O,C){const T=y.segments.slice(0,O);let X=0;for(;X{"string"==typeof T&&(T=[T]),null!==T&&(O[C]=Zt(new le([],{}),0,T))}),O}function Li(y){const O={};return Object.entries(y).forEach(([C,T])=>O[C]=`${T}`),O}function ot(y,O,C){return y==C.path&&Tt(O,C.parameters)}const mi="imperative";var k=function(y){return y[y.NavigationStart=0]="NavigationStart",y[y.NavigationEnd=1]="NavigationEnd",y[y.NavigationCancel=2]="NavigationCancel",y[y.NavigationError=3]="NavigationError",y[y.RoutesRecognized=4]="RoutesRecognized",y[y.ResolveStart=5]="ResolveStart",y[y.ResolveEnd=6]="ResolveEnd",y[y.GuardsCheckStart=7]="GuardsCheckStart",y[y.GuardsCheckEnd=8]="GuardsCheckEnd",y[y.RouteConfigLoadStart=9]="RouteConfigLoadStart",y[y.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",y[y.ChildActivationStart=11]="ChildActivationStart",y[y.ChildActivationEnd=12]="ChildActivationEnd",y[y.ActivationStart=13]="ActivationStart",y[y.ActivationEnd=14]="ActivationEnd",y[y.Scroll=15]="Scroll",y[y.NavigationSkipped=16]="NavigationSkipped",y}(k||{});class se{constructor(O,C){this.id=O,this.url=C}}class K extends se{constructor(O,C,T="imperative",X=null){super(O,C),this.type=k.NavigationStart,this.navigationTrigger=T,this.restoredState=X}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class Be extends se{constructor(O,C,T){super(O,C),this.urlAfterRedirects=T,this.type=k.NavigationEnd}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var Yt=function(y){return y[y.Redirect=0]="Redirect",y[y.SupersededByNewNavigation=1]="SupersededByNewNavigation",y[y.NoDataFromResolver=2]="NoDataFromResolver",y[y.GuardRejected=3]="GuardRejected",y}(Yt||{}),wi=function(y){return y[y.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",y[y.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",y}(wi||{});class ji extends se{constructor(O,C,T,X){super(O,C),this.reason=T,this.code=X,this.type=k.NavigationCancel}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class sn extends se{constructor(O,C,T,X){super(O,C),this.reason=T,this.code=X,this.type=k.NavigationSkipped}}class qn extends se{constructor(O,C,T,X){super(O,C),this.error=T,this.target=X,this.type=k.NavigationError}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class en extends se{constructor(O,C,T,X){super(O,C),this.urlAfterRedirects=T,this.state=X,this.type=k.RoutesRecognized}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class pr extends se{constructor(O,C,T,X){super(O,C),this.urlAfterRedirects=T,this.state=X,this.type=k.GuardsCheckStart}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class kr extends se{constructor(O,C,T,X,Se){super(O,C),this.urlAfterRedirects=T,this.state=X,this.shouldActivate=Se,this.type=k.GuardsCheckEnd}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class Zn extends se{constructor(O,C,T,X){super(O,C),this.urlAfterRedirects=T,this.state=X,this.type=k.ResolveStart}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Vn extends se{constructor(O,C,T,X){super(O,C),this.urlAfterRedirects=T,this.state=X,this.type=k.ResolveEnd}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Hr{constructor(O){this.route=O,this.type=k.RouteConfigLoadStart}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class Er{constructor(O){this.route=O,this.type=k.RouteConfigLoadEnd}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class ra{constructor(O){this.snapshot=O,this.type=k.ChildActivationStart}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class ir{constructor(O){this.snapshot=O,this.type=k.ChildActivationEnd}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Sr{constructor(O){this.snapshot=O,this.type=k.ActivationStart}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Zr{constructor(O){this.snapshot=O,this.type=k.ActivationEnd}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Xi{constructor(O,C,T){this.routerEvent=O,this.position=C,this.anchor=T,this.type=k.Scroll}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class Fn{}class _n{constructor(O){this.url=O}}class jn{constructor(){this.outlet=null,this.route=null,this.injector=null,this.children=new Ir,this.attachRef=null}}let Ir=(()=>{class y{constructor(){this.contexts=new Map}onChildOutletCreated(C,T){const X=this.getOrCreateContext(C);X.outlet=T,this.contexts.set(C,X)}onChildOutletDestroyed(C){const T=this.getContext(C);T&&(T.outlet=null,T.attachRef=null)}onOutletDeactivated(){const C=this.contexts;return this.contexts=new Map,C}onOutletReAttached(C){this.contexts=C}getOrCreateContext(C){let T=this.getContext(C);return T||(T=new jn,this.contexts.set(C,T)),T}getContext(C){return this.contexts.get(C)||null}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();class ba{constructor(O){this._root=O}get root(){return this._root.value}parent(O){const C=this.pathFromRoot(O);return C.length>1?C[C.length-2]:null}children(O){const C=Tr(O,this._root);return C?C.children.map(T=>T.value):[]}firstChild(O){const C=Tr(O,this._root);return C&&C.children.length>0?C.children[0].value:null}siblings(O){const C=Ar(O,this._root);return C.length<2?[]:C[C.length-2].children.map(X=>X.value).filter(X=>X!==O)}pathFromRoot(O){return Ar(O,this._root).map(C=>C.value)}}function Tr(y,O){if(y===O.value)return O;for(const C of O.children){const T=Tr(y,C);if(T)return T}return null}function Ar(y,O){if(y===O.value)return[O];for(const C of O.children){const T=Ar(y,C);if(T.length)return T.unshift(O),T}return[]}class or{constructor(O,C){this.value=O,this.children=C}toString(){return`TreeNode(${this.value})`}}function on(y){const O={};return y&&y.children.forEach(C=>O[C.value.outlet]=C),O}class bi extends ba{constructor(O,C){super(O),this.snapshot=C,pn(this,O)}toString(){return this.snapshot.toString()}}function Pi(y){const O=function In(y){const Se=new nr([],{},{},"",{},be,y,null,{});return new br("",new or(Se,[]))}(y),C=new l.g([new xe("",{})]),T=new l.g({}),X=new l.g({}),Se=new l.g({}),rt=new l.g(""),ei=new Un(C,T,Se,rt,X,be,y,O.root);return ei.snapshot=O.root,new bi(new or(ei,[]),O)}class Un{constructor(O,C,T,X,Se,rt,ei,Xt){this.urlSubject=O,this.paramsSubject=C,this.queryParamsSubject=T,this.fragmentSubject=X,this.dataSubject=Se,this.outlet=rt,this.component=ei,this._futureSnapshot=Xt,this.title=this.dataSubject?.pipe((0,gt.k)(Ii=>Ii[j]))??(0,h.of)(void 0),this.url=O,this.params=C,this.queryParams=T,this.fragment=X,this.data=Se}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.params.pipe((0,gt.k)(O=>N(O))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,gt.k)(O=>N(O))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Hn(y,O,C="emptyOnly"){let T;const{routeConfig:X}=y;return T=null===O||"always"!==C&&""!==X?.path&&(O.component||O.routeConfig?.loadComponent)?{params:{...y.params},data:{...y.data},resolve:{...y.data,...y._resolvedData??{}}}:{params:{...O.params,...y.params},data:{...O.data,...y.data},resolve:{...y.data,...O.data,...X?.data,...y._resolvedData}},X&&fr(X)&&(T.resolve[j]=X.title),T}class nr{get title(){return this.data?.[j]}constructor(O,C,T,X,Se,rt,ei,Xt,Ii){this.url=O,this.params=C,this.queryParams=T,this.fragment=X,this.data=Se,this.outlet=rt,this.component=ei,this.routeConfig=Xt,this._resolve=Ii}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??=N(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=N(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(T=>T.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class br extends ba{constructor(O,C){super(C),this.url=O,pn(this,C)}toString(){return bn(this._root)}}function pn(y,O){O.value._routerState=y,O.children.forEach(C=>pn(y,C))}function bn(y){const O=y.children.length>0?` { ${y.children.map(bn).join(", ")} } `:"";return`${y.value}${O}`}function Wn(y){if(y.snapshot){const O=y.snapshot,C=y._futureSnapshot;y.snapshot=C,Tt(O.queryParams,C.queryParams)||y.queryParamsSubject.next(C.queryParams),O.fragment!==C.fragment&&y.fragmentSubject.next(C.fragment),Tt(O.params,C.params)||y.paramsSubject.next(C.params),function Fe(y,O){if(y.length!==O.length)return!1;for(let C=0;CTt(C.parameters,O[T].parameters))}(y.url,O.url);return C&&!(!y.parent!=!O.parent)&&(!y.parent||Bi(y.parent,O.parent))}function fr(y){return"string"==typeof y.title||null===y.title}let aa=(()=>{class y{constructor(){this.activated=null,this._activatedRoute=null,this.name=be,this.activateEvents=new i._w7,this.deactivateEvents=new i._w7,this.attachEvents=new i._w7,this.detachEvents=new i._w7,this.parentContexts=(0,i.uUt)(Ir),this.location=(0,i.uUt)(i.y8U),this.changeDetector=(0,i.uUt)(i.kD9),this.environmentInjector=(0,i.uUt)(i.SIe),this.inputBinder=(0,i.uUt)(xn,{optional:!0}),this.supportsBindingToComponentInputs=!0}get activatedComponentRef(){return this.activated}ngOnChanges(C){if(C.name){const{firstChange:T,previousValue:X}=C.name;if(T)return;this.isTrackedInParentContexts(X)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(X)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(C){return this.parentContexts.getContext(C)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const C=this.parentContexts.getContext(this.name);C?.route&&(C.attachRef?this.attach(C.attachRef,C.route):this.activateWith(C.route,C.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new i.OBp(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new i.OBp(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new i.OBp(4012,!1);this.location.detach();const C=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(C.instance),C}attach(C,T){this.activated=C,this._activatedRoute=T,this.location.insert(C.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(C.instance)}deactivate(){if(this.activated){const C=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(C)}}activateWith(C,T){if(this.isActivated)throw new i.OBp(4013,!1);this._activatedRoute=C;const X=this.location,rt=C.snapshot.component,ei=this.parentContexts.getOrCreateContext(this.name).children,Xt=new sa(C,ei,X.injector);this.activated=X.createComponent(rt,{index:X.length,injector:Xt,environmentInjector:T??this.environmentInjector}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275dir=i.Sc5({type:y,selectors:[["router-outlet"]],inputs:{name:"name"},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0,features:[i.SYr]})}return y})();class sa{constructor(O,C,T){this.route=O,this.childContexts=C,this.parent=T}get(O,C){return O===Un?this.route:O===Ir?this.childContexts:this.parent.get(O,C)}}const xn=new i.UbH("");let _r=(()=>{class y{constructor(){this.outletDataSubscriptions=new Map}bindActivatedRouteToOutletComponent(C){this.unsubscribeFromRouteData(C),this.subscribeToRouteData(C)}unsubscribeFromRouteData(C){this.outletDataSubscriptions.get(C)?.unsubscribe(),this.outletDataSubscriptions.delete(C)}subscribeToRouteData(C){const{activatedRoute:T}=C,X=(0,f.E)([T.queryParams,T.params,T.data]).pipe((0,Bt.G)(([Se,rt,ei],Xt)=>(ei={...Se,...rt,...ei},0===Xt?(0,h.of)(ei):Promise.resolve(ei)))).subscribe(Se=>{if(!C.isActivated||!C.activatedComponentRef||C.activatedRoute!==T||null===T.component)return void this.unsubscribeFromRouteData(C);const rt=(0,i.o9M)(T.component);if(rt)for(const{templateName:ei}of rt.inputs)C.activatedComponentRef.setInput(ei,Se[ei]);else this.unsubscribeFromRouteData(C)});this.outletDataSubscriptions.set(C,X)}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac})}return y})();function er(y,O,C){if(C&&y.shouldReuseRoute(O.value,C.value.snapshot)){const T=C.value;T._futureSnapshot=O.value;const X=function Jr(y,O,C){return O.children.map(T=>{for(const X of C.children)if(y.shouldReuseRoute(T.value,X.value.snapshot))return er(y,T,X);return er(y,T)})}(y,O,C);return new or(T,X)}{if(y.shouldAttach(O.value)){const Se=y.retrieve(O.value);if(null!==Se){const rt=Se.route;return rt.value._futureSnapshot=O.value,rt.children=O.children.map(ei=>er(y,ei)),rt}}const T=function ln(y){return new Un(new l.g(y.url),new l.g(y.params),new l.g(y.queryParams),new l.g(y.fragment),new l.g(y.data),y.outlet,y.component,y)}(O.value),X=O.children.map(Se=>er(y,Se));return new or(T,X)}}const lr="ngNavigationCancelingError";function gr(y,O){const{redirectTo:C,navigationBehaviorOptions:T}=si(O)?{redirectTo:O,navigationBehaviorOptions:void 0}:O,X=zn(!1,Yt.Redirect);return X.url=C,X.navigationBehaviorOptions=T,X}function zn(y,O){const C=new Error(`NavigationCancelingError: ${y||""}`);return C[lr]=!0,C.cancellationCode=O,C}function ya(y){return!!y&&y[lr]}let oa=(()=>{class y{static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275cmp=i.In1({type:y,selectors:[["ng-component"]],standalone:!0,features:[i.UHJ],decls:1,vars:0,template:function(T,X){1&T&&i.wR5(0,"router-outlet")},dependencies:[aa],encapsulation:2})}return y})();function mr(y){const O=y.children&&y.children.map(mr),C=O?{...y,children:O}:{...y};return!C.component&&!C.loadComponent&&(O||C.loadChildren)&&C.outlet&&C.outlet!==be&&(C.component=oa),C}function Pn(y){return y.outlet||be}function Or(y){if(!y)return null;if(y.routeConfig?._injector)return y.routeConfig._injector;for(let O=y.parent;O;O=O.parent){const C=O.routeConfig;if(C?._loadedInjector)return C._loadedInjector;if(C?._injector)return C._injector}return null}class Ca{constructor(O,C,T,X,Se){this.routeReuseStrategy=O,this.futureState=C,this.currState=T,this.forwardEvent=X,this.inputBindingEnabled=Se}activate(O){const C=this.futureState._root,T=this.currState?this.currState._root:null;this.deactivateChildRoutes(C,T,O),Wn(this.futureState.root),this.activateChildRoutes(C,T,O)}deactivateChildRoutes(O,C,T){const X=on(C);O.children.forEach(Se=>{const rt=Se.value.outlet;this.deactivateRoutes(Se,X[rt],T),delete X[rt]}),Object.values(X).forEach(Se=>{this.deactivateRouteAndItsChildren(Se,T)})}deactivateRoutes(O,C,T){const X=O.value,Se=C?C.value:null;if(X===Se)if(X.component){const rt=T.getContext(X.outlet);rt&&this.deactivateChildRoutes(O,C,rt.children)}else this.deactivateChildRoutes(O,C,T);else Se&&this.deactivateRouteAndItsChildren(C,T)}deactivateRouteAndItsChildren(O,C){O.value.component&&this.routeReuseStrategy.shouldDetach(O.value.snapshot)?this.detachAndStoreRouteSubtree(O,C):this.deactivateRouteAndOutlet(O,C)}detachAndStoreRouteSubtree(O,C){const T=C.getContext(O.value.outlet),X=T&&O.value.component?T.children:C,Se=on(O);for(const rt of Object.values(Se))this.deactivateRouteAndItsChildren(rt,X);if(T&&T.outlet){const rt=T.outlet.detach(),ei=T.children.onOutletDeactivated();this.routeReuseStrategy.store(O.value.snapshot,{componentRef:rt,route:O,contexts:ei})}}deactivateRouteAndOutlet(O,C){const T=C.getContext(O.value.outlet),X=T&&O.value.component?T.children:C,Se=on(O);for(const rt of Object.values(Se))this.deactivateRouteAndItsChildren(rt,X);T&&(T.outlet&&(T.outlet.deactivate(),T.children.onOutletDeactivated()),T.attachRef=null,T.route=null)}activateChildRoutes(O,C,T){const X=on(C);O.children.forEach(Se=>{this.activateRoutes(Se,X[Se.value.outlet],T),this.forwardEvent(new Zr(Se.value.snapshot))}),O.children.length&&this.forwardEvent(new ir(O.value.snapshot))}activateRoutes(O,C,T){const X=O.value,Se=C?C.value:null;if(Wn(X),X===Se)if(X.component){const rt=T.getOrCreateContext(X.outlet);this.activateChildRoutes(O,C,rt.children)}else this.activateChildRoutes(O,C,T);else if(X.component){const rt=T.getOrCreateContext(X.outlet);if(this.routeReuseStrategy.shouldAttach(X.snapshot)){const ei=this.routeReuseStrategy.retrieve(X.snapshot);this.routeReuseStrategy.store(X.snapshot,null),rt.children.onOutletReAttached(ei.contexts),rt.attachRef=ei.componentRef,rt.route=ei.route.value,rt.outlet&&rt.outlet.attach(ei.componentRef,ei.route.value),Wn(ei.route.value),this.activateChildRoutes(O,null,rt.children)}else{const ei=Or(X.snapshot);rt.attachRef=null,rt.route=X,rt.injector=ei,rt.outlet&&rt.outlet.activateWith(X,rt.injector),this.activateChildRoutes(O,null,rt.children)}}else this.activateChildRoutes(O,null,T)}}class ha{constructor(O){this.path=O,this.route=this.path[this.path.length-1]}}class Rr{constructor(O,C){this.component=O,this.route=C}}function Ya(y,O,C){const T=y._root;return ea(T,O?O._root:null,C,[T.value])}function la(y,O){const C=Symbol(),T=O.get(y,C);return T===C?"function"!=typeof y||(0,i.K_M)(y)?O.get(y):y:T}function ea(y,O,C,T,X={canDeactivateChecks:[],canActivateChecks:[]}){const Se=on(O);return y.children.forEach(rt=>{(function ma(y,O,C,T,X={canDeactivateChecks:[],canActivateChecks:[]}){const Se=y.value,rt=O?O.value:null,ei=C?C.getContext(y.value.outlet):null;if(rt&&Se.routeConfig===rt.routeConfig){const Xt=function jr(y,O,C){if("function"==typeof C)return C(y,O);switch(C){case"pathParamsChange":return!ht(y.url,O.url);case"pathParamsOrQueryParamsChange":return!ht(y.url,O.url)||!Tt(y.queryParams,O.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!Bi(y,O)||!Tt(y.queryParams,O.queryParams);default:return!Bi(y,O)}}(rt,Se,Se.routeConfig.runGuardsAndResolvers);Xt?X.canActivateChecks.push(new ha(T)):(Se.data=rt.data,Se._resolvedData=rt._resolvedData),ea(y,O,Se.component?ei?ei.children:null:C,T,X),Xt&&ei&&ei.outlet&&ei.outlet.isActivated&&X.canDeactivateChecks.push(new Rr(ei.outlet.component,rt))}else rt&&Z(O,ei,X),X.canActivateChecks.push(new ha(T)),ea(y,null,Se.component?ei?ei.children:null:C,T,X)})(rt,Se[rt.value.outlet],C,T.concat([rt.value]),X),delete Se[rt.value.outlet]}),Object.entries(Se).forEach(([rt,ei])=>Z(ei,C.getContext(rt),X)),X}function Z(y,O,C){const T=on(y),X=y.value;Object.entries(T).forEach(([Se,rt])=>{Z(rt,X.component?O?O.children.getContext(Se):null:O,C)}),C.canDeactivateChecks.push(new Rr(X.component&&O&&O.outlet&&O.outlet.isActivated?O.outlet.component:null,X))}function ne(y){return"function"==typeof y}function xr(y){return y instanceof b||"EmptyError"===y?.name}const Ur=Symbol("INITIAL_VALUE");function ta(){return(0,Bt.G)(y=>(0,f.E)(y.map(O=>O.pipe((0,kt.U)(1),(0,Ye.W)(Ur)))).pipe((0,gt.k)(O=>{for(const C of O)if(!0!==C){if(C===Ur)return Ur;if(!1===C||C instanceof pt)return C}return!0}),(0,et.I)(O=>O!==Ur),(0,kt.U)(1)))}function ur(y){return(0,J.W)((0,$t.y)(O=>{if(si(O))throw gr(0,O)}),(0,gt.k)(O=>!0===O))}class Pr{constructor(O){this.segmentGroup=O||null}}class Fr extends Error{constructor(O){super(),this.urlTree=O}}function Kn(y){return(0,ie.c)(new Pr(y))}class ce{constructor(O,C){this.urlSerializer=O,this.urlTree=C}lineralizeSegments(O,C){let T=[],X=C.root;for(;;){if(T=T.concat(X.segments),0===X.numberOfChildren)return(0,h.of)(T);if(X.numberOfChildren>1||!X.children[be])return(0,ie.c)(new i.OBp(4e3,!1));X=X.children[be]}}applyRedirectCommands(O,C,T){const X=this.applyRedirectCreateUrlTree(C,this.urlSerializer.parse(C),O,T);if(C.startsWith("/"))throw new Fr(X);return X}applyRedirectCreateUrlTree(O,C,T,X){const Se=this.createSegmentGroup(O,C.root,T,X);return new pt(Se,this.createQueryParams(C.queryParams,this.urlTree.queryParams),C.fragment)}createQueryParams(O,C){const T={};return Object.entries(O).forEach(([X,Se])=>{if("string"==typeof Se&&Se.startsWith(":")){const ei=Se.substring(1);T[X]=C[ei]}else T[X]=Se}),T}createSegmentGroup(O,C,T,X){const Se=this.createSegments(O,C.segments,T,X);let rt={};return Object.entries(C.children).forEach(([ei,Xt])=>{rt[ei]=this.createSegmentGroup(O,Xt,T,X)}),new le(Se,rt)}createSegments(O,C,T,X){return C.map(Se=>Se.path.startsWith(":")?this.findPosParam(O,Se,X):this.findOrReturn(Se,T))}findPosParam(O,C,T){const X=T[C.path.substring(1)];if(!X)throw new i.OBp(4001,!1);return X}findOrReturn(O,C){let T=0;for(const X of C){if(X.path===O.path)return C.splice(T),X;T++}return O}}const M={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function I(y,O,C,T,X){const Se=G(y,O,C);return Se.matched?(T=function $n(y,O){return y.providers&&!y._injector&&(y._injector=(0,i.SIz)(y.providers,O,`Route: ${y.path}`)),y._injector??O}(O,T),function Ba(y,O,C,T){const X=O.canMatch;if(!X||0===X.length)return(0,h.of)(!0);const Se=X.map(rt=>{const ei=la(rt,y);return Ut(function dr(y){return y&&ne(y.canMatch)}(ei)?ei.canMatch(O,C):(0,i.SMS)(y,()=>ei(O,C)))});return(0,h.of)(Se).pipe(ta(),ur())}(T,O,C).pipe((0,gt.k)(rt=>!0===rt?Se:{...M}))):(0,h.of)(Se)}function G(y,O,C){if("**"===O.path)return function pe(y){return{matched:!0,parameters:y.length>0?Kt(y).parameters:{},consumedSegments:y,remainingSegments:[],positionalParamSegments:{}}}(C);if(""===O.path)return"full"===O.pathMatch&&(y.hasChildren()||C.length>0)?{...M}:{matched:!0,consumedSegments:[],remainingSegments:C,parameters:{},positionalParamSegments:{}};const X=(O.matcher||U)(C,y,O);if(!X)return{...M};const Se={};Object.entries(X.posParams??{}).forEach(([ei,Xt])=>{Se[ei]=Xt.path});const rt=X.consumed.length>0?{...Se,...X.consumed[X.consumed.length-1].parameters}:Se;return{matched:!0,consumedSegments:X.consumed,remainingSegments:C.slice(X.consumed.length),parameters:rt,positionalParamSegments:X.posParams??{}}}function Qe(y,O,C,T){return C.length>0&&function qt(y,O,C){return C.some(T=>ui(y,O,T)&&Pn(T)!==be)}(y,C,T)?{segmentGroup:new le(O,Pt(T,new le(C,y.children))),slicedSegments:[]}:0===C.length&&function ai(y,O,C){return C.some(T=>ui(y,O,T))}(y,C,T)?{segmentGroup:new le(y.segments,Ct(y,C,T,y.children)),slicedSegments:C}:{segmentGroup:new le(y.segments,y.children),slicedSegments:C}}function Ct(y,O,C,T){const X={};for(const Se of C)if(ui(y,O,Se)&&!T[Pn(Se)]){const rt=new le([],{});X[Pn(Se)]=rt}return{...T,...X}}function Pt(y,O){const C={};C[be]=O;for(const T of y)if(""===T.path&&Pn(T)!==be){const X=new le([],{});C[Pn(T)]=X}return C}function ui(y,O,C){return(!(y.hasChildren()||O.length>0)||"full"!==C.pathMatch)&&""===C.path}class $i{}class dn{constructor(O,C,T,X,Se,rt,ei){this.injector=O,this.configLoader=C,this.rootComponentType=T,this.config=X,this.urlTree=Se,this.paramsInheritanceStrategy=rt,this.urlSerializer=ei,this.applyRedirects=new ce(this.urlSerializer,this.urlTree),this.absoluteRedirectCount=0,this.allowRedirects=!0}noMatchError(O){return new i.OBp(4002,`'${O.segmentGroup}'`)}recognize(){const O=Qe(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(O).pipe((0,gt.k)(C=>{const T=new nr([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,{},be,this.rootComponentType,null,{}),X=new or(T,C),Se=new br("",X),rt=function yi(y,O,C=null,T=null){return Fi(Ti(y),O,C,T)}(T,[],this.urlTree.queryParams,this.urlTree.fragment);return rt.queryParams=this.urlTree.queryParams,Se.url=this.urlSerializer.serialize(rt),this.inheritParamsAndData(Se._root,null),{state:Se,tree:rt}}))}match(O){return this.processSegmentGroup(this.injector,this.config,O,be).pipe((0,oi.a)(T=>{if(T instanceof Fr)return this.urlTree=T.urlTree,this.match(T.urlTree.root);throw T instanceof Pr?this.noMatchError(T):T}))}inheritParamsAndData(O,C){const T=O.value,X=Hn(T,C,this.paramsInheritanceStrategy);T.params=Object.freeze(X.params),T.data=Object.freeze(X.data),O.children.forEach(Se=>this.inheritParamsAndData(Se,T))}processSegmentGroup(O,C,T,X){return 0===T.segments.length&&T.hasChildren()?this.processChildren(O,C,T):this.processSegment(O,C,T,T.segments,X,!0).pipe((0,gt.k)(Se=>Se instanceof or?[Se]:[]))}processChildren(O,C,T){const X=[];for(const Se of Object.keys(T.children))"primary"===Se?X.unshift(Se):X.push(Se);return(0,a.Q)(X).pipe((0,st.m)(Se=>{const rt=T.children[Se],ei=function Da(y,O){const C=y.filter(T=>Pn(T)===O);return C.push(...y.filter(T=>Pn(T)!==O)),C}(C,Se);return this.processSegmentGroup(O,ei,rt,Se)}),function vi(y,O){return(0,_e.i)(function Jt(y,O,C,T,X){return(Se,rt)=>{let ei=C,Xt=O,Ii=0;Se.subscribe((0,ye.e)(rt,Zi=>{const fn=Ii++;Xt=ei?y(Xt,Zi,fn):(ei=!0,Zi),T&&rt.next(Xt)},X&&(()=>{ei&&rt.next(Xt),rt.complete()})))}}(y,O,arguments.length>=2,!0))}((Se,rt)=>(Se.push(...rt),Se)),Re(null),function De(y,O){const C=arguments.length>=2;return T=>T.pipe(y?(0,et.I)((X,Se)=>y(X,Se,T)):oe.Z,je(1),C?Re(O):Xe(()=>new b))}(),(0,Q.O)(Se=>{if(null===Se)return Kn(T);const rt=hr(Se);return function wn(y){y.sort((O,C)=>O.value.outlet===be?-1:C.value.outlet===be?1:O.value.outlet.localeCompare(C.value.outlet))}(rt),(0,h.of)(rt)}))}processSegment(O,C,T,X,Se,rt){return(0,a.Q)(C).pipe((0,st.m)(ei=>this.processSegmentAgainstRoute(ei._injector??O,C,ei,T,X,Se,rt).pipe((0,oi.a)(Xt=>{if(Xt instanceof Pr)return(0,h.of)(null);throw Xt}))),ut(ei=>!!ei),(0,oi.a)(ei=>{if(xr(ei))return function cn(y,O,C){return 0===O.length&&!y.children[C]}(T,X,Se)?(0,h.of)(new $i):Kn(T);throw ei}))}processSegmentAgainstRoute(O,C,T,X,Se,rt,ei){return function Si(y,O,C,T){return!!(Pn(y)===T||T!==be&&ui(O,C,y))&&G(O,y,C).matched}(T,X,Se,rt)?void 0===T.redirectTo?this.matchSegmentAgainstRoute(O,X,T,Se,rt):this.allowRedirects&&ei?this.expandSegmentAgainstRouteUsingRedirect(O,X,C,T,Se,rt):Kn(X):Kn(X)}expandSegmentAgainstRouteUsingRedirect(O,C,T,X,Se,rt){const{matched:ei,consumedSegments:Xt,positionalParamSegments:Ii,remainingSegments:Zi}=G(C,X,Se);if(!ei)return Kn(C);X.redirectTo.startsWith("/")&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const fn=this.applyRedirects.applyRedirectCommands(Xt,X.redirectTo,Ii);return this.applyRedirects.lineralizeSegments(X,fn).pipe((0,Q.O)(Gn=>this.processSegment(O,T,C,Gn.concat(Zi),rt,!1)))}matchSegmentAgainstRoute(O,C,T,X,Se){const rt=I(C,T,X,O);return"**"===T.path&&(C.children={}),rt.pipe((0,Bt.G)(ei=>ei.matched?this.getChildConfig(O=T._injector??O,T,X).pipe((0,Bt.G)(({routes:Xt})=>{const Ii=T._loadedInjector??O,{consumedSegments:Zi,remainingSegments:fn,parameters:Gn}=ei,gs=new nr(Zi,Gn,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,function na(y){return y.data||{}}(T),Pn(T),T.component??T._loadedComponent??null,T,function Nr(y){return y.resolve||{}}(T)),{segmentGroup:ts,slicedSegments:vs}=Qe(C,Zi,fn,Xt);if(0===vs.length&&ts.hasChildren())return this.processChildren(Ii,Xt,ts).pipe((0,gt.k)(xa=>null===xa?null:new or(gs,xa)));if(0===Xt.length&&0===vs.length)return(0,h.of)(new or(gs,[]));const Gs=Pn(T)===Se;return this.processSegment(Ii,Xt,ts,vs,Gs?be:Se,!0).pipe((0,gt.k)(xa=>new or(gs,xa instanceof or?[xa]:[])))})):Kn(C)))}getChildConfig(O,C,T){return C.children?(0,h.of)({routes:C.children,injector:O}):C.loadChildren?void 0!==C._loadedRoutes?(0,h.of)({routes:C._loadedRoutes,injector:C._loadedInjector}):function ia(y,O,C,T){const X=O.canLoad;if(void 0===X||0===X.length)return(0,h.of)(!0);const Se=X.map(rt=>{const ei=la(rt,y);return Ut(function Ae(y){return y&&ne(y.canLoad)}(ei)?ei.canLoad(O,C):(0,i.SMS)(y,()=>ei(O,C)))});return(0,h.of)(Se).pipe(ta(),ur())}(O,C,T).pipe((0,Q.O)(X=>X?this.configLoader.loadChildren(O,C).pipe((0,$t.y)(Se=>{C._loadedRoutes=Se.routes,C._loadedInjector=Se.injector})):function Ea(y){return(0,ie.c)(zn(!1,Yt.GuardRejected))}())):(0,h.of)({routes:[],injector:O})}}function rr(y){const O=y.value.routeConfig;return O&&""===O.path}function hr(y){const O=[],C=new Set;for(const T of y){if(!rr(T)){O.push(T);continue}const X=O.find(Se=>T.value.routeConfig===Se.value.routeConfig);void 0!==X?(X.children.push(...T.children),C.add(X)):O.push(T)}for(const T of C){const X=hr(T.children);O.push(new or(T.value,X))}return O.filter(T=>!C.has(T))}function Wr(y){const O=y.children.map(C=>Wr(C)).flat();return[y,...O]}function L(y){return(0,Bt.G)(O=>{const C=y(O);return C?(0,a.Q)(C).pipe((0,gt.k)(()=>O)):(0,h.of)(O)})}let H=(()=>{class y{buildTitle(C){let T,X=C.root;for(;void 0!==X;)T=this.getResolvedTitleForRoute(X)??T,X=X.children.find(Se=>Se.outlet===be);return T}getResolvedTitleForRoute(C){return C.data[j]}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:()=>(0,i.uUt)(_t),providedIn:"root"})}return y})(),_t=(()=>{class y extends H{constructor(C){super(),this.title=C}updateTitle(C){const T=this.buildTitle(C);void 0!==T&&this.title.setTitle(T)}static#e=this.\u0275fac=function(T){return new(T||y)(i.CoB(Ne.OY))};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();const dt=new i.UbH("",{providedIn:"root",factory:()=>({})}),jt=new i.UbH("");let ci=(()=>{class y{constructor(){this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap,this.compiler=(0,i.uUt)(i.ESV)}loadComponent(C){if(this.componentLoaders.get(C))return this.componentLoaders.get(C);if(C._loadedComponent)return(0,h.of)(C._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(C);const T=Ut(C.loadComponent()).pipe((0,gt.k)(zi),(0,$t.y)(Se=>{this.onLoadEndListener&&this.onLoadEndListener(C),C._loadedComponent=Se}),(0,Ve.U)(()=>{this.componentLoaders.delete(C)})),X=new Ie.C(T,()=>new Ee.E).pipe((0,te.O)());return this.componentLoaders.set(C,X),X}loadChildren(C,T){if(this.childrenLoaders.get(T))return this.childrenLoaders.get(T);if(T._loadedRoutes)return(0,h.of)({routes:T._loadedRoutes,injector:T._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(T);const Se=function xi(y,O,C,T){return Ut(y.loadChildren()).pipe((0,gt.k)(zi),(0,Q.O)(X=>X instanceof i.obV||Array.isArray(X)?(0,h.of)(X):(0,a.Q)(O.compileModuleAsync(X))),(0,gt.k)(X=>{T&&T(y);let Se,rt,ei=!1;return Array.isArray(X)?(rt=X,!0):(Se=X.create(C).injector,rt=Se.get(jt,[],{optional:!0,self:!0}).flat()),{routes:rt.map(mr),injector:Se}}))}(T,this.compiler,C,this.onLoadEndListener).pipe((0,Ve.U)(()=>{this.childrenLoaders.delete(T)})),rt=new Ie.C(Se,()=>new Ee.E).pipe((0,te.O)());return this.childrenLoaders.set(T,rt),rt}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();function zi(y){return function Oi(y){return y&&"object"==typeof y&&"default"in y}(y)?y.default:y}let Mn=(()=>{class y{static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:()=>(0,i.uUt)(Ji),providedIn:"root"})}return y})(),Ji=(()=>{class y{shouldProcessUrl(C){return!0}extract(C){return C}merge(C,T){return C}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();const D=new i.UbH(""),he=new i.UbH("");function F(y,O,C){const T=y.get(he),X=y.get(tt.Ud);return y.get(i.WW2).runOutsideAngular(()=>{if(!X.startViewTransition||T.skipNextTransition)return T.skipNextTransition=!1,Promise.resolve();let Se;const rt=new Promise(Ii=>{Se=Ii}),ei=X.startViewTransition(()=>(Se(),function q(y){return new Promise(O=>{(0,i.I44)(O,{injector:y})})}(y))),{onViewTransitionCreated:Xt}=T;return Xt&&(0,i.SMS)(y,()=>Xt({transition:ei,from:O,to:C})),rt})}let ft=(()=>{class y{get hasRequestedNavigation(){return 0!==this.navigationId}constructor(){this.currentNavigation=null,this.currentTransition=null,this.lastSuccessfulNavigation=null,this.events=new Ee.E,this.transitionAbortSubject=new Ee.E,this.configLoader=(0,i.uUt)(ci),this.environmentInjector=(0,i.uUt)(i.SIe),this.urlSerializer=(0,i.uUt)(vt),this.rootContexts=(0,i.uUt)(Ir),this.location=(0,i.uUt)(tt.oB),this.inputBindingEnabled=null!==(0,i.uUt)(xn,{optional:!0}),this.titleStrategy=(0,i.uUt)(H),this.options=(0,i.uUt)(dt,{optional:!0})||{},this.paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly",this.urlHandlingStrategy=(0,i.uUt)(Mn),this.createViewTransition=(0,i.uUt)(D,{optional:!0}),this.navigationId=0,this.afterPreactivation=()=>(0,h.of)(void 0),this.rootComponentType=null,this.configLoader.onLoadEndListener=X=>this.events.next(new Er(X)),this.configLoader.onLoadStartListener=X=>this.events.next(new Hr(X))}complete(){this.transitions?.complete()}handleNavigationRequest(C){const T=++this.navigationId;this.transitions?.next({...this.transitions.value,...C,id:T})}setupNavigations(C,T,X){return this.transitions=new l.g({id:0,currentUrlTree:T,currentRawUrl:T,extractedUrl:this.urlHandlingStrategy.extract(T),urlAfterRedirects:this.urlHandlingStrategy.extract(T),rawUrl:T,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:mi,restoredState:null,currentSnapshot:X.snapshot,targetSnapshot:null,currentRouterState:X,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.transitions.pipe((0,et.I)(Se=>0!==Se.id),(0,gt.k)(Se=>({...Se,extractedUrl:this.urlHandlingStrategy.extract(Se.rawUrl)})),(0,Bt.G)(Se=>{this.currentTransition=Se;let rt=!1,ei=!1;return(0,h.of)(Se).pipe((0,$t.y)(Xt=>{this.currentNavigation={id:Xt.id,initialUrl:Xt.rawUrl,extractedUrl:Xt.extractedUrl,trigger:Xt.source,extras:Xt.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null}}),(0,Bt.G)(Xt=>{const Ii=!C.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!Ii&&"reload"!==(Xt.extras.onSameUrlNavigation??C.onSameUrlNavigation)){const fn="";return this.events.next(new sn(Xt.id,this.urlSerializer.serialize(Xt.rawUrl),fn,wi.IgnoredSameUrlNavigation)),Xt.resolve(null),ae.k}if(this.urlHandlingStrategy.shouldProcessUrl(Xt.rawUrl))return(0,h.of)(Xt).pipe((0,Bt.G)(fn=>{const Gn=this.transitions?.getValue();return this.events.next(new K(fn.id,this.urlSerializer.serialize(fn.extractedUrl),fn.source,fn.restoredState)),Gn!==this.transitions?.getValue()?ae.k:Promise.resolve(fn)}),function ti(y,O,C,T,X,Se){return(0,Q.O)(rt=>function Gi(y,O,C,T,X,Se,rt="emptyOnly"){return new dn(y,O,C,T,X,rt,Se).recognize()}(y,O,C,T,rt.extractedUrl,X,Se).pipe((0,gt.k)(({state:ei,tree:Xt})=>({...rt,targetSnapshot:ei,urlAfterRedirects:Xt}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,C.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,$t.y)(fn=>{Se.targetSnapshot=fn.targetSnapshot,Se.urlAfterRedirects=fn.urlAfterRedirects,this.currentNavigation={...this.currentNavigation,finalUrl:fn.urlAfterRedirects};const Gn=new en(fn.id,this.urlSerializer.serialize(fn.extractedUrl),this.urlSerializer.serialize(fn.urlAfterRedirects),fn.targetSnapshot);this.events.next(Gn)}));if(Ii&&this.urlHandlingStrategy.shouldProcessUrl(Xt.currentRawUrl)){const{id:fn,extractedUrl:Gn,source:gs,restoredState:ts,extras:vs}=Xt,Gs=new K(fn,this.urlSerializer.serialize(Gn),gs,ts);this.events.next(Gs);const xa=Pi(this.rootComponentType).snapshot;return this.currentTransition=Se={...Xt,targetSnapshot:xa,urlAfterRedirects:Gn,extras:{...vs,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.finalUrl=Gn,(0,h.of)(Se)}{const fn="";return this.events.next(new sn(Xt.id,this.urlSerializer.serialize(Xt.extractedUrl),fn,wi.IgnoredByUrlHandlingStrategy)),Xt.resolve(null),ae.k}}),(0,$t.y)(Xt=>{const Ii=new pr(Xt.id,this.urlSerializer.serialize(Xt.extractedUrl),this.urlSerializer.serialize(Xt.urlAfterRedirects),Xt.targetSnapshot);this.events.next(Ii)}),(0,gt.k)(Xt=>(this.currentTransition=Se={...Xt,guards:Ya(Xt.targetSnapshot,Xt.currentSnapshot,this.rootContexts)},Se)),function yn(y,O){return(0,Q.O)(C=>{const{targetSnapshot:T,currentSnapshot:X,guards:{canActivateChecks:Se,canDeactivateChecks:rt}}=C;return 0===rt.length&&0===Se.length?(0,h.of)({...C,guardsResult:!0}):function ka(y,O,C,T){return(0,a.Q)(y).pipe((0,Q.O)(X=>function wa(y,O,C,T,X){const Se=O&&O.routeConfig?O.routeConfig.canDeactivate:null;if(!Se||0===Se.length)return(0,h.of)(!0);const rt=Se.map(ei=>{const Xt=Or(O)??X,Ii=la(ei,Xt);return Ut(function Ui(y){return y&&ne(y.canDeactivate)}(Ii)?Ii.canDeactivate(y,O,C,T):(0,i.SMS)(Xt,()=>Ii(y,O,C,T))).pipe(ut())});return(0,h.of)(rt).pipe(ta())}(X.component,X.route,C,O,T)),ut(X=>!0!==X,!0))}(rt,T,X,y).pipe((0,Q.O)(ei=>ei&&function P(y){return"boolean"==typeof y}(ei)?function gn(y,O,C,T){return(0,a.Q)(O).pipe((0,st.m)(X=>(0,R.W)(function Ka(y,O){return null!==y&&O&&O(new ra(y)),(0,h.of)(!0)}(X.route.parent,T),function La(y,O){return null!==y&&O&&O(new Sr(y)),(0,h.of)(!0)}(X.route,T),function nn(y,O,C){const T=O[O.length-1],Se=O.slice(0,O.length-1).reverse().map(rt=>function Aa(y){const O=y.routeConfig?y.routeConfig.canActivateChild:null;return O&&0!==O.length?{node:y,guards:O}:null}(rt)).filter(rt=>null!==rt).map(rt=>(0,Y.Q)(()=>{const ei=rt.guards.map(Xt=>{const Ii=Or(rt.node)??C,Zi=la(Xt,Ii);return Ut(function Ri(y){return y&&ne(y.canActivateChild)}(Zi)?Zi.canActivateChild(T,y):(0,i.SMS)(Ii,()=>Zi(T,y))).pipe(ut())});return(0,h.of)(ei).pipe(ta())}));return(0,h.of)(Se).pipe(ta())}(y,X.path,C),function us(y,O,C){const T=O.routeConfig?O.routeConfig.canActivate:null;if(!T||0===T.length)return(0,h.of)(!0);const X=T.map(Se=>(0,Y.Q)(()=>{const rt=Or(O)??C,ei=la(Se,rt);return Ut(function It(y){return y&&ne(y.canActivate)}(ei)?ei.canActivate(O,y):(0,i.SMS)(rt,()=>ei(O,y))).pipe(ut())}));return(0,h.of)(X).pipe(ta())}(y,X.route,C))),ut(X=>!0!==X,!0))}(T,Se,y,O):(0,h.of)(ei)),(0,gt.k)(ei=>({...C,guardsResult:ei})))})}(this.environmentInjector,Xt=>this.events.next(Xt)),(0,$t.y)(Xt=>{if(Se.guardsResult=Xt.guardsResult,si(Xt.guardsResult))throw gr(0,Xt.guardsResult);const Ii=new kr(Xt.id,this.urlSerializer.serialize(Xt.extractedUrl),this.urlSerializer.serialize(Xt.urlAfterRedirects),Xt.targetSnapshot,!!Xt.guardsResult);this.events.next(Ii)}),(0,et.I)(Xt=>!!Xt.guardsResult||(this.cancelNavigationTransition(Xt,"",Yt.GuardRejected),!1)),L(Xt=>{if(Xt.guards.canActivateChecks.length)return(0,h.of)(Xt).pipe((0,$t.y)(Ii=>{const Zi=new Zn(Ii.id,this.urlSerializer.serialize(Ii.extractedUrl),this.urlSerializer.serialize(Ii.urlAfterRedirects),Ii.targetSnapshot);this.events.next(Zi)}),(0,Bt.G)(Ii=>{let Zi=!1;return(0,h.of)(Ii).pipe(function Vi(y,O){return(0,Q.O)(C=>{const{targetSnapshot:T,guards:{canActivateChecks:X}}=C;if(!X.length)return(0,h.of)(C);const Se=new Set(X.map(Xt=>Xt.route)),rt=new Set;for(const Xt of Se)if(!rt.has(Xt))for(const Ii of Wr(Xt))rt.add(Ii);let ei=0;return(0,a.Q)(rt).pipe((0,st.m)(Xt=>Se.has(Xt)?function ke(y,O,C,T){const X=y.routeConfig,Se=y._resolve;return void 0!==X?.title&&!fr(X)&&(Se[j]=X.title),function de(y,O,C,T){const X=Ke(y);if(0===X.length)return(0,h.of)({});const Se={};return(0,a.Q)(X).pipe((0,Q.O)(rt=>function p(y,O,C,T){const X=Or(O)??T,Se=la(y,X);return Ut(Se.resolve?Se.resolve(O,C):(0,i.SMS)(X,()=>Se(O,C)))}(y[rt],O,C,T).pipe(ut(),(0,$t.y)(ei=>{Se[rt]=ei}))),je(1),(0,Le.e)(Se),(0,oi.a)(rt=>xr(rt)?ae.k:(0,ie.c)(rt)))}(Se,y,O,T).pipe((0,gt.k)(rt=>(y._resolvedData=rt,y.data=Hn(y,y.parent,C).resolve,null)))}(Xt,T,y,O):(Xt.data=Hn(Xt,Xt.parent,y).resolve,(0,h.of)(void 0))),(0,$t.y)(()=>ei++),je(1),(0,Q.O)(Xt=>ei===rt.size?(0,h.of)(C):ae.k))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,$t.y)({next:()=>Zi=!0,complete:()=>{Zi||this.cancelNavigationTransition(Ii,"",Yt.NoDataFromResolver)}}))}),(0,$t.y)(Ii=>{const Zi=new Vn(Ii.id,this.urlSerializer.serialize(Ii.extractedUrl),this.urlSerializer.serialize(Ii.urlAfterRedirects),Ii.targetSnapshot);this.events.next(Zi)}))}),L(Xt=>{const Ii=Zi=>{const fn=[];Zi.routeConfig?.loadComponent&&!Zi.routeConfig._loadedComponent&&fn.push(this.configLoader.loadComponent(Zi.routeConfig).pipe((0,$t.y)(Gn=>{Zi.component=Gn}),(0,gt.k)(()=>{})));for(const Gn of Zi.children)fn.push(...Ii(Gn));return fn};return(0,f.E)(Ii(Xt.targetSnapshot.root)).pipe(Re(null),(0,kt.U)(1))}),L(()=>this.afterPreactivation()),(0,Bt.G)(()=>{const{currentSnapshot:Xt,targetSnapshot:Ii}=Se,Zi=this.createViewTransition?.(this.environmentInjector,Xt.root,Ii.root);return Zi?(0,a.Q)(Zi).pipe((0,gt.k)(()=>Se)):(0,h.of)(Se)}),(0,gt.k)(Xt=>{const Ii=function Vr(y,O,C){const T=er(y,O._root,C?C._root:void 0);return new bi(T,O)}(C.routeReuseStrategy,Xt.targetSnapshot,Xt.currentRouterState);return this.currentTransition=Se={...Xt,targetRouterState:Ii},this.currentNavigation.targetRouterState=Ii,Se}),(0,$t.y)(()=>{this.events.next(new Fn)}),((y,O,C,T)=>(0,gt.k)(X=>(new Ca(O,X.targetRouterState,X.currentRouterState,C,T).activate(y),X)))(this.rootContexts,C.routeReuseStrategy,Xt=>this.events.next(Xt),this.inputBindingEnabled),(0,kt.U)(1),(0,$t.y)({next:Xt=>{rt=!0,this.lastSuccessfulNavigation=this.currentNavigation,this.events.next(new Be(Xt.id,this.urlSerializer.serialize(Xt.extractedUrl),this.urlSerializer.serialize(Xt.urlAfterRedirects))),this.titleStrategy?.updateTitle(Xt.targetRouterState.snapshot),Xt.resolve(!0)},complete:()=>{rt=!0}}),(0,ge.a)(this.transitionAbortSubject.pipe((0,$t.y)(Xt=>{throw Xt}))),(0,Ve.U)(()=>{!rt&&!ei&&this.cancelNavigationTransition(Se,"",Yt.SupersededByNewNavigation),this.currentTransition?.id===Se.id&&(this.currentNavigation=null,this.currentTransition=null)}),(0,oi.a)(Xt=>{if(ei=!0,ya(Xt))this.events.next(new ji(Se.id,this.urlSerializer.serialize(Se.extractedUrl),Xt.message,Xt.cancellationCode)),function Hi(y){return ya(y)&&si(y.url)}(Xt)?this.events.next(new _n(Xt.url)):Se.resolve(!1);else{this.events.next(new qn(Se.id,this.urlSerializer.serialize(Se.extractedUrl),Xt,Se.targetSnapshot??void 0));try{Se.resolve(C.errorHandler(Xt))}catch(Ii){this.options.resolveNavigationPromiseOnError?Se.resolve(!1):Se.reject(Ii)}}return ae.k}))}))}cancelNavigationTransition(C,T,X){const Se=new ji(C.id,this.urlSerializer.serialize(C.extractedUrl),T,X);this.events.next(Se),C.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){return this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))).toString()!==this.currentTransition?.extractedUrl.toString()&&!this.currentTransition?.extras.skipLocationChange}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();function Qt(y){return y!==mi}let hi=(()=>{class y{static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:()=>(0,i.uUt)(Tn),providedIn:"root"})}return y})();class Ai{shouldDetach(O){return!1}store(O,C){}shouldAttach(O){return!1}retrieve(O){return null}shouldReuseRoute(O,C){return O.routeConfig===C.routeConfig}}let Tn=(()=>{class y extends Ai{static#e=this.\u0275fac=(()=>{let C;return function(X){return(C||(C=i.otF(y)))(X||y)}})();static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})(),An=(()=>{class y{static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:()=>(0,i.uUt)(Ln),providedIn:"root"})}return y})(),Ln=(()=>{class y extends An{constructor(){super(...arguments),this.location=(0,i.uUt)(tt.oB),this.urlSerializer=(0,i.uUt)(vt),this.options=(0,i.uUt)(dt,{optional:!0})||{},this.canceledNavigationResolution=this.options.canceledNavigationResolution||"replace",this.urlHandlingStrategy=(0,i.uUt)(Mn),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.currentUrlTree=new pt,this.rawUrlTree=this.currentUrlTree,this.currentPageId=0,this.lastSuccessfulId=-1,this.routerState=Pi(null),this.stateMemento=this.createStateMemento()}getCurrentUrlTree(){return this.currentUrlTree}getRawUrlTree(){return this.rawUrlTree}restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}getRouterState(){return this.routerState}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}registerNonRouterCurrentEntryChangeListener(C){return this.location.subscribe(T=>{"popstate"===T.type&&C(T.url,T.state)})}handleRouterEvent(C,T){if(C instanceof K)this.stateMemento=this.createStateMemento();else if(C instanceof sn)this.rawUrlTree=T.initialUrl;else if(C instanceof en){if("eager"===this.urlUpdateStrategy&&!T.extras.skipLocationChange){const X=this.urlHandlingStrategy.merge(T.finalUrl,T.initialUrl);this.setBrowserUrl(X,T)}}else C instanceof Fn?(this.currentUrlTree=T.finalUrl,this.rawUrlTree=this.urlHandlingStrategy.merge(T.finalUrl,T.initialUrl),this.routerState=T.targetRouterState,"deferred"===this.urlUpdateStrategy&&(T.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,T))):C instanceof ji&&(C.code===Yt.GuardRejected||C.code===Yt.NoDataFromResolver)?this.restoreHistory(T):C instanceof qn?this.restoreHistory(T,!0):C instanceof Be&&(this.lastSuccessfulId=C.id,this.currentPageId=this.browserPageId)}setBrowserUrl(C,T){const X=this.urlSerializer.serialize(C);if(this.location.isCurrentPathEqualTo(X)||T.extras.replaceUrl){const rt={...T.extras.state,...this.generateNgRouterState(T.id,this.browserPageId)};this.location.replaceState(X,"",rt)}else{const Se={...T.extras.state,...this.generateNgRouterState(T.id,this.browserPageId+1)};this.location.go(X,"",Se)}}restoreHistory(C,T=!1){if("computed"===this.canceledNavigationResolution){const Se=this.currentPageId-this.browserPageId;0!==Se?this.location.historyGo(Se):this.currentUrlTree===C.finalUrl&&0===Se&&(this.resetState(C),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(T&&this.resetState(C),this.resetUrlToCurrentUrlTree())}resetState(C){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,C.finalUrl??this.rawUrlTree)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(C,T){return"computed"===this.canceledNavigationResolution?{navigationId:C,\u0275routerPageId:T}:{navigationId:C}}static#e=this.\u0275fac=(()=>{let C;return function(X){return(C||(C=i.otF(y)))(X||y)}})();static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();var Ki=function(y){return y[y.COMPLETE=0]="COMPLETE",y[y.FAILED=1]="FAILED",y[y.REDIRECTING=2]="REDIRECTING",y}(Ki||{});function On(y,O){y.events.pipe((0,et.I)(C=>C instanceof Be||C instanceof ji||C instanceof qn||C instanceof sn),(0,gt.k)(C=>C instanceof Be||C instanceof sn?Ki.COMPLETE:C instanceof ji&&(C.code===Yt.Redirect||C.code===Yt.SupersededByNewNavigation)?Ki.REDIRECTING:Ki.FAILED),(0,et.I)(C=>C!==Ki.REDIRECTING),(0,kt.U)(1)).subscribe(()=>{O()})}function Dn(y){throw y}const sr={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},Yr={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let Qn=(()=>{class y{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}constructor(){this.disposed=!1,this.isNgZoneEnabled=!1,this.console=(0,i.uUt)(i.oPY),this.stateManager=(0,i.uUt)(An),this.options=(0,i.uUt)(dt,{optional:!0})||{},this.pendingTasks=(0,i.uUt)(i.g9Y),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.navigationTransitions=(0,i.uUt)(ft),this.urlSerializer=(0,i.uUt)(vt),this.location=(0,i.uUt)(tt.oB),this.urlHandlingStrategy=(0,i.uUt)(Mn),this._events=new Ee.E,this.errorHandler=this.options.errorHandler||Dn,this.navigated=!1,this.routeReuseStrategy=(0,i.uUt)(hi),this.onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore",this.config=(0,i.uUt)(jt,{optional:!0})?.flat()??[],this.componentInputBindingEnabled=!!(0,i.uUt)(xn,{optional:!0}),this.eventsSubscription=new Ge.wH,this.isNgZoneEnabled=(0,i.uUt)(i.WW2)instanceof i.WW2&&i.WW2.isInAngularZone(),this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this,this.currentUrlTree,this.routerState).subscribe({error:C=>{this.console.warn(C)}}),this.subscribeToNavigationEvents()}subscribeToNavigationEvents(){const C=this.navigationTransitions.events.subscribe(T=>{try{const X=this.navigationTransitions.currentTransition,Se=this.navigationTransitions.currentNavigation;if(null!==X&&null!==Se)if(this.stateManager.handleRouterEvent(T,Se),T instanceof ji&&T.code!==Yt.Redirect&&T.code!==Yt.SupersededByNewNavigation)this.navigated=!0;else if(T instanceof Be)this.navigated=!0;else if(T instanceof _n){const rt=this.urlHandlingStrategy.merge(T.url,X.currentRawUrl),ei={info:X.extras.info,skipLocationChange:X.extras.skipLocationChange,replaceUrl:"eager"===this.urlUpdateStrategy||Qt(X.source)};this.scheduleNavigation(rt,mi,null,ei,{resolve:X.resolve,reject:X.reject,promise:X.promise})}(function Jn(y){return!(y instanceof Fn||y instanceof _n)})(T)&&this._events.next(T)}catch(X){this.navigationTransitions.transitionAbortSubject.next(X)}});this.eventsSubscription.add(C)}resetRootComponentType(C){this.routerState.root.component=C,this.navigationTransitions.rootComponentType=C}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),mi,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((C,T)=>{setTimeout(()=>{this.navigateToSyncWithBrowser(C,"popstate",T)},0)})}navigateToSyncWithBrowser(C,T,X){const Se={replaceUrl:!0},rt=X?.navigationId?X:null;if(X){const Xt={...X};delete Xt.navigationId,delete Xt.\u0275routerPageId,0!==Object.keys(Xt).length&&(Se.state=Xt)}const ei=this.parseUrl(C);this.scheduleNavigation(ei,T,rt,Se)}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.navigationTransitions.currentNavigation}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(C){this.config=C.map(mr),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(C,T={}){const{relativeTo:X,queryParams:Se,fragment:rt,queryParamsHandling:ei,preserveFragment:Xt}=T,Ii=Xt?this.currentUrlTree.fragment:rt;let fn,Zi=null;switch(ei){case"merge":Zi={...this.currentUrlTree.queryParams,...Se};break;case"preserve":Zi=this.currentUrlTree.queryParams;break;default:Zi=Se||null}null!==Zi&&(Zi=this.removeEmptyProps(Zi));try{fn=Ti(X?X.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof C[0]||!C[0].startsWith("/"))&&(C=[]),fn=this.currentUrlTree.root}return Fi(fn,C,Zi,Ii??null)}navigateByUrl(C,T={skipLocationChange:!1}){const X=si(C)?C:this.parseUrl(C),Se=this.urlHandlingStrategy.merge(X,this.rawUrlTree);return this.scheduleNavigation(Se,mi,null,T)}navigate(C,T={skipLocationChange:!1}){return function Oa(y){for(let O=0;O(null!=Se&&(T[X]=Se),T),{})}scheduleNavigation(C,T,X,Se,rt){if(this.disposed)return Promise.resolve(!1);let ei,Xt,Ii;rt?(ei=rt.resolve,Xt=rt.reject,Ii=rt.promise):Ii=new Promise((fn,Gn)=>{ei=fn,Xt=Gn});const Zi=this.pendingTasks.add();return On(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Zi))}),this.navigationTransitions.handleNavigationRequest({source:T,restoredState:X,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:C,extras:Se,resolve:ei,reject:Xt,promise:Ii,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),Ii.catch(fn=>Promise.reject(fn))}static#e=this.\u0275fac=function(T){return new(T||y)};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})(),vr=(()=>{class y{constructor(C,T,X,Se,rt,ei){this.router=C,this.route=T,this.tabIndexAttribute=X,this.renderer=Se,this.el=rt,this.locationStrategy=ei,this.href=null,this.commands=null,this.onChanges=new Ee.E,this.preserveFragment=!1,this.skipLocationChange=!1,this.replaceUrl=!1;const Xt=rt.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===Xt||"area"===Xt,this.isAnchorElement?this.subscription=C.events.subscribe(Ii=>{Ii instanceof Be&&this.updateHref()}):this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(C){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",C)}ngOnChanges(C){this.isAnchorElement&&this.updateHref(),this.onChanges.next(this)}set routerLink(C){null!=C?(this.commands=Array.isArray(C)?C:[C],this.setTabIndexIfNotOnNativeEl("0")):(this.commands=null,this.setTabIndexIfNotOnNativeEl(null))}onClick(C,T,X,Se,rt){const ei=this.urlTree;return!!(null===ei||this.isAnchorElement&&(0!==C||T||X||Se||rt||"string"==typeof this.target&&"_self"!=this.target))||(this.router.navigateByUrl(ei,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info}),!this.isAnchorElement)}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const C=this.urlTree;this.href=null!==C&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(C)):null;const T=null===this.href?null:(0,i.YFg)(this.href,this.el.nativeElement.tagName.toLowerCase(),"href");this.applyAttributeValue("href",T)}applyAttributeValue(C,T){const X=this.renderer,Se=this.el.nativeElement;null!==T?X.setAttribute(Se,C,T):X.removeAttribute(Se,C)}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}static#e=this.\u0275fac=function(T){return new(T||y)(i.GI1(Qn),i.GI1(Un),i.gJ8("tabindex"),i.GI1(i.q87),i.GI1(i.GMv),i.GI1(tt.Qd))};static#t=this.\u0275dir=i.Sc5({type:y,selectors:[["","routerLink",""]],hostVars:1,hostBindings:function(T,X){1&T&&i.qCj("click",function(rt){return X.onClick(rt.button,rt.ctrlKey,rt.shiftKey,rt.altKey,rt.metaKey)}),2&T&&i.e48("target",X.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[i.Wk5.HasDecoratorInputTransform,"preserveFragment","preserveFragment",i.cZD],skipLocationChange:[i.Wk5.HasDecoratorInputTransform,"skipLocationChange","skipLocationChange",i.cZD],replaceUrl:[i.Wk5.HasDecoratorInputTransform,"replaceUrl","replaceUrl",i.cZD],routerLink:"routerLink"},standalone:!0,features:[i.QJr,i.SYr]})}return y})(),vn=(()=>{class y{get isActive(){return this._isActive}constructor(C,T,X,Se,rt){this.router=C,this.element=T,this.renderer=X,this.cdr=Se,this.link=rt,this.classes=[],this._isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new i._w7,this.routerEventsSubscription=C.events.subscribe(ei=>{ei instanceof Be&&this.update()})}ngAfterContentInit(){(0,h.of)(this.links.changes,(0,h.of)(null)).pipe((0,xt.u)()).subscribe(C=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const C=[...this.links.toArray(),this.link].filter(T=>!!T).map(T=>T.onChanges);this.linkInputChangesSubscription=(0,a.Q)(C).pipe((0,xt.u)()).subscribe(T=>{this._isActive!==this.isLinkActive(this.router)(T)&&this.update()})}set routerLinkActive(C){const T=Array.isArray(C)?C:C.split(" ");this.classes=T.filter(X=>!!X)}ngOnChanges(C){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const C=this.hasActiveLinks();this._isActive!==C&&(this._isActive=C,this.cdr.markForCheck(),this.classes.forEach(T=>{C?this.renderer.addClass(this.element.nativeElement,T):this.renderer.removeClass(this.element.nativeElement,T)}),C&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this.isActiveChange.emit(C))})}isLinkActive(C){const T=function Ra(y){return!!y.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return X=>{const Se=X.urlTree;return!!Se&&C.isActive(Se,T)}}hasActiveLinks(){const C=this.isLinkActive(this.router);return this.link&&C(this.link)||this.links.some(C)}static#e=this.\u0275fac=function(T){return new(T||y)(i.GI1(Qn),i.GI1(i.GMv),i.GI1(i.q87),i.GI1(i.kD9),i.GI1(vr,8))};static#t=this.\u0275dir=i.Sc5({type:y,selectors:[["","routerLinkActive",""]],contentQueries:function(T,X,Se){if(1&T&&i.szK(Se,vr,5),2&T){let rt;i.wto(rt=i.Gqi())&&(X.links=rt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],standalone:!0,features:[i.SYr]})}return y})();class qa{}let so=(()=>{class y{constructor(C,T,X,Se,rt){this.router=C,this.injector=X,this.preloadingStrategy=Se,this.loader=rt}setUpPreloading(){this.subscription=this.router.events.pipe((0,et.I)(C=>C instanceof Be),(0,st.m)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(C,T){const X=[];for(const Se of T){Se.providers&&!Se._injector&&(Se._injector=(0,i.SIz)(Se.providers,C,`Route: ${Se.path}`));const rt=Se._injector??C,ei=Se._loadedInjector??rt;(Se.loadChildren&&!Se._loadedRoutes&&void 0===Se.canLoad||Se.loadComponent&&!Se._loadedComponent)&&X.push(this.preloadConfig(rt,Se)),(Se.children||Se._loadedRoutes)&&X.push(this.processRoutes(ei,Se.children??Se._loadedRoutes))}return(0,a.Q)(X).pipe((0,xt.u)())}preloadConfig(C,T){return this.preloadingStrategy.preload(T,()=>{let X;X=T.loadChildren&&void 0===T.canLoad?this.loader.loadChildren(C,T):(0,h.of)(null);const Se=X.pipe((0,Q.O)(rt=>null===rt?(0,h.of)(void 0):(T._loadedRoutes=rt.routes,T._loadedInjector=rt.injector,this.processRoutes(rt.injector??C,rt.routes))));if(T.loadComponent&&!T._loadedComponent){const rt=this.loader.loadComponent(T);return(0,a.Q)([Se,rt]).pipe((0,xt.u)())}return Se})}static#e=this.\u0275fac=function(T){return new(T||y)(i.CoB(Qn),i.CoB(i.ESV),i.CoB(i.SIe),i.CoB(qa),i.CoB(ci))};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac,providedIn:"root"})}return y})();const Ms=new i.UbH("");let hs=(()=>{class y{constructor(C,T,X,Se,rt={}){this.urlSerializer=C,this.transitions=T,this.viewportScroller=X,this.zone=Se,this.options=rt,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},rt.scrollPositionRestoration||="disabled",rt.anchorScrolling||="disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(C=>{C instanceof K?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=C.navigationTrigger,this.restoredId=C.restoredState?C.restoredState.navigationId:0):C instanceof Be?(this.lastId=C.id,this.scheduleScrollEvent(C,this.urlSerializer.parse(C.urlAfterRedirects).fragment)):C instanceof sn&&C.code===wi.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(C,this.urlSerializer.parse(C.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(C=>{C instanceof Xi&&(C.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(C.position):C.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(C.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(C,T){this.zone.runOutsideAngular(()=>{setTimeout(()=>{this.zone.run(()=>{this.transitions.events.next(new Xi(C,"popstate"===this.lastSource?this.store[this.restoredId]:null,T))})},0)})}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static#e=this.\u0275fac=function(T){i.KEo()};static#t=this.\u0275prov=i.wxM({token:y,factory:y.\u0275fac})}return y})();function zr(y,O){return{\u0275kind:y,\u0275providers:O}}function Xa(){const y=(0,i.uUt)(i.zZn);return O=>{const C=y.get(i.Swk);if(O!==C.components[0])return;const T=y.get(Qn),X=y.get(Rs);1===y.get(es)&&T.initialNavigation(),y.get(Fs,null,i._6O.Optional)?.setUpPreloading(),y.get(Ms,null,i._6O.Optional)?.init(),T.resetRootComponentType(C.componentTypes[0]),X.closed||(X.next(),X.complete(),X.unsubscribe())}}const Rs=new i.UbH("",{factory:()=>new Ee.E}),es=new i.UbH("",{providedIn:"root",factory:()=>1}),Fs=new i.UbH("");function hc(y){return zr(0,[{provide:Fs,useExisting:so},{provide:qa,useExisting:y}])}function lo(y){return zr(9,[{provide:D,useValue:F},{provide:he,useValue:{skipNextTransition:!!y?.skipInitialTransition,...y}}])}const ps=new i.UbH("ROUTER_FORROOT_GUARD"),fs=[tt.oB,{provide:vt,useClass:Mt},Qn,Ir,{provide:Un,useFactory:function oo(y){return y.routerState.root},deps:[Qn]},ci,[]];let ul=(()=>{class y{constructor(C){}static forRoot(C,T){return{ngModule:y,providers:[fs,[],{provide:jt,multi:!0,useValue:C},{provide:ps,useFactory:_s,deps:[[Qn,new i.T7N,new i.Qfh]]},{provide:dt,useValue:T||{}},T?.useHash?{provide:tt.Qd,useClass:tt.MP}:{provide:tt.Qd,useClass:tt.uC},{provide:Ms,useFactory:()=>{const y=(0,i.uUt)(tt.YZ),O=(0,i.uUt)(i.WW2),C=(0,i.uUt)(dt),T=(0,i.uUt)(ft),X=(0,i.uUt)(vt);return C.scrollOffset&&y.setOffset(C.scrollOffset),new hs(X,T,y,O,C)}},T?.preloadingStrategy?hc(T.preloadingStrategy).\u0275providers:[],T?.initialNavigation?Ys(T):[],T?.bindToComponentInputs?zr(8,[_r,{provide:xn,useExisting:_r}]).\u0275providers:[],T?.enableViewTransitions?lo().\u0275providers:[],[{provide:uo,useFactory:Xa},{provide:i.qid,multi:!0,useExisting:uo}]]}}static forChild(C){return{ngModule:y,providers:[{provide:jt,multi:!0,useValue:C}]}}static#e=this.\u0275fac=function(T){return new(T||y)(i.CoB(ps,8))};static#t=this.\u0275mod=i.a4G({type:y});static#i=this.\u0275inj=i.s3X({})}return y})();function _s(y){return"guarded"}function Ys(y){return["disabled"===y.initialNavigation?zr(3,[{provide:i.kZF,multi:!0,useFactory:()=>{const O=(0,i.uUt)(Qn);return()=>{O.setUpLocationChangeListener()}}},{provide:es,useValue:2}]).\u0275providers:[],"enabledBlocking"===y.initialNavigation?zr(2,[{provide:es,useValue:0},{provide:i.kZF,multi:!0,deps:[i.zZn],useFactory:O=>{const C=O.get(tt.mQ,Promise.resolve());return()=>C.then(()=>new Promise(T=>{const X=O.get(Qn),Se=O.get(Rs);On(X,()=>{T(!0)}),O.get(ft).afterPreactivation=()=>(T(!0),Se.closed?(0,h.of)(void 0):Se),X.initialNavigation()}))}}]).\u0275providers:[]]}const uo=new i.UbH("")},8656:(lt,me,d)=>{"use strict";d.d(me,{is:()=>be,QF:()=>xt,qI:()=>Ve});var i=d(7048),s=d(2116),a=d(2700),h=d(6700),l=d(1116),f=d(3800),g=d(4548),b=d(6684),R=d(4704),Y=d(5448),J=d(7773),ie=d(528),ae=d(560),Ee=d(832),Ge=d(9144),tt=d(3639),gt=d(3992),Bt={},kt={};function Ye(j){for(var we=[],N=0,U=0,Fe=0;Fe>>=1,we.push(Lt?0===U?-2147483648:-U:U),U=N=0}}return we}"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".split("").forEach(function(j,we){Bt[j]=we,kt[we]=j});var _e=d(1368);const ye="TOKEN_LOGGER_CONFIG";class Re{constructor(we){this.config=this._clone(we)}get level(){return this.config.level}get serverLogLevel(){return this.config.serverLogLevel}updateConfig(we){this.config=this._clone(we)}partialUpdateConfig(we){we&&Object.keys(we).forEach(N=>{this.config[N]=we[N]})}getConfig(){return this._clone(this.config)}_clone(we){const N={level:null};return Object.keys(we).forEach(U=>{N[U]=we[U]}),N}}const Xe="TOKEN_LOGGER_CONFIG_ENGINE_FACTORY";class $e{provideConfigEngine(we){return new Re(we)}}const oe="TOKEN_LOGGER_MAPPER_SERVICE";let ut=(()=>{class j{constructor(N){this.httpBackend=N,this.sourceMapCache=new Map,this.logPositionCache=new Map}getLogPosition(N,U){const Fe=this.getStackLine(N);if(!Fe)return(0,a.of)({fileName:"",lineNumber:0,columnNumber:0});const Tt=this.getLocalPosition(Fe);if(!N.enableSourceMaps)return(0,a.of)(Tt);const Ke=this.getSourceMapLocation(Fe);return this.getSourceMap(Ke,Tt)}getStackLine(N){const U=new Error;try{throw U}catch{try{let Tt=4;return U.stack.split("\n")[0].includes(".js:")||(Tt+=1),U.stack.split("\n")[Tt+(N.proxiedSteps||0)]}catch{return null}}}getLocalPosition(N){const U=N.lastIndexOf("/");let Fe=N.indexOf(")");Fe<0&&(Fe=void 0);const Ke=N.substring(U+1,Fe).split(":");return 3===Ke.length?{fileName:Ke[0],lineNumber:+Ke[1],columnNumber:+Ke[2]}:{fileName:"unknown",lineNumber:0,columnNumber:0}}getTranspileLocation(N){let U=N.indexOf("(");U<0&&(U=N.lastIndexOf("@"),U<0&&(U=N.lastIndexOf(" ")));let Fe=N.indexOf(")");return Fe<0&&(Fe=void 0),N.substring(U+1,Fe)}getSourceMapLocation(N){const U=this.getTranspileLocation(N),Fe=U.substring(0,U.lastIndexOf(":"));return Fe.substring(0,Fe.lastIndexOf(":"))+".map"}getMapping(N,U){let Fe=0,Tt=0,Ke=0;const Lt=N.mappings.split(";");for(let Kt=0;Kt=4&&(Ut+=wt[0],Fe+=wt[1],Tt+=wt[2],Ke+=wt[3]),Kt===U.lineNumber){if(Ut===U.columnNumber)return{fileName:N.sources[Fe],lineNumber:Tt,columnNumber:Ke};if(Mi+1===ni.length)return{fileName:N.sources[Fe],lineNumber:Tt,columnNumber:0}}}}return{fileName:"unknown",lineNumber:0,columnNumber:0}}getSourceMap(N,U){const Fe=new i.i("GET",N),Tt=`${U.fileName}:${U.lineNumber}:${U.columnNumber}`;if(this.logPositionCache.has(Tt))return this.logPositionCache.get(Tt);this.sourceMapCache.has(N)||(this.httpBackend?this.sourceMapCache.set(N,this.httpBackend.handle(Fe).pipe((0,b.I)(Lt=>Lt instanceof i.WA),(0,R.k)(Lt=>Lt.body),function Ie(j=1/0){let we;we=j&&"object"==typeof j?j:{count:j};const{count:N=1/0,delay:U,resetOnSuccess:Fe=!1}=we;return N<=0?ie.Z:(0,Y.i)((Tt,Ke)=>{let Kt,Lt=0;const Ut=()=>{let ni=!1;Kt=Tt.subscribe((0,J.e)(Ke,Mi=>{Fe&&(Lt=0),Ke.next(Mi)},void 0,Mi=>{if(Lt++{Kt?(Kt.unsubscribe(),Kt=null,Ut()):ni=!0};if(null!=U){const zt="number"==typeof U?(0,g.k)(U):(0,ae.Uv)(U(Mi,Lt)),Dt=(0,J.e)(Ke,()=>{Dt.unsubscribe(),wt()},()=>{Ke.complete()});zt.subscribe(Dt)}else wt()}else Ke.error(Mi)})),ni&&(Kt.unsubscribe(),Kt=null,Ut())};Ut()})}(3),(0,Ee.C)(1))):(console.error("NGXLogger : Can't get sourcemap because HttpBackend is not provided. You need to import HttpClientModule"),this.sourceMapCache.set(N,(0,a.of)(null))));const Ke=this.sourceMapCache.get(N).pipe((0,R.k)(Lt=>Lt?this.getMapping(Lt,U):U),(0,Ge.a)(()=>(0,a.of)(U)),(0,Ee.C)(1));return this.logPositionCache.set(Tt,Ke),Ke}}return j.\u0275fac=function(N){return new(N||j)(s.CoB(i.m,8))},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac}),j})();const st="TOKEN_LOGGER_METADATA_SERVICE";let $t=(()=>{class j{constructor(N){this.datePipe=N}computeTimestamp(N){const U=()=>(new Date).toISOString();return N.timestampFormat?this.datePipe?this.datePipe.transform(new Date,N.timestampFormat):(console.error("NGXLogger : Can't use timeStampFormat because DatePipe is not provided. You need to provide DatePipe"),U()):U()}getMetadata(N,U,Fe,Tt){const Ke={level:N,additional:Tt};return Ke.message=Fe&&"function"==typeof Fe?Fe():Fe,Ke.timestamp=this.computeTimestamp(U),Ke}}return j.\u0275fac=function(N){return new(N||j)(s.CoB(_e.y,8))},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac}),j})();const Jt="TOKEN_LOGGER_RULES_SERVICE";let vi=(()=>{class j{shouldCallWriter(N,U,Fe,Tt){return!U.disableConsoleLogging&&N>=U.level}shouldCallServer(N,U,Fe,Tt){return!!U.serverLoggingUrl&&N>=U.serverLogLevel}shouldCallMonitor(N,U,Fe,Tt){return this.shouldCallWriter(N,U,Fe,Tt)||this.shouldCallServer(N,U,Fe,Tt)}}return j.\u0275fac=function(N){return new(N||j)},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac}),j})();const je="TOKEN_LOGGER_SERVER_SERVICE";let De=(()=>{class j{constructor(N,U){this.httpBackend=N,this.ngZone=U,this.serverCallsQueue=[],this.flushingQueue=new h.g(!1)}ngOnDestroy(){this.flushingQueue&&(this.flushingQueue.complete(),this.flushingQueue=null),this.addToQueueTimer&&(this.addToQueueTimer.unsubscribe(),this.addToQueueTimer=null)}secureErrorObject(N){return N?.stack}secureAdditionalParameters(N){return null==N?null:N.map((U,Fe)=>{try{return U instanceof Error?this.secureErrorObject(U):("object"==typeof U&&JSON.stringify(U),U)}catch{return`The additional[${Fe}] value could not be parsed using JSON.stringify().`}})}secureMessage(N){try{if(N instanceof Error)return this.secureErrorObject(N);"string"!=typeof N&&(N=JSON.stringify(N,null,2))}catch{N='The provided "message" value could not be parsed with JSON.stringify().'}return N}alterHttpRequest(N){return N}logOnServer(N,U,Fe){if(!this.httpBackend)return console.error("NGXLogger : Can't log on server because HttpBackend is not provided. You need to import HttpClientModule"),(0,a.of)(null);let Tt=new i.i("POST",N,U,Fe||{}),Ke=(0,a.of)(Tt);const Lt=this.alterHttpRequest(Tt);return(0,l.X)(Lt)?Ke=Lt:Lt?Ke=(0,a.of)(Lt):console.warn("NGXLogger : alterHttpRequest returned an invalid request. Using default one instead"),Ke.pipe((0,tt.m)(Kt=>Kt?this.httpBackend.handle(Kt):(console.warn("NGXLogger : alterHttpRequest returned an invalid request (observable). Using default one instead"),this.httpBackend.handle(Tt))),(0,b.I)(Kt=>Kt instanceof i.WA),(0,R.k)(Kt=>Kt.body))}customiseRequestBody(N){return N}flushQueue(N){this.flushingQueue.next(!0),this.addToQueueTimer&&(this.addToQueueTimer.unsubscribe(),this.addToQueueTimer=null),this.serverCallsQueue&&this.serverCallsQueue.length>0&&this.sendToServerAction(this.serverCallsQueue,N),this.serverCallsQueue=[],this.flushingQueue.next(!1)}sendToServerAction(N,U){let Fe;const Tt=Kt=>{const Ut={...Kt};return Ut.additional=this.secureAdditionalParameters(Ut.additional),Ut.message=this.secureMessage(Ut.message),Ut};Array.isArray(N)?(Fe=[],N.forEach(Kt=>{Fe.push(Tt(Kt))})):Fe=Tt(N),Fe=this.customiseRequestBody(Fe);const Ke=U.customHttpHeaders||new i.UD;Ke.has("Content-Type")||Ke.set("Content-Type","application/json");const Lt=()=>{this.logOnServer(U.serverLoggingUrl,Fe,{headers:Ke,params:U.customHttpParams||new i.i4,responseType:U.httpResponseType||"json",withCredentials:U.withCredentials||!1}).pipe((0,Ge.a)(Kt=>(console.error("NGXLogger: Failed to log on server",Kt),(0,f.c)(Kt)))).subscribe()};if(!0===U.serverCallsOutsideNgZone){if(!this.ngZone)return void console.error("NGXLogger: NgZone is not provided and serverCallsOutsideNgZone is set to true");this.ngZone.runOutsideAngular(Lt)}else Lt()}sendToServer(N,U){if((!U.serverCallsBatchSize||U.serverCallsBatchSize<=0)&&(!U.serverCallsTimer||U.serverCallsTimer<=0))return void this.sendToServerAction(N,U);const Fe=()=>{this.serverCallsQueue.push({...N}),U.serverCallsBatchSize&&this.serverCallsQueue.length>U.serverCallsBatchSize&&this.flushQueue(U),U.serverCallsTimer>0&&!this.addToQueueTimer&&(this.addToQueueTimer=(0,g.k)(U.serverCallsTimer).subscribe(Tt=>{this.flushQueue(U)}))};!0===this.flushingQueue.value?this.flushingQueue.pipe((0,b.I)(Tt=>!1===Tt),(0,gt.U)(1)).subscribe(Tt=>{Fe()}):Fe()}}return j.\u0275fac=function(N){return new(N||j)(s.CoB(i.m,8),s.CoB(s.WW2,8))},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac}),j})();const Le="TOKEN_LOGGER_WRITER_SERVICE";var Ve=function(j){return j[j.TRACE=0]="TRACE",j[j.DEBUG=1]="DEBUG",j[j.INFO=2]="INFO",j[j.LOG=3]="LOG",j[j.WARN=4]="WARN",j[j.ERROR=5]="ERROR",j[j.FATAL=6]="FATAL",j[j.OFF=7]="OFF",j}(Ve||{});const te=["purple","teal","gray","gray","red","red","red"];let ge=(()=>{class j{constructor(N){this.platformId=N,this.prepareMetaStringFuncs=[this.getTimestampToWrite,this.getLevelToWrite,this.getFileDetailsToWrite,this.getContextToWrite],this.isIE=(0,_e.c0)(N)&&navigator&&navigator.userAgent&&!(-1===navigator.userAgent.indexOf("MSIE")&&!navigator.userAgent.match(/Trident\//)&&!navigator.userAgent.match(/Edge\//)),this.logFunc=this.isIE?this.logIE.bind(this):this.logModern.bind(this)}getTimestampToWrite(N,U){return N.timestamp}getLevelToWrite(N,U){return Ve[N.level]}getFileDetailsToWrite(N,U){return!0===U.disableFileDetails?"":`[${N.fileName}:${N.lineNumber}:${N.columnNumber}]`}getContextToWrite(N,U){return U.context?`{${U.context}}`:""}prepareMetaString(N,U){let Fe="";return this.prepareMetaStringFuncs.forEach(Tt=>{const Ke=Tt(N,U);Ke&&(Fe=Fe+" "+Ke)}),Fe.trim()}getColor(N,U){if(N.level!==Ve.OFF)return(U.colorScheme??te)[N.level]}logIE(N,U,Fe){const Tt=N.additional||[];switch(N.level){case Ve.WARN:console.warn(`${Fe} `,N.message,...Tt);break;case Ve.ERROR:case Ve.FATAL:console.error(`${Fe} `,N.message,...Tt);break;case Ve.INFO:console.info(`${Fe} `,N.message,...Tt);break;default:console.log(`${Fe} `,N.message,...Tt)}}logModern(N,U,Fe){const Tt=this.getColor(N,U),Ke=N.additional||[];switch(N.level){case Ve.WARN:console.warn(`%c${Fe}`,`color:${Tt}`,N.message,...Ke);break;case Ve.ERROR:case Ve.FATAL:console.error(`%c${Fe}`,`color:${Tt}`,N.message,...Ke);break;case Ve.INFO:console.info(`%c${Fe}`,`color:${Tt}`,N.message,...Ke);break;case Ve.DEBUG:console.debug(`%c${Fe}`,`color:${Tt}`,N.message,...Ke);break;default:console.log(`%c${Fe}`,`color:${Tt}`,N.message,...Ke)}}writeMessage(N,U){const Fe=this.prepareMetaString(N,U);this.logFunc(N,U,Fe)}}return j.\u0275fac=function(N){return new(N||j)(s.CoB(s.AHE))},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac}),j})(),xt=(()=>{class j{constructor(N,U,Fe,Tt,Ke,Lt,Kt){this.metadataService=Fe,this.ruleService=Tt,this.mapperService=Ke,this.writerService=Lt,this.serverService=Kt,this.configEngine=U.provideConfigEngine(N)}get level(){return this.configEngine.level}get serverLogLevel(){return this.configEngine.serverLogLevel}trace(N,...U){this._log(Ve.TRACE,N,U)}debug(N,...U){this._log(Ve.DEBUG,N,U)}info(N,...U){this._log(Ve.INFO,N,U)}log(N,...U){this._log(Ve.LOG,N,U)}warn(N,...U){this._log(Ve.WARN,N,U)}error(N,...U){this._log(Ve.ERROR,N,U)}fatal(N,...U){this._log(Ve.FATAL,N,U)}setCustomHttpHeaders(N){const U=this.getConfigSnapshot();U.customHttpHeaders=N,this.updateConfig(U)}setCustomParams(N){const U=this.getConfigSnapshot();U.customHttpParams=N,this.updateConfig(U)}setWithCredentialsOptionValue(N){const U=this.getConfigSnapshot();U.withCredentials=N,this.updateConfig(U)}registerMonitor(N){this._loggerMonitor=N}updateConfig(N){this.configEngine.updateConfig(N)}partialUpdateConfig(N){this.configEngine.partialUpdateConfig(N)}getConfigSnapshot(){return this.configEngine.getConfig()}flushServerQueue(){this.serverService.flushQueue(this.getConfigSnapshot())}_log(N,U,Fe=[]){const Tt=this.configEngine.getConfig(),Ke=this.ruleService.shouldCallWriter(N,Tt,U,Fe),Lt=this.ruleService.shouldCallServer(N,Tt,U,Fe),Kt=this.ruleService.shouldCallMonitor(N,Tt,U,Fe);if(!Ke&&!Lt&&!Kt)return;const Ut=this.metadataService.getMetadata(N,Tt,U,Fe);this.mapperService.getLogPosition(Tt,Ut).pipe((0,gt.U)(1)).subscribe(ni=>{ni&&(Ut.fileName=ni.fileName,Ut.lineNumber=ni.lineNumber,Ut.columnNumber=ni.columnNumber),Kt&&this._loggerMonitor&&this._loggerMonitor.onLog(Ut,Tt),Ke&&this.writerService.writeMessage(Ut,Tt),Lt&&this.serverService.sendToServer(Ut,Tt)})}}return j.\u0275fac=function(N){return new(N||j)(s.CoB(ye),s.CoB(Xe),s.CoB(st),s.CoB(Jt),s.CoB(oe),s.CoB(Le),s.CoB(je))},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac,providedIn:"root"}),j})(),Ne=(()=>{class j{constructor(N,U,Fe,Tt,Ke,Lt,Kt){this.logger=N,this.configEngineFactory=U,this.metadataService=Fe,this.ruleService=Tt,this.mapperService=Ke,this.writerService=Lt,this.serverService=Kt}create(N,U,Fe,Tt){return this.getNewInstance({config:N,serverService:U,logMonitor:Fe,mapperService:Tt})}getNewInstance(N){const U=new xt(N?.config??this.logger.getConfigSnapshot(),N?.configEngineFactory??this.configEngineFactory,N?.metadataService??this.metadataService,N?.ruleService??this.ruleService,N?.mapperService??this.mapperService,N?.writerService??this.writerService,N?.serverService??this.serverService);return N?.partialConfig&&U.partialUpdateConfig(N.partialConfig),N?.logMonitor&&U.registerMonitor(N.logMonitor),U}}return j.\u0275fac=function(N){return new(N||j)(s.CoB(xt),s.CoB(Xe),s.CoB(st),s.CoB(Jt),s.CoB(oe),s.CoB(Le),s.CoB(je))},j.\u0275prov=s.wxM({token:j,factory:j.\u0275fac,providedIn:"root"}),j})(),be=(()=>{class j{static forRoot(N,U){if(U||(U={}),U.configProvider){if(U.configProvider.provide!==ye)throw new Error(`Wrong injection token for configProvider, it should be ${ye} and you used ${U.configProvider.provide}`)}else U.configProvider={provide:ye,useValue:N||{}};if(U.configEngineFactoryProvider){if(U.configEngineFactoryProvider.provide!==Xe)throw new Error(`Wrong injection token for configEngineFactoryProvider, it should be '${Xe}' and you used '${U.configEngineFactoryProvider.provide}'`)}else U.configEngineFactoryProvider={provide:Xe,useClass:$e};if(U.metadataProvider){if(U.metadataProvider.provide!==st)throw new Error(`Wrong injection token for metadataProvider, it should be '${st}' and you used '${U.metadataProvider.provide}'`)}else U.metadataProvider={provide:st,useClass:$t};if(U.ruleProvider){if(U.ruleProvider.provide!==Jt)throw new Error(`Wrong injection token for ruleProvider, it should be '${Jt}' and you used '${U.ruleProvider.provide}'`)}else U.ruleProvider={provide:Jt,useClass:vi};if(U.mapperProvider){if(U.mapperProvider.provide!==oe)throw new Error(`Wrong injection token for mapperProvider, it should be '${oe}' and you used '${U.mapperProvider.provide}'`)}else U.mapperProvider={provide:oe,useClass:ut};if(U.writerProvider){if(U.writerProvider.provide!==Le)throw new Error(`Wrong injection token for writerProvider, it should be '${Le}' and you used '${U.writerProvider.provide}'`)}else U.writerProvider={provide:Le,useClass:ge};if(U.serverProvider){if(U.serverProvider.provide!==je)throw new Error(`Wrong injection token for serverProvider, it should be '${je}' and you used '${U.writerProvider.provide}'`)}else U.serverProvider={provide:je,useClass:De};return{ngModule:j,providers:[xt,U.configProvider,U.configEngineFactoryProvider,U.metadataProvider,U.ruleProvider,U.mapperProvider,U.writerProvider,U.serverProvider,Ne]}}static forChild(){return{ngModule:j}}}return j.\u0275fac=function(N){return new(N||j)},j.\u0275mod=s.a4G({type:j}),j.\u0275inj=s.s3X({imports:[[_e.MD]]}),j})()},7564:(lt,me,d)=>{"use strict";d.d(me,{MV:()=>Ie,U3:()=>tt,kT:()=>gt});var i=d(2116),s=d(5657),a=d(1368);let b=(()=>class Ye{static STARTS_WITH="startsWith";static CONTAINS="contains";static NOT_CONTAINS="notContains";static ENDS_WITH="endsWith";static EQUALS="equals";static NOT_EQUALS="notEquals";static IN="in";static LESS_THAN="lt";static LESS_THAN_OR_EQUAL_TO="lte";static GREATER_THAN="gt";static GREATER_THAN_OR_EQUAL_TO="gte";static BETWEEN="between";static IS="is";static IS_NOT="isNot";static BEFORE="before";static AFTER="after";static DATE_IS="dateIs";static DATE_IS_NOT="dateIsNot";static DATE_BEFORE="dateBefore";static DATE_AFTER="dateAfter"})(),Ie=(()=>{class Ye{ripple=!1;inputStyle="outlined";overlayOptions={};filterMatchModeOptions={text:[b.STARTS_WITH,b.CONTAINS,b.NOT_CONTAINS,b.ENDS_WITH,b.EQUALS,b.NOT_EQUALS],numeric:[b.EQUALS,b.NOT_EQUALS,b.LESS_THAN,b.LESS_THAN_OR_EQUAL_TO,b.GREATER_THAN,b.GREATER_THAN_OR_EQUAL_TO],date:[b.DATE_IS,b.DATE_IS_NOT,b.DATE_BEFORE,b.DATE_AFTER]};translation={startsWith:"Starts with",contains:"Contains",notContains:"Not contains",endsWith:"Ends with",equals:"Equals",notEquals:"Not equals",noFilter:"No Filter",lt:"Less than",lte:"Less than or equal to",gt:"Greater than",gte:"Greater than or equal to",is:"Is",isNot:"Is not",before:"Before",after:"After",dateIs:"Date is",dateIsNot:"Date is not",dateBefore:"Date is before",dateAfter:"Date is after",clear:"Clear",apply:"Apply",matchAll:"Match All",matchAny:"Match Any",addRule:"Add Rule",removeRule:"Remove Rule",accept:"Yes",reject:"No",choose:"Choose",upload:"Upload",cancel:"Cancel",pending:"Pending",fileSizeTypes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],chooseYear:"Choose Year",chooseMonth:"Choose Month",chooseDate:"Choose Date",prevDecade:"Previous Decade",nextDecade:"Next Decade",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",prevHour:"Previous Hour",nextHour:"Next Hour",prevMinute:"Previous Minute",nextMinute:"Next Minute",prevSecond:"Previous Second",nextSecond:"Next Second",am:"am",pm:"pm",dateFormat:"mm/dd/yy",firstDayOfWeek:0,today:"Today",weekHeader:"Wk",weak:"Weak",medium:"Medium",strong:"Strong",passwordPrompt:"Enter a password",emptyMessage:"No results found",searchMessage:"{0} results are available",selectionMessage:"{0} items selected",emptySelectionMessage:"No selected item",emptySearchMessage:"No results found",emptyFilterMessage:"No results found",aria:{trueLabel:"True",falseLabel:"False",nullLabel:"Not Selected",star:"1 star",stars:"{star} stars",selectAll:"All items selected",unselectAll:"All items unselected",close:"Close",previous:"Previous",next:"Next",navigation:"Navigation",scrollTop:"Scroll Top",moveTop:"Move Top",moveUp:"Move Up",moveDown:"Move Down",moveBottom:"Move Bottom",moveToTarget:"Move to Target",moveToSource:"Move to Source",moveAllToTarget:"Move All to Target",moveAllToSource:"Move All to Source",pageLabel:"{page}",firstPageLabel:"First Page",lastPageLabel:"Last Page",nextPageLabel:"Next Page",prevPageLabel:"Previous Page",rowsPerPageLabel:"Rows per page",previousPageLabel:"Previous Page",jumpToPageDropdownLabel:"Jump to Page Dropdown",jumpToPageInputLabel:"Jump to Page Input",selectRow:"Row Selected",unselectRow:"Row Unselected",expandRow:"Row Expanded",collapseRow:"Row Collapsed",showFilterMenu:"Show Filter Menu",hideFilterMenu:"Hide Filter Menu",filterOperator:"Filter Operator",filterConstraint:"Filter Constraint",editRow:"Row Edit",saveEdit:"Save Edit",cancelEdit:"Cancel Edit",listView:"List View",gridView:"Grid View",slide:"Slide",slideNumber:"{slideNumber}",zoomImage:"Zoom Image",zoomIn:"Zoom In",zoomOut:"Zoom Out",rotateRight:"Rotate Right",rotateLeft:"Rotate Left",listLabel:"Option List"}};zIndex={modal:1100,overlay:1e3,menu:1e3,tooltip:1100};translationSource=new s.E;translationObserver=this.translationSource.asObservable();getTranslation(Q){return this.translation[Q]}setTranslation(Q){this.translation={...this.translation,...Q},this.translationSource.next(this.translation)}static \u0275fac=function(_e){return new(_e||Ye)};static \u0275prov=i.wxM({token:Ye,factory:Ye.\u0275fac,providedIn:"root"})}return Ye})(),tt=(()=>{class Ye{template;type;name;constructor(Q){this.template=Q}getType(){return this.name}static \u0275fac=function(_e){return new(_e||Ye)(i.GI1(i.Yw2))};static \u0275dir=i.Sc5({type:Ye,selectors:[["","pTemplate",""]],inputs:{type:"type",name:[i.Wk5.None,"pTemplate","name"]}})}return Ye})(),gt=(()=>{class Ye{static \u0275fac=function(_e){return new(_e||Ye)};static \u0275mod=i.a4G({type:Ye});static \u0275inj=i.s3X({imports:[a.MD]})}return Ye})()},7200:(lt,me,d)=>{"use strict";d.d(me,{m:()=>h});var i=d(2116),s=d(4616);const a=["*"];let h=(()=>{class l{label;spin=!1;styleClass;role;ariaLabel;ariaHidden;ngOnInit(){this.getAttributes()}getAttributes(){const g=s.Yv.isEmpty(this.label);this.role=g?void 0:"img",this.ariaLabel=g?void 0:this.label,this.ariaHidden=g}getClassNames(){return`p-icon ${this.styleClass?this.styleClass+" ":""}${this.spin?"p-icon-spin":""}`}static \u0275fac=function(b){return new(b||l)};static \u0275cmp=i.In1({type:l,selectors:[["ng-component"]],hostAttrs:[1,"p-element","p-icon-wrapper"],inputs:{label:"label",spin:"spin",styleClass:"styleClass"},standalone:!0,features:[i.UHJ],ngContentSelectors:a,decls:1,vars:0,template:function(b,R){1&b&&(i.kPM(),i._Xx(0))},encapsulation:2,changeDetection:0})}return l})()},144:(lt,me,d)=>{"use strict";d.d(me,{k:()=>i});let i=(()=>{class a{static zindex=1e3;static calculatedScrollbarWidth=null;static calculatedScrollbarHeight=null;static browser;static addClass(l,f){l&&f&&(l.classList?l.classList.add(f):l.className+=" "+f)}static addMultipleClasses(l,f){if(l&&f)if(l.classList){let g=f.trim().split(" ");for(let b=0;bg.split(" ").forEach(b=>this.removeClass(l,b)))}static hasClass(l,f){return!(!l||!f)&&(l.classList?l.classList.contains(f):new RegExp("(^| )"+f+"( |$)","gi").test(l.className))}static siblings(l){return Array.prototype.filter.call(l.parentNode.children,function(f){return f!==l})}static find(l,f){return Array.from(l.querySelectorAll(f))}static findSingle(l,f){return this.isElement(l)?l.querySelector(f):null}static index(l){let f=l.parentNode.childNodes,g=0;for(var b=0;b{if(kt)return"relative"===getComputedStyle(kt).getPropertyValue("position")?kt:g(kt.parentElement)},b=l.offsetParent?{width:l.offsetWidth,height:l.offsetHeight}:this.getHiddenElementDimensions(l),R=f.offsetHeight,Y=f.getBoundingClientRect(),J=this.getWindowScrollTop(),ie=this.getWindowScrollLeft(),ae=this.getViewport(),Ee=g(l)?.getBoundingClientRect()||{top:-1*J,left:-1*ie};let Ge,tt;Y.top+R+b.height>ae.height?(Ge=Y.top-Ee.top-b.height,l.style.transformOrigin="bottom",Y.top+Ge<0&&(Ge=-1*Y.top)):(Ge=R+Y.top-Ee.top,l.style.transformOrigin="top");const gt=Y.left+b.width-ae.width;tt=b.width>ae.width?-1*(Y.left-Ee.left):gt>0?Y.left-Ee.left-gt:Y.left-Ee.left,l.style.top=Ge+"px",l.style.left=tt+"px"}static absolutePosition(l,f){const g=l.offsetParent?{width:l.offsetWidth,height:l.offsetHeight}:this.getHiddenElementDimensions(l),b=g.height,R=g.width,Y=f.offsetHeight,J=f.offsetWidth,ie=f.getBoundingClientRect(),ae=this.getWindowScrollTop(),Ie=this.getWindowScrollLeft(),Ee=this.getViewport();let Ge,tt;ie.top+Y+b>Ee.height?(Ge=ie.top+ae-b,l.style.transformOrigin="bottom",Ge<0&&(Ge=ae)):(Ge=Y+ie.top+ae,l.style.transformOrigin="top"),tt=ie.left+R>Ee.width?Math.max(0,ie.left+Ie+J-R):ie.left+Ie,l.style.top=Ge+"px",l.style.left=tt+"px"}static getParents(l,f=[]){return null===l.parentNode?f:this.getParents(l.parentNode,f.concat([l.parentNode]))}static getScrollableParents(l){let f=[];if(l){let g=this.getParents(l);const b=/(auto|scroll)/,R=Y=>{let J=window.getComputedStyle(Y,null);return b.test(J.getPropertyValue("overflow"))||b.test(J.getPropertyValue("overflowX"))||b.test(J.getPropertyValue("overflowY"))};for(let Y of g){let J=1===Y.nodeType&&Y.dataset.scrollselectors;if(J){let ie=J.split(",");for(let ae of ie){let Ie=this.findSingle(Y,ae);Ie&&R(Ie)&&f.push(Ie)}}9!==Y.nodeType&&R(Y)&&f.push(Y)}}return f}static getHiddenElementOuterHeight(l){l.style.visibility="hidden",l.style.display="block";let f=l.offsetHeight;return l.style.display="none",l.style.visibility="visible",f}static getHiddenElementOuterWidth(l){l.style.visibility="hidden",l.style.display="block";let f=l.offsetWidth;return l.style.display="none",l.style.visibility="visible",f}static getHiddenElementDimensions(l){let f={};return l.style.visibility="hidden",l.style.display="block",f.width=l.offsetWidth,f.height=l.offsetHeight,l.style.display="none",l.style.visibility="visible",f}static scrollInView(l,f){let g=getComputedStyle(l).getPropertyValue("borderTopWidth"),b=g?parseFloat(g):0,R=getComputedStyle(l).getPropertyValue("paddingTop"),Y=R?parseFloat(R):0,J=l.getBoundingClientRect(),ae=f.getBoundingClientRect().top+document.body.scrollTop-(J.top+document.body.scrollTop)-b-Y,Ie=l.scrollTop,Ee=l.clientHeight,Ge=this.getOuterHeight(f);ae<0?l.scrollTop=Ie+ae:ae+Ge>Ee&&(l.scrollTop=Ie+ae-Ee+Ge)}static fadeIn(l,f){l.style.opacity=0;let g=+new Date,b=0,R=function(){b=+l.style.opacity.replace(",",".")+((new Date).getTime()-g)/f,l.style.opacity=b,g=+new Date,+b<1&&(window.requestAnimationFrame&&requestAnimationFrame(R)||setTimeout(R,16))};R()}static fadeOut(l,f){var g=1,Y=50/f;let J=setInterval(()=>{(g-=Y)<=0&&(g=0,clearInterval(J)),l.style.opacity=g},50)}static getWindowScrollTop(){let l=document.documentElement;return(window.pageYOffset||l.scrollTop)-(l.clientTop||0)}static getWindowScrollLeft(){let l=document.documentElement;return(window.pageXOffset||l.scrollLeft)-(l.clientLeft||0)}static matches(l,f){var g=Element.prototype;return(g.matches||g.webkitMatchesSelector||g.mozMatchesSelector||g.msMatchesSelector||function(R){return-1!==[].indexOf.call(document.querySelectorAll(R),this)}).call(l,f)}static getOuterWidth(l,f){let g=l.offsetWidth;if(f){let b=getComputedStyle(l);g+=parseFloat(b.marginLeft)+parseFloat(b.marginRight)}return g}static getHorizontalPadding(l){let f=getComputedStyle(l);return parseFloat(f.paddingLeft)+parseFloat(f.paddingRight)}static getHorizontalMargin(l){let f=getComputedStyle(l);return parseFloat(f.marginLeft)+parseFloat(f.marginRight)}static innerWidth(l){let f=l.offsetWidth,g=getComputedStyle(l);return f+=parseFloat(g.paddingLeft)+parseFloat(g.paddingRight),f}static width(l){let f=l.offsetWidth,g=getComputedStyle(l);return f-=parseFloat(g.paddingLeft)+parseFloat(g.paddingRight),f}static getInnerHeight(l){let f=l.offsetHeight,g=getComputedStyle(l);return f+=parseFloat(g.paddingTop)+parseFloat(g.paddingBottom),f}static getOuterHeight(l,f){let g=l.offsetHeight;if(f){let b=getComputedStyle(l);g+=parseFloat(b.marginTop)+parseFloat(b.marginBottom)}return g}static getHeight(l){let f=l.offsetHeight,g=getComputedStyle(l);return f-=parseFloat(g.paddingTop)+parseFloat(g.paddingBottom)+parseFloat(g.borderTopWidth)+parseFloat(g.borderBottomWidth),f}static getWidth(l){let f=l.offsetWidth,g=getComputedStyle(l);return f-=parseFloat(g.paddingLeft)+parseFloat(g.paddingRight)+parseFloat(g.borderLeftWidth)+parseFloat(g.borderRightWidth),f}static getViewport(){let l=window,f=document,g=f.documentElement,b=f.getElementsByTagName("body")[0];return{width:l.innerWidth||g.clientWidth||b.clientWidth,height:l.innerHeight||g.clientHeight||b.clientHeight}}static getOffset(l){var f=l.getBoundingClientRect();return{top:f.top+(window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0),left:f.left+(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0)}}static replaceElementWith(l,f){let g=l.parentNode;if(!g)throw"Can't replace element";return g.replaceChild(f,l)}static getUserAgent(){if(navigator&&this.isClient())return navigator.userAgent}static isIE(){var l=window.navigator.userAgent;return l.indexOf("MSIE ")>0||(l.indexOf("Trident/")>0?(l.indexOf("rv:"),!0):l.indexOf("Edge/")>0)}static isIOS(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream}static isAndroid(){return/(android)/i.test(navigator.userAgent)}static isTouchDevice(){return"ontouchstart"in window||navigator.maxTouchPoints>0}static appendChild(l,f){if(this.isElement(f))f.appendChild(l);else{if(!(f&&f.el&&f.el.nativeElement))throw"Cannot append "+f+" to "+l;f.el.nativeElement.appendChild(l)}}static removeChild(l,f){if(this.isElement(f))f.removeChild(l);else{if(!f.el||!f.el.nativeElement)throw"Cannot remove "+l+" from "+f;f.el.nativeElement.removeChild(l)}}static removeElement(l){"remove"in Element.prototype?l.remove():l.parentNode.removeChild(l)}static isElement(l){return"object"==typeof HTMLElement?l instanceof HTMLElement:l&&"object"==typeof l&&null!==l&&1===l.nodeType&&"string"==typeof l.nodeName}static calculateScrollbarWidth(l){if(l){let f=getComputedStyle(l);return l.offsetWidth-l.clientWidth-parseFloat(f.borderLeftWidth)-parseFloat(f.borderRightWidth)}{if(null!==this.calculatedScrollbarWidth)return this.calculatedScrollbarWidth;let f=document.createElement("div");f.className="p-scrollbar-measure",document.body.appendChild(f);let g=f.offsetWidth-f.clientWidth;return document.body.removeChild(f),this.calculatedScrollbarWidth=g,g}}static calculateScrollbarHeight(){if(null!==this.calculatedScrollbarHeight)return this.calculatedScrollbarHeight;let l=document.createElement("div");l.className="p-scrollbar-measure",document.body.appendChild(l);let f=l.offsetHeight-l.clientHeight;return document.body.removeChild(l),this.calculatedScrollbarWidth=f,f}static invokeElementMethod(l,f,g){l[f].apply(l,g)}static clearSelection(){if(window.getSelection)window.getSelection().empty?window.getSelection().empty():window.getSelection().removeAllRanges&&window.getSelection().rangeCount>0&&window.getSelection().getRangeAt(0).getClientRects().length>0&&window.getSelection().removeAllRanges();else if(document.selection&&document.selection.empty)try{document.selection.empty()}catch{}}static getBrowser(){if(!this.browser){let l=this.resolveUserAgent();this.browser={},l.browser&&(this.browser[l.browser]=!0,this.browser.version=l.version),this.browser.chrome?this.browser.webkit=!0:this.browser.webkit&&(this.browser.safari=!0)}return this.browser}static resolveUserAgent(){let l=navigator.userAgent.toLowerCase(),f=/(chrome)[ \/]([\w.]+)/.exec(l)||/(webkit)[ \/]([\w.]+)/.exec(l)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(l)||/(msie) ([\w.]+)/.exec(l)||l.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(l)||[];return{browser:f[1]||"",version:f[2]||"0"}}static isInteger(l){return Number.isInteger?Number.isInteger(l):"number"==typeof l&&isFinite(l)&&Math.floor(l)===l}static isHidden(l){return!l||null===l.offsetParent}static isVisible(l){return l&&null!=l.offsetParent}static isExist(l){return null!==l&&typeof l<"u"&&l.nodeName&&l.parentNode}static focus(l,f){l&&document.activeElement!==l&&l.focus(f)}static getFocusableElements(l,f=""){let g=this.find(l,`button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f},\n [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f},\n input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f},\n select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f},\n textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f},\n [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f},\n [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${f}`),b=[];for(let R of g){const Y=getComputedStyle(R);this.isVisible(R)&&"none"!=Y.display&&"hidden"!=Y.visibility&&b.push(R)}return b}static getFirstFocusableElement(l,f){const g=this.getFocusableElements(l,f);return g.length>0?g[0]:null}static getLastFocusableElement(l,f){const g=this.getFocusableElements(l,f);return g.length>0?g[g.length-1]:null}static getNextFocusableElement(l,f=!1){const g=a.getFocusableElements(l);let b=0;if(g&&g.length>0){const R=g.indexOf(g[0].ownerDocument.activeElement);f?b=-1==R||0===R?g.length-1:R-1:-1!=R&&R!==g.length-1&&(b=R+1)}return g[b]}static generateZIndex(){return this.zindex=this.zindex||999,++this.zindex}static getSelection(){return window.getSelection?window.getSelection().toString():document.getSelection?document.getSelection().toString():document.selection?document.selection.createRange().text:null}static getTargetElement(l,f){if(!l)return null;switch(l){case"document":return document;case"window":return window;case"@next":return f?.nextElementSibling;case"@prev":return f?.previousElementSibling;case"@parent":return f?.parentElement;case"@grandparent":return f?.parentElement.parentElement;default:const g=typeof l;if("string"===g)return document.querySelector(l);if("object"===g&&l.hasOwnProperty("nativeElement"))return this.isExist(l.nativeElement)?l.nativeElement:void 0;const R=(Y=l)&&Y.constructor&&Y.call&&Y.apply?l():l;return R&&9===R.nodeType||this.isExist(R)?R:null}var Y}static isClient(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}static getAttribute(l,f){if(l){const g=l.getAttribute(f);return isNaN(g)?"true"===g||"false"===g?"true"===g:g:+g}}static calculateBodyScrollbarWidth(){return window.innerWidth-document.documentElement.offsetWidth}static blockBodyScroll(l="p-overflow-hidden"){document.body.style.setProperty("--scrollbar-width",this.calculateBodyScrollbarWidth()+"px"),this.addClass(document.body,l)}static unblockBodyScroll(l="p-overflow-hidden"){document.body.style.removeProperty("--scrollbar-width"),this.removeClass(document.body,l)}}return a})()},7352:(lt,me,d)=>{"use strict";d.d(me,{K:()=>l,W:()=>h});var i=d(144),s=d(1368),a=d(2116);let h=(()=>{class f{pFocusTrapDisabled=!1;host=(0,a.uUt)(a.GMv);onkeydown(b){if(!0!==this.pFocusTrapDisabled){b.preventDefault();const R=i.k.getNextFocusableElement(this.host.nativeElement,b.shiftKey);R&&(R.focus(),R.select?.())}}static \u0275fac=function(R){return new(R||f)};static \u0275dir=a.Sc5({type:f,selectors:[["","pFocusTrap",""]],hostAttrs:[1,"p-element"],hostBindings:function(R,Y){1&R&&a.qCj("keydown.tab",function(ie){return Y.onkeydown(ie)})("keydown.shift.tab",function(ie){return Y.onkeydown(ie)})},inputs:{pFocusTrapDisabled:"pFocusTrapDisabled"}})}return f})(),l=(()=>{class f{static \u0275fac=function(R){return new(R||f)};static \u0275mod=a.a4G({type:f});static \u0275inj=a.s3X({imports:[s.MD]})}return f})()},2060:(lt,me,d)=>{"use strict";d.d(me,{uM:()=>Mt,E$:()=>ri});var i=d(9684),s=d(1368),a=d(2116),h=d(7564),l=d(144),f=d(7200);let g=(()=>{class V extends f.m{static \u0275fac=(()=>{let _;return function(S){return(_||(_=a.otF(V)))(S||V)}})();static \u0275cmp=a.In1({type:V,selectors:[["ChevronLeftIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:2,vars:5,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["d","M9.61296 13C9.50997 13.0005 9.40792 12.9804 9.3128 12.9409C9.21767 12.9014 9.13139 12.8433 9.05902 12.7701L3.83313 7.54416C3.68634 7.39718 3.60388 7.19795 3.60388 6.99022C3.60388 6.78249 3.68634 6.58325 3.83313 6.43628L9.05902 1.21039C9.20762 1.07192 9.40416 0.996539 9.60724 1.00012C9.81032 1.00371 10.0041 1.08597 10.1477 1.22959C10.2913 1.37322 10.3736 1.56698 10.3772 1.77005C10.3808 1.97313 10.3054 2.16968 10.1669 2.31827L5.49496 6.99022L10.1669 11.6622C10.3137 11.8091 10.3962 12.0084 10.3962 12.2161C10.3962 12.4238 10.3137 12.6231 10.1669 12.7701C10.0945 12.8433 10.0083 12.9014 9.91313 12.9409C9.81801 12.9804 9.71596 13.0005 9.61296 13Z","fill","currentColor"]],template:function(w,S){1&w&&(a.S2Z(),a.I0R(0,"svg",0),a.wR5(1,"path",1),a.C$Y()),2&w&&(a.m8U(S.getClassNames()),a.e48("aria-label",S.ariaLabel)("aria-hidden",S.ariaHidden)("role",S.role))},encapsulation:2})}return V})(),b=(()=>{class V extends f.m{static \u0275fac=(()=>{let _;return function(S){return(_||(_=a.otF(V)))(S||V)}})();static \u0275cmp=a.In1({type:V,selectors:[["ChevronRightIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:2,vars:5,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["d","M4.38708 13C4.28408 13.0005 4.18203 12.9804 4.08691 12.9409C3.99178 12.9014 3.9055 12.8433 3.83313 12.7701C3.68634 12.6231 3.60388 12.4238 3.60388 12.2161C3.60388 12.0084 3.68634 11.8091 3.83313 11.6622L8.50507 6.99022L3.83313 2.31827C3.69467 2.16968 3.61928 1.97313 3.62287 1.77005C3.62645 1.56698 3.70872 1.37322 3.85234 1.22959C3.99596 1.08597 4.18972 1.00371 4.3928 1.00012C4.59588 0.996539 4.79242 1.07192 4.94102 1.21039L10.1669 6.43628C10.3137 6.58325 10.3962 6.78249 10.3962 6.99022C10.3962 7.19795 10.3137 7.39718 10.1669 7.54416L4.94102 12.7701C4.86865 12.8433 4.78237 12.9014 4.68724 12.9409C4.59212 12.9804 4.49007 13.0005 4.38708 13Z","fill","currentColor"]],template:function(w,S){1&w&&(a.S2Z(),a.I0R(0,"svg",0),a.wR5(1,"path",1),a.C$Y()),2&w&&(a.m8U(S.getClassNames()),a.e48("aria-label",S.ariaLabel)("aria-hidden",S.ariaHidden)("role",S.role))},encapsulation:2})}return V})();var R=d(4715),Y=d(4616);let J=(()=>{class V extends f.m{pathId;ngOnInit(){this.pathId="url(#"+(0,Y.Oc)()+")"}static \u0275fac=(()=>{let _;return function(S){return(_||(_=a.otF(V)))(S||V)}})();static \u0275cmp=a.In1({type:V,selectors:[["WindowMaximizeIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:6,vars:7,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M7 14H11.8C12.3835 14 12.9431 13.7682 13.3556 13.3556C13.7682 12.9431 14 12.3835 14 11.8V2.2C14 1.61652 13.7682 1.05694 13.3556 0.644365C12.9431 0.231785 12.3835 0 11.8 0H2.2C1.61652 0 1.05694 0.231785 0.644365 0.644365C0.231785 1.05694 0 1.61652 0 2.2V7C0 7.15913 0.063214 7.31174 0.175736 7.42426C0.288258 7.53679 0.44087 7.6 0.6 7.6C0.75913 7.6 0.911742 7.53679 1.02426 7.42426C1.13679 7.31174 1.2 7.15913 1.2 7V2.2C1.2 1.93478 1.30536 1.68043 1.49289 1.49289C1.68043 1.30536 1.93478 1.2 2.2 1.2H11.8C12.0652 1.2 12.3196 1.30536 12.5071 1.49289C12.6946 1.68043 12.8 1.93478 12.8 2.2V11.8C12.8 12.0652 12.6946 12.3196 12.5071 12.5071C12.3196 12.6946 12.0652 12.8 11.8 12.8H7C6.84087 12.8 6.68826 12.8632 6.57574 12.9757C6.46321 13.0883 6.4 13.2409 6.4 13.4C6.4 13.5591 6.46321 13.7117 6.57574 13.8243C6.68826 13.9368 6.84087 14 7 14ZM9.77805 7.42192C9.89013 7.534 10.0415 7.59788 10.2 7.59995C10.3585 7.59788 10.5099 7.534 10.622 7.42192C10.7341 7.30985 10.798 7.15844 10.8 6.99995V3.94242C10.8066 3.90505 10.8096 3.86689 10.8089 3.82843C10.8079 3.77159 10.7988 3.7157 10.7824 3.6623C10.756 3.55552 10.701 3.45698 10.622 3.37798C10.5099 3.2659 10.3585 3.20202 10.2 3.19995H7.00002C6.84089 3.19995 6.68828 3.26317 6.57576 3.37569C6.46324 3.48821 6.40002 3.64082 6.40002 3.79995C6.40002 3.95908 6.46324 4.11169 6.57576 4.22422C6.68828 4.33674 6.84089 4.39995 7.00002 4.39995H8.80006L6.19997 7.00005C6.10158 7.11005 6.04718 7.25246 6.04718 7.40005C6.04718 7.54763 6.10158 7.69004 6.19997 7.80005C6.30202 7.91645 6.44561 7.98824 6.59997 8.00005C6.75432 7.98824 6.89791 7.91645 6.99997 7.80005L9.60002 5.26841V6.99995C9.6021 7.15844 9.66598 7.30985 9.77805 7.42192ZM1.4 14H3.8C4.17066 13.9979 4.52553 13.8498 4.78763 13.5877C5.04973 13.3256 5.1979 12.9707 5.2 12.6V10.2C5.1979 9.82939 5.04973 9.47452 4.78763 9.21242C4.52553 8.95032 4.17066 8.80215 3.8 8.80005H1.4C1.02934 8.80215 0.674468 8.95032 0.412371 9.21242C0.150274 9.47452 0.00210008 9.82939 0 10.2V12.6C0.00210008 12.9707 0.150274 13.3256 0.412371 13.5877C0.674468 13.8498 1.02934 13.9979 1.4 14ZM1.25858 10.0586C1.29609 10.0211 1.34696 10 1.4 10H3.8C3.85304 10 3.90391 10.0211 3.94142 10.0586C3.97893 10.0961 4 10.147 4 10.2V12.6C4 12.6531 3.97893 12.704 3.94142 12.7415C3.90391 12.779 3.85304 12.8 3.8 12.8H1.4C1.34696 12.8 1.29609 12.779 1.25858 12.7415C1.22107 12.704 1.2 12.6531 1.2 12.6V10.2C1.2 10.147 1.22107 10.0961 1.25858 10.0586Z","fill","currentColor"],[3,"id"],["width","14","height","14","fill","white"]],template:function(w,S){1&w&&(a.S2Z(),a.I0R(0,"svg",0)(1,"g"),a.wR5(2,"path",1),a.C$Y(),a.I0R(3,"defs")(4,"clipPath",2),a.wR5(5,"rect",3),a.C$Y()()()),2&w&&(a.m8U(S.getClassNames()),a.e48("aria-label",S.ariaLabel)("aria-hidden",S.ariaHidden)("role",S.role),a.yG2(),a.e48("clip-path",S.pathId),a.yG2(3),a.E7m("id",S.pathId))},encapsulation:2})}return V})(),ie=(()=>{class V extends f.m{pathId;ngOnInit(){this.pathId="url(#"+(0,Y.Oc)()+")"}static \u0275fac=(()=>{let _;return function(S){return(_||(_=a.otF(V)))(S||V)}})();static \u0275cmp=a.In1({type:V,selectors:[["WindowMinimizeIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:6,vars:7,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M11.8 0H2.2C1.61652 0 1.05694 0.231785 0.644365 0.644365C0.231785 1.05694 0 1.61652 0 2.2V7C0 7.15913 0.063214 7.31174 0.175736 7.42426C0.288258 7.53679 0.44087 7.6 0.6 7.6C0.75913 7.6 0.911742 7.53679 1.02426 7.42426C1.13679 7.31174 1.2 7.15913 1.2 7V2.2C1.2 1.93478 1.30536 1.68043 1.49289 1.49289C1.68043 1.30536 1.93478 1.2 2.2 1.2H11.8C12.0652 1.2 12.3196 1.30536 12.5071 1.49289C12.6946 1.68043 12.8 1.93478 12.8 2.2V11.8C12.8 12.0652 12.6946 12.3196 12.5071 12.5071C12.3196 12.6946 12.0652 12.8 11.8 12.8H7C6.84087 12.8 6.68826 12.8632 6.57574 12.9757C6.46321 13.0883 6.4 13.2409 6.4 13.4C6.4 13.5591 6.46321 13.7117 6.57574 13.8243C6.68826 13.9368 6.84087 14 7 14H11.8C12.3835 14 12.9431 13.7682 13.3556 13.3556C13.7682 12.9431 14 12.3835 14 11.8V2.2C14 1.61652 13.7682 1.05694 13.3556 0.644365C12.9431 0.231785 12.3835 0 11.8 0ZM6.368 7.952C6.44137 7.98326 6.52025 7.99958 6.6 8H9.8C9.95913 8 10.1117 7.93678 10.2243 7.82426C10.3368 7.71174 10.4 7.55913 10.4 7.4C10.4 7.24087 10.3368 7.08826 10.2243 6.97574C10.1117 6.86321 9.95913 6.8 9.8 6.8H8.048L10.624 4.224C10.73 4.11026 10.7877 3.95982 10.7849 3.80438C10.7822 3.64894 10.7192 3.50063 10.6093 3.3907C10.4994 3.28077 10.3511 3.2178 10.1956 3.21506C10.0402 3.21232 9.88974 3.27002 9.776 3.376L7.2 5.952V4.2C7.2 4.04087 7.13679 3.88826 7.02426 3.77574C6.91174 3.66321 6.75913 3.6 6.6 3.6C6.44087 3.6 6.28826 3.66321 6.17574 3.77574C6.06321 3.88826 6 4.04087 6 4.2V7.4C6.00042 7.47975 6.01674 7.55862 6.048 7.632C6.07656 7.70442 6.11971 7.7702 6.17475 7.82524C6.2298 7.88029 6.29558 7.92344 6.368 7.952ZM1.4 8.80005H3.8C4.17066 8.80215 4.52553 8.95032 4.78763 9.21242C5.04973 9.47452 5.1979 9.82939 5.2 10.2V12.6C5.1979 12.9707 5.04973 13.3256 4.78763 13.5877C4.52553 13.8498 4.17066 13.9979 3.8 14H1.4C1.02934 13.9979 0.674468 13.8498 0.412371 13.5877C0.150274 13.3256 0.00210008 12.9707 0 12.6V10.2C0.00210008 9.82939 0.150274 9.47452 0.412371 9.21242C0.674468 8.95032 1.02934 8.80215 1.4 8.80005ZM3.94142 12.7415C3.97893 12.704 4 12.6531 4 12.6V10.2C4 10.147 3.97893 10.0961 3.94142 10.0586C3.90391 10.0211 3.85304 10 3.8 10H1.4C1.34696 10 1.29609 10.0211 1.25858 10.0586C1.22107 10.0961 1.2 10.147 1.2 10.2V12.6C1.2 12.6531 1.22107 12.704 1.25858 12.7415C1.29609 12.779 1.34696 12.8 1.4 12.8H3.8C3.85304 12.8 3.90391 12.779 3.94142 12.7415Z","fill","currentColor"],[3,"id"],["width","14","height","14","fill","white"]],template:function(w,S){1&w&&(a.S2Z(),a.I0R(0,"svg",0)(1,"g"),a.wR5(2,"path",1),a.C$Y(),a.I0R(3,"defs")(4,"clipPath",2),a.wR5(5,"rect",3),a.C$Y()()()),2&w&&(a.m8U(S.getClassNames()),a.e48("aria-label",S.ariaLabel)("aria-hidden",S.ariaHidden)("role",S.role),a.yG2(),a.e48("clip-path",S.pathId),a.yG2(3),a.E7m("id",S.pathId))},encapsulation:2})}return V})(),ae=(()=>{class V{document;platformId;renderer;el;zone;config;constructor(_,w,S,$,ze,At){this.document=_,this.platformId=w,this.renderer=S,this.el=$,this.zone=ze,this.config=At}animationListener;mouseDownListener;timeout;ngAfterViewInit(){(0,s.c0)(this.platformId)&&this.config&&this.config.ripple&&this.zone.runOutsideAngular(()=>{this.create(),this.mouseDownListener=this.renderer.listen(this.el.nativeElement,"mousedown",this.onMouseDown.bind(this))})}onMouseDown(_){let w=this.getInk();if(!w||"none"===this.document.defaultView?.getComputedStyle(w,null).display)return;if(l.k.removeClass(w,"p-ink-active"),!l.k.getHeight(w)&&!l.k.getWidth(w)){let At=Math.max(l.k.getOuterWidth(this.el.nativeElement),l.k.getOuterHeight(this.el.nativeElement));w.style.height=At+"px",w.style.width=At+"px"}let S=l.k.getOffset(this.el.nativeElement),$=_.pageX-S.left+this.document.body.scrollTop-l.k.getWidth(w)/2,ze=_.pageY-S.top+this.document.body.scrollLeft-l.k.getHeight(w)/2;this.renderer.setStyle(w,"top",ze+"px"),this.renderer.setStyle(w,"left",$+"px"),l.k.addClass(w,"p-ink-active"),this.timeout=setTimeout(()=>{let At=this.getInk();At&&l.k.removeClass(At,"p-ink-active")},401)}getInk(){const _=this.el.nativeElement.children;for(let w=0;w<_.length;w++)if("string"==typeof _[w].className&&-1!==_[w].className.indexOf("p-ink"))return _[w];return null}resetInk(){let _=this.getInk();_&&l.k.removeClass(_,"p-ink-active")}onAnimationEnd(_){this.timeout&&clearTimeout(this.timeout),l.k.removeClass(_.currentTarget,"p-ink-active")}create(){let _=this.renderer.createElement("span");this.renderer.addClass(_,"p-ink"),this.renderer.appendChild(this.el.nativeElement,_),this.renderer.setAttribute(_,"aria-hidden","true"),this.renderer.setAttribute(_,"role","presentation"),this.animationListener||(this.animationListener=this.renderer.listen(_,"animationend",this.onAnimationEnd.bind(this)))}remove(){let _=this.getInk();_&&(this.mouseDownListener&&this.mouseDownListener(),this.animationListener&&this.animationListener(),this.mouseDownListener=null,this.animationListener=null,l.k.removeElement(_))}ngOnDestroy(){this.config&&this.config.ripple&&this.remove()}static \u0275fac=function(w){return new(w||V)(a.GI1(s.Ud),a.GI1(a.AHE),a.GI1(a.q87),a.GI1(a.GMv),a.GI1(a.WW2),a.GI1(h.MV,8))};static \u0275dir=a.Sc5({type:V,selectors:[["","pRipple",""]],hostAttrs:[1,"p-ripple","p-element"]})}return V})(),Ie=(()=>{class V{static \u0275fac=function(w){return new(w||V)};static \u0275mod=a.a4G({type:V});static \u0275inj=a.s3X({imports:[s.MD]})}return V})();var Ee=d(7352);const Ge=["mask"],tt=["container"],gt=(V,Ce)=>({showTransitionParams:V,hideTransitionParams:Ce}),Bt=V=>({value:"visible",params:V});function kt(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"p-galleriaContent",7),a.qCj("@animation.start",function(S){a.usT(_);const $=a.GaO(3);return a.CGJ($.onAnimationStart(S))})("@animation.done",function(S){a.usT(_);const $=a.GaO(3);return a.CGJ($.onAnimationEnd(S))})("maskHide",function(){a.usT(_);const S=a.GaO(3);return a.CGJ(S.onMaskHide())})("activeItemChange",function(S){a.usT(_);const $=a.GaO(3);return a.CGJ($.onActiveItemChange(S))}),a.C$Y()}if(2&V){const _=a.GaO(3);a.E7m("@animation",a.S45(8,Bt,a.IBC(5,gt,_.showTransitionOptions,_.hideTransitionOptions)))("value",_.value)("activeIndex",_.activeIndex)("numVisible",_.numVisibleLimit||_.numVisible)("ngStyle",_.containerStyle)}}const Ye=V=>({"p-galleria-mask p-component-overlay p-component-overlay-enter":!0,"p-galleria-visible":V});function et(V,Ce){if(1&V&&(a.I0R(0,"div",4,5),a.yuY(2,kt,1,10,"p-galleriaContent",6),a.C$Y()),2&V){const _=a.GaO(2);a.m8U(_.maskClass),a.E7m("ngClass",a.S45(6,Ye,_.visible)),a.e48("role",_.fullScreen?"dialog":"region")("aria-modal",_.fullScreen?"true":void 0),a.yG2(2),a.E7m("ngIf",_.visible)}}function Q(V,Ce){if(1&V&&(a.I0R(0,"div",null,2),a.yuY(2,et,3,8,"div",3),a.C$Y()),2&V){const _=a.GaO();a.yG2(2),a.E7m("ngIf",_.maskVisible)}}function _e(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"p-galleriaContent",8),a.qCj("activeItemChange",function(S){a.usT(_);const $=a.GaO();return a.CGJ($.onActiveItemChange(S))}),a.C$Y()}if(2&V){const _=a.GaO();a.E7m("value",_.value)("activeIndex",_.activeIndex)("numVisible",_.numVisibleLimit||_.numVisible)}}const ye=["closeButton"];function Re(V,Ce){1&V&&a.wR5(0,"TimesIcon",11),2&V&&a.E7m("styleClass","p-galleria-close-icon")}function Xe(V,Ce){}function $e(V,Ce){1&V&&a.yuY(0,Xe,0,0,"ng-template")}function oe(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"button",8),a.qCj("click",function(){a.usT(_);const S=a.GaO(2);return a.CGJ(S.maskHide.emit())}),a.yuY(1,Re,1,1,"TimesIcon",9)(2,$e,1,0,null,10),a.C$Y()}if(2&V){const _=a.GaO(2);a.e48("aria-label",_.closeAriaLabel())("data-pc-section","closebutton"),a.yG2(),a.E7m("ngIf",!_.galleria.closeIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",_.galleria.closeIconTemplate)}}function ut(V,Ce){if(1&V&&(a.I0R(0,"div",12),a.wR5(1,"p-galleriaItemSlot",13),a.C$Y()),2&V){const _=a.GaO(2);a.yG2(),a.E7m("templates",_.galleria.templates)}}function st(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"p-galleriaThumbnails",14),a.qCj("onActiveIndexChange",function(S){a.usT(_);const $=a.GaO(2);return a.CGJ($.onActiveIndexChange(S))})("stopSlideShow",function(){a.usT(_);const S=a.GaO(2);return a.CGJ(S.stopSlideShow())}),a.C$Y()}if(2&V){const _=a.GaO(2);a.E7m("containerId",_.id)("value",_.value)("activeIndex",_.activeIndex)("templates",_.galleria.templates)("numVisible",_.numVisible)("responsiveOptions",_.galleria.responsiveOptions)("circular",_.galleria.circular)("isVertical",_.isVertical())("contentHeight",_.galleria.verticalThumbnailViewPortHeight)("showThumbnailNavigators",_.galleria.showThumbnailNavigators)("slideShowActive",_.slideShowActive)}}function $t(V,Ce){if(1&V&&(a.I0R(0,"div",15),a.wR5(1,"p-galleriaItemSlot",16),a.C$Y()),2&V){const _=a.GaO(2);a.yG2(),a.E7m("templates",_.galleria.templates)}}const oi=(V,Ce,_)=>({"p-galleria p-component":!0,"p-galleria-fullscreen":V,"p-galleria-indicator-onitem":Ce,"p-galleria-item-nav-onhover":_}),Jt=()=>({});function vi(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"div",1),a.yuY(1,oe,3,4,"button",2)(2,ut,2,1,"div",3),a.I0R(3,"div",4)(4,"p-galleriaItem",5),a.qCj("onActiveIndexChange",function(S){a.usT(_);const $=a.GaO();return a.CGJ($.onActiveIndexChange(S))})("startSlideShow",function(){a.usT(_);const S=a.GaO();return a.CGJ(S.startSlideShow())})("stopSlideShow",function(){a.usT(_);const S=a.GaO();return a.CGJ(S.stopSlideShow())}),a.C$Y(),a.yuY(5,st,1,11,"p-galleriaThumbnails",6),a.C$Y(),a.yuY(6,$t,2,1,"div",7),a.C$Y()}if(2&V){const _=a.GaO();a.m8U(_.galleriaClass()),a.E7m("ngClass",a.uAc(23,oi,_.galleria.fullScreen,_.galleria.showIndicatorsOnItem,_.galleria.showItemNavigatorsOnHover&&!_.galleria.fullScreen))("ngStyle",_.galleria.fullScreen?a.q4q(27,Jt):_.galleria.containerStyle),a.e48("id",_.id)("role","region"),a.yG2(),a.E7m("ngIf",_.galleria.fullScreen),a.yG2(),a.E7m("ngIf",_.galleria.templates&&_.galleria.headerFacet),a.yG2(),a.e48("aria-live",_.galleria.autoPlay?"polite":"off"),a.yG2(),a.E7m("id",_.id)("value",_.value)("activeIndex",_.activeIndex)("circular",_.galleria.circular)("templates",_.galleria.templates)("showIndicators",_.galleria.showIndicators)("changeItemOnIndicatorHover",_.galleria.changeItemOnIndicatorHover)("indicatorFacet",_.galleria.indicatorFacet)("captionFacet",_.galleria.captionFacet)("showItemNavigators",_.galleria.showItemNavigators)("autoPlay",_.galleria.autoPlay)("slideShowActive",_.slideShowActive),a.yG2(),a.E7m("ngIf",_.galleria.showThumbnails),a.yG2(),a.E7m("ngIf",_.galleria.templates&&_.galleria.footerFacet)}}function je(V,Ce){1&V&&a.C_f(0)}function De(V,Ce){if(1&V&&(a.SAx(0),a.yuY(1,je,1,0,"ng-container",1),a.k70()),2&V){const _=a.GaO();a.yG2(),a.E7m("ngTemplateOutlet",_.contentTemplate)("ngTemplateOutletContext",_.context)}}function Le(V,Ce){1&V&&a.wR5(0,"ChevronLeftIcon",11),2&V&&a.E7m("styleClass","p-galleria-item-prev-icon")}function Ve(V,Ce){}function te(V,Ce){1&V&&a.yuY(0,Ve,0,0,"ng-template")}const ge=V=>({"p-galleria-item-prev p-galleria-item-nav p-link":!0,"p-disabled":V});function xt(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"button",8),a.qCj("click",function(S){a.usT(_);const $=a.GaO();return a.CGJ($.navBackward(S))}),a.yuY(1,Le,1,1,"ChevronLeftIcon",9)(2,te,1,0,null,10),a.C$Y()}if(2&V){const _=a.GaO();a.E7m("ngClass",a.S45(4,ge,_.isNavBackwardDisabled()))("disabled",_.isNavBackwardDisabled()),a.yG2(),a.E7m("ngIf",!_.galleria.itemPreviousIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",_.galleria.itemPreviousIconTemplate)}}function Ne(V,Ce){1&V&&a.wR5(0,"ChevronRightIcon",11),2&V&&a.E7m("styleClass","p-galleria-item-next-icon")}function be(V,Ce){}function j(V,Ce){1&V&&a.yuY(0,be,0,0,"ng-template")}const we=V=>({"p-galleria-item-next p-galleria-item-nav p-link":!0,"p-disabled":V});function N(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"button",12),a.qCj("click",function(S){a.usT(_);const $=a.GaO();return a.CGJ($.navForward(S))}),a.yuY(1,Ne,1,1,"ChevronRightIcon",9)(2,j,1,0,null,10),a.C$Y()}if(2&V){const _=a.GaO();a.E7m("ngClass",a.S45(4,we,_.isNavForwardDisabled()))("disabled",_.isNavForwardDisabled()),a.yG2(),a.E7m("ngIf",!_.galleria.itemNextIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",_.galleria.itemNextIconTemplate)}}function U(V,Ce){if(1&V&&(a.I0R(0,"div",13),a.wR5(1,"p-galleriaItemSlot",14),a.C$Y()),2&V){const _=a.GaO();a.yG2(),a.E7m("item",_.activeItem)("templates",_.templates)}}function Fe(V,Ce){1&V&&a.wR5(0,"button",20)}const Tt=V=>({"p-galleria-indicator":!0,"p-highlight":V});function Ke(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"li",17),a.qCj("click",function(){const $=a.usT(_).index,ze=a.GaO(2);return a.CGJ(ze.onIndicatorClick($))})("mouseenter",function(){const $=a.usT(_).index,ze=a.GaO(2);return a.CGJ(ze.onIndicatorMouseEnter($))})("keydown",function(S){const ze=a.usT(_).index,At=a.GaO(2);return a.CGJ(At.onIndicatorKeyDown(S,ze))}),a.yuY(1,Fe,1,0,"button",18),a.wR5(2,"p-galleriaItemSlot",19),a.C$Y()}if(2&V){const _=Ce.index,w=a.GaO(2);a.E7m("ngClass",a.S45(7,Tt,w.isIndicatorItemActive(_))),a.e48("aria-label",w.ariaPageLabel(_+1))("aria-selected",w.activeIndex===_)("aria-controls",w.id+"_item_"+_),a.yG2(),a.E7m("ngIf",!w.indicatorFacet),a.yG2(),a.E7m("index",_)("templates",w.templates)}}function Lt(V,Ce){if(1&V&&(a.I0R(0,"ul",15),a.yuY(1,Ke,3,9,"li",16),a.C$Y()),2&V){const _=a.GaO();a.yG2(),a.E7m("ngForOf",_.value)}}const Kt=["itemsContainer"];function Ut(V,Ce){1&V&&a.wR5(0,"ChevronLeftIcon",11),2&V&&a.E7m("styleClass","p-galleria-thumbnail-prev-icon")}function ni(V,Ce){1&V&&a.wR5(0,"ChevronUpIcon",11),2&V&&a.E7m("styleClass","p-galleria-thumbnail-prev-icon")}function Mi(V,Ce){if(1&V&&(a.SAx(0),a.yuY(1,Ut,1,1,"ChevronLeftIcon",10)(2,ni,1,1,"ChevronUpIcon",10),a.k70()),2&V){const _=a.GaO(2);a.yG2(),a.E7m("ngIf",!_.isVertical),a.yG2(),a.E7m("ngIf",_.isVertical)}}function wt(V,Ce){}function zt(V,Ce){1&V&&a.yuY(0,wt,0,0,"ng-template")}const Dt=V=>({"p-galleria-thumbnail-prev p-link":!0,"p-disabled":V});function ve(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"button",7),a.qCj("click",function(S){a.usT(_);const $=a.GaO();return a.CGJ($.navBackward(S))}),a.yuY(1,Mi,3,2,"ng-container",8)(2,zt,1,0,null,9),a.C$Y()}if(2&V){const _=a.GaO();a.E7m("ngClass",a.S45(5,Dt,_.isNavBackwardDisabled()))("disabled",_.isNavBackwardDisabled()),a.e48("aria-label",_.ariaPrevButtonLabel()),a.yG2(),a.E7m("ngIf",!_.galleria.previousThumbnailIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",_.galleria.previousThumbnailIconTemplate)}}const Te=(V,Ce,_,w)=>({"p-galleria-thumbnail-item":!0,"p-galleria-thumbnail-item-current":V,"p-galleria-thumbnail-item-active":Ce,"p-galleria-thumbnail-item-start":_,"p-galleria-thumbnail-item-end":w});function at(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"div",12),a.qCj("keydown",function(S){const ze=a.usT(_).index,At=a.GaO();return a.CGJ(At.onThumbnailKeydown(S,ze))}),a.I0R(1,"div",13),a.qCj("click",function(){const $=a.usT(_).index,ze=a.GaO();return a.CGJ(ze.onItemClick($))})("touchend",function(){const $=a.usT(_).index,ze=a.GaO();return a.CGJ(ze.onItemClick($))})("keydown.enter",function(){const $=a.usT(_).index,ze=a.GaO();return a.CGJ(ze.onItemClick($))}),a.wR5(2,"p-galleriaItemSlot",14),a.C$Y()()}if(2&V){const _=Ce.$implicit,w=Ce.index,S=a.GaO();a.E7m("ngClass",a.WuN(10,Te,S.activeIndex===w,S.isItemActive(w),S.firstItemAciveIndex()===w,S.lastItemActiveIndex()===w)),a.e48("aria-selected",S.activeIndex===w)("aria-controls",S.containerId+"_item_"+w)("data-pc-section","thumbnailitem")("data-p-active",S.activeIndex===w),a.yG2(),a.e48("tabindex",S.activeIndex===w?0:-1)("aria-current",S.activeIndex===w?"page":void 0)("aria-label",S.ariaPageLabel(w+1)),a.yG2(),a.E7m("item",_)("templates",S.templates)}}function Ze(V,Ce){1&V&&a.wR5(0,"ChevronRightIcon",16),2&V&&a.E7m("ngClass","p-galleria-thumbnail-next-icon")}function pt(V,Ce){1&V&&a.wR5(0,"ChevronDownIcon",16),2&V&&a.E7m("ngClass","p-galleria-thumbnail-next-icon")}function le(V,Ce){if(1&V&&(a.SAx(0),a.yuY(1,Ze,1,1,"ChevronRightIcon",15)(2,pt,1,1,"ChevronDownIcon",15),a.k70()),2&V){const _=a.GaO(2);a.yG2(),a.E7m("ngIf",!_.isVertical),a.yG2(),a.E7m("ngIf",_.isVertical)}}function xe(V,Ce){}function Pe(V,Ce){1&V&&a.yuY(0,xe,0,0,"ng-template")}const ht=V=>({"p-galleria-thumbnail-next p-link":!0,"p-disabled":V});function Ht(V,Ce){if(1&V){const _=a.KQA();a.I0R(0,"button",7),a.qCj("click",function(S){a.usT(_);const $=a.GaO();return a.CGJ($.navForward(S))}),a.yuY(1,le,3,2,"ng-container",8)(2,Pe,1,0,null,9),a.C$Y()}if(2&V){const _=a.GaO();a.E7m("ngClass",a.S45(5,ht,_.isNavForwardDisabled()))("disabled",_.isNavForwardDisabled()),a.e48("aria-label",_.ariaNextButtonLabel()),a.yG2(),a.E7m("ngIf",!_.galleria.nextThumbnailIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",_.galleria.nextThumbnailIconTemplate)}}const vt=V=>({height:V});let Mt=(()=>{class V{document;platformId;element;cd;config;get activeIndex(){return this._activeIndex}set activeIndex(_){this._activeIndex=_}fullScreen=!1;id;value;numVisible=3;responsiveOptions;showItemNavigators=!1;showThumbnailNavigators=!0;showItemNavigatorsOnHover=!1;changeItemOnIndicatorHover=!1;circular=!1;autoPlay=!1;shouldStopAutoplayByClick=!0;transitionInterval=4e3;showThumbnails=!0;thumbnailsPosition="bottom";verticalThumbnailViewPortHeight="300px";showIndicators=!1;showIndicatorsOnItem=!1;indicatorsPosition="bottom";baseZIndex=0;maskClass;containerClass;containerStyle;showTransitionOptions="150ms cubic-bezier(0, 0, 0.2, 1)";hideTransitionOptions="150ms cubic-bezier(0, 0, 0.2, 1)";get visible(){return this._visible}set visible(_){this._visible=_,this._visible&&!this.maskVisible&&(this.maskVisible=!0)}activeIndexChange=new a._w7;visibleChange=new a._w7;mask;container;templates;_visible=!1;_activeIndex=0;headerFacet;footerFacet;indicatorFacet;captionFacet;closeIconTemplate;previousThumbnailIconTemplate;nextThumbnailIconTemplate;itemPreviousIconTemplate;itemNextIconTemplate;maskVisible=!1;numVisibleLimit=0;constructor(_,w,S,$,ze){this.document=_,this.platformId=w,this.element=S,this.cd=$,this.config=ze}ngAfterContentInit(){this.templates?.forEach(_=>{switch(_.getType()){case"header":this.headerFacet=_.template;break;case"footer":this.footerFacet=_.template;break;case"indicator":this.indicatorFacet=_.template;break;case"closeicon":this.closeIconTemplate=_.template;break;case"itemnexticon":this.itemNextIconTemplate=_.template;break;case"itempreviousicon":this.itemPreviousIconTemplate=_.template;break;case"previousthumbnailicon":this.previousThumbnailIconTemplate=_.template;break;case"nextthumbnailicon":this.nextThumbnailIconTemplate=_.template;break;case"caption":this.captionFacet=_.template}})}ngOnChanges(_){this.numVisibleLimit=_.value&&_.value.currentValue?.length{l.k.focus(l.k.findSingle(this.container.nativeElement,'[data-pc-section="closebutton"]'))},25);break;case"void":l.k.addClass(this.mask?.nativeElement,"p-component-overlay-leave")}}onAnimationEnd(_){"void"===_.toState&&this.disableModality()}enableModality(){l.k.blockBodyScroll(),this.cd.markForCheck(),this.mask&&Y.eI.set("modal",this.mask.nativeElement,this.baseZIndex||this.config.zIndex.modal)}disableModality(){l.k.unblockBodyScroll(),this.maskVisible=!1,this.cd.markForCheck(),this.mask&&Y.eI.clear(this.mask.nativeElement)}ngOnDestroy(){this.fullScreen&&l.k.removeClass(this.document.body,"p-overflow-hidden"),this.mask&&this.disableModality()}static \u0275fac=function(w){return new(w||V)(a.GI1(s.Ud),a.GI1(a.AHE),a.GI1(a.GMv),a.GI1(a.kD9),a.GI1(h.MV))};static \u0275cmp=a.In1({type:V,selectors:[["p-galleria"]],contentQueries:function(w,S,$){if(1&w&&a.szK($,h.U3,4),2&w){let ze;a.wto(ze=a.Gqi())&&(S.templates=ze)}},viewQuery:function(w,S){if(1&w&&(a.CC$(Ge,5),a.CC$(tt,5)),2&w){let $;a.wto($=a.Gqi())&&(S.mask=$.first),a.wto($=a.Gqi())&&(S.container=$.first)}},hostAttrs:[1,"p-element"],inputs:{activeIndex:"activeIndex",fullScreen:"fullScreen",id:"id",value:"value",numVisible:"numVisible",responsiveOptions:"responsiveOptions",showItemNavigators:"showItemNavigators",showThumbnailNavigators:"showThumbnailNavigators",showItemNavigatorsOnHover:"showItemNavigatorsOnHover",changeItemOnIndicatorHover:"changeItemOnIndicatorHover",circular:"circular",autoPlay:"autoPlay",shouldStopAutoplayByClick:"shouldStopAutoplayByClick",transitionInterval:"transitionInterval",showThumbnails:"showThumbnails",thumbnailsPosition:"thumbnailsPosition",verticalThumbnailViewPortHeight:"verticalThumbnailViewPortHeight",showIndicators:"showIndicators",showIndicatorsOnItem:"showIndicatorsOnItem",indicatorsPosition:"indicatorsPosition",baseZIndex:"baseZIndex",maskClass:"maskClass",containerClass:"containerClass",containerStyle:"containerStyle",showTransitionOptions:"showTransitionOptions",hideTransitionOptions:"hideTransitionOptions",visible:"visible"},outputs:{activeIndexChange:"activeIndexChange",visibleChange:"visibleChange"},features:[a.SYr],decls:3,vars:2,consts:[[4,"ngIf","ngIfElse"],["windowed",""],["container",""],[3,"ngClass","class",4,"ngIf"],[3,"ngClass"],["mask",""],[3,"value","activeIndex","numVisible","ngStyle","maskHide","activeItemChange",4,"ngIf"],[3,"value","activeIndex","numVisible","ngStyle","maskHide","activeItemChange"],[3,"value","activeIndex","numVisible","activeItemChange"]],template:function(w,S){if(1&w&&a.yuY(0,Q,3,1,"div",0)(1,_e,1,3,"ng-template",null,1,a.gJz),2&w){const $=a.Gew(2);a.E7m("ngIf",S.fullScreen)("ngIfElse",$)}},dependencies:()=>[s.QF,s.u_,s.Qt,fe],styles:["@layer primeng{.p-galleria-content{display:flex;flex-direction:column}.p-galleria-item-wrapper{display:flex;flex-direction:column;position:relative}.p-galleria-item-container{position:relative;display:flex;height:100%}.p-galleria-item-nav{position:absolute;top:50%;margin-top:-.5rem;display:inline-flex;justify-content:center;align-items:center;overflow:hidden}.p-galleria-item-prev{left:0;border-top-left-radius:0;border-bottom-left-radius:0}.p-galleria-item-next{right:0;border-top-right-radius:0;border-bottom-right-radius:0}.p-galleria-item{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.p-galleria-item-nav-onhover .p-galleria-item-nav{pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.p-galleria-item-nav-onhover .p-galleria-item-wrapper:hover .p-galleria-item-nav{pointer-events:all;opacity:1}.p-galleria-item-nav-onhover .p-galleria-item-wrapper:hover .p-galleria-item-nav.p-disabled{pointer-events:none}.p-galleria-caption{position:absolute;bottom:0;left:0;width:100%}.p-galleria-thumbnail-wrapper{display:flex;flex-direction:column;overflow:auto;flex-shrink:0}.p-galleria-thumbnail-prev,.p-galleria-thumbnail-next{align-self:center;flex:0 0 auto;display:flex;justify-content:center;align-items:center;overflow:hidden;position:relative}.p-galleria-thumbnail-prev span,.p-galleria-thumbnail-next span{display:flex;justify-content:center;align-items:center}.p-galleria-thumbnail-container{display:flex;flex-direction:row}.p-galleria-thumbnail-items-container{overflow:hidden;width:100%}.p-galleria-thumbnail-items{display:flex}.p-galleria-thumbnail-item{overflow:auto;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:.5}.p-galleria-thumbnail-item:hover{opacity:1;transition:opacity .3s}.p-galleria-thumbnail-item-current{opacity:1}.p-galleria-thumbnails-left .p-galleria-content,.p-galleria-thumbnails-right .p-galleria-content,.p-galleria-thumbnails-left .p-galleria-item-wrapper,.p-galleria-thumbnails-right .p-galleria-item-wrapper{flex-direction:row}.p-galleria-thumbnails-left p-galleriaitem,.p-galleria-thumbnails-top p-galleriaitem{order:2}.p-galleria-thumbnails-left p-galleriathumbnails,.p-galleria-thumbnails-top p-galleriathumbnails{order:1}.p-galleria-thumbnails-left .p-galleria-thumbnail-container,.p-galleria-thumbnails-right .p-galleria-thumbnail-container{flex-direction:column;flex-grow:1}.p-galleria-thumbnails-left .p-galleria-thumbnail-items,.p-galleria-thumbnails-right .p-galleria-thumbnail-items{flex-direction:column;height:100%}.p-galleria-thumbnails-left .p-galleria-thumbnail-wrapper,.p-galleria-thumbnails-right .p-galleria-thumbnail-wrapper{height:100%}.p-galleria-indicators{display:flex;align-items:center;justify-content:center}.p-galleria-indicator>button{display:inline-flex;align-items:center}.p-galleria-indicators-left .p-galleria-item-wrapper,.p-galleria-indicators-right .p-galleria-item-wrapper{flex-direction:row;align-items:center}.p-galleria-indicators-left .p-galleria-item-container,.p-galleria-indicators-top .p-galleria-item-container{order:2}.p-galleria-indicators-left .p-galleria-indicators,.p-galleria-indicators-top .p-galleria-indicators{order:1}.p-galleria-indicators-left .p-galleria-indicators,.p-galleria-indicators-right .p-galleria-indicators{flex-direction:column}.p-galleria-indicator-onitem .p-galleria-indicators{position:absolute;display:flex;z-index:1}.p-galleria-indicator-onitem.p-galleria-indicators-top .p-galleria-indicators{top:0;left:0;width:100%;align-items:flex-start}.p-galleria-indicator-onitem.p-galleria-indicators-right .p-galleria-indicators{right:0;top:0;height:100%;align-items:flex-end}.p-galleria-indicator-onitem.p-galleria-indicators-bottom .p-galleria-indicators{bottom:0;left:0;width:100%;align-items:flex-end}.p-galleria-indicator-onitem.p-galleria-indicators-left .p-galleria-indicators{left:0;top:0;height:100%;align-items:flex-start}.p-galleria-mask{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;background-color:transparent;transition-property:background-color}.p-galleria-close{position:absolute;top:0;right:0;display:flex;justify-content:center;align-items:center;overflow:hidden}.p-galleria-mask .p-galleria-item-nav{position:fixed;top:50%;margin-top:-.5rem}.p-galleria-mask.p-galleria-mask-leave{background-color:transparent}.p-items-hidden .p-galleria-thumbnail-item{visibility:hidden}.p-items-hidden .p-galleria-thumbnail-item.p-galleria-thumbnail-item-active{visibility:visible}}\n"],encapsulation:2,data:{animation:[(0,i.gV)("animation",[(0,i.aK)("void => visible",[(0,i.wb)({transform:"scale(0.7)",opacity:0}),(0,i.Cs)("{{showTransitionParams}}")]),(0,i.aK)("visible => void",[(0,i.Cs)("{{hideTransitionParams}}",(0,i.wb)({transform:"scale(0.7)",opacity:0}))])])]},changeDetection:0})}return V})(),fe=(()=>{class V{galleria;cd;differs;config;get activeIndex(){return this._activeIndex}set activeIndex(_){this._activeIndex=_}value=[];numVisible;maskHide=new a._w7;activeItemChange=new a._w7;closeButton;id;_activeIndex=0;slideShowActive=!0;interval;styleClass;differ;constructor(_,w,S,$){this.galleria=_,this.cd=w,this.differs=S,this.config=$,this.id=this.galleria.id||(0,Y.Oc)(),this.differ=this.differs.find(this.galleria).create()}ngDoCheck(){if((0,s.c0)(this.galleria.platformId)){const _=this.differ.diff(this.galleria);_&&_.forEachItem.length>0&&this.cd.markForCheck()}}galleriaClass(){const _=this.galleria.showThumbnails&&this.getPositionClass("p-galleria-thumbnails",this.galleria.thumbnailsPosition),w=this.galleria.showIndicators&&this.getPositionClass("p-galleria-indicators",this.galleria.indicatorsPosition);return(this.galleria.containerClass?this.galleria.containerClass+" ":"")+(_?_+" ":"")+(w?w+" ":"")}startSlideShow(){(0,s.c0)(this.galleria.platformId)&&(this.interval=setInterval(()=>{let _=this.galleria.circular&&this.value.length-1===this.activeIndex?0:this.activeIndex+1;this.onActiveIndexChange(_),this.activeIndex=_},this.galleria.transitionInterval),this.slideShowActive=!0)}stopSlideShow(){this.galleria.autoPlay&&!this.galleria.shouldStopAutoplayByClick||(this.interval&&clearInterval(this.interval),this.slideShowActive=!1)}getPositionClass(_,w){const $=["top","left","bottom","right"].find(ze=>ze===w);return $?`${_}-${$}`:""}isVertical(){return"left"===this.galleria.thumbnailsPosition||"right"===this.galleria.thumbnailsPosition}onActiveIndexChange(_){this.activeIndex!==_&&(this.activeIndex=_,this.activeItemChange.emit(this.activeIndex))}closeAriaLabel(){return this.config.translation.aria?this.config.translation.aria.close:void 0}static \u0275fac=function(w){return new(w||V)(a.GI1(Mt),a.GI1(a.kD9),a.GI1(a.YNh),a.GI1(h.MV))};static \u0275cmp=a.In1({type:V,selectors:[["p-galleriaContent"]],viewQuery:function(w,S){if(1&w&&a.CC$(ye,5),2&w){let $;a.wto($=a.Gqi())&&(S.closeButton=$.first)}},inputs:{activeIndex:"activeIndex",value:"value",numVisible:"numVisible"},outputs:{maskHide:"maskHide",activeItemChange:"activeItemChange"},decls:1,vars:1,consts:[["pFocusTrap","",3,"ngClass","ngStyle","class",4,"ngIf"],["pFocusTrap","",3,"ngClass","ngStyle"],["type","button","class","p-galleria-close p-link","pRipple","",3,"click",4,"ngIf"],["class","p-galleria-header",4,"ngIf"],[1,"p-galleria-content"],[3,"id","value","activeIndex","circular","templates","showIndicators","changeItemOnIndicatorHover","indicatorFacet","captionFacet","showItemNavigators","autoPlay","slideShowActive","onActiveIndexChange","startSlideShow","stopSlideShow"],[3,"containerId","value","activeIndex","templates","numVisible","responsiveOptions","circular","isVertical","contentHeight","showThumbnailNavigators","slideShowActive","onActiveIndexChange","stopSlideShow",4,"ngIf"],["class","p-galleria-footer",4,"ngIf"],["type","button","pRipple","",1,"p-galleria-close","p-link",3,"click"],[3,"styleClass",4,"ngIf"],[4,"ngTemplateOutlet"],[3,"styleClass"],[1,"p-galleria-header"],["type","header",3,"templates"],[3,"containerId","value","activeIndex","templates","numVisible","responsiveOptions","circular","isVertical","contentHeight","showThumbnailNavigators","slideShowActive","onActiveIndexChange","stopSlideShow"],[1,"p-galleria-footer"],["type","footer",3,"templates"]],template:function(w,S){1&w&&a.yuY(0,vi,7,28,"div",0),2&w&&a.E7m("ngIf",S.value&&S.value.length>0)},dependencies:()=>[s.QF,s.u_,s.XV,s.Qt,ae,R.O,Ee.W,it,Et,ct],encapsulation:2,changeDetection:0})}return V})(),it=(()=>{class V{templates;index;get item(){return this._item}set item(_){this._item=_,this.templates&&this.templates.forEach(w=>{if(w.getType()===this.type)switch(this.type){case"item":case"caption":case"thumbnail":this.context={$implicit:this.item},this.contentTemplate=w.template}})}type;contentTemplate;context;_item;ngAfterContentInit(){this.templates?.forEach(_=>{if(_.getType()===this.type)switch(this.type){case"item":case"caption":case"thumbnail":this.context={$implicit:this.item},this.contentTemplate=_.template;break;case"indicator":this.context={$implicit:this.index},this.contentTemplate=_.template;break;default:this.context={},this.contentTemplate=_.template}})}static \u0275fac=function(w){return new(w||V)};static \u0275cmp=a.In1({type:V,selectors:[["p-galleriaItemSlot"]],inputs:{templates:"templates",index:"index",item:"item",type:"type"},decls:1,vars:1,consts:[[4,"ngIf"],[4,"ngTemplateOutlet","ngTemplateOutletContext"]],template:function(w,S){1&w&&a.yuY(0,De,2,2,"ng-container",0),2&w&&a.E7m("ngIf",S.contentTemplate)},dependencies:[s.u_,s.XV],encapsulation:2,changeDetection:0})}return V})(),Et=(()=>{class V{galleria;id;circular=!1;value;showItemNavigators=!1;showIndicators=!0;slideShowActive=!0;changeItemOnIndicatorHover=!0;autoPlay=!1;templates;indicatorFacet;captionFacet;startSlideShow=new a._w7;stopSlideShow=new a._w7;onActiveIndexChange=new a._w7;get activeIndex(){return this._activeIndex}set activeIndex(_){this._activeIndex=_}get activeItem(){return this.value&&this.value[this._activeIndex]}_activeIndex=0;constructor(_){this.galleria=_}ngOnChanges({autoPlay:_}){_?.currentValue&&this.startSlideShow.emit(),_&&!1===_.currentValue&&this.stopTheSlideShow()}next(){this.onActiveIndexChange.emit(this.circular&&this.value.length-1===this.activeIndex?0:this.activeIndex+1)}prev(){this.onActiveIndexChange.emit(this.circular&&0===this.activeIndex?this.value.length-1:0!==this.activeIndex?this.activeIndex-1:0)}stopTheSlideShow(){this.slideShowActive&&this.stopSlideShow&&this.stopSlideShow.emit()}navForward(_){this.stopTheSlideShow(),this.next(),_&&_.cancelable&&_.preventDefault()}navBackward(_){this.stopTheSlideShow(),this.prev(),_&&_.cancelable&&_.preventDefault()}onIndicatorClick(_){this.stopTheSlideShow(),this.onActiveIndexChange.emit(_)}onIndicatorMouseEnter(_){this.changeItemOnIndicatorHover&&(this.stopTheSlideShow(),this.onActiveIndexChange.emit(_))}onIndicatorKeyDown(_,w){switch(_.code){case"Enter":case"Space":this.stopTheSlideShow(),this.onActiveIndexChange.emit(w),_.preventDefault();break;case"ArrowDown":case"ArrowUp":_.preventDefault()}}isNavForwardDisabled(){return!this.circular&&this.activeIndex===this.value.length-1}isNavBackwardDisabled(){return!this.circular&&0===this.activeIndex}isIndicatorItemActive(_){return this.activeIndex===_}ariaSlideLabel(){return this.galleria.config.translation.aria?this.galleria.config.translation.aria.slide:void 0}ariaSlideNumber(_){return this.galleria.config.translation.aria?this.galleria.config.translation.aria.slideNumber.replace(/{slideNumber}/g,_):void 0}ariaPageLabel(_){return this.galleria.config.translation.aria?this.galleria.config.translation.aria.pageLabel.replace(/{page}/g,_):void 0}static \u0275fac=function(w){return new(w||V)(a.GI1(Mt))};static \u0275cmp=a.In1({type:V,selectors:[["p-galleriaItem"]],inputs:{id:"id",circular:"circular",value:"value",showItemNavigators:"showItemNavigators",showIndicators:"showIndicators",slideShowActive:"slideShowActive",changeItemOnIndicatorHover:"changeItemOnIndicatorHover",autoPlay:"autoPlay",templates:"templates",indicatorFacet:"indicatorFacet",captionFacet:"captionFacet",activeIndex:"activeIndex"},outputs:{startSlideShow:"startSlideShow",stopSlideShow:"stopSlideShow",onActiveIndexChange:"onActiveIndexChange"},features:[a.SYr],decls:8,vars:11,consts:[[1,"p-galleria-item-wrapper"],[1,"p-galleria-item-container"],["type","button","role","navigation","pRipple","",3,"ngClass","disabled","click",4,"ngIf"],["role","group",3,"id"],["type","item",1,"p-galleria-item",3,"item","templates"],["type","button","pRipple","","role","navigation",3,"ngClass","disabled","click",4,"ngIf"],["class","p-galleria-caption",4,"ngIf"],["class","p-galleria-indicators p-reset",4,"ngIf"],["type","button","role","navigation","pRipple","",3,"ngClass","disabled","click"],[3,"styleClass",4,"ngIf"],[4,"ngTemplateOutlet"],[3,"styleClass"],["type","button","pRipple","","role","navigation",3,"ngClass","disabled","click"],[1,"p-galleria-caption"],["type","caption",3,"item","templates"],[1,"p-galleria-indicators","p-reset"],["tabindex","0",3,"ngClass","click","mouseenter","keydown",4,"ngFor","ngForOf"],["tabindex","0",3,"ngClass","click","mouseenter","keydown"],["type","button","tabIndex","-1","class","p-link",4,"ngIf"],["type","indicator",3,"index","templates"],["type","button","tabIndex","-1",1,"p-link"]],template:function(w,S){1&w&&(a.I0R(0,"div",0)(1,"div",1),a.yuY(2,xt,3,6,"button",2),a.I0R(3,"div",3),a.wR5(4,"p-galleriaItemSlot",4),a.C$Y(),a.yuY(5,N,3,6,"button",5)(6,U,2,2,"div",6),a.C$Y(),a.yuY(7,Lt,2,1,"ul",7),a.C$Y()),2&w&&(a.yG2(2),a.E7m("ngIf",S.showItemNavigators),a.yG2(),a.m4B("width","100%"),a.E7m("id",S.id+"_item_"+S.activeIndex),a.e48("aria-label",S.ariaSlideNumber(S.activeIndex+1))("aria-roledescription",S.ariaSlideLabel()),a.yG2(),a.E7m("item",S.activeItem)("templates",S.templates),a.yG2(),a.E7m("ngIf",S.showItemNavigators),a.yG2(),a.E7m("ngIf",S.captionFacet),a.yG2(),a.E7m("ngIf",S.showIndicators))},dependencies:()=>[s.QF,s.ay,s.u_,s.XV,ae,b,g,it],encapsulation:2,changeDetection:0})}return V})(),ct=(()=>{class V{galleria;document;platformId;renderer;cd;containerId;value;isVertical=!1;slideShowActive=!1;circular=!1;responsiveOptions;contentHeight="300px";showThumbnailNavigators=!0;templates;onActiveIndexChange=new a._w7;stopSlideShow=new a._w7;itemsContainer;get numVisible(){return this._numVisible}set numVisible(_){this._numVisible=_,this._oldNumVisible=this.d_numVisible,this.d_numVisible=_}get activeIndex(){return this._activeIndex}set activeIndex(_){this._oldactiveIndex=this._activeIndex,this._activeIndex=_}index;startPos=null;thumbnailsStyle=null;sortedResponsiveOptions=null;totalShiftedItems=0;page=0;documentResizeListener;_numVisible=0;d_numVisible=0;_oldNumVisible=0;_activeIndex=0;_oldactiveIndex=0;constructor(_,w,S,$,ze){this.galleria=_,this.document=w,this.platformId=S,this.renderer=$,this.cd=ze}ngOnInit(){(0,s.c0)(this.platformId)&&(this.createStyle(),this.responsiveOptions&&this.bindDocumentListeners())}ngAfterContentChecked(){let _=this.totalShiftedItems;(this._oldNumVisible!==this.d_numVisible||this._oldactiveIndex!==this._activeIndex)&&this.itemsContainer&&(_=this._activeIndex<=this.getMedianItemIndex()?0:this.value.length-this.d_numVisible+this.getMedianItemIndex(){const $=w.breakpoint,ze=S.breakpoint;let At=null;return At=null==$&&null!=ze?-1:null!=$&&null==ze?1:null==$&&null==ze?0:"string"==typeof $&&"string"==typeof ze?$.localeCompare(ze,void 0,{numeric:!0}):$ze?1:0,-1*At});for(let w=0;w=_&&(w=$)}this.d_numVisible!==w.numVisible&&(this.d_numVisible=w.numVisible,this.cd.markForCheck())}}getTabIndex(_){return this.isItemActive(_)?0:null}navForward(_){this.stopTheSlideShow();let w=this._activeIndex+1;w+this.totalShiftedItems>this.getMedianItemIndex()&&(-1*this.totalShiftedItemsthis.getMedianItemIndex()&&(-1*this.totalShiftedItems!=0||this.circular)&&this.step(1),this.onActiveIndexChange.emit(this.circular&&0===this._activeIndex?this.value.length-1:w),_.cancelable&&_.preventDefault()}onItemClick(_){this.stopTheSlideShow();let w=_;if(w!==this._activeIndex){const S=w+this.totalShiftedItems;let $=0;w0&&-1*this.totalShiftedItems!=0&&this.step($)):($=this.getMedianItemIndex()-S,$<0&&-1*this.totalShiftedItems!0===l.k.getAttribute(ze,"data-p-active")),S=l.k.findSingle(this.itemsContainer.nativeElement,'[tabindex="0"]'),$=_.findIndex(ze=>ze===S.parentElement);_[$].children[0].tabIndex="-1",_[w].children[0].tabIndex="0"}findFocusedIndicatorIndex(){const _=[...l.k.find(this.itemsContainer.nativeElement,'[data-pc-section="thumbnailitem"]')],w=l.k.findSingle(this.itemsContainer.nativeElement,'[data-pc-section="thumbnailitem"] > [tabindex="0"]');return _.findIndex(S=>S===w.parentElement)}changedFocusedIndicator(_,w){const S=l.k.find(this.itemsContainer.nativeElement,'[data-pc-section="thumbnailitem"]');S[_].children[0].tabIndex="-1",S[w].children[0].tabIndex="0",S[w].children[0].focus()}step(_){let w=this.totalShiftedItems+_;_<0&&-1*w+this.d_numVisible>this.value.length-1?w=this.d_numVisible-this.value.length:_>0&&w>0&&(w=0),this.circular&&(_<0&&this.value.length-1===this._activeIndex?w=0:_>0&&0===this._activeIndex&&(w=this.d_numVisible-this.value.length)),this.itemsContainer&&(l.k.removeClass(this.itemsContainer.nativeElement,"p-items-hidden"),this.itemsContainer.nativeElement.style.transform=this.isVertical?`translate3d(0, ${w*(100/this.d_numVisible)}%, 0)`:`translate3d(${w*(100/this.d_numVisible)}%, 0, 0)`,this.itemsContainer.nativeElement.style.transition="transform 500ms ease 0s"),this.totalShiftedItems=w}stopTheSlideShow(){this.slideShowActive&&this.stopSlideShow&&this.stopSlideShow.emit()}changePageOnTouch(_,w){w<0?this.navForward(_):this.navBackward(_)}getTotalPageNumber(){return this.value.length>this.d_numVisible?this.value.length-this.d_numVisible+1:0}getMedianItemIndex(){let _=Math.floor(this.d_numVisible/2);return this.d_numVisible%2?_:_-1}onTransitionEnd(){this.itemsContainer&&this.itemsContainer.nativeElement&&(l.k.addClass(this.itemsContainer.nativeElement,"p-items-hidden"),this.itemsContainer.nativeElement.style.transition="")}onTouchEnd(_){let w=_.changedTouches[0];this.changePageOnTouch(_,this.isVertical?w.pageY-this.startPos.y:w.pageX-this.startPos.x)}onTouchMove(_){_.cancelable&&_.preventDefault()}onTouchStart(_){let w=_.changedTouches[0];this.startPos={x:w.pageX,y:w.pageY}}isNavBackwardDisabled(){return!this.circular&&0===this._activeIndex||this.value.length<=this.d_numVisible}isNavForwardDisabled(){return!this.circular&&this._activeIndex===this.value.length-1||this.value.length<=this.d_numVisible}firstItemAciveIndex(){return-1*this.totalShiftedItems}lastItemActiveIndex(){return this.firstItemAciveIndex()+this.d_numVisible-1}isItemActive(_){return this.firstItemAciveIndex()<=_&&this.lastItemActiveIndex()>=_}bindDocumentListeners(){(0,s.c0)(this.platformId)&&(this.documentResizeListener=this.renderer.listen(this.document.defaultView||"window","resize",()=>{this.calculatePosition()}))}unbindDocumentListeners(){this.documentResizeListener&&(this.documentResizeListener(),this.documentResizeListener=null)}ngOnDestroy(){this.responsiveOptions&&this.unbindDocumentListeners(),this.thumbnailsStyle&&this.thumbnailsStyle.parentNode?.removeChild(this.thumbnailsStyle)}ariaPrevButtonLabel(){return this.galleria.config.translation.aria?this.galleria.config.translation.aria.prevPageLabel:void 0}ariaNextButtonLabel(){return this.galleria.config.translation.aria?this.galleria.config.translation.aria.nextPageLabel:void 0}ariaPageLabel(_){return this.galleria.config.translation.aria?this.galleria.config.translation.aria.pageLabel.replace(/{page}/g,_):void 0}static \u0275fac=function(w){return new(w||V)(a.GI1(Mt),a.GI1(s.Ud),a.GI1(a.AHE),a.GI1(a.q87),a.GI1(a.kD9))};static \u0275cmp=a.In1({type:V,selectors:[["p-galleriaThumbnails"]],viewQuery:function(w,S){if(1&w&&a.CC$(Kt,5),2&w){let $;a.wto($=a.Gqi())&&(S.itemsContainer=$.first)}},inputs:{containerId:"containerId",value:"value",isVertical:"isVertical",slideShowActive:"slideShowActive",circular:"circular",responsiveOptions:"responsiveOptions",contentHeight:"contentHeight",showThumbnailNavigators:"showThumbnailNavigators",templates:"templates",numVisible:"numVisible",activeIndex:"activeIndex"},outputs:{onActiveIndexChange:"onActiveIndexChange",stopSlideShow:"stopSlideShow"},decls:8,vars:6,consts:[[1,"p-galleria-thumbnail-wrapper"],[1,"p-galleria-thumbnail-container"],["type","button","pRipple","",3,"ngClass","disabled","click",4,"ngIf"],[1,"p-galleria-thumbnail-items-container",3,"ngStyle"],["role","tablist",1,"p-galleria-thumbnail-items",3,"transitionend","touchstart","touchmove"],["itemsContainer",""],[3,"ngClass","keydown",4,"ngFor","ngForOf"],["type","button","pRipple","",3,"ngClass","disabled","click"],[4,"ngIf"],[4,"ngTemplateOutlet"],[3,"styleClass",4,"ngIf"],[3,"styleClass"],[3,"ngClass","keydown"],[1,"p-galleria-thumbnail-item-content",3,"click","touchend","keydown.enter"],["type","thumbnail",3,"item","templates"],[3,"ngClass",4,"ngIf"],[3,"ngClass"]],template:function(w,S){1&w&&(a.I0R(0,"div",0)(1,"div",1),a.yuY(2,ve,3,7,"button",2),a.I0R(3,"div",3)(4,"div",4,5),a.qCj("transitionend",function(){return S.onTransitionEnd()})("touchstart",function(ze){return S.onTouchStart(ze)})("touchmove",function(ze){return S.onTouchMove(ze)}),a.yuY(6,at,3,15,"div",6),a.C$Y()(),a.yuY(7,Ht,3,7,"button",2),a.C$Y()()),2&w&&(a.yG2(2),a.E7m("ngIf",S.showThumbnailNavigators),a.yG2(),a.E7m("ngStyle",a.S45(4,vt,S.isVertical?S.contentHeight:"")),a.yG2(3),a.E7m("ngForOf",S.value),a.yG2(),a.E7m("ngIf",S.showThumbnailNavigators))},dependencies:()=>[s.QF,s.ay,s.u_,s.XV,s.Qt,ae,b,g,it],encapsulation:2,changeDetection:0})}return V})(),ri=(()=>{class V{static \u0275fac=function(w){return new(w||V)};static \u0275mod=a.a4G({type:V});static \u0275inj=a.s3X({imports:[s.MD,h.kT,Ie,R.O,b,g,J,ie,Ee.K,s.MD,h.kT]})}return V})()},4715:(lt,me,d)=>{"use strict";d.d(me,{O:()=>a});var i=d(2116),s=d(7200);let a=(()=>{class h extends s.m{static \u0275fac=(()=>{let f;return function(b){return(f||(f=i.otF(h)))(b||h)}})();static \u0275cmp=i.In1({type:h,selectors:[["TimesIcon"]],standalone:!0,features:[i.eg9,i.UHJ],decls:2,vars:5,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["d","M8.01186 7.00933L12.27 2.75116C12.341 2.68501 12.398 2.60524 12.4375 2.51661C12.4769 2.42798 12.4982 2.3323 12.4999 2.23529C12.5016 2.13827 12.4838 2.0419 12.4474 1.95194C12.4111 1.86197 12.357 1.78024 12.2884 1.71163C12.2198 1.64302 12.138 1.58893 12.0481 1.55259C11.9581 1.51625 11.8617 1.4984 11.7647 1.50011C11.6677 1.50182 11.572 1.52306 11.4834 1.56255C11.3948 1.60204 11.315 1.65898 11.2488 1.72997L6.99067 5.98814L2.7325 1.72997C2.59553 1.60234 2.41437 1.53286 2.22718 1.53616C2.03999 1.53946 1.8614 1.61529 1.72901 1.74767C1.59663 1.88006 1.5208 2.05865 1.5175 2.24584C1.5142 2.43303 1.58368 2.61419 1.71131 2.75116L5.96948 7.00933L1.71131 11.2675C1.576 11.403 1.5 11.5866 1.5 11.7781C1.5 11.9696 1.576 12.1532 1.71131 12.2887C1.84679 12.424 2.03043 12.5 2.2219 12.5C2.41338 12.5 2.59702 12.424 2.7325 12.2887L6.99067 8.03052L11.2488 12.2887C11.3843 12.424 11.568 12.5 11.7594 12.5C11.9509 12.5 12.1346 12.424 12.27 12.2887C12.4053 12.1532 12.4813 11.9696 12.4813 11.7781C12.4813 11.5866 12.4053 11.403 12.27 11.2675L8.01186 7.00933Z","fill","currentColor"]],template:function(g,b){1&g&&(i.S2Z(),i.I0R(0,"svg",0),i.wR5(1,"path",1),i.C$Y()),2&g&&(i.m8U(b.getClassNames()),i.e48("aria-label",b.ariaLabel)("aria-hidden",b.ariaHidden)("role",b.role))},encapsulation:2})}return h})()},5496:(lt,me,d)=>{"use strict";d.d(me,{W:()=>xt,U:()=>Ne});var i=d(9684),s=d(1368),a=d(2116),h=d(7564),l=d(144),f=d(7200);let g=(()=>{class be extends f.m{static \u0275fac=(()=>{let we;return function(U){return(we||(we=a.otF(be)))(U||be)}})();static \u0275cmp=a.In1({type:be,selectors:[["EyeIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:2,vars:5,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M0.0535499 7.25213C0.208567 7.59162 2.40413 12.4 7 12.4C11.5959 12.4 13.7914 7.59162 13.9465 7.25213C13.9487 7.2471 13.9506 7.24304 13.952 7.24001C13.9837 7.16396 14 7.08239 14 7.00001C14 6.91762 13.9837 6.83605 13.952 6.76001C13.9506 6.75697 13.9487 6.75292 13.9465 6.74788C13.7914 6.4084 11.5959 1.60001 7 1.60001C2.40413 1.60001 0.208567 6.40839 0.0535499 6.74788C0.0512519 6.75292 0.0494023 6.75697 0.048 6.76001C0.0163137 6.83605 0 6.91762 0 7.00001C0 7.08239 0.0163137 7.16396 0.048 7.24001C0.0494023 7.24304 0.0512519 7.2471 0.0535499 7.25213ZM7 11.2C3.664 11.2 1.736 7.92001 1.264 7.00001C1.736 6.08001 3.664 2.80001 7 2.80001C10.336 2.80001 12.264 6.08001 12.736 7.00001C12.264 7.92001 10.336 11.2 7 11.2ZM5.55551 9.16182C5.98308 9.44751 6.48576 9.6 7 9.6C7.68891 9.59789 8.349 9.32328 8.83614 8.83614C9.32328 8.349 9.59789 7.68891 9.59999 7C9.59999 6.48576 9.44751 5.98308 9.16182 5.55551C8.87612 5.12794 8.47006 4.7947 7.99497 4.59791C7.51988 4.40112 6.99711 4.34963 6.49276 4.44995C5.98841 4.55027 5.52513 4.7979 5.16152 5.16152C4.7979 5.52513 4.55027 5.98841 4.44995 6.49276C4.34963 6.99711 4.40112 7.51988 4.59791 7.99497C4.7947 8.47006 5.12794 8.87612 5.55551 9.16182ZM6.2222 5.83594C6.45243 5.6821 6.7231 5.6 7 5.6C7.37065 5.6021 7.72553 5.75027 7.98762 6.01237C8.24972 6.27446 8.39789 6.62934 8.4 7C8.4 7.27689 8.31789 7.54756 8.16405 7.77779C8.01022 8.00802 7.79157 8.18746 7.53575 8.29343C7.27994 8.39939 6.99844 8.42711 6.72687 8.37309C6.4553 8.31908 6.20584 8.18574 6.01005 7.98994C5.81425 7.79415 5.68091 7.54469 5.6269 7.27312C5.57288 7.00155 5.6006 6.72006 5.70656 6.46424C5.81253 6.20842 5.99197 5.98977 6.2222 5.83594Z","fill","currentColor"]],template:function(N,U){1&N&&(a.S2Z(),a.I0R(0,"svg",0),a.wR5(1,"path",1),a.C$Y()),2&N&&(a.m8U(U.getClassNames()),a.e48("aria-label",U.ariaLabel)("aria-hidden",U.ariaHidden)("role",U.role))},encapsulation:2})}return be})();var b=d(4616);let R=(()=>{class be extends f.m{pathId;ngOnInit(){this.pathId="url(#"+(0,b.Oc)()+")"}static \u0275fac=(()=>{let we;return function(U){return(we||(we=a.otF(be)))(U||be)}})();static \u0275cmp=a.In1({type:be,selectors:[["RefreshIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:6,vars:7,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M6.77051 5.96336C6.84324 5.99355 6.92127 6.00891 7.00002 6.00854C7.07877 6.00891 7.1568 5.99355 7.22953 5.96336C7.30226 5.93317 7.36823 5.88876 7.42357 5.83273L9.82101 3.43529C9.93325 3.32291 9.99629 3.17058 9.99629 3.01175C9.99629 2.85292 9.93325 2.70058 9.82101 2.5882L7.42357 0.190763C7.3687 0.131876 7.30253 0.0846451 7.22901 0.0518865C7.15549 0.019128 7.07612 0.00151319 6.99564 9.32772e-05C6.91517 -0.00132663 6.83523 0.0134773 6.7606 0.0436218C6.68597 0.0737664 6.61817 0.118634 6.56126 0.175548C6.50435 0.232462 6.45948 0.300257 6.42933 0.374888C6.39919 0.449519 6.38439 0.529456 6.38581 0.609933C6.38722 0.690409 6.40484 0.769775 6.4376 0.843296C6.47036 0.916817 6.51759 0.982986 6.57647 1.03786L7.95103 2.41241H6.99998C5.46337 2.41241 3.98969 3.02283 2.90314 4.10938C1.81659 5.19593 1.20618 6.66961 1.20618 8.20622C1.20618 9.74283 1.81659 11.2165 2.90314 12.3031C3.98969 13.3896 5.46337 14 6.99998 14C8.53595 13.9979 10.0084 13.3868 11.0945 12.3007C12.1806 11.2146 12.7917 9.74218 12.7938 8.20622C12.7938 8.04726 12.7306 7.89481 12.6182 7.78241C12.5058 7.67001 12.3534 7.60686 12.1944 7.60686C12.0355 7.60686 11.883 7.67001 11.7706 7.78241C11.6582 7.89481 11.5951 8.04726 11.5951 8.20622C11.5951 9.11504 11.3256 10.0035 10.8207 10.7591C10.3157 11.5148 9.59809 12.1037 8.75845 12.4515C7.9188 12.7993 6.99489 12.8903 6.10353 12.713C5.21217 12.5357 4.3934 12.0981 3.75077 11.4554C3.10813 10.8128 2.67049 9.99404 2.49319 9.10268C2.31589 8.21132 2.40688 7.2874 2.75468 6.44776C3.10247 5.60811 3.69143 4.89046 4.44709 4.38554C5.20275 3.88063 6.09116 3.61113 6.99998 3.61113H7.95098L6.57647 4.98564C6.46423 5.09802 6.40119 5.25035 6.40119 5.40918C6.40119 5.56801 6.46423 5.72035 6.57647 5.83273C6.63181 5.88876 6.69778 5.93317 6.77051 5.96336Z","fill","currentColor"],[3,"id"],["width","14","height","14","fill","white"]],template:function(N,U){1&N&&(a.S2Z(),a.I0R(0,"svg",0)(1,"g"),a.wR5(2,"path",1),a.C$Y(),a.I0R(3,"defs")(4,"clipPath",2),a.wR5(5,"rect",3),a.C$Y()()()),2&N&&(a.m8U(U.getClassNames()),a.e48("aria-label",U.ariaLabel)("aria-hidden",U.ariaHidden)("role",U.role),a.yG2(),a.e48("clip-path",U.pathId),a.yG2(3),a.E7m("id",U.pathId))},encapsulation:2})}return be})(),Y=(()=>{class be extends f.m{pathId;ngOnInit(){this.pathId="url(#"+(0,b.Oc)()+")"}static \u0275fac=(()=>{let we;return function(U){return(we||(we=a.otF(be)))(U||be)}})();static \u0275cmp=a.In1({type:be,selectors:[["SearchMinusIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:6,vars:7,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M6.0208 12.0411C4.83005 12.0411 3.66604 11.688 2.67596 11.0265C1.68589 10.3649 0.914216 9.42464 0.458534 8.32452C0.00285271 7.22441 -0.116374 6.01388 0.11593 4.84601C0.348235 3.67813 0.921637 2.60537 1.76363 1.76338C2.60562 0.921393 3.67838 0.34799 4.84625 0.115686C6.01412 -0.116618 7.22466 0.00260857 8.32477 0.45829C9.42488 0.913972 10.3652 1.68564 11.0267 2.67572C11.6883 3.66579 12.0414 4.8298 12.0414 6.02056C12.0395 7.41563 11.5542 8.76029 10.6783 9.8305L13.8244 12.9765C13.9367 13.089 13.9997 13.2414 13.9997 13.4003C13.9997 13.5592 13.9367 13.7116 13.8244 13.8241C13.769 13.8801 13.703 13.9245 13.6302 13.9548C13.5575 13.985 13.4794 14.0003 13.4006 14C13.3218 14.0003 13.2437 13.985 13.171 13.9548C13.0982 13.9245 13.0322 13.8801 12.9768 13.8241L9.83082 10.678C8.76059 11.5539 7.4159 12.0393 6.0208 12.0411ZM6.0208 1.20731C5.07199 1.20731 4.14449 1.48867 3.35559 2.0158C2.56669 2.54292 1.95181 3.29215 1.58872 4.16874C1.22562 5.04532 1.13062 6.00989 1.31572 6.94046C1.50083 7.87104 1.95772 8.72583 2.62863 9.39674C3.29954 10.0676 4.15433 10.5245 5.0849 10.7096C6.01548 10.8947 6.98005 10.7997 7.85663 10.4367C8.73322 10.0736 9.48244 9.45868 10.0096 8.66978C10.5367 7.88088 10.8181 6.95337 10.8181 6.00457C10.8181 4.73226 10.3126 3.51206 9.41297 2.6124C8.51331 1.71274 7.29311 1.20731 6.0208 1.20731ZM4.00591 6.60422H8.00362C8.16266 6.60422 8.31518 6.54104 8.42764 6.42859C8.5401 6.31613 8.60328 6.1636 8.60328 6.00456C8.60328 5.84553 8.5401 5.693 8.42764 5.58054C8.31518 5.46809 8.16266 5.40491 8.00362 5.40491H4.00591C3.84687 5.40491 3.69434 5.46809 3.58189 5.58054C3.46943 5.693 3.40625 5.84553 3.40625 6.00456C3.40625 6.1636 3.46943 6.31613 3.58189 6.42859C3.69434 6.54104 3.84687 6.60422 4.00591 6.60422Z","fill","currentColor"],[3,"id"],["width","14","height","14","fill","white"]],template:function(N,U){1&N&&(a.S2Z(),a.I0R(0,"svg",0)(1,"g"),a.wR5(2,"path",1),a.C$Y(),a.I0R(3,"defs")(4,"clipPath",2),a.wR5(5,"rect",3),a.C$Y()()()),2&N&&(a.m8U(U.getClassNames()),a.e48("aria-label",U.ariaLabel)("aria-hidden",U.ariaHidden)("role",U.role),a.yG2(),a.e48("clip-path",U.pathId),a.yG2(3),a.E7m("id",U.pathId))},encapsulation:2})}return be})(),J=(()=>{class be extends f.m{pathId;ngOnInit(){this.pathId="url(#"+(0,b.Oc)()+")"}static \u0275fac=(()=>{let we;return function(U){return(we||(we=a.otF(be)))(U||be)}})();static \u0275cmp=a.In1({type:be,selectors:[["SearchPlusIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:6,vars:7,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M2.67596 11.0265C3.66604 11.688 4.83005 12.0411 6.0208 12.0411C6.81143 12.0411 7.59432 11.8854 8.32477 11.5828C8.86999 11.357 9.37802 11.0526 9.83311 10.6803L12.9768 13.8241C13.0322 13.8801 13.0982 13.9245 13.171 13.9548C13.2437 13.985 13.3218 14.0003 13.4006 14C13.4794 14.0003 13.5575 13.985 13.6302 13.9548C13.703 13.9245 13.769 13.8801 13.8244 13.8241C13.9367 13.7116 13.9997 13.5592 13.9997 13.4003C13.9997 13.2414 13.9367 13.089 13.8244 12.9765L10.6806 9.8328C11.0529 9.37773 11.3572 8.86972 11.5831 8.32452C11.8856 7.59408 12.0414 6.81119 12.0414 6.02056C12.0414 4.8298 11.6883 3.66579 11.0267 2.67572C10.3652 1.68564 9.42488 0.913972 8.32477 0.45829C7.22466 0.00260857 6.01412 -0.116618 4.84625 0.115686C3.67838 0.34799 2.60562 0.921393 1.76363 1.76338C0.921637 2.60537 0.348235 3.67813 0.11593 4.84601C-0.116374 6.01388 0.00285271 7.22441 0.458534 8.32452C0.914216 9.42464 1.68589 10.3649 2.67596 11.0265ZM3.35559 2.0158C4.14449 1.48867 5.07199 1.20731 6.0208 1.20731C7.29311 1.20731 8.51331 1.71274 9.41297 2.6124C10.3126 3.51206 10.8181 4.73226 10.8181 6.00457C10.8181 6.95337 10.5367 7.88088 10.0096 8.66978C9.48244 9.45868 8.73322 10.0736 7.85663 10.4367C6.98005 10.7997 6.01548 10.8947 5.0849 10.7096C4.15433 10.5245 3.29954 10.0676 2.62863 9.39674C1.95772 8.72583 1.50083 7.87104 1.31572 6.94046C1.13062 6.00989 1.22562 5.04532 1.58872 4.16874C1.95181 3.29215 2.56669 2.54292 3.35559 2.0158ZM6.00481 8.60309C5.84641 8.60102 5.69509 8.53718 5.58308 8.42517C5.47107 8.31316 5.40722 8.16183 5.40515 8.00344V6.60422H4.00591C3.84687 6.60422 3.69434 6.54104 3.58189 6.42859C3.46943 6.31613 3.40625 6.1636 3.40625 6.00456C3.40625 5.84553 3.46943 5.693 3.58189 5.58054C3.69434 5.46809 3.84687 5.40491 4.00591 5.40491H5.40515V4.00572C5.40515 3.84668 5.46833 3.69416 5.58079 3.5817C5.69324 3.46924 5.84577 3.40607 6.00481 3.40607C6.16385 3.40607 6.31637 3.46924 6.42883 3.5817C6.54129 3.69416 6.60447 3.84668 6.60447 4.00572V5.40491H8.00362C8.16266 5.40491 8.31518 5.46809 8.42764 5.58054C8.5401 5.693 8.60328 5.84553 8.60328 6.00456C8.60328 6.1636 8.5401 6.31613 8.42764 6.42859C8.31518 6.54104 8.16266 6.60422 8.00362 6.60422H6.60447V8.00344C6.60239 8.16183 6.53855 8.31316 6.42654 8.42517C6.31453 8.53718 6.1632 8.60102 6.00481 8.60309Z","fill","currentColor"],[3,"id"],["width","14","height","14","fill","white"]],template:function(N,U){1&N&&(a.S2Z(),a.I0R(0,"svg",0)(1,"g"),a.wR5(2,"path",1),a.C$Y(),a.I0R(3,"defs")(4,"clipPath",2),a.wR5(5,"rect",3),a.C$Y()()()),2&N&&(a.m8U(U.getClassNames()),a.e48("aria-label",U.ariaLabel)("aria-hidden",U.ariaHidden)("role",U.role),a.yG2(),a.e48("clip-path",U.pathId),a.yG2(3),a.E7m("id",U.pathId))},encapsulation:2})}return be})();var ie=d(4715);let ae=(()=>{class be extends f.m{pathId;ngOnInit(){this.pathId="url(#"+(0,b.Oc)()+")"}static \u0275fac=(()=>{let we;return function(U){return(we||(we=a.otF(be)))(U||be)}})();static \u0275cmp=a.In1({type:be,selectors:[["UndoIcon"]],standalone:!0,features:[a.eg9,a.UHJ],decls:6,vars:7,consts:[["width","14","height","14","viewBox","0 0 14 14","fill","none","xmlns","http://www.w3.org/2000/svg"],["fill-rule","evenodd","clip-rule","evenodd","d","M6.77042 5.96336C6.84315 5.99355 6.92118 6.00891 6.99993 6.00854C7.07868 6.00891 7.15671 5.99355 7.22944 5.96336C7.30217 5.93317 7.36814 5.88876 7.42348 5.83273C7.53572 5.72035 7.59876 5.56801 7.59876 5.40918C7.59876 5.25035 7.53572 5.09802 7.42348 4.98564L6.04897 3.61113H6.99998C7.9088 3.61113 8.79722 3.88063 9.55288 4.38554C10.3085 4.89046 10.8975 5.60811 11.2453 6.44776C11.5931 7.2874 11.6841 8.21132 11.5068 9.10268C11.3295 9.99404 10.8918 10.8128 10.2492 11.4554C9.60657 12.0981 8.7878 12.5357 7.89644 12.713C7.00508 12.8903 6.08116 12.7993 5.24152 12.4515C4.40188 12.1037 3.68422 11.5148 3.17931 10.7591C2.67439 10.0035 2.4049 9.11504 2.4049 8.20622C2.4049 8.04726 2.34175 7.89481 2.22935 7.78241C2.11695 7.67001 1.9645 7.60686 1.80554 7.60686C1.64658 7.60686 1.49413 7.67001 1.38172 7.78241C1.26932 7.89481 1.20618 8.04726 1.20618 8.20622C1.20829 9.74218 1.81939 11.2146 2.90548 12.3007C3.99157 13.3868 5.46402 13.9979 6.99998 14C8.5366 14 10.0103 13.3896 11.0968 12.3031C12.1834 11.2165 12.7938 9.74283 12.7938 8.20622C12.7938 6.66961 12.1834 5.19593 11.0968 4.10938C10.0103 3.02283 8.5366 2.41241 6.99998 2.41241H6.04892L7.42348 1.03786C7.48236 0.982986 7.5296 0.916817 7.56235 0.843296C7.59511 0.769775 7.61273 0.690409 7.61415 0.609933C7.61557 0.529456 7.60076 0.449519 7.57062 0.374888C7.54047 0.300257 7.49561 0.232462 7.43869 0.175548C7.38178 0.118634 7.31398 0.0737664 7.23935 0.0436218C7.16472 0.0134773 7.08478 -0.00132663 7.00431 9.32772e-05C6.92383 0.00151319 6.84447 0.019128 6.77095 0.0518865C6.69742 0.0846451 6.63126 0.131876 6.57638 0.190763L4.17895 2.5882C4.06671 2.70058 4.00366 2.85292 4.00366 3.01175C4.00366 3.17058 4.06671 3.32291 4.17895 3.43529L6.57638 5.83273C6.63172 5.88876 6.69769 5.93317 6.77042 5.96336Z","fill","currentColor"],[3,"id"],["width","14","height","14","fill","white"]],template:function(N,U){1&N&&(a.S2Z(),a.I0R(0,"svg",0)(1,"g"),a.wR5(2,"path",1),a.C$Y(),a.I0R(3,"defs")(4,"clipPath",2),a.wR5(5,"rect",3),a.C$Y()()()),2&N&&(a.m8U(U.getClassNames()),a.e48("aria-label",U.ariaLabel)("aria-hidden",U.ariaHidden)("role",U.role),a.yG2(),a.e48("clip-path",U.pathId),a.yG2(3),a.E7m("id",U.pathId))},encapsulation:2})}return be})();var Ie=d(7352);const Ee=["mask"],Ge=["previewButton"],tt=["closeButton"];function gt(be,j){1&be&&a.C_f(0)}function Bt(be,j){if(1&be&&(a.SAx(0),a.yuY(1,gt,1,0,"ng-container",8),a.k70()),2&be){const we=a.GaO(2);a.yG2(),a.E7m("ngTemplateOutlet",we.indicatorTemplate)}}function kt(be,j){1&be&&a.wR5(0,"EyeIcon",9),2&be&&a.E7m("styleClass","p-image-preview-icon")}const Ye=(be,j)=>({height:be,width:j});function et(be,j){if(1&be){const we=a.KQA();a.I0R(0,"button",4,5),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.onImageClick())}),a.yuY(2,Bt,2,1,"ng-container",6)(3,kt,1,1,"ng-template",null,7,a.gJz),a.C$Y()}if(2&be){const we=a.Gew(4),N=a.GaO();a.E7m("ngStyle",a.IBC(4,Ye,N.height+"px",N.width+"px")),a.e48("aria-label",N.zoomImageAriaLabel),a.yG2(2),a.E7m("ngIf",N.indicatorTemplate)("ngIfElse",we)}}function Q(be,j){1&be&&a.wR5(0,"RefreshIcon")}function _e(be,j){}function ye(be,j){1&be&&a.yuY(0,_e,0,0,"ng-template")}function Re(be,j){1&be&&a.wR5(0,"UndoIcon")}function Xe(be,j){}function $e(be,j){1&be&&a.yuY(0,Xe,0,0,"ng-template")}function oe(be,j){1&be&&a.wR5(0,"SearchMinusIcon")}function ut(be,j){}function st(be,j){1&be&&a.yuY(0,ut,0,0,"ng-template")}function $t(be,j){1&be&&a.wR5(0,"SearchPlusIcon")}function oi(be,j){}function Jt(be,j){1&be&&a.yuY(0,oi,0,0,"ng-template")}function vi(be,j){1&be&&a.wR5(0,"TimesIcon")}function je(be,j){}function De(be,j){1&be&&a.yuY(0,je,0,0,"ng-template")}const Le=(be,j)=>({showTransitionParams:be,hideTransitionParams:j}),Ve=be=>({value:"visible",params:be});function te(be,j){if(1&be){const we=a.KQA();a.I0R(0,"div"),a.qCj("@animation.start",function(U){a.usT(we);const Fe=a.GaO(2);return a.CGJ(Fe.onAnimationStart(U))})("@animation.done",function(U){a.usT(we);const Fe=a.GaO(2);return a.CGJ(Fe.onAnimationEnd(U))}),a.I0R(1,"img",17),a.qCj("click",function(){a.usT(we);const U=a.GaO(2);return a.CGJ(U.onPreviewImageClick())}),a.C$Y()()}if(2&be){const we=a.GaO(2);a.E7m("@animation",a.S45(8,Ve,a.IBC(5,Le,we.showTransitionOptions,we.hideTransitionOptions))),a.yG2(),a.E7m("ngStyle",we.imagePreviewStyle()),a.e48("src",we.previewImageSrc?we.previewImageSrc:we.src,a.K6U)("srcset",we.previewImageSrcSet)("sizes",we.previewImageSizes)}}function ge(be,j){if(1&be){const we=a.KQA();a.I0R(0,"div",10,11),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.onMaskClick())})("keydown",function(U){a.usT(we);const Fe=a.GaO();return a.CGJ(Fe.onMaskKeydown(U))}),a.I0R(2,"div",12),a.qCj("click",function(U){a.usT(we);const Fe=a.GaO();return a.CGJ(Fe.handleToolbarClick(U))}),a.I0R(3,"button",13),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.rotateRight())}),a.yuY(4,Q,1,0,"RefreshIcon",14)(5,ye,1,0,null,8),a.C$Y(),a.I0R(6,"button",13),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.rotateLeft())}),a.yuY(7,Re,1,0,"UndoIcon",14)(8,$e,1,0,null,8),a.C$Y(),a.I0R(9,"button",15),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.zoomOut())}),a.yuY(10,oe,1,0,"SearchMinusIcon",14)(11,st,1,0,null,8),a.C$Y(),a.I0R(12,"button",15),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.zoomIn())}),a.yuY(13,$t,1,0,"SearchPlusIcon",14)(14,Jt,1,0,null,8),a.C$Y(),a.I0R(15,"button",13,16),a.qCj("click",function(){a.usT(we);const U=a.GaO();return a.CGJ(U.closePreview())}),a.yuY(17,vi,1,0,"TimesIcon",14)(18,De,1,0,null,8),a.C$Y()(),a.yuY(19,te,2,10,"div",14),a.C$Y()}if(2&be){const we=a.GaO();a.e48("aria-modal",we.maskVisible),a.yG2(3),a.e48("aria-label",we.rightAriaLabel()),a.yG2(),a.E7m("ngIf",!we.rotateRightIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",we.rotateRightIconTemplate),a.yG2(),a.e48("aria-label",we.leftAriaLabel()),a.yG2(),a.E7m("ngIf",!we.rotateLeftIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",we.rotateLeftIconTemplate),a.yG2(),a.E7m("disabled",we.isZoomOutDisabled),a.e48("aria-label",we.zoomOutAriaLabel()),a.yG2(),a.E7m("ngIf",!we.zoomOutIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",we.zoomOutIconTemplate),a.yG2(),a.E7m("disabled",we.isZoomInDisabled),a.e48("aria-label",we.zoomInAriaLabel()),a.yG2(),a.E7m("ngIf",!we.zoomInIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",we.zoomInIconTemplate),a.yG2(),a.e48("aria-label",we.closeAriaLabel()),a.yG2(2),a.E7m("ngIf",!we.closeIconTemplate),a.yG2(),a.E7m("ngTemplateOutlet",we.closeIconTemplate),a.yG2(),a.E7m("ngIf",we.previewVisible)}}let xt=(()=>{class be{document;config;cd;el;imageClass;imageStyle;styleClass;style;src;srcSet;sizes;previewImageSrc;previewImageSrcSet;previewImageSizes;alt;width;height;loading;appendTo;preview=!1;showTransitionOptions="150ms cubic-bezier(0, 0, 0.2, 1)";hideTransitionOptions="150ms cubic-bezier(0, 0, 0.2, 1)";onShow=new a._w7;onHide=new a._w7;onImageError=new a._w7;mask;previewButton;closeButton;templates;indicatorTemplate;rotateRightIconTemplate;rotateLeftIconTemplate;zoomOutIconTemplate;zoomInIconTemplate;closeIconTemplate;maskVisible=!1;previewVisible=!1;rotate=0;scale=1;previewClick=!1;container;wrapper;get isZoomOutDisabled(){return this.scale-this.zoomSettings.step<=this.zoomSettings.min}get isZoomInDisabled(){return this.scale+this.zoomSettings.step>=this.zoomSettings.max}zoomSettings={default:1,step:.1,max:1.5,min:.5};constructor(we,N,U,Fe){this.document=we,this.config=N,this.cd=U,this.el=Fe}ngAfterContentInit(){this.templates?.forEach(we=>{switch(we.getType()){case"indicator":default:this.indicatorTemplate=we.template;break;case"rotaterighticon":this.rotateRightIconTemplate=we.template;break;case"rotatelefticon":this.rotateLeftIconTemplate=we.template;break;case"zoomouticon":this.zoomOutIconTemplate=we.template;break;case"zoominicon":this.zoomInIconTemplate=we.template;break;case"closeicon":this.closeIconTemplate=we.template}})}onImageClick(){this.preview&&(this.maskVisible=!0,this.previewVisible=!0,l.k.blockBodyScroll())}onMaskClick(){this.previewClick||this.closePreview(),this.previewClick=!1}onMaskKeydown(we){"Escape"===we.code&&(this.onMaskClick(),setTimeout(()=>{l.k.focus(this.previewButton.nativeElement)},25),we.preventDefault())}onPreviewImageClick(){this.previewClick=!0}rotateRight(){this.rotate+=90,this.previewClick=!0}rotateLeft(){this.rotate-=90,this.previewClick=!0}zoomIn(){this.scale=this.scale+this.zoomSettings.step,this.previewClick=!0}zoomOut(){this.scale=this.scale-this.zoomSettings.step,this.previewClick=!0}onAnimationStart(we){switch(we.toState){case"visible":this.container=we.element,this.wrapper=this.container?.parentElement,this.appendContainer(),this.moveOnTop(),setTimeout(()=>{l.k.focus(this.closeButton.nativeElement)},25);break;case"void":l.k.addClass(this.wrapper,"p-component-overlay-leave")}}onAnimationEnd(we){switch(we.toState){case"void":b.eI.clear(this.wrapper),this.maskVisible=!1,this.container=null,this.wrapper=null,this.cd.markForCheck(),this.onHide.emit({});break;case"visible":this.onShow.emit({})}}moveOnTop(){b.eI.set("modal",this.wrapper,this.config.zIndex.modal)}appendContainer(){this.appendTo&&("body"===this.appendTo?this.document.body.appendChild(this.wrapper):l.k.appendChild(this.wrapper,this.appendTo))}imagePreviewStyle(){return{transform:"rotate("+this.rotate+"deg) scale("+this.scale+")"}}get zoomImageAriaLabel(){return this.config.translation.aria?this.config.translation.aria.zoomImage:void 0}containerClass(){return{"p-image p-component":!0,"p-image-preview-container":this.preview}}handleToolbarClick(we){we.stopPropagation()}closePreview(){this.previewVisible=!1,this.rotate=0,this.scale=this.zoomSettings.default,l.k.unblockBodyScroll()}imageError(we){this.onImageError.emit(we)}rightAriaLabel(){return this.config.translation.aria?this.config.translation.aria.rotateRight:void 0}leftAriaLabel(){return this.config.translation.aria?this.config.translation.aria.rotateLeft:void 0}zoomInAriaLabel(){return this.config.translation.aria?this.config.translation.aria.zoomIn:void 0}zoomOutAriaLabel(){return this.config.translation.aria?this.config.translation.aria.zoomOut:void 0}closeAriaLabel(){return this.config.translation.aria?this.config.translation.aria.close:void 0}onKeydownHandler(we){this.previewVisible&&this.closePreview()}static \u0275fac=function(N){return new(N||be)(a.GI1(s.Ud),a.GI1(h.MV),a.GI1(a.kD9),a.GI1(a.GMv))};static \u0275cmp=a.In1({type:be,selectors:[["p-image"]],contentQueries:function(N,U,Fe){if(1&N&&a.szK(Fe,h.U3,4),2&N){let Tt;a.wto(Tt=a.Gqi())&&(U.templates=Tt)}},viewQuery:function(N,U){if(1&N&&(a.CC$(Ee,5),a.CC$(Ge,5),a.CC$(tt,5)),2&N){let Fe;a.wto(Fe=a.Gqi())&&(U.mask=Fe.first),a.wto(Fe=a.Gqi())&&(U.previewButton=Fe.first),a.wto(Fe=a.Gqi())&&(U.closeButton=Fe.first)}},hostAttrs:[1,"p-element"],hostBindings:function(N,U){1&N&&a.qCj("keydown.escape",function(Tt){return U.onKeydownHandler(Tt)},!1,a.wLc)},inputs:{imageClass:"imageClass",imageStyle:"imageStyle",styleClass:"styleClass",style:"style",src:"src",srcSet:"srcSet",sizes:"sizes",previewImageSrc:"previewImageSrc",previewImageSrcSet:"previewImageSrcSet",previewImageSizes:"previewImageSizes",alt:"alt",width:"width",height:"height",loading:"loading",appendTo:"appendTo",preview:"preview",showTransitionOptions:"showTransitionOptions",hideTransitionOptions:"hideTransitionOptions"},outputs:{onShow:"onShow",onHide:"onHide",onImageError:"onImageError"},decls:4,vars:16,consts:[[3,"ngClass","ngStyle"],[3,"ngStyle","error"],["type","button","class","p-image-preview-indicator","style","border: 'none';",3,"ngStyle","click",4,"ngIf"],["class","p-image-mask p-component-overlay p-component-overlay-enter","role","dialog","pFocusTrap","",3,"click","keydown",4,"ngIf"],["type","button",1,"p-image-preview-indicator",2,"border","'none'",3,"ngStyle","click"],["previewButton",""],[4,"ngIf","ngIfElse"],["defaultTemplate",""],[4,"ngTemplateOutlet"],[3,"styleClass"],["role","dialog","pFocusTrap","",1,"p-image-mask","p-component-overlay","p-component-overlay-enter",3,"click","keydown"],["mask",""],[1,"p-image-toolbar",3,"click"],["type","button",1,"p-image-action","p-link",3,"click"],[4,"ngIf"],["type","button",1,"p-image-action","p-link",3,"disabled","click"],["closeButton",""],[1,"p-image-preview",3,"ngStyle","click"]],template:function(N,U){1&N&&(a.I0R(0,"span",0)(1,"img",1),a.qCj("error",function(Tt){return U.imageError(Tt)}),a.C$Y(),a.yuY(2,et,5,7,"button",2)(3,ge,20,19,"div",3),a.C$Y()),2&N&&(a.m8U(U.styleClass),a.E7m("ngClass",U.containerClass())("ngStyle",U.style),a.yG2(),a.m8U(U.imageClass),a.E7m("ngStyle",U.imageStyle),a.e48("src",U.src,a.K6U)("srcset",U.srcSet)("sizes",U.sizes)("alt",U.alt)("width",U.width)("height",U.height)("loading",U.loading),a.yG2(),a.E7m("ngIf",U.preview),a.yG2(),a.E7m("ngIf",U.maskVisible))},dependencies:()=>[s.QF,s.u_,s.XV,s.Qt,R,g,ae,Y,J,ie.O,Ie.W],styles:["@layer primeng{.p-image-mask{display:flex;align-items:center;justify-content:center}.p-image-preview-container{position:relative;display:inline-block;line-height:0}.p-image-preview-indicator{position:absolute;left:0;top:0;width:100%;height:100%;outline:none;border:none;padding:0;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s}.p-image-preview-icon.pi{font-size:1.5rem}.p-image-preview-icon.p-icon{scale:1.5}.p-image-preview-container:hover>.p-image-preview-indicator{opacity:1;cursor:pointer}.p-image-preview-container>img{cursor:pointer}.p-image-toolbar{position:absolute;top:0;right:0;display:flex;z-index:1}.p-image-action.p-link{display:flex;justify-content:center;align-items:center}.p-image-action.p-link[disabled]{opacity:.5}.p-image-preview{transition:transform .15s;max-width:100vw;max-height:100vh}}\n"],encapsulation:2,data:{animation:[(0,i.gV)("animation",[(0,i.aK)("void => visible",[(0,i.wb)({transform:"scale(0.7)",opacity:0}),(0,i.Cs)("{{showTransitionParams}}")]),(0,i.aK)("visible => void",[(0,i.Cs)("{{hideTransitionParams}}",(0,i.wb)({transform:"scale(0.7)",opacity:0}))])])]},changeDetection:0})}return be})(),Ne=(()=>{class be{static \u0275fac=function(N){return new(N||be)};static \u0275mod=a.a4G({type:be});static \u0275inj=a.s3X({imports:[s.MD,h.kT,R,g,ae,Y,J,ie.O,Ie.K,h.kT]})}return be})()},3892:(lt,me,d)=>{"use strict";d.d(me,{W:()=>a,c:()=>h});var i=d(1368),s=d(2116);let a=(()=>{class l{styleClass;style;shape="rectangle";animation="wave";borderRadius;size;width="100%";height="1rem";containerClass(){return{"p-skeleton p-component":!0,"p-skeleton-circle":"circle"===this.shape,"p-skeleton-none":"none"===this.animation}}containerStyle(){return this.size?{...this.style,width:this.size,height:this.size,borderRadius:this.borderRadius}:{...this.style,width:this.width,height:this.height,borderRadius:this.borderRadius}}static \u0275fac=function(b){return new(b||l)};static \u0275cmp=s.In1({type:l,selectors:[["p-skeleton"]],hostAttrs:[1,"p-element"],inputs:{styleClass:"styleClass",style:"style",shape:"shape",animation:"animation",borderRadius:"borderRadius",size:"size",width:"width",height:"height"},decls:1,vars:7,consts:[[3,"ngClass","ngStyle"]],template:function(b,R){1&b&&s.wR5(0,"div",0),2&b&&(s.m8U(R.styleClass),s.E7m("ngClass",R.containerClass())("ngStyle",R.containerStyle()),s.e48("data-pc-name","skeleton")("aria-hidden",!0)("data-pc-section","root"))},dependencies:[i.QF,i.Qt],styles:['@layer primeng{.p-skeleton{position:relative;overflow:hidden}.p-skeleton:after{content:"";animation:p-skeleton-animation 1.2s infinite;height:100%;left:0;position:absolute;right:0;top:0;transform:translate(-100%);z-index:1}.p-skeleton.p-skeleton-circle{border-radius:50%}.p-skeleton-none:after{animation:none}}@keyframes p-skeleton-animation{0%{transform:translate(-100%)}to{transform:translate(100%)}}\n'],encapsulation:2,changeDetection:0})}return l})(),h=(()=>{class l{static \u0275fac=function(b){return new(b||l)};static \u0275mod=s.a4G({type:l});static \u0275inj=s.s3X({imports:[i.MD]})}return l})()},4616:(lt,me,d)=>{"use strict";d.d(me,{Oc:()=>a,Yv:()=>i,eI:()=>l});class i{static isArray(g,b=!0){return Array.isArray(g)&&(b||0!==g.length)}static isObject(g,b=!0){return g instanceof Object&&g.constructor===Object&&(b||0!==Object.keys(g).length)}static equals(g,b,R){return R?this.resolveFieldData(g,R)===this.resolveFieldData(b,R):this.equalsByValue(g,b)}static equalsByValue(g,b){if(g===b)return!0;if(g&&b&&"object"==typeof g&&"object"==typeof b){var J,ie,ae,R=Array.isArray(g),Y=Array.isArray(b);if(R&&Y){if((ie=g.length)!=b.length)return!1;for(J=ie;0!=J--;)if(!this.equalsByValue(g[J],b[J]))return!1;return!0}if(R!=Y)return!1;var Ie=this.isDate(g),Ee=this.isDate(b);if(Ie!=Ee)return!1;if(Ie&&Ee)return g.getTime()==b.getTime();var Ge=g instanceof RegExp,tt=b instanceof RegExp;if(Ge!=tt)return!1;if(Ge&&tt)return g.toString()==b.toString();var gt=Object.keys(g);if((ie=gt.length)!==Object.keys(b).length)return!1;for(J=ie;0!=J--;)if(!Object.prototype.hasOwnProperty.call(b,gt[J]))return!1;for(J=ie;0!=J--;)if(!this.equalsByValue(g[ae=gt[J]],b[ae]))return!1;return!0}return g!=g&&b!=b}static resolveFieldData(g,b){if(g&&b){if(this.isFunction(b))return b(g);if(-1==b.indexOf("."))return g[b];{let R=b.split("."),Y=g;for(let J=0,ie=R.length;J=g.length&&(R%=g.length,b%=g.length),g.splice(R,0,g.splice(b,1)[0]))}static insertIntoOrderedArray(g,b,R,Y){if(R.length>0){let J=!1;for(let ie=0;ieb){R.splice(ie,0,g),J=!0;break}J||R.push(g)}else R.push(g)}static findIndexInList(g,b){let R=-1;if(b)for(let Y=0;Yb?1:0,J}static sort(g,b,R=1,Y,J=1){const ie=i.compare(g,b,Y,R);let ae=R;return(i.isEmpty(g)||i.isEmpty(b))&&(ae=1===J?R:J),ae*ie}static merge(g,b){if(null!=g||null!=b)return null!=g&&"object"!=typeof g||null!=b&&"object"!=typeof b?null!=g&&"string"!=typeof g||null!=b&&"string"!=typeof b?b||g:[g||"",b||""].join(" "):{...g||{},...b||{}}}static isPrintableCharacter(g=""){return this.isNotEmpty(g)&&1===g.length&&g.match(/\S| /)}static getItemValue(g,...b){return this.isFunction(g)?g(...b):g}static findLastIndex(g,b){let R=-1;if(this.isNotEmpty(g))try{R=g.findLastIndex(b)}catch{R=g.lastIndexOf([...g].reverse().find(b))}return R}static findLast(g,b){let R;if(this.isNotEmpty(g))try{R=g.findLast(b)}catch{R=[...g].reverse().find(b)}return R}static deepEquals(g,b){if(g===b)return!0;if(g&&b&&"object"==typeof g&&"object"==typeof b){var J,ie,ae,R=Array.isArray(g),Y=Array.isArray(b);if(R&&Y){if((ie=g.length)!=b.length)return!1;for(J=ie;0!=J--;)if(!this.deepEquals(g[J],b[J]))return!1;return!0}if(R!=Y)return!1;var Ie=g instanceof Date,Ee=b instanceof Date;if(Ie!=Ee)return!1;if(Ie&&Ee)return g.getTime()==b.getTime();var Ge=g instanceof RegExp,tt=b instanceof RegExp;if(Ge!=tt)return!1;if(Ge&&tt)return g.toString()==b.toString();var gt=Object.keys(g);if((ie=gt.length)!==Object.keys(b).length)return!1;for(J=ie;0!=J--;)if(!Object.prototype.hasOwnProperty.call(b,gt[J]))return!1;for(J=ie;0!=J--;)if(!this.deepEquals(g[ae=gt[J]],b[ae]))return!1;return!0}return g!=g&&b!=b}}var s=0;function a(f="pn_id_"){return`${f}${++s}`}var l=function h(){let f=[];const Y=J=>J&&parseInt(J.style.zIndex,10)||0;return{get:Y,set:(J,ie,ae)=>{ie&&(ie.style.zIndex=String(((J,ie)=>{let ae=f.length>0?f[f.length-1]:{key:J,value:ie},Ie=ae.value+(ae.key===J?0:ie)+2;return f.push({key:J,value:Ie}),Ie})(J,ae)))},clear:J=>{J&&((J=>{f=f.filter(ie=>ie.value!==J)})(Y(J)),J.style.zIndex="")},getCurrent:()=>f.length>0?f[f.length-1].value:0}}()},3908:(lt,me,d)=>{"use strict";function i(a,h,l,f,g,b,R){try{var Y=a[b](R),J=Y.value}catch(ie){return void l(ie)}Y.done?h(J):Promise.resolve(J).then(f,g)}function s(a){return function(){var h=this,l=arguments;return new Promise(function(f,g){var b=a.apply(h,l);function R(J){i(b,f,g,R,Y,"next",J)}function Y(J){i(b,f,g,R,Y,"throw",J)}R(void 0)})}}d.d(me,{c:()=>s})},1316:(lt,me,d)=>{"use strict";function ie(je,De,Le,Ve){return new(Le||(Le=Promise))(function(ge,xt){function Ne(we){try{j(Ve.next(we))}catch(N){xt(N)}}function be(we){try{j(Ve.throw(we))}catch(N){xt(N)}}function j(we){we.done?ge(we.value):function te(ge){return ge instanceof Le?ge:new Le(function(xt){xt(ge)})}(we.value).then(Ne,be)}j((Ve=Ve.apply(je,De||[])).next())})}function Ye(je){return this instanceof Ye?(this.v=je,this):new Ye(je)}function et(je,De,Le){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var te,Ve=Le.apply(je,De||[]),ge=[];return te={},xt("next"),xt("throw"),xt("return"),te[Symbol.asyncIterator]=function(){return this},te;function xt(U){Ve[U]&&(te[U]=function(Fe){return new Promise(function(Tt,Ke){ge.push([U,Fe,Tt,Ke])>1||Ne(U,Fe)})})}function Ne(U,Fe){try{!function be(U){U.value instanceof Ye?Promise.resolve(U.value.v).then(j,we):N(ge[0][2],U)}(Ve[U](Fe))}catch(Tt){N(ge[0][3],Tt)}}function j(U){Ne("next",U)}function we(U){Ne("throw",U)}function N(U,Fe){U(Fe),ge.shift(),ge.length&&Ne(ge[0][0],ge[0][1])}}function _e(je){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var Le,De=je[Symbol.asyncIterator];return De?De.call(je):(je=function Ge(je){var De="function"==typeof Symbol&&Symbol.iterator,Le=De&&je[De],Ve=0;if(Le)return Le.call(je);if(je&&"number"==typeof je.length)return{next:function(){return je&&Ve>=je.length&&(je=void 0),{value:je&&je[Ve++],done:!je}}};throw new TypeError(De?"Object is not iterable.":"Symbol.iterator is not defined.")}(je),Le={},Ve("next"),Ve("throw"),Ve("return"),Le[Symbol.asyncIterator]=function(){return this},Le);function Ve(ge){Le[ge]=je[ge]&&function(xt){return new Promise(function(Ne,be){!function te(ge,xt,Ne,be){Promise.resolve(be).then(function(j){ge({value:j,done:Ne})},xt)}(Ne,be,(xt=je[ge](xt)).done,xt.value)})}}}d.d(me,{U1:()=>Ye,kH:()=>ie,mA:()=>_e,o7:()=>et}),"function"==typeof SuppressedError&&SuppressedError}},lt=>{lt(lt.s=660)}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/polyfills.febf6ea84d149d1b.js b/client/dist/angular-material-template/polyfills.febf6ea84d149d1b.js new file mode 100644 index 0000000..af12836 --- /dev/null +++ b/client/dist/angular-material-template/polyfills.febf6ea84d149d1b.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkangular_material_template=self.webpackChunkangular_material_template||[]).push([[260],{7432:(ce,Ee,de)=>{de(4728)},4728:()=>{!function(t){const n=t.performance;function i(L){n&&n.mark&&n.mark(L)}function o(L,T){n&&n.measure&&n.measure(L,T)}i("Zone");const c=t.__Zone_symbol_prefix||"__zone_symbol__";function a(L){return c+L}const y=!0===t[a("forceDuplicateZoneCheck")];if(t.Zone){if(y||"function"!=typeof t.Zone.__symbol__)throw new Error("Zone already loaded.");return t.Zone}let d=(()=>{class L{static#e=this.__symbol__=a;static assertZonePatched(){if(t.Promise!==se.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=L.current;for(;e.parent;)e=e.parent;return e}static get current(){return U.zone}static get currentTask(){return oe}static __load_patch(e,r,k=!1){if(se.hasOwnProperty(e)){if(!k&&y)throw Error("Already loaded patch: "+e)}else if(!t["__Zone_disable_"+e]){const C="Zone:"+e;i(C),se[e]=r(t,L,X),o(C,C)}}get parent(){return this._parent}get name(){return this._name}constructor(e,r){this._parent=e,this._name=r?r.name||"unnamed":"",this._properties=r&&r.properties||{},this._zoneDelegate=new v(this,this._parent&&this._parent._zoneDelegate,r)}get(e){const r=this.getZoneWith(e);if(r)return r._properties[e]}getZoneWith(e){let r=this;for(;r;){if(r._properties.hasOwnProperty(e))return r;r=r._parent}return null}fork(e){if(!e)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,e)}wrap(e,r){if("function"!=typeof e)throw new Error("Expecting function got: "+e);const k=this._zoneDelegate.intercept(this,e,r),C=this;return function(){return C.runGuarded(k,this,arguments,r)}}run(e,r,k,C){U={parent:U,zone:this};try{return this._zoneDelegate.invoke(this,e,r,k,C)}finally{U=U.parent}}runGuarded(e,r=null,k,C){U={parent:U,zone:this};try{try{return this._zoneDelegate.invoke(this,e,r,k,C)}catch($){if(this._zoneDelegate.handleError(this,$))throw $}}finally{U=U.parent}}runTask(e,r,k){if(e.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(e.zone||K).name+"; Execution: "+this.name+")");if(e.state===x&&(e.type===Q||e.type===P))return;const C=e.state!=E;C&&e._transitionTo(E,j),e.runCount++;const $=oe;oe=e,U={parent:U,zone:this};try{e.type==P&&e.data&&!e.data.isPeriodic&&(e.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,e,r,k)}catch(u){if(this._zoneDelegate.handleError(this,u))throw u}}finally{e.state!==x&&e.state!==h&&(e.type==Q||e.data&&e.data.isPeriodic?C&&e._transitionTo(j,E):(e.runCount=0,this._updateTaskCount(e,-1),C&&e._transitionTo(x,E,x))),U=U.parent,oe=$}}scheduleTask(e){if(e.zone&&e.zone!==this){let k=this;for(;k;){if(k===e.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${e.zone.name}`);k=k.parent}}e._transitionTo(z,x);const r=[];e._zoneDelegates=r,e._zone=this;try{e=this._zoneDelegate.scheduleTask(this,e)}catch(k){throw e._transitionTo(h,z,x),this._zoneDelegate.handleError(this,k),k}return e._zoneDelegates===r&&this._updateTaskCount(e,1),e.state==z&&e._transitionTo(j,z),e}scheduleMicroTask(e,r,k,C){return this.scheduleTask(new p(I,e,r,k,C,void 0))}scheduleMacroTask(e,r,k,C,$){return this.scheduleTask(new p(P,e,r,k,C,$))}scheduleEventTask(e,r,k,C,$){return this.scheduleTask(new p(Q,e,r,k,C,$))}cancelTask(e){if(e.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(e.zone||K).name+"; Execution: "+this.name+")");if(e.state===j||e.state===E){e._transitionTo(G,j,E);try{this._zoneDelegate.cancelTask(this,e)}catch(r){throw e._transitionTo(h,G),this._zoneDelegate.handleError(this,r),r}return this._updateTaskCount(e,-1),e._transitionTo(x,G),e.runCount=0,e}}_updateTaskCount(e,r){const k=e._zoneDelegates;-1==r&&(e._zoneDelegates=null);for(let C=0;CL.hasTask(e,r),onScheduleTask:(L,T,e,r)=>L.scheduleTask(e,r),onInvokeTask:(L,T,e,r,k,C)=>L.invokeTask(e,r,k,C),onCancelTask:(L,T,e,r)=>L.cancelTask(e,r)};class v{constructor(T,e,r){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=T,this._parentDelegate=e,this._forkZS=r&&(r&&r.onFork?r:e._forkZS),this._forkDlgt=r&&(r.onFork?e:e._forkDlgt),this._forkCurrZone=r&&(r.onFork?this.zone:e._forkCurrZone),this._interceptZS=r&&(r.onIntercept?r:e._interceptZS),this._interceptDlgt=r&&(r.onIntercept?e:e._interceptDlgt),this._interceptCurrZone=r&&(r.onIntercept?this.zone:e._interceptCurrZone),this._invokeZS=r&&(r.onInvoke?r:e._invokeZS),this._invokeDlgt=r&&(r.onInvoke?e:e._invokeDlgt),this._invokeCurrZone=r&&(r.onInvoke?this.zone:e._invokeCurrZone),this._handleErrorZS=r&&(r.onHandleError?r:e._handleErrorZS),this._handleErrorDlgt=r&&(r.onHandleError?e:e._handleErrorDlgt),this._handleErrorCurrZone=r&&(r.onHandleError?this.zone:e._handleErrorCurrZone),this._scheduleTaskZS=r&&(r.onScheduleTask?r:e._scheduleTaskZS),this._scheduleTaskDlgt=r&&(r.onScheduleTask?e:e._scheduleTaskDlgt),this._scheduleTaskCurrZone=r&&(r.onScheduleTask?this.zone:e._scheduleTaskCurrZone),this._invokeTaskZS=r&&(r.onInvokeTask?r:e._invokeTaskZS),this._invokeTaskDlgt=r&&(r.onInvokeTask?e:e._invokeTaskDlgt),this._invokeTaskCurrZone=r&&(r.onInvokeTask?this.zone:e._invokeTaskCurrZone),this._cancelTaskZS=r&&(r.onCancelTask?r:e._cancelTaskZS),this._cancelTaskDlgt=r&&(r.onCancelTask?e:e._cancelTaskDlgt),this._cancelTaskCurrZone=r&&(r.onCancelTask?this.zone:e._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const k=r&&r.onHasTask;(k||e&&e._hasTaskZS)&&(this._hasTaskZS=k?r:b,this._hasTaskDlgt=e,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=T,r.onScheduleTask||(this._scheduleTaskZS=b,this._scheduleTaskDlgt=e,this._scheduleTaskCurrZone=this.zone),r.onInvokeTask||(this._invokeTaskZS=b,this._invokeTaskDlgt=e,this._invokeTaskCurrZone=this.zone),r.onCancelTask||(this._cancelTaskZS=b,this._cancelTaskDlgt=e,this._cancelTaskCurrZone=this.zone))}fork(T,e){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,T,e):new d(T,e)}intercept(T,e,r){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,T,e,r):e}invoke(T,e,r,k,C){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,T,e,r,k,C):e.apply(r,k)}handleError(T,e){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,T,e)}scheduleTask(T,e){let r=e;if(this._scheduleTaskZS)this._hasTaskZS&&r._zoneDelegates.push(this._hasTaskDlgtOwner),r=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,T,e),r||(r=e);else if(e.scheduleFn)e.scheduleFn(e);else{if(e.type!=I)throw new Error("Task is missing scheduleFn.");R(e)}return r}invokeTask(T,e,r,k){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,T,e,r,k):e.callback.apply(r,k)}cancelTask(T,e){let r;if(this._cancelTaskZS)r=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,T,e);else{if(!e.cancelFn)throw Error("Task is not cancelable");r=e.cancelFn(e)}return r}hasTask(T,e){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,T,e)}catch(r){this.handleError(T,r)}}_updateTaskCount(T,e){const r=this._taskCounts,k=r[T],C=r[T]=k+e;if(C<0)throw new Error("More tasks executed then were scheduled.");0!=k&&0!=C||this.hasTask(this.zone,{microTask:r.microTask>0,macroTask:r.macroTask>0,eventTask:r.eventTask>0,change:T})}}class p{constructor(T,e,r,k,C,$){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=T,this.source=e,this.data=k,this.scheduleFn=C,this.cancelFn=$,!r)throw new Error("callback is not defined");this.callback=r;const u=this;this.invoke=T===Q&&k&&k.useG?p.invokeTask:function(){return p.invokeTask.call(t,u,this,arguments)}}static invokeTask(T,e,r){T||(T=this),te++;try{return T.runCount++,T.zone.runTask(T,e,r)}finally{1==te&&_(),te--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(x,z)}_transitionTo(T,e,r){if(this._state!==e&&this._state!==r)throw new Error(`${this.type} '${this.source}': can not transition to '${T}', expecting state '${e}'${r?" or '"+r+"'":""}, was '${this._state}'.`);this._state=T,T==x&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?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 M=a("setTimeout"),Z=a("Promise"),N=a("then");let J,B=[],H=!1;function q(L){if(J||t[Z]&&(J=t[Z].resolve(0)),J){let T=J[N];T||(T=J.then),T.call(J,L)}else t[M](L,0)}function R(L){0===te&&0===B.length&&q(_),L&&B.push(L)}function _(){if(!H){for(H=!0;B.length;){const L=B;B=[];for(let T=0;TU,onUnhandledError:W,microtaskDrainDone:W,scheduleMicroTask:R,showUncaughtError:()=>!d[a("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:W,patchMethod:()=>W,bindArguments:()=>[],patchThen:()=>W,patchMacroTask:()=>W,patchEventPrototype:()=>W,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>W,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>W,wrapWithCurrentZone:()=>W,filterProperties:()=>[],attachOriginToPatched:()=>W,_redefineProperty:()=>W,patchCallbacks:()=>W,nativeScheduleMicroTask:q};let U={parent:null,zone:new d(null,null)},oe=null,te=0;function W(){}o("Zone","Zone"),t.Zone=d}(globalThis);const ce=Object.getOwnPropertyDescriptor,Ee=Object.defineProperty,de=Object.getPrototypeOf,ge=Object.create,Fe=Array.prototype.slice,Oe="addEventListener",Ze="removeEventListener",Ne=Zone.__symbol__(Oe),Ie=Zone.__symbol__(Ze),ae="true",le="false",ke=Zone.__symbol__("");function Me(t,n){return Zone.current.wrap(t,n)}function Le(t,n,i,o,c){return Zone.current.scheduleMacroTask(t,n,i,o,c)}const A=Zone.__symbol__,we=typeof window<"u",Te=we?window:void 0,Y=we&&Te||globalThis,at="removeAttribute";function je(t,n){for(let i=t.length-1;i>=0;i--)"function"==typeof t[i]&&(t[i]=Me(t[i],n+"_"+i));return t}function Be(t){return!t||!1!==t.writable&&!("function"==typeof t.get&&typeof t.set>"u")}const Ue=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,Re=!("nw"in Y)&&typeof Y.process<"u"&&"[object process]"==={}.toString.call(Y.process),Ae=!Re&&!Ue&&!(!we||!Te.HTMLElement),We=typeof Y.process<"u"&&"[object process]"==={}.toString.call(Y.process)&&!Ue&&!(!we||!Te.HTMLElement),Ce={},qe=function(t){if(!(t=t||Y.event))return;let n=Ce[t.type];n||(n=Ce[t.type]=A("ON_PROPERTY"+t.type));const i=this||t.target||Y,o=i[n];let c;return Ae&&i===Te&&"error"===t.type?(c=o&&o.call(this,t.message,t.filename,t.lineno,t.colno,t.error),!0===c&&t.preventDefault()):(c=o&&o.apply(this,arguments),null!=c&&!c&&t.preventDefault()),c};function ze(t,n,i){let o=ce(t,n);if(!o&&i&&ce(i,n)&&(o={enumerable:!0,configurable:!0}),!o||!o.configurable)return;const c=A("on"+n+"patched");if(t.hasOwnProperty(c)&&t[c])return;delete o.writable,delete o.value;const a=o.get,y=o.set,d=n.slice(2);let b=Ce[d];b||(b=Ce[d]=A("ON_PROPERTY"+d)),o.set=function(v){let p=this;!p&&t===Y&&(p=Y),p&&("function"==typeof p[b]&&p.removeEventListener(d,qe),y&&y.call(p,null),p[b]=v,"function"==typeof v&&p.addEventListener(d,qe,!1))},o.get=function(){let v=this;if(!v&&t===Y&&(v=Y),!v)return null;const p=v[b];if(p)return p;if(a){let M=a.call(this);if(M)return o.set.call(this,M),"function"==typeof v[at]&&v.removeAttribute(n),M}return null},Ee(t,n,o),t[c]=!0}function Xe(t,n,i){if(n)for(let o=0;ofunction(y,d){const b=i(y,d);return b.cbIdx>=0&&"function"==typeof d[b.cbIdx]?Le(b.name,d[b.cbIdx],b,c):a.apply(y,d)})}function fe(t,n){t[A("OriginalDelegate")]=n}let Ye=!1,He=!1;function ht(){if(Ye)return He;Ye=!0;try{const t=Te.navigator.userAgent;(-1!==t.indexOf("MSIE ")||-1!==t.indexOf("Trident/")||-1!==t.indexOf("Edge/"))&&(He=!0)}catch{}return He}Zone.__load_patch("ZoneAwarePromise",(t,n,i)=>{const o=Object.getOwnPropertyDescriptor,c=Object.defineProperty,y=i.symbol,d=[],b=!1!==t[y("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],v=y("Promise"),p=y("then"),M="__creationTrace__";i.onUnhandledError=u=>{if(i.showUncaughtError()){const l=u&&u.rejection;l?console.error("Unhandled Promise rejection:",l instanceof Error?l.message:l,"; Zone:",u.zone.name,"; Task:",u.task&&u.task.source,"; Value:",l,l instanceof Error?l.stack:void 0):console.error(u)}},i.microtaskDrainDone=()=>{for(;d.length;){const u=d.shift();try{u.zone.runGuarded(()=>{throw u.throwOriginal?u.rejection:u})}catch(l){N(l)}}};const Z=y("unhandledPromiseRejectionHandler");function N(u){i.onUnhandledError(u);try{const l=n[Z];"function"==typeof l&&l.call(this,u)}catch{}}function B(u){return u&&u.then}function H(u){return u}function J(u){return e.reject(u)}const q=y("state"),R=y("value"),_=y("finally"),K=y("parentPromiseValue"),x=y("parentPromiseState"),z="Promise.then",j=null,E=!0,G=!1,h=0;function I(u,l){return s=>{try{X(u,l,s)}catch(f){X(u,!1,f)}}}const P=function(){let u=!1;return function(s){return function(){u||(u=!0,s.apply(null,arguments))}}},Q="Promise resolved with itself",se=y("currentTaskTrace");function X(u,l,s){const f=P();if(u===s)throw new TypeError(Q);if(u[q]===j){let g=null;try{("object"==typeof s||"function"==typeof s)&&(g=s&&s.then)}catch(w){return f(()=>{X(u,!1,w)})(),u}if(l!==G&&s instanceof e&&s.hasOwnProperty(q)&&s.hasOwnProperty(R)&&s[q]!==j)oe(s),X(u,s[q],s[R]);else if(l!==G&&"function"==typeof g)try{g.call(s,f(I(u,l)),f(I(u,!1)))}catch(w){f(()=>{X(u,!1,w)})()}else{u[q]=l;const w=u[R];if(u[R]=s,u[_]===_&&l===E&&(u[q]=u[x],u[R]=u[K]),l===G&&s instanceof Error){const m=n.currentTask&&n.currentTask.data&&n.currentTask.data[M];m&&c(s,se,{configurable:!0,enumerable:!1,writable:!0,value:m})}for(let m=0;m{try{const D=u[R],S=!!s&&_===s[_];S&&(s[K]=D,s[x]=w);const O=l.run(m,void 0,S&&m!==J&&m!==H?[]:[D]);X(s,!0,O)}catch(D){X(s,!1,D)}},s)}const L=function(){},T=t.AggregateError;class e{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(l){return l instanceof e?l:X(new this(null),E,l)}static reject(l){return X(new this(null),G,l)}static withResolvers(){const l={};return l.promise=new e((s,f)=>{l.resolve=s,l.reject=f}),l}static any(l){if(!l||"function"!=typeof l[Symbol.iterator])return Promise.reject(new T([],"All promises were rejected"));const s=[];let f=0;try{for(let m of l)f++,s.push(e.resolve(m))}catch{return Promise.reject(new T([],"All promises were rejected"))}if(0===f)return Promise.reject(new T([],"All promises were rejected"));let g=!1;const w=[];return new e((m,D)=>{for(let S=0;S{g||(g=!0,m(O))},O=>{w.push(O),f--,0===f&&(g=!0,D(new T(w,"All promises were rejected")))})})}static race(l){let s,f,g=new this((D,S)=>{s=D,f=S});function w(D){s(D)}function m(D){f(D)}for(let D of l)B(D)||(D=this.resolve(D)),D.then(w,m);return g}static all(l){return e.allWithCallback(l)}static allSettled(l){return(this&&this.prototype instanceof e?this:e).allWithCallback(l,{thenCallback:f=>({status:"fulfilled",value:f}),errorCallback:f=>({status:"rejected",reason:f})})}static allWithCallback(l,s){let f,g,w=new this((O,V)=>{f=O,g=V}),m=2,D=0;const S=[];for(let O of l){B(O)||(O=this.resolve(O));const V=D;try{O.then(F=>{S[V]=s?s.thenCallback(F):F,m--,0===m&&f(S)},F=>{s?(S[V]=s.errorCallback(F),m--,0===m&&f(S)):g(F)})}catch(F){g(F)}m++,D++}return m-=2,0===m&&f(S),w}constructor(l){const s=this;if(!(s instanceof e))throw new Error("Must be an instanceof Promise.");s[q]=j,s[R]=[];try{const f=P();l&&l(f(I(s,E)),f(I(s,G)))}catch(f){X(s,!1,f)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return e}then(l,s){let f=this.constructor?.[Symbol.species];(!f||"function"!=typeof f)&&(f=this.constructor||e);const g=new f(L),w=n.current;return this[q]==j?this[R].push(w,g,l,s):te(this,w,g,l,s),g}catch(l){return this.then(null,l)}finally(l){let s=this.constructor?.[Symbol.species];(!s||"function"!=typeof s)&&(s=e);const f=new s(L);f[_]=_;const g=n.current;return this[q]==j?this[R].push(g,f,l,l):te(this,g,f,l,l),f}}e.resolve=e.resolve,e.reject=e.reject,e.race=e.race,e.all=e.all;const r=t[v]=t.Promise;t.Promise=e;const k=y("thenPatched");function C(u){const l=u.prototype,s=o(l,"then");if(s&&(!1===s.writable||!s.configurable))return;const f=l.then;l[p]=f,u.prototype.then=function(g,w){return new e((D,S)=>{f.call(this,D,S)}).then(g,w)},u[k]=!0}return i.patchThen=C,r&&(C(r),ue(t,"fetch",u=>function $(u){return function(l,s){let f=u.apply(l,s);if(f instanceof e)return f;let g=f.constructor;return g[k]||C(g),f}}(u))),Promise[n.__symbol__("uncaughtPromiseErrors")]=d,e}),Zone.__load_patch("toString",t=>{const n=Function.prototype.toString,i=A("OriginalDelegate"),o=A("Promise"),c=A("Error"),a=function(){if("function"==typeof this){const v=this[i];if(v)return"function"==typeof v?n.call(v):Object.prototype.toString.call(v);if(this===Promise){const p=t[o];if(p)return n.call(p)}if(this===Error){const p=t[c];if(p)return n.call(p)}}return n.call(this)};a[i]=n,Function.prototype.toString=a;const y=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":y.call(this)}});let ye=!1;if(typeof window<"u")try{const t=Object.defineProperty({},"passive",{get:function(){ye=!0}});window.addEventListener("test",t,t),window.removeEventListener("test",t,t)}catch{ye=!1}const dt={useG:!0},ne={},$e={},Ke=new RegExp("^"+ke+"(\\w+)(true|false)$"),Je=A("propagationStopped");function Qe(t,n){const i=(n?n(t):t)+le,o=(n?n(t):t)+ae,c=ke+i,a=ke+o;ne[t]={},ne[t][le]=c,ne[t][ae]=a}function _t(t,n,i,o){const c=o&&o.add||Oe,a=o&&o.rm||Ze,y=o&&o.listeners||"eventListeners",d=o&&o.rmAll||"removeAllListeners",b=A(c),v="."+c+":",p="prependListener",M="."+p+":",Z=function(R,_,K){if(R.isRemoved)return;const x=R.callback;let z;"object"==typeof x&&x.handleEvent&&(R.callback=E=>x.handleEvent(E),R.originalDelegate=x);try{R.invoke(R,_,[K])}catch(E){z=E}const j=R.options;return j&&"object"==typeof j&&j.once&&_[a].call(_,K.type,R.originalDelegate?R.originalDelegate:R.callback,j),z};function N(R,_,K){if(!(_=_||t.event))return;const x=R||_.target||t,z=x[ne[_.type][K?ae:le]];if(z){const j=[];if(1===z.length){const E=Z(z[0],x,_);E&&j.push(E)}else{const E=z.slice();for(let G=0;G{throw G})}}}const B=function(R){return N(this,R,!1)},H=function(R){return N(this,R,!0)};function J(R,_){if(!R)return!1;let K=!0;_&&void 0!==_.useG&&(K=_.useG);const x=_&&_.vh;let z=!0;_&&void 0!==_.chkDup&&(z=_.chkDup);let j=!1;_&&void 0!==_.rt&&(j=_.rt);let E=R;for(;E&&!E.hasOwnProperty(c);)E=de(E);if(!E&&R[c]&&(E=R),!E||E[b])return!1;const G=_&&_.eventNameToString,h={},I=E[b]=E[c],P=E[A(a)]=E[a],Q=E[A(y)]=E[y],se=E[A(d)]=E[d];let X;_&&_.prepend&&(X=E[A(_.prepend)]=E[_.prepend]);const e=K?function(s){if(!h.isExisting)return I.call(h.target,h.eventName,h.capture?H:B,h.options)}:function(s){return I.call(h.target,h.eventName,s.invoke,h.options)},r=K?function(s){if(!s.isRemoved){const f=ne[s.eventName];let g;f&&(g=f[s.capture?ae:le]);const w=g&&s.target[g];if(w)for(let m=0;m{ie.zone.cancelTask(ie)},{once:!0})),h.target=null,Pe&&(Pe.taskData=null),rt&&(ee.once=!0),!ye&&"boolean"==typeof ie.options||(ie.options=ee),ie.target=S,ie.capture=Ge,ie.eventName=O,F&&(ie.originalDelegate=V),D?me.unshift(ie):me.push(ie),m?S:void 0}};return E[c]=l(I,v,e,r,j),X&&(E[p]=l(X,M,function(s){return X.call(h.target,h.eventName,s.invoke,h.options)},r,j,!0)),E[a]=function(){const s=this||t;let f=arguments[0];_&&_.transferEventName&&(f=_.transferEventName(f));const g=arguments[2],w=!!g&&("boolean"==typeof g||g.capture),m=arguments[1];if(!m)return P.apply(this,arguments);if(x&&!x(P,m,s,arguments))return;const D=ne[f];let S;D&&(S=D[w?ae:le]);const O=S&&s[S];if(O)for(let V=0;Vfunction(c,a){c[Je]=!0,o&&o.apply(c,a)})}function Tt(t,n,i,o,c){const a=Zone.__symbol__(o);if(n[a])return;const y=n[a]=n[o];n[o]=function(d,b,v){return b&&b.prototype&&c.forEach(function(p){const M=`${i}.${o}::`+p,Z=b.prototype;try{if(Z.hasOwnProperty(p)){const N=t.ObjectGetOwnPropertyDescriptor(Z,p);N&&N.value?(N.value=t.wrapWithCurrentZone(N.value,M),t._redefineProperty(b.prototype,p,N)):Z[p]&&(Z[p]=t.wrapWithCurrentZone(Z[p],M))}else Z[p]&&(Z[p]=t.wrapWithCurrentZone(Z[p],M))}catch{}}),y.call(n,d,b,v)},t.attachOriginToPatched(n[o],y)}function tt(t,n,i){if(!i||0===i.length)return n;const o=i.filter(a=>a.target===t);if(!o||0===o.length)return n;const c=o[0].ignoreProperties;return n.filter(a=>-1===c.indexOf(a))}function nt(t,n,i,o){t&&Xe(t,tt(t,n,i),o)}function xe(t){return Object.getOwnPropertyNames(t).filter(n=>n.startsWith("on")&&n.length>2).map(n=>n.substring(2))}Zone.__load_patch("util",(t,n,i)=>{const o=xe(t);i.patchOnProperties=Xe,i.patchMethod=ue,i.bindArguments=je,i.patchMacroTask=ut;const c=n.__symbol__("BLACK_LISTED_EVENTS"),a=n.__symbol__("UNPATCHED_EVENTS");t[a]&&(t[c]=t[a]),t[c]&&(n[c]=n[a]=t[c]),i.patchEventPrototype=Et,i.patchEventTarget=_t,i.isIEOrEdge=ht,i.ObjectDefineProperty=Ee,i.ObjectGetOwnPropertyDescriptor=ce,i.ObjectCreate=ge,i.ArraySlice=Fe,i.patchClass=ve,i.wrapWithCurrentZone=Me,i.filterProperties=tt,i.attachOriginToPatched=fe,i._redefineProperty=Object.defineProperty,i.patchCallbacks=Tt,i.getGlobalObjects=()=>({globalSources:$e,zoneSymbolEventNames:ne,eventNames:o,isBrowser:Ae,isMix:We,isNode:Re,TRUE_STR:ae,FALSE_STR:le,ZONE_SYMBOL_PREFIX:ke,ADD_EVENT_LISTENER_STR:Oe,REMOVE_EVENT_LISTENER_STR:Ze})});const De=A("zoneTask");function pe(t,n,i,o){let c=null,a=null;i+=o;const y={};function d(v){const p=v.data;return p.args[0]=function(){return v.invoke.apply(this,arguments)},p.handleId=c.apply(t,p.args),v}function b(v){return a.call(t,v.data.handleId)}c=ue(t,n+=o,v=>function(p,M){if("function"==typeof M[0]){const Z={isPeriodic:"Interval"===o,delay:"Timeout"===o||"Interval"===o?M[1]||0:void 0,args:M},N=M[0];M[0]=function(){try{return N.apply(this,arguments)}finally{Z.isPeriodic||("number"==typeof Z.handleId?delete y[Z.handleId]:Z.handleId&&(Z.handleId[De]=null))}};const B=Le(n,M[0],Z,d,b);if(!B)return B;const H=B.data.handleId;return"number"==typeof H?y[H]=B:H&&(H[De]=B),H&&H.ref&&H.unref&&"function"==typeof H.ref&&"function"==typeof H.unref&&(B.ref=H.ref.bind(H),B.unref=H.unref.bind(H)),"number"==typeof H||H?H:B}return v.apply(t,M)}),a=ue(t,i,v=>function(p,M){const Z=M[0];let N;"number"==typeof Z?N=y[Z]:(N=Z&&Z[De],N||(N=Z)),N&&"string"==typeof N.type?"notScheduled"!==N.state&&(N.cancelFn&&N.data.isPeriodic||0===N.runCount)&&("number"==typeof Z?delete y[Z]:Z&&(Z[De]=null),N.zone.cancelTask(N)):v.apply(t,M)})}Zone.__load_patch("legacy",t=>{const n=t[Zone.__symbol__("legacyPatch")];n&&n()}),Zone.__load_patch("timers",t=>{const n="set",i="clear";pe(t,n,i,"Timeout"),pe(t,n,i,"Interval"),pe(t,n,i,"Immediate")}),Zone.__load_patch("requestAnimationFrame",t=>{pe(t,"request","cancel","AnimationFrame"),pe(t,"mozRequest","mozCancel","AnimationFrame"),pe(t,"webkitRequest","webkitCancel","AnimationFrame")}),Zone.__load_patch("blocking",(t,n)=>{const i=["alert","prompt","confirm"];for(let o=0;ofunction(b,v){return n.current.run(a,t,v,d)})}),Zone.__load_patch("EventTarget",(t,n,i)=>{(function kt(t,n){n.patchEventPrototype(t,n)})(t,i),function gt(t,n){if(Zone[n.symbol("patchEventTarget")])return;const{eventNames:i,zoneSymbolEventNames:o,TRUE_STR:c,FALSE_STR:a,ZONE_SYMBOL_PREFIX:y}=n.getGlobalObjects();for(let b=0;b{ve("MutationObserver"),ve("WebKitMutationObserver")}),Zone.__load_patch("IntersectionObserver",(t,n,i)=>{ve("IntersectionObserver")}),Zone.__load_patch("FileReader",(t,n,i)=>{ve("FileReader")}),Zone.__load_patch("on_property",(t,n,i)=>{!function yt(t,n){if(Re&&!We||Zone[t.symbol("patchEvents")])return;const i=n.__Zone_ignore_on_properties;let o=[];if(Ae){const c=window;o=o.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const a=function ft(){try{const t=Te.navigator.userAgent;if(-1!==t.indexOf("MSIE ")||-1!==t.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:c,ignoreProperties:["error"]}]:[];nt(c,xe(c),i&&i.concat(a),de(c))}o=o.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let c=0;c{!function mt(t,n){const{isBrowser:i,isMix:o}=n.getGlobalObjects();(i||o)&&t.customElements&&"customElements"in t&&n.patchCallbacks(n,t.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(t,i)}),Zone.__load_patch("XHR",(t,n)=>{!function b(v){const p=v.XMLHttpRequest;if(!p)return;const M=p.prototype;let N=M[Ne],B=M[Ie];if(!N){const h=v.XMLHttpRequestEventTarget;if(h){const I=h.prototype;N=I[Ne],B=I[Ie]}}const H="readystatechange",J="scheduled";function q(h){const I=h.data,P=I.target;P[a]=!1,P[d]=!1;const Q=P[c];N||(N=P[Ne],B=P[Ie]),Q&&B.call(P,H,Q);const se=P[c]=()=>{if(P.readyState===P.DONE)if(!I.aborted&&P[a]&&h.state===J){const U=P[n.__symbol__("loadfalse")];if(0!==P.status&&U&&U.length>0){const oe=h.invoke;h.invoke=function(){const te=P[n.__symbol__("loadfalse")];for(let W=0;Wfunction(h,I){return h[o]=0==I[2],h[y]=I[1],K.apply(h,I)}),z=A("fetchTaskAborting"),j=A("fetchTaskScheduling"),E=ue(M,"send",()=>function(h,I){if(!0===n.current[j]||h[o])return E.apply(h,I);{const P={target:h,url:h[y],isPeriodic:!1,args:I,aborted:!1},Q=Le("XMLHttpRequest.send",R,P,q,_);h&&!0===h[d]&&!P.aborted&&Q.state===J&&Q.invoke()}}),G=ue(M,"abort",()=>function(h,I){const P=function Z(h){return h[i]}(h);if(P&&"string"==typeof P.type){if(null==P.cancelFn||P.data&&P.data.aborted)return;P.zone.cancelTask(P)}else if(!0===n.current[z])return G.apply(h,I)})}(t);const i=A("xhrTask"),o=A("xhrSync"),c=A("xhrListener"),a=A("xhrScheduled"),y=A("xhrURL"),d=A("xhrErrorBeforeScheduled")}),Zone.__load_patch("geolocation",t=>{t.navigator&&t.navigator.geolocation&&function lt(t,n){const i=t.constructor.name;for(let o=0;o{const b=function(){return d.apply(this,je(arguments,i+"."+c))};return fe(b,d),b})(a)}}}(t.navigator.geolocation,["getCurrentPosition","watchPosition"])}),Zone.__load_patch("PromiseRejectionEvent",(t,n)=>{function i(o){return function(c){et(t,o).forEach(y=>{const d=t.PromiseRejectionEvent;if(d){const b=new d(o,{promise:c.promise,reason:c.rejection});y.invoke(b)}})}}t.PromiseRejectionEvent&&(n[A("unhandledPromiseRejectionHandler")]=i("unhandledrejection"),n[A("rejectionHandledHandler")]=i("rejectionhandled"))}),Zone.__load_patch("queueMicrotask",(t,n,i)=>{!function pt(t,n){n.patchMethod(t,"queueMicrotask",i=>function(o,c){Zone.current.scheduleMicroTask("queueMicrotask",c[0])})}(t,i)})}},ce=>{ce(ce.s=7432)}]); \ No newline at end of file diff --git a/client/dist/angular-material-template/runtime.475575d3cc22a138.js b/client/dist/angular-material-template/runtime.475575d3cc22a138.js new file mode 100644 index 0000000..f7b7880 --- /dev/null +++ b/client/dist/angular-material-template/runtime.475575d3cc22a138.js @@ -0,0 +1 @@ +(()=>{"use strict";var e,g={},_={};function r(e){var n=_[e];if(void 0!==n)return n.exports;var t=_[e]={id:e,loaded:!1,exports:{}};return g[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=g,e=[],r.O=(n,t,f,o)=>{if(!t){var a=1/0;for(i=0;i=o)&&Object.keys(r.O).every(b=>r.O[b](t[c]))?t.splice(c--,1):(u=!1,o0&&e[i-1][2]>o;i--)e[i]=e[i-1];e[i]=[t,f,o]},r.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return r.d(n,{a:n}),n},(()=>{var n,e=Object.getPrototypeOf?t=>Object.getPrototypeOf(t):t=>t.__proto__;r.t=function(t,f){if(1&f&&(t=this(t)),8&f||"object"==typeof t&&t&&(4&f&&t.__esModule||16&f&&"function"==typeof t.then))return t;var o=Object.create(null);r.r(o);var i={};n=n||[null,e({}),e([]),e(e)];for(var a=2&f&&t;"object"==typeof a&&!~n.indexOf(a);a=e(a))Object.getOwnPropertyNames(a).forEach(u=>i[u]=()=>t[u]);return i.default=()=>t,r.d(o,i),o}})(),r.d=(e,n)=>{for(var t in n)r.o(n,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((n,t)=>(r.f[t](e,n),n),[])),r.u=e=>e+"."+{40:"830a305ce078c093",136:"7ec3fccbaab9da95",168:"23cd0d474d0816c1",180:"2cd83d3a045b34ec",184:"76d8d415636f0a06",206:"df318e426aa62a63",228:"09b3735f8b2791e2",556:"23addb1698bab6ce",640:"ea69207168bc4f5e",852:"38e77b9083937542",968:"71f956b042a479cb",982:"b8ef64041e16e14b"}[e]+".js",r.miniCssF=e=>{},r.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),(()=>{var e={},n="angular-material-template:";r.l=(t,f,o,i)=>{if(e[t])e[t].push(f);else{var a,u;if(void 0!==o)for(var c=document.getElementsByTagName("script"),l=0;l{a.onerror=a.onload=null,clearTimeout(p);var m=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),m&&m.forEach(h=>h(b)),v)return v(b)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),u&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:n=>n},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={688:0};r.f.j=(f,o)=>{var i=r.o(e,f)?e[f]:void 0;if(0!==i)if(i)o.push(i[2]);else if(688!=f){var a=new Promise((d,s)=>i=e[f]=[d,s]);o.push(i[2]=a);var u=r.p+r.u(f),c=new Error;r.l(u,d=>{if(r.o(e,f)&&(0!==(i=e[f])&&(e[f]=void 0),i)){var s=d&&("load"===d.type?"missing":d.type),p=d&&d.target&&d.target.src;c.message="Loading chunk "+f+" failed.\n("+s+": "+p+")",c.name="ChunkLoadError",c.type=s,c.request=p,i[1](c)}},"chunk-"+f,f)}else e[f]=0},r.O.j=f=>0===e[f];var n=(f,o)=>{var c,l,[i,a,u]=o,d=0;if(i.some(p=>0!==e[p])){for(c in a)r.o(a,c)&&(r.m[c]=a[c]);if(u)var s=u(r)}for(f&&f(o);d.mat-calendar-body-cell-content:not(.mat-calendar-body-selected),.submitted-timesheet-day>div:not(.mat-calendar-body-selected){border-radius:999px;background-color:#0e980540}.table-wrapper{overflow:auto;height:calc(100vh - 270px);max-height:450px}.animate{animation-name:show;animation-duration:1s;animation-fill-mode:forwards}@keyframes show{0%{opacity:0}to{opacity:1}}:root{font-family:Inter var,sans-serif;font-feature-settings:"cv02","cv03","cv04","cv11";font-variation-settings:normal;--font-family: "Inter var", sans-serif;--font-feature-settings: "cv02", "cv03", "cv04", "cv11";--surface-a: #ffffff;--surface-b: #f9fafb;--surface-c: #f3f4f6;--surface-d: #e5e7eb;--surface-e: #ffffff;--surface-f: #ffffff;--text-color: #4b5563;--text-color-secondary: #6b7280;--primary-color: #3B82F6;--primary-color-text: #ffffff;--surface-0: #ffffff;--surface-50: #f9fafb;--surface-100: #f3f4f6;--surface-200: #e5e7eb;--surface-300: #d1d5db;--surface-400: #9ca3af;--surface-500: #6b7280;--surface-600: #4b5563;--surface-700: #374151;--surface-800: #1f2937;--surface-900: #111827;--gray-50: #f9fafb;--gray-100: #f3f4f6;--gray-200: #e5e7eb;--gray-300: #d1d5db;--gray-400: #9ca3af;--gray-500: #6b7280;--gray-600: #4b5563;--gray-700: #374151;--gray-800: #1f2937;--gray-900: #111827;--content-padding: 1.25rem;--inline-spacing: .5rem;--border-radius: 6px;--surface-ground: #f9fafb;--surface-section: #ffffff;--surface-card: #ffffff;--surface-overlay: #ffffff;--surface-border: #dfe7ef;--surface-hover: #f6f9fc;--focus-ring: 0 0 0 .2rem #BFDBFE;--maskbg: rgba(0, 0, 0, .4);--highlight-bg: #EFF6FF;--highlight-text-color: #1D4ED8;color-scheme:light}@font-face{font-family:Inter var;font-weight:100 900;font-display:swap;font-style:normal;font-named-instance:"Regular";src:url(Inter-roman.var.b2129c009ce46d43.woff2?v=3.19) format("woff2")}@font-face{font-family:Inter var;font-weight:100 900;font-display:swap;font-style:italic;font-named-instance:"Italic";src:url(Inter-italic.var.958a0b9742fb3ae8.woff2?v=3.19) format("woff2")}:root{--blue-50:#f5f9ff;--blue-100:#d0e1fd;--blue-200:#abc9fb;--blue-300:#85b2f9;--blue-400:#609af8;--blue-500:#3b82f6;--blue-600:#326fd1;--blue-700:#295bac;--blue-800:#204887;--blue-900:#183462;--green-50:#f4fcf7;--green-100:#caf1d8;--green-200:#a0e6ba;--green-300:#76db9b;--green-400:#4cd07d;--green-500:#22c55e;--green-600:#1da750;--green-700:#188a42;--green-800:#136c34;--green-900:#0e4f26;--yellow-50:#fefbf3;--yellow-100:#faedc4;--yellow-200:#f6de95;--yellow-300:#f2d066;--yellow-400:#eec137;--yellow-500:#eab308;--yellow-600:#c79807;--yellow-700:#a47d06;--yellow-800:#816204;--yellow-900:#5e4803;--cyan-50:#f3fbfd;--cyan-100:#c3edf5;--cyan-200:#94e0ed;--cyan-300:#65d2e4;--cyan-400:#35c4dc;--cyan-500:#06b6d4;--cyan-600:#059bb4;--cyan-700:#047f94;--cyan-800:#036475;--cyan-900:#024955;--pink-50:#fef6fa;--pink-100:#fad3e7;--pink-200:#f7b0d3;--pink-300:#f38ec0;--pink-400:#f06bac;--pink-500:#ec4899;--pink-600:#c93d82;--pink-700:#a5326b;--pink-800:#822854;--pink-900:#5e1d3d;--indigo-50:#f7f7fe;--indigo-100:#dadafc;--indigo-200:#bcbdf9;--indigo-300:#9ea0f6;--indigo-400:#8183f4;--indigo-500:#6366f1;--indigo-600:#5457cd;--indigo-700:#4547a9;--indigo-800:#363885;--indigo-900:#282960;--teal-50:#f3fbfb;--teal-100:#c7eeea;--teal-200:#9ae0d9;--teal-300:#6dd3c8;--teal-400:#41c5b7;--teal-500:#14b8a6;--teal-600:#119c8d;--teal-700:#0e8174;--teal-800:#0b655b;--teal-900:#084a42;--orange-50:#fff8f3;--orange-100:#feddc7;--orange-200:#fcc39b;--orange-300:#fba86f;--orange-400:#fa8e42;--orange-500:#f97316;--orange-600:#d46213;--orange-700:#ae510f;--orange-800:#893f0c;--orange-900:#642e09;--bluegray-50:#f7f8f9;--bluegray-100:#dadee3;--bluegray-200:#bcc3cd;--bluegray-300:#9fa9b7;--bluegray-400:#818ea1;--bluegray-500:#64748b;--bluegray-600:#556376;--bluegray-700:#465161;--bluegray-800:#37404c;--bluegray-900:#282e38;--purple-50:#fbf7ff;--purple-100:#ead6fd;--purple-200:#dab6fc;--purple-300:#c996fa;--purple-400:#b975f9;--purple-500:#a855f7;--purple-600:#8f48d2;--purple-700:#763cad;--purple-800:#5c2f88;--purple-900:#432263;--red-50:#fff5f5;--red-100:#ffd0ce;--red-200:#ffaca7;--red-300:#ff8780;--red-400:#ff6259;--red-500:#ff3d32;--red-600:#d9342b;--red-700:#b32b23;--red-800:#8c221c;--red-900:#661814;--primary-50:#f5f9ff;--primary-100:#d0e1fd;--primary-200:#abc9fb;--primary-300:#85b2f9;--primary-400:#609af8;--primary-500:#3b82f6;--primary-600:#326fd1;--primary-700:#295bac;--primary-800:#204887;--primary-900:#183462}.p-editor-container .p-editor-toolbar{background:#f9fafb;border-top-right-radius:6px;border-top-left-radius:6px}.p-editor-container .p-editor-toolbar.ql-snow{border:1px solid #e5e7eb}.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke{stroke:#6b7280}.p-editor-container .p-editor-toolbar.ql-snow .ql-fill{fill:#6b7280}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label{border:0 none;color:#6b7280}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover{color:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke{stroke:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill{fill:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a;border-radius:6px;padding:.75rem 0}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item{color:#4b5563}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover{color:#4b5563;background:#f3f4f6}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item{padding:.75rem 1.25rem}.p-editor-container .p-editor-content{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-editor-container .p-editor-content.ql-snow{border:1px solid #e5e7eb}.p-editor-container .p-editor-content .ql-editor{background:#fff;color:#4b5563;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-editor-container .ql-snow.ql-toolbar button:hover,.p-editor-container .ql-snow.ql-toolbar button:focus{color:#4b5563}.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke,.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke{stroke:#4b5563}.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill,.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill{fill:#4b5563}.p-editor-container .ql-snow.ql-toolbar button.ql-active,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected{color:#3b82f6}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke{stroke:#3b82f6}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill{fill:#3b82f6}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label{color:#3b82f6}@layer primeng{*{box-sizing:border-box}.p-component{font-family:var(--font-family);font-feature-settings:var(--font-feature-settings, normal);font-size:1rem;font-weight:400}.p-component-overlay{background-color:#0006;transition-duration:.2s}.p-disabled,.p-component:disabled{opacity:.6}.p-error{color:#e24c4c}.p-text-secondary{color:#6b7280}.pi{font-size:1rem}.p-icon{width:1rem;height:1rem}.p-link{font-family:var(--font-family);font-feature-settings:var(--font-feature-settings, normal);font-size:1rem;border-radius:6px}.p-link:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-component-overlay-enter{animation:p-component-overlay-enter-animation .15s forwards}.p-component-overlay-leave{animation:p-component-overlay-leave-animation .15s forwards}@keyframes p-component-overlay-enter-animation{0%{background-color:transparent}to{background-color:var(--maskbg)}}@keyframes p-component-overlay-leave-animation{0%{background-color:var(--maskbg)}to{background-color:transparent}}.p-autocomplete .p-autocomplete-loader{right:.75rem}.p-autocomplete.p-autocomplete-dd .p-autocomplete-loader{right:3.75rem}.p-autocomplete:not(.p-disabled):hover .p-autocomplete-multiple-container{border-color:#3b82f6}.p-autocomplete:not(.p-disabled).p-focus .p-autocomplete-multiple-container{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-autocomplete .p-autocomplete-multiple-container{padding:.375rem .75rem;gap:.5rem}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token{padding:.375rem 0}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input{font-family:var(--font-family);font-feature-settings:var(--font-feature-settings, normal);font-size:1rem;color:#4b5563;padding:0;margin:0}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token{padding:.375rem .75rem;background:#e5e7eb;color:#4b5563;border-radius:16px}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon{margin-left:.5rem}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus{background:#d1d5db;color:#4b5563}.p-autocomplete.p-invalid.p-component>.p-inputtext{border-color:#e24c4c}.p-autocomplete-panel{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 2px 12px #0000001a}.p-autocomplete-panel .p-autocomplete-items{padding:.75rem 0}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item{margin:0;padding:.75rem 1.25rem;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s;border-radius:0}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight.p-focus{background:#3b82f63d}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus{color:#4b5563;background:#e5e7eb}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover{color:#4b5563;background:#f3f4f6}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group{margin:0;padding:.75rem 1.25rem;color:#374151;background:#fff;font-weight:700}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-empty-message{padding:.75rem 1.25rem;color:#4b5563;background:transparent}p-autocomplete.ng-dirty.ng-invalid>.p-autocomplete>.p-inputtext{border-color:#e24c4c}p-autocomplete.p-autocomplete-clearable .p-inputtext{padding-right:2.5rem}p-autocomplete.p-autocomplete-clearable .p-autocomplete-clear-icon{color:#6b7280;right:.75rem}p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon{color:#6b7280;right:3.75rem}p-calendar.ng-dirty.ng-invalid>.p-calendar>.p-inputtext{border-color:#e24c4c}.p-calendar:not(.p-calendar-disabled).p-focus>.p-inputtext{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-datepicker{padding:.5rem;background:#fff;color:#4b5563;border:1px solid #d1d5db;border-radius:6px}.p-datepicker:not(.p-datepicker-inline){background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a}.p-datepicker:not(.p-datepicker-inline) .p-datepicker-header{background:#fff}.p-datepicker .p-datepicker-header{padding:.5rem;color:#4b5563;background:#fff;font-weight:600;margin:0;border-bottom:1px solid #e5e7eb;border-top-right-radius:6px;border-top-left-radius:6px}.p-datepicker .p-datepicker-header .p-datepicker-prev,.p-datepicker .p-datepicker-header .p-datepicker-next{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover,.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible,.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-datepicker .p-datepicker-header .p-datepicker-title{line-height:2rem}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year,.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month{color:#4b5563;transition:background-color .2s,color .2s,box-shadow .2s;font-weight:600;padding:.5rem}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover,.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover{color:#3b82f6}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month{margin-right:.5rem}.p-datepicker table{font-size:1rem;margin:.5rem 0}.p-datepicker table th{padding:.5rem}.p-datepicker table th>span{width:2.5rem;height:2.5rem}.p-datepicker table td{padding:.5rem}.p-datepicker table td>span{width:2.5rem;height:2.5rem;border-radius:50%;transition:box-shadow .2s;border:1px solid transparent}.p-datepicker table td>span.p-highlight{color:#1d4ed8;background:#eff6ff}.p-datepicker table td>span:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-datepicker table td.p-datepicker-today>span{background:#d1d5db;color:#4b5563;border-color:transparent}.p-datepicker table td.p-datepicker-today>span.p-highlight{color:#1d4ed8;background:#eff6ff}.p-datepicker .p-datepicker-buttonbar{padding:1rem 0;border-top:1px solid #e5e7eb}.p-datepicker .p-datepicker-buttonbar .p-button{width:auto}.p-datepicker .p-timepicker{border-top:1px solid #e5e7eb;padding:.5rem}.p-datepicker .p-timepicker button{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datepicker .p-timepicker button:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-datepicker .p-timepicker button:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-datepicker .p-timepicker button:last-child{margin-top:.2em}.p-datepicker .p-timepicker span{font-size:1.25rem}.p-datepicker .p-timepicker>div{padding:0 .5rem}.p-datepicker.p-datepicker-timeonly .p-timepicker{border-top:0 none}.p-datepicker .p-monthpicker{margin:.5rem 0}.p-datepicker .p-monthpicker .p-monthpicker-month{padding:.5rem;transition:box-shadow .2s;border-radius:6px}.p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight{color:#1d4ed8;background:#eff6ff}.p-datepicker .p-yearpicker{margin:.5rem 0}.p-datepicker .p-yearpicker .p-yearpicker-year{padding:.5rem;transition:box-shadow .2s;border-radius:6px}.p-datepicker .p-yearpicker .p-yearpicker-year.p-highlight{color:#1d4ed8;background:#eff6ff}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group{border-left:1px solid #e5e7eb;padding-right:.5rem;padding-left:.5rem;padding-top:0;padding-bottom:0}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child{padding-left:0;border-left:0 none}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child{padding-right:0}.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover{background:#f3f4f6}.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover{background:#f3f4f6}.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover{background:#f3f4f6}.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}p-calendar.p-calendar-clearable .p-inputtext{padding-right:2.5rem}p-calendar.p-calendar-clearable .p-calendar-clear-icon{color:#6b7280;right:.75rem}p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon{color:#6b7280;right:3.75rem}@media screen and (max-width: 769px){.p-datepicker table th,.p-datepicker table td{padding:0}}.p-cascadeselect{background:#fff;border:1px solid #d1d5db;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:6px}.p-cascadeselect:not(.p-disabled):hover{border-color:#3b82f6}.p-cascadeselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-cascadeselect .p-cascadeselect-label{background:transparent;border:0 none;padding:.75rem}.p-cascadeselect .p-cascadeselect-label.p-placeholder{color:#6b7280}.p-cascadeselect .p-cascadeselect-label:enabled:focus{outline:0 none;box-shadow:none}.p-cascadeselect .p-cascadeselect-trigger{background:transparent;color:#6b7280;width:3rem;border-top-right-radius:6px;border-bottom-right-radius:6px}.p-cascadeselect.p-invalid.p-component{border-color:#e24c4c}.p-cascadeselect-panel{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 2px 12px #0000001a}.p-cascadeselect-panel .p-cascadeselect-items{padding:.75rem 0}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item{margin:0;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s;border-radius:0}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight.p-focus{background:#3b82f63d}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus{color:#4b5563;background:#e5e7eb}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover{color:#4b5563;background:#f3f4f6}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content{padding:.75rem 1.25rem}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon{font-size:.875rem}.p-input-filled .p-cascadeselect{background:#f3f4f6}.p-input-filled .p-cascadeselect:not(.p-disabled):hover{background-color:#f3f4f6}.p-input-filled .p-cascadeselect:not(.p-disabled).p-focus{background-color:#fff}p-cascadeselect.ng-dirty.ng-invalid>.p-cascadeselect{border-color:#e24c4c}p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label{padding-right:.75rem}p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-clear-icon{color:#6b7280;right:3rem}.p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel{box-shadow:none;border-radius:0;padding:.25rem 0 .25rem .5rem}.p-overlay-modal .p-cascadeselect-item-active>.p-cascadeselect-item-content .p-cascadeselect-group-icon{transform:rotate(90deg)}.p-checkbox{width:22px;height:22px}.p-checkbox .p-checkbox-box{border:2px solid #d1d5db;background:#fff;width:22px;height:22px;color:#4b5563;border-radius:6px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-checkbox .p-checkbox-box .p-checkbox-icon{transition-duration:.2s;color:#fff;font-size:14px}.p-checkbox .p-checkbox-box .p-icon{width:14px;height:14px}.p-checkbox .p-checkbox-box.p-highlight{border-color:#3b82f6;background:#3b82f6}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{border-color:#3b82f6}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#1d4ed8;background:#1d4ed8;color:#fff}p-checkbox.ng-dirty.ng-invalid>.p-checkbox>.p-checkbox-box{border-color:#e24c4c}.p-input-filled .p-checkbox .p-checkbox-box{background-color:#f3f4f6}.p-input-filled .p-checkbox .p-checkbox-box.p-highlight{background:#3b82f6}.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#f3f4f6}.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{background:#1d4ed8}.p-checkbox-label{margin-left:.5rem}p-tristatecheckbox.ng-dirty.ng-invalid>.p-checkbox>.p-checkbox-box{border-color:#e24c4c}.p-chips:not(.p-disabled):hover .p-chips-multiple-container{border-color:#3b82f6}.p-chips:not(.p-disabled).p-focus .p-chips-multiple-container{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-chips .p-chips-multiple-container{padding:.375rem .75rem;gap:.5rem}.p-chips .p-chips-multiple-container .p-chips-token{padding:.375rem .75rem;margin-right:.5rem;background:#e5e7eb;color:#4b5563;border-radius:16px}.p-chips .p-chips-multiple-container .p-chips-token.p-focus{background:#d1d5db;color:#4b5563}.p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon{margin-left:.5rem}.p-chips .p-chips-multiple-container .p-chips-input-token{padding:.375rem 0}.p-chips .p-chips-multiple-container .p-chips-input-token input{font-family:var(--font-family);font-feature-settings:var(--font-feature-settings, normal);font-size:1rem;color:#4b5563;padding:0;margin:0}p-chips.ng-dirty.ng-invalid>.p-chips>.p-inputtext{border-color:#e24c4c}p-chips.p-chips-clearable .p-inputtext{padding-right:1.75rem}p-chips.p-chips-clearable .p-chips-clear-icon{color:#6b7280;right:.75rem}.p-colorpicker-preview,.p-fluid .p-colorpicker-preview.p-inputtext{width:2rem;height:2rem}.p-colorpicker-panel{background:#323232;border:1px solid #191919}.p-colorpicker-panel .p-colorpicker-color-handle,.p-colorpicker-panel .p-colorpicker-hue-handle{border-color:#fff}.p-colorpicker-overlay-panel{box-shadow:0 2px 12px #0000001a}.p-dropdown{background:#fff;border:1px solid #d1d5db;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:6px}.p-dropdown:not(.p-disabled):hover{border-color:#3b82f6}.p-dropdown:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-dropdown.p-dropdown-clearable .p-dropdown-label{padding-right:1.75rem}.p-dropdown .p-dropdown-label{background:transparent;border:0 none}.p-dropdown .p-dropdown-label.p-placeholder{color:#6b7280}.p-dropdown .p-dropdown-label:focus,.p-dropdown .p-dropdown-label:enabled:focus{outline:0 none;box-shadow:none}.p-dropdown .p-dropdown-trigger{background:transparent;color:#6b7280;width:3rem;border-top-right-radius:6px;border-bottom-right-radius:6px}.p-dropdown .p-dropdown-clear-icon{color:#6b7280;right:3rem}.p-dropdown.p-invalid.p-component{border-color:#e24c4c}.p-dropdown-panel{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 2px 12px #0000001a}.p-dropdown-panel .p-dropdown-header{padding:.75rem 1.25rem;border-bottom:1px solid #e5e7eb;color:#374151;background:#f9fafb;margin:0;border-top-right-radius:6px;border-top-left-radius:6px}.p-dropdown-panel .p-dropdown-header .p-dropdown-filter{padding-right:1.75rem;margin-right:-1.75rem}.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon{right:.75rem;color:#6b7280}.p-dropdown-panel .p-dropdown-items{padding:.75rem 0}.p-dropdown-panel .p-dropdown-items .p-dropdown-item{margin:0;padding:.75rem 1.25rem;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s;border-radius:0}.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight.p-focus{background:#3b82f63d}.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus{color:#4b5563;background:#e5e7eb}.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover{color:#4b5563;background:#f3f4f6}.p-dropdown-panel .p-dropdown-items .p-dropdown-item-group{margin:0;padding:.75rem 1.25rem;color:#374151;background:#fff;font-weight:700}.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message{padding:.75rem 1.25rem;color:#4b5563;background:transparent}.p-input-filled .p-dropdown{background:#f3f4f6}.p-input-filled .p-dropdown:not(.p-disabled):hover{background-color:#f3f4f6}.p-input-filled .p-dropdown:not(.p-disabled).p-focus{background-color:#fff}.p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext{background-color:transparent}p-dropdown.ng-dirty.ng-invalid>.p-dropdown{border-color:#e24c4c}.p-inputgroup-addon{background:#f3f4f6;color:#6b7280;border-top:1px solid #d1d5db;border-left:1px solid #d1d5db;border-bottom:1px solid #d1d5db;padding:.75rem;min-width:3rem}.p-inputgroup-addon:last-child{border-right:1px solid #d1d5db}.p-inputgroup>.p-component,.p-inputgroup>.p-inputwrapper>.p-inputtext,.p-inputgroup>.p-float-label>.p-component{border-radius:0;margin:0}.p-inputgroup>.p-component+.p-inputgroup-addon,.p-inputgroup>.p-inputwrapper>.p-inputtext+.p-inputgroup-addon,.p-inputgroup>.p-float-label>.p-component+.p-inputgroup-addon{border-left:0 none}.p-inputgroup>.p-component:focus,.p-inputgroup>.p-inputwrapper>.p-inputtext:focus,.p-inputgroup>.p-float-label>.p-component:focus{z-index:1}.p-inputgroup>.p-component:focus~label,.p-inputgroup>.p-inputwrapper>.p-inputtext:focus~label,.p-inputgroup>.p-float-label>.p-component:focus~label{z-index:1}.p-inputgroup-addon:first-child,.p-inputgroup button:first-child,.p-inputgroup input:first-child,.p-inputgroup>.p-inputwrapper:first-child>.p-component,.p-inputgroup>.p-inputwrapper:first-child>.p-component>.p-inputtext{border-top-left-radius:6px;border-bottom-left-radius:6px}.p-inputgroup .p-float-label:first-child input{border-top-left-radius:6px;border-bottom-left-radius:6px}.p-inputgroup-addon:last-child,.p-inputgroup button:last-child,.p-inputgroup input:last-child,.p-inputgroup>.p-inputwrapper:last-child>.p-component,.p-inputgroup>.p-inputwrapper:last-child>.p-component>.p-inputtext{border-top-right-radius:6px;border-bottom-right-radius:6px}.p-inputgroup .p-float-label:last-child input{border-top-right-radius:6px;border-bottom-right-radius:6px}.p-fluid .p-inputgroup .p-button{width:auto}.p-fluid .p-inputgroup .p-button.p-button-icon-only{width:3rem}p-inputmask.ng-dirty.ng-invalid>.p-inputtext{border-color:#e24c4c}p-inputmask.p-inputmask-clearable .p-inputtext{padding-right:2.5rem}p-inputmask.p-inputmask-clearable .p-inputmask-clear-icon{color:#6b7280;right:.75rem}p-inputnumber.ng-dirty.ng-invalid>.p-inputnumber>.p-inputtext{border-color:#e24c4c}p-inputnumber.p-inputnumber-clearable .p-inputnumber-input{padding-right:2.5rem}p-inputnumber.p-inputnumber-clearable .p-inputnumber-clear-icon{color:#6b7280;right:.75rem}p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon{right:3.75rem}p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon{right:3.75rem}.p-inputswitch{width:3rem;height:1.75rem}.p-inputswitch .p-inputswitch-slider{background:#d1d5db;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:30px}.p-inputswitch .p-inputswitch-slider:before{background:#fff;width:1.25rem;height:1.25rem;left:.25rem;margin-top:-.625rem;border-radius:50%;transition-duration:.2s}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before{transform:translate(1.25rem)}.p-inputswitch.p-focus .p-inputswitch-slider{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider{background:#b7bcc5}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider{background:#3b82f6}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before{background:#fff}.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider{background:#2563eb}p-inputswitch.ng-dirty.ng-invalid>.p-inputswitch>.p-inputswitch-slider{border-color:#e24c4c}.p-inputtext{font-family:var(--font-family);font-feature-settings:var(--font-feature-settings, normal);font-size:1rem;color:#4b5563;background:#fff;padding:.75rem;border:1px solid #d1d5db;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;appearance:none;border-radius:6px}.p-inputtext:enabled:hover{border-color:#3b82f6}.p-inputtext:enabled:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-inputtext.ng-dirty.ng-invalid{border-color:#e24c4c}.p-inputtext.p-inputtext-sm{font-size:.875rem;padding:.65625rem}.p-inputtext.p-inputtext-lg{font-size:1.25rem;padding:.9375rem}.p-float-label>label{left:.75rem;color:#6b7280;transition-duration:.2s}.p-float-label>.ng-invalid.ng-dirty+label{color:#e24c4c}.p-input-icon-left>.p-icon-wrapper.p-icon,.p-input-icon-left>i:first-of-type{left:.75rem;color:#6b7280}.p-input-icon-left>.p-inputtext{padding-left:2.5rem}.p-input-icon-left.p-float-label>label{left:2.5rem}.p-input-icon-right>.p-icon-wrapper,.p-input-icon-right>i:last-of-type{right:.75rem;color:#6b7280}.p-input-icon-right>.p-inputtext{padding-right:2.5rem}::-webkit-input-placeholder{color:#6b7280}:-moz-placeholder{color:#6b7280}::-moz-placeholder{color:#6b7280}:-ms-input-placeholder{color:#6b7280}.p-input-filled .p-inputtext{background-color:#f3f4f6}.p-input-filled .p-inputtext:enabled:hover{background-color:#f3f4f6}.p-input-filled .p-inputtext:enabled:focus{background-color:#fff}.p-inputtext-sm .p-inputtext{font-size:.875rem;padding:.65625rem}.p-inputtext-lg .p-inputtext{font-size:1.25rem;padding:.9375rem}.p-listbox{background:#fff;color:#4b5563;border:1px solid #d1d5db;border-radius:6px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-listbox .p-listbox-header{padding:.75rem 1.25rem;border-bottom:1px solid #e5e7eb;color:#374151;background:#f9fafb;margin:0;border-top-right-radius:6px;border-top-left-radius:6px}.p-listbox .p-listbox-header .p-listbox-filter{padding-right:1.75rem}.p-listbox .p-listbox-header .p-listbox-filter-icon{right:.75rem;color:#6b7280}.p-listbox .p-listbox-header .p-checkbox{margin-right:.5rem}.p-listbox .p-listbox-list{padding:.75rem 0;outline:0 none}.p-listbox .p-listbox-list .p-listbox-item{margin:0;padding:.75rem 1.25rem;border:0 none;color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-listbox .p-listbox-list .p-listbox-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-listbox .p-listbox-list .p-listbox-item .p-checkbox{margin-right:.5rem}.p-listbox .p-listbox-list .p-listbox-item-group{margin:0;padding:.75rem 1.25rem;color:#374151;background:#fff;font-weight:700}.p-listbox .p-listbox-list .p-listbox-empty-message{padding:.75rem 1.25rem;color:#4b5563;background:transparent}.p-listbox:not(.p-disabled) .p-listbox-item.p-highlight.p-focus{background:#3b82f63d}.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus{color:#4b5563;background:#e5e7eb}.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover{color:#4b5563;background:#f3f4f6}.p-listbox.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}p-listbox.ng-dirty.ng-invalid>.p-listbox{border-color:#e24c4c}.p-multiselect{background:#fff;border:1px solid #d1d5db;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:6px}.p-multiselect:not(.p-disabled):hover{border-color:#3b82f6}.p-multiselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-multiselect .p-multiselect-label{padding:.75rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-multiselect .p-multiselect-label.p-placeholder{color:#6b7280}.p-multiselect.p-multiselect-chip .p-multiselect-token{padding:.375rem .75rem;margin-right:.5rem;background:#e5e7eb;color:#4b5563;border-radius:16px}.p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon{margin-left:.5rem}.p-multiselect .p-multiselect-trigger{background:transparent;color:#6b7280;width:3rem;border-top-right-radius:6px;border-bottom-right-radius:6px}.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label{padding:.375rem .75rem}.p-multiselect-clearable .p-multiselect-label-container{padding-right:1.75rem}.p-multiselect-clearable .p-multiselect-clear-icon{color:#6b7280;right:3rem}.p-multiselect-panel{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 2px 12px #0000001a}.p-multiselect-panel .p-multiselect-header{padding:.75rem 1.25rem;border-bottom:1px solid #e5e7eb;color:#374151;background:#f9fafb;margin:0;border-top-right-radius:6px;border-top-left-radius:6px}.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{padding-right:1.75rem}.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon{right:.75rem;color:#6b7280}.p-multiselect-panel .p-multiselect-header .p-checkbox{margin-right:.5rem}.p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:.5rem;width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-multiselect-panel .p-multiselect-items{padding:.75rem 0}.p-multiselect-panel .p-multiselect-items .p-multiselect-item{margin:0;padding:.75rem 1.25rem;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s;border-radius:0}.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight.p-focus{background:#3b82f63d}.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus{color:#4b5563;background:#e5e7eb}.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{color:#4b5563;background:#f3f4f6}.p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox{margin-right:.5rem}.p-multiselect-panel .p-multiselect-items .p-multiselect-item-group{margin:0;padding:.75rem 1.25rem;color:#374151;background:#fff;font-weight:700}.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message{padding:.75rem 1.25rem;color:#4b5563;background:transparent}.p-input-filled .p-multiselect{background:#f3f4f6}.p-input-filled .p-multiselect:not(.p-disabled):hover{background-color:#f3f4f6}.p-input-filled .p-multiselect:not(.p-disabled).p-focus{background-color:#fff}p-multiselect.ng-dirty.ng-invalid>.p-multiselect{border-color:#e24c4c}p-password.ng-invalid.ng-dirty>.p-password>.p-inputtext{border-color:#e24c4c}.p-password-panel{padding:1.25rem;background:#fff;color:#4b5563;border:0 none;box-shadow:0 2px 12px #0000001a;border-radius:6px}.p-password-panel .p-password-meter{margin-bottom:.5rem;background:#e5e7eb}.p-password-panel .p-password-meter .p-password-strength.weak{background:#ea5455}.p-password-panel .p-password-meter .p-password-strength.medium{background:#ff9f42}.p-password-panel .p-password-meter .p-password-strength.strong{background:#29c76f}p-password.p-password-clearable .p-password-input{padding-right:2.5rem}p-password.p-password-clearable .p-password-clear-icon{color:#6b7280;right:.75rem}p-password.p-password-clearable.p-password-mask .p-password-input{padding-right:4.25rem}p-password.p-password-clearable.p-password-mask .p-password-clear-icon{color:#6b7280;right:2.5rem}.p-radiobutton{width:22px;height:22px}.p-radiobutton .p-radiobutton-box{border:2px solid #d1d5db;background:#fff;width:22px;height:22px;color:#4b5563;border-radius:50%;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover{border-color:#3b82f6}.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-radiobutton .p-radiobutton-box .p-radiobutton-icon{width:12px;height:12px;transition-duration:.2s;background-color:#fff}.p-radiobutton .p-radiobutton-box.p-highlight{border-color:#3b82f6;background:#3b82f6}.p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover{border-color:#1d4ed8;background:#1d4ed8;color:#fff}p-radiobutton.ng-dirty.ng-invalid>.p-radiobutton>.p-radiobutton-box{border-color:#e24c4c}.p-input-filled .p-radiobutton .p-radiobutton-box{background-color:#f3f4f6}.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover{background-color:#f3f4f6}.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight{background:#3b82f6}.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover{background:#1d4ed8}.p-radiobutton-label{margin-left:.5rem}.p-rating{gap:.5rem}.p-rating .p-rating-item .p-rating-icon{color:#4b5563;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;font-size:1.143rem}.p-rating .p-rating-item .p-rating-icon.p-icon{width:1.143rem;height:1.143rem}.p-rating .p-rating-item .p-rating-icon.p-rating-cancel{color:#ea5455}.p-rating .p-rating-item.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-rating .p-rating-item.p-rating-item-active .p-rating-icon{color:#3b82f6}.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon{color:#3b82f6}.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel{color:#e73d3e}.p-selectbutton .p-button{background:#fff;border:1px solid #d1d5db;color:#4b5563;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-selectbutton .p-button .p-button-icon-left,.p-selectbutton .p-button .p-button-icon-right{color:#6b7280}.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover{background:#f3f4f6;border-color:#d1d5db;color:#4b5563}.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right{color:#374151}.p-selectbutton .p-button.p-highlight{background:#3b82f6;border-color:#3b82f6;color:#fff}.p-selectbutton .p-button.p-highlight .p-button-icon-left,.p-selectbutton .p-button.p-highlight .p-button-icon-right{color:#fff}.p-selectbutton .p-button.p-highlight:hover{background:#2563eb;border-color:#2563eb;color:#fff}.p-selectbutton .p-button.p-highlight:hover .p-button-icon-left,.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right{color:#fff}p-selectbutton.ng-dirty.ng-invalid>.p-selectbutton>.p-button{border-color:#e24c4c}.p-slider{background:#e5e7eb;border:0 none;border-radius:6px}.p-slider.p-slider-horizontal{height:.286rem}.p-slider.p-slider-horizontal .p-slider-handle{margin-top:-.5715rem;margin-left:-.5715rem}.p-slider.p-slider-vertical{width:.286rem}.p-slider.p-slider-vertical .p-slider-handle{margin-left:-.5715rem;margin-bottom:-.5715rem}.p-slider .p-slider-handle{height:1.143rem;width:1.143rem;background:#fff;border:2px solid #3B82F6;border-radius:50%;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-slider .p-slider-handle:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-slider .p-slider-range{background:#3b82f6}.p-slider:not(.p-disabled) .p-slider-handle:hover{background:#3b82f6;border-color:#3b82f6}.p-slider.p-slider-animate.p-slider-horizontal .p-slider-handle{transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s,left .2s}.p-slider.p-slider-animate.p-slider-horizontal .p-slider-range{transition:width .2s}.p-slider.p-slider-animate.p-slider-vertical .p-slider-handle{transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s,bottom .2s}.p-slider.p-slider-animate.p-slider-vertical .p-slider-range{transition:height .2s}.p-togglebutton.p-button{background:#fff;border:1px solid #d1d5db;color:#4b5563;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-togglebutton.p-button .p-button-icon-left,.p-togglebutton.p-button .p-button-icon-right{color:#6b7280}.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover{background:#f3f4f6;border-color:#d1d5db;color:#4b5563}.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right{color:#374151}.p-togglebutton.p-button.p-highlight{background:#3b82f6;border-color:#3b82f6;color:#fff}.p-togglebutton.p-button.p-highlight .p-button-icon-left,.p-togglebutton.p-button.p-highlight .p-button-icon-right{color:#fff}.p-togglebutton.p-button.p-highlight:hover{background:#2563eb;border-color:#2563eb;color:#fff}.p-togglebutton.p-button.p-highlight:hover .p-button-icon-left,.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right{color:#fff}p-togglebutton.ng-dirty.ng-invalid>.p-togglebutton.p-button{border-color:#e24c4c}.p-treeselect{background:#fff;border:1px solid #d1d5db;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:6px}.p-treeselect:not(.p-disabled):hover{border-color:#3b82f6}.p-treeselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-treeselect .p-treeselect-label{padding:.75rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-treeselect .p-treeselect-label.p-placeholder{color:#6b7280}.p-treeselect.p-treeselect-chip .p-treeselect-token{padding:.375rem .75rem;margin-right:.5rem;background:#e5e7eb;color:#4b5563;border-radius:16px}.p-treeselect .p-treeselect-trigger{background:transparent;color:#6b7280;width:3rem;border-top-right-radius:6px;border-bottom-right-radius:6px}p-treeselect.ng-invalid.ng-dirty>.p-treeselect{border-color:#e24c4c}.p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label{padding:.375rem .75rem}.p-treeselect-panel{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 2px 12px #0000001a}.p-treeselect-panel .p-treeselect-header{padding:.75rem 1.25rem;border-bottom:1px solid #e5e7eb;color:#374151;background:#f9fafb;margin:0;border-top-right-radius:6px;border-top-left-radius:6px}.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container{margin-right:.5rem}.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter{padding-right:1.75rem}.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter-icon{right:.75rem;color:#6b7280}.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter{padding-right:3.5rem}.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter-clear-icon{right:2.5rem}.p-treeselect-panel .p-treeselect-header .p-treeselect-close{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-treeselect-panel .p-treeselect-header .p-treeselect-close:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-treeselect-panel .p-treeselect-header .p-treeselect-close:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-treeselect-panel .p-treeselect-items-wrapper .p-tree{border:0 none}.p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message{padding:.75rem 1.25rem;color:#4b5563;background:transparent}.p-input-filled .p-treeselect{background:#f3f4f6}.p-input-filled .p-treeselect:not(.p-disabled):hover{background-color:#f3f4f6}.p-input-filled .p-treeselect:not(.p-disabled).p-focus{background-color:#fff}p-treeselect.p-treeselect-clearable .p-treeselect-label-container{padding-right:1.75rem}p-treeselect.p-treeselect-clearable .p-treeselect-clear-icon{color:#6b7280;right:3rem}.p-button{color:#fff;background:#3b82f6;border:1px solid #3B82F6;padding:.75rem 1.25rem;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:6px}.p-button:not(:disabled):hover{background:#2563eb;color:#fff;border-color:#2563eb}.p-button:not(:disabled):active{background:#1d4ed8;color:#fff;border-color:#1d4ed8}.p-button.p-button-outlined{background-color:transparent;color:#3b82f6;border:1px solid}.p-button.p-button-outlined:not(:disabled):hover{background:#3b82f60a;color:#3b82f6;border:1px solid}.p-button.p-button-outlined:not(:disabled):active{background:#3b82f629;color:#3b82f6;border:1px solid}.p-button.p-button-outlined.p-button-plain{color:#6b7280;border-color:#6b7280}.p-button.p-button-outlined.p-button-plain:not(:disabled):hover{background:#f3f4f6;color:#6b7280}.p-button.p-button-outlined.p-button-plain:not(:disabled):active{background:#e5e7eb;color:#6b7280}.p-button.p-button-text{background-color:transparent;color:#3b82f6;border-color:transparent}.p-button.p-button-text:not(:disabled):hover{background:#3b82f60a;color:#3b82f6;border-color:transparent}.p-button.p-button-text:not(:disabled):active{background:#3b82f629;color:#3b82f6;border-color:transparent}.p-button.p-button-text.p-button-plain{color:#6b7280}.p-button.p-button-text.p-button-plain:not(:disabled):hover{background:#f3f4f6;color:#6b7280}.p-button.p-button-text.p-button-plain:not(:disabled):active{background:#e5e7eb;color:#6b7280}.p-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-button .p-button-label{transition-duration:.2s}.p-button .p-button-icon-left{margin-right:.5rem}.p-button .p-button-icon-right{margin-left:.5rem}.p-button .p-button-icon-bottom{margin-top:.5rem}.p-button .p-button-icon-top{margin-bottom:.5rem}.p-button .p-badge{margin-left:.5rem;min-width:1rem;height:1rem;line-height:1rem;color:#3b82f6;background-color:#fff}.p-button.p-button-raised{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.p-button.p-button-rounded{border-radius:2rem}.p-button.p-button-icon-only{width:3rem;padding:.75rem 0}.p-button.p-button-icon-only .p-button-icon-left,.p-button.p-button-icon-only .p-button-icon-right{margin:0}.p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:3rem}.p-button.p-button-sm{font-size:.875rem;padding:.65625rem 1.09375rem}.p-button.p-button-sm .p-button-icon{font-size:.875rem}.p-button.p-button-lg{font-size:1.25rem;padding:.9375rem 1.5625rem}.p-button.p-button-lg .p-button-icon{font-size:1.25rem}.p-button.p-button-loading-label-only .p-button-label{margin-left:.5rem}.p-button.p-button-loading-label-only .p-button-loading-icon{margin-right:0}.p-fluid .p-button{width:100%}.p-fluid .p-button-icon-only{width:3rem}.p-fluid .p-buttonset{display:flex}.p-fluid .p-buttonset .p-button{flex:1}.p-button.p-button-secondary,.p-buttonset.p-button-secondary>.p-button,.p-splitbutton.p-button-secondary>.p-button{color:#fff;background:#64748b;border:1px solid #64748b}.p-button.p-button-secondary:not(:disabled):hover,.p-buttonset.p-button-secondary>.p-button:not(:disabled):hover,.p-splitbutton.p-button-secondary>.p-button:not(:disabled):hover{background:#475569;color:#fff;border-color:#475569}.p-button.p-button-secondary:not(:disabled):focus,.p-buttonset.p-button-secondary>.p-button:not(:disabled):focus,.p-splitbutton.p-button-secondary>.p-button:not(:disabled):focus{box-shadow:0 0 0 .2rem #e2e8f0}.p-button.p-button-secondary:not(:disabled):active,.p-buttonset.p-button-secondary>.p-button:not(:disabled):active,.p-splitbutton.p-button-secondary>.p-button:not(:disabled):active{background:#334155;color:#fff;border-color:#334155}.p-button.p-button-secondary.p-button-outlined,.p-buttonset.p-button-secondary>.p-button.p-button-outlined,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined{background-color:transparent;color:#64748b;border:1px solid}.p-button.p-button-secondary.p-button-outlined:not(:disabled):hover,.p-buttonset.p-button-secondary>.p-button.p-button-outlined:not(:disabled):hover,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined:not(:disabled):hover{background:#64748b0a;color:#64748b;border:1px solid}.p-button.p-button-secondary.p-button-outlined:not(:disabled):active,.p-buttonset.p-button-secondary>.p-button.p-button-outlined:not(:disabled):active,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined:not(:disabled):active{background:#64748b29;color:#64748b;border:1px solid}.p-button.p-button-secondary.p-button-text,.p-buttonset.p-button-secondary>.p-button.p-button-text,.p-splitbutton.p-button-secondary>.p-button.p-button-text{background-color:transparent;color:#64748b;border-color:transparent}.p-button.p-button-secondary.p-button-text:not(:disabled):hover,.p-buttonset.p-button-secondary>.p-button.p-button-text:not(:disabled):hover,.p-splitbutton.p-button-secondary>.p-button.p-button-text:not(:disabled):hover{background:#64748b0a;border-color:transparent;color:#64748b}.p-button.p-button-secondary.p-button-text:not(:disabled):active,.p-buttonset.p-button-secondary>.p-button.p-button-text:not(:disabled):active,.p-splitbutton.p-button-secondary>.p-button.p-button-text:not(:disabled):active{background:#64748b29;border-color:transparent;color:#64748b}.p-button.p-button-info,.p-buttonset.p-button-info>.p-button,.p-splitbutton.p-button-info>.p-button{color:#fff;background:#0ea5e9;border:1px solid #0ea5e9}.p-button.p-button-info:not(:disabled):hover,.p-buttonset.p-button-info>.p-button:not(:disabled):hover,.p-splitbutton.p-button-info>.p-button:not(:disabled):hover{background:#0284c7;color:#fff;border-color:#0284c7}.p-button.p-button-info:not(:disabled):focus,.p-buttonset.p-button-info>.p-button:not(:disabled):focus,.p-splitbutton.p-button-info>.p-button:not(:disabled):focus{box-shadow:0 0 0 .2rem #bfdbfe}.p-button.p-button-info:not(:disabled):active,.p-buttonset.p-button-info>.p-button:not(:disabled):active,.p-splitbutton.p-button-info>.p-button:not(:disabled):active{background:#0369a1;color:#fff;border-color:#0369a1}.p-button.p-button-info.p-button-outlined,.p-buttonset.p-button-info>.p-button.p-button-outlined,.p-splitbutton.p-button-info>.p-button.p-button-outlined{background-color:transparent;color:#0ea5e9;border:1px solid}.p-button.p-button-info.p-button-outlined:not(:disabled):hover,.p-buttonset.p-button-info>.p-button.p-button-outlined:not(:disabled):hover,.p-splitbutton.p-button-info>.p-button.p-button-outlined:not(:disabled):hover{background:#0ea5e90a;color:#0ea5e9;border:1px solid}.p-button.p-button-info.p-button-outlined:not(:disabled):active,.p-buttonset.p-button-info>.p-button.p-button-outlined:not(:disabled):active,.p-splitbutton.p-button-info>.p-button.p-button-outlined:not(:disabled):active{background:#0ea5e929;color:#0ea5e9;border:1px solid}.p-button.p-button-info.p-button-text,.p-buttonset.p-button-info>.p-button.p-button-text,.p-splitbutton.p-button-info>.p-button.p-button-text{background-color:transparent;color:#0ea5e9;border-color:transparent}.p-button.p-button-info.p-button-text:not(:disabled):hover,.p-buttonset.p-button-info>.p-button.p-button-text:not(:disabled):hover,.p-splitbutton.p-button-info>.p-button.p-button-text:not(:disabled):hover{background:#0ea5e90a;border-color:transparent;color:#0ea5e9}.p-button.p-button-info.p-button-text:not(:disabled):active,.p-buttonset.p-button-info>.p-button.p-button-text:not(:disabled):active,.p-splitbutton.p-button-info>.p-button.p-button-text:not(:disabled):active{background:#0ea5e929;border-color:transparent;color:#0ea5e9}.p-button.p-button-success,.p-buttonset.p-button-success>.p-button,.p-splitbutton.p-button-success>.p-button{color:#fff;background:#22c55e;border:1px solid #22c55e}.p-button.p-button-success:not(:disabled):hover,.p-buttonset.p-button-success>.p-button:not(:disabled):hover,.p-splitbutton.p-button-success>.p-button:not(:disabled):hover{background:#16a34a;color:#fff;border-color:#16a34a}.p-button.p-button-success:not(:disabled):focus,.p-buttonset.p-button-success>.p-button:not(:disabled):focus,.p-splitbutton.p-button-success>.p-button:not(:disabled):focus{box-shadow:0 0 0 .2rem #bbf7d0}.p-button.p-button-success:not(:disabled):active,.p-buttonset.p-button-success>.p-button:not(:disabled):active,.p-splitbutton.p-button-success>.p-button:not(:disabled):active{background:#15803d;color:#fff;border-color:#15803d}.p-button.p-button-success.p-button-outlined,.p-buttonset.p-button-success>.p-button.p-button-outlined,.p-splitbutton.p-button-success>.p-button.p-button-outlined{background-color:transparent;color:#22c55e;border:1px solid}.p-button.p-button-success.p-button-outlined:not(:disabled):hover,.p-buttonset.p-button-success>.p-button.p-button-outlined:not(:disabled):hover,.p-splitbutton.p-button-success>.p-button.p-button-outlined:not(:disabled):hover{background:#22c55e0a;color:#22c55e;border:1px solid}.p-button.p-button-success.p-button-outlined:not(:disabled):active,.p-buttonset.p-button-success>.p-button.p-button-outlined:not(:disabled):active,.p-splitbutton.p-button-success>.p-button.p-button-outlined:not(:disabled):active{background:#22c55e29;color:#22c55e;border:1px solid}.p-button.p-button-success.p-button-text,.p-buttonset.p-button-success>.p-button.p-button-text,.p-splitbutton.p-button-success>.p-button.p-button-text{background-color:transparent;color:#22c55e;border-color:transparent}.p-button.p-button-success.p-button-text:not(:disabled):hover,.p-buttonset.p-button-success>.p-button.p-button-text:not(:disabled):hover,.p-splitbutton.p-button-success>.p-button.p-button-text:not(:disabled):hover{background:#22c55e0a;border-color:transparent;color:#22c55e}.p-button.p-button-success.p-button-text:not(:disabled):active,.p-buttonset.p-button-success>.p-button.p-button-text:not(:disabled):active,.p-splitbutton.p-button-success>.p-button.p-button-text:not(:disabled):active{background:#22c55e29;border-color:transparent;color:#22c55e}.p-button.p-button-warning,.p-buttonset.p-button-warning>.p-button,.p-splitbutton.p-button-warning>.p-button{color:#fff;background:#f97316;border:1px solid #f97316}.p-button.p-button-warning:not(:disabled):hover,.p-buttonset.p-button-warning>.p-button:not(:disabled):hover,.p-splitbutton.p-button-warning>.p-button:not(:disabled):hover{background:#ea580c;color:#fff;border-color:#ea580c}.p-button.p-button-warning:not(:disabled):focus,.p-buttonset.p-button-warning>.p-button:not(:disabled):focus,.p-splitbutton.p-button-warning>.p-button:not(:disabled):focus{box-shadow:0 0 0 .2rem #fde68a}.p-button.p-button-warning:not(:disabled):active,.p-buttonset.p-button-warning>.p-button:not(:disabled):active,.p-splitbutton.p-button-warning>.p-button:not(:disabled):active{background:#c2410c;color:#fff;border-color:#c2410c}.p-button.p-button-warning.p-button-outlined,.p-buttonset.p-button-warning>.p-button.p-button-outlined,.p-splitbutton.p-button-warning>.p-button.p-button-outlined{background-color:transparent;color:#f97316;border:1px solid}.p-button.p-button-warning.p-button-outlined:not(:disabled):hover,.p-buttonset.p-button-warning>.p-button.p-button-outlined:not(:disabled):hover,.p-splitbutton.p-button-warning>.p-button.p-button-outlined:not(:disabled):hover{background:#f973160a;color:#f97316;border:1px solid}.p-button.p-button-warning.p-button-outlined:not(:disabled):active,.p-buttonset.p-button-warning>.p-button.p-button-outlined:not(:disabled):active,.p-splitbutton.p-button-warning>.p-button.p-button-outlined:not(:disabled):active{background:#f9731629;color:#f97316;border:1px solid}.p-button.p-button-warning.p-button-text,.p-buttonset.p-button-warning>.p-button.p-button-text,.p-splitbutton.p-button-warning>.p-button.p-button-text{background-color:transparent;color:#f97316;border-color:transparent}.p-button.p-button-warning.p-button-text:not(:disabled):hover,.p-buttonset.p-button-warning>.p-button.p-button-text:not(:disabled):hover,.p-splitbutton.p-button-warning>.p-button.p-button-text:not(:disabled):hover{background:#f973160a;border-color:transparent;color:#f97316}.p-button.p-button-warning.p-button-text:not(:disabled):active,.p-buttonset.p-button-warning>.p-button.p-button-text:not(:disabled):active,.p-splitbutton.p-button-warning>.p-button.p-button-text:not(:disabled):active{background:#f9731629;border-color:transparent;color:#f97316}.p-button.p-button-help,.p-buttonset.p-button-help>.p-button,.p-splitbutton.p-button-help>.p-button{color:#fff;background:#a855f7;border:1px solid #a855f7}.p-button.p-button-help:not(:disabled):hover,.p-buttonset.p-button-help>.p-button:not(:disabled):hover,.p-splitbutton.p-button-help>.p-button:not(:disabled):hover{background:#9333ea;color:#fff;border-color:#9333ea}.p-button.p-button-help:not(:disabled):focus,.p-buttonset.p-button-help>.p-button:not(:disabled):focus,.p-splitbutton.p-button-help>.p-button:not(:disabled):focus{box-shadow:0 0 0 .2rem #e9d5ff}.p-button.p-button-help:not(:disabled):active,.p-buttonset.p-button-help>.p-button:not(:disabled):active,.p-splitbutton.p-button-help>.p-button:not(:disabled):active{background:#7e22ce;color:#fff;border-color:#7e22ce}.p-button.p-button-help.p-button-outlined,.p-buttonset.p-button-help>.p-button.p-button-outlined,.p-splitbutton.p-button-help>.p-button.p-button-outlined{background-color:transparent;color:#a855f7;border:1px solid}.p-button.p-button-help.p-button-outlined:not(:disabled):hover,.p-buttonset.p-button-help>.p-button.p-button-outlined:not(:disabled):hover,.p-splitbutton.p-button-help>.p-button.p-button-outlined:not(:disabled):hover{background:#a855f70a;color:#a855f7;border:1px solid}.p-button.p-button-help.p-button-outlined:not(:disabled):active,.p-buttonset.p-button-help>.p-button.p-button-outlined:not(:disabled):active,.p-splitbutton.p-button-help>.p-button.p-button-outlined:not(:disabled):active{background:#a855f729;color:#a855f7;border:1px solid}.p-button.p-button-help.p-button-text,.p-buttonset.p-button-help>.p-button.p-button-text,.p-splitbutton.p-button-help>.p-button.p-button-text{background-color:transparent;color:#a855f7;border-color:transparent}.p-button.p-button-help.p-button-text:not(:disabled):hover,.p-buttonset.p-button-help>.p-button.p-button-text:not(:disabled):hover,.p-splitbutton.p-button-help>.p-button.p-button-text:not(:disabled):hover{background:#a855f70a;border-color:transparent;color:#a855f7}.p-button.p-button-help.p-button-text:not(:disabled):active,.p-buttonset.p-button-help>.p-button.p-button-text:not(:disabled):active,.p-splitbutton.p-button-help>.p-button.p-button-text:not(:disabled):active{background:#a855f729;border-color:transparent;color:#a855f7}.p-button.p-button-danger,.p-buttonset.p-button-danger>.p-button,.p-splitbutton.p-button-danger>.p-button{color:#fff;background:#ef4444;border:1px solid #ef4444}.p-button.p-button-danger:not(:disabled):hover,.p-buttonset.p-button-danger>.p-button:not(:disabled):hover,.p-splitbutton.p-button-danger>.p-button:not(:disabled):hover{background:#dc2626;color:#fff;border-color:#dc2626}.p-button.p-button-danger:not(:disabled):focus,.p-buttonset.p-button-danger>.p-button:not(:disabled):focus,.p-splitbutton.p-button-danger>.p-button:not(:disabled):focus{box-shadow:0 0 0 .2rem #fecaca}.p-button.p-button-danger:not(:disabled):active,.p-buttonset.p-button-danger>.p-button:not(:disabled):active,.p-splitbutton.p-button-danger>.p-button:not(:disabled):active{background:#b91c1c;color:#fff;border-color:#b91c1c}.p-button.p-button-danger.p-button-outlined,.p-buttonset.p-button-danger>.p-button.p-button-outlined,.p-splitbutton.p-button-danger>.p-button.p-button-outlined{background-color:transparent;color:#ef4444;border:1px solid}.p-button.p-button-danger.p-button-outlined:not(:disabled):hover,.p-buttonset.p-button-danger>.p-button.p-button-outlined:not(:disabled):hover,.p-splitbutton.p-button-danger>.p-button.p-button-outlined:not(:disabled):hover{background:#ef44440a;color:#ef4444;border:1px solid}.p-button.p-button-danger.p-button-outlined:not(:disabled):active,.p-buttonset.p-button-danger>.p-button.p-button-outlined:not(:disabled):active,.p-splitbutton.p-button-danger>.p-button.p-button-outlined:not(:disabled):active{background:#ef444429;color:#ef4444;border:1px solid}.p-button.p-button-danger.p-button-text,.p-buttonset.p-button-danger>.p-button.p-button-text,.p-splitbutton.p-button-danger>.p-button.p-button-text{background-color:transparent;color:#ef4444;border-color:transparent}.p-button.p-button-danger.p-button-text:not(:disabled):hover,.p-buttonset.p-button-danger>.p-button.p-button-text:not(:disabled):hover,.p-splitbutton.p-button-danger>.p-button.p-button-text:not(:disabled):hover{background:#ef44440a;border-color:transparent;color:#ef4444}.p-button.p-button-danger.p-button-text:not(:disabled):active,.p-buttonset.p-button-danger>.p-button.p-button-text:not(:disabled):active,.p-splitbutton.p-button-danger>.p-button.p-button-text:not(:disabled):active{background:#ef444429;border-color:transparent;color:#ef4444}.p-button.p-button-link{color:#1d4ed8;background:transparent;border:transparent}.p-button.p-button-link:not(:disabled):hover{background:transparent;color:#1d4ed8;border-color:transparent}.p-button.p-button-link:not(:disabled):hover .p-button-label{text-decoration:underline}.p-button.p-button-link:not(:disabled):focus{background:transparent;box-shadow:0 0 0 .2rem #bfdbfe;border-color:transparent}.p-button.p-button-link:not(:disabled):active{background:transparent;color:#1d4ed8;border-color:transparent}.p-speeddial-button.p-button.p-button-icon-only{width:4rem;height:4rem}.p-speeddial-button.p-button.p-button-icon-only .p-button-icon{font-size:1.3rem}.p-speeddial-button.p-button.p-button-icon-only .p-icon{width:1.3rem;height:1.3rem}.p-speeddial-list{outline:0 none}.p-speeddial-item.p-focus>.p-speeddial-action{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-speeddial-action{width:3rem;height:3rem;background:#4b5563;color:#fff}.p-speeddial-action:hover{background:#022354;color:#fff}.p-speeddial-direction-up .p-speeddial-item{margin:.25rem 0}.p-speeddial-direction-up .p-speeddial-item:first-child{margin-bottom:.5rem}.p-speeddial-direction-down .p-speeddial-item{margin:.25rem 0}.p-speeddial-direction-down .p-speeddial-item:first-child{margin-top:.5rem}.p-speeddial-direction-left .p-speeddial-item{margin:0 .25rem}.p-speeddial-direction-left .p-speeddial-item:first-child{margin-right:.5rem}.p-speeddial-direction-right .p-speeddial-item{margin:0 .25rem}.p-speeddial-direction-right .p-speeddial-item:first-child{margin-left:.5rem}.p-speeddial-circle .p-speeddial-item,.p-speeddial-semi-circle .p-speeddial-item,.p-speeddial-quarter-circle .p-speeddial-item{margin:0}.p-speeddial-circle .p-speeddial-item:first-child,.p-speeddial-circle .p-speeddial-item:last-child,.p-speeddial-semi-circle .p-speeddial-item:first-child,.p-speeddial-semi-circle .p-speeddial-item:last-child,.p-speeddial-quarter-circle .p-speeddial-item:first-child,.p-speeddial-quarter-circle .p-speeddial-item:last-child{margin:0}.p-speeddial-mask{background-color:#0006}.p-splitbutton{border-radius:6px}.p-splitbutton.p-button-outlined>.p-button{background-color:transparent;color:#3b82f6;border:1px solid}.p-splitbutton.p-button-outlined>.p-button:not(:disabled):hover{background:#3b82f60a;color:#3b82f6}.p-splitbutton.p-button-outlined>.p-button:not(:disabled):active{background:#3b82f629;color:#3b82f6}.p-splitbutton.p-button-outlined.p-button-plain>.p-button{color:#6b7280;border-color:#6b7280}.p-splitbutton.p-button-outlined.p-button-plain>.p-button:not(:disabled):hover{background:#f3f4f6;color:#6b7280}.p-splitbutton.p-button-outlined.p-button-plain>.p-button:not(:disabled):active{background:#e5e7eb;color:#6b7280}.p-splitbutton.p-button-text>.p-button{background-color:transparent;color:#3b82f6;border-color:transparent}.p-splitbutton.p-button-text>.p-button:not(:disabled):hover{background:#3b82f60a;color:#3b82f6;border-color:transparent}.p-splitbutton.p-button-text>.p-button:not(:disabled):active{background:#3b82f629;color:#3b82f6;border-color:transparent}.p-splitbutton.p-button-text.p-button-plain>.p-button{color:#6b7280}.p-splitbutton.p-button-text.p-button-plain>.p-button:not(:disabled):hover{background:#f3f4f6;color:#6b7280}.p-splitbutton.p-button-text.p-button-plain>.p-button:not(:disabled):active{background:#e5e7eb;color:#6b7280}.p-splitbutton.p-button-raised{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.p-splitbutton.p-button-rounded{border-radius:2rem}.p-splitbutton.p-button-rounded>.p-button{border-radius:2rem}.p-splitbutton.p-button-sm>.p-button{font-size:.875rem;padding:.65625rem 1.09375rem}.p-splitbutton.p-button-sm>.p-button .p-button-icon{font-size:.875rem}.p-splitbutton.p-button-lg>.p-button{font-size:1.25rem;padding:.9375rem 1.5625rem}.p-splitbutton.p-button-lg>.p-button .p-button-icon{font-size:1.25rem}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button{background-color:transparent;color:#64748b;border:1px solid}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:not(:disabled):hover{background:#64748b0a;color:#64748b}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:not(:disabled):active{background:#64748b29;color:#64748b}.p-splitbutton.p-button-secondary.p-button-text>.p-button{background-color:transparent;color:#64748b;border-color:transparent}.p-splitbutton.p-button-secondary.p-button-text>.p-button:not(:disabled):hover{background:#64748b0a;border-color:transparent;color:#64748b}.p-splitbutton.p-button-secondary.p-button-text>.p-button:not(:disabled):active{background:#64748b29;border-color:transparent;color:#64748b}.p-splitbutton.p-button-info.p-button-outlined>.p-button{background-color:transparent;color:#0ea5e9;border:1px solid}.p-splitbutton.p-button-info.p-button-outlined>.p-button:not(:disabled):hover{background:#0ea5e90a;color:#0ea5e9}.p-splitbutton.p-button-info.p-button-outlined>.p-button:not(:disabled):active{background:#0ea5e929;color:#0ea5e9}.p-splitbutton.p-button-info.p-button-text>.p-button{background-color:transparent;color:#0ea5e9;border-color:transparent}.p-splitbutton.p-button-info.p-button-text>.p-button:not(:disabled):hover{background:#0ea5e90a;border-color:transparent;color:#0ea5e9}.p-splitbutton.p-button-info.p-button-text>.p-button:not(:disabled):active{background:#0ea5e929;border-color:transparent;color:#0ea5e9}.p-splitbutton.p-button-success.p-button-outlined>.p-button{background-color:transparent;color:#22c55e;border:1px solid}.p-splitbutton.p-button-success.p-button-outlined>.p-button:not(:disabled):hover{background:#22c55e0a;color:#22c55e}.p-splitbutton.p-button-success.p-button-outlined>.p-button:not(:disabled):active{background:#22c55e29;color:#22c55e}.p-splitbutton.p-button-success.p-button-text>.p-button{background-color:transparent;color:#22c55e;border-color:transparent}.p-splitbutton.p-button-success.p-button-text>.p-button:not(:disabled):hover{background:#22c55e0a;border-color:transparent;color:#22c55e}.p-splitbutton.p-button-success.p-button-text>.p-button:not(:disabled):active{background:#22c55e29;border-color:transparent;color:#22c55e}.p-splitbutton.p-button-warning.p-button-outlined>.p-button{background-color:transparent;color:#f97316;border:1px solid}.p-splitbutton.p-button-warning.p-button-outlined>.p-button:not(:disabled):hover{background:#f973160a;color:#f97316}.p-splitbutton.p-button-warning.p-button-outlined>.p-button:not(:disabled):active{background:#f9731629;color:#f97316}.p-splitbutton.p-button-warning.p-button-text>.p-button{background-color:transparent;color:#f97316;border-color:transparent}.p-splitbutton.p-button-warning.p-button-text>.p-button:not(:disabled):hover{background:#f973160a;border-color:transparent;color:#f97316}.p-splitbutton.p-button-warning.p-button-text>.p-button:not(:disabled):active{background:#f9731629;border-color:transparent;color:#f97316}.p-splitbutton.p-button-help.p-button-outlined>.p-button{background-color:transparent;color:#a855f7;border:1px solid}.p-splitbutton.p-button-help.p-button-outlined>.p-button:not(:disabled):hover{background:#a855f70a;color:#a855f7}.p-splitbutton.p-button-help.p-button-outlined>.p-button:not(:disabled):active{background:#a855f729;color:#a855f7}.p-splitbutton.p-button-help.p-button-text>.p-button{background-color:transparent;color:#a855f7;border-color:transparent}.p-splitbutton.p-button-help.p-button-text>.p-button:not(:disabled):hover{background:#a855f70a;border-color:transparent;color:#a855f7}.p-splitbutton.p-button-help.p-button-text>.p-button:not(:disabled):active{background:#a855f729;border-color:transparent;color:#a855f7}.p-splitbutton.p-button-danger.p-button-outlined>.p-button{background-color:transparent;color:#ef4444;border:1px solid}.p-splitbutton.p-button-danger.p-button-outlined>.p-button:not(:disabled):hover{background:#ef44440a;color:#ef4444}.p-splitbutton.p-button-danger.p-button-outlined>.p-button:not(:disabled):active{background:#ef444429;color:#ef4444}.p-splitbutton.p-button-danger.p-button-text>.p-button{background-color:transparent;color:#ef4444;border-color:transparent}.p-splitbutton.p-button-danger.p-button-text>.p-button:not(:disabled):hover{background:#ef44440a;border-color:transparent;color:#ef4444}.p-splitbutton.p-button-danger.p-button-text>.p-button:not(:disabled):active{background:#ef444429;border-color:transparent;color:#ef4444}.p-carousel .p-carousel-content .p-carousel-prev,.p-carousel .p-carousel-content .p-carousel-next{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin:.5rem}.p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,.p-carousel .p-carousel-content .p-carousel-next:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-carousel .p-carousel-content .p-carousel-prev:focus-visible,.p-carousel .p-carousel-content .p-carousel-next:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-carousel .p-carousel-indicators{padding:1rem}.p-carousel .p-carousel-indicators .p-carousel-indicator{margin-right:.5rem;margin-bottom:.5rem}.p-carousel .p-carousel-indicators .p-carousel-indicator button{background-color:#d1d5db;width:2rem;height:.5rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:0}.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover{background:#9ca3af}.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button{background:#eff6ff;color:#1d4ed8}.p-datatable .p-paginator-top,.p-datatable .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-datatable .p-datatable-header{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:1px 0 1px 0;padding:1rem;font-weight:700}.p-datatable .p-datatable-footer{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:0 0 1px 0;padding:1rem;font-weight:700}.p-datatable .p-datatable-thead>tr>th{text-align:left;padding:1rem;border:1px solid #e5e7eb;border-width:0 0 1px 0;font-weight:700;color:#374151;background:#f9fafb;transition:box-shadow .2s}.p-datatable .p-datatable-tfoot>tr>td{text-align:left;padding:1rem;border:1px solid #e5e7eb;border-width:0 0 1px 0;font-weight:700;color:#374151;background:#f9fafb}.p-datatable .p-sortable-column .p-sortable-column-icon{color:#374151;margin-left:.5rem}.p-datatable .p-sortable-column .p-sortable-column-badge{border-radius:50%;height:1.143rem;min-width:1.143rem;line-height:1.143rem;color:#1d4ed8;background:#eff6ff;margin-left:.5rem}.p-datatable .p-sortable-column:not(.p-highlight):hover{background:#f3f4f6;color:#374151}.p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon{color:#374151}.p-datatable .p-sortable-column.p-highlight{background:#eff6ff;color:#1d4ed8}.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon{color:#1d4ed8}.p-datatable .p-sortable-column.p-highlight:hover{background:#eff6ff;color:#1d4ed8}.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon{color:#1d4ed8}.p-datatable .p-sortable-column:focus-visible{box-shadow:inset 0 0 0 .15rem #bfdbfe;outline:0 none}.p-datatable .p-datatable-tbody>tr{background:#fff;color:#4b5563;transition:box-shadow .2s}.p-datatable .p-datatable-tbody>tr>td{text-align:left;border:1px solid #e5e7eb;border-width:0 0 1px 0;padding:1rem}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler:focus-visible,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init:focus-visible,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save:focus-visible,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save{margin-right:.5rem}.p-datatable .p-datatable-tbody>tr:focus-visible{outline:.15rem solid #BFDBFE;outline-offset:-.15rem}.p-datatable .p-datatable-tbody>tr.p-highlight{background:#eff6ff;color:#1d4ed8}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-top>td{box-shadow:inset 0 2px #eff6ff}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-bottom>td{box-shadow:inset 0 -2px #eff6ff}.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody>tr:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-datatable .p-column-resizer-helper{background:#3b82f6}.p-datatable .p-datatable-scrollable-header,.p-datatable .p-datatable-scrollable-footer{background:#f9fafb}.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-datatable-table>.p-datatable-thead,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-datatable-table>.p-datatable-tfoot,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-scroller-viewport>.p-scroller>.p-datatable-table>.p-datatable-thead,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-scroller-viewport>.p-scroller>.p-datatable-table>.p-datatable-tfoot{background-color:#f9fafb}.p-datatable .p-datatable-loading-icon{font-size:2rem}.p-datatable.p-datatable-gridlines .p-datatable-header{border-width:1px 1px 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-footer{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-paginator-top{border-width:0 1px 0 1px}.p-datatable.p-datatable-gridlines .p-paginator-bottom{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th:last-child{border-width:1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td{border-width:1px 0 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td:last-child{border-width:1px 1px 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr:last-child>td{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr:last-child>td:last-child{border-width:1px}.p-datatable.p-datatable-gridlines .p-datatable-tfoot>tr>td{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-tfoot>tr>td:last-child{border-width:1px 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead+.p-datatable-tfoot>tr>td{border-width:0 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead+.p-datatable-tfoot>tr>td:last-child{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border-width:0 0 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td:last-child{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody>tr:last-child>td{border-width:0 0 0 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody>tr:last-child>td:last-child{border-width:0 1px 0 1px}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n){background:#f8f8fa}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight{background:#eff6ff;color:#1d4ed8}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight .p-row-toggler{color:#1d4ed8}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight .p-row-toggler:hover{color:#1d4ed8}.p-datatable.p-datatable-sm .p-datatable-header{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-thead>tr>th{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-tbody>tr>td{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-tfoot>tr>td{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-footer{padding:.5rem}.p-datatable.p-datatable-lg .p-datatable-header{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-thead>tr>th{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-tbody>tr>td{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-tfoot>tr>td{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-footer{padding:1.25rem}.p-dataview .p-paginator-top,.p-dataview .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-dataview .p-dataview-header{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:1px 0 1px 0;padding:1rem;font-weight:700}.p-dataview .p-dataview-content{background:#fff;color:#4b5563;border:0 none;padding:0}.p-dataview .p-dataview-footer{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:0 0 1px 0;padding:1rem;font-weight:700;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.p-dataview .p-dataview-loading-icon{font-size:2rem}.p-dataview .p-dataview-emptymessage{padding:1.25rem}.p-column-filter-row .p-column-filter-menu-button,.p-column-filter-row .p-column-filter-clear-button{margin-left:.5rem}.p-column-filter-menu-button{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-column-filter-menu-button:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-column-filter-menu-button.p-column-filter-menu-button-open,.p-column-filter-menu-button.p-column-filter-menu-button-open:hover{background:#f3f4f6;color:#374151}.p-column-filter-menu-button.p-column-filter-menu-button-active,.p-column-filter-menu-button.p-column-filter-menu-button-active:hover{background:#eff6ff;color:#1d4ed8}.p-column-filter-menu-button:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-column-filter-clear-button{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-column-filter-clear-button:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-column-filter-clear-button:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-column-filter-overlay{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 2px 12px #0000001a;min-width:12.5rem}.p-column-filter-overlay .p-column-filter-row-items{padding:.75rem 0}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item{margin:0;padding:.75rem 1.25rem;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s;border-radius:0}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover{color:#4b5563;background:#f3f4f6}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfdbfe}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-column-filter-overlay-menu .p-column-filter-operator{padding:.75rem 1.25rem;border-bottom:1px solid #e5e7eb;color:#374151;background:#f9fafb;margin:0;border-top-right-radius:6px;border-top-left-radius:6px}.p-column-filter-overlay-menu .p-column-filter-constraint{padding:1.25rem;border-bottom:1px solid #e5e7eb}.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown{margin-bottom:.5rem}.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button{margin-top:.5rem}.p-column-filter-overlay-menu .p-column-filter-constraint:last-child{border-bottom:0 none}.p-column-filter-overlay-menu .p-column-filter-add-rule{padding:.75rem 1.25rem}.p-column-filter-overlay-menu .p-column-filter-buttonbar,.p-orderlist .p-orderlist-controls{padding:1.25rem}.p-orderlist .p-orderlist-controls .p-button{margin-bottom:.5rem}.p-orderlist .p-orderlist-list-container{background:#fff;border:1px solid #e5e7eb;border-radius:6px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;outline-color:transparent}.p-orderlist .p-orderlist-list-container.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-orderlist .p-orderlist-header{color:#374151;padding:1.25rem;font-weight:700}.p-orderlist .p-orderlist-header .p-orderlist-title{font-weight:700}.p-orderlist .p-orderlist-filter-container{padding:1.25rem;background:#fff;border:1px solid #e5e7eb;border-bottom:0 none}.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-input{padding-right:1.75rem}.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon{right:.75rem;color:#6b7280}.p-orderlist .p-orderlist-list{color:#4b5563;padding:.75rem 0;outline:0 none}.p-orderlist .p-orderlist-list:not(:first-child){border-top:1px solid #e5e7eb}.p-orderlist .p-orderlist-list .p-orderlist-item{padding:.75rem 1.25rem;margin:0;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s}.p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-orderlist .p-orderlist-list .p-orderlist-item.p-focus{color:#4b5563;background:#e5e7eb}.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight.p-focus{background:#3b82f63d}.p-orderlist .p-orderlist-list .p-orderlist-empty-message{padding:.75rem 1.25rem;color:#4b5563}.p-orderlist .p-orderlist-list:not(.cdk-drop-list-dragging) .p-orderlist-item:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n){background:#f8f8fa}.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n):hover{background:#f3f4f6}.p-orderlist-item.cdk-drag-preview{padding:.75rem 1.25rem;box-shadow:0 2px 12px #0000001a;border:0 none;color:#4b5563;background:#fff;margin:0}.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-organizationchart .p-organizationchart-node-content.p-highlight{background:#eff6ff;color:#1d4ed8}.p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i{color:#70aeff}.p-organizationchart .p-organizationchart-line-down{background:#e5e7eb}.p-organizationchart .p-organizationchart-line-left{border-right:1px solid #e5e7eb;border-color:#e5e7eb}.p-organizationchart .p-organizationchart-line-top{border-top:1px solid #e5e7eb;border-color:#e5e7eb}.p-organizationchart .p-organizationchart-node-content{border:1px solid #e5e7eb;background:#fff;color:#4b5563;padding:1.25rem}.p-organizationchart .p-organizationchart-node-content .p-node-toggler{background:inherit;color:inherit;border-radius:50%}.p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-paginator{background:#fff;color:#6b7280;border:solid #f3f4f6;border-width:0;padding:.5rem 1rem;border-radius:6px}.p-paginator .p-paginator-first,.p-paginator .p-paginator-prev,.p-paginator .p-paginator-next,.p-paginator .p-paginator-last{background-color:transparent;border:0 none;color:#6b7280;min-width:3rem;height:3rem;margin:.143rem;transition:box-shadow .2s;border-radius:50%}.p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover{background:#f3f4f6;border-color:transparent;color:#374151}.p-paginator .p-paginator-first{border-top-left-radius:50%;border-bottom-left-radius:50%}.p-paginator .p-paginator-last{border-top-right-radius:50%;border-bottom-right-radius:50%}.p-paginator .p-dropdown{margin-left:.5rem;margin-right:.5rem;height:3rem}.p-paginator .p-dropdown .p-dropdown-label{padding-right:0}.p-paginator .p-paginator-page-input{margin-left:.5rem;margin-right:.5rem}.p-paginator .p-paginator-page-input .p-inputtext{max-width:3rem}.p-paginator .p-paginator-current{background-color:transparent;border:0 none;color:#6b7280;min-width:3rem;height:3rem;margin:.143rem;padding:0 .5rem}.p-paginator .p-paginator-pages .p-paginator-page{background-color:transparent;border:0 none;color:#6b7280;min-width:3rem;height:3rem;margin:.143rem;transition:box-shadow .2s;border-radius:50%}.p-paginator .p-paginator-pages .p-paginator-page.p-highlight{background:#eff6ff;border-color:#eff6ff;color:#1d4ed8}.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover{background:#f3f4f6;border-color:transparent;color:#374151}.p-picklist .p-picklist-buttons{padding:1.25rem}.p-picklist .p-picklist-buttons .p-button{margin-bottom:.5rem}.p-picklist .p-picklist-list-wrapper{background:#fff;border:1px solid #e5e7eb;border-radius:6px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;outline-color:transparent}.p-picklist .p-picklist-list-wrapper.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe;border-color:#3b82f6}.p-picklist .p-picklist-header{color:#374151;padding:1.25rem;font-weight:700}.p-picklist .p-picklist-header .p-picklist-title{font-weight:700}.p-picklist .p-picklist-filter-container{padding:1.25rem;background:#fff;border:1px solid #e5e7eb;border-bottom:0 none}.p-picklist .p-picklist-filter-container .p-picklist-filter-input{padding-right:1.75rem}.p-picklist .p-picklist-filter-container .p-picklist-filter-icon{right:.75rem;color:#6b7280}.p-picklist .p-picklist-list{color:#4b5563;padding:.75rem 0;outline:0 none}.p-picklist .p-picklist-list:not(:first-child){border-top:1px solid #e5e7eb}.p-picklist .p-picklist-list .p-picklist-item{padding:.75rem 1.25rem;margin:0;border:0 none;color:#4b5563;background:transparent;transition:box-shadow .2s}.p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-picklist .p-picklist-list .p-picklist-item.p-focus{color:#4b5563;background:#e5e7eb}.p-picklist .p-picklist-list .p-picklist-item.p-highlight{color:#1d4ed8;background:#eff6ff}.p-picklist .p-picklist-list .p-picklist-item.p-highlight.p-focus{background:#3b82f63d}.p-picklist .p-picklist-list .p-picklist-empty-message{padding:.75rem 1.25rem;color:#4b5563}.p-picklist .p-picklist-list:not(.cdk-drop-list-dragging) .p-picklist-item:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(2n){background:#f8f8fa}.p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(2n):hover{background:#f3f4f6}.p-picklist-item.cdk-drag-preview{padding:.75rem 1.25rem;box-shadow:0 2px 12px #0000001a;border:0 none;color:#4b5563;background:#fff;margin:0}.p-timeline .p-timeline-event-marker{border:2px solid #3B82F6;border-radius:50%;width:1rem;height:1rem;background-color:#fff}.p-timeline .p-timeline-event-connector{background-color:#e5e7eb}.p-timeline.p-timeline-vertical .p-timeline-event-opposite,.p-timeline.p-timeline-vertical .p-timeline-event-content{padding:0 1rem}.p-timeline.p-timeline-vertical .p-timeline-event-connector{width:2px}.p-timeline.p-timeline-horizontal .p-timeline-event-opposite,.p-timeline.p-timeline-horizontal .p-timeline-event-content{padding:1rem 0}.p-timeline.p-timeline-horizontal .p-timeline-event-connector{height:2px}.p-tree{border:1px solid #e5e7eb;background:#fff;color:#4b5563;padding:1.25rem;border-radius:6px}.p-tree .p-tree-container .p-treenode{padding:.143rem;outline:0 none}.p-tree .p-tree-container .p-treenode:focus>.p-treenode-content{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfdbfe}.p-tree .p-tree-container .p-treenode .p-treenode-content{border-radius:6px;transition:box-shadow .2s;padding:.5rem}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler{margin-right:.5rem;width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon{margin-right:.5rem;color:#6b7280}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox{margin-right:.5rem}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox .p-indeterminate .p-checkbox-icon{color:#4b5563}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight{background:#eff6ff;color:#1d4ed8}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover{color:#1d4ed8}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover{background:#f3f4f6;color:#4b5563}.p-tree .p-tree-filter-container{margin-bottom:.5rem}.p-tree .p-tree-filter-container .p-tree-filter{width:100%;padding-right:1.75rem}.p-tree .p-tree-filter-container .p-tree-filter-icon{right:.75rem;color:#6b7280}.p-tree .p-treenode-children{padding:0 0 0 1rem}.p-tree .p-tree-loading-icon{font-size:2rem}.p-tree .p-tree-loading-icon.p-icon{width:2rem;height:2rem}.p-tree .p-treenode-droppoint.p-treenode-droppoint-active{background-color:#8cbeff}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content{border-radius:6px;border:1px solid #e5e7eb;background-color:#fff;color:#4b5563;padding:.5rem;transition:box-shadow .2s}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-highlight{background-color:#eff6ff;color:#1d4ed8}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-highlight .p-treenode-icon{color:#1d4ed8}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-tree-toggler{margin-right:.5rem}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-treenode-icon{color:#6b7280;margin-right:.5rem}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-checkbox{margin-right:.5rem}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-treenode-label:not(.p-highlight):hover{background-color:inherit;color:inherit}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-tree.p-tree-horizontal .p-treenode .p-treenode-content:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-treetable .p-paginator-top,.p-treetable .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-treetable .p-treetable-header{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:1px 0 1px 0;padding:1rem;font-weight:700}.p-treetable .p-treetable-footer{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:0 0 1px 0;padding:1rem;font-weight:700}.p-treetable .p-treetable-thead>tr>th{text-align:left;padding:1rem;border:1px solid #e5e7eb;border-width:0 0 1px 0;font-weight:700;color:#374151;background:#f9fafb;transition:box-shadow .2s}.p-treetable .p-treetable-tfoot>tr>td{text-align:left;padding:1rem;border:1px solid #e5e7eb;border-width:0 0 1px 0;font-weight:700;color:#374151;background:#f9fafb}.p-treetable .p-sortable-column{outline-color:#bfdbfe}.p-treetable .p-sortable-column .p-sortable-column-icon{color:#374151;margin-left:.5rem}.p-treetable .p-sortable-column .p-sortable-column-badge{border-radius:50%;height:1.143rem;min-width:1.143rem;line-height:1.143rem;color:#1d4ed8;background:#eff6ff;margin-left:.5rem}.p-treetable .p-sortable-column:not(.p-highlight):hover{background:#f3f4f6;color:#374151}.p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon{color:#374151}.p-treetable .p-sortable-column.p-highlight{background:#eff6ff;color:#1d4ed8}.p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon{color:#1d4ed8}.p-treetable .p-treetable-tbody>tr{background:#fff;color:#4b5563;transition:box-shadow .2s}.p-treetable .p-treetable-tbody>tr>td{text-align:left;border:1px solid #e5e7eb;border-width:0 0 1px 0;padding:1rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler.p-icon{width:2rem;height:2rem}.p-treetable .p-treetable-tbody>tr>td p-treetablecheckbox .p-checkbox{margin-right:.5rem}.p-treetable .p-treetable-tbody>tr>td p-treetablecheckbox .p-checkbox .p-indeterminate .p-checkbox-icon{color:#4b5563}.p-treetable .p-treetable-tbody>tr:focus-visible{outline:.15rem solid #BFDBFE;outline-offset:-.15rem}.p-treetable .p-treetable-tbody>tr.p-highlight{background:#eff6ff;color:#1d4ed8}.p-treetable .p-treetable-tbody>tr.p-highlight .p-treetable-toggler{color:#1d4ed8}.p-treetable .p-treetable-tbody>tr.p-highlight .p-treetable-toggler:hover{color:#1d4ed8}.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody>tr:not(.p-highlight):hover{background:#f3f4f6;color:#4b5563}.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody>tr:not(.p-highlight):hover .p-treetable-toggler{color:#4b5563}.p-treetable .p-column-resizer-helper{background:#3b82f6}.p-treetable .p-treetable-scrollable-header,.p-treetable .p-treetable-scrollable-footer{background:#f9fafb}.p-treetable .p-treetable-loading-icon{font-size:2rem}.p-treetable .p-treetable-loading-icon.p-icon{width:2rem;height:2rem}.p-treetable.p-treetable-gridlines .p-datatable-header{border-width:1px 1px 0 1px}.p-treetable.p-treetable-gridlines .p-treetable-footer{border-width:0 1px 1px 1px}.p-treetable.p-treetable-gridlines .p-treetable-top{border-width:0 1px 0 1px}.p-treetable.p-treetable-gridlines .p-treetable-bottom{border-width:0 1px 1px 1px}.p-treetable.p-treetable-gridlines .p-treetable-thead>tr>th{border-width:1px}.p-treetable.p-treetable-gridlines .p-treetable-tbody>tr>td{border-width:1px}.p-treetable.p-treetable-gridlines .p-treetable-tfoot>tr>td{border-width:1px}.p-treetable.p-treetable-sm .p-treetable-header{padding:.875rem}.p-treetable.p-treetable-sm .p-treetable-thead>tr>th{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-tbody>tr>td{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-tfoot>tr>td{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-footer{padding:.5rem}.p-treetable.p-treetable-lg .p-treetable-header{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-thead>tr>th{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-tbody>tr>td{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-tfoot>tr>td{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-footer{padding:1.25rem}.p-virtualscroller .p-virtualscroller-header{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:1px 0 1px 0;padding:1rem;font-weight:700}.p-virtualscroller .p-virtualscroller-content{background:#fff;color:#4b5563;border:0 none;padding:0}.p-virtualscroller .p-virtualscroller-footer{background:#f9fafb;color:#374151;border:1px solid #e5e7eb;border-width:0 0 1px 0;padding:1rem;font-weight:700;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.p-accordion .p-accordion-header .p-accordion-header-link{padding:1.25rem;border:1px solid #e5e7eb;color:#6b7280;background:#f9fafb;font-weight:700;border-radius:6px;transition:box-shadow .2s}.p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon{margin-right:.5rem}.p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus-visible{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link{background:#f3f4f6;border-color:#e5e7eb;color:#374151}.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link{background:#f9fafb;border-color:#e5e7eb;color:#374151;border-bottom-right-radius:0;border-bottom-left-radius:0}.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link{border-color:#e5e7eb;background:#f3f4f6;color:#374151}.p-accordion .p-accordion-content{padding:1.25rem;border:1px solid #e5e7eb;background:#fff;color:#4b5563;border-top:0;border-radius:0 0 6px 6px}.p-accordion p-accordiontab .p-accordion-tab{margin-bottom:4px}.p-card{background:#fff;color:#4b5563;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;border-radius:6px}.p-card .p-card-body{padding:1.25rem}.p-card .p-card-title{font-size:1.5rem;font-weight:700;margin-bottom:.5rem}.p-card .p-card-subtitle{font-weight:400;margin-bottom:.5rem;color:#6b7280}.p-card .p-card-content{padding:1.25rem 0}.p-card .p-card-footer{padding:1.25rem 0 0}.p-divider .p-divider-content{background-color:#fff}.p-divider.p-divider-horizontal{margin:1.25rem 0;padding:0 1.25rem}.p-divider.p-divider-horizontal:before{border-top:1px #e5e7eb}.p-divider.p-divider-horizontal .p-divider-content{padding:0 .5rem}.p-divider.p-divider-vertical{margin:0 1.25rem;padding:1.25rem 0}.p-divider.p-divider-vertical:before{border-left:1px #e5e7eb}.p-divider.p-divider-vertical .p-divider-content{padding:.5rem 0}.p-fieldset{border:1px solid #e5e7eb;background:#fff;color:#4b5563;border-radius:6px}.p-fieldset .p-fieldset-legend{padding:1.25rem;border:1px solid #e5e7eb;color:#374151;background:#f9fafb;font-weight:700;border-radius:6px}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend{padding:0;transition:background-color .2s,color .2s,box-shadow .2s}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a{padding:1.25rem;color:#374151;border-radius:6px;transition:box-shadow .2s}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler{margin-right:.5rem}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover{background:#f3f4f6;border-color:#e5e7eb;color:#374151}.p-fieldset .p-fieldset-content{padding:1.25rem}.p-panel .p-panel-header{border:1px solid #e5e7eb;padding:1.25rem;background:#f9fafb;color:#374151;border-top-right-radius:6px;border-top-left-radius:6px}.p-panel .p-panel-header .p-panel-title{font-weight:700}.p-panel .p-panel-header .p-panel-header-icon{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-panel .p-panel-header .p-panel-header-icon:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-panel .p-panel-header .p-panel-header-icon:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-panel.p-panel-toggleable .p-panel-header{padding:.75rem 1.25rem}.p-panel .p-panel-content{padding:1.25rem;border:1px solid #e5e7eb;background:#fff;color:#4b5563;border-top:0 none}.p-panel .p-panel-content:last-child{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-panel .p-panel-footer{padding:.75rem 1.25rem;border:1px solid #e5e7eb;background:#fff;color:#4b5563;border-bottom-right-radius:6px;border-bottom-left-radius:6px;border-top:0 none}.p-panel .p-panel-icons-end{order:2;margin-left:auto}.p-panel .p-panel-icons-start{order:0;margin-right:.5rem}.p-panel .p-panel-icons-center{order:2;width:100%;text-align:center}.p-scrollpanel .p-scrollpanel-bar{background:#f9fafb;border:0 none;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-scrollpanel .p-scrollpanel-bar:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-splitter{border:1px solid #e5e7eb;background:#fff;border-radius:6px;color:#4b5563}.p-splitter .p-splitter-gutter{transition:background-color .2s,color .2s,box-shadow .2s;background:#f9fafb}.p-splitter .p-splitter-gutter .p-splitter-gutter-handle{background:#e5e7eb}.p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-splitter .p-splitter-gutter-resizing{background:#e5e7eb}.p-tabview .p-tabview-nav-content{scroll-padding-inline:3rem}.p-tabview .p-tabview-nav{background:#fff;border:1px solid #e5e7eb;border-width:0 0 2px 0}.p-tabview .p-tabview-nav li{margin-right:0}.p-tabview .p-tabview-nav li .p-tabview-nav-link{border:solid #e5e7eb;border-width:0 0 2px 0;border-color:transparent transparent #e5e7eb transparent;background:#fff;color:#6b7280;padding:1.25rem;font-weight:700;border-top-right-radius:6px;border-top-left-radius:6px;transition:box-shadow .2s;margin:0 0 -2px}.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus-visible{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:#fff;border-color:#9ca3af;color:#6b7280}.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:#fff;border-color:#3b82f6;color:#3b82f6}.p-tabview .p-tabview-left-icon{margin-right:.5rem}.p-tabview .p-tabview-right-icon,.p-tabview .p-tabview-close{margin-left:.5rem}.p-tabview .p-tabview-nav-btn.p-link{background:#fff;color:#3b82f6;width:3rem;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:0}.p-tabview .p-tabview-nav-btn.p-link:focus-visible{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-tabview .p-tabview-panels{background:#fff;padding:1.25rem;border:0 none;color:#4b5563;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-toolbar{background:#f9fafb;border:1px solid #e5e7eb;padding:1.25rem;border-radius:6px;gap:.5rem}.p-toolbar .p-toolbar-separator{margin:0 .5rem}.p-confirm-popup{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 1px 3px #0000004d}.p-confirm-popup .p-confirm-popup-content{padding:1.25rem}.p-confirm-popup .p-confirm-popup-footer{text-align:right;padding:.75rem 1.25rem}.p-confirm-popup .p-confirm-popup-footer button{margin:0 .5rem 0 0;width:auto}.p-confirm-popup .p-confirm-popup-footer button:last-child{margin:0}.p-confirm-popup:after{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-confirm-popup:before{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-confirm-popup.p-confirm-popup-flipped:after{border-top-color:#fff}.p-confirm-popup.p-confirm-popup-flipped:before{border-top-color:#fff}.p-confirm-popup .p-confirm-popup-icon{font-size:1.5rem}.p-confirm-popup .p-confirm-popup-icon.p-icon{width:1.5rem;height:1.5rem}.p-confirm-popup .p-confirm-popup-message{margin-left:1rem}.p-dialog{border-radius:6px;box-shadow:0 1px 3px #0000004d;border:0 none}.p-dialog .p-dialog-header{border-bottom:0 none;background:#fff;color:#374151;padding:1.5rem;border-top-right-radius:6px;border-top-left-radius:6px}.p-dialog .p-dialog-header .p-dialog-title{font-weight:700;font-size:1.25rem}.p-dialog .p-dialog-header .p-dialog-header-icon{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-dialog .p-dialog-header .p-dialog-header-icon:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-dialog .p-dialog-header .p-dialog-header-icon:last-child{margin-right:0}.p-dialog .p-dialog-content{background:#fff;color:#4b5563;padding:0 1.5rem 2rem}.p-dialog .p-dialog-content:last-of-type{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-dialog .p-dialog-footer{border-top:0 none;background:#fff;color:#4b5563;padding:0 1.5rem 1.5rem;text-align:right;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-dialog .p-dialog-footer button{margin:0 .5rem 0 0;width:auto}.p-dialog.p-confirm-dialog .p-confirm-dialog-icon{font-size:2rem}.p-dialog.p-confirm-dialog .p-confirm-dialog-icon.p-icon{width:2rem;height:2rem}.p-dialog.p-confirm-dialog .p-confirm-dialog-message{margin-left:1rem}.p-overlaypanel{background:#fff;color:#4b5563;border:0 none;border-radius:6px;box-shadow:0 1px 3px #0000004d}.p-overlaypanel .p-overlaypanel-content{padding:1.25rem}.p-overlaypanel .p-overlaypanel-close{background:#3b82f6;color:#fff;width:2rem;height:2rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%;position:absolute;top:-1rem;right:-1rem}.p-overlaypanel .p-overlaypanel-close:enabled:hover{background:#2563eb;color:#fff}.p-overlaypanel:after{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-overlaypanel:before{border:solid transparent;border-color:#fff0;border-bottom-color:#f2f2f2}.p-overlaypanel.p-overlaypanel-flipped:after{border-top-color:#fff}.p-overlaypanel.p-overlaypanel-flipped:before{border-top-color:#fff}.p-sidebar{background:#fff;color:#4b5563;border:0 none;box-shadow:0 1px 3px #0000004d}.p-sidebar .p-sidebar-header{padding:1.25rem}.p-sidebar .p-sidebar-header .p-sidebar-close,.p-sidebar .p-sidebar-header .p-sidebar-icon{width:2rem;height:2rem;color:#6b7280;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover,.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover{color:#374151;border-color:transparent;background:#f3f4f6}.p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible,.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-sidebar .p-sidebar-header+.p-sidebar-content{padding-top:0}.p-sidebar .p-sidebar-content,.p-sidebar .p-sidebar-footer{padding:1.25rem}.p-tooltip .p-tooltip-text{background:#4b5563;color:#fff;padding:.75rem;box-shadow:0 2px 12px #0000001a;border-radius:6px}.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#4b5563}.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#4b5563}.p-tooltip.p-tooltip-top .p-tooltip-arrow{border-top-color:#4b5563}.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#4b5563}.p-fileupload .p-fileupload-buttonbar{background:#f9fafb;padding:1.25rem;border:1px solid #e5e7eb;color:#374151;border-bottom:0 none;border-top-right-radius:6px;border-top-left-radius:6px}.p-fileupload .p-fileupload-buttonbar .p-button{margin-right:.5rem}.p-fileupload .p-fileupload-buttonbar .p-button.p-fileupload-choose.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-fileupload .p-fileupload-content{background:#fff;padding:2rem 1rem;border:1px solid #e5e7eb;color:#4b5563;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.p-fileupload .p-fileupload-content.p-fileupload-highlight{border-color:1px dashed #3B82F6;border-style:dashed;background-color:#eff6ff}.p-fileupload .p-progressbar{height:.25rem}.p-fileupload .p-fileupload-row>div{padding:1rem}.p-fileupload.p-fileupload-advanced .p-message{margin-top:0}.p-fileupload-choose:not(.p-disabled):hover{background:#2563eb;color:#fff;border-color:#2563eb}.p-fileupload-choose:not(.p-disabled):active{background:#1d4ed8;color:#fff;border-color:#1d4ed8}.p-breadcrumb{background:#fff;border:1px solid #e5e7eb;border-radius:6px;padding:1rem}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link{transition:box-shadow .2s;border-radius:6px}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon{color:#6b7280}.p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator{margin:0 .5rem;color:#4b5563}.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text{color:#4b5563}.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon{color:#6b7280}.p-contextmenu{padding:.5rem 0;background:#fff;color:#4b5563;border:0 none;box-shadow:0 2px 12px #0000001a;border-radius:6px;width:12.5rem}.p-contextmenu .p-contextmenu-root-list{outline:0 none}.p-contextmenu .p-submenu-list{padding:.5rem 0;background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a;border-radius:6px}.p-contextmenu .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-contextmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-contextmenu .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-contextmenu .p-submenu-icon{font-size:.875rem}.p-contextmenu .p-submenu-icon.p-icon{width:.875rem;height:.875rem}.p-dock .p-dock-list-container{background:#ffffff1a;border:1px solid rgba(255,255,255,.2);padding:.5rem;border-radius:.5rem}.p-dock .p-dock-list-container .p-dock-list{outline:0 none}.p-dock .p-dock-item{padding:.5rem;border-radius:6px}.p-dock .p-dock-item.p-focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfdbfe}.p-dock .p-dock-link{width:4rem;height:4rem}.p-dock.p-dock-top .p-dock-item-second-prev,.p-dock.p-dock-top .p-dock-item-second-next,.p-dock.p-dock-bottom .p-dock-item-second-prev,.p-dock.p-dock-bottom .p-dock-item-second-next{margin:0 .9rem}.p-dock.p-dock-top .p-dock-item-prev,.p-dock.p-dock-top .p-dock-item-next,.p-dock.p-dock-bottom .p-dock-item-prev,.p-dock.p-dock-bottom .p-dock-item-next{margin:0 1.3rem}.p-dock.p-dock-top .p-dock-item-current,.p-dock.p-dock-bottom .p-dock-item-current{margin:0 1.5rem}.p-dock.p-dock-left .p-dock-item-second-prev,.p-dock.p-dock-left .p-dock-item-second-next,.p-dock.p-dock-right .p-dock-item-second-prev,.p-dock.p-dock-right .p-dock-item-second-next{margin:.9rem 0}.p-dock.p-dock-left .p-dock-item-prev,.p-dock.p-dock-left .p-dock-item-next,.p-dock.p-dock-right .p-dock-item-prev,.p-dock.p-dock-right .p-dock-item-next{margin:1.3rem 0}.p-dock.p-dock-left .p-dock-item-current,.p-dock.p-dock-right .p-dock-item-current{margin:1.5rem 0}@media screen and (max-width: 960px){.p-dock.p-dock-top .p-dock-list-container,.p-dock.p-dock-bottom .p-dock-list-container{overflow-x:auto;width:100%}.p-dock.p-dock-top .p-dock-list-container .p-dock-list,.p-dock.p-dock-bottom .p-dock-list-container .p-dock-list{margin:0 auto}.p-dock.p-dock-left .p-dock-list-container,.p-dock.p-dock-right .p-dock-list-container{overflow-y:auto;height:100%}.p-dock.p-dock-left .p-dock-list-container .p-dock-list,.p-dock.p-dock-right .p-dock-list-container .p-dock-list{margin:auto 0}.p-dock .p-dock-list .p-dock-item{transform:none;margin:0}}.p-megamenu{padding:.5rem;background:#f9fafb;color:#4b5563;border:1px solid #e5e7eb;border-radius:6px}.p-megamenu .p-megamenu-root-list{outline:0 none}.p-megamenu .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-megamenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-megamenu .p-megamenu-panel{background:#fff;color:#4b5563;border:0 none;box-shadow:0 2px 12px #0000001a}.p-megamenu .p-submenu-header{margin:0;padding:.75rem 1.25rem;color:#374151;background:#fff;font-weight:700;border-top-right-radius:6px;border-top-left-radius:6px}.p-megamenu .p-submenu-list{padding:.5rem 0;width:12.5rem}.p-megamenu .p-submenu-list .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-megamenu.p-megamenu-vertical{width:12.5rem;padding:.5rem 0}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:6px}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280;margin-left:.5rem}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-menu{padding:.5rem 0;background:#fff;color:#4b5563;border:1px solid #e5e7eb;border-radius:6px;width:12.5rem}.p-menu .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-menu .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-menu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-menu.p-menu-overlay{background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a}.p-menu .p-submenu-header{margin:0;padding:.75rem 1.25rem;color:#374151;background:#fff;font-weight:700;border-top-right-radius:0;border-top-left-radius:0}.p-menu .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-menu .p-menuitem-badge{background:#3b82f6;color:#fff;font-size:.75rem;font-weight:700;min-width:1.5rem;height:1.5rem;line-height:1.5rem;border-radius:6px;margin-left:.5rem;padding-left:.5rem;padding-right:.5rem}.p-menubar{padding:.5rem;background:#f9fafb;color:#4b5563;border:1px solid #e5e7eb;border-radius:6px}.p-menubar .p-menubar-root-list{outline:0 none}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:6px}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280;margin-left:.5rem}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-menubar .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-menubar .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-menubar .p-submenu-list{padding:.5rem 0;background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a;width:12.5rem}.p-menubar .p-submenu-list .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-menubar .p-submenu-list .p-submenu-icon{font-size:.875rem}@media screen and (max-width: 960px){.p-menubar{position:relative}.p-menubar .p-menubar-button{display:flex;width:2rem;height:2rem;color:#6b7280;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-menubar .p-menubar-button:hover{color:#6b7280;background:#f3f4f6}.p-menubar .p-menubar-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-menubar .p-menubar-root-list{position:absolute;display:none;padding:.5rem 0;background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a;width:100%}.p-menubar .p-menubar-root-list .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-menubar .p-menubar-root-list .p-submenu-icon{font-size:.875rem}.p-menubar .p-menubar-root-list .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon{margin-left:auto;transition:transform .2s}.p-menubar .p-menubar-root-list .p-menuitem.p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon{transform:rotate(-180deg)}.p-menubar .p-menubar-root-list .p-submenu-list{width:100%;position:static;box-shadow:none;border:0 none}.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon{transition:transform .2s;transform:rotate(90deg)}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon{transform:rotate(-90deg)}.p-menubar .p-menubar-root-list .p-menuitem{width:100%;position:static}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:2.25rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:3.75rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:5.25rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:6.75rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:8.25rem}.p-menubar.p-menubar-mobile-active .p-menubar-root-list{display:flex;flex-direction:column;top:100%;left:0;z-index:1}}.p-panelmenu .p-panelmenu-header{outline:0 none}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content{border:1px solid #e5e7eb;color:#6b7280;background:#f9fafb;border-radius:6px;transition:box-shadow .2s}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action{color:#6b7280;padding:1.25rem;font-weight:700}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-submenu-icon,.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon{margin-right:.5rem}.p-panelmenu .p-panelmenu-header:not(.p-disabled):focus-visible .p-panelmenu-header-content{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content{background:#f3f4f6;border-color:#e5e7eb;color:#374151}.p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight .p-panelmenu-header-content{background:#f9fafb;border-color:#e5e7eb;color:#374151;border-bottom-right-radius:0;border-bottom-left-radius:0;margin-bottom:0}.p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content{border-color:#e5e7eb;background:#f3f4f6;color:#374151}.p-panelmenu .p-panelmenu-content{padding:.5rem 0;border:1px solid #e5e7eb;background:#fff;color:#4b5563;border-top:0;border-radius:0 0 6px 6px}.p-panelmenu .p-panelmenu-content .p-panelmenu-root-list{outline:0 none}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon{margin-right:.5rem}.p-panelmenu .p-panelmenu-content .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list){padding:0 0 0 1rem}.p-panelmenu .p-panelmenu-panel{margin-bottom:4px}.p-slidemenu{padding:.5rem 0;background:#fff;color:#4b5563;border:1px solid #e5e7eb;border-radius:6px;width:12.5rem}.p-slidemenu .p-slidemenu-root-list,.p-slidemenu .p-submenu-list{outline:0 none}.p-slidemenu .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-slidemenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-slidemenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-slidemenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-slidemenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-slidemenu .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-slidemenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-slidemenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-slidemenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-slidemenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-slidemenu.p-slidemenu-overlay{background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a}.p-slidemenu .p-slidemenu-list{padding:.5rem 0;background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a}.p-slidemenu .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-slidemenu .p-slidemenu-icon{font-size:.875rem}.p-slidemenu .p-icon{width:.875rem;height:.875rem}.p-slidemenu .p-slidemenu-backward{padding:.75rem 1.25rem;color:#4b5563}.p-slidemenu .p-slidemenu-backward:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-slidemenu .p-menuitem-badge{background:#3b82f6;color:#fff;font-size:.75rem;font-weight:700;min-width:1.5rem;height:1.5rem;line-height:1.5rem;border-radius:6px;margin-left:.5rem;padding-left:.5rem;padding-right:.5rem}.p-steps .p-steps-item .p-menuitem-link{background:transparent;transition:box-shadow .2s;border-radius:6px;background:#fff}.p-steps .p-steps-item .p-menuitem-link .p-steps-number{color:#4b5563;border:1px solid #f3f4f6;background:#fff;min-width:2rem;height:2rem;line-height:2rem;font-size:1.143rem;z-index:1;border-radius:50%}.p-steps .p-steps-item .p-menuitem-link .p-steps-title{margin-top:.5rem;color:#6b7280}.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-steps .p-steps-item.p-highlight .p-steps-number{background:#eff6ff;color:#1d4ed8}.p-steps .p-steps-item.p-highlight .p-steps-title{font-weight:700;color:#4b5563}.p-steps .p-steps-item:before{content:" ";border-top:1px solid #e5e7eb;width:100%;top:50%;left:0;display:block;position:absolute;margin-top:-1rem}.p-tabmenu .p-tabmenu-nav{background:#fff;border:1px solid #e5e7eb;border-width:0 0 2px 0}.p-tabmenu .p-tabmenu-nav .p-menuitem-badge{background:#3b82f6;color:#fff;font-size:.75rem;font-weight:700;min-width:1.5rem;height:1.5rem;line-height:1.5rem;border-radius:6px;margin-left:.5rem;padding-left:.5rem;padding-right:.5rem}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem{margin-right:0}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link{border:solid #e5e7eb;border-width:0 0 2px 0;border-color:transparent transparent #e5e7eb transparent;background:#fff;color:#6b7280;padding:1.25rem;font-weight:700;border-top-right-radius:6px;border-top-left-radius:6px;transition:box-shadow .2s;margin:0 0 -2px}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon{margin-right:.5rem}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus-visible{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link{background:#fff;border-color:#9ca3af;color:#6b7280}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link{background:#fff;border-color:#3b82f6;color:#3b82f6}.p-tabmenu .p-tabmenu-left-icon{margin-right:.5rem}.p-tabmenu .p-tabmenu-right-icon{margin-left:.5rem}.p-tabmenu .p-tabmenu-nav-btn.p-link{background:#fff;color:#3b82f6;width:3rem;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:0}.p-tabmenu .p-tabmenu-nav-btn.p-link:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfdbfe}.p-tieredmenu{padding:.5rem 0;background:#fff;color:#4b5563;border:1px solid #e5e7eb;border-radius:6px;width:12.5rem}.p-tieredmenu.p-tieredmenu-overlay{background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a}.p-tieredmenu .p-tieredmenu-root-list{outline:0 none}.p-tieredmenu .p-submenu-list{padding:.5rem 0;background:#fff;border:0 none;box-shadow:0 2px 12px #0000001a}.p-tieredmenu .p-menuitem>.p-menuitem-content{color:#4b5563;transition:box-shadow .2s;border-radius:0}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#4b5563;padding:.75rem 1.25rem;-webkit-user-select:none;user-select:none}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6b7280;margin-right:.5rem}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content{color:#1d4ed8;background:#eff6ff}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1d4ed8}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1d4ed8}.p-tieredmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#3b82f63d}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#4b5563;background:#e5e7eb}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#4b5563}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#4b5563;background:#f3f4f6}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#4b5563}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6b7280}.p-tieredmenu .p-menuitem-separator{border-top:1px solid #e5e7eb;margin:.25rem 0}.p-tieredmenu .p-submenu-icon{font-size:.875rem}.p-tieredmenu .p-submenu-icon.p-icon{width:.875rem;height:.875rem}.p-inline-message{padding:.75rem;margin:0;border-radius:6px}.p-inline-message.p-inline-message-info{background:#dbeafeb3;border:solid #3b82f6;border-width:0px;color:#3b82f6}.p-inline-message.p-inline-message-info .p-inline-message-icon{color:#3b82f6}.p-inline-message.p-inline-message-success{background:#e4f8f0b3;border:solid #1ea97c;border-width:0px;color:#1ea97c}.p-inline-message.p-inline-message-success .p-inline-message-icon{color:#1ea97c}.p-inline-message.p-inline-message-warn{background:#fff2e2b3;border:solid #cc8925;border-width:0px;color:#cc8925}.p-inline-message.p-inline-message-warn .p-inline-message-icon{color:#cc8925}.p-inline-message.p-inline-message-error{background:#ffe7e6b3;border:solid #ff5757;border-width:0px;color:#ff5757}.p-inline-message.p-inline-message-error .p-inline-message-icon{color:#ff5757}.p-inline-message .p-inline-message-icon{font-size:1rem;margin-right:.5rem}.p-inline-message .p-icon{width:1rem;height:1rem}.p-inline-message .p-inline-message-text{font-size:1rem}.p-inline-message.p-inline-message-icon-only .p-inline-message-icon{margin-right:0}.p-message{margin:1rem 0;border-radius:6px}.p-message .p-message-wrapper{padding:1.25rem 1.75rem}.p-message .p-message-close{width:2rem;height:2rem;border-radius:50%;background:transparent;transition:background-color .2s,color .2s,box-shadow .2s}.p-message .p-message-close:hover{background:#ffffff80}.p-message .p-message-close:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-message.p-message-info{background:#dbeafeb3;border:solid #3b82f6;border-width:0 0 0 6px;color:#3b82f6}.p-message.p-message-info .p-message-icon,.p-message.p-message-info .p-message-close{color:#3b82f6}.p-message.p-message-success{background:#e4f8f0b3;border:solid #1ea97c;border-width:0 0 0 6px;color:#1ea97c}.p-message.p-message-success .p-message-icon,.p-message.p-message-success .p-message-close{color:#1ea97c}.p-message.p-message-warn{background:#fff2e2b3;border:solid #cc8925;border-width:0 0 0 6px;color:#cc8925}.p-message.p-message-warn .p-message-icon,.p-message.p-message-warn .p-message-close{color:#cc8925}.p-message.p-message-error{background:#ffe7e6b3;border:solid #ff5757;border-width:0 0 0 6px;color:#ff5757}.p-message.p-message-error .p-message-icon,.p-message.p-message-error .p-message-close{color:#ff5757}.p-message .p-message-text{font-size:1rem;font-weight:500}.p-message .p-message-icon{font-size:1.5rem;margin-right:.5rem}.p-message .p-icon{width:1.5rem;height:1.5rem}.p-message .p-message-summary{font-weight:700}.p-message .p-message-detail{margin-left:.5rem}.p-toast{opacity:1}.p-toast .p-toast-message{margin:0 0 1rem;box-shadow:0 2px 12px #0000001a;border-radius:6px}.p-toast .p-toast-message .p-toast-message-content{padding:1rem;border-width:0 0 0 6px}.p-toast .p-toast-message .p-toast-message-content .p-toast-message-text{margin:0 0 0 1rem}.p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon{font-size:2rem}.p-toast .p-toast-message .p-toast-message-content .p-icon:not(.p-toast-icon-close-icon){width:2rem;height:2rem}.p-toast .p-toast-message .p-toast-message-content .p-toast-summary{font-weight:700}.p-toast .p-toast-message .p-toast-message-content .p-toast-detail{margin:.5rem 0 0}.p-toast .p-toast-message .p-toast-icon-close{width:2rem;height:2rem;border-radius:50%;background:transparent;transition:background-color .2s,color .2s,box-shadow .2s}.p-toast .p-toast-message .p-toast-icon-close:hover{background:#ffffff80}.p-toast .p-toast-message .p-toast-icon-close:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-toast .p-toast-message.p-toast-message-info{background:#dbeafeb3;border:solid #3b82f6;border-width:0 0 0 6px;color:#3b82f6}.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close{color:#3b82f6}.p-toast .p-toast-message.p-toast-message-success{background:#e4f8f0b3;border:solid #1ea97c;border-width:0 0 0 6px;color:#1ea97c}.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close{color:#1ea97c}.p-toast .p-toast-message.p-toast-message-warn{background:#fff2e2b3;border:solid #cc8925;border-width:0 0 0 6px;color:#cc8925}.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close{color:#cc8925}.p-toast .p-toast-message.p-toast-message-error{background:#ffe7e6b3;border:solid #ff5757;border-width:0 0 0 6px;color:#ff5757}.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close{color:#ff5757}.p-galleria .p-galleria-close{margin:.5rem;background:transparent;color:#f9fafb;width:4rem;height:4rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-close .p-galleria-close-icon{font-size:2rem}.p-galleria .p-galleria-close .p-icon-wrapper .p-icon{width:2rem;height:2rem}.p-galleria .p-galleria-close:hover{background:#ffffff1a;color:#f9fafb}.p-galleria .p-galleria-item-nav{background:transparent;color:#f9fafb;width:4rem;height:4rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:6px;margin:0 .5rem}.p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon,.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon{font-size:2rem}.p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon{width:2rem;height:2rem}.p-galleria .p-galleria-item-nav:not(.p-disabled):hover{background:#ffffff1a;color:#f9fafb}.p-galleria .p-galleria-caption{background:#00000080;color:#f9fafb;padding:1rem}.p-galleria .p-galleria-indicators{padding:1rem}.p-galleria .p-galleria-indicators .p-galleria-indicator button{background-color:#d1d5db;width:1rem;height:1rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover{background:#9ca3af}.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button{background:#eff6ff;color:#1d4ed8}.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator,.p-galleria.p-galleria-indicators-top .p-galleria-indicator{margin-right:.5rem}.p-galleria.p-galleria-indicators-left .p-galleria-indicator,.p-galleria.p-galleria-indicators-right .p-galleria-indicator{margin-bottom:.5rem}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators{background:#00000080}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button{background:#fff6}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover{background:#fff9}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button{background:#eff6ff;color:#1d4ed8}.p-galleria .p-galleria-thumbnail-container{background:#000000e6;padding:1rem .25rem}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev,.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next{margin:.5rem;background-color:transparent;color:#f9fafb;width:2rem;height:2rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover,.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover{background:#ffffff1a;color:#f9fafb}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-galleria-mask,.p-image-mask{--maskbg: rgba(0, 0, 0, .9)}.p-image-preview-indicator{background-color:transparent;color:#f8f9fa;transition:background-color .2s,color .2s,box-shadow .2s}.p-image-preview-container:hover>.p-image-preview-indicator{background-color:#00000080}.p-image-toolbar{padding:1rem}.p-image-action.p-link{color:#f8f9fa;background-color:transparent;width:3rem;height:3rem;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-image-action.p-link:last-child{margin-right:0}.p-image-action.p-link:hover{color:#f8f9fa;background-color:#ffffff1a}.p-image-action.p-link i{font-size:1.5rem}.p-image-action.p-link .p-icon{width:1.5rem;height:1.5rem}.p-avatar{background-color:#e5e7eb;border-radius:6px}.p-avatar.p-avatar-lg{width:3rem;height:3rem;font-size:1.5rem}.p-avatar.p-avatar-lg .p-avatar-icon{font-size:1.5rem}.p-avatar.p-avatar-xl{width:4rem;height:4rem;font-size:2rem}.p-avatar.p-avatar-xl .p-avatar-icon{font-size:2rem}.p-avatar-group .p-avatar{border:2px solid #ffffff}.p-badge{background:#3b82f6;color:#fff;font-size:.75rem;font-weight:700;min-width:1.5rem;height:1.5rem;line-height:1.5rem}.p-badge.p-badge-secondary{background-color:#64748b;color:#fff}.p-badge.p-badge-success{background-color:#22c55e;color:#fff}.p-badge.p-badge-info{background-color:#0ea5e9;color:#fff}.p-badge.p-badge-warning{background-color:#f97316;color:#fff}.p-badge.p-badge-danger{background-color:#ef4444;color:#fff}.p-badge.p-badge-lg{font-size:1.125rem;min-width:2.25rem;height:2.25rem;line-height:2.25rem}.p-badge.p-badge-xl{font-size:1.5rem;min-width:3rem;height:3rem;line-height:3rem}.p-chip{background-color:#e5e7eb;color:#4b5563;border-radius:16px;padding:0 .75rem}.p-chip .p-chip-text{line-height:1.5;margin-top:.375rem;margin-bottom:.375rem}.p-chip .p-chip-icon{margin-right:.5rem}.p-chip .pi-chip-remove-icon{margin-left:.5rem}.p-chip img{width:2.25rem;height:2.25rem;margin-left:-.75rem;margin-right:.5rem}.p-chip .pi-chip-remove-icon{border-radius:6px;transition:background-color .2s,color .2s,box-shadow .2s}.p-chip .pi-chip-remove-icon:focus-visible{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-chip .pi-chip-remove-icon:focus{outline:0 none}.p-inplace .p-inplace-display{padding:.75rem;border-radius:6px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-inplace .p-inplace-display:not(.p-disabled):hover{background:#f3f4f6;color:#4b5563}.p-inplace .p-inplace-display:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfdbfe}.p-progressbar{border:0 none;height:1.5rem;background:#e5e7eb;border-radius:6px}.p-progressbar .p-progressbar-value{border:0 none;margin:0;background:#3b82f6}.p-progressbar .p-progressbar-label{color:#fff;line-height:1.5rem}.p-scrolltop{width:3rem;height:3rem;border-radius:50%;box-shadow:0 2px 12px #0000001a;transition:background-color .2s,color .2s,box-shadow .2s}.p-scrolltop.p-link{background:#000000b3}.p-scrolltop.p-link:hover{background:#000c}.p-scrolltop .p-scrolltop-icon{font-size:1.5rem;color:#f9fafb}.p-scrolltop .p-icon{width:1.5rem;height:1.5rem}.p-skeleton{background-color:#e5e7eb;border-radius:6px}.p-skeleton:after{background:linear-gradient(90deg,#fff0,#fff6,#fff0)}.p-tag{background:#3b82f6;color:#fff;font-size:.75rem;font-weight:700;padding:.25rem .4rem;border-radius:6px}.p-tag.p-tag-success{background-color:#22c55e;color:#fff}.p-tag.p-tag-info{background-color:#0ea5e9;color:#fff}.p-tag.p-tag-warning{background-color:#f97316;color:#fff}.p-tag.p-tag-danger{background-color:#ef4444;color:#fff}.p-tag .p-tag-icon{margin-right:.25rem;font-size:.75rem}.p-tag .p-icon{width:.75rem;height:.75rem}.p-terminal{background:#fff;color:#4b5563;border:1px solid #e5e7eb;padding:1.25rem}.p-terminal .p-terminal-input{font-family:var(--font-family);font-feature-settings:var(--font-feature-settings, normal);font-size:1rem}}@layer primeng{.p-button-label{font-weight:700}.p-selectbutton>.p-button,.p-togglebutton.p-button{transition:background-color .2s,border-color .2s,box-shadow .2s}.p-accordion .p-accordion-header .p-accordion-header-link,.p-tabview .p-tabview-nav li .p-tabview-nav-link,.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link{transition:background-color .2s,border-color .2s,box-shadow .2s}.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button,.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button{background-color:#3b82f6}.p-button:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #9dc1fb,0 1px 2px #000}.p-button.p-button-secondary:enabled:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #b0b9c6,0 1px 2px #000}.p-button.p-button-success:enabled:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #88eaac,0 1px 2px #000}.p-button.p-button-info:enabled:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #83d3f8,0 1px 2px #000}.p-button.p-button-warning:enabled:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #fcb98b,0 1px 2px #000}.p-button.p-button-help:enabled:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #d4aafb,0 1px 2px #000}.p-button.p-button-danger:enabled:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #f7a2a2,0 1px 2px #000}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-top>td{box-shadow:inset 0 2px #3b82f6}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-bottom>td{box-shadow:inset 0 -2px #3b82f6}.p-speeddial-item.p-focus>.p-speeddial-action{box-shadow:0 0 0 2px #fff,0 0 0 4px #9dc1fb,0 1px 2px #000}.p-toast-message{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.p-inline-message-text{font-weight:500}.p-picklist-buttons .p-button,.p-orderlist-controls .p-button{transition:opacity .2s,background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-steps .p-steps-item.p-highlight .p-steps-number{background:#3b82f6;color:#fff}}.p-overflow-hidden{overflow:hidden;padding-right:var(--scrollbar-width)}@layer primeng{.p-component,.p-component *{box-sizing:border-box}.p-hidden{display:none}.p-hidden-space{visibility:hidden}.p-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.p-hidden-accessible input,.p-hidden-accessible select{transform:scale(0)}.p-reset{margin:0;padding:0;border:0;outline:0;text-decoration:none;font-size:100%;list-style:none}.p-disabled,.p-disabled *{cursor:default!important;pointer-events:none}.p-component-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.p-unselectable-text{-webkit-user-select:none;user-select:none}.p-scrollbar-measure{width:100px;height:100px;overflow:scroll;position:absolute;top:-9999px}@keyframes p-fadein{0%{opacity:0}to{opacity:1}}input[type=button],input[type=submit],input[type=reset],input[type=file]::-webkit-file-upload-button,button{border-radius:0}.p-link{text-align:left;background-color:transparent;margin:0;padding:0;border:0;cursor:pointer;-webkit-user-select:none;user-select:none}.p-link:disabled{cursor:default}.p-sr-only{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.p-connected-overlay{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}.p-connected-overlay-visible{opacity:1;transform:scaleY(1)}.p-connected-overlay-hidden{opacity:0;transform:scaleY(1);transition:opacity .1s linear}.p-toggleable-content.ng-animating{overflow:hidden}.p-icon-wrapper{display:inline-flex}.p-icon{display:inline-block}.p-icon-spin{animation:p-icon-spin 2s infinite linear}}@keyframes p-icon-spin{0%{transform:rotate(0)}to{transform:rotate(359deg)}}@layer primeng{.p-badge{display:inline-block;border-radius:10px;text-align:center;padding:0 .5rem}.p-overlay-badge{position:relative}.p-overlay-badge .p-badge{position:absolute;top:0;right:0;transform:translate(50%,-50%);transform-origin:100% 0;margin:0}.p-badge-dot{width:.5rem;min-width:.5rem;height:.5rem;border-radius:50%;padding:0}.p-badge-no-gutter{padding:0;border-radius:50%}}@layer primeng{.p-button{margin:0;display:inline-flex;cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;vertical-align:bottom;text-align:center;overflow:hidden;position:relative}.p-button-label{flex:1 1 auto}.p-button-icon-right{order:1}.p-button:disabled{cursor:default;pointer-events:none}.p-button-icon-only{justify-content:center}.p-button-icon-only:after{content:"p";visibility:hidden;clip:rect(0 0 0 0);width:0}.p-button-vertical{flex-direction:column}.p-button-icon-bottom{order:2}.p-buttonset .p-button{margin:0}.p-buttonset .p-button:not(:last-child){border-right:0 none}.p-buttonset .p-button:not(:first-of-type):not(:last-of-type){border-radius:0}.p-buttonset .p-button:first-of-type{border-top-right-radius:0;border-bottom-right-radius:0}.p-buttonset .p-button:last-of-type{border-top-left-radius:0;border-bottom-left-radius:0}.p-buttonset .p-button:focus{position:relative;z-index:1}p-button[iconpos=right] spinnericon{order:1}}@layer primeng{.p-checkbox{display:inline-flex;cursor:pointer;-webkit-user-select:none;user-select:none;vertical-align:bottom;position:relative}.p-checkbox-disabled{cursor:default!important;pointer-events:none}.p-checkbox-box{display:flex;justify-content:center;align-items:center}p-checkbox{display:inline-flex;vertical-align:bottom;align-items:center}.p-checkbox-label{line-height:1}}.p-colorpicker-panel .p-colorpicker-color{background:transparent url(color.dae87a04d07ca92b.png) no-repeat left top}.p-colorpicker-panel .p-colorpicker-hue{background:transparent url(hue.8b1818380241e6ac.png) no-repeat left top}@layer primeng{.p-inputtext{margin:0}.p-fluid .p-inputtext{width:100%}.p-inputgroup{display:flex;align-items:stretch;width:100%}.p-inputgroup-addon{display:flex;align-items:center;justify-content:center}.p-inputgroup .p-float-label{display:flex;align-items:stretch;width:100%}.p-inputgroup .p-inputtext,.p-fluid .p-inputgroup .p-inputtext,.p-inputgroup .p-inputwrapper,.p-inputgroup .p-inputwrapper>.p-component{flex:1 1 auto;width:1%}.p-float-label{display:block;position:relative}.p-float-label label{position:absolute;pointer-events:none;top:50%;margin-top:-.5rem;transition-property:all;transition-timing-function:ease;line-height:1}.p-float-label textarea~label{top:1rem}.p-float-label input:focus~label,.p-float-label input.p-filled~label,.p-float-label textarea:focus~label,.p-float-label textarea.p-filled~label,.p-float-label .p-inputwrapper-focus~label,.p-float-label .p-inputwrapper-filled~label{top:-.75rem;font-size:12px}.p-float-label .input:-webkit-autofill~label{top:-20px;font-size:12px}.p-float-label .p-placeholder,.p-float-label input::placeholder,.p-float-label .p-inputtext::placeholder{opacity:0;transition-property:all;transition-timing-function:ease}.p-float-label .p-focus .p-placeholder,.p-float-label input:focus::placeholder,.p-float-label .p-inputtext:focus::placeholder{opacity:1;transition-property:all;transition-timing-function:ease}.p-input-icon-left,.p-input-icon-right{position:relative;display:inline-block}.p-input-icon-left>i,.p-input-icon-left>.p-icon-wrapper,.p-input-icon-right>i,.p-input-icon-right>.p-icon-wrapper{position:absolute;top:50%;margin-top:-.5rem}.p-fluid .p-input-icon-left,.p-fluid .p-input-icon-right{display:block;width:100%}}@layer primeng{.p-inputtextarea-resizable{overflow:hidden;resize:none}.p-fluid .p-inputtextarea{width:100%}}@layer primeng{.p-password{position:relative;display:inline-flex}.p-password-panel{position:absolute;top:0;left:0}.p-password .p-password-panel{min-width:100%}.p-password-meter{height:10px}.p-password-strength{height:100%;width:0;transition:width 1s ease-in-out}.p-fluid .p-password{display:flex}.p-password-input::-ms-reveal,.p-password-input::-ms-clear{display:none}.p-password-clear-icon{position:absolute;top:50%;margin-top:-.5rem;cursor:pointer}.p-password .p-icon{cursor:pointer}.p-password-clearable.p-password-mask .p-password-clear-icon{margin-top:unset}.p-password-clearable{position:relative}}@layer primeng{.p-radiobutton{display:inline-flex;cursor:pointer;-webkit-user-select:none;user-select:none;vertical-align:bottom;position:relative}.p-radiobutton-box{display:flex;justify-content:center;align-items:center}.p-radiobutton-icon{backface-visibility:hidden;transform:translateZ(0) scale(.1);border-radius:50%;visibility:hidden}.p-radiobutton-box.p-highlight .p-radiobutton-icon{transform:translateZ(0) scale(1);visibility:visible}p-radiobutton{display:inline-flex;vertical-align:bottom;align-items:center}.p-radiobutton-label{line-height:1}}@layer primeng{.p-ripple{overflow:hidden;position:relative}.p-ink{display:block;position:absolute;background:#ffffff80;border-radius:100%;transform:scale(0)}.p-ink-active{animation:ripple .4s linear}.p-ripple-disabled .p-ink{display:none!important}}@keyframes ripple{to{opacity:0;transform:scale(2.5)}}@layer primeng{.p-tooltip{position:absolute;display:none;padding:.25em .5rem;max-width:12.5rem;pointer-events:none}.p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-left{padding:0 .25rem}.p-tooltip.p-tooltip-top,.p-tooltip.p-tooltip-bottom{padding:.25em 0}.p-tooltip .p-tooltip-text{white-space:pre-line;word-break:break-word}.p-tooltip-arrow{scale:2;position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.p-tooltip-right .p-tooltip-arrow{top:50%;left:0;margin-top:-.25rem;border-width:.25em .25em .25em 0}.p-tooltip-left .p-tooltip-arrow{top:50%;right:0;margin-top:-.25rem;border-width:.25em 0 .25em .25rem}.p-tooltip.p-tooltip-top{padding:.25em 0}.p-tooltip-top .p-tooltip-arrow{bottom:0;left:50%;margin-left:-.25rem;border-width:.25em .25em 0}.p-tooltip-bottom .p-tooltip-arrow{top:0;left:50%;margin-left:-.25rem;border-width:0 .25em .25rem}} diff --git a/client/src/app/features/auth/login/login.component.ts b/client/src/app/features/auth/login/login.component.ts index 59575ce..12b839b 100644 --- a/client/src/app/features/auth/login/login.component.ts +++ b/client/src/app/features/auth/login/login.component.ts @@ -47,12 +47,13 @@ export class LoginComponent implements OnInit { .login(email.toLowerCase(), password) .subscribe( data => { + if (rememberMe) { localStorage.setItem('savedUserEmail', email); } else { localStorage.removeItem('savedUserEmail'); - } - this.router.navigate(['/']); + } + this.router.navigate(['dashboard']); }, error => { this.notificationService.openSnackBar(error.error.message); diff --git a/client/src/app/features/sales/sales-page/sales-page.component.html b/client/src/app/features/sales/sales-page/sales-page.component.html index 0c5e495..229df29 100644 --- a/client/src/app/features/sales/sales-page/sales-page.component.html +++ b/client/src/app/features/sales/sales-page/sales-page.component.html @@ -75,7 +75,7 @@ format_list_numbered Prepare - play_arrow Follow + play_arrow Follow stop Stop Following Reset to Ready info Details diff --git a/docker-compose.yml b/docker-compose.yml index a94d62e..e92c726 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,23 +2,58 @@ version: '3.1' services: - scrapper: - build: . - restart: always - hostname: auctionagent.saucisse.ninja + db: + image: mongo ports: - - 3000 + - "27017:27017" + volumes: + - ./data:/data/db + networks: + - backend-network + backend: + image: node:20 + working_dir: /backend + volumes: + - ./backend:/backend + ports: + - "3000:3000" + command: ["npm", "run", "start"] + depends_on: + - db + networks: + - backend-network + labels: + - "traefik.enable=true" + - "traefik.http.routers.backend.rule=Host(`jucundus.saucisse.ninja`) && PathPrefix(`/backend`)" + - "traefik.http.routers.backend.entrypoints=websecure" + - "traefik.http.routers.backend.tls=true" + - "traefik.http.routers.backend.tls.certresolver=myresolver" + - "traefik.http.services.backend.loadbalancer.server.port=3000" + + client: + image: nginx:latest + restart: always + hostname: jucundus.saucisse.ninja + ports: + - "80:80" + volumes: + - ./client/dist/angular-material-template:/usr/share/nginx/html + depends_on: + - backend labels: - "traefik.enable=true" - "traefik.http.middlewares.redirecthttps.redirectscheme.scheme=https" - "traefik.http.middlewares.redirecthttps.redirectscheme.permanent=true" - - "traefik.http.routers.auctionagent-http.rule=Host(`auctionagent.saucisse.ninja`)" - - "traefik.http.routers.auctionagent-http.middlewares=redirecthttps" + - "traefik.http.routers.jucundus-http.rule=Host(`jucundus.saucisse.ninja`)" + - "traefik.http.routers.jucundus-http.middlewares=redirecthttps" - - "traefik.http.routers.auctionagent.rule=Host(`auctionagent.saucisse.ninja`)" - - "traefik.http.routers.auctionagent.tls=true" - - "traefik.http.routers.auctionagent.tls.certresolver=myresolver" - - "traefik.http.routers.auctionagent.tls.domains[0].main=auctionagent.saucisse.ninja" - - "traefik.http.services.scrapper.loadbalancer.server.port=3000" \ No newline at end of file + - "traefik.http.routers.jucundus.rule=Host(`jucundus.saucisse.ninja`)" + - "traefik.http.routers.jucundus.tls=true" + - "traefik.http.routers.jucundus.tls.certresolver=myresolver" + - "traefik.http.routers.jucundus.tls.domains[0].main=jucundus.saucisse.ninja" + - "traefik.http.services.scrapper.loadbalancer.server.port=80" + +networks: + backend-network: \ No newline at end of file