diff --git a/lib/core.go b/lib/core.go index 558a1e3..483ed96 100644 --- a/lib/core.go +++ b/lib/core.go @@ -1,7 +1,6 @@ package lib import ( - "encoding/base64" "errors" "fmt" "image" @@ -36,7 +35,7 @@ type Core struct { pw *playwright.Playwright browser playwright.Browser ShowBrowser bool - Push func(kind string, message string) + Push func(id string, kind string, message string) } // Cookie @@ -132,7 +131,7 @@ func GetToken(code, sign, pushId string) (bool, error) { * @return string 二维码回调查询的code * @return error */ -func (c *Core) GenerateCode() (string, string, error) { +func (c *Core) GenerateCode(pushID string) (string, string, error) { client := utils.GetClient() g := new(gennerateResp) _, err := client.R().SetResult(g).Get("https://login.xuexi.cn/user/qrcode/generate") @@ -150,14 +149,10 @@ func (c *Core) GenerateCode() (string, string, error) { } else { log.Infoln("二维码已生成到目录下的qrcode.png") } - if conf.GetConfig().QrCOde { - data, _ := os.ReadFile("qrcode.png") - c.Push("image", base64.StdEncoding.EncodeToString(data)) - } qrCodeString := qrcodeTerminal.New2(qrcodeTerminal.ConsoleColors.BrightBlack, qrcodeTerminal.ConsoleColors.BrightWhite, qrcodeTerminal.QRCodeRecoveryLevels.Low).Get(codeURL) qrCodeString.Print() - c.Push("flush", "登录链接:\r\n"+conf.GetConfig().Scheme+url.QueryEscape(codeURL)) + c.Push(pushID, "flush", "登录链接:\r\n"+conf.GetConfig().Scheme+url.QueryEscape(codeURL)) return codeURL, g.Result, err } @@ -211,7 +206,7 @@ func (c *Core) CheckQrCode(code, pushID string) (*model.User, bool, error) { if err != nil { return nil, false, err } - c.Push("text", "登录成功,用户名:"+nick) + c.Push(pushID, "text", "登录成功,用户名:"+nick) return user, true, err } } @@ -224,7 +219,7 @@ func (c *Core) CheckQrCode(code, pushID string) (*model.User, bool, error) { * @return error */ func (c *Core) L(retryTimes int, pushID string) (*model.User, error) { - _, codeData, err := c.GenerateCode() + _, codeData, err := c.GenerateCode(pushID) if err != nil { return nil, err } @@ -239,7 +234,7 @@ func (c *Core) L(retryTimes int, pushID string) (*model.User, error) { } // 等待几分钟后重新执行 time.Sleep(time.Duration(conf.GetConfig().Retry.Intervals) * time.Minute) - c.Push("text", fmt.Sprintf("登录超时,将进行第%d重新次登录", retryTimes)) + c.Push(pushID, "text", fmt.Sprintf("登录超时,将进行第%d重新次登录", retryTimes)) return c.L(retryTimes-1, pushID) } diff --git a/lib/respond.go b/lib/respond.go index 47f4d66..18ff209 100644 --- a/lib/respond.go +++ b/lib/respond.go @@ -43,7 +43,7 @@ func (c *Core) RespondDaily(user *model.User, model string) { err := recover() if err != nil { log.Errorln("答题模块异常结束或答题已完成") - c.Push("text", "答题模块异常退出或答题已完成") + c.Push(user.PushId, "text", "答题模块异常退出或答题已完成") log.Errorln(err) } }() @@ -118,7 +118,7 @@ func (c *Core) RespondDaily(user *model.User, model string) { return } - c.Push("text", "已加载每日答题模块") + c.Push(user.PushId, "text", "已加载每日答题模块") } case "weekly": { @@ -149,7 +149,7 @@ func (c *Core) RespondDaily(user *model.User, model string) { log.Errorln("跳转到答题页面错误" + err.Error()) return } - c.Push("text", "已加载每周答题模块") + c.Push(user.PushId, "text", "已加载每周答题模块") } case "special": { @@ -181,7 +181,7 @@ func (c *Core) RespondDaily(user *model.User, model string) { log.Errorln("跳转到答题页面错误" + err.Error()) return } - c.Push("text", "已加载专项答题模块") + c.Push(user.PushId, "text", "已加载专项答题模块") } } time.Sleep(5 * time.Second) @@ -236,7 +236,7 @@ func (c *Core) RespondDaily(user *model.User, model string) { page.Mouse().Up() time.Sleep(10 * time.Second) log.Infoln("可能存在滑块") - c.Push("text", "答题过程出现滑块,正在尝试滑动") + c.Push(user.PushId, "text", "答题过程出现滑块,正在尝试滑动") en, err = handle.IsVisible() if err != nil { return diff --git a/lib/study.go b/lib/study.go index a6627ed..8edf8f8 100644 --- a/lib/study.go +++ b/lib/study.go @@ -162,7 +162,7 @@ func (c *Core) LearnArticle(user *model.User) { log.Errorln("页面跳转失败") } log.Infoln("正在学习文章:" + links[n].Title) - c.Push("text", "正在学习文章:"+links[n].Title) + c.Push(user.PushId, "text", "正在学习文章:"+links[n].Title) log.Infoln("文章发布时间:" + links[n].PublishTime) log.Infoln("文章学习链接:" + links[n].Url) learnTime := 60 + rand.Intn(15) + 3 @@ -269,7 +269,7 @@ func (c *Core) LearnVideo(user *model.User) { log.Errorln("页面跳转失败") } log.Infoln("正在观看视频:" + links[n].Title) - c.Push("text", "正在观看视频:"+links[n].Title) + c.Push(user.PushId, "text", "正在观看视频:"+links[n].Title) log.Infoln("视频发布时间:" + links[n].PublishTime) log.Infoln("视频学习链接:" + links[n].Url) learnTime := 60 + rand.Intn(10) + 5 diff --git a/main.go b/main.go index 0ab8a8b..fd131b7 100644 --- a/main.go +++ b/main.go @@ -92,8 +92,6 @@ func main() { core.Quit() return } - getPush := push.GetPush(config) - getPush("flush", "学习强国助手已上线") go update.CheckUpdate(VERSION) @@ -112,7 +110,7 @@ func main() { } if config.Wechat.Enable { log.Infoln(fmt.Sprintf("已开启wechat公众号配置,监听地址: ==》 %v:%v", config.Web.Host, config.Web.Port)) - h.HandleFunc("/wx", web.HandleWechat) + h.HandleFunc("/wx", push.HandleWechat) } if config.Web.Enable || config.Wechat.Enable { err := http.ListenAndServe(fmt.Sprintf("%s:%d", config.Web.Host, config.Web.Port), h) @@ -166,24 +164,10 @@ func main() { } if config.TG.Enable { - go func() { - defer func() { - err := recover() - if err != nil { - log.Errorln("TG模式执行出现问题") - log.Errorln(err) - } - }() - log.Infoln("已采用tg交互模式") - telegram := lib.Telegram{ - Token: config.TG.Token, - ChatId: config.TG.ChatID, - Proxy: config.TG.Proxy, - } - telegram.Init() - }() + push.TgInit() } - + getPush := push.GetPush(config) + getPush("", "flush", "学习强国助手已上线") if !config.TG.Enable && config.Cron == "" && !config.Wechat.Enable { log.Infoln("已采用普通学习模式") do("normal") @@ -209,7 +193,7 @@ func do(m string) { log.Infoln("检测到模式", config.Model) getPush := push.GetPush(config) - getPush("flush", "学习强国助手已上线") + getPush("", "flush", "学习强国助手已上线") core := &lib.Core{ShowBrowser: config.ShowBrowser, Push: getPush} defer core.Quit() core.Init() @@ -249,7 +233,7 @@ func do(m string) { err = nil } message := fmt.Sprintf("%v 学习完成,用时%.1f分钟
%v", u.Nick, endTime.Sub(startTime).Minutes(), lib.FormatScoreShort(score)) - core2.Push("flush", message) + core2.Push(u.PushId, "flush", message) } // 用户小于1时自动登录 @@ -270,7 +254,7 @@ func do(m string) { if len(users) < 1 { user, err := core.L(config.Retry.Times, "") if err != nil { - core.Push("msg", "登录超时") + core.Push(user.PushId, "msg", "登录超时") return } study(core, user) @@ -317,5 +301,5 @@ func do(m string) { } study(core, user) - core.Push("flush", "") + core.Push(user.PushId, "flush", "") } diff --git a/model/user.go b/model/user.go index 0f94cdb..bd7ae5d 100644 --- a/model/user.go +++ b/model/user.go @@ -16,7 +16,6 @@ import ( "github.com/tidwall/gjson" "github.com/johlanse/study_xxqg/conf" - "github.com/johlanse/study_xxqg/push" ) func init() { @@ -72,7 +71,7 @@ func Query() ([]*User, error) { users = append(users, u) } else { log.Infoln("用户" + u.Nick + "cookie已失效") - _ = push.PushMessage("", "用户"+u.UID+"已失效,请登录", "login", u.PushId) + //_ = push.PushMessage("", "用户"+u.UID+"已失效,请登录", "login", u.PushId) if conf.GetConfig().Wechat.PushLoginWarn { wechatPush(u.PushId, fmt.Sprintf("用户%v已失效!!", u.Nick)) } @@ -111,7 +110,7 @@ func QueryByPushID(pushID string) ([]*User, error) { users = append(users, u) } else { log.Infoln("用户" + u.Nick + "cookie已失效") - _ = push.PushMessage("", "用户"+u.UID+"已失效,请登录", "login", u.PushId) + //_ = push.PushMessage("", "用户"+u.UID+"已失效,请登录", "login", u.PushId) _ = DeleteUser(u.UID) } } diff --git a/push/ding.go b/push/ding.go index 5a1e737..9190bce 100644 --- a/push/ding.go +++ b/push/ding.go @@ -16,9 +16,9 @@ type Ding struct { Token string `json:"token"` } -func (d *Ding) Send() func(kind string, message string) { +func (d *Ding) Send() func(id string, kind string, message string) { s := TypeSecret{Secret: d.Secret, Webhook: d.Token} - return func(kind string, message string) { + return func(id string, kind string, message string) { if kind == "flush" { err := s.SendMessage(map[string]interface{}{ "msgtype": "markdown", diff --git a/push/push.go b/push/push.go index 0f213fd..da45107 100644 --- a/push/push.go +++ b/push/push.go @@ -1,24 +1,60 @@ package push import ( + "fmt" + log "github.com/sirupsen/logrus" "github.com/johlanse/study_xxqg/conf" ) -func GetPush(config conf.Config) func(kind string, message string) { +func GetPush(config conf.Config) func(id string, kind string, message string) { + var pushs []func(id, kind, message string) if config.Push.Ding.Enable { ding := &Ding{ Secret: config.Push.Ding.Secret, Token: config.Push.Ding.AccessToken, } log.Infoln("已配置钉钉推送") - return ding.Send() - } else if config.Push.PushPlus.Enable { - log.Infoln("已配置pushplus推送") - return (&PushPlus{Token: config.Push.PushPlus.Token}).Init() + pushs = append(pushs, ding.Send()) } - return func(kind string, message string) { - log.Infoln("") + if config.Push.PushPlus.Enable { + log.Infoln("已配置pushplus推送") + pushs = append(pushs, (&PushPlus{Token: config.Push.PushPlus.Token}).Init()) + } + if config.Wechat.Enable { + log.Infoln("已配置wechat推送") + pushs = append(pushs, func(id, kind, message string) { + defer func() { + err := recover() + if err != nil { + log.Errorln("推送微信消息出现错误") + log.Errorln(err) + } + }() + if kind == "flush" { + sendMsg(id, message) + } else { + if log.GetLevel() == log.DebugLevel { + sendMsg(id, message) + } + } + }) + } + if config.TG.Enable { + log.Infoln("一配置tg推送") + pushs = append(pushs, tgPush) + } + pushs = append(pushs, func(id, kind, message string) { + log.Debugln(fmt.Sprintf("消息id: %v,消息类型:%v,消息内容:%v", id, kind, message)) + }) + return multiPush(pushs...) +} + +func multiPush(pushs ...func(id, kind, message string)) func(id, kind, message string) { + return func(id, kind, message string) { + for _, push := range pushs { + push(id, kind, message) + } } } diff --git a/push/pushPlus.go b/push/pushPlus.go index 2058780..abc7092 100644 --- a/push/pushPlus.go +++ b/push/pushPlus.go @@ -11,7 +11,7 @@ type PushPlus struct { Token string } -func (p *PushPlus) Init() func(kind, message string) { +func (p *PushPlus) Init() func(id string, kind, message string) { send := func(data string) { err := gout.POST("http://www.pushplus.plus/send").SetJSON(gout.H{ "token": p.Token, @@ -26,7 +26,7 @@ func (p *PushPlus) Init() func(kind, message string) { } } - return func(kind, message string) { + return func(id string, kind, message string) { switch { case kind == "image": message = fmt.Sprintf("![](%v)", "data:image/png;base64,"+message) diff --git a/lib/tg.go b/push/tg.go similarity index 86% rename from lib/tg.go rename to push/tg.go index 427bfe5..e36bc18 100644 --- a/lib/tg.go +++ b/push/tg.go @@ -1,4 +1,4 @@ -package lib +package push import ( "encoding/base64" @@ -16,14 +16,51 @@ import ( log "github.com/sirupsen/logrus" "github.com/johlanse/study_xxqg/conf" + "github.com/johlanse/study_xxqg/lib" "github.com/johlanse/study_xxqg/model" ) var ( handles sync.Map datas sync.Map + tgPush func(id string, kind string, message string) ) +func TgInit() { + config := conf.GetConfig() + log.Infoln("已采用tg交互模式") + telegram := Telegram{ + Token: config.TG.Token, + ChatId: config.TG.ChatID, + Proxy: config.TG.Proxy, + } + tgPush = func(id string, kind string, message string) { + defer func() { + err := recover() + if err != nil { + log.Errorln("推送tg消息出现错误") + log.Errorln(err) + } + }() + chatId := telegram.ChatId + id1, err := strconv.Atoi(id) + if err == nil { + chatId = int64(id1) + } else { + log.Warningln("转化pushID错误,将发送给默认用户") + } + if kind == "flush" { + telegram.SendMsg(chatId, strings.ReplaceAll(message, "
", "\n")) + } else { + if log.GetLevel() == log.DebugLevel { + telegram.SendMsg(chatId, message) + } + } + } + + telegram.Init() +} + // Telegram // @Description: // @@ -63,6 +100,7 @@ func newPlugin(command string, handle func(bot *Telegram, from int64, args []str * @return func(kind string, message string) */ func (t *Telegram) Init() { + newPlugin("/login", login) newPlugin("/get_users", getAllUser) newPlugin("/study", study) @@ -96,8 +134,14 @@ func (t *Telegram) Init() { } channel := t.bot.GetUpdatesChan(tgbotapi.NewUpdate(1)) - t.SendMsg(0, "你的学习强国小助手上线了!") go func() { + defer func() { + err := recover() + if err != nil { + log.Errorln("处理tg消息时发生异常,请尝试重启程序") + return + } + }() for { update := <-channel if update.Message == nil { @@ -193,11 +237,9 @@ func login(bot *Telegram, from int64, args []string) { log.Errorln(err) } }() - core := Core{ - pw: nil, - browser: nil, + core := lib.Core{ ShowBrowser: config.ShowBrowser, - Push: func(kind string, message string) { + Push: func(id string, kind string, message string) { switch { case kind == "image": bytes, _ := base64.StdEncoding.DecodeString(message) @@ -217,7 +259,7 @@ func login(bot *Telegram, from int64, args []string) { } core.Init() defer core.Quit() - _, err := core.L(config.Retry.Times, "") + _, err := core.L(config.Retry.Times, strconv.Itoa(int(from))) if err != nil { bot.SendMsg(from, err.Error()) return @@ -254,11 +296,9 @@ func studyAll(bot *Telegram, from int64, args []string) { getAllUser(bot, from, args) for _, user := range users { s := func() { - core := Core{ - pw: nil, - browser: nil, + core := lib.Core{ ShowBrowser: config.ShowBrowser, - Push: func(kind string, message string) { + Push: func(id string, kind string, message string) { switch { case kind == "image": bytes, _ := base64.StdEncoding.DecodeString(message) @@ -306,8 +346,8 @@ func studyAll(bot *Telegram, from int64, args []string) { { } } - score, _ := GetUserScore(user.ToCookies()) - bot.SendMsg(from, fmt.Sprintf("%v已学习完成\n%v", user.Nick, PrintScore(score))) + score, _ := lib.GetUserScore(user.ToCookies()) + bot.SendMsg(from, fmt.Sprintf("%v已学习完成\n%v", user.Nick, lib.PrintScore(score))) } s() } @@ -351,11 +391,9 @@ func study(bot *Telegram, from int64, args []string) { return } } - core := Core{ - pw: nil, - browser: nil, + core := lib.Core{ ShowBrowser: config.ShowBrowser, - Push: func(kind string, message string) { + Push: func(id string, kind string, message string) { switch { case kind == "image": bytes, _ := base64.StdEncoding.DecodeString(message) @@ -403,8 +441,8 @@ func study(bot *Telegram, from int64, args []string) { } } - score, _ := GetUserScore(user.ToCookies()) - bot.SendMsg(from, fmt.Sprintf("%v已学习完成\n%v", user.Nick, PrintScore(score))) + score, _ := lib.GetUserScore(user.ToCookies()) + bot.SendMsg(from, fmt.Sprintf("%v已学习完成\n%v", user.Nick, lib.PrintScore(score))) } func getScores(bot *Telegram, from int64, args []string) { @@ -417,12 +455,12 @@ func getScores(bot *Telegram, from int64, args []string) { message := "" for _, user := range users { message += user.Nick + "\n" - score, err := GetUserScore(user.ToCookies()) + score, err := lib.GetUserScore(user.ToCookies()) if err != nil { message += err.Error() + "\n" continue } - message += FormatScore(score) + "\n" + message += lib.FormatScore(score) + "\n" bot.SendMsg(from, message) message = "" } @@ -432,14 +470,14 @@ func quit(bot *Telegram, from int64, args []string) { if len(args) < 1 { datas.Range(func(key, value interface{}) bool { bot.SendMsg(from, "已退出运行实例"+key.(string)) - core := value.(*Core) + core := value.(*lib.Core) core.Quit() return true }) } else { datas.Range(func(key, value interface{}) bool { if key.(string) == args[0] { - core := value.(*Core) + core := value.(*lib.Core) core.Quit() } return true diff --git a/web/wx.go b/push/wx.go similarity index 92% rename from web/wx.go rename to push/wx.go index cfc970f..c5e2cbe 100644 --- a/web/wx.go +++ b/push/wx.go @@ -1,4 +1,4 @@ -package web +package push import ( "encoding/json" @@ -22,11 +22,12 @@ import ( var ( wx *mp.WeiXin lastNonce = "" - datas sync.Map + datas1 sync.Map + wxPush func(id, kind, message string) ) const ( - login = "login" + loginBtn = "loginBtn" StartStudy = "start_study" getUser = "get_user" SCORE = "score" @@ -46,6 +47,11 @@ func RegisterHandler(key string, action WechatHandler) { handlers.Store(key, action) } +func initWx() { + once := sync.Once{} + once.Do(initWechat) +} + func initWechat() { config := conf.GetConfig() if !config.Wechat.Enable { @@ -53,7 +59,7 @@ func initWechat() { } // 注册插件 - RegisterHandler(login, handleLogin) + RegisterHandler(loginBtn, handleLogin) RegisterHandler(StartStudy, handleStartStudy) RegisterHandler(getUser, handleGetUser) RegisterHandler(SCORE, handleScore) @@ -66,7 +72,7 @@ func initWechat() { { Name: "登录", Type: "click", - Key: login, + Key: loginBtn, Url: "", MediaId: "", SubButtons: nil, @@ -170,6 +176,9 @@ func sendMsg(id, message string) { }, } data, _ := json.Marshal(m) + if wx == nil { + initWx() + } _, err := wx.SendTemplateMessage(&mp.TemplateMessage{ ToUser: id, TemplateId: conf.GetConfig().Wechat.NormalTempID, @@ -189,13 +198,13 @@ func sendMsg(id, message string) { */ func HandleWechat(rep http.ResponseWriter, req *http.Request) { if wx == nil { - initWechat() + initWx() } wx.ServeHTTP(rep, req) } func handleLogin(id string) { - core := &lib.Core{Push: func(kind, message string) { + core := &lib.Core{Push: func(id1 string, kind, message string) { if kind == "flush" && strings.HasPrefix(message, "登录链接") { l := strings.ReplaceAll(message, "登录链接:\r\n", "") _, err := wx.SendTemplateMessage(&mp.TemplateMessage{ @@ -228,17 +237,17 @@ func handleStartStudy(id string) { sendMsg(id, "你还没有已登陆的用户,请点击下方登录按钮登录!") return } - core := &lib.Core{ShowBrowser: conf.GetConfig().ShowBrowser, Push: func(kind, msg string) { + core := &lib.Core{ShowBrowser: conf.GetConfig().ShowBrowser, Push: func(id1 string, kind, msg string) { }} core.Init() defer core.Quit() for i, user := range users { - _, ok := datas.Load(user.UID) + _, ok := datas1.Load(user.UID) if ok { log.Warningln("用户" + user.Nick + "已经在学习中了,跳过该用户") continue } else { - datas.Store(user.UID, "") + datas1.Store(user.UID, "") } sendMsg(id, fmt.Sprintf("开始学习第%d个用户,用户名:%v", i+1, user.Nick)) core.LearnArticle(user) @@ -246,7 +255,7 @@ func handleStartStudy(id string) { core.RespondDaily(user, "daily") core.RespondDaily(user, "weekly") core.RespondDaily(user, "special") - datas.Delete(user.UID) + datas1.Delete(user.UID) score, _ := lib.GetUserScore(user.ToCookies()) sendMsg(id, fmt.Sprintf("第%d个用户%v学习完成,学习积分\n%v", i+1, user.Nick, lib.FormatScore(score))) } diff --git a/web/app/.last_build_id b/web/app/.last_build_id deleted file mode 100644 index 25eefd3..0000000 --- a/web/app/.last_build_id +++ /dev/null @@ -1 +0,0 @@ -7d6a45bab4752302d2232f1744841cff \ No newline at end of file diff --git a/web/app/assets/AssetManifest.json b/web/app/assets/AssetManifest.json deleted file mode 100644 index 99b1e6e..0000000 --- a/web/app/assets/AssetManifest.json +++ /dev/null @@ -1 +0,0 @@ -{"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"packages/fluttertoast/assets/toastify.css":["packages/fluttertoast/assets/toastify.css"],"packages/fluttertoast/assets/toastify.js":["packages/fluttertoast/assets/toastify.js"],"static/icons/log.png":["static/icons/log.png"],"static/icons/log_active.png":["static/icons/log_active.png"],"static/icons/login.png":["static/icons/login.png"],"static/icons/login_activepng.png":["static/icons/login_activepng.png"],"static/icons/other.png":["static/icons/other.png"],"static/icons/other_active.png":["static/icons/other_active.png"],"static/icons/user.png":["static/icons/user.png"],"static/icons/user_active.png":["static/icons/user_active.png"]} \ No newline at end of file diff --git a/web/app/assets/FontManifest.json b/web/app/assets/FontManifest.json deleted file mode 100644 index 464ab58..0000000 --- a/web/app/assets/FontManifest.json +++ /dev/null @@ -1 +0,0 @@ -[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/web/app/assets/NOTICES b/web/app/assets/NOTICES deleted file mode 100644 index 79e2620..0000000 --- a/web/app/assets/NOTICES +++ /dev/null @@ -1,18385 +0,0 @@ -StackWalker - -Copyright (c) 2005-2009, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. -Neither the name of Jochen Kalmbach nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -StackWalker - -Copyright (c) 2005-2013, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. -Neither the name of Jochen Kalmbach nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -_fe_analyzer_shared - -Copyright 2019, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -abseil-cpp - -Apache License -Version 2.0, January 2004 -https://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 [yyyy] [name of copyright owner] - -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 - - https://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. --------------------------------------------------------------------------------- -abseil-cpp -accessibility -skia - -Copyright 2020 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -abseil-cpp -angle -boringssl -etc1 -expat -fuchsia-vulkan -khronos -libwebp -pkg -skia -txt -vulkan -vulkan-deps -vulkan-headers -wuffs - -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 [yyyy] [name of copyright owner] - -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. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2009 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2010 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle - -Copyright (c) 2013 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -base - -Copyright 2013 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -base -engine -icu -zlib - -Copyright 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -base -fuchsia_sdk -skia -zlib - -Copyright 2018 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -base -zlib - -Copyright (c) 2011 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -engine -gpu -tonic -txt -url_launcher_web - -Copyright 2013 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -fuchsia_sdk -skia -zlib - -Copyright 2019 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -icu -skia - -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -icu -skia - -Copyright 2016 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -zlib - -Copyright (c) 2012 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -zlib - -Copyright 2017 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -analyzer - -Copyright 2013, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -angle - -Copyright (C) 2009 Apple Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright (C) 2012 Apple Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY APPLE, INC. ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE, INC. OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008 NVIDIA, Corporation - -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 (including the next -paragraph) 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. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008-2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2010 NVIDIA, Corporation - -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 (including the next -paragraph) 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. --------------------------------------------------------------------------------- -angle - -Copyright 2002 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2010 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2011 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2012 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2013 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2014 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2015 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2018 The ANGLE Project Authors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2018 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2019 The ANGLE Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2020 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2020 The ANGLE Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2021 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle -base - -Copyright 2016 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle -base - -Copyright 2017 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle -fuchsia_sdk - -Copyright 2019 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle -fuchsia_sdk -libjxl -skia - -Copyright 2021 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle -fuchsia_sdk -rapidjson - -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. --------------------------------------------------------------------------------- -angle -khronos - -Copyright (c) 2013-2014 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle -khronos - -Copyright (c) 2013-2017 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle -khronos - -Copyright (c) 2013-2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle -xxhash - -Copyright 2019 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -args -logging - -Copyright 2013, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -async -cli_util -collection -mime -typed_data - -Copyright 2015, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -boolean_selector - -Copyright 2016, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -boringssl - -Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] --------------------------------------------------------------------------------- -boringssl - -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2001 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2004 Kungliga Tekniska Högskolan -(Royal Institute of Technology, Stockholm, Sweden). -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2006,2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2008 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2010 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2012 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2013 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2014 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2014, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2015 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2015, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2016, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2017, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2017, the HRSS authors. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2018, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2018, Google Inc. -Copyright (c) 2020, Arm Ltd. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2019, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2020 Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2020, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2021, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2005 Nokia. All rights reserved. - -The portions of the attached software ("Contribution") is developed by -Nokia Corporation and is licensed pursuant to the OpenSSL open source -license. - -The Contribution, originally written by Mika Kousa and Pasi Eronen of -Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites -support (see RFC 4279) to OpenSSL. - -No patent licenses or other rights except those expressly stated in -the OpenSSL open source license shall be deemed granted or received -expressly, by implication, estoppel, or otherwise. - -No assurances are provided by Nokia that the Contribution does not -infringe the patent or other intellectual property rights of any third -party or that the license provides you with all the necessary rights -to make use of the Contribution. - -THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN -ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA -SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY -OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2005, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2006, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2007, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2008 Google Inc. -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2009 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved. -Copyright (c) 2012, Intel Corporation. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. -Copyright (c) 2014, Intel Corporation. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. -Copyright (c) 2015, Intel Inc. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2015, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2016 Brian Smith. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -boringssl - -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). - -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. --------------------------------------------------------------------------------- -boringssl -dart - -OpenSSL License - - ==================================================================== - Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - - 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - - 5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - - THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - ==================================================================== - - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com). - -Original SSLeay License - -* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -* All rights reserved. - -* This package is an SSL implementation written -* by Eric Young (eay@cryptsoft.com). -* The implementation was written so as to conform with Netscapes SSL. - -* This library is free for commercial and non-commercial use as long as -* the following conditions are aheared to. The following conditions -* apply to all code found in this distribution, be it the RC4, RSA, -* lhash, DES, etc., code; not just the SSL code. The SSL documentation -* included with this distribution is covered by the same copyright terms -* except that the holder is Tim Hudson (tjh@cryptsoft.com). - -* Copyright remains Eric Young's, and as such any Copyright notices in -* the code are not to be removed. -* If this package is used in a product, Eric Young should be given attribution -* as the author of the parts of the library used. -* This can be in the form of a textual message at program startup or -* in documentation (online or textual) provided with the package. - -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions -* are met: -* 1. Redistributions of source code must retain the copyright -* notice, this list of conditions and the following disclaimer. -* 2. Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* 3. All advertising materials mentioning features or use of this software -* must display the following acknowledgement: -* "This product includes cryptographic software written by -* Eric Young (eay@cryptsoft.com)" -* The word 'cryptographic' can be left out if the rouines from the library -* being used are not cryptographic related :-). -* 4. If you include any Windows specific code (or a derivative thereof) from -* the apps directory (application code) you must include an acknowledgement: -* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -* SUCH DAMAGE. - -* The licence and distribution terms for any publically available version or -* derivative of this code cannot be changed. i.e. this code cannot simply be -* copied and put under another distribution licence -* [including the GNU Public Licence.] - -ISC license used for completely new code in BoringSSL: - -/* Copyright (c) 2015, Google Inc. - - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - - * 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. - -The code in third_party/fiat carries the MIT license: - -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). - -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. - -Licenses for support code - -Parts of the TLS test suite are under the Go license. This code is not included -in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so -distributing code linked against BoringSSL does not trigger this license: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -build -build_runner -code_builder -web_socket_channel - -Copyright 2016, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -build_config -graphs -io - -Copyright 2017, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -build_daemon -characters -ffi -package_config - -Copyright 2019, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -build_resolvers -build_runner_core -pubspec_parse -test_api - -Copyright 2018, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -built_collection -built_value - -Copyright 2015, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -charcode -stack_trace -string_scanner - -Copyright 2014, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -checked_yaml - -Copyright 2019, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -clock -fake_async -material_color_utilities - - - 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 [yyyy] [name of copyright owner] - - 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. --------------------------------------------------------------------------------- -colorama - -Copyright (c) 2010 Jonathan Hartley -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the copyright holders, nor those of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -convert -crypto -source_gen - -Copyright 2015, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -cupertino_icons - -The MIT License (MIT) - -Copyright (c) 2016 Vladimir Kharlampidi - -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. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2012 Adam Singer (adam@solvr.io) -All Rights Reserved. - -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" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -In addition, the following condition applies: - -All redistributions must retain an intact copy of this copyright notice -and disclaimer. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2014 The Polymer Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright 2009 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file --------------------------------------------------------------------------------- -dart - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart -double-conversion -icu - -Copyright 2006-2008 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart_style -glob -http -http_parser -matcher -path -pool -pub_semver -source_span -watcher - -Copyright 2014, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -date_format - -BSD 3-Clause License - -Copyright (c) 2017, Ravi Teja Gudapati -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dio - -MIT License - -Copyright (c) 2018 wendux - -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. --------------------------------------------------------------------------------- -dio_log - - 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 2019 rich - - 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. - --------------------------------------------------------------------------------- -double-conversion -icu - -Copyright 2010 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -double-conversion -icu - -Copyright 2012 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2004 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Yury Gribov -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2005 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2017 Rhodri James -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2006 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016 Eric Rahm -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2016 Gaurav -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2016 Gustavo Grieco -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Ed Schouten -Copyright (c) 2017-2018 Rhodri James -Copyright (c) 2017 Václav Slavík -Copyright (c) 2017 Viktor Szakats -Copyright (c) 2017 Chanho Park -Copyright (c) 2017 Rolf Eike Beer -Copyright (c) 2017 Hans Wennborg -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Marco Maggi -Copyright (c) 2018 Mariusz Zaborski -Copyright (c) 2019 David Loffredo -Copyright (c) 2019-2020 Ben Wagner -Copyright (c) 2019 Vadim Zeitlin -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2002 Fred L. Drake, Jr. -Copyright (c) 2006 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Don Lewis -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Alexander Bluhm -Copyright (c) 2017 Benbuck Nason -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2019 David Loffredo -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2009 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Joe Orton -Copyright (c) 2020 Kleber Tarcísio -Copyright (c) 2021 Tim Bray -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2004 Fred L. Drake, Jr. -Copyright (c) 2002-2009 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Franek Korta -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2005 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Boris Kolpackov -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2019 David Loffredo -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Karl Waclawek -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017-2019 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 Zhongyuan Zhou -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2018 Sebastian Pipping -Copyright (c) 2018 Marco Maggi -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper -Copyright (c) 2001-2019 Expat maintainers - -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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1999-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2007 Karl Waclawek -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2001 Tim Peters -Copyright (c) 2001-2005 Fred L. Drake, Jr. -Copyright (c) 2006-2017 Karl Waclawek -Copyright (c) 2007-2021 Sebastian Pipping -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2003 Greg Stein -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2018 Yury Gribov -Copyright (c) 2019 David Loffredo -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2017-2021 Sebastian Pipping -Copyright (c) 2017 Franek Korta -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2019 Expat development team -Licensed under the MIT 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. --------------------------------------------------------------------------------- -expat - -Copyright 2021 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -ffx_spd - -Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. -Copyright (c) <2014> - -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. --------------------------------------------------------------------------------- -ffx_spd - -Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. - -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. --------------------------------------------------------------------------------- -file - -Copyright 2017, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fixnum -http_multi_server -shelf -shelf_web_socket - -Copyright 2014, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter - -Copyright 2014 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter_lints -path_provider_linux -path_provider_platform_interface -path_provider_windows -plugin_platform_interface -shared_preferences -shared_preferences_android -shared_preferences_ios -shared_preferences_linux -shared_preferences_macos -shared_preferences_web -shared_preferences_windows -url_launcher -url_launcher_android -url_launcher_ios -url_launcher_linux -url_launcher_macos -url_launcher_platform_interface -url_launcher_windows -xdg_directories - -Copyright 2013 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter_xupdate - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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 2020 xuexiangjys - - 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. --------------------------------------------------------------------------------- -fluttertoast - -MIT License - -Copyright (c) 2020 Karthik Ponnam - -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. - --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 1990, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -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 -OPEN GROUP 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. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2004, 2011 Francesco Zappa Nardelli - -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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2014 - Francesco Zappa Nardelli - -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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2015 - Francesco Zappa Nardelli - -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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000, 2001, 2004 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000-2001, 2002 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000-2001, 2003 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000-2010, 2012-2014 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2001, 2002, 2012 Francesco Zappa Nardelli - -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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2003 by -Francesco Zappa Nardelli - -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. --------------------------------------------------------------------------------- -freetype2 - -The FreeType Project LICENSE - - 2006-Jan-27 - -Copyright 1996-2002, 2006 by -David Turner, Robert Wilhelm, and Werner Lemberg - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don't promise that this software works. However, we will be - interested in any kind of bug reports. (`as is' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. - - Please replace with the value from the FreeType version you - actually use. - -Legal Terms -=========== - -0. Definitions - - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. - - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. - - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. - - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. - -1. No Warranty - - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. - -2. Redistribution - - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: - - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. - - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. - - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. - -3. Advertising - - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. - - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. - - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. - -4. Contacts - - There are two mailing lists related to FreeType: - - o freetype@nongnu.org - - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. - - o freetype-devel@nongnu.org - - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. - - Our home page can be found at - - https://www.freetype.org - ---- end of FTL.TXT --- --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2003, 2010 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2005, 2010 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2006, 2010, 2011, 2012, 2016 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2011, 2016 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2016 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2017 Jean-loup Gailly - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 1995-2017 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 -zlib - -Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -frontend_server_client - -Copyright 2020, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2014 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2016 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2016 The Fuchsia Authors. All rights reserved. -Copyright (c) 2009 Corey Tabaka - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2017 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2018 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2019 The Fuchsia Authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2020 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2021 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2021 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2022 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -The majority of files in this project use the Apache 2.0 License. -There are a few exceptions and their license can be found in the source. -Any license deviations from Apache 2.0 are "more permissive" licenses. - -=========================================================================================== - - 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 [yyyy] [name of copyright owner] - - 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. --------------------------------------------------------------------------------- -fuchsia_sdk - -musl as a whole is licensed under the following standard MIT license: - -Copyright © 2005-2014 Rich Felker, et al. - -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. - -Authors/contributors include: - -Alex Dowad -Alexander Monakov -Anthony G. Basile -Arvid Picciani -Bobby Bingham -Boris Brezillon -Brent Cook -Chris Spiegel -Clément Vasseur -Daniel Micay -Denys Vlasenko -Emil Renner Berthing -Felix Fietkau -Felix Janda -Gianluca Anzolin -Hauke Mehrtens -Hiltjo Posthuma -Isaac Dunham -Jaydeep Patil -Jens Gustedt -Jeremy Huntwork -Jo-Philipp Wich -Joakim Sindholt -John Spencer -Josiah Worcester -Justin Cormack -Khem Raj -Kylie McClain -Luca Barbato -Luka Perkov -M Farkas-Dyck (Strake) -Mahesh Bodapati -Michael Forney -Natanael Copa -Nicholas J. Kain -orc -Pascal Cuoq -Petr Hosek -Pierre Carrier -Rich Felker -Richard Pennington -Shiz -sin -Solar Designer -Stefan Kristiansson -Szabolcs Nagy -Timo Teräs -Trutz Behn -Valentin Ochs -William Haddon - -Portions of this software are derived from third-party works licensed -under terms compatible with the above MIT license: - -Much of the math library code (third_party/math/* and -third_party/complex/*, and third_party/include/libm.h) is -Copyright © 1993,2004 Sun Microsystems or -Copyright © 2003-2011 David Schultz or -Copyright © 2003-2009 Steven G. Kargl or -Copyright © 2003-2009 Bruce D. Evans or -Copyright © 2008 Stephen L. Moshier -and labelled as such in comments in the individual source files. All -have been licensed under extremely permissive terms. - -The smoothsort implementation (third_party/smoothsort/qsort.c) is -Copyright © 2011 Valentin Ochs and is licensed under an MIT-style -license. - -The x86_64 files in third_party/arch were written by Nicholas J. Kain -and is licensed under the standard MIT terms. - -All other files which have no copyright comments are original works -produced specifically for use as part of this library, written either -by Rich Felker, the main author of the library, or by one or more -contibutors listed above. Details on authorship of individual files -can be found in the git version control history of the project. The -omission of copyright and license comments in each file is in the -interest of source tree size. - -In addition, permission is hereby granted for all public header files -(include/* and arch/*/bits/*) and crt files intended to be linked into -applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit -the copyright notice and permission notice otherwise required by the -license, and to use these files without any requirement of -attribution. These files include substantial contributions from: - -Bobby Bingham -John Spencer -Nicholas J. Kain -Rich Felker -Richard Pennington -Stefan Kristiansson -Szabolcs Nagy - -all of whom have explicitly granted such permission. - -This file previously contained text expressing a belief that most of -the files covered by the above exception were sufficiently trivial not -to be subject to copyright, resulting in confusion over whether it -negated the permissions granted in the license. In the spirit of -permissive licensing, and of not having licensing issues being an -obstacle to adoption, that text has been removed. --------------------------------------------------------------------------------- -get_it - -MIT License - -Copyright (c) 2018 Thomas Burkhart - -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. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2016 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2006-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2016 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2010-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2014 Jonas Ådahl - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016 Google Inc. -Copyright (c) 2006-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2012 Grigori Goronzy - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -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. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (c) 2021 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2006 Behdad Esfahbod -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007 Chris Wilson -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. -Copyright © 2019, Facebook Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2018,2019,2020 Ebrahim Byagowi -Copyright © 2018 Khaled Hosny - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2013 Google, Inc. -Copyright © 2021 Khaled Hosny - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012 Mozilla Foundation. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2013 Mozilla Foundation. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2017 Google, Inc. -Copyright © 2021 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2013 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015 Google, Inc. -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015 Mozilla Foundation. -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015-2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Elie Roux -Copyright © 2018 Google, Inc. -Copyright © 2018-2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Khaled Hosny -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Igalia S.L. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017,2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018-2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019-2020 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. -For parts of HarfBuzz that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. - -Copyright © 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Google, Inc. -Copyright © 2018,2019,2020 Ebrahim Byagowi -Copyright © 2019,2020 Facebook, Inc. -Copyright © 2012 Mozilla Foundation -Copyright © 2011 Codethink Limited -Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) -Copyright © 2009 Keith Stribley -Copyright © 2009 Martin Hosken and SIL International -Copyright © 2007 Chris Wilson -Copyright © 2005,2006,2020,2021 Behdad Esfahbod -Copyright © 2005 David Turner -Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. -Copyright © 1998-2004 David Turner and Werner Lemberg - -For full copyright notices consult the individual files in the package. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2015 International Business Machines Corporation -and others. All Rights Reserved. - -Project: https://github.com/rober42539/lao-dictionary -Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt -License: https://github.com/rober42539/lao-dictionary/LICENSE.txt - (copied below) - - This file is derived from the above dictionary version of Nov 22, 2020 - - Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. Redistributions in binary - form must reproduce the above copyright notice, this list of conditions and - the following disclaimer in the documentation and/or other materials - provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1995-2016 International Business Machines Corporation and others -All rights reserved. - -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, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. - -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 -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL 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. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the -property of their respective owners. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1998 - 1999 Unicode, Inc. All Rights reserved. - Copyright (C) 2002-2005, International Business Machines - Corporation and others. All Rights Reserved. - -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). -No claims are made as to fitness for any particular purpose. No -warranties of any kind are expressed or implied. The recipient -agrees to determine applicability of information provided. If this -file has been provided on optical media by Unicode, Inc., the sole -remedy for any claim will be exchange of defective media within 90 -days of receipt. - -Unicode, Inc. hereby grants the right to freely use the information -supplied in this file in the creation of products supporting the -Unicode Standard, and to make copies of this file in any form for -internal or external distribution as long as this notice remains -attached. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1999 Computer Systems and Communication Lab, - Institute of Information Science, Academia - * Sinica. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1999 TaBE Project. -Copyright (c) 1999 Pai-Hsiang Hsiao. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the TaBE Project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1999 Unicode, Inc. All Rights reserved. - Copyright (C) 2002-2005, International Business Machines - Corporation and others. All Rights Reserved. - -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). -No claims are made as to fitness for any particular purpose. No -warranties of any kind are expressed or implied. The recipient -agrees to determine applicability of information provided. If this -file has been provided on optical media by Unicode, Inc., the sole -remedy for any claim will be exchange of defective media within 90 -days of receipt. - -Unicode, Inc. hereby grants the right to freely use the information -supplied in this file in the creation of products supporting the -Unicode Standard, and to make copies of this file in any form for -internal or external distribution as long as this notice remains -attached. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002 Unicode, Inc. All Rights reserved. - Copyright (C) 2002-2005, International Business Machines - Corporation and others. All Rights Reserved. - -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). -No claims are made as to fitness for any particular purpose. No -warranties of any kind are expressed or implied. The recipient -agrees to determine applicability of information provided. If this -file has been provided on optical media by Unicode, Inc., the sole -remedy for any claim will be exchange of defective media within 90 -days of receipt. - -Unicode, Inc. hereby grants the right to freely use the information -supplied in this file in the creation of products supporting the -Unicode Standard, and to make copies of this file in any form for -internal or external distribution as long as this notice remains -attached. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2014 International Business Machines Corporation -and others. All Rights Reserved. - -This list is part of a project hosted at: - github.com/kanyawtech/myanmar-karen-word-lists - -Copyright (c) 2013, LeRoy Benjamin Sharon -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: Redistributions of source code must retain the above -copyright notice, this list of conditions and the following -disclaimer. Redistributions in binary form must reproduce the -above copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - - Neither the name Myanmar Karen Word Lists, nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2010. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2011. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2012. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2014. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2016. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - University of Illinois -c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 --------------------------------------------------------------------------------- -icu - -Copyright 2000, 2001, 2002, 2003 Nara Institute of Science -and Technology. All Rights Reserved. - -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, 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 tortuous action, arising out -of or in connection with the use or performance of this software. - -A large portion of the dictionary entries -originate from ICOT Free Software. The following conditions for ICOT -Free Software applies to the current dictionary as well. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. --------------------------------------------------------------------------------- -icu - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright 2019 the V8 project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright © 1991-2020 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -The BSD License -http://opensource.org/licenses/bsd-license.php -Copyright (C) 2006-2008, Google Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided with -the distribution. - Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Unicode® Terms of Use -For the general privacy policy governing access to this site, see the Unicode Privacy Policy. For trademark usage, see the Unicode® Consortium Name and Trademark Usage Policy. - -A. Unicode Copyright. -1. Copyright © 1991-2017 Unicode, Inc. All rights reserved. -2. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. -3. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files solely for informational purposes and in the creation of products supporting the Unicode Standard, subject to the Terms and Conditions herein. -4. Further specifications of rights and restrictions pertaining to the use of the particular set of data files known as the "Unicode Character Database" can be found in the License. -5. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. The online code charts carry specific restrictions. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. -6. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. -7. Modification is not permitted with respect to this document. All copies of this document must be verbatim. -B. Restricted Rights Legend. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. -C. Warranties and Disclaimers. -1. This publication and/or website may include technical or typographical errors or other inaccuracies . Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. -2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. -3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. -D. Waiver of Damages. In no event shall Unicode or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. -E. Trademarks & Logos. -1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium” and “Unicode, Inc.” are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. -2. The Unicode Consortium Name and Trademark Usage Policy (“Trademark Policy”) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. -3. All third party trademarks referenced herein are the property of their respective owners. -F. Miscellaneous. -1. Jurisdiction and Venue. This server is operated from a location in the State of California, United States of America. Unicode makes no representation that the materials are appropriate for use in other locations. If you access this server from other locations, you are responsible for compliance with local laws. This Agreement, all use of this site and any claims and damages resulting from use of this site are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this site shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. -2. Modification by Unicode Unicode shall have the right to modify this Agreement at any time by posting it to this site. The user may not assign any part of this Agreement without Unicode’s prior written consent. -3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. -4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. -5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. - -EXHIBIT 1 -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - -Unicode Data Files include all data files under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and -http://www.unicode.org/utility/trac/browser/. - -Unicode Data Files do not include PDF online code charts under the -directory http://www.unicode.org/Public/. - -Software includes any source code published in the Unicode Standard -or under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and -http://www.unicode.org/utility/trac/browser/. - -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright © 1991-2017 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in http://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -intl - -Copyright 2013, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -jpush_flutter - -MIT License - -Copyright (c) 2020 极光开发者 - -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. --------------------------------------------------------------------------------- -js - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -json_annotation -pedantic -platform -process -stream_transform -term_glyph - -Copyright 2017, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -json_conversion -json_conversion_annotation - - 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 [yyyy] [name of copyright owner] - - 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. - --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2007-2010 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. - -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) - -Copyright (C) 1992 Silicon Graphics, Inc. All Rights Reserved. - -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 including the dates of first publication and either -this permission notice or a reference to http://oss.sgi.com/projects/FreeB -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 SILICON -GRAPHICS, INC. 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. - -Except as contained in this notice, the name of Silicon Graphics, Inc. shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Silicon -Graphics, Inc. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2007-2012 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2007-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2008-2009 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2013-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are 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 Materials. - -THE MATERIALS ARE 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -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 [yyyy] [name of copyright owner] - -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. - ---- LLVM Exceptions to the Apache 2.0 License ---- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into an Object form of such source code, you -may redistribute such embedded portions in such Object form without complying -with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - -In addition, if you combine or link compiled forms of this Software with -software that is licensed under the GPLv2 ("Combined Software") and if a -court of competent jurisdiction determines that the patent provision (Section -3), the indemnity provision (Section 9) or other Section of the License -conflicts with the conditions of the GPLv2, you may retroactively and -prospectively choose to deem waived or otherwise exclude such Section(s) of -the License, but only in their entirety and only with respect to the Combined -Software. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT - -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. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -University of Illinois/NCSA -Open Source License - -Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT - -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -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: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -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 -CONTRIBUTORS 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 WITH THE -SOFTWARE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, 2014-2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. -Author: Ragesh Radhakrishnan -Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. -Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. -Copyright (C) 2014, Linaro Limited. All Rights Reserved. -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2011, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2014, Jay Foad. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014-2015, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library - version 1.02 - -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014-2016, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2014, Linaro Limited. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2009, 2012, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2012, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project -to include only information relevant to libjpeg-turbo, to wordsmith certain -sections, and to remove impolitic language that existed in the libjpeg v8 -README. It is included only for reference. Please see README.md for -information specific to libjpeg-turbo. - -The Independent JPEG Group's JPEG software -========================================== - -This distribution contains a release of the Independent JPEG Group's free JPEG -software. You are welcome to redistribute this software and to use it for any -purpose, subject to the conditions under LEGAL ISSUES, below. - -This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, -Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, -Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, -and other members of the Independent JPEG Group. - -IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee -(also known as JPEG, together with ITU-T SG16). - -DOCUMENTATION ROADMAP -===================== - -This file contains the following sections: - -OVERVIEW General description of JPEG and the IJG software. -LEGAL ISSUES Copyright, lack of warranty, terms of distribution. -REFERENCES Where to learn more about JPEG. -ARCHIVE LOCATIONS Where to find newer versions of this software. -FILE FORMAT WARS Software *not* to get. -TO DO Plans for future IJG releases. - -Other documentation files in the distribution are: - -User documentation: - usage.txt Usage instructions for cjpeg, djpeg, jpegtran, - rdjpgcom, and wrjpgcom. - *.1 Unix-style man pages for programs (same info as usage.txt). - wizard.txt Advanced usage instructions for JPEG wizards only. - change.log Version-to-version change highlights. -Programmer and internal documentation: - libjpeg.txt How to use the JPEG library in your own programs. - example.c Sample code for calling the JPEG library. - structure.txt Overview of the JPEG library's internal structure. - coderules.txt Coding style rules --- please read if you contribute code. - -Please read at least usage.txt. Some information can also be found in the JPEG -FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find -out where to obtain the FAQ article. - -If you want to understand how the JPEG code works, we suggest reading one or -more of the REFERENCES, then looking at the documentation files (in roughly -the order listed) before diving into the code. - -OVERVIEW -======== - -This package contains C software to implement JPEG image encoding, decoding, -and transcoding. JPEG (pronounced "jay-peg") is a standardized compression -method for full-color and grayscale images. JPEG's strong suit is compressing -photographic images or other types of images that have smooth color and -brightness transitions between neighboring pixels. Images with sharp lines or -other abrupt features may not compress well with JPEG, and a higher JPEG -quality may have to be used to avoid visible compression artifacts with such -images. - -JPEG is lossy, meaning that the output pixels are not necessarily identical to -the input pixels. However, on photographic content and other "smooth" images, -very good compression ratios can be obtained with no visible compression -artifacts, and extremely high compression ratios are possible if you are -willing to sacrifice image quality (by reducing the "quality" setting in the -compressor.) - -This software implements JPEG baseline, extended-sequential, and progressive -compression processes. Provision is made for supporting all variants of these -processes, although some uncommon parameter settings aren't implemented yet. -We have made no provision for supporting the hierarchical or lossless -processes defined in the standard. - -We provide a set of library routines for reading and writing JPEG image files, -plus two sample applications "cjpeg" and "djpeg", which use the library to -perform conversion between JPEG and some other popular image file formats. -The library is intended to be reused in other applications. - -In order to support file conversion and viewing software, we have included -considerable functionality beyond the bare JPEG coding/decoding capability; -for example, the color quantization modules are not strictly part of JPEG -decoding, but they are essential for output to colormapped file formats or -colormapped displays. These extra functions can be compiled out of the -library if not required for a particular application. - -We have also included "jpegtran", a utility for lossless transcoding between -different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple -applications for inserting and extracting textual comments in JFIF files. - -The emphasis in designing this software has been on achieving portability and -flexibility, while also making it fast enough to be useful. In particular, -the software is not intended to be read as a tutorial on JPEG. (See the -REFERENCES section for introductory material.) Rather, it is intended to -be reliable, portable, industrial-strength code. We do not claim to have -achieved that goal in every aspect of the software, but we strive for it. - -We welcome the use of this software as a component of commercial products. -No royalty is required, but we do ask for an acknowledgement in product -documentation, as described under LEGAL ISSUES. - -LEGAL ISSUES -============ - -In plain English: - -1. We don't promise that this software works. (But if you find any bugs, - please let us know!) -2. You can use this software for whatever you want. You don't have to pay us. -3. You may not pretend that you wrote this software. If you use it in a - program, you must acknowledge somewhere in your documentation that - you've used the IJG code. - -In legalese: - -The authors make NO WARRANTY or representation, either express or implied, -with respect to this software, its quality, accuracy, merchantability, or -fitness for a particular purpose. This software is provided "AS IS", and you, -its user, assume the entire risk as to its quality and accuracy. - -This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. -All Rights Reserved except as specified below. - -Permission is hereby granted to use, copy, modify, and distribute this -software (or portions thereof) for any purpose, without fee, subject to these -conditions: -(1) If any part of the source code for this software is distributed, then this -README file must be included, with this copyright and no-warranty notice -unaltered; and any additions, deletions, or changes to the original files -must be clearly indicated in accompanying documentation. -(2) If only executable code is distributed, then the accompanying -documentation must state that "this software is based in part on the work of -the Independent JPEG Group". -(3) Permission for use of this software is granted only if the user accepts -full responsibility for any undesirable consequences; the authors accept -NO LIABILITY for damages of any kind. - -These conditions apply to any software derived from or based on the IJG code, -not just to the unmodified library. If you use our work, you ought to -acknowledge us. - -Permission is NOT granted for the use of any IJG author's name or company name -in advertising or publicity relating to this software or products derived from -it. This software may be referred to only as "the Independent JPEG Group's -software". - -We specifically permit and encourage the use of this software as the basis of -commercial products, provided that all warranty or liability claims are -assumed by the product vendor. - -The Unix configuration script "configure" was produced with GNU Autoconf. -It is copyright by the Free Software Foundation but is freely distributable. -The same holds for its supporting scripts (config.guess, config.sub, -ltmain.sh). Another support script, install-sh, is copyright by X Consortium -but is also freely distributable. - -The IJG distribution formerly included code to read and write GIF files. -To avoid entanglement with the Unisys LZW patent (now expired), GIF reading -support has been removed altogether, and the GIF writer has been simplified -to produce "uncompressed GIFs". This technique does not use the LZW -algorithm; the resulting GIF files are larger than usual, but are readable -by all standard GIF decoders. - -We are required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." - -REFERENCES -========== - -We recommend reading one or more of these references before trying to -understand the innards of the JPEG software. - -The best short technical introduction to the JPEG compression algorithm is - Wallace, Gregory K. "The JPEG Still Picture Compression Standard", - Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. -(Adjacent articles in that issue discuss MPEG motion picture compression, -applications of JPEG, and related topics.) If you don't have the CACM issue -handy, a PDF file containing a revised version of Wallace's article is -available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually -a preprint for an article that appeared in IEEE Trans. Consumer Electronics) -omits the sample images that appeared in CACM, but it includes corrections -and some added material. Note: the Wallace article is copyright ACM and IEEE, -and it may not be used for commercial purposes. - -A somewhat less technical, more leisurely introduction to JPEG can be found in -"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by -M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides -good explanations and example C code for a multitude of compression methods -including JPEG. It is an excellent source if you are comfortable reading C -code but don't know much about data compression in general. The book's JPEG -sample code is far from industrial-strength, but when you are ready to look -at a full implementation, you've got one here... - -The best currently available description of JPEG is the textbook "JPEG Still -Image Data Compression Standard" by William B. Pennebaker and Joan L. -Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. -Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG -standards (DIS 10918-1 and draft DIS 10918-2). - -The original JPEG standard is divided into two parts, Part 1 being the actual -specification, while Part 2 covers compliance testing methods. Part 1 is -titled "Digital Compression and Coding of Continuous-tone Still Images, -Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS -10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of -Continuous-tone Still Images, Part 2: Compliance testing" and has document -numbers ISO/IEC IS 10918-2, ITU-T T.83. - -The JPEG standard does not specify all details of an interchangeable file -format. For the omitted details we follow the "JFIF" conventions, revision -1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report -and thus received a formal publication status. It is available as a free -download in PDF format from -http://www.ecma-international.org/publications/techreports/E-TR-098.htm. -A PostScript version of the JFIF document is available at -http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at -http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. - -The TIFF 6.0 file format specification can be obtained by FTP from -ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme -found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. -IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). -Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 -(Compression tag 7). Copies of this Note can be obtained from -http://www.ijg.org/files/. It is expected that the next revision -of the TIFF spec will replace the 6.0 JPEG design with the Note's design. -Although IJG's own code does not support TIFF/JPEG, the free libtiff library -uses our library to implement TIFF/JPEG per the Note. - -ARCHIVE LOCATIONS -================= - -The "official" archive site for this software is www.ijg.org. -The most recent released version can always be found there in -directory "files". - -The JPEG FAQ (Frequently Asked Questions) article is a source of some -general information about JPEG. -It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq -and other news.answers archive sites, including the official news.answers -archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. -If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu -with body - send usenet/news.answers/jpeg-faq/part1 - send usenet/news.answers/jpeg-faq/part2 - -FILE FORMAT WARS -================ - -The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together -with ITU-T SG16) currently promotes different formats containing the name -"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does -not support these formats (see REFERENCES). Indeed, one of the original -reasons for developing this free software was to help force convergence on -common, interoperable format standards for JPEG files. -Don't use an incompatible file format! -(In any case, our decoder will remain capable of reading existing JPEG -image files indefinitely.) - -TO DO -===== - -Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. --------------------------------------------------------------------------------- -libtess2 - -Copyright (C) [dates of first publication] Silicon Graphics, Inc. -All Rights Reserved. - -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 including the dates of first publication and either this -permission notice or a reference to http://oss.sgi.com/projects/FreeB/ 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 SILICON GRAPHICS, INC. -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. - -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -be used in advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from Silicon Graphics, Inc. --------------------------------------------------------------------------------- -libtess2 - -Copyright (c) 2009 Mikko Mononen memon@inside.org - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libtess2 - -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) -Copyright (C) [dates of first publication] Silicon Graphics, Inc. -All Rights Reserved. - -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 including the dates of first publication and either this -permission notice or a reference to http://oss.sgi.com/projects/FreeB/ 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 SILICON GRAPHICS, INC. -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. - -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -be used in advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from Silicon Graphics, Inc. --------------------------------------------------------------------------------- -libwebp - -Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2010 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2011 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2012 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2013 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2014 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2015 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2016 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2017 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2018 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -lints - -Copyright 2021, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -logger - -MIT License - -Copyright (c) 2019 Simon Leier - -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. - --------------------------------------------------------------------------------- -meta - -Copyright 2016, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -package_info_plus - -// Copyright 2017 The Chromium Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -package_info_plus_linux -package_info_plus_windows - -// Copyright 2020 The Chromium Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -package_info_plus_macos - -Copyright 2019 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -package_info_plus_platform_interface -package_info_plus_web - - - -// Copyright 2017 The Chromium Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -platform_detect - - 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 2017 Workiva Inc. - - 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. - --------------------------------------------------------------------------------- -qr - -Copyright 2014, the Dart QR project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -qr_flutter - -BSD 3-Clause License - -Copyright (c) 2020, Luke Freeman. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -r_calendar - -// Copyright 2019 The rhyme_lph Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of rhyme_lph authors. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -rapidjson - -Copyright (c) 2006-2013 Alexander Chemeris - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the product nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. - -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Terms of the MIT 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. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Open Source Software Licensed Under the JSON License: - -json.org -Copyright (c) 2002 JSON.org -All Rights Reserved. - -JSON_checker -Copyright (c) 2002 JSON.org -All Rights Reserved. - -Terms of the JSON 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 shall be used for Good, not Evil. - -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. - -Terms of the MIT 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. --------------------------------------------------------------------------------- -rapidjson - -The MIT License (MIT) - -Copyright (c) 2017 Bart Muzzin - -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. - -Derived from: - -The MIT License (MIT) - -Copyright (c) 2015 mojmir svoboda - -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. --------------------------------------------------------------------------------- -root_certificates - -Mozilla Public License -Version 2.0 - -1. Definitions - -1.1. “Contributor” - -means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - -1.2. “Contributor Version” - -means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - -means Covered Software of a particular Contributor. - -1.4. “Covered Software” - -means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - -1.5. “Incompatible With Secondary Licenses” - -means - - a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - -1.6. “Executable Form” - -means any form of the work other than Source Code Form. - -1.7. “Larger Work” - -means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - -1.8. “License” - -means this document. - -1.9. “Licensable” - -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - -1.10. “Modifications” - -means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - -means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - -1.12. “Secondary License” - -means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - -means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - -means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its Contributions. - -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - -If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. --------------------------------------------------------------------------------- -root_certificates - -Mozilla Public License Version 2.0 -================================== - -1. Definitions - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -* 6. Disclaimer of Warranty - -* Covered Software is provided under this License on an "as is" -* basis, without warranty of any kind, either expressed, implied, or -* statutory, including, without limitation, warranties that the -* Covered Software is free of defects, merchantable, fit for a -* particular purpose or non-infringing. The entire risk as to the -* quality and performance of the Covered Software is with You. -* Should any Covered Software prove defective in any respect, You -* (not any Contributor) assume the cost of any necessary servicing, -* repair, or correction. This disclaimer of warranty constitutes an -* essential part of this License. No use of any Covered Software is -* authorized under this License except under this disclaimer. - -* 7. Limitation of Liability - -* Under no circumstances and under no legal theory, whether tort -* (including negligence), contract, or otherwise, shall any -* Contributor, or anyone who distributes Covered Software as -* permitted above, be liable to You for any direct, indirect, -* special, incidental, or consequential damages of any character -* including, without limitation, damages for lost profits, loss of -* goodwill, work stoppage, computer failure or malfunction, or any -* and all other commercial damages or losses, even if such party -* shall have been informed of the possibility of such damages. This -* limitation of liability shall not apply to liability for death or -* personal injury resulting from such party's negligence to the -* extent applicable law prohibits such limitation. Some -* jurisdictions do not allow the exclusion or limitation of -* incidental or consequential damages, so this exclusion and -* limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. --------------------------------------------------------------------------------- -shared_preferences_platform_interface - -Copyright 2017 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -simple_gesture_detector -table_calendar - - 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 [yyyy] [name of copyright owner] - - 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. --------------------------------------------------------------------------------- -skcms -vulkan - -Copyright (c) 2018 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skcms -vulkanmemoryallocator - -Copyright 2018 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -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 2021 Google LLC - -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. --------------------------------------------------------------------------------- -skia - -Copyright (C) 2014 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2014 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2014-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are 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 Materials. --------------------------------------------------------------------------------- -skia - -Copyright 2005 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2006 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2006-2012 The Android Open Source Project -Copyright 2012 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2007 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2008 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2008 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2009 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2009-2015 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2010 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2010 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2011 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2011 Google Inc. -Copyright 2012 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2011 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2012 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2012 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2013 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2013 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2014 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2014 Google Inc. -Copyright 2017 ARM Ltd. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2014 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2015 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2015 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2016 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2016 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2016 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2017 ARM Ltd. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2017 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google Inc. and Adobe Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -smhasher - -All MurmurHash source files are placed in the public domain. - -The license below applies to all other code in SMHasher: - -Copyright (c) 2011 Google, Inc. - -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. --------------------------------------------------------------------------------- -sqlite - -The source code for SQLite is in the public domain. No claim of -copyright is made on any part of the core source code. (The -documentation and test code is a different matter - some sections of -documentation and test logic are governed by open-source licenses.) -All contributors to the SQLite core software have signed affidavits -specifically disavowing any copyright interest in the code. This means -that anybody is able to legally do anything they want with the SQLite -source code. - -There are other SQL database engines with liberal licenses that allow -the code to be broadly and freely used. But those other engines are -still governed by copyright law. SQLite is different in that copyright -law simply does not apply. - -The source code files for other SQL database engines typically begin -with a comment describing your legal rights to view and copy that -file. The SQLite source code contains no license since it is not -governed by copyright. Instead of a license, the SQLite source code -offers a blessing: - -May you do good and not evil -May you find forgiveness for yourself and forgive others -May you share freely, never taking more than you give. --------------------------------------------------------------------------------- -stream_channel - -Copyright 2015, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -tcmalloc - -Copyright (c) 2003, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -tcmalloc - -Copyright (c) 2005, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -timing - -Copyright 2018, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -vector_math - -Copyright 2015, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (C) 2013 Andrew Magill - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - --------------------------------------------------------------------------------- -vulkanmemoryallocator - -Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. - -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. --------------------------------------------------------------------------------- -win32 - -Copyright 2019, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash - -Copyright (C) 2012-2016, Yann Collet - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash - -Copyright (C) 2012-2016, Yann Collet. - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -yaml - -Copyright (c) 2014, the Dart project authors. -Copyright (c) 2006, Kirill Simonov. - -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. - --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2003, 2010 Mark Adler -Copyright (C) 2017 ARM, Inc. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2003, 2010, 2014, 2016 Jean-loup Gailly, Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2016 Jean-loup Gailly - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2017 Jean-loup Gailly -detect_data_type() function provided freely by Cosmin Truta, 2006 - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) - -Modifications for Zip64 support -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) - -For more info read MiniZip_info.txt - -Condition of use and distribution are the same than zlib : - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) - -Modifications of Unzip for Zip64 -Copyright (C) 2007-2008 Even Rouault - -Modifications for Zip64 support on both zip and unzip -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) - -For more info read MiniZip_info.txt - -Condition of use and distribution are the same than zlib : - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2004, 2010 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2004-2017 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2013 Intel Corporation -Authors: - Arjan van de Ven - Jim Kukunas - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2013 Intel Corporation. All rights reserved. -Authors: - Wajdi Feghali - Jim Guilford - Vinodh Gopal - Erdinc Ozturk - Jim Kukunas - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2017 ARM, Inc. -Copyright 2017 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -version 1.2.11, January 15th, 2017 - -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. diff --git a/web/app/assets/fonts/MaterialIcons-Regular.otf b/web/app/assets/fonts/MaterialIcons-Regular.otf deleted file mode 100644 index de28db8..0000000 Binary files a/web/app/assets/fonts/MaterialIcons-Regular.otf and /dev/null differ diff --git a/web/app/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/web/app/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf deleted file mode 100644 index 79ba7ea..0000000 Binary files a/web/app/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf and /dev/null differ diff --git a/web/app/assets/packages/fluttertoast/assets/toastify.css b/web/app/assets/packages/fluttertoast/assets/toastify.css deleted file mode 100644 index 2d0471e..0000000 --- a/web/app/assets/packages/fluttertoast/assets/toastify.css +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Minified by jsDelivr using clean-css v4.2.3. - * Original file: /npm/toastify-js@1.9.3/src/toastify.css - * - * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files - */ -/*! - * Toastify js 1.9.3 - * https://github.com/apvarun/toastify-js - * @license MIT licensed - * - * Copyright (C) 2018 Varun A P - */ -.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215,.61,.355,1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}} \ No newline at end of file diff --git a/web/app/assets/packages/fluttertoast/assets/toastify.js b/web/app/assets/packages/fluttertoast/assets/toastify.js deleted file mode 100644 index acdff00..0000000 --- a/web/app/assets/packages/fluttertoast/assets/toastify.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Minified by jsDelivr using Terser v5.3.0. - * Original file: /npm/toastify-js@1.9.3/src/toastify.js - * - * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files - */ -/*! - * Toastify js 1.9.3 - * https://github.com/apvarun/toastify-js - * @license MIT licensed - * - * Copyright (C) 2018 Varun A P - */ -!function(t,o){"object"==typeof module&&module.exports?module.exports=o():t.Toastify=o()}(this,(function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return o.offset[t]?isNaN(o.offset[t])?o.offset[t]:o.offset[t]+"px":"0px"}function s(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.9.3",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.node=t.node,this.options.duration=0===t.duration?0:t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"===t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this.options.onClick=t.onClick,this.options.offset=t.offset||{x:0,y:0},this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)t.appendChild(this.options.node);else if(t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("afterbegin",o)}if(!0===this.options.close){var s=document.createElement("span");s.innerHTML="✖",s.className="toast-close",s.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var n=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&n>360?t.insertAdjacentElement("afterbegin",s):t.appendChild(s)}if(this.options.stopOnFocus&&this.options.duration>0){var e=this;t.addEventListener("mouseover",(function(o){window.clearTimeout(t.timeOutValue)})),t.addEventListener("mouseleave",(function(){t.timeOutValue=window.setTimeout((function(){e.removeElement(t)}),e.options.duration)}))}if(void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=i("x",this.options),p=i("y",this.options),r="left"==this.options.position?a:"-"+a,l="toastify-top"==this.options.gravity?p:"-"+p;t.style.transform="translate("+r+","+l+")"}return t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),t.parentNode&&t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},i={top:15,bottom:15},n={top:15,bottom:15},e=document.getElementsByClassName("toastify"),a=0;a0?window.innerWidth:screen.width)<=360?(e[a].style[t]=n[t]+"px",n[t]+=p+15):!0===s(e[a],"toastify-left")?(e[a].style[t]=o[t]+"px",o[t]+=p+15):(e[a].style[t]=i[t]+"px",i[t]+=p+15)}return this},o.lib.init.prototype=o.lib,o})); \ No newline at end of file diff --git a/web/app/assets/static/icons/log.png b/web/app/assets/static/icons/log.png deleted file mode 100644 index 70a8aa6..0000000 Binary files a/web/app/assets/static/icons/log.png and /dev/null differ diff --git a/web/app/assets/static/icons/log_active.png b/web/app/assets/static/icons/log_active.png deleted file mode 100644 index 35ca341..0000000 Binary files a/web/app/assets/static/icons/log_active.png and /dev/null differ diff --git a/web/app/assets/static/icons/login.png b/web/app/assets/static/icons/login.png deleted file mode 100644 index 55d9cec..0000000 Binary files a/web/app/assets/static/icons/login.png and /dev/null differ diff --git a/web/app/assets/static/icons/login_activepng.png b/web/app/assets/static/icons/login_activepng.png deleted file mode 100644 index 3aa2856..0000000 Binary files a/web/app/assets/static/icons/login_activepng.png and /dev/null differ diff --git a/web/app/assets/static/icons/other.png b/web/app/assets/static/icons/other.png deleted file mode 100644 index 5e11181..0000000 Binary files a/web/app/assets/static/icons/other.png and /dev/null differ diff --git a/web/app/assets/static/icons/other_active.png b/web/app/assets/static/icons/other_active.png deleted file mode 100644 index f46b09f..0000000 Binary files a/web/app/assets/static/icons/other_active.png and /dev/null differ diff --git a/web/app/assets/static/icons/user.png b/web/app/assets/static/icons/user.png deleted file mode 100644 index d8757cf..0000000 Binary files a/web/app/assets/static/icons/user.png and /dev/null differ diff --git a/web/app/assets/static/icons/user_active.png b/web/app/assets/static/icons/user_active.png deleted file mode 100644 index 4a41008..0000000 Binary files a/web/app/assets/static/icons/user_active.png and /dev/null differ diff --git a/web/app/canvaskit/canvaskit.js b/web/app/canvaskit/canvaskit.js deleted file mode 100644 index 4e89617..0000000 --- a/web/app/canvaskit/canvaskit.js +++ /dev/null @@ -1,281 +0,0 @@ - -var CanvasKitInit = (() => { - var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; - if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; - return ( -function(CanvasKitInit) { - CanvasKitInit = CanvasKitInit || {}; - - -null;var t;t||(t=typeof CanvasKitInit !== 'undefined' ? CanvasKitInit : {});var da=Object.assign,fa,ha;t.ready=new Promise(function(a,b){fa=a;ha=b}); -(function(a){a.Vd=a.Vd||[];a.Vd.push(function(){a.MakeSWCanvasSurface=function(b){var c=b;if("CANVAS"!==c.tagName&&(c=document.getElementById(b),!c))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.Nd=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var f={width:b,height:c,colorType:a.ColorType.RGBA_8888,alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},h=b*c*4,l=a._malloc(h);if(f=a.Surface._makeRasterDirect(f, -l,4*b))f.Nd=null,f.Cf=b,f.zf=c,f.Bf=h,f.bf=l,f.getCanvas().clear(a.TRANSPARENT);return f};a.MakeRasterDirectSurface=function(b,c,f){return a.Surface._makeRasterDirect(b,c.byteOffset,f)};a.Surface.prototype.flush=function(b){a.Od(this.Md);this._flush();if(this.Nd){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.bf,this.Bf);c=new ImageData(c,this.Cf,this.zf);b?this.Nd.getContext("2d").putImageData(c,0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.Nd.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose= -function(){this.bf&&a._free(this.bf);this.delete()};a.Od=a.Od||function(){}})})(t); -(function(a){a.Vd=a.Vd||[];a.Vd.push(function(){function b(l,n,q){return l&&l.hasOwnProperty(n)?l[n]:q}function c(l){var n=ka(la);la[n]=l;return n}function f(l){return l.naturalHeight||l.videoHeight||l.displayHeight||l.height}function h(l){return l.naturalWidth||l.videoWidth||l.displayWidth||l.width}a.GetWebGLContext=function(l,n){if(!l)throw"null canvas passed into makeWebGLContext";var q={alpha:b(n,"alpha",1),depth:b(n,"depth",1),stencil:b(n,"stencil",8),antialias:b(n,"antialias",0),premultipliedAlpha:b(n, -"premultipliedAlpha",1),preserveDrawingBuffer:b(n,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(n,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(n,"failIfMajorPerformanceCaveat",0),enableExtensionsByDefault:b(n,"enableExtensionsByDefault",1),explicitSwapControl:b(n,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(n,"renderViaOffscreenBackBuffer",0)};q.majorVersion=n&&n.majorVersion?n.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(q.explicitSwapControl)throw"explicitSwapControl is not supported"; -l=ma(l,q);if(!l)return 0;na(l);return l};a.deleteContext=function(l){v===qa[l]&&(v=null);"object"===typeof JSEvents&&JSEvents.Hg(qa[l].je.canvas);qa[l]&&qa[l].je.canvas&&(qa[l].je.canvas.yf=void 0);qa[l]=null};a._setTextureCleanup({deleteTexture:function(l,n){var q=la[n];q&&qa[l].je.deleteTexture(q);la[n]=null}});a.MakeGrContext=function(l){if(!this.Od(l))return null;var n=this._MakeGrContext();if(!n)return null;n.Md=l;return n};a.MakeOnScreenGLSurface=function(l,n,q,w){if(!this.Od(l.Md))return null; -n=this._MakeOnScreenGLSurface(l,n,q,w);if(!n)return null;n.Md=l.Md;return n};a.MakeRenderTarget=function(){var l=arguments[0];if(!this.Od(l.Md))return null;if(3===arguments.length){var n=this._MakeRenderTargetWH(l,arguments[1],arguments[2]);if(!n)return null}else if(2===arguments.length){if(n=this._MakeRenderTargetII(l,arguments[1]),!n)return null}else return null;n.Md=l.Md;return n};a.MakeWebGLCanvasSurface=function(l,n,q){n=n||null;var w=l,x="undefined"!==typeof OffscreenCanvas&&w instanceof OffscreenCanvas; -if(!("undefined"!==typeof HTMLCanvasElement&&w instanceof HTMLCanvasElement||x||(w=document.getElementById(l),w)))throw"Canvas with id "+l+" was not found";l=this.GetWebGLContext(w,q);if(!l||0>l)throw"failed to create webgl context: err "+l;l=this.MakeGrContext(l);n=this.MakeOnScreenGLSurface(l,w.width,w.height,n);return n?n:(n=w.cloneNode(!0),w.parentNode.replaceChild(n,w),n.classList.add("ck-replaced"),a.MakeSWCanvasSurface(n))};a.MakeCanvasSurface=a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture= -function(l,n){a.Od(this.Md);l=c(l);if(n=this._makeImageFromTexture(this.Md,l,n))n.Ke=l;return n};a.Surface.prototype.makeImageFromTextureSource=function(l,n){n||(n={height:f(l),width:h(l),colorType:a.ColorType.RGBA_8888,alphaType:a.AlphaType.Unpremul});n.colorSpace||(n.colorSpace=a.ColorSpace.SRGB);a.Od(this.Md);var q=v.je,w=q.createTexture();q.bindTexture(q.TEXTURE_2D,w);2===v.version?q.texImage2D(q.TEXTURE_2D,0,q.RGBA,n.width,n.height,0,q.RGBA,q.UNSIGNED_BYTE,l):q.texImage2D(q.TEXTURE_2D,0,q.RGBA, -q.RGBA,q.UNSIGNED_BYTE,l);q.bindTexture(q.TEXTURE_2D,null);return this.makeImageFromTexture(w,n)};a.Surface.prototype.updateTextureFromSource=function(l,n){if(l.Ke){a.Od(this.Md);var q=v.je,w=la[l.Ke];q.bindTexture(q.TEXTURE_2D,w);2===v.version?q.texImage2D(q.TEXTURE_2D,0,q.RGBA,h(n),f(n),0,q.RGBA,q.UNSIGNED_BYTE,n):q.texImage2D(q.TEXTURE_2D,0,q.RGBA,q.RGBA,q.UNSIGNED_BYTE,n);q.bindTexture(q.TEXTURE_2D,null);this._resetContext();la[l.Ke]=null;l.Ke=c(w);n=l.getImageInfo();n.colorSpace=l.getColorSpace(); -q=this._makeImageFromTexture(this.Md,l.Ke,n);w=l.Ld.Qd;var x=l.Ld.$d;l.Ld.Qd=q.Ld.Qd;l.Ld.$d=q.Ld.$d;q.Ld.Qd=w;q.Ld.$d=x;q.delete();n.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(l,n){n||(n={height:f(l),width:h(l),colorType:a.ColorType.RGBA_8888,alphaType:a.AlphaType.Unpremul});n.colorSpace||(n.colorSpace=a.ColorSpace.SRGB);var q={makeTexture:function(){var w=v,x=w.je,J=x.createTexture();x.bindTexture(x.TEXTURE_2D,J);2===w.version?x.texImage2D(x.TEXTURE_2D,0,x.RGBA,n.width,n.height, -0,x.RGBA,x.UNSIGNED_BYTE,l):x.texImage2D(x.TEXTURE_2D,0,x.RGBA,x.RGBA,x.UNSIGNED_BYTE,l);x.bindTexture(x.TEXTURE_2D,null);return c(J)},freeSrc:function(){}};"VideoFrame"===l.constructor.name&&(q.freeSrc=function(){l.close()});return a.Image._makeFromGenerator(n,q)};a.Od=function(l){return l?na(l):!1}})})(t); -(function(a){function b(e,d,g,m,r){for(var y=0;y>>0}function l(e){if(e&&e._ck)return e;if(e instanceof Float32Array){for(var d=Math.floor(e.length/4),g=new Uint32Array(d),m=0;mD;D++)a.HEAPF32[r+m]=e[y][D],m++;e=g}else e=V;d.de=e}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof e;return d}function K(e){if(!e)return V;if(e.length){if(6===e.length||9===e.length)return x(e,"HEAPF32", -Oa),6===e.length&&a.HEAPF32.set(Fd,6+Oa/4),Oa;if(16===e.length){var d=yb.toTypedArray();d[0]=e[0];d[1]=e[1];d[2]=e[3];d[3]=e[4];d[4]=e[5];d[5]=e[7];d[6]=e[12];d[7]=e[13];d[8]=e[15];return Oa}throw"invalid matrix size";}d=yb.toTypedArray();d[0]=e.m11;d[1]=e.m21;d[2]=e.m41;d[3]=e.m12;d[4]=e.m22;d[5]=e.m42;d[6]=e.m14;d[7]=e.m24;d[8]=e.m44;return Oa}function Q(e){if(!e)return V;var d=Yb.toTypedArray();if(e.length){if(16!==e.length&&6!==e.length&&9!==e.length)throw"invalid matrix size";if(16===e.length)return x(e, -"HEAPF32",Za);d.fill(0);d[0]=e[0];d[1]=e[1];d[3]=e[2];d[4]=e[3];d[5]=e[4];d[7]=e[5];d[12]=e[6];d[13]=e[7];d[15]=e[8];6===e.length&&(d[12]=0,d[13]=0,d[15]=1);return Za}d[0]=e.m11;d[1]=e.m21;d[2]=e.m31;d[3]=e.m41;d[4]=e.m12;d[5]=e.m22;d[6]=e.m32;d[7]=e.m42;d[8]=e.m13;d[9]=e.m23;d[10]=e.m33;d[11]=e.m43;d[12]=e.m14;d[13]=e.m24;d[14]=e.m34;d[15]=e.m44;return Za}function A(e,d){return x(e,"HEAPF32",d||fb)}function L(e,d,g,m){var r=Zb.toTypedArray();r[0]=e;r[1]=d;r[2]=g;r[3]=m;return fb}function S(e){for(var d= -new Float32Array(4),g=0;4>g;g++)d[g]=a.HEAPF32[e/4+g];return d}function T(e,d){return x(e,"HEAPF32",d||ia)}function oa(e,d){return x(e,"HEAPF32",d||$b)}function ta(){for(var e=0,d=0;d>>0};a.Color4f=function(e,d,g,m){void 0===m&&(m=1);return Float32Array.of(e,d,g,m)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1,1,1,1)}});Object.defineProperty(a, -"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(e){return[Math.floor(255*e[0]),Math.floor(255* -e[1]),Math.floor(255*e[2]),e[3]]};a.parseColorString=function(e,d){e=e.toLowerCase();if(e.startsWith("#")){d=255;switch(e.length){case 9:d=parseInt(e.slice(7,9),16);case 7:var g=parseInt(e.slice(1,3),16);var m=parseInt(e.slice(3,5),16);var r=parseInt(e.slice(5,7),16);break;case 5:d=17*parseInt(e.slice(4,5),16);case 4:g=17*parseInt(e.slice(1,2),16),m=17*parseInt(e.slice(2,3),16),r=17*parseInt(e.slice(3,4),16)}return a.Color(g,m,r,d/255)}return e.startsWith("rgba")?(e=e.slice(5,-1),e=e.split(","),a.Color(+e[0], -+e[1],+e[2],n(e[3]))):e.startsWith("rgb")?(e=e.slice(4,-1),e=e.split(","),a.Color(+e[0],+e[1],+e[2],n(e[3]))):e.startsWith("gray(")||e.startsWith("hsl")||!d||(e=d[e],void 0===e)?a.BLACK:e};a.multiplyByAlpha=function(e,d){e=e.slice();e[3]=Math.max(0,Math.min(e[3]*d,1));return e};a.Malloc=function(e,d){var g=a._malloc(d*e.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:g,pe:null,subarray:function(m,r){m=this.toTypedArray().subarray(m,r);m._ck=!0;return m},toTypedArray:function(){if(this.pe&&this.pe.length)return this.pe; -this.pe=new e(a.HEAPU8.buffer,g,d);this.pe._ck=!0;return this.pe}}};a.Free=function(e){a._free(e.byteOffset);e.byteOffset=V;e.toTypedArray=null;e.pe=null};var Oa=V,yb,Za=V,Yb,fb=V,Zb,Ha,ia=V,Ic,Ta=V,Jc,ac=V,Kc,bc=V,Lc,cc=V,Mc,$b=V,Nc,Oc=V,Fd=Float32Array.of(0,0,1),V=0;a.onRuntimeInitialized=function(){function e(d,g,m,r,y,D){D||(D=4*r.width,r.colorType===a.ColorType.RGBA_F16?D*=2:r.colorType===a.ColorType.RGBA_F32&&(D*=4));var I=D*r.height;var N=y?y.byteOffset:a._malloc(I);if(!d._readPixels(r,N,D, -g,m))return y||a._free(N),null;if(y)return y.toTypedArray();switch(r.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,N,I)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,N,I)).slice();break;default:return null}a._free(N);return d}Zb=a.Malloc(Float32Array,4);fb=Zb.byteOffset;Yb=a.Malloc(Float32Array,16);Za=Yb.byteOffset;yb=a.Malloc(Float32Array,9);Oa=yb.byteOffset;Mc=a.Malloc(Float32Array,12);$b=Mc.byteOffset;Nc=a.Malloc(Float32Array, -12);Oc=Nc.byteOffset;Ha=a.Malloc(Float32Array,4);ia=Ha.byteOffset;Ic=a.Malloc(Float32Array,4);Ta=Ic.byteOffset;Jc=a.Malloc(Float32Array,3);ac=Jc.byteOffset;Kc=a.Malloc(Float32Array,3);bc=Kc.byteOffset;Lc=a.Malloc(Int32Array,4);cc=Lc.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds=function(d){var g=x(d,"HEAPF32"), -m=a.Path._MakeFromCmds(g,d.length);w(g,d);return m};a.Path.MakeFromVerbsPointsWeights=function(d,g,m){var r=x(d,"HEAPU8"),y=x(g,"HEAPF32"),D=x(m,"HEAPF32"),I=a.Path._MakeFromVerbsPointsWeights(r,d.length,y,g.length,D,m&&m.length||0);w(r,d);w(y,g);w(D,m);return I};a.Path.prototype.addArc=function(d,g,m){d=T(d);this._addArc(d,g,m);return this};a.Path.prototype.addOval=function(d,g,m){void 0===m&&(m=1);d=T(d);this._addOval(d,!!g,m);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments), -g=d[0],m=!1;"boolean"===typeof d[d.length-1]&&(m=d.pop());if(1===d.length)this._addPath(g,1,0,0,0,1,0,0,0,1,m);else if(2===d.length)d=d[1],this._addPath(g,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,m);else if(7===d.length||10===d.length)this._addPath(g,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,m);else return null;return this};a.Path.prototype.addPoly=function(d,g){var m=x(d,"HEAPF32");this._addPoly(m,d.length/2,g);w(m,d);return this};a.Path.prototype.addRect=function(d,g){d= -T(d);this._addRect(d,!!g);return this};a.Path.prototype.addRRect=function(d,g){d=oa(d);this._addRRect(d,!!g);return this};a.Path.prototype.addVerbsPointsWeights=function(d,g,m){var r=x(d,"HEAPU8"),y=x(g,"HEAPF32"),D=x(m,"HEAPF32");this._addVerbsPointsWeights(r,d.length,y,g.length,D,m&&m.length||0);w(r,d);w(y,g);w(D,m)};a.Path.prototype.arc=function(d,g,m,r,y,D){d=a.LTRBRect(d-m,g-m,d+m,g+m);y=(y-r)/Math.PI*180-360*!!D;D=new a.Path;D.addArc(d,r/Math.PI*180,y);this.addPath(D,!0);D.delete();return this}; -a.Path.prototype.arcToOval=function(d,g,m,r){d=T(d);this._arcToOval(d,g,m,r);return this};a.Path.prototype.arcToRotated=function(d,g,m,r,y,D,I){this._arcToRotated(d,g,m,!!r,!!y,D,I);return this};a.Path.prototype.arcToTangent=function(d,g,m,r,y){this._arcToTangent(d,g,m,r,y);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo=function(d,g,m,r,y){this._conicTo(d,g,m,r,y);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(ia); -var g=Ha.toTypedArray();return d?(d.set(g),d):g.slice()};a.Path.prototype.cubicTo=function(d,g,m,r,y,D){this._cubicTo(d,g,m,r,y,D);return this};a.Path.prototype.dash=function(d,g,m){return this._dash(d,g,m)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(ia);var g=Ha.toTypedArray();return d?(d.set(g),d):g.slice()};a.Path.prototype.lineTo=function(d,g){this._lineTo(d,g);return this};a.Path.prototype.moveTo=function(d,g){this._moveTo(d,g);return this};a.Path.prototype.offset=function(d, -g){this._transform(1,0,d,0,1,g,0,0,1);return this};a.Path.prototype.quadTo=function(d,g,m,r){this._quadTo(d,g,m,r);return this};a.Path.prototype.rArcTo=function(d,g,m,r,y,D,I){this._rArcTo(d,g,m,r,y,D,I);return this};a.Path.prototype.rConicTo=function(d,g,m,r,y){this._rConicTo(d,g,m,r,y);return this};a.Path.prototype.rCubicTo=function(d,g,m,r,y,D){this._rCubicTo(d,g,m,r,y,D);return this};a.Path.prototype.rLineTo=function(d,g){this._rLineTo(d,g);return this};a.Path.prototype.rMoveTo=function(d,g){this._rMoveTo(d, -g);return this};a.Path.prototype.rQuadTo=function(d,g,m,r){this._rQuadTo(d,g,m,r);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1===arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9=== -arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,g,m){return this._trim(d,g,!!m)?this:null};a.Image.prototype.makeShaderCubic=function(d,g,m,r,y){y=K(y);return this._makeShaderCubic(d,g,m,r,y)};a.Image.prototype.makeShaderOptions=function(d,g,m,r,y){y=K(y);return this._makeShaderOptions(d,g,m,r,y)};a.Image.prototype.readPixels= -function(d,g,m,r,y){return e(this,d,g,m,r,y)};a.Canvas.prototype.clear=function(d){a.Od(this.Md);d=A(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,g,m){a.Od(this.Md);d=oa(d);this._clipRRect(d,g,m)};a.Canvas.prototype.clipRect=function(d,g,m){a.Od(this.Md);d=T(d);this._clipRect(d,g,m)};a.Canvas.prototype.concat=function(d){a.Od(this.Md);d=Q(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,g,m,r,y){a.Od(this.Md);d=T(d);this._drawArc(d,g,m,r,y)};a.Canvas.prototype.drawAtlas=function(d, -g,m,r,y,D,I){if(d&&r&&g&&m&&g.length===m.length){a.Od(this.Md);y||(y=a.BlendMode.SrcOver);var N=x(g,"HEAPF32"),P=x(m,"HEAPF32"),W=m.length/4,u=x(l(D),"HEAPU32");if(I&&"B"in I&&"C"in I)this._drawAtlasCubic(d,P,N,u,W,y,I.B,I.C,r);else{let H=a.FilterMode.Linear,R=a.MipmapMode.None;I&&(H=I.filter,"mipmap"in I&&(R=I.mipmap));this._drawAtlasOptions(d,P,N,u,W,y,H,R,r)}w(N,g);w(P,m);w(u,D)}};a.Canvas.prototype.drawCircle=function(d,g,m,r){a.Od(this.Md);this._drawCircle(d,g,m,r)};a.Canvas.prototype.drawColor= -function(d,g){a.Od(this.Md);d=A(d);void 0!==g?this._drawColor(d,g):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,g){a.Od(this.Md);this._drawColorInt(d,g||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents=function(d,g,m,r,y){a.Od(this.Md);d=L(d,g,m,r);void 0!==y?this._drawColor(d,y):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,g,m){a.Od(this.Md);d=oa(d,$b);g=oa(g,Oc);this._drawDRRect(d,g,m)};a.Canvas.prototype.drawGlyphs=function(d,g,m,r,y,D){if(!(2*d.length<= -g.length))throw"Not enough positions for the array of gyphs";a.Od(this.Md);const I=x(d,"HEAPU16"),N=x(g,"HEAPF32");this._drawGlyphs(d.length,I,N,m,r,y,D);w(N,g);w(I,d)};a.Canvas.prototype.drawImage=function(d,g,m,r){a.Od(this.Md);this._drawImage(d,g,m,r||null)};a.Canvas.prototype.drawImageCubic=function(d,g,m,r,y,D){a.Od(this.Md);this._drawImageCubic(d,g,m,r,y,D||null)};a.Canvas.prototype.drawImageOptions=function(d,g,m,r,y,D){a.Od(this.Md);this._drawImageOptions(d,g,m,r,y,D||null)};a.Canvas.prototype.drawImageNine= -function(d,g,m,r,y){a.Od(this.Md);g=x(g,"HEAP32",cc);m=T(m);this._drawImageNine(d,g,m,r,y||null)};a.Canvas.prototype.drawImageRect=function(d,g,m,r,y){a.Od(this.Md);T(g,ia);T(m,Ta);this._drawImageRect(d,ia,Ta,r,!!y)};a.Canvas.prototype.drawImageRectCubic=function(d,g,m,r,y,D){a.Od(this.Md);T(g,ia);T(m,Ta);this._drawImageRectCubic(d,ia,Ta,r,y,D||null)};a.Canvas.prototype.drawImageRectOptions=function(d,g,m,r,y,D){a.Od(this.Md);T(g,ia);T(m,Ta);this._drawImageRectOptions(d,ia,Ta,r,y,D||null)};a.Canvas.prototype.drawLine= -function(d,g,m,r,y){a.Od(this.Md);this._drawLine(d,g,m,r,y)};a.Canvas.prototype.drawOval=function(d,g){a.Od(this.Md);d=T(d);this._drawOval(d,g)};a.Canvas.prototype.drawPaint=function(d){a.Od(this.Md);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,g,m){a.Od(this.Md);this._drawParagraph(d,g,m)};a.Canvas.prototype.drawPatch=function(d,g,m,r,y){if(24>d.length)throw"Need 12 cubic points";if(g&&4>g.length)throw"Need 4 colors";if(m&&8>m.length)throw"Need 4 shader coordinates";a.Od(this.Md); -const D=x(d,"HEAPF32"),I=g?x(l(g),"HEAPU32"):V,N=m?x(m,"HEAPF32"):V;r||(r=a.BlendMode.Modulate);this._drawPatch(D,I,N,r,y);w(N,m);w(I,g);w(D,d)};a.Canvas.prototype.drawPath=function(d,g){a.Od(this.Md);this._drawPath(d,g)};a.Canvas.prototype.drawPicture=function(d){a.Od(this.Md);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,g,m){a.Od(this.Md);var r=x(g,"HEAPF32");this._drawPoints(d,r,g.length/2,m);w(r,g)};a.Canvas.prototype.drawRRect=function(d,g){a.Od(this.Md);d=oa(d);this._drawRRect(d, -g)};a.Canvas.prototype.drawRect=function(d,g){a.Od(this.Md);d=T(d);this._drawRect(d,g)};a.Canvas.prototype.drawRect4f=function(d,g,m,r,y){a.Od(this.Md);this._drawRect4f(d,g,m,r,y)};a.Canvas.prototype.drawShadow=function(d,g,m,r,y,D,I){a.Od(this.Md);var N=x(y,"HEAPF32"),P=x(D,"HEAPF32");g=x(g,"HEAPF32",ac);m=x(m,"HEAPF32",bc);this._drawShadow(d,g,m,r,N,P,I);w(N,y);w(P,D)};a.getShadowLocalBounds=function(d,g,m,r,y,D,I){d=K(d);m=x(m,"HEAPF32",ac);r=x(r,"HEAPF32",bc);if(!this._getShadowLocalBounds(d, -g,m,r,y,D,ia))return null;g=Ha.toTypedArray();return I?(I.set(g),I):g.slice()};a.Canvas.prototype.drawTextBlob=function(d,g,m,r){a.Od(this.Md);this._drawTextBlob(d,g,m,r)};a.Canvas.prototype.drawVertices=function(d,g,m){a.Od(this.Md);this._drawVertices(d,g,m)};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(Za);for(var d=Za,g=Array(16),m=0;16>m;m++)g[m]=a.HEAPF32[d/4+m];return g};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(Oa);for(var d=Array(9),g=0;9>g;g++)d[g]= -a.HEAPF32[Oa/4+g];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Md=this.Md;return d};a.Canvas.prototype.readPixels=function(d,g,m,r,y){a.Od(this.Md);return e(this,d,g,m,r,y)};a.Canvas.prototype.saveLayer=function(d,g,m,r){g=T(g);return this._saveLayer(d||null,g,m||null,r||0)};a.Canvas.prototype.writePixels=function(d,g,m,r,y,D,I,N){if(d.byteLength%(g*m))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Od(this.Md);var P=d.byteLength/(g*m);D=D||a.AlphaType.Unpremul; -I=I||a.ColorType.RGBA_8888;N=N||a.ColorSpace.SRGB;var W=P*g;P=x(d,"HEAPU8");g=this._writePixels({width:g,height:m,colorType:I,alphaType:D,colorSpace:N},P,W,r,y);w(P,d);return g};a.ColorFilter.MakeBlend=function(d,g){d=A(d);return a.ColorFilter._MakeBlend(d,g)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix";var g=x(d,"HEAPF32"),m=a.ColorFilter._makeMatrix(g);w(g,d);return m};a.ContourMeasure.prototype.getPosTan=function(d,g){this._getPosTan(d,ia);d=Ha.toTypedArray(); -return g?(g.set(d),g):d.slice()};a.ImageFilter.MakeMatrixTransform=function(d,g,m){d=K(d);if("B"in g&&"C"in g)return a.ImageFilter._MakeMatrixTransformCubic(d,g.Ag,g.Bg,m);const r=g.filter;let y=a.MipmapMode.None;"mipmap"in g&&(y=g.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,r,y,m)};a.Paint.prototype.getColor=function(){this._getColor(fb);return S(fb)};a.Paint.prototype.setColor=function(d,g){g=g||null;d=A(d);this._setColor(d,g)};a.Paint.prototype.setColorComponents=function(d,g,m, -r,y){y=y||null;d=L(d,g,m,r);this._setColor(d,y)};a.Path.prototype.getPoint=function(d,g){this._getPoint(d,ia);d=Ha.toTypedArray();return g?(g[0]=d[0],g[1]=d[1],g):d.slice(0,2)};a.PictureRecorder.prototype.beginRecording=function(d){d=T(d);return this._beginRecording(d)};a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Md=this.Md;return d};a.Surface.prototype.makeImageSnapshot=function(d){a.Od(this.Md);d=x(d,"HEAP32",cc);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface= -function(d){a.Od(this.Md);d=this._makeSurface(d);d.Md=this.Md;return d};a.Surface.prototype.requestAnimationFrame=function(d,g){this.Ge||(this.Ge=this.getCanvas());requestAnimationFrame(function(){a.Od(this.Md);d(this.Ge);this.flush(g)}.bind(this))};a.Surface.prototype.drawOnce=function(d,g){this.Ge||(this.Ge=this.getCanvas());requestAnimationFrame(function(){a.Od(this.Md);d(this.Ge);this.flush(g);this.dispose()}.bind(this))};a.PathEffect.MakeDash=function(d,g){g||(g=0);if(!d.length||1===d.length% -2)throw"Intervals array must have even length";var m=x(d,"HEAPF32");g=a.PathEffect._MakeDash(m,d.length,g);w(m,d);return g};a.PathEffect.MakeLine2D=function(d,g){g=K(g);return a.PathEffect._MakeLine2D(d,g)};a.PathEffect.MakePath2D=function(d,g){d=K(d);return a.PathEffect._MakePath2D(d,g)};a.Shader.MakeColor=function(d,g){g=g||null;d=A(d);return a.Shader._MakeColor(d,g)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,g,m,r,y,D,I,N){N=N||null; -var P=J(m),W=x(r,"HEAPF32");I=I||0;D=K(D);var u=Ha.toTypedArray();u.set(d);u.set(g,2);d=a.Shader._MakeLinearGradient(ia,P.de,P.Le,W,P.count,y,I,D,N);w(P.de,m);r&&w(W,r);return d};a.Shader.MakeRadialGradient=function(d,g,m,r,y,D,I,N){N=N||null;var P=J(m),W=x(r,"HEAPF32");I=I||0;D=K(D);d=a.Shader._MakeRadialGradient(d[0],d[1],g,P.de,P.Le,W,P.count,y,I,D,N);w(P.de,m);r&&w(W,r);return d};a.Shader.MakeSweepGradient=function(d,g,m,r,y,D,I,N,P,W){W=W||null;var u=J(m),H=x(r,"HEAPF32");I=I||0;N=N||0;P=P|| -360;D=K(D);d=a.Shader._MakeSweepGradient(d,g,u.de,u.Le,H,u.count,y,N,P,I,D,W);w(u.de,m);r&&w(H,r);return d};a.Shader.MakeTwoPointConicalGradient=function(d,g,m,r,y,D,I,N,P,W){W=W||null;var u=J(y),H=x(D,"HEAPF32");P=P||0;N=K(N);var R=Ha.toTypedArray();R.set(d);R.set(m,2);d=a.Shader._MakeTwoPointConicalGradient(ia,g,r,u.de,u.Le,H,u.count,I,P,N,W);w(u.de,y);D&&w(H,D);return d};a.Vertices.prototype.bounds=function(d){this._bounds(ia);var g=Ha.toTypedArray();return d?(d.set(g),d):g.slice()};a.Vd&&a.Vd.forEach(function(d){d()})}; -a.computeTonalColors=function(e){var d=x(e.ambient,"HEAPF32"),g=x(e.spot,"HEAPF32");this._computeTonalColors(d,g);var m={ambient:S(d),spot:S(g)};w(d,e.ambient);w(g,e.spot);return m};a.LTRBRect=function(e,d,g,m){return Float32Array.of(e,d,g,m)};a.XYWHRect=function(e,d,g,m){return Float32Array.of(e,d,e+g,d+m)};a.LTRBiRect=function(e,d,g,m){return Int32Array.of(e,d,g,m)};a.XYWHiRect=function(e,d,g,m){return Int32Array.of(e,d,e+g,d+m)};a.RRectXY=function(e,d,g){return Float32Array.of(e[0],e[1],e[2],e[3], -d,g,d,g,d,g,d,g)};a.MakeAnimatedImageFromEncoded=function(e){e=new Uint8Array(e);var d=a._malloc(e.byteLength);a.HEAPU8.set(e,d);return(e=a._decodeAnimatedImage(d,e.byteLength))?e:null};a.MakeImageFromEncoded=function(e){e=new Uint8Array(e);var d=a._malloc(e.byteLength);a.HEAPU8.set(e,d);return(e=a._decodeImage(d,e.byteLength))?e:null};var ib=null;a.MakeImageFromCanvasImageSource=function(e){var d=e.width,g=e.height;ib||(ib=document.createElement("canvas"));ib.width=d;ib.height=g;var m=ib.getContext("2d", -{Jg:!0});m.drawImage(e,0,0);e=m.getImageData(0,0,d,g);return a.MakeImage({width:d,height:g,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},e.data,4*d)};a.MakeImage=function(e,d,g){var m=a._malloc(d.length);a.HEAPU8.set(d,m);return a._MakeImage(e,m,d.length,g)};a.MakeVertices=function(e,d,g,m,r,y){var D=r&&r.length||0,I=0;g&&g.length&&(I|=1);m&&m.length&&(I|=2);void 0===y||y||(I|=4);e=new a._VerticesBuilder(e,d.length/2,D,I);x(d,"HEAPF32",e.positions()); -e.texCoords()&&x(g,"HEAPF32",e.texCoords());e.colors()&&x(l(m),"HEAPU32",e.colors());e.indices()&&x(r,"HEAPU16",e.indices());return e.detach()};a.Matrix={};a.Matrix.identity=function(){return c(3)};a.Matrix.invert=function(e){var d=e[0]*e[4]*e[8]+e[1]*e[5]*e[6]+e[2]*e[3]*e[7]-e[2]*e[4]*e[6]-e[1]*e[3]*e[8]-e[0]*e[5]*e[7];return d?[(e[4]*e[8]-e[5]*e[7])/d,(e[2]*e[7]-e[1]*e[8])/d,(e[1]*e[5]-e[2]*e[4])/d,(e[5]*e[6]-e[3]*e[8])/d,(e[0]*e[8]-e[2]*e[6])/d,(e[2]*e[3]-e[0]*e[5])/d,(e[3]*e[7]-e[4]*e[6])/d,(e[1]* -e[6]-e[0]*e[7])/d,(e[0]*e[4]-e[1]*e[3])/d]:null};a.Matrix.mapPoints=function(e,d){for(var g=0;gr;r+=5){for(var y=0;4>y;y++)g[m++]=e[r]*d[y]+e[r+1]*d[y+5]+e[r+2]*d[y+10]+e[r+3]*d[y+15];g[m++]=e[r]*d[4]+e[r+1]*d[9]+e[r+2]*d[14]+e[r+3]*d[19]+e[r+4]}return g};(function(e){e.Vd=e.Vd||[];e.Vd.push(function(){function d(u){if(!u||!u.length)return[];for(var H=[],R=0;Rd)return a._free(e),null;r=new Uint16Array(a.HEAPU8.buffer,e,d);if(g)return g.set(r),a._free(e),g;g=Uint16Array.from(r);a._free(e);return g};a.Font.prototype.getGlyphIntercepts=function(e,d,g,m){var r= -x(e,"HEAPU16"),y=x(d,"HEAPF32");return this._getGlyphIntercepts(r,e.length,!(e&&e._ck),y,d.length,!(d&&d._ck),g,m)};a.Font.prototype.getGlyphWidths=function(e,d,g){var m=x(e,"HEAPU16"),r=a._malloc(4*e.length);this._getGlyphWidthBounds(m,e.length,r,V,d||null);d=new Float32Array(a.HEAPU8.buffer,r,e.length);w(m,e);if(g)return g.set(d),a._free(r),g;e=Float32Array.from(d);a._free(r);return e};a.FontMgr.FromData=function(){if(!arguments.length)return null;var e=arguments;1===e.length&&Array.isArray(e[0])&& -(e=arguments[0]);if(!e.length)return null;for(var d=[],g=[],m=0;md)return a._free(e),null;r=new Uint16Array(a.HEAPU8.buffer,e,d);if(g)return g.set(r),a._free(e),g;g=Uint16Array.from(r);a._free(e);return g};a.TextBlob.MakeOnPath=function(e,d,g,m){if(e&&e.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(e,g);m||(m=0);var r=g.getGlyphIDs(e);r=g.getGlyphWidths(r);var y=[];d=new a.ContourMeasureIter(d,!1,1);for(var D=d.next(),I=new Float32Array(4),N=0;ND.length()){D.delete();D=d.next();if(!D){e=e.substring(0,N);break}m=P/2}D.getPosTan(m,I);var W=I[2],u=I[3];y.push(W,u,I[0]-P/2*W,I[1]-P/2*u);m+=P/2}e=this.MakeFromRSXform(e,y,g);D&&D.delete();d.delete();return e}};a.TextBlob.MakeFromRSXform=function(e,d,g){var m=ra(e)+1,r=a._malloc(m);sa(e,G,r,m);e=x(d,"HEAPF32");g=a.TextBlob._MakeFromRSXform(r,m-1,e,g);a._free(r);return g?g:null};a.TextBlob.MakeFromRSXformGlyphs=function(e,d,g){var m=x(e,"HEAPU16");d=x(d,"HEAPF32"); -g=a.TextBlob._MakeFromRSXformGlyphs(m,2*e.length,d,g);w(m,e);return g?g:null};a.TextBlob.MakeFromGlyphs=function(e,d){var g=x(e,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(g,2*e.length,d);w(g,e);return d?d:null};a.TextBlob.MakeFromText=function(e,d){var g=ra(e)+1,m=a._malloc(g);sa(e,G,m,g);e=a.TextBlob._MakeFromText(m,g-1,d);a._free(m);return e?e:null};a.MallocGlyphIDs=function(e){return a.Malloc(Uint16Array,e)}});a.Vd=a.Vd||[];a.Vd.push(function(){a.MakePicture=function(e){e=new Uint8Array(e);var d= -a._malloc(e.byteLength);a.HEAPU8.set(e,d);return(e=a._MakePicture(d,e.byteLength))?e:null}});(function(){function e(F){for(var k=0;kk||1=k||!k||(this.Je=k,this.Rd.setStrokeWidth(k))}});Object.defineProperty(this,"miterLimit",{enumerable:!0, -get:function(){return this.Rd.getStrokeMiter()},set:function(k){0>=k||!k||this.Rd.setStrokeMiter(k)}});Object.defineProperty(this,"shadowBlur",{enumerable:!0,get:function(){return this.ue},set:function(k){0>k||!isFinite(k)||(this.ue=k)}});Object.defineProperty(this,"shadowColor",{enumerable:!0,get:function(){return d(this.Ie)},set:function(k){this.Ie=g(k)}});Object.defineProperty(this,"shadowOffsetX",{enumerable:!0,get:function(){return this.ve},set:function(k){isFinite(k)&&(this.ve=k)}});Object.defineProperty(this, -"shadowOffsetY",{enumerable:!0,get:function(){return this.we},set:function(k){isFinite(k)&&(this.we=k)}});Object.defineProperty(this,"strokeStyle",{enumerable:!0,get:function(){return d(this.he)},set:function(k){"string"===typeof k?this.he=g(k):k.se&&(this.he=k)}});this.arc=function(k,p,z,B,C,E){H(this.Td,k,p,z,z,0,B,C,E)};this.arcTo=function(k,p,z,B,C){P(this.Td,k,p,z,B,C)};this.beginPath=function(){this.Td.delete();this.Td=new a.Path};this.bezierCurveTo=function(k,p,z,B,C,E){var M=this.Td;e([k, -p,z,B,C,E])&&(M.isEmpty()&&M.moveTo(k,p),M.cubicTo(k,p,z,B,C,E))};this.clearRect=function(k,p,z,B){this.Rd.setStyle(a.PaintStyle.Fill);this.Rd.setBlendMode(a.BlendMode.Clear);this.Nd.drawRect(a.XYWHRect(k,p,z,B),this.Rd);this.Rd.setBlendMode(this.Pd)};this.clip=function(k,p){"string"===typeof k?(p=k,k=this.Td):k&&k.af&&(k=k.Wd);k||(k=this.Td);k=k.copy();p&&"evenodd"===p.toLowerCase()?k.setFillType(a.FillType.EvenOdd):k.setFillType(a.FillType.Winding);this.Nd.clipPath(k,a.ClipOp.Intersect,!0);k.delete()}; -this.closePath=function(){W(this.Td)};this.createImageData=function(){if(1===arguments.length){var k=arguments[0];return new I(new Uint8ClampedArray(4*k.width*k.height),k.width,k.height)}if(2===arguments.length){k=arguments[0];var p=arguments[1];return new I(new Uint8ClampedArray(4*k*p),k,p)}throw"createImageData expects 1 or 2 arguments, got "+arguments.length;};this.createLinearGradient=function(k,p,z,B){if(e(arguments)){var C=new N(k,p,z,B);this.Ae.push(C);return C}};this.createPattern=function(k, -p){k=new ja(k,p);this.Ae.push(k);return k};this.createRadialGradient=function(k,p,z,B,C,E){if(e(arguments)){var M=new pa(k,p,z,B,C,E);this.Ae.push(M);return M}};this.drawImage=function(k){k instanceof D&&(k=k.tf());var p=this.Qe();if(3===arguments.length||5===arguments.length)var z=a.XYWHRect(arguments[1],arguments[2],arguments[3]||k.width(),arguments[4]||k.height()),B=a.XYWHRect(0,0,k.width(),k.height());else if(9===arguments.length)z=a.XYWHRect(arguments[5],arguments[6],arguments[7],arguments[8]), -B=a.XYWHRect(arguments[1],arguments[2],arguments[3],arguments[4]);else throw"invalid number of args for drawImage, need 3, 5, or 9; got "+arguments.length;this.Nd.drawImageRect(k,B,z,p,!1);p.dispose()};this.ellipse=function(k,p,z,B,C,E,M,ba){H(this.Td,k,p,z,B,C,E,M,ba)};this.Qe=function(){var k=this.Rd.copy();k.setStyle(a.PaintStyle.Fill);if(f(this.ce)){var p=a.multiplyByAlpha(this.ce,this.ke);k.setColor(p)}else p=this.ce.se(this.Ud),k.setColor(a.Color(0,0,0,this.ke)),k.setShader(p);k.dispose=function(){this.delete()}; -return k};this.fill=function(k,p){"string"===typeof k?(p=k,k=this.Td):k&&k.af&&(k=k.Wd);if("evenodd"===p)this.Td.setFillType(a.FillType.EvenOdd);else{if("nonzero"!==p&&p)throw"invalid fill rule";this.Td.setFillType(a.FillType.Winding)}k||(k=this.Td);p=this.Qe();var z=this.xe(p);z&&(this.Nd.save(),this.qe(),this.Nd.drawPath(k,z),this.Nd.restore(),z.dispose());this.Nd.drawPath(k,p);p.dispose()};this.fillRect=function(k,p,z,B){var C=this.Qe(),E=this.xe(C);E&&(this.Nd.save(),this.qe(),this.Nd.drawRect(a.XYWHRect(k, -p,z,B),E),this.Nd.restore(),E.dispose());this.Nd.drawRect(a.XYWHRect(k,p,z,B),C);C.dispose()};this.fillText=function(k,p,z){var B=this.Qe();k=a.TextBlob.MakeFromText(k,this.ne);var C=this.xe(B);C&&(this.Nd.save(),this.qe(),this.Nd.drawTextBlob(k,p,z,C),this.Nd.restore(),C.dispose());this.Nd.drawTextBlob(k,p,z,B);k.delete();B.dispose()};this.getImageData=function(k,p,z,B){return(k=this.Nd.readPixels(k,p,{width:z,height:B,colorType:a.ColorType.RGBA_8888,alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB}))? -new I(new Uint8ClampedArray(k.buffer),z,B):null};this.getLineDash=function(){return this.te.slice()};this.mf=function(k){var p=a.Matrix.invert(this.Ud);a.Matrix.mapPoints(p,k);return k};this.isPointInPath=function(k,p,z){var B=arguments;if(3===B.length)var C=this.Td;else if(4===B.length)C=B[0],k=B[1],p=B[2],z=B[3];else throw"invalid arg count, need 3 or 4, got "+B.length;if(!isFinite(k)||!isFinite(p))return!1;z=z||"nonzero";if("nonzero"!==z&&"evenodd"!==z)return!1;B=this.mf([k,p]);k=B[0];p=B[1];C.setFillType("nonzero"=== -z?a.FillType.Winding:a.FillType.EvenOdd);return C.contains(k,p)};this.isPointInStroke=function(k,p){var z=arguments;if(2===z.length)var B=this.Td;else if(3===z.length)B=z[0],k=z[1],p=z[2];else throw"invalid arg count, need 2 or 3, got "+z.length;if(!isFinite(k)||!isFinite(p))return!1;z=this.mf([k,p]);k=z[0];p=z[1];B=B.copy();B.setFillType(a.FillType.Winding);B.stroke({width:this.lineWidth,miter_limit:this.miterLimit,cap:this.Rd.getStrokeCap(),join:this.Rd.getStrokeJoin(),precision:.3});z=B.contains(k, -p);B.delete();return z};this.lineTo=function(k,p){R(this.Td,k,p)};this.measureText=function(k){k=this.ne.getGlyphIDs(k);k=this.ne.getGlyphWidths(k);let p=0;for(const z of k)p+=z;return{width:p}};this.moveTo=function(k,p){var z=this.Td;e([k,p])&&z.moveTo(k,p)};this.putImageData=function(k,p,z,B,C,E,M){if(e([p,z,B,C,E,M]))if(void 0===B)this.Nd.writePixels(k.data,k.width,k.height,p,z);else if(B=B||0,C=C||0,E=E||k.width,M=M||k.height,0>E&&(B+=E,E=Math.abs(E)),0>M&&(C+=M,M=Math.abs(M)),0>B&&(E+=B,B=0), -0>C&&(M+=C,C=0),!(0>=E||0>=M)){k=a.MakeImage({width:k.width,height:k.height,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},k.data,4*k.width);var ba=a.XYWHRect(B,C,E,M);p=a.XYWHRect(p+B,z+C,E,M);z=a.Matrix.invert(this.Ud);this.Nd.save();this.Nd.concat(z);this.Nd.drawImageRect(k,ba,p,null,!1);this.Nd.restore();k.delete()}};this.quadraticCurveTo=function(k,p,z,B){var C=this.Td;e([k,p,z,B])&&(C.isEmpty()&&C.moveTo(k,p),C.quadTo(k,p,z,B))};this.rect=function(k, -p,z,B){var C=this.Td;k=a.XYWHRect(k,p,z,B);e(k)&&C.addRect(k)};this.resetTransform=function(){this.Td.transform(this.Ud);var k=a.Matrix.invert(this.Ud);this.Nd.concat(k);this.Ud=this.Nd.getTotalMatrix()};this.restore=function(){var k=this.lf.pop();if(k){var p=a.Matrix.multiply(this.Ud,a.Matrix.invert(k.Ff));this.Td.transform(p);this.Rd.delete();this.Rd=k.dg;this.te=k.$f;this.Je=k.vg;this.he=k.ug;this.ce=k.fs;this.ve=k.sg;this.we=k.tg;this.ue=k.hg;this.Ie=k.rg;this.ke=k.Nf;this.Pd=k.Of;this.He=k.ag; -this.Re=k.Mf;this.Nd.restore();this.Ud=this.Nd.getTotalMatrix()}};this.rotate=function(k){if(isFinite(k)){var p=a.Matrix.rotated(-k);this.Td.transform(p);this.Nd.rotate(k/Math.PI*180,0,0);this.Ud=this.Nd.getTotalMatrix()}};this.save=function(){if(this.ce.re){var k=this.ce.re();this.Ae.push(k)}else k=this.ce;if(this.he.re){var p=this.he.re();this.Ae.push(p)}else p=this.he;this.lf.push({Ff:this.Ud.slice(),$f:this.te.slice(),vg:this.Je,ug:p,fs:k,sg:this.ve,tg:this.we,hg:this.ue,rg:this.Ie,Nf:this.ke, -ag:this.He,Of:this.Pd,dg:this.Rd.copy(),Mf:this.Re});this.Nd.save()};this.scale=function(k,p){if(e(arguments)){var z=a.Matrix.scaled(1/k,1/p);this.Td.transform(z);this.Nd.scale(k,p);this.Ud=this.Nd.getTotalMatrix()}};this.setLineDash=function(k){for(var p=0;pk[p])return;1===k.length%2&&Array.prototype.push.apply(k,k);this.te=k};this.setTransform=function(k,p,z,B,C,E){e(arguments)&&(this.resetTransform(),this.transform(k,p,z,B,C,E))};this.qe=function(){var k=a.Matrix.invert(this.Ud); -this.Nd.concat(k);this.Nd.concat(a.Matrix.translated(this.ve,this.we));this.Nd.concat(this.Ud)};this.xe=function(k){var p=a.multiplyByAlpha(this.Ie,this.ke);if(!a.getColorComponents(p)[3]||!(this.ue||this.we||this.ve))return null;k=k.copy();k.setColor(p);var z=a.MaskFilter.MakeBlur(a.BlurStyle.Normal,this.ue/2,!1);k.setMaskFilter(z);k.dispose=function(){z.delete();this.delete()};return k};this.cf=function(){var k=this.Rd.copy();k.setStyle(a.PaintStyle.Stroke);if(f(this.he)){var p=a.multiplyByAlpha(this.he, -this.ke);k.setColor(p)}else p=this.he.se(this.Ud),k.setColor(a.Color(0,0,0,this.ke)),k.setShader(p);k.setStrokeWidth(this.Je);if(this.te.length){var z=a.PathEffect.MakeDash(this.te,this.He);k.setPathEffect(z)}k.dispose=function(){z&&z.delete();this.delete()};return k};this.stroke=function(k){k=k?k.Wd:this.Td;var p=this.cf(),z=this.xe(p);z&&(this.Nd.save(),this.qe(),this.Nd.drawPath(k,z),this.Nd.restore(),z.dispose());this.Nd.drawPath(k,p);p.dispose()};this.strokeRect=function(k,p,z,B){var C=this.cf(), -E=this.xe(C);E&&(this.Nd.save(),this.qe(),this.Nd.drawRect(a.XYWHRect(k,p,z,B),E),this.Nd.restore(),E.dispose());this.Nd.drawRect(a.XYWHRect(k,p,z,B),C);C.dispose()};this.strokeText=function(k,p,z){var B=this.cf();k=a.TextBlob.MakeFromText(k,this.ne);var C=this.xe(B);C&&(this.Nd.save(),this.qe(),this.Nd.drawTextBlob(k,p,z,C),this.Nd.restore(),C.dispose());this.Nd.drawTextBlob(k,p,z,B);k.delete();B.dispose()};this.translate=function(k,p){if(e(arguments)){var z=a.Matrix.translated(-k,-p);this.Td.transform(z); -this.Nd.translate(k,p);this.Ud=this.Nd.getTotalMatrix()}};this.transform=function(k,p,z,B,C,E){k=[k,z,C,p,B,E,0,0,1];p=a.Matrix.invert(k);this.Td.transform(p);this.Nd.concat(k);this.Ud=this.Nd.getTotalMatrix()};this.addHitRegion=function(){};this.clearHitRegions=function(){};this.drawFocusIfNeeded=function(){};this.removeHitRegion=function(){};this.scrollPathIntoView=function(){};Object.defineProperty(this,"canvas",{value:null,writable:!1})}function y(F){this.df=F;this.Md=new r(F.getCanvas());this.Se= -[];this.decodeImage=function(k){k=a.MakeImageFromEncoded(k);if(!k)throw"Invalid input";this.Se.push(k);return new D(k)};this.loadFont=function(k,p){k=a.Typeface.MakeFreeTypeFaceFromData(k);if(!k)return null;this.Se.push(k);var z=(p.style||"normal")+"|"+(p.variant||"normal")+"|"+(p.weight||"normal");p=p.family;ea[p]||(ea[p]={"*":k});ea[p][z]=k};this.makePath2D=function(k){k=new aa(k);this.Se.push(k.Wd);return k};this.getContext=function(k){return"2d"===k?this.Md:null};this.toDataURL=function(k,p){this.df.flush(); -var z=this.df.makeImageSnapshot();if(z){k=k||"image/png";var B=a.ImageFormat.PNG;"image/jpeg"===k&&(B=a.ImageFormat.JPEG);if(p=z.encodeToBytes(B,p||.92)){z.delete();k="data:"+k+";base64,";if("undefined"!==typeof Buffer)p=Buffer.from(p).toString("base64");else{z=0;B=p.length;for(var C="",E;zB||1B);E++);this.ae.splice(E,0,B);this.ee.splice(E,0,C)}};this.re=function(){var B=new N(F,k,p,z);B.ee=this.ee.slice();B.ae=this.ae.slice();return B};this.me=function(){this.Yd&&(this.Yd.delete(),this.Yd=null)};this.se=function(B){var C=[F,k,p,z];a.Matrix.mapPoints(B,C);B=C[0];var E=C[1], -M=C[2];C=C[3];this.me();return this.Yd=a.Shader.MakeLinearGradient([B,E],[M,C],this.ee,this.ae,a.TileMode.Clamp)}}function P(F,k,p,z,B,C){if(e([k,p,z,B,C])){if(0>C)throw"radii cannot be negative";F.isEmpty()&&F.moveTo(k,p);F.arcToTangent(k,p,z,B,C)}}function W(F){if(!F.isEmpty()){var k=F.getBounds();(k[3]-k[1]||k[2]-k[0])&&F.close()}}function u(F,k,p,z,B,C,E){E=(E-C)/Math.PI*180;C=C/Math.PI*180;k=a.LTRBRect(k-z,p-B,k+z,p+B);1E-5>Math.abs(Math.abs(E)-360)?(p=E/2,F.arcToOval(k,C,p,!1),F.arcToOval(k, -C+p,p,!1)):F.arcToOval(k,C,E,!1)}function H(F,k,p,z,B,C,E,M,ba){if(e([k,p,z,B,C,E,M])){if(0>z||0>B)throw"radii cannot be negative";var ca=2*Math.PI,Ia=E%ca;0>Ia&&(Ia+=ca);var $a=Ia-E;E=Ia;M+=$a;!ba&&M-E>=ca?M=E+ca:ba&&E-M>=ca?M=E-ca:!ba&&E>M?M=E+(ca-(E-M)%ca):ba&&EE||1E);ba++);this.ae.splice(ba,0,E);this.ee.splice(ba,0,M)}};this.re=function(){var E=new pa(F,k,p,z,B,C);E.ee=this.ee.slice();E.ae= -this.ae.slice();return E};this.me=function(){this.Yd&&(this.Yd.delete(),this.Yd=null)};this.se=function(E){var M=[F,k,z,B];a.Matrix.mapPoints(E,M);var ba=M[0],ca=M[1],Ia=M[2];M=M[3];var $a=(Math.abs(E[0])+Math.abs(E[4]))/2;E=p*$a;$a*=C;this.me();return this.Yd=a.Shader.MakeTwoPointConicalGradient([ba,ca],E,[Ia,M],$a,this.ee,this.ae,a.TileMode.Clamp)}}a._testing={};var ua={aliceblue:Float32Array.of(.941,.973,1,1),antiquewhite:Float32Array.of(.98,.922,.843,1),aqua:Float32Array.of(0,1,1,1),aquamarine:Float32Array.of(.498, -1,.831,1),azure:Float32Array.of(.941,1,1,1),beige:Float32Array.of(.961,.961,.863,1),bisque:Float32Array.of(1,.894,.769,1),black:Float32Array.of(0,0,0,1),blanchedalmond:Float32Array.of(1,.922,.804,1),blue:Float32Array.of(0,0,1,1),blueviolet:Float32Array.of(.541,.169,.886,1),brown:Float32Array.of(.647,.165,.165,1),burlywood:Float32Array.of(.871,.722,.529,1),cadetblue:Float32Array.of(.373,.62,.627,1),chartreuse:Float32Array.of(.498,1,0,1),chocolate:Float32Array.of(.824,.412,.118,1),coral:Float32Array.of(1, -.498,.314,1),cornflowerblue:Float32Array.of(.392,.584,.929,1),cornsilk:Float32Array.of(1,.973,.863,1),crimson:Float32Array.of(.863,.078,.235,1),cyan:Float32Array.of(0,1,1,1),darkblue:Float32Array.of(0,0,.545,1),darkcyan:Float32Array.of(0,.545,.545,1),darkgoldenrod:Float32Array.of(.722,.525,.043,1),darkgray:Float32Array.of(.663,.663,.663,1),darkgreen:Float32Array.of(0,.392,0,1),darkgrey:Float32Array.of(.663,.663,.663,1),darkkhaki:Float32Array.of(.741,.718,.42,1),darkmagenta:Float32Array.of(.545,0, -.545,1),darkolivegreen:Float32Array.of(.333,.42,.184,1),darkorange:Float32Array.of(1,.549,0,1),darkorchid:Float32Array.of(.6,.196,.8,1),darkred:Float32Array.of(.545,0,0,1),darksalmon:Float32Array.of(.914,.588,.478,1),darkseagreen:Float32Array.of(.561,.737,.561,1),darkslateblue:Float32Array.of(.282,.239,.545,1),darkslategray:Float32Array.of(.184,.31,.31,1),darkslategrey:Float32Array.of(.184,.31,.31,1),darkturquoise:Float32Array.of(0,.808,.82,1),darkviolet:Float32Array.of(.58,0,.827,1),deeppink:Float32Array.of(1, -.078,.576,1),deepskyblue:Float32Array.of(0,.749,1,1),dimgray:Float32Array.of(.412,.412,.412,1),dimgrey:Float32Array.of(.412,.412,.412,1),dodgerblue:Float32Array.of(.118,.565,1,1),firebrick:Float32Array.of(.698,.133,.133,1),floralwhite:Float32Array.of(1,.98,.941,1),forestgreen:Float32Array.of(.133,.545,.133,1),fuchsia:Float32Array.of(1,0,1,1),gainsboro:Float32Array.of(.863,.863,.863,1),ghostwhite:Float32Array.of(.973,.973,1,1),gold:Float32Array.of(1,.843,0,1),goldenrod:Float32Array.of(.855,.647,.125, -1),gray:Float32Array.of(.502,.502,.502,1),green:Float32Array.of(0,.502,0,1),greenyellow:Float32Array.of(.678,1,.184,1),grey:Float32Array.of(.502,.502,.502,1),honeydew:Float32Array.of(.941,1,.941,1),hotpink:Float32Array.of(1,.412,.706,1),indianred:Float32Array.of(.804,.361,.361,1),indigo:Float32Array.of(.294,0,.51,1),ivory:Float32Array.of(1,1,.941,1),khaki:Float32Array.of(.941,.902,.549,1),lavender:Float32Array.of(.902,.902,.98,1),lavenderblush:Float32Array.of(1,.941,.961,1),lawngreen:Float32Array.of(.486, -.988,0,1),lemonchiffon:Float32Array.of(1,.98,.804,1),lightblue:Float32Array.of(.678,.847,.902,1),lightcoral:Float32Array.of(.941,.502,.502,1),lightcyan:Float32Array.of(.878,1,1,1),lightgoldenrodyellow:Float32Array.of(.98,.98,.824,1),lightgray:Float32Array.of(.827,.827,.827,1),lightgreen:Float32Array.of(.565,.933,.565,1),lightgrey:Float32Array.of(.827,.827,.827,1),lightpink:Float32Array.of(1,.714,.757,1),lightsalmon:Float32Array.of(1,.627,.478,1),lightseagreen:Float32Array.of(.125,.698,.667,1),lightskyblue:Float32Array.of(.529, -.808,.98,1),lightslategray:Float32Array.of(.467,.533,.6,1),lightslategrey:Float32Array.of(.467,.533,.6,1),lightsteelblue:Float32Array.of(.69,.769,.871,1),lightyellow:Float32Array.of(1,1,.878,1),lime:Float32Array.of(0,1,0,1),limegreen:Float32Array.of(.196,.804,.196,1),linen:Float32Array.of(.98,.941,.902,1),magenta:Float32Array.of(1,0,1,1),maroon:Float32Array.of(.502,0,0,1),mediumaquamarine:Float32Array.of(.4,.804,.667,1),mediumblue:Float32Array.of(0,0,.804,1),mediumorchid:Float32Array.of(.729,.333, -.827,1),mediumpurple:Float32Array.of(.576,.439,.859,1),mediumseagreen:Float32Array.of(.235,.702,.443,1),mediumslateblue:Float32Array.of(.482,.408,.933,1),mediumspringgreen:Float32Array.of(0,.98,.604,1),mediumturquoise:Float32Array.of(.282,.82,.8,1),mediumvioletred:Float32Array.of(.78,.082,.522,1),midnightblue:Float32Array.of(.098,.098,.439,1),mintcream:Float32Array.of(.961,1,.98,1),mistyrose:Float32Array.of(1,.894,.882,1),moccasin:Float32Array.of(1,.894,.71,1),navajowhite:Float32Array.of(1,.871,.678, -1),navy:Float32Array.of(0,0,.502,1),oldlace:Float32Array.of(.992,.961,.902,1),olive:Float32Array.of(.502,.502,0,1),olivedrab:Float32Array.of(.42,.557,.137,1),orange:Float32Array.of(1,.647,0,1),orangered:Float32Array.of(1,.271,0,1),orchid:Float32Array.of(.855,.439,.839,1),palegoldenrod:Float32Array.of(.933,.91,.667,1),palegreen:Float32Array.of(.596,.984,.596,1),paleturquoise:Float32Array.of(.686,.933,.933,1),palevioletred:Float32Array.of(.859,.439,.576,1),papayawhip:Float32Array.of(1,.937,.835,1), -peachpuff:Float32Array.of(1,.855,.725,1),peru:Float32Array.of(.804,.522,.247,1),pink:Float32Array.of(1,.753,.796,1),plum:Float32Array.of(.867,.627,.867,1),powderblue:Float32Array.of(.69,.878,.902,1),purple:Float32Array.of(.502,0,.502,1),rebeccapurple:Float32Array.of(.4,.2,.6,1),red:Float32Array.of(1,0,0,1),rosybrown:Float32Array.of(.737,.561,.561,1),royalblue:Float32Array.of(.255,.412,.882,1),saddlebrown:Float32Array.of(.545,.271,.075,1),salmon:Float32Array.of(.98,.502,.447,1),sandybrown:Float32Array.of(.957, -.643,.376,1),seagreen:Float32Array.of(.18,.545,.341,1),seashell:Float32Array.of(1,.961,.933,1),sienna:Float32Array.of(.627,.322,.176,1),silver:Float32Array.of(.753,.753,.753,1),skyblue:Float32Array.of(.529,.808,.922,1),slateblue:Float32Array.of(.416,.353,.804,1),slategray:Float32Array.of(.439,.502,.565,1),slategrey:Float32Array.of(.439,.502,.565,1),snow:Float32Array.of(1,.98,.98,1),springgreen:Float32Array.of(0,1,.498,1),steelblue:Float32Array.of(.275,.51,.706,1),tan:Float32Array.of(.824,.706,.549, -1),teal:Float32Array.of(0,.502,.502,1),thistle:Float32Array.of(.847,.749,.847,1),tomato:Float32Array.of(1,.388,.278,1),transparent:Float32Array.of(0,0,0,0),turquoise:Float32Array.of(.251,.878,.816,1),violet:Float32Array.of(.933,.51,.933,1),wheat:Float32Array.of(.961,.871,.702,1),white:Float32Array.of(1,1,1,1),whitesmoke:Float32Array.of(.961,.961,.961,1),yellow:Float32Array.of(1,1,0,1),yellowgreen:Float32Array.of(.604,.804,.196,1)};a._testing.parseColor=g;a._testing.colorToString=d;var Aa=RegExp("(italic|oblique|normal|)\\s*(small-caps|normal|)\\s*(bold|bolder|lighter|[1-9]00|normal|)\\s*([\\d\\.]+)(px|pt|pc|in|cm|mm|%|em|ex|ch|rem|q)(.+)"), -ea={"Noto Mono":{"*":null},monospace:{"*":null}};a._testing.parseFontString=m;a.MakeCanvas=function(F,k){return(F=a.MakeSurface(F,k))?new y(F):null};a.ImageData=function(){if(2===arguments.length){var F=arguments[0],k=arguments[1];return new I(new Uint8ClampedArray(4*F*k),F,k)}if(3===arguments.length){var p=arguments[0];if(p.prototype.constructor!==Uint8ClampedArray)throw"bytes must be given as a Uint8ClampedArray";F=arguments[1];k=arguments[2];if(p%4)throw"bytes must be given in a multiple of 4"; -if(p%F)throw"bytes must divide evenly by width";if(k&&k!==p/(4*F))throw"invalid height given";return new I(p,F,p/(4*F))}throw"invalid number of arguments - takes 2 or 3, saw "+arguments.length;}})()})(t);var va=da({},t),wa="./this.program",xa=(a,b)=>{throw b;},ya="object"===typeof window,za="function"===typeof importScripts,Ba="object"===typeof process&&"object"===typeof process.versions&&"string"===typeof process.versions.node,Ca="",Da,Ea,Fa,fs,Ga,Ja; -if(Ba)Ca=za?require("path").dirname(Ca)+"/":__dirname+"/",Ja=()=>{Ga||(fs=require("fs"),Ga=require("path"))},Da=function(a,b){Ja();a=Ga.normalize(a);return fs.readFileSync(a,b?null:"utf8")},Fa=a=>{a=Da(a,!0);a.buffer||(a=new Uint8Array(a));return a},Ea=(a,b,c)=>{Ja();a=Ga.normalize(a);fs.readFile(a,function(f,h){f?c(f):b(h.buffer)})},1{if(noExitRuntime||0{var b=new XMLHttpRequest;b.open("GET",a, -!1);b.send(null);return b.responseText},za&&(Fa=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),Ea=(a,b,c)=>{var f=new XMLHttpRequest;f.open("GET",a,!0);f.responseType="arraybuffer";f.onload=()=>{200==f.status||0==f.status&&f.response?b(f.response):c()};f.onerror=c;f.send(null)};var Na=t.print||console.log.bind(console),Ma=t.printErr||console.warn.bind(console);da(t,va);va=null;t.thisProgram&&(wa=t.thisProgram); -t.quit&&(xa=t.quit);var Pa=0,Qa;t.wasmBinary&&(Qa=t.wasmBinary);var noExitRuntime=t.noExitRuntime||!0;"object"!==typeof WebAssembly&&Ra("no native wasm support detected");var Sa,Ua=!1,Va="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0; -function Wa(a,b,c){var f=b+c;for(c=b;a[c]&&!(c>=f);)++c;if(16h?f+=String.fromCharCode(h):(h-=65536,f+=String.fromCharCode(55296|h>>10,56320|h&1023))}}else f+=String.fromCharCode(h)}return f}function Xa(a,b){return a?Wa(G,a,b):""} -function sa(a,b,c,f){if(!(0=n){var q=a.charCodeAt(++l);n=65536+((n&1023)<<10)|q&1023}if(127>=n){if(c>=f)break;b[c++]=n}else{if(2047>=n){if(c+1>=f)break;b[c++]=192|n>>6}else{if(65535>=n){if(c+2>=f)break;b[c++]=224|n>>12}else{if(c+3>=f)break;b[c++]=240|n>>18;b[c++]=128|n>>12&63}b[c++]=128|n>>6&63}b[c++]=128|n&63}}b[c]=0;return c-h} -function ra(a){for(var b=0,c=0;c=f&&(f=65536+((f&1023)<<10)|a.charCodeAt(++c)&1023);127>=f?++b:b=2047>=f?b+2:65535>=f?b+3:b+4}return b}var Ya="undefined"!==typeof TextDecoder?new TextDecoder("utf-16le"):void 0;function ab(a,b){var c=a>>1;for(var f=c+b/2;!(c>=f)&&bb[c];)++c;c<<=1;if(32=b/2);++f){var h=cb[a+2*f>>1];if(0==h)break;c+=String.fromCharCode(h)}return c} -function db(a,b,c){void 0===c&&(c=2147483647);if(2>c)return 0;c-=2;var f=b;c=c<2*a.length?c/2:a.length;for(var h=0;h>1]=a.charCodeAt(h),b+=2;cb[b>>1]=0;return b-f}function eb(a){return 2*a.length}function jb(a,b){for(var c=0,f="";!(c>=b/4);){var h=O[a+4*c>>2];if(0==h)break;++c;65536<=h?(h-=65536,f+=String.fromCharCode(55296|h>>10,56320|h&1023)):f+=String.fromCharCode(h)}return f} -function kb(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var f=b;c=f+c-4;for(var h=0;h=l){var n=a.charCodeAt(++h);l=65536+((l&1023)<<10)|n&1023}O[b>>2]=l;b+=4;if(b+4>c)break}O[b>>2]=0;return b-f}function lb(a){for(var b=0,c=0;c=f&&++c;b+=4}return b}var mb,nb,G,cb,bb,O,ob,U,pb; -function qb(){var a=Sa.buffer;mb=a;t.HEAP8=nb=new Int8Array(a);t.HEAP16=cb=new Int16Array(a);t.HEAP32=O=new Int32Array(a);t.HEAPU8=G=new Uint8Array(a);t.HEAPU16=bb=new Uint16Array(a);t.HEAPU32=ob=new Uint32Array(a);t.HEAPF32=U=new Float32Array(a);t.HEAPF64=pb=new Float64Array(a)}var rb,sb=[],tb=[],ub=[],La=0;function vb(){var a=t.preRun.shift();sb.unshift(a)}var wb=0,xb=null,zb=null;t.preloadedImages={};t.preloadedAudios={}; -function Ra(a){if(t.onAbort)t.onAbort(a);a="Aborted("+a+")";Ma(a);Ua=!0;a=new WebAssembly.RuntimeError(a+". Build with -s ASSERTIONS=1 for more info.");ha(a);throw a;}function Ab(){return Bb.startsWith("data:application/octet-stream;base64,")}var Bb;Bb="canvaskit.wasm";if(!Ab()){var Cb=Bb;Bb=t.locateFile?t.locateFile(Cb,Ca):Ca+Cb}function Db(){var a=Bb;try{if(a==Bb&&Qa)return new Uint8Array(Qa);if(Fa)return Fa(a);throw"both async and sync fetching of the wasm failed";}catch(b){Ra(b)}} -function Eb(){if(!Qa&&(ya||za)){if("function"===typeof fetch&&!Bb.startsWith("file://"))return fetch(Bb,{credentials:"same-origin"}).then(function(a){if(!a.ok)throw"failed to load wasm binary file at '"+Bb+"'";return a.arrayBuffer()}).catch(function(){return Db()});if(Ea)return new Promise(function(a,b){Ea(Bb,function(c){a(new Uint8Array(c))},b)})}return Promise.resolve().then(function(){return Db()})} -function Fb(a){for(;0>2]=b};this.jg=function(b){O[this.Qd+8>>2]=b};this.kg=function(){O[this.Qd>>2]=0};this.ig=function(){nb[this.Qd+12>>0]=0};this.lg=function(){nb[this.Qd+13>>0]=0};this.Xf=function(b,c){this.mg(b);this.jg(c);this.kg();this.ig();this.lg()}}var Ib=0,Jb={},Kb=[null,[],[]],Lb={},Mb={};function Nb(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function Ob(a){return this.fromWireType(ob[a>>2])}var Pb={},Qb={},Rb={}; -function Sb(a){if(void 0===a)return"_unknown";a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?"_"+a:a}function Tb(a,b){a=Sb(a);return function(){null;return b.apply(this,arguments)}} -function Ub(a){var b=Error,c=Tb(a,function(f){this.name=a;this.message=f;f=Error(f).stack;void 0!==f&&(this.stack=this.toString()+"\n"+f.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(b.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:this.name+": "+this.message};return c}var Vb=void 0;function Wb(a){throw new Vb(a);} -function Xb(a,b,c){function f(q){q=c(q);q.length!==a.length&&Wb("Mismatched type converter count");for(var w=0;wb,a;jc=new FinalizationGroup(function(b){for(var c=b.next();!c.done;c=b.next())c=c.value,c.Qd?lc(c):console.warn("object already deleted: "+c.Qd)});mc=b=>{jc.register(b,b.Ld,b.Ld);return b};kc=b=>{jc.unregister(b.Ld)};return mc(a)}var nc=void 0,oc=[];function pc(){for(;oc.length;){var a=oc.pop();a.Ld.De=!1;a["delete"]()}}function qc(){} -var rc={};function sc(a,b,c){if(void 0===a[b].Zd){var f=a[b];a[b]=function(){a[b].Zd.hasOwnProperty(arguments.length)||X("Function '"+c+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+a[b].Zd+")!");return a[b].Zd[arguments.length].apply(this,arguments)};a[b].Zd=[];a[b].Zd[f.Be]=f}} -function tc(a,b,c){t.hasOwnProperty(a)?((void 0===c||void 0!==t[a].Zd&&void 0!==t[a].Zd[c])&&X("Cannot register public name '"+a+"' twice"),sc(t,a,a),t.hasOwnProperty(c)&&X("Cannot register multiple overloads of a function with the same number of arguments ("+c+")!"),t[a].Zd[c]=b):(t[a]=b,void 0!==c&&(t[a].Fg=c))}function uc(a,b,c,f,h,l,n,q){this.name=a;this.constructor=b;this.Ee=c;this.le=f;this.ie=h;this.Pf=l;this.Pe=n;this.Jf=q;this.fg=[]} -function vc(a,b,c){for(;b!==c;)b.Pe||X("Expected null or instance of "+c.name+", got an instance of "+b.name),a=b.Pe(a),b=b.ie;return a}function wc(a,b){if(null===b)return this.gf&&X("null is not a valid "+this.name),0;b.Ld||X('Cannot pass "'+xc(b)+'" as a '+this.name);b.Ld.Qd||X("Cannot pass deleted object as a pointer of type "+this.name);return vc(b.Ld.Qd,b.Ld.Xd.Sd,this.Sd)} -function yc(a,b){if(null===b){this.gf&&X("null is not a valid "+this.name);if(this.Ue){var c=this.hf();null!==a&&a.push(this.le,c);return c}return 0}b.Ld||X('Cannot pass "'+xc(b)+'" as a '+this.name);b.Ld.Qd||X("Cannot pass deleted object as a pointer of type "+this.name);!this.Te&&b.Ld.Xd.Te&&X("Cannot convert argument of type "+(b.Ld.ge?b.Ld.ge.name:b.Ld.Xd.name)+" to parameter type "+this.name);c=vc(b.Ld.Qd,b.Ld.Xd.Sd,this.Sd);if(this.Ue)switch(void 0===b.Ld.$d&&X("Passing raw pointer to smart pointer is illegal"), -this.qg){case 0:b.Ld.ge===this?c=b.Ld.$d:X("Cannot convert argument of type "+(b.Ld.ge?b.Ld.ge.name:b.Ld.Xd.name)+" to parameter type "+this.name);break;case 1:c=b.Ld.$d;break;case 2:if(b.Ld.ge===this)c=b.Ld.$d;else{var f=b.clone();c=this.gg(c,zc(function(){f["delete"]()}));null!==a&&a.push(this.le,c)}break;default:X("Unsupporting sharing policy")}return c} -function Ac(a,b){if(null===b)return this.gf&&X("null is not a valid "+this.name),0;b.Ld||X('Cannot pass "'+xc(b)+'" as a '+this.name);b.Ld.Qd||X("Cannot pass deleted object as a pointer of type "+this.name);b.Ld.Xd.Te&&X("Cannot convert argument of type "+b.Ld.Xd.name+" to parameter type "+this.name);return vc(b.Ld.Qd,b.Ld.Xd.Sd,this.Sd)}function Bc(a,b,c){if(b===c)return a;if(void 0===c.ie)return null;a=Bc(a,b,c.ie);return null===a?null:c.Jf(a)}var Cc={}; -function Dc(a,b){for(void 0===b&&X("ptr should not be undefined");a.ie;)b=a.Pe(b),a=a.ie;return Cc[b]}function Ec(a,b){b.Xd&&b.Qd||Wb("makeClassHandle requires ptr and ptrType");!!b.ge!==!!b.$d&&Wb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return mc(Object.create(a,{Ld:{value:b}}))} -function Fc(a,b,c,f,h,l,n,q,w,x,J){this.name=a;this.Sd=b;this.gf=c;this.Te=f;this.Ue=h;this.eg=l;this.qg=n;this.vf=q;this.hf=w;this.gg=x;this.le=J;h||void 0!==b.ie?this.toWireType=yc:(this.toWireType=f?wc:Ac,this.fe=null)}function Gc(a,b,c){t.hasOwnProperty(a)||Wb("Replacing nonexistant public symbol");void 0!==t[a].Zd&&void 0!==c?t[a].Zd[c]=b:(t[a]=b,t[a].Be=c)} -function Hc(a,b){var c=[];return function(){c.length=arguments.length;for(var f=0;fl&&X("argTypes array size mismatch! Must at least get return value and 'this' types!");var n=null!==b[1]&&null!==c,q=!1;for(c=1;c>2)+f]);return c}var Xc=[],Yc=[{},{value:void 0},{value:null},{value:!0},{value:!1}];function Zc(a){4>2])};case 3:return function(c){return this.fromWireType(pb[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} -function dd(a,b,c){switch(b){case 0:return c?function(f){return nb[f]}:function(f){return G[f]};case 1:return c?function(f){return cb[f>>1]}:function(f){return bb[f>>1]};case 2:return c?function(f){return O[f>>2]}:function(f){return ob[f>>2]};default:throw new TypeError("Unknown integer type: "+a);}}var ed={};function fd(a){var b=ed[a];return void 0===b?gc(a):b}var gd=[]; -function hd(){function a(b){b.$$$embind_global$$$=b;var c="object"===typeof $$$embind_global$$$&&b.$$$embind_global$$$===b;c||delete b.$$$embind_global$$$;return c}if("object"===typeof globalThis)return globalThis;if("object"===typeof $$$embind_global$$$)return $$$embind_global$$$;"object"===typeof global&&a(global)?$$$embind_global$$$=global:"object"===typeof self&&a(self)&&($$$embind_global$$$=self);if("object"===typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object."); -}function jd(a){var b=gd.length;gd.push(a);return b}function kd(a,b){for(var c=Array(a),f=0;f>2)+f],"parameter "+f);return c}var ld=[];function md(a){var b=Array(a+1);return function(c,f,h){b[0]=c;for(var l=0;l>2)+l],"parameter "+l);b[l+1]=n.readValueFromPointer(h);h+=n.argPackAdvance}c=new (c.bind.apply(c,b));return zc(c)}}var nd={},od;od=Ba?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:()=>performance.now(); -function pd(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,f){b.vertexAttribDivisorANGLE(c,f)},a.drawArraysInstanced=function(c,f,h,l){b.drawArraysInstancedANGLE(c,f,h,l)},a.drawElementsInstanced=function(c,f,h,l,n){b.drawElementsInstancedANGLE(c,f,h,l,n)})} -function qd(a){var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=function(){return b.createVertexArrayOES()},a.deleteVertexArray=function(c){b.deleteVertexArrayOES(c)},a.bindVertexArray=function(c){b.bindVertexArrayOES(c)},a.isVertexArray=function(c){return b.isVertexArrayOES(c)})}function rd(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,f){b.drawBuffersWEBGL(c,f)})} -var sd=1,td=[],ud=[],vd=[],wd=[],la=[],xd=[],yd=[],qa=[],zd=[],Ad=[],Bd={},Cd={},Dd=4;function Ed(a){Hd||(Hd=a)}function ka(a){for(var b=sd++,c=a.length;ca.version||!b.qf)b.qf=b.getExtension("EXT_disjoint_timer_query");b.Eg=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} -var v,Hd,Kd=[];function Ld(a,b,c,f){for(var h=0;h>2]=n}} -function Md(a,b){if(b){var c=void 0;switch(a){case 36346:c=1;break;case 36344:return;case 34814:case 36345:c=0;break;case 34466:var f=Y.getParameter(34467);c=f?f.length:0;break;case 33309:if(2>v.version){Ed(1282);return}c=2*(Y.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>v.version){Ed(1280);return}c=33307==a?3:0}if(void 0===c)switch(f=Y.getParameter(a),typeof f){case "number":c=f;break;case "boolean":c=f?1:0;break;case "string":Ed(1280);return;case "object":if(null===f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:c= -0;break;default:Ed(1280);return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];return}try{c=f.name|0}catch(h){Ed(1280);Ma("GL_INVALID_ENUM in glGet0v: Unknown object returned from WebGL getParameter("+a+")! (error: "+h+")");return}}break;default:Ed(1280);Ma("GL_INVALID_ENUM in glGet0v: Native code calling glGet0v("+a+") and it returns "+f+" of type "+typeof f+"!");return}O[b>>2]=c}else Ed(1281)} -function Nd(a){var b=ra(a)+1,c=Od(b);sa(a,G,c,b);return c}function Pd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function Qd(a){a-=5120;return 0==a?nb:1==a?G:2==a?cb:4==a?O:6==a?U:5==a||28922==a||28520==a||30779==a||30782==a?ob:bb}function Rd(a,b,c,f,h){a=Qd(a);var l=31-Math.clz32(a.BYTES_PER_ELEMENT),n=Dd;return a.subarray(h>>l,h+f*(c*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*(1<>l)} -function Z(a){var b=Y.Gf;if(b){var c=b.Oe[a];"number"===typeof c&&(b.Oe[a]=c=Y.getUniformLocation(b,b.wf[a]+(0oa?-1:0=n(S,A)?0>=n(L,A)?A.getFullYear()+1:A.getFullYear():A.getFullYear()-1}var x=O[f+40>>2];f={yg:O[f>>2],xg:O[f+4>>2],Ye:O[f+8>>2],Ne:O[f+12>>2],Fe:O[f+16>>2],be:O[f+20>>2],Ze:O[f+24>>2],$e:O[f+28>>2],Ig:O[f+32>>2],wg:O[f+ -36>>2],zg:x?Xa(x):""};c=Xa(c);x={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var J in x)c=c.replace(new RegExp(J,"g"),x[J]);var K="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "), -Q="January February March April May June July August September October November December".split(" ");x={"%a":function(A){return K[A.Ze].substring(0,3)},"%A":function(A){return K[A.Ze]},"%b":function(A){return Q[A.Fe].substring(0,3)},"%B":function(A){return Q[A.Fe]},"%C":function(A){return l((A.be+1900)/100|0,2)},"%d":function(A){return l(A.Ne,2)},"%e":function(A){return h(A.Ne,2," ")},"%g":function(A){return w(A).toString().substring(2)},"%G":function(A){return w(A)},"%H":function(A){return l(A.Ye, -2)},"%I":function(A){A=A.Ye;0==A?A=12:12A.Ye?"AM":"PM"},"%S":function(A){return l(A.yg,2)},"%t":function(){return"\t"},"%u":function(A){return A.Ze||7},"%U":function(A){var L=new Date(A.be+1900,0,1),S=0===L.getDay()?L:ae(L,7-L.getDay());A=new Date(A.be+1900,A.Fe,A.Ne);return 0> -n(S,A)?l(Math.ceil((31-S.getDate()+(Yd(Xd(A.getFullYear())?Zd:$d,A.getMonth()-1)-31)+A.getDate())/7),2):0===n(S,L)?"01":"00"},"%V":function(A){var L=new Date(A.be+1901,0,4),S=q(new Date(A.be+1900,0,4));L=q(L);var T=ae(new Date(A.be+1900,0,1),A.$e);return 0>n(T,S)?"53":0>=n(L,T)?"01":l(Math.ceil((S.getFullYear()n(S,A)?l(Math.ceil((31-S.getDate()+(Yd(Xd(A.getFullYear())?Zd:$d,A.getMonth()-1)-31)+A.getDate())/7),2):0===n(S,L)?"01":"00"},"%y":function(A){return(A.be+1900).toString().substring(2)},"%Y":function(A){return A.be+1900},"%z":function(A){A=A.wg;var L=0<=A;A=Math.abs(A)/60;return(L?"+":"-")+String("0000"+(A/60*100+A%60)).slice(-4)},"%Z":function(A){return A.zg},"%%":function(){return"%"}};for(J in x)c.includes(J)&&(c=c.replace(new RegExp(J,"g"),x[J](f)));J=ce(c); -if(J.length>b)return 0;nb.set(J,a);return J.length-1}Vb=t.InternalError=Ub("InternalError");for(var de=Array(256),ee=0;256>ee;++ee)de[ee]=String.fromCharCode(ee);fc=de;hc=t.BindingError=Ub("BindingError");qc.prototype.isAliasOf=function(a){if(!(this instanceof qc&&a instanceof qc))return!1;var b=this.Ld.Xd.Sd,c=this.Ld.Qd,f=a.Ld.Xd.Sd;for(a=a.Ld.Qd;b.ie;)c=b.Pe(c),b=b.ie;for(;f.ie;)a=f.Pe(a),f=f.ie;return b===f&&c===a}; -qc.prototype.clone=function(){this.Ld.Qd||ic(this);if(this.Ld.Me)return this.Ld.count.value+=1,this;var a=mc,b=Object,c=b.create,f=Object.getPrototypeOf(this),h=this.Ld;a=a(c.call(b,f,{Ld:{value:{count:h.count,De:h.De,Me:h.Me,Qd:h.Qd,Xd:h.Xd,$d:h.$d,ge:h.ge}}}));a.Ld.count.value+=1;a.Ld.De=!1;return a};qc.prototype["delete"]=function(){this.Ld.Qd||ic(this);this.Ld.De&&!this.Ld.Me&&X("Object already scheduled for deletion");kc(this);lc(this.Ld);this.Ld.Me||(this.Ld.$d=void 0,this.Ld.Qd=void 0)}; -qc.prototype.isDeleted=function(){return!this.Ld.Qd};qc.prototype.deleteLater=function(){this.Ld.Qd||ic(this);this.Ld.De&&!this.Ld.Me&&X("Object already scheduled for deletion");oc.push(this);1===oc.length&&nc&&nc(pc);this.Ld.De=!0;return this};Fc.prototype.Qf=function(a){this.vf&&(a=this.vf(a));return a};Fc.prototype.nf=function(a){this.le&&this.le(a)};Fc.prototype.argPackAdvance=8;Fc.prototype.readValueFromPointer=Ob;Fc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; -Fc.prototype.fromWireType=function(a){function b(){return this.Ue?Ec(this.Sd.Ee,{Xd:this.eg,Qd:c,ge:this,$d:a}):Ec(this.Sd.Ee,{Xd:this,Qd:a})}var c=this.Qf(a);if(!c)return this.nf(a),null;var f=Dc(this.Sd,c);if(void 0!==f){if(0===f.Ld.count.value)return f.Ld.Qd=c,f.Ld.$d=a,f.clone();f=f.clone();this.nf(a);return f}f=this.Sd.Pf(c);f=rc[f];if(!f)return b.call(this);f=this.Te?f.Ef:f.pointerType;var h=Bc(c,this.Sd,f.Sd);return null===h?b.call(this):this.Ue?Ec(f.Sd.Ee,{Xd:f,Qd:h,ge:this,$d:a}):Ec(f.Sd.Ee, -{Xd:f,Qd:h})};t.getInheritedInstanceCount=function(){return Object.keys(Cc).length};t.getLiveInheritedInstances=function(){var a=[],b;for(b in Cc)Cc.hasOwnProperty(b)&&a.push(Cc[b]);return a};t.flushPendingDeletes=pc;t.setDelayFunction=function(a){nc=a;oc.length&&nc&&nc(pc)};Qc=t.UnboundTypeError=Ub("UnboundTypeError");t.count_emval_handles=function(){for(var a=0,b=5;bfe;++fe)Kd.push(Array(fe));var ge=new Float32Array(288);for(fe=0;288>fe;++fe)Sd[fe]=ge.subarray(0,fe+1);var he=new Int32Array(288);for(fe=0;288>fe;++fe)Td[fe]=he.subarray(0,fe+1);function ce(a){var b=Array(ra(a)+1);sa(a,b,0,b.length);return b} -var ze={Lb:function(a){return Od(a+16)+16},Eb:function(a,b,c){(new Hb(a)).Xf(b,c);Ib++;throw a;},P:function(){return 0},zb:function(){},xb:function(){},Cb:function(){return 0},wb:function(){},tb:function(a,b,c,f,h,l){l<<=12;if(0!==(f&16)&&0!==a%65536)b=-28;else if(0!==(f&32)){a=65536*Math.ceil(b/65536);var n=ie(65536,a);n?(G.fill(0,n,n+a),a=n):a=0;a?(Jb[a]={cg:a,bg:b,Df:!0,fd:h,Gg:c,flags:f,offset:l},b=a):b=-48}else b=-52;return b},sb:function(a,b){var c=Jb[a];0!==b&&c?(b===c.bg&&(Jb[a]=null,c.Df&& -Tc(c.cg)),a=0):a=-28;return a},Q:function(){},yb:function(){},x:function(a){var b=Mb[a];delete Mb[a];var c=b.hf,f=b.le,h=b.rf,l=h.map(function(n){return n.Uf}).concat(h.map(function(n){return n.og}));Xb([a],l,function(n){var q={};h.forEach(function(w,x){var J=n[x],K=w.Sf,Q=w.Tf,A=n[x+h.length],L=w.ng,S=w.pg;q[w.Lf]={read:function(T){return J.fromWireType(K(Q,T))},write:function(T,oa){var ta=[];L(S,T,A.toWireType(ta,oa));Nb(ta)}}});return[{name:b.name,fromWireType:function(w){var x={},J;for(J in q)x[J]= -q[J].read(w);f(w);return x},toWireType:function(w,x){for(var J in q)if(!(J in x))throw new TypeError('Missing field: "'+J+'"');var K=c();for(J in q)q[J].write(K,x[J]);null!==w&&w.push(f,K);return K},argPackAdvance:8,readValueFromPointer:Ob,fe:f}]})},mb:function(){},Fb:function(a,b,c,f,h){var l=ec(c);b=gc(b);dc(a,{name:b,fromWireType:function(n){return!!n},toWireType:function(n,q){return q?f:h},argPackAdvance:8,readValueFromPointer:function(n){if(1===c)var q=nb;else if(2===c)q=cb;else if(4===c)q= -O;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(q[n>>l])},fe:null})},l:function(a,b,c,f,h,l,n,q,w,x,J,K,Q){J=gc(J);l=Pc(h,l);q&&(q=Pc(n,q));x&&(x=Pc(w,x));Q=Pc(K,Q);var A=Sb(J);tc(A,function(){Uc("Cannot construct "+J+" due to unbound types",[f])});Xb([a,b,c],f?[f]:[],function(L){L=L[0];if(f){var S=L.Sd;var T=S.Ee}else T=qc.prototype;L=Tb(A,function(){if(Object.getPrototypeOf(this)!==oa)throw new hc("Use 'new' to construct "+J);if(void 0===ta.oe)throw new hc(J+ -" has no accessible constructor");var hb=ta.oe[arguments.length];if(void 0===hb)throw new hc("Tried to invoke ctor of "+J+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(ta.oe).toString()+") parameters instead!");return hb.apply(this,arguments)});var oa=Object.create(T,{constructor:{value:L}});L.prototype=oa;var ta=new uc(J,L,oa,Q,S,l,q,x);S=new Fc(J,ta,!0,!1,!1);T=new Fc(J+"*",ta,!1,!1,!1);var gb=new Fc(J+" const*",ta,!1,!0,!1);rc[a]={pointerType:T,Ef:gb};Gc(A, -L);return[S,T,gb]})},e:function(a,b,c,f,h,l,n){var q=Wc(c,f);b=gc(b);l=Pc(h,l);Xb([],[a],function(w){function x(){Uc("Cannot call "+J+" due to unbound types",q)}w=w[0];var J=w.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var K=w.Sd.constructor;void 0===K[b]?(x.Be=c-1,K[b]=x):(sc(K,b,J),K[b].Zd[c-1]=x);Xb([],q,function(Q){Q=[Q[0],null].concat(Q.slice(1));Q=Vc(J,Q,null,l,n);void 0===K[b].Zd?(Q.Be=c-1,K[b]=Q):K[b].Zd[c-1]=Q;return[]});return[]})},u:function(a,b,c,f,h,l){0{Uc("Cannot construct "+q.name+" due to unbound types",n)};Xb([],n,function(x){x.splice(1,0,null);q.Sd.oe[b-1]=Vc(w,x,null,h, -l);return[]});return[]})},d:function(a,b,c,f,h,l,n,q){var w=Wc(c,f);b=gc(b);l=Pc(h,l);Xb([],[a],function(x){function J(){Uc("Cannot call "+K+" due to unbound types",w)}x=x[0];var K=x.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);q&&x.Sd.fg.push(b);var Q=x.Sd.Ee,A=Q[b];void 0===A||void 0===A.Zd&&A.className!==x.name&&A.Be===c-2?(J.Be=c-2,J.className=x.name,Q[b]=J):(sc(Q,b,K),Q[b].Zd[c-2]=J);Xb([],w,function(L){L=Vc(K,L,x,l,n);void 0===Q[b].Zd?(L.Be=c-2,Q[b]=L):Q[b].Zd[c-2]=L;return[]}); -return[]})},V:function(a,b,c){a=gc(a);Xb([],[b],function(f){f=f[0];t[a]=f.fromWireType(c);return[]})},Db:function(a,b){b=gc(b);dc(a,{name:b,fromWireType:function(c){var f=$c(c);Zc(c);return f},toWireType:function(c,f){return zc(f)},argPackAdvance:8,readValueFromPointer:Ob,fe:null})},k:function(a,b,c,f){function h(){}c=ec(c);b=gc(b);h.values={};dc(a,{name:b,constructor:h,fromWireType:function(l){return this.constructor.values[l]},toWireType:function(l,n){return n.value},argPackAdvance:8,readValueFromPointer:ad(b, -c,f),fe:null});tc(b,h)},j:function(a,b,c){var f=bd(a,"enum");b=gc(b);a=f.constructor;f=Object.create(f.constructor.prototype,{value:{value:c},constructor:{value:Tb(f.name+"_"+b,function(){})}});a.values[c]=f;a[b]=f},S:function(a,b,c){c=ec(c);b=gc(b);dc(a,{name:b,fromWireType:function(f){return f},toWireType:function(f,h){return h},argPackAdvance:8,readValueFromPointer:cd(b,c),fe:null})},t:function(a,b,c,f,h,l){var n=Wc(b,c);a=gc(a);h=Pc(f,h);tc(a,function(){Uc("Cannot call "+a+" due to unbound types", -n)},b-1);Xb([],n,function(q){q=[q[0],null].concat(q.slice(1));Gc(a,Vc(a,q,null,h,l),b-1);return[]})},w:function(a,b,c,f,h){b=gc(b);-1===h&&(h=4294967295);h=ec(c);var l=q=>q;if(0===f){var n=32-8*c;l=q=>q<>>n}c=b.includes("unsigned")?function(q,w){return w>>>0}:function(q,w){return w};dc(a,{name:b,fromWireType:l,toWireType:c,argPackAdvance:8,readValueFromPointer:dd(b,h,0!==f),fe:null})},p:function(a,b,c){function f(l){l>>=2;var n=ob;return new h(mb,n[l+1],n[l])}var h=[Int8Array,Uint8Array,Int16Array, -Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=gc(c);dc(a,{name:c,fromWireType:f,argPackAdvance:8,readValueFromPointer:f},{Wf:!0})},o:function(a,b,c,f,h,l,n,q,w,x,J,K){c=gc(c);l=Pc(h,l);q=Pc(n,q);x=Pc(w,x);K=Pc(J,K);Xb([a],[b],function(Q){Q=Q[0];return[new Fc(c,Q.Sd,!1,!1,!0,Q,f,l,q,x,K)]})},R:function(a,b){b=gc(b);var c="std::string"===b;dc(a,{name:b,fromWireType:function(f){var h=ob[f>>2];if(c)for(var l=f+4,n=0;n<=h;++n){var q=f+4+n;if(n==h||0==G[q]){l=Xa(l,q-l);if(void 0=== -w)var w=l;else w+=String.fromCharCode(0),w+=l;l=q+1}}else{w=Array(h);for(n=0;nra(h):()=>h.length)(),q=Od(4+n+1);ob[q>>2]=n;if(c&&l)sa(h,G,q+4,n+1);else if(l)for(l=0;lbb;var q=1}else 4===b&&(f=jb,h=kb,l=lb,n=()=>ob,q=2);dc(a,{name:c,fromWireType:function(w){for(var x=ob[w>>2],J=n(),K,Q=w+4,A=0;A<=x;++A){var L=w+4+A*b;if(A==x||0==J[L>>q])Q=f(Q,L-Q),void 0===K?K=Q:(K+=String.fromCharCode(0), -K+=Q),Q=L+b}Tc(w);return K},toWireType:function(w,x){"string"!==typeof x&&X("Cannot pass non-string to C++ string type "+c);var J=l(x),K=Od(4+J+b);ob[K>>2]=J>>q;h(x,K+4,J+b);null!==w&&w.push(Tc,K);return K},argPackAdvance:8,readValueFromPointer:Ob,fe:function(w){Tc(w)}})},y:function(a,b,c,f,h,l){Mb[a]={name:gc(b),hf:Pc(c,f),le:Pc(h,l),rf:[]}},g:function(a,b,c,f,h,l,n,q,w,x){Mb[a].rf.push({Lf:gc(b),Uf:c,Sf:Pc(f,h),Tf:l,og:n,ng:Pc(q,w),pg:x})},Gb:function(a,b){b=gc(b);dc(a,{Zf:!0,name:b,argPackAdvance:0, -fromWireType:function(){},toWireType:function(){}})},pb:function(){throw"longjmp";},A:function(a,b,c){a=$c(a);b=bd(b,"emval::as");var f=[],h=zc(f);O[c>>2]=h;return b.toWireType(f,a)},M:function(a,b,c,f,h){a=gd[a];b=$c(b);c=fd(c);var l=[];O[f>>2]=zc(l);return a(b,c,l,h)},B:function(a,b,c,f){a=gd[a];b=$c(b);c=fd(c);a(b,c,null,f)},D:Zc,Bb:function(a){if(0===a)return zc(hd());a=fd(a);return zc(hd()[a])},z:function(a,b){var c=kd(a,b),f=c[0];b=f.name+"_$"+c.slice(1).map(function(n){return n.name}).join("_")+ -"$";var h=ld[b];if(void 0!==h)return h;var l=Array(a-1);h=jd((n,q,w,x)=>{for(var J=0,K=0;K>2]=28,-1;O[b>>2]=a/1E3|0;O[b+4>>2]=a%1E3*1E6|0;return 0},_c:function(a){Y.activeTexture(a)},$c:function(a,b){Y.attachShader(ud[a],xd[b])},ad:function(a,b,c){Y.bindAttribLocation(ud[a], -b,Xa(c))},Y:function(a,b){35051==a?Y.ff=b:35052==a&&(Y.Ce=b);Y.bindBuffer(a,td[b])},X:function(a,b){Y.bindFramebuffer(a,vd[b])},cc:function(a,b){Y.bindRenderbuffer(a,wd[b])},Qb:function(a,b){Y.bindSampler(a,zd[b])},Z:function(a,b){Y.bindTexture(a,la[b])},wc:function(a){Y.bindVertexArray(yd[a])},zc:function(a){Y.bindVertexArray(yd[a])},_:function(a,b,c,f){Y.blendColor(a,b,c,f)},$:function(a){Y.blendEquation(a)},aa:function(a,b){Y.blendFunc(a,b)},Xb:function(a,b,c,f,h,l,n,q,w,x){Y.blitFramebuffer(a, -b,c,f,h,l,n,q,w,x)},ba:function(a,b,c,f){2<=v.version?c?Y.bufferData(a,G,f,c,b):Y.bufferData(a,b,f):Y.bufferData(a,c?G.subarray(c,c+b):b,f)},ca:function(a,b,c,f){2<=v.version?Y.bufferSubData(a,b,G,f,c):Y.bufferSubData(a,b,G.subarray(f,f+c))},dc:function(a){return Y.checkFramebufferStatus(a)},L:function(a){Y.clear(a)},W:function(a,b,c,f){Y.clearColor(a,b,c,f)},O:function(a){Y.clearStencil(a)},db:function(a,b,c,f){return Y.clientWaitSync(Ad[a],b,(c>>>0)+4294967296*f)},da:function(a,b,c,f){Y.colorMask(!!a, -!!b,!!c,!!f)},ea:function(a){Y.compileShader(xd[a])},fa:function(a,b,c,f,h,l,n,q){2<=v.version?Y.Ce?Y.compressedTexImage2D(a,b,c,f,h,l,n,q):Y.compressedTexImage2D(a,b,c,f,h,l,G,q,n):Y.compressedTexImage2D(a,b,c,f,h,l,q?G.subarray(q,q+n):null)},ga:function(a,b,c,f,h,l,n,q,w){2<=v.version?Y.Ce?Y.compressedTexSubImage2D(a,b,c,f,h,l,n,q,w):Y.compressedTexSubImage2D(a,b,c,f,h,l,n,G,w,q):Y.compressedTexSubImage2D(a,b,c,f,h,l,n,w?G.subarray(w,w+q):null)},ha:function(a,b,c,f,h,l,n,q){Y.copyTexSubImage2D(a, -b,c,f,h,l,n,q)},ia:function(){var a=ka(ud),b=Y.createProgram();b.name=a;b.Xe=b.Ve=b.We=0;b.kf=1;ud[a]=b;return a},ja:function(a){var b=ka(xd);xd[b]=Y.createShader(a);return b},ka:function(a){Y.cullFace(a)},la:function(a,b){for(var c=0;c>2],h=td[f];h&&(Y.deleteBuffer(h),h.name=0,td[f]=null,f==Y.ff&&(Y.ff=0),f==Y.Ce&&(Y.Ce=0))}},ec:function(a,b){for(var c=0;c>2],h=vd[f];h&&(Y.deleteFramebuffer(h),h.name=0,vd[f]=null)}},ma:function(a){if(a){var b=ud[a];b?(Y.deleteProgram(b), -b.name=0,ud[a]=null):Ed(1281)}},fc:function(a,b){for(var c=0;c>2],h=wd[f];h&&(Y.deleteRenderbuffer(h),h.name=0,wd[f]=null)}},Rb:function(a,b){for(var c=0;c>2],h=zd[f];h&&(Y.deleteSampler(h),h.name=0,zd[f]=null)}},na:function(a){if(a){var b=xd[a];b?(Y.deleteShader(b),xd[a]=null):Ed(1281)}},Zb:function(a){if(a){var b=Ad[a];b?(Y.deleteSync(b),b.name=0,Ad[a]=null):Ed(1281)}},oa:function(a,b){for(var c=0;c>2],h=la[f];h&&(Y.deleteTexture(h), -h.name=0,la[f]=null)}},xc:function(a,b){for(var c=0;c>2];Y.deleteVertexArray(yd[f]);yd[f]=null}},Ac:function(a,b){for(var c=0;c>2];Y.deleteVertexArray(yd[f]);yd[f]=null}},pa:function(a){Y.depthMask(!!a)},qa:function(a){Y.disable(a)},ra:function(a){Y.disableVertexAttribArray(a)},sa:function(a,b,c){Y.drawArrays(a,b,c)},uc:function(a,b,c,f){Y.drawArraysInstanced(a,b,c,f)},sc:function(a,b,c,f,h){Y.pf.drawArraysInstancedBaseInstanceWEBGL(a,b,c,f,h)},qc:function(a, -b){for(var c=Kd[a],f=0;f>2];Y.drawBuffers(c)},ta:function(a,b,c,f){Y.drawElements(a,b,c,f)},vc:function(a,b,c,f,h){Y.drawElementsInstanced(a,b,c,f,h)},tc:function(a,b,c,f,h,l,n){Y.pf.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,f,h,l,n)},kc:function(a,b,c,f,h,l){Y.drawElements(a,f,h,l)},ua:function(a){Y.enable(a)},va:function(a){Y.enableVertexAttribArray(a)},Vb:function(a,b){return(a=Y.fenceSync(a,b))?(b=ka(Ad),a.name=b,Ad[b]=a,b):0},wa:function(){Y.finish()},xa:function(){Y.flush()}, -gc:function(a,b,c,f){Y.framebufferRenderbuffer(a,b,c,wd[f])},hc:function(a,b,c,f,h){Y.framebufferTexture2D(a,b,c,la[f],h)},ya:function(a){Y.frontFace(a)},za:function(a,b){Ld(a,b,"createBuffer",td)},ic:function(a,b){Ld(a,b,"createFramebuffer",vd)},jc:function(a,b){Ld(a,b,"createRenderbuffer",wd)},Sb:function(a,b){Ld(a,b,"createSampler",zd)},Aa:function(a,b){Ld(a,b,"createTexture",la)},yc:function(a,b){Ld(a,b,"createVertexArray",yd)},Bc:function(a,b){Ld(a,b,"createVertexArray",yd)},_b:function(a){Y.generateMipmap(a)}, -Ba:function(a,b,c){c?O[c>>2]=Y.getBufferParameter(a,b):Ed(1281)},Ca:function(){var a=Y.getError()||Hd;Hd=0;return a},$b:function(a,b,c,f){a=Y.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;O[f>>2]=a},E:function(a,b){Md(a,b)},Da:function(a,b,c,f){a=Y.getProgramInfoLog(ud[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Ea:function(a,b,c){if(c)if(a>=sd)Ed(1281);else if(a=ud[a],35716==b)a=Y.getProgramInfoLog(a), -null===a&&(a="(unknown error)"),O[c>>2]=a.length+1;else if(35719==b){if(!a.Xe)for(b=0;b>2]=a.Xe}else if(35722==b){if(!a.Ve)for(b=0;b>2]=a.Ve}else if(35381==b){if(!a.We)for(b=0;b>2]=a.We}else O[c>>2]=Y.getProgramParameter(a, -b);else Ed(1281)},ac:function(a,b,c){c?O[c>>2]=Y.getRenderbufferParameter(a,b):Ed(1281)},Fa:function(a,b,c,f){a=Y.getShaderInfoLog(xd[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Nb:function(a,b,c,f){a=Y.getShaderPrecisionFormat(a,b);O[c>>2]=a.rangeMin;O[c+4>>2]=a.rangeMax;O[f>>2]=a.precision},Ga:function(a,b,c){c?35716==b?(a=Y.getShaderInfoLog(xd[a]),null===a&&(a="(unknown error)"),O[c>>2]=a?a.length+1:0):35720==b?(a=Y.getShaderSource(xd[a]),O[c>>2]=a?a.length+1:0): -O[c>>2]=Y.getShaderParameter(xd[a],b):Ed(1281)},J:function(a){var b=Bd[a];if(!b){switch(a){case 7939:b=Y.getSupportedExtensions()||[];b=b.concat(b.map(function(f){return"GL_"+f}));b=Nd(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=Y.getParameter(a))||Ed(1280);b=b&&Nd(b);break;case 7938:b=Y.getParameter(7938);b=2<=v.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=Nd(b);break;case 35724:b=Y.getParameter(35724);var c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/); -null!==c&&(3==c[1].length&&(c[1]+="0"),b="OpenGL ES GLSL ES "+c[1]+" ("+b+")");b=Nd(b);break;default:Ed(1280)}Bd[a]=b}return b},cb:function(a,b){if(2>v.version)return Ed(1282),0;var c=Cd[a];if(c)return 0>b||b>=c.length?(Ed(1281),0):c[b];switch(a){case 7939:return c=Y.getSupportedExtensions()||[],c=c.concat(c.map(function(f){return"GL_"+f})),c=c.map(function(f){return Nd(f)}),c=Cd[a]=c,0>b||b>=c.length?(Ed(1281),0):c[b];default:return Ed(1280),0}},Ha:function(a,b){b=Xa(b);if(a=ud[a]){var c=a,f=c.Oe, -h=c.xf,l;if(!f)for(c.Oe=f={},c.wf={},l=0;l>>0,h=b.slice(0,l));if((h=a.xf[h])&&f>2];Y.invalidateFramebuffer(a,f)}, -Pb:function(a,b,c,f,h,l,n){for(var q=Kd[b],w=0;w>2];Y.invalidateSubFramebuffer(a,q,f,h,l,n)},Wb:function(a){return Y.isSync(Ad[a])},Ia:function(a){return(a=la[a])?Y.isTexture(a):0},Ja:function(a){Y.lineWidth(a)},La:function(a){a=ud[a];Y.linkProgram(a);a.Oe=0;a.xf={}},oc:function(a,b,c,f,h,l){Y.uf.multiDrawArraysInstancedBaseInstanceWEBGL(a,O,b>>2,O,c>>2,O,f>>2,ob,h>>2,l)},pc:function(a,b,c,f,h,l,n,q){Y.uf.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,O,b>>2,c,O,f>>2, -O,h>>2,O,l>>2,ob,n>>2,q)},Ma:function(a,b){3317==a&&(Dd=b);Y.pixelStorei(a,b)},rc:function(a){Y.readBuffer(a)},Na:function(a,b,c,f,h,l,n){if(2<=v.version)if(Y.ff)Y.readPixels(a,b,c,f,h,l,n);else{var q=Qd(l);Y.readPixels(a,b,c,f,h,l,q,n>>31-Math.clz32(q.BYTES_PER_ELEMENT))}else(n=Rd(l,h,c,f,n))?Y.readPixels(a,b,c,f,h,l,n):Ed(1280)},bc:function(a,b,c,f){Y.renderbufferStorage(a,b,c,f)},Yb:function(a,b,c,f,h){Y.renderbufferStorageMultisample(a,b,c,f,h)},Tb:function(a,b,c){Y.samplerParameteri(zd[a],b, -c)},Ub:function(a,b,c){Y.samplerParameteri(zd[a],b,O[c>>2])},Oa:function(a,b,c,f){Y.scissor(a,b,c,f)},Pa:function(a,b,c,f){for(var h="",l=0;l>2]:-1;h+=Xa(O[c+4*l>>2],0>n?void 0:n)}Y.shaderSource(xd[a],h)},Qa:function(a,b,c){Y.stencilFunc(a,b,c)},Ra:function(a,b,c,f){Y.stencilFuncSeparate(a,b,c,f)},Sa:function(a){Y.stencilMask(a)},Ta:function(a,b){Y.stencilMaskSeparate(a,b)},Ua:function(a,b,c){Y.stencilOp(a,b,c)},Va:function(a,b,c,f){Y.stencilOpSeparate(a,b,c,f)},Wa:function(a, -b,c,f,h,l,n,q,w){if(2<=v.version)if(Y.Ce)Y.texImage2D(a,b,c,f,h,l,n,q,w);else if(w){var x=Qd(q);Y.texImage2D(a,b,c,f,h,l,n,q,x,w>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else Y.texImage2D(a,b,c,f,h,l,n,q,null);else Y.texImage2D(a,b,c,f,h,l,n,q,w?Rd(q,n,f,h,w):null)},Xa:function(a,b,c){Y.texParameterf(a,b,c)},Ya:function(a,b,c){Y.texParameterf(a,b,U[c>>2])},Za:function(a,b,c){Y.texParameteri(a,b,c)},_a:function(a,b,c){Y.texParameteri(a,b,O[c>>2])},lc:function(a,b,c,f,h){Y.texStorage2D(a,b,c,f,h)},$a:function(a, -b,c,f,h,l,n,q,w){if(2<=v.version)if(Y.Ce)Y.texSubImage2D(a,b,c,f,h,l,n,q,w);else if(w){var x=Qd(q);Y.texSubImage2D(a,b,c,f,h,l,n,q,x,w>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else Y.texSubImage2D(a,b,c,f,h,l,n,q,null);else x=null,w&&(x=Rd(q,n,h,l,w)),Y.texSubImage2D(a,b,c,f,h,l,n,q,x)},ab:function(a,b){Y.uniform1f(Z(a),b)},bb:function(a,b,c){if(2<=v.version)Y.uniform1fv(Z(a),U,c>>2,b);else{if(288>=b)for(var f=Sd[b-1],h=0;h>2];else f=U.subarray(c>>2,c+4*b>>2);Y.uniform1fv(Z(a),f)}}, -Wc:function(a,b){Y.uniform1i(Z(a),b)},Xc:function(a,b,c){if(2<=v.version)Y.uniform1iv(Z(a),O,c>>2,b);else{if(288>=b)for(var f=Td[b-1],h=0;h>2];else f=O.subarray(c>>2,c+4*b>>2);Y.uniform1iv(Z(a),f)}},Yc:function(a,b,c){Y.uniform2f(Z(a),b,c)},Zc:function(a,b,c){if(2<=v.version)Y.uniform2fv(Z(a),U,c>>2,2*b);else{if(144>=b)for(var f=Sd[2*b-1],h=0;h<2*b;h+=2)f[h]=U[c+4*h>>2],f[h+1]=U[c+(4*h+4)>>2];else f=U.subarray(c>>2,c+8*b>>2);Y.uniform2fv(Z(a),f)}},Vc:function(a,b,c){Y.uniform2i(Z(a), -b,c)},Uc:function(a,b,c){if(2<=v.version)Y.uniform2iv(Z(a),O,c>>2,2*b);else{if(144>=b)for(var f=Td[2*b-1],h=0;h<2*b;h+=2)f[h]=O[c+4*h>>2],f[h+1]=O[c+(4*h+4)>>2];else f=O.subarray(c>>2,c+8*b>>2);Y.uniform2iv(Z(a),f)}},Tc:function(a,b,c,f){Y.uniform3f(Z(a),b,c,f)},Sc:function(a,b,c){if(2<=v.version)Y.uniform3fv(Z(a),U,c>>2,3*b);else{if(96>=b)for(var f=Sd[3*b-1],h=0;h<3*b;h+=3)f[h]=U[c+4*h>>2],f[h+1]=U[c+(4*h+4)>>2],f[h+2]=U[c+(4*h+8)>>2];else f=U.subarray(c>>2,c+12*b>>2);Y.uniform3fv(Z(a),f)}},Rc:function(a, -b,c,f){Y.uniform3i(Z(a),b,c,f)},Qc:function(a,b,c){if(2<=v.version)Y.uniform3iv(Z(a),O,c>>2,3*b);else{if(96>=b)for(var f=Td[3*b-1],h=0;h<3*b;h+=3)f[h]=O[c+4*h>>2],f[h+1]=O[c+(4*h+4)>>2],f[h+2]=O[c+(4*h+8)>>2];else f=O.subarray(c>>2,c+12*b>>2);Y.uniform3iv(Z(a),f)}},Pc:function(a,b,c,f,h){Y.uniform4f(Z(a),b,c,f,h)},Oc:function(a,b,c){if(2<=v.version)Y.uniform4fv(Z(a),U,c>>2,4*b);else{if(72>=b){var f=Sd[4*b-1],h=U;c>>=2;for(var l=0;l<4*b;l+=4){var n=c+l;f[l]=h[n];f[l+1]=h[n+1];f[l+2]=h[n+2];f[l+3]= -h[n+3]}}else f=U.subarray(c>>2,c+16*b>>2);Y.uniform4fv(Z(a),f)}},Cc:function(a,b,c,f,h){Y.uniform4i(Z(a),b,c,f,h)},Dc:function(a,b,c){if(2<=v.version)Y.uniform4iv(Z(a),O,c>>2,4*b);else{if(72>=b)for(var f=Td[4*b-1],h=0;h<4*b;h+=4)f[h]=O[c+4*h>>2],f[h+1]=O[c+(4*h+4)>>2],f[h+2]=O[c+(4*h+8)>>2],f[h+3]=O[c+(4*h+12)>>2];else f=O.subarray(c>>2,c+16*b>>2);Y.uniform4iv(Z(a),f)}},Ec:function(a,b,c,f){if(2<=v.version)Y.uniformMatrix2fv(Z(a),!!c,U,f>>2,4*b);else{if(72>=b)for(var h=Sd[4*b-1],l=0;l<4*b;l+=4)h[l]= -U[f+4*l>>2],h[l+1]=U[f+(4*l+4)>>2],h[l+2]=U[f+(4*l+8)>>2],h[l+3]=U[f+(4*l+12)>>2];else h=U.subarray(f>>2,f+16*b>>2);Y.uniformMatrix2fv(Z(a),!!c,h)}},Fc:function(a,b,c,f){if(2<=v.version)Y.uniformMatrix3fv(Z(a),!!c,U,f>>2,9*b);else{if(32>=b)for(var h=Sd[9*b-1],l=0;l<9*b;l+=9)h[l]=U[f+4*l>>2],h[l+1]=U[f+(4*l+4)>>2],h[l+2]=U[f+(4*l+8)>>2],h[l+3]=U[f+(4*l+12)>>2],h[l+4]=U[f+(4*l+16)>>2],h[l+5]=U[f+(4*l+20)>>2],h[l+6]=U[f+(4*l+24)>>2],h[l+7]=U[f+(4*l+28)>>2],h[l+8]=U[f+(4*l+32)>>2];else h=U.subarray(f>> -2,f+36*b>>2);Y.uniformMatrix3fv(Z(a),!!c,h)}},Gc:function(a,b,c,f){if(2<=v.version)Y.uniformMatrix4fv(Z(a),!!c,U,f>>2,16*b);else{if(18>=b){var h=Sd[16*b-1],l=U;f>>=2;for(var n=0;n<16*b;n+=16){var q=f+n;h[n]=l[q];h[n+1]=l[q+1];h[n+2]=l[q+2];h[n+3]=l[q+3];h[n+4]=l[q+4];h[n+5]=l[q+5];h[n+6]=l[q+6];h[n+7]=l[q+7];h[n+8]=l[q+8];h[n+9]=l[q+9];h[n+10]=l[q+10];h[n+11]=l[q+11];h[n+12]=l[q+12];h[n+13]=l[q+13];h[n+14]=l[q+14];h[n+15]=l[q+15]}}else h=U.subarray(f>>2,f+64*b>>2);Y.uniformMatrix4fv(Z(a),!!c,h)}}, -Hc:function(a){a=ud[a];Y.useProgram(a);Y.Gf=a},Ic:function(a,b){Y.vertexAttrib1f(a,b)},Jc:function(a,b){Y.vertexAttrib2f(a,U[b>>2],U[b+4>>2])},Kc:function(a,b){Y.vertexAttrib3f(a,U[b>>2],U[b+4>>2],U[b+8>>2])},Lc:function(a,b){Y.vertexAttrib4f(a,U[b>>2],U[b+4>>2],U[b+8>>2],U[b+12>>2])},mc:function(a,b){Y.vertexAttribDivisor(a,b)},nc:function(a,b,c,f,h){Y.vertexAttribIPointer(a,b,c,f,h)},Mc:function(a,b,c,f,h,l){Y.vertexAttribPointer(a,b,c,!!f,h,l)},Nc:function(a,b,c,f){Y.viewport(a,b,c,f)},eb:function(a, -b,c,f){Y.waitSync(Ad[a],b,(c>>>0)+4294967296*f)},qb:function(a){var b=G.length;a>>>=0;if(2147483648=c;c*=2){var f=b*(1+.2/c);f=Math.min(f,a+100663296);f=Math.max(a,f);0>>16);qb();var h=1;break a}catch(l){}h=void 0}if(h)return!0}return!1},ib:function(){return v?v.Vf:0},ub:function(a,b){var c=0;Vd().forEach(function(f,h){var l=b+c;h=O[a+4*h>>2]=l;for(l=0;l>0]=f.charCodeAt(l); -nb[h>>0]=0;c+=f.length+1});return 0},vb:function(a,b){var c=Vd();O[a>>2]=c.length;var f=0;c.forEach(function(h){f+=h.length+1});O[b>>2]=f;return 0},Hb:function(a){if(!(noExitRuntime||0>2]=b;return 0},Ab:function(a,b,c,f){a=Lb.Rf(a);b=Lb.If(a,b,c);O[f>>2]=b;return 0},lb:function(){},N:function(a,b,c,f){for(var h=0,l=0;l>2],q=O[b+4>>2];b+=8;for(var w= -0;w>2]=h;return 0},b:function(){return Pa},i:ke,n:le,f:me,C:ne,Mb:oe,U:pe,T:qe,I:re,m:se,s:te,h:ue,q:ve,Kb:we,Ib:xe,Jb:ye,c:function(a){Pa=a},nb:function(a,b,c,f){return be(a,b,c,f)}}; -(function(){function a(h){t.asm=h.exports;Sa=t.asm.bd;qb();rb=t.asm.dd;tb.unshift(t.asm.cd);wb--;t.monitorRunDependencies&&t.monitorRunDependencies(wb);0==wb&&(null!==xb&&(clearInterval(xb),xb=null),zb&&(h=zb,zb=null,h()))}function b(h){a(h.instance)}function c(h){return Eb().then(function(l){return WebAssembly.instantiate(l,f)}).then(function(l){return l}).then(h,function(l){Ma("failed to asynchronously prepare wasm: "+l);Ra(l)})}var f={a:ze};wb++;t.monitorRunDependencies&&t.monitorRunDependencies(wb); -if(t.instantiateWasm)try{return t.instantiateWasm(f,a)}catch(h){return Ma("Module.instantiateWasm callback failed with error: "+h),!1}(function(){return Qa||"function"!==typeof WebAssembly.instantiateStreaming||Ab()||Bb.startsWith("file://")||"function"!==typeof fetch?c(b):fetch(Bb,{credentials:"same-origin"}).then(function(h){return WebAssembly.instantiateStreaming(h,f).then(b,function(l){Ma("wasm streaming compile failed: "+l);Ma("falling back to ArrayBuffer instantiation");return c(b)})})})().catch(ha); -return{}})();t.___wasm_call_ctors=function(){return(t.___wasm_call_ctors=t.asm.cd).apply(null,arguments)};var Od=t._malloc=function(){return(Od=t._malloc=t.asm.ed).apply(null,arguments)},Tc=t._free=function(){return(Tc=t._free=t.asm.fd).apply(null,arguments)},je=t.___errno_location=function(){return(je=t.___errno_location=t.asm.gd).apply(null,arguments)},Sc=t.___getTypeName=function(){return(Sc=t.___getTypeName=t.asm.hd).apply(null,arguments)}; -t.___embind_register_native_and_builtin_types=function(){return(t.___embind_register_native_and_builtin_types=t.asm.id).apply(null,arguments)};var ie=t._memalign=function(){return(ie=t._memalign=t.asm.jd).apply(null,arguments)},Ae=t._setThrew=function(){return(Ae=t._setThrew=t.asm.kd).apply(null,arguments)},Be=t.stackSave=function(){return(Be=t.stackSave=t.asm.ld).apply(null,arguments)},Ce=t.stackRestore=function(){return(Ce=t.stackRestore=t.asm.md).apply(null,arguments)}; -t.dynCall_iiiji=function(){return(t.dynCall_iiiji=t.asm.nd).apply(null,arguments)};t.dynCall_ji=function(){return(t.dynCall_ji=t.asm.od).apply(null,arguments)};t.dynCall_iiji=function(){return(t.dynCall_iiji=t.asm.pd).apply(null,arguments)};t.dynCall_iijjiii=function(){return(t.dynCall_iijjiii=t.asm.qd).apply(null,arguments)};t.dynCall_iij=function(){return(t.dynCall_iij=t.asm.rd).apply(null,arguments)};t.dynCall_vijjjii=function(){return(t.dynCall_vijjjii=t.asm.sd).apply(null,arguments)}; -t.dynCall_viji=function(){return(t.dynCall_viji=t.asm.td).apply(null,arguments)};t.dynCall_vijiii=function(){return(t.dynCall_vijiii=t.asm.ud).apply(null,arguments)};t.dynCall_viiiiij=function(){return(t.dynCall_viiiiij=t.asm.vd).apply(null,arguments)};t.dynCall_jii=function(){return(t.dynCall_jii=t.asm.wd).apply(null,arguments)};t.dynCall_iiij=function(){return(t.dynCall_iiij=t.asm.xd).apply(null,arguments)};t.dynCall_iiiij=function(){return(t.dynCall_iiiij=t.asm.yd).apply(null,arguments)}; -t.dynCall_viij=function(){return(t.dynCall_viij=t.asm.zd).apply(null,arguments)};t.dynCall_viiij=function(){return(t.dynCall_viiij=t.asm.Ad).apply(null,arguments)};t.dynCall_vij=function(){return(t.dynCall_vij=t.asm.Bd).apply(null,arguments)};t.dynCall_jiiii=function(){return(t.dynCall_jiiii=t.asm.Cd).apply(null,arguments)};t.dynCall_jiiiiii=function(){return(t.dynCall_jiiiiii=t.asm.Dd).apply(null,arguments)};t.dynCall_jiiiiji=function(){return(t.dynCall_jiiiiji=t.asm.Ed).apply(null,arguments)}; -t.dynCall_iijj=function(){return(t.dynCall_iijj=t.asm.Fd).apply(null,arguments)};t.dynCall_jiji=function(){return(t.dynCall_jiji=t.asm.Gd).apply(null,arguments)};t.dynCall_viijii=function(){return(t.dynCall_viijii=t.asm.Hd).apply(null,arguments)};t.dynCall_iiiiij=function(){return(t.dynCall_iiiiij=t.asm.Id).apply(null,arguments)};t.dynCall_iiiiijj=function(){return(t.dynCall_iiiiijj=t.asm.Jd).apply(null,arguments)};t.dynCall_iiiiiijj=function(){return(t.dynCall_iiiiiijj=t.asm.Kd).apply(null,arguments)}; -function ke(a,b){var c=Be();try{return Gb(a)(b)}catch(f){Ce(c);if(f!==f+0&&"longjmp"!==f)throw f;Ae(1,0)}}function le(a,b,c){var f=Be();try{return Gb(a)(b,c)}catch(h){Ce(f);if(h!==h+0&&"longjmp"!==h)throw h;Ae(1,0)}}function ue(a,b,c,f){var h=Be();try{Gb(a)(b,c,f)}catch(l){Ce(h);if(l!==l+0&&"longjmp"!==l)throw l;Ae(1,0)}}function me(a,b,c,f){var h=Be();try{return Gb(a)(b,c,f)}catch(l){Ce(h);if(l!==l+0&&"longjmp"!==l)throw l;Ae(1,0)}} -function se(a,b){var c=Be();try{Gb(a)(b)}catch(f){Ce(c);if(f!==f+0&&"longjmp"!==f)throw f;Ae(1,0)}}function te(a,b,c){var f=Be();try{Gb(a)(b,c)}catch(h){Ce(f);if(h!==h+0&&"longjmp"!==h)throw h;Ae(1,0)}}function oe(a,b,c,f,h,l){var n=Be();try{return Gb(a)(b,c,f,h,l)}catch(q){Ce(n);if(q!==q+0&&"longjmp"!==q)throw q;Ae(1,0)}}function ve(a,b,c,f,h){var l=Be();try{Gb(a)(b,c,f,h)}catch(n){Ce(l);if(n!==n+0&&"longjmp"!==n)throw n;Ae(1,0)}} -function pe(a,b,c,f,h,l,n){var q=Be();try{return Gb(a)(b,c,f,h,l,n)}catch(w){Ce(q);if(w!==w+0&&"longjmp"!==w)throw w;Ae(1,0)}}function ne(a,b,c,f,h){var l=Be();try{return Gb(a)(b,c,f,h)}catch(n){Ce(l);if(n!==n+0&&"longjmp"!==n)throw n;Ae(1,0)}}function we(a,b,c,f,h,l){var n=Be();try{Gb(a)(b,c,f,h,l)}catch(q){Ce(n);if(q!==q+0&&"longjmp"!==q)throw q;Ae(1,0)}}function ye(a,b,c,f,h,l,n,q,w,x){var J=Be();try{Gb(a)(b,c,f,h,l,n,q,w,x)}catch(K){Ce(J);if(K!==K+0&&"longjmp"!==K)throw K;Ae(1,0)}} -function re(a){var b=Be();try{Gb(a)()}catch(c){Ce(b);if(c!==c+0&&"longjmp"!==c)throw c;Ae(1,0)}}function xe(a,b,c,f,h,l,n){var q=Be();try{Gb(a)(b,c,f,h,l,n)}catch(w){Ce(q);if(w!==w+0&&"longjmp"!==w)throw w;Ae(1,0)}}function qe(a,b,c,f,h,l,n,q,w,x){var J=Be();try{return Gb(a)(b,c,f,h,l,n,q,w,x)}catch(K){Ce(J);if(K!==K+0&&"longjmp"!==K)throw K;Ae(1,0)}}var De;function Ka(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a}zb=function Ee(){De||Fe();De||(zb=Ee)}; -function Fe(){function a(){if(!De&&(De=!0,t.calledRun=!0,!Ua)){Fb(tb);fa(t);if(t.onRuntimeInitialized)t.onRuntimeInitialized();if(t.postRun)for("function"==typeof t.postRun&&(t.postRun=[t.postRun]);t.postRun.length;){var b=t.postRun.shift();ub.unshift(b)}Fb(ub)}}if(!(0 { - var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; - if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; - return ( -function(CanvasKitInit) { - CanvasKitInit = CanvasKitInit || {}; - -null;var Module=typeof CanvasKitInit!=="undefined"?CanvasKitInit:{};var objAssign=Object.assign;var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});function Debug(msg){}var IsDebug=false;(function(CanvasKit){CanvasKit._extraInitializations=CanvasKit._extraInitializations||[];CanvasKit._extraInitializations.push(function(){CanvasKit.MakeSWCanvasSurface=function(idOrElement){var canvas=idOrElement;if(canvas.tagName!=="CANVAS"){canvas=document.getElementById(idOrElement);if(!canvas){throw"Canvas with id "+idOrElement+" was not found"}}var surface=CanvasKit.MakeSurface(canvas.width,canvas.height);if(surface){surface._canvas=canvas}return surface};if(!CanvasKit.MakeCanvasSurface){CanvasKit.MakeCanvasSurface=CanvasKit.MakeSWCanvasSurface}CanvasKit.MakeSurface=function(width,height){var imageInfo={"width":width,"height":height,"colorType":CanvasKit.ColorType.RGBA_8888,"alphaType":CanvasKit.AlphaType.Unpremul,"colorSpace":CanvasKit.ColorSpace.SRGB};var pixelLen=width*height*4;var pixelPtr=CanvasKit._malloc(pixelLen);var surface=CanvasKit.Surface._makeRasterDirect(imageInfo,pixelPtr,width*4);if(surface){surface._canvas=null;surface._width=width;surface._height=height;surface._pixelLen=pixelLen;surface._pixelPtr=pixelPtr;surface.getCanvas().clear(CanvasKit.TRANSPARENT)}return surface};CanvasKit.MakeRasterDirectSurface=function(imageInfo,mallocObj,bytesPerRow){return CanvasKit.Surface._makeRasterDirect(imageInfo,mallocObj["byteOffset"],bytesPerRow)};CanvasKit.Surface.prototype.flush=function(dirtyRect){CanvasKit.setCurrentContext(this._context);this._flush();if(this._canvas){var pixels=new Uint8ClampedArray(CanvasKit.HEAPU8.buffer,this._pixelPtr,this._pixelLen);var imageData=new ImageData(pixels,this._width,this._height);if(!dirtyRect){this._canvas.getContext("2d").putImageData(imageData,0,0)}else{this._canvas.getContext("2d").putImageData(imageData,0,0,dirtyRect[0],dirtyRect[1],dirtyRect[2]-dirtyRect[0],dirtyRect[3]-dirtyRect[1])}}};CanvasKit.Surface.prototype.dispose=function(){if(this._pixelPtr){CanvasKit._free(this._pixelPtr)}this.delete()};CanvasKit.setCurrentContext=CanvasKit.setCurrentContext||function(){}})})(Module);(function(CanvasKit){CanvasKit._extraInitializations=CanvasKit._extraInitializations||[];CanvasKit._extraInitializations.push(function(){function get(obj,attr,defaultValue){if(obj&&obj.hasOwnProperty(attr)){return obj[attr]}return defaultValue}CanvasKit.GetWebGLContext=function(canvas,attrs){if(!canvas){throw"null canvas passed into makeWebGLContext"}var contextAttributes={"alpha":get(attrs,"alpha",1),"depth":get(attrs,"depth",1),"stencil":get(attrs,"stencil",8),"antialias":get(attrs,"antialias",0),"premultipliedAlpha":get(attrs,"premultipliedAlpha",1),"preserveDrawingBuffer":get(attrs,"preserveDrawingBuffer",0),"preferLowPowerToHighPerformance":get(attrs,"preferLowPowerToHighPerformance",0),"failIfMajorPerformanceCaveat":get(attrs,"failIfMajorPerformanceCaveat",0),"enableExtensionsByDefault":get(attrs,"enableExtensionsByDefault",1),"explicitSwapControl":get(attrs,"explicitSwapControl",0),"renderViaOffscreenBackBuffer":get(attrs,"renderViaOffscreenBackBuffer",0)};if(attrs&&attrs["majorVersion"]){contextAttributes["majorVersion"]=attrs["majorVersion"]}else{contextAttributes["majorVersion"]=typeof WebGL2RenderingContext!=="undefined"?2:1}if(contextAttributes["explicitSwapControl"]){throw"explicitSwapControl is not supported"}var handle=GL.createContext(canvas,contextAttributes);if(!handle){return 0}GL.makeContextCurrent(handle);return handle};CanvasKit.deleteContext=function(handle){GL.deleteContext(handle)};CanvasKit._setTextureCleanup({"deleteTexture":function(webglHandle,texHandle){var tex=GL.textures[texHandle];if(tex){GL.getContext(webglHandle).GLctx.deleteTexture(tex)}GL.textures[texHandle]=null}});CanvasKit.MakeGrContext=function(ctx){if(!this.setCurrentContext(ctx)){return null}var grCtx=this._MakeGrContext();if(!grCtx){return null}grCtx._context=ctx;return grCtx};CanvasKit.MakeOnScreenGLSurface=function(grCtx,w,h,colorspace){if(!this.setCurrentContext(grCtx._context)){return null}var surface=this._MakeOnScreenGLSurface(grCtx,w,h,colorspace);if(!surface){return null}surface._context=grCtx._context;return surface};CanvasKit.MakeRenderTarget=function(){var grCtx=arguments[0];if(!this.setCurrentContext(grCtx._context)){return null}var surface;if(arguments.length===3){surface=this._MakeRenderTargetWH(grCtx,arguments[1],arguments[2]);if(!surface){return null}}else if(arguments.length===2){surface=this._MakeRenderTargetII(grCtx,arguments[1]);if(!surface){return null}}else{Debug("Expected 2 or 3 params");return null}surface._context=grCtx._context;return surface};CanvasKit.MakeWebGLCanvasSurface=function(idOrElement,colorSpace,attrs){colorSpace=colorSpace||null;var canvas=idOrElement;var isHTMLCanvas=typeof HTMLCanvasElement!=="undefined"&&canvas instanceof HTMLCanvasElement;var isOffscreenCanvas=typeof OffscreenCanvas!=="undefined"&&canvas instanceof OffscreenCanvas;if(!isHTMLCanvas&&!isOffscreenCanvas){canvas=document.getElementById(idOrElement);if(!canvas){throw"Canvas with id "+idOrElement+" was not found"}}var ctx=this.GetWebGLContext(canvas,attrs);if(!ctx||ctx<0){throw"failed to create webgl context: err "+ctx}var grcontext=this.MakeGrContext(ctx);var surface=this.MakeOnScreenGLSurface(grcontext,canvas.width,canvas.height,colorSpace);if(!surface){Debug("falling back from GPU implementation to a SW based one");var newCanvas=canvas.cloneNode(true);var parent=canvas.parentNode;parent.replaceChild(newCanvas,canvas);newCanvas.classList.add("ck-replaced");return CanvasKit.MakeSWCanvasSurface(newCanvas)}return surface};CanvasKit.MakeCanvasSurface=CanvasKit.MakeWebGLCanvasSurface;function pushTexture(tex){var texHandle=GL.getNewId(GL.textures);GL.textures[texHandle]=tex;return texHandle}CanvasKit.Surface.prototype.makeImageFromTexture=function(tex,info){CanvasKit.setCurrentContext(this._context);var texHandle=pushTexture(tex);var img=this._makeImageFromTexture(this._context,texHandle,info);if(img){img._tex=texHandle}return img};function getHeight(src){return src["naturalHeight"]||src["videoHeight"]||src["displayHeight"]||src["height"]}function getWidth(src){return src["naturalWidth"]||src["videoWidth"]||src["displayWidth"]||src["width"]}CanvasKit.Surface.prototype.makeImageFromTextureSource=function(src,info){if(!info){info={"height":getHeight(src),"width":getWidth(src),"colorType":CanvasKit.ColorType.RGBA_8888,"alphaType":CanvasKit.AlphaType.Unpremul}}if(!info["colorSpace"]){info["colorSpace"]=CanvasKit.ColorSpace.SRGB}if(info["colorType"]!==CanvasKit.ColorType.RGBA_8888){Debug("colorType currently has no impact on makeImageFromTextureSource")}CanvasKit.setCurrentContext(this._context);var glCtx=GL.currentContext.GLctx;var newTex=glCtx.createTexture();glCtx.bindTexture(glCtx.TEXTURE_2D,newTex);if(GL.currentContext.version===2){glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,info["width"],info["height"],0,glCtx.RGBA,glCtx.UNSIGNED_BYTE,src)}else{glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,glCtx.RGBA,glCtx.UNSIGNED_BYTE,src)}glCtx.bindTexture(glCtx.TEXTURE_2D,null);return this.makeImageFromTexture(newTex,info)};CanvasKit.Surface.prototype.updateTextureFromSource=function(img,src){if(!img._tex){Debug("Image is not backed by a user-provided texture");return}CanvasKit.setCurrentContext(this._context);var glCtx=GL.currentContext.GLctx;var tex=GL.textures[img._tex];glCtx.bindTexture(glCtx.TEXTURE_2D,tex);if(GL.currentContext.version===2){glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,getWidth(src),getHeight(src),0,glCtx.RGBA,glCtx.UNSIGNED_BYTE,src)}else{glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,glCtx.RGBA,glCtx.UNSIGNED_BYTE,src)}glCtx.bindTexture(glCtx.TEXTURE_2D,null);this._resetContext();GL.textures[img._tex]=null;img._tex=pushTexture(tex);var ii=img.getImageInfo();ii["colorSpace"]=img.getColorSpace();var newImg=this._makeImageFromTexture(this._context,img._tex,ii);var oldPtr=img.$$.ptr;var oldSmartPtr=img.$$.smartPtr;img.$$.ptr=newImg.$$.ptr;img.$$.smartPtr=newImg.$$.smartPtr;newImg.$$.ptr=oldPtr;newImg.$$.smartPtr=oldSmartPtr;newImg.delete();ii["colorSpace"].delete()};CanvasKit.MakeLazyImageFromTextureSource=function(src,info){if(!info){info={"height":getHeight(src),"width":getWidth(src),"colorType":CanvasKit.ColorType.RGBA_8888,"alphaType":CanvasKit.AlphaType.Unpremul}}if(!info["colorSpace"]){info["colorSpace"]=CanvasKit.ColorSpace.SRGB}if(info["colorType"]!==CanvasKit.ColorType.RGBA_8888){Debug("colorType currently has no impact on MakeLazyImageFromTextureSource")}var callbackObj={"makeTexture":function(){var ctx=GL.currentContext;var glCtx=ctx.GLctx;var newTex=glCtx.createTexture();glCtx.bindTexture(glCtx.TEXTURE_2D,newTex);if(ctx.version===2){glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,info["width"],info["height"],0,glCtx.RGBA,glCtx.UNSIGNED_BYTE,src)}else{glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,glCtx.RGBA,glCtx.UNSIGNED_BYTE,src)}glCtx.bindTexture(glCtx.TEXTURE_2D,null);return pushTexture(newTex)},"freeSrc":function(){}};if(src.constructor.name==="VideoFrame"){callbackObj["freeSrc"]=function(){src.close()}}return CanvasKit.Image._makeFromGenerator(info,callbackObj)};CanvasKit.setCurrentContext=function(ctx){if(!ctx){return false}return GL.makeContextCurrent(ctx)}})})(Module);(function(CanvasKit){CanvasKit.Color=function(r,g,b,a){if(a===undefined){a=1}return CanvasKit.Color4f(clamp(r)/255,clamp(g)/255,clamp(b)/255,a)};CanvasKit.ColorAsInt=function(r,g,b,a){if(a===undefined){a=255}return(clamp(a)<<24|clamp(r)<<16|clamp(g)<<8|clamp(b)<<0&268435455)>>>0};CanvasKit.Color4f=function(r,g,b,a){if(a===undefined){a=1}return Float32Array.of(r,g,b,a)};Object.defineProperty(CanvasKit,"TRANSPARENT",{get:function(){return CanvasKit.Color4f(0,0,0,0)}});Object.defineProperty(CanvasKit,"BLACK",{get:function(){return CanvasKit.Color4f(0,0,0,1)}});Object.defineProperty(CanvasKit,"WHITE",{get:function(){return CanvasKit.Color4f(1,1,1,1)}});Object.defineProperty(CanvasKit,"RED",{get:function(){return CanvasKit.Color4f(1,0,0,1)}});Object.defineProperty(CanvasKit,"GREEN",{get:function(){return CanvasKit.Color4f(0,1,0,1)}});Object.defineProperty(CanvasKit,"BLUE",{get:function(){return CanvasKit.Color4f(0,0,1,1)}});Object.defineProperty(CanvasKit,"YELLOW",{get:function(){return CanvasKit.Color4f(1,1,0,1)}});Object.defineProperty(CanvasKit,"CYAN",{get:function(){return CanvasKit.Color4f(0,1,1,1)}});Object.defineProperty(CanvasKit,"MAGENTA",{get:function(){return CanvasKit.Color4f(1,0,1,1)}});CanvasKit.getColorComponents=function(color){return[Math.floor(color[0]*255),Math.floor(color[1]*255),Math.floor(color[2]*255),color[3]]};CanvasKit.parseColorString=function(colorStr,colorMap){colorStr=colorStr.toLowerCase();if(colorStr.startsWith("#")){var r,g,b,a=255;switch(colorStr.length){case 9:a=parseInt(colorStr.slice(7,9),16);case 7:r=parseInt(colorStr.slice(1,3),16);g=parseInt(colorStr.slice(3,5),16);b=parseInt(colorStr.slice(5,7),16);break;case 5:a=parseInt(colorStr.slice(4,5),16)*17;case 4:r=parseInt(colorStr.slice(1,2),16)*17;g=parseInt(colorStr.slice(2,3),16)*17;b=parseInt(colorStr.slice(3,4),16)*17;break}return CanvasKit.Color(r,g,b,a/255)}else if(colorStr.startsWith("rgba")){colorStr=colorStr.slice(5,-1);var nums=colorStr.split(",");return CanvasKit.Color(+nums[0],+nums[1],+nums[2],valueOrPercent(nums[3]))}else if(colorStr.startsWith("rgb")){colorStr=colorStr.slice(4,-1);var nums=colorStr.split(",");return CanvasKit.Color(+nums[0],+nums[1],+nums[2],valueOrPercent(nums[3]))}else if(colorStr.startsWith("gray(")){}else if(colorStr.startsWith("hsl")){}else if(colorMap){var nc=colorMap[colorStr];if(nc!==undefined){return nc}}Debug("unrecognized color "+colorStr);return CanvasKit.BLACK};function isCanvasKitColor(ob){if(!ob){return false}return ob.constructor===Float32Array&&ob.length===4}function toUint32Color(c){return(clamp(c[3]*255)<<24|clamp(c[0]*255)<<16|clamp(c[1]*255)<<8|clamp(c[2]*255)<<0)>>>0}function assureIntColors(arr){if(wasMalloced(arr)){return arr}else if(arr instanceof Float32Array){var count=Math.floor(arr.length/4);var result=new Uint32Array(count);for(var i=0;icont.length()){cont.delete();cont=meas.next();if(!cont){str=str.substring(0,i);break}dist=width/2}cont.getPosTan(dist,xycs);var cx=xycs[0];var cy=xycs[1];var cosT=xycs[2];var sinT=xycs[3];var adjustedX=cx-width/2*cosT;var adjustedY=cy-width/2*sinT;rsx.push(cosT,sinT,adjustedX,adjustedY);dist+=width/2}var retVal=this.MakeFromRSXform(str,rsx,font);cont&&cont.delete();meas.delete();return retVal};CanvasKit.TextBlob.MakeFromRSXform=function(str,rsxForms,font){var strLen=lengthBytesUTF8(str)+1;var strPtr=CanvasKit._malloc(strLen);stringToUTF8(str,strPtr,strLen);var rPtr=copy1dArray(rsxForms,"HEAPF32");var blob=CanvasKit.TextBlob._MakeFromRSXform(strPtr,strLen-1,rPtr,font);CanvasKit._free(strPtr);if(!blob){Debug('Could not make textblob from string "'+str+'"');return null}return blob};CanvasKit.TextBlob.MakeFromRSXformGlyphs=function(glyphs,rsxForms,font){var glyphPtr=copy1dArray(glyphs,"HEAPU16");var bytesPerGlyph=2;var rPtr=copy1dArray(rsxForms,"HEAPF32");var blob=CanvasKit.TextBlob._MakeFromRSXformGlyphs(glyphPtr,glyphs.length*bytesPerGlyph,rPtr,font);freeArraysThatAreNotMallocedByUsers(glyphPtr,glyphs);if(!blob){Debug('Could not make textblob from glyphs "'+glyphs+'"');return null}return blob};CanvasKit.TextBlob.MakeFromGlyphs=function(glyphs,font){var glyphPtr=copy1dArray(glyphs,"HEAPU16");var bytesPerGlyph=2;var blob=CanvasKit.TextBlob._MakeFromGlyphs(glyphPtr,glyphs.length*bytesPerGlyph,font);freeArraysThatAreNotMallocedByUsers(glyphPtr,glyphs);if(!blob){Debug('Could not make textblob from glyphs "'+glyphs+'"');return null}return blob};CanvasKit.TextBlob.MakeFromText=function(str,font){var strLen=lengthBytesUTF8(str)+1;var strPtr=CanvasKit._malloc(strLen);stringToUTF8(str,strPtr,strLen);var blob=CanvasKit.TextBlob._MakeFromText(strPtr,strLen-1,font);CanvasKit._free(strPtr);if(!blob){Debug('Could not make textblob from string "'+str+'"');return null}return blob};CanvasKit.MallocGlyphIDs=function(numGlyphIDs){return CanvasKit.Malloc(Uint16Array,numGlyphIDs)}});CanvasKit._extraInitializations=CanvasKit._extraInitializations||[];CanvasKit._extraInitializations.push(function(){CanvasKit.MakePicture=function(data){data=new Uint8Array(data);var iptr=CanvasKit._malloc(data.byteLength);CanvasKit.HEAPU8.set(data,iptr);var pic=CanvasKit._MakePicture(iptr,data.byteLength);if(!pic){Debug("Could not decode picture");return null}return pic}});CanvasKit._extraInitializations=CanvasKit._extraInitializations||[];CanvasKit._extraInitializations.push(function(){CanvasKit.RuntimeEffect.Make=function(sksl,errorCallback){var callbackObj={"onError":errorCallback||function(err){console.log("RuntimeEffect error",err)}};return CanvasKit.RuntimeEffect._Make(sksl,callbackObj)};CanvasKit.RuntimeEffect.prototype.makeShader=function(floats,isOpaque,localMatrix){var fptr=copy1dArray(floats,"HEAPF32");var localMatrixPtr=copy3x3MatrixToWasm(localMatrix);return this._makeShader(fptr,floats.length*4,!!isOpaque,localMatrixPtr)};CanvasKit.RuntimeEffect.prototype.makeShaderWithChildren=function(floats,isOpaque,childrenShaders,localMatrix){var fptr=copy1dArray(floats,"HEAPF32");var localMatrixPtr=copy3x3MatrixToWasm(localMatrix);var barePointers=[];for(var i=0;i1){return}this._globalAlpha=newAlpha}});Object.defineProperty(this,"globalCompositeOperation",{enumerable:true,get:function(){switch(this._globalCompositeOperation){case CanvasKit.BlendMode.SrcOver:return"source-over";case CanvasKit.BlendMode.DstOver:return"destination-over";case CanvasKit.BlendMode.Src:return"copy";case CanvasKit.BlendMode.Dst:return"destination";case CanvasKit.BlendMode.Clear:return"clear";case CanvasKit.BlendMode.SrcIn:return"source-in";case CanvasKit.BlendMode.DstIn:return"destination-in";case CanvasKit.BlendMode.SrcOut:return"source-out";case CanvasKit.BlendMode.DstOut:return"destination-out";case CanvasKit.BlendMode.SrcATop:return"source-atop";case CanvasKit.BlendMode.DstATop:return"destination-atop";case CanvasKit.BlendMode.Xor:return"xor";case CanvasKit.BlendMode.Plus:return"lighter";case CanvasKit.BlendMode.Multiply:return"multiply";case CanvasKit.BlendMode.Screen:return"screen";case CanvasKit.BlendMode.Overlay:return"overlay";case CanvasKit.BlendMode.Darken:return"darken";case CanvasKit.BlendMode.Lighten:return"lighten";case CanvasKit.BlendMode.ColorDodge:return"color-dodge";case CanvasKit.BlendMode.ColorBurn:return"color-burn";case CanvasKit.BlendMode.HardLight:return"hard-light";case CanvasKit.BlendMode.SoftLight:return"soft-light";case CanvasKit.BlendMode.Difference:return"difference";case CanvasKit.BlendMode.Exclusion:return"exclusion";case CanvasKit.BlendMode.Hue:return"hue";case CanvasKit.BlendMode.Saturation:return"saturation";case CanvasKit.BlendMode.Color:return"color";case CanvasKit.BlendMode.Luminosity:return"luminosity"}},set:function(newMode){switch(newMode){case"source-over":this._globalCompositeOperation=CanvasKit.BlendMode.SrcOver;break;case"destination-over":this._globalCompositeOperation=CanvasKit.BlendMode.DstOver;break;case"copy":this._globalCompositeOperation=CanvasKit.BlendMode.Src;break;case"destination":this._globalCompositeOperation=CanvasKit.BlendMode.Dst;break;case"clear":this._globalCompositeOperation=CanvasKit.BlendMode.Clear;break;case"source-in":this._globalCompositeOperation=CanvasKit.BlendMode.SrcIn;break;case"destination-in":this._globalCompositeOperation=CanvasKit.BlendMode.DstIn;break;case"source-out":this._globalCompositeOperation=CanvasKit.BlendMode.SrcOut;break;case"destination-out":this._globalCompositeOperation=CanvasKit.BlendMode.DstOut;break;case"source-atop":this._globalCompositeOperation=CanvasKit.BlendMode.SrcATop;break;case"destination-atop":this._globalCompositeOperation=CanvasKit.BlendMode.DstATop;break;case"xor":this._globalCompositeOperation=CanvasKit.BlendMode.Xor;break;case"lighter":this._globalCompositeOperation=CanvasKit.BlendMode.Plus;break;case"plus-lighter":this._globalCompositeOperation=CanvasKit.BlendMode.Plus;break;case"plus-darker":throw"plus-darker is not supported";case"multiply":this._globalCompositeOperation=CanvasKit.BlendMode.Multiply;break;case"screen":this._globalCompositeOperation=CanvasKit.BlendMode.Screen;break;case"overlay":this._globalCompositeOperation=CanvasKit.BlendMode.Overlay;break;case"darken":this._globalCompositeOperation=CanvasKit.BlendMode.Darken;break;case"lighten":this._globalCompositeOperation=CanvasKit.BlendMode.Lighten;break;case"color-dodge":this._globalCompositeOperation=CanvasKit.BlendMode.ColorDodge;break;case"color-burn":this._globalCompositeOperation=CanvasKit.BlendMode.ColorBurn;break;case"hard-light":this._globalCompositeOperation=CanvasKit.BlendMode.HardLight;break;case"soft-light":this._globalCompositeOperation=CanvasKit.BlendMode.SoftLight;break;case"difference":this._globalCompositeOperation=CanvasKit.BlendMode.Difference;break;case"exclusion":this._globalCompositeOperation=CanvasKit.BlendMode.Exclusion;break;case"hue":this._globalCompositeOperation=CanvasKit.BlendMode.Hue;break;case"saturation":this._globalCompositeOperation=CanvasKit.BlendMode.Saturation;break;case"color":this._globalCompositeOperation=CanvasKit.BlendMode.Color;break;case"luminosity":this._globalCompositeOperation=CanvasKit.BlendMode.Luminosity;break;default:return}this._paint.setBlendMode(this._globalCompositeOperation)}});Object.defineProperty(this,"imageSmoothingEnabled",{enumerable:true,get:function(){return true},set:function(a){}});Object.defineProperty(this,"imageSmoothingQuality",{enumerable:true,get:function(){return"high"},set:function(a){}});Object.defineProperty(this,"lineCap",{enumerable:true,get:function(){switch(this._paint.getStrokeCap()){case CanvasKit.StrokeCap.Butt:return"butt";case CanvasKit.StrokeCap.Round:return"round";case CanvasKit.StrokeCap.Square:return"square"}},set:function(newCap){switch(newCap){case"butt":this._paint.setStrokeCap(CanvasKit.StrokeCap.Butt);return;case"round":this._paint.setStrokeCap(CanvasKit.StrokeCap.Round);return;case"square":this._paint.setStrokeCap(CanvasKit.StrokeCap.Square);return}}});Object.defineProperty(this,"lineDashOffset",{enumerable:true,get:function(){return this._lineDashOffset},set:function(newOffset){if(!isFinite(newOffset)){return}this._lineDashOffset=newOffset}});Object.defineProperty(this,"lineJoin",{enumerable:true,get:function(){switch(this._paint.getStrokeJoin()){case CanvasKit.StrokeJoin.Miter:return"miter";case CanvasKit.StrokeJoin.Round:return"round";case CanvasKit.StrokeJoin.Bevel:return"bevel"}},set:function(newJoin){switch(newJoin){case"miter":this._paint.setStrokeJoin(CanvasKit.StrokeJoin.Miter);return;case"round":this._paint.setStrokeJoin(CanvasKit.StrokeJoin.Round);return;case"bevel":this._paint.setStrokeJoin(CanvasKit.StrokeJoin.Bevel);return}}});Object.defineProperty(this,"lineWidth",{enumerable:true,get:function(){return this._paint.getStrokeWidth()},set:function(newWidth){if(newWidth<=0||!newWidth){return}this._strokeWidth=newWidth;this._paint.setStrokeWidth(newWidth)}});Object.defineProperty(this,"miterLimit",{enumerable:true,get:function(){return this._paint.getStrokeMiter()},set:function(newLimit){if(newLimit<=0||!newLimit){return}this._paint.setStrokeMiter(newLimit)}});Object.defineProperty(this,"shadowBlur",{enumerable:true,get:function(){return this._shadowBlur},set:function(newBlur){if(newBlur<0||!isFinite(newBlur)){return}this._shadowBlur=newBlur}});Object.defineProperty(this,"shadowColor",{enumerable:true,get:function(){return colorToString(this._shadowColor)},set:function(newColor){this._shadowColor=parseColor(newColor)}});Object.defineProperty(this,"shadowOffsetX",{enumerable:true,get:function(){return this._shadowOffsetX},set:function(newOffset){if(!isFinite(newOffset)){return}this._shadowOffsetX=newOffset}});Object.defineProperty(this,"shadowOffsetY",{enumerable:true,get:function(){return this._shadowOffsetY},set:function(newOffset){if(!isFinite(newOffset)){return}this._shadowOffsetY=newOffset}});Object.defineProperty(this,"strokeStyle",{enumerable:true,get:function(){return colorToString(this._strokeStyle)},set:function(newStyle){if(typeof newStyle==="string"){this._strokeStyle=parseColor(newStyle)}else if(newStyle._getShader){this._strokeStyle=newStyle}}});this.arc=function(x,y,radius,startAngle,endAngle,ccw){arc(this._currentPath,x,y,radius,startAngle,endAngle,ccw)};this.arcTo=function(x1,y1,x2,y2,radius){arcTo(this._currentPath,x1,y1,x2,y2,radius)};this.beginPath=function(){this._currentPath.delete();this._currentPath=new CanvasKit.Path};this.bezierCurveTo=function(cp1x,cp1y,cp2x,cp2y,x,y){bezierCurveTo(this._currentPath,cp1x,cp1y,cp2x,cp2y,x,y)};this.clearRect=function(x,y,width,height){this._paint.setStyle(CanvasKit.PaintStyle.Fill);this._paint.setBlendMode(CanvasKit.BlendMode.Clear);this._canvas.drawRect(CanvasKit.XYWHRect(x,y,width,height),this._paint);this._paint.setBlendMode(this._globalCompositeOperation)};this.clip=function(path,fillRule){if(typeof path==="string"){fillRule=path;path=this._currentPath}else if(path&&path._getPath){path=path._getPath()}if(!path){path=this._currentPath}var clip=path.copy();if(fillRule&&fillRule.toLowerCase()==="evenodd"){clip.setFillType(CanvasKit.FillType.EvenOdd)}else{clip.setFillType(CanvasKit.FillType.Winding)}this._canvas.clipPath(clip,CanvasKit.ClipOp.Intersect,true);clip.delete()};this.closePath=function(){closePath(this._currentPath)};this.createImageData=function(){if(arguments.length===1){var oldData=arguments[0];var byteLength=4*oldData.width*oldData.height;return new ImageData(new Uint8ClampedArray(byteLength),oldData.width,oldData.height)}else if(arguments.length===2){var width=arguments[0];var height=arguments[1];var byteLength=4*width*height;return new ImageData(new Uint8ClampedArray(byteLength),width,height)}else{throw"createImageData expects 1 or 2 arguments, got "+arguments.length}};this.createLinearGradient=function(x1,y1,x2,y2){if(!allAreFinite(arguments)){return}var lcg=new LinearCanvasGradient(x1,y1,x2,y2);this._toCleanUp.push(lcg);return lcg};this.createPattern=function(image,repetition){var cp=new CanvasPattern(image,repetition);this._toCleanUp.push(cp);return cp};this.createRadialGradient=function(x1,y1,r1,x2,y2,r2){if(!allAreFinite(arguments)){return}var rcg=new RadialCanvasGradient(x1,y1,r1,x2,y2,r2);this._toCleanUp.push(rcg);return rcg};this.drawImage=function(img){if(img instanceof HTMLImage){img=img.getSkImage()}var iPaint=this._fillPaint();if(arguments.length===3||arguments.length===5){var destRect=CanvasKit.XYWHRect(arguments[1],arguments[2],arguments[3]||img.width(),arguments[4]||img.height());var srcRect=CanvasKit.XYWHRect(0,0,img.width(),img.height())}else if(arguments.length===9){var destRect=CanvasKit.XYWHRect(arguments[5],arguments[6],arguments[7],arguments[8]);var srcRect=CanvasKit.XYWHRect(arguments[1],arguments[2],arguments[3],arguments[4])}else{throw"invalid number of args for drawImage, need 3, 5, or 9; got "+arguments.length}this._canvas.drawImageRect(img,srcRect,destRect,iPaint,false);iPaint.dispose()};this.ellipse=function(x,y,radiusX,radiusY,rotation,startAngle,endAngle,ccw){ellipse(this._currentPath,x,y,radiusX,radiusY,rotation,startAngle,endAngle,ccw)};this._fillPaint=function(){var paint=this._paint.copy();paint.setStyle(CanvasKit.PaintStyle.Fill);if(isCanvasKitColor(this._fillStyle)){var alphaColor=CanvasKit.multiplyByAlpha(this._fillStyle,this._globalAlpha);paint.setColor(alphaColor)}else{var shader=this._fillStyle._getShader(this._currentTransform);paint.setColor(CanvasKit.Color(0,0,0,this._globalAlpha));paint.setShader(shader)}paint.dispose=function(){this.delete()};return paint};this.fill=function(path,fillRule){if(typeof path==="string"){fillRule=path;path=this._currentPath}else if(path&&path._getPath){path=path._getPath()}if(fillRule==="evenodd"){this._currentPath.setFillType(CanvasKit.FillType.EvenOdd)}else if(fillRule==="nonzero"||!fillRule){this._currentPath.setFillType(CanvasKit.FillType.Winding)}else{throw"invalid fill rule"}if(!path){path=this._currentPath}var fillPaint=this._fillPaint();var shadowPaint=this._shadowPaint(fillPaint);if(shadowPaint){this._canvas.save();this._applyShadowOffsetMatrix();this._canvas.drawPath(path,shadowPaint);this._canvas.restore();shadowPaint.dispose()}this._canvas.drawPath(path,fillPaint);fillPaint.dispose()};this.fillRect=function(x,y,width,height){var fillPaint=this._fillPaint();var shadowPaint=this._shadowPaint(fillPaint);if(shadowPaint){this._canvas.save();this._applyShadowOffsetMatrix();this._canvas.drawRect(CanvasKit.XYWHRect(x,y,width,height),shadowPaint);this._canvas.restore();shadowPaint.dispose()}this._canvas.drawRect(CanvasKit.XYWHRect(x,y,width,height),fillPaint);fillPaint.dispose()};this.fillText=function(text,x,y,maxWidth){var fillPaint=this._fillPaint();var blob=CanvasKit.TextBlob.MakeFromText(text,this._font);var shadowPaint=this._shadowPaint(fillPaint);if(shadowPaint){this._canvas.save();this._applyShadowOffsetMatrix();this._canvas.drawTextBlob(blob,x,y,shadowPaint);this._canvas.restore();shadowPaint.dispose()}this._canvas.drawTextBlob(blob,x,y,fillPaint);blob.delete();fillPaint.dispose()};this.getImageData=function(x,y,w,h){var pixels=this._canvas.readPixels(x,y,{"width":w,"height":h,"colorType":CanvasKit.ColorType.RGBA_8888,"alphaType":CanvasKit.AlphaType.Unpremul,"colorSpace":CanvasKit.ColorSpace.SRGB});if(!pixels){return null}return new ImageData(new Uint8ClampedArray(pixels.buffer),w,h)};this.getLineDash=function(){return this._lineDashList.slice()};this._mapToLocalCoordinates=function(pts){var inverted=CanvasKit.Matrix.invert(this._currentTransform);CanvasKit.Matrix.mapPoints(inverted,pts);return pts};this.isPointInPath=function(x,y,fillmode){var args=arguments;if(args.length===3){var path=this._currentPath}else if(args.length===4){var path=args[0];x=args[1];y=args[2];fillmode=args[3]}else{throw"invalid arg count, need 3 or 4, got "+args.length}if(!isFinite(x)||!isFinite(y)){return false}fillmode=fillmode||"nonzero";if(!(fillmode==="nonzero"||fillmode==="evenodd")){return false}var pts=this._mapToLocalCoordinates([x,y]);x=pts[0];y=pts[1];path.setFillType(fillmode==="nonzero"?CanvasKit.FillType.Winding:CanvasKit.FillType.EvenOdd);return path.contains(x,y)};this.isPointInStroke=function(x,y){var args=arguments;if(args.length===2){var path=this._currentPath}else if(args.length===3){var path=args[0];x=args[1];y=args[2]}else{throw"invalid arg count, need 2 or 3, got "+args.length}if(!isFinite(x)||!isFinite(y)){return false}var pts=this._mapToLocalCoordinates([x,y]);x=pts[0];y=pts[1];var temp=path.copy();temp.setFillType(CanvasKit.FillType.Winding);temp.stroke({"width":this.lineWidth,"miter_limit":this.miterLimit,"cap":this._paint.getStrokeCap(),"join":this._paint.getStrokeJoin(),"precision":.3});var retVal=temp.contains(x,y);temp.delete();return retVal};this.lineTo=function(x,y){lineTo(this._currentPath,x,y)};this.measureText=function(text){const ids=this._font.getGlyphIDs(text);const widths=this._font.getGlyphWidths(ids);let totalWidth=0;for(const w of widths){totalWidth+=w}return{"width":totalWidth}};this.moveTo=function(x,y){moveTo(this._currentPath,x,y)};this.putImageData=function(imageData,x,y,dirtyX,dirtyY,dirtyWidth,dirtyHeight){if(!allAreFinite([x,y,dirtyX,dirtyY,dirtyWidth,dirtyHeight])){return}if(dirtyX===undefined){this._canvas.writePixels(imageData.data,imageData.width,imageData.height,x,y);return}dirtyX=dirtyX||0;dirtyY=dirtyY||0;dirtyWidth=dirtyWidth||imageData.width;dirtyHeight=dirtyHeight||imageData.height;if(dirtyWidth<0){dirtyX=dirtyX+dirtyWidth;dirtyWidth=Math.abs(dirtyWidth)}if(dirtyHeight<0){dirtyY=dirtyY+dirtyHeight;dirtyHeight=Math.abs(dirtyHeight)}if(dirtyX<0){dirtyWidth=dirtyWidth+dirtyX;dirtyX=0}if(dirtyY<0){dirtyHeight=dirtyHeight+dirtyY;dirtyY=0}if(dirtyWidth<=0||dirtyHeight<=0){return}var img=CanvasKit.MakeImage({"width":imageData.width,"height":imageData.height,"alphaType":CanvasKit.AlphaType.Unpremul,"colorType":CanvasKit.ColorType.RGBA_8888,"colorSpace":CanvasKit.ColorSpace.SRGB},imageData.data,4*imageData.width);var src=CanvasKit.XYWHRect(dirtyX,dirtyY,dirtyWidth,dirtyHeight);var dst=CanvasKit.XYWHRect(x+dirtyX,y+dirtyY,dirtyWidth,dirtyHeight);var inverted=CanvasKit.Matrix.invert(this._currentTransform);this._canvas.save();this._canvas.concat(inverted);this._canvas.drawImageRect(img,src,dst,null,false);this._canvas.restore();img.delete()};this.quadraticCurveTo=function(cpx,cpy,x,y){quadraticCurveTo(this._currentPath,cpx,cpy,x,y)};this.rect=function(x,y,width,height){rect(this._currentPath,x,y,width,height)};this.resetTransform=function(){this._currentPath.transform(this._currentTransform);var inverted=CanvasKit.Matrix.invert(this._currentTransform);this._canvas.concat(inverted);this._currentTransform=this._canvas.getTotalMatrix()};this.restore=function(){var newState=this._canvasStateStack.pop();if(!newState){return}var combined=CanvasKit.Matrix.multiply(this._currentTransform,CanvasKit.Matrix.invert(newState.ctm));this._currentPath.transform(combined);this._paint.delete();this._paint=newState.paint;this._lineDashList=newState.ldl;this._strokeWidth=newState.sw;this._strokeStyle=newState.ss;this._fillStyle=newState.fs;this._shadowOffsetX=newState.sox;this._shadowOffsetY=newState.soy;this._shadowBlur=newState.sb;this._shadowColor=newState.shc;this._globalAlpha=newState.ga;this._globalCompositeOperation=newState.gco;this._lineDashOffset=newState.ldo;this._fontString=newState.fontstr;this._canvas.restore();this._currentTransform=this._canvas.getTotalMatrix()};this.rotate=function(radians){if(!isFinite(radians)){return}var inverted=CanvasKit.Matrix.rotated(-radians);this._currentPath.transform(inverted);this._canvas.rotate(radiansToDegrees(radians),0,0);this._currentTransform=this._canvas.getTotalMatrix()};this.save=function(){if(this._fillStyle._copy){var fs=this._fillStyle._copy();this._toCleanUp.push(fs)}else{var fs=this._fillStyle}if(this._strokeStyle._copy){var ss=this._strokeStyle._copy();this._toCleanUp.push(ss)}else{var ss=this._strokeStyle}this._canvasStateStack.push({ctm:this._currentTransform.slice(),ldl:this._lineDashList.slice(),sw:this._strokeWidth,ss:ss,fs:fs,sox:this._shadowOffsetX,soy:this._shadowOffsetY,sb:this._shadowBlur,shc:this._shadowColor,ga:this._globalAlpha,ldo:this._lineDashOffset,gco:this._globalCompositeOperation,paint:this._paint.copy(),fontstr:this._fontString});this._canvas.save()};this.scale=function(sx,sy){if(!allAreFinite(arguments)){return}var inverted=CanvasKit.Matrix.scaled(1/sx,1/sy);this._currentPath.transform(inverted);this._canvas.scale(sx,sy);this._currentTransform=this._canvas.getTotalMatrix()};this.setLineDash=function(dashes){for(var i=0;i1||!isFinite(offset)){throw"offset must be between 0 and 1 inclusively"}color=parseColor(color);var idx=this._pos.indexOf(offset);if(idx!==-1){this._colors[idx]=color}else{for(idx=0;idxoffset){break}}this._pos.splice(idx,0,offset);this._colors.splice(idx,0,color)}};this._copy=function(){var lcg=new LinearCanvasGradient(x1,y1,x2,y2);lcg._colors=this._colors.slice();lcg._pos=this._pos.slice();return lcg};this._dispose=function(){if(this._shader){this._shader.delete();this._shader=null}};this._getShader=function(currentTransform){var pts=[x1,y1,x2,y2];CanvasKit.Matrix.mapPoints(currentTransform,pts);var sx1=pts[0];var sy1=pts[1];var sx2=pts[2];var sy2=pts[3];this._dispose();this._shader=CanvasKit.Shader.MakeLinearGradient([sx1,sy1],[sx2,sy2],this._colors,this._pos,CanvasKit.TileMode.Clamp);return this._shader}}function arc(skpath,x,y,radius,startAngle,endAngle,ccw){ellipse(skpath,x,y,radius,radius,0,startAngle,endAngle,ccw)}function arcTo(skpath,x1,y1,x2,y2,radius){if(!allAreFinite([x1,y1,x2,y2,radius])){return}if(radius<0){throw"radii cannot be negative"}if(skpath.isEmpty()){skpath.moveTo(x1,y1)}skpath.arcToTangent(x1,y1,x2,y2,radius)}function bezierCurveTo(skpath,cp1x,cp1y,cp2x,cp2y,x,y){if(!allAreFinite([cp1x,cp1y,cp2x,cp2y,x,y])){return}if(skpath.isEmpty()){skpath.moveTo(cp1x,cp1y)}skpath.cubicTo(cp1x,cp1y,cp2x,cp2y,x,y)}function closePath(skpath){if(skpath.isEmpty()){return}var bounds=skpath.getBounds();if(bounds[3]-bounds[1]||bounds[2]-bounds[0]){skpath.close()}}function _ellipseHelper(skpath,x,y,radiusX,radiusY,startAngle,endAngle){var sweepDegrees=radiansToDegrees(endAngle-startAngle);var startDegrees=radiansToDegrees(startAngle);var oval=CanvasKit.LTRBRect(x-radiusX,y-radiusY,x+radiusX,y+radiusY);if(almostEqual(Math.abs(sweepDegrees),360)){var halfSweep=sweepDegrees/2;skpath.arcToOval(oval,startDegrees,halfSweep,false);skpath.arcToOval(oval,startDegrees+halfSweep,halfSweep,false);return}skpath.arcToOval(oval,startDegrees,sweepDegrees,false)}function ellipse(skpath,x,y,radiusX,radiusY,rotation,startAngle,endAngle,ccw){if(!allAreFinite([x,y,radiusX,radiusY,rotation,startAngle,endAngle])){return}if(radiusX<0||radiusY<0){throw"radii cannot be negative"}var tao=2*Math.PI;var newStartAngle=startAngle%tao;if(newStartAngle<0){newStartAngle+=tao}var delta=newStartAngle-startAngle;startAngle=newStartAngle;endAngle+=delta;if(!ccw&&endAngle-startAngle>=tao){endAngle=startAngle+tao}else if(ccw&&startAngle-endAngle>=tao){endAngle=startAngle-tao}else if(!ccw&&startAngle>endAngle){endAngle=startAngle+(tao-(startAngle-endAngle)%tao)}else if(ccw&&startAngle1||!isFinite(offset)){throw"offset must be between 0 and 1 inclusively"}color=parseColor(color);var idx=this._pos.indexOf(offset);if(idx!==-1){this._colors[idx]=color}else{for(idx=0;idxoffset){break}}this._pos.splice(idx,0,offset);this._colors.splice(idx,0,color)}};this._copy=function(){var rcg=new RadialCanvasGradient(x1,y1,r1,x2,y2,r2);rcg._colors=this._colors.slice();rcg._pos=this._pos.slice();return rcg};this._dispose=function(){if(this._shader){this._shader.delete();this._shader=null}};this._getShader=function(currentTransform){var pts=[x1,y1,x2,y2];CanvasKit.Matrix.mapPoints(currentTransform,pts);var sx1=pts[0];var sy1=pts[1];var sx2=pts[2];var sy2=pts[3];var sx=currentTransform[0];var sy=currentTransform[4];var scaleFactor=(Math.abs(sx)+Math.abs(sy))/2;var sr1=r1*scaleFactor;var sr2=r2*scaleFactor;this._dispose();this._shader=CanvasKit.Shader.MakeTwoPointConicalGradient([sx1,sy1],sr1,[sx2,sy2],sr2,this._colors,this._pos,CanvasKit.TileMode.Clamp);return this._shader}}})()})(Module);var moduleOverrides=objAssign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window==="object";var ENVIRONMENT_IS_WORKER=typeof importScripts==="function";var ENVIRONMENT_IS_NODE=typeof process==="object"&&typeof process.versions==="object"&&typeof process.versions.node==="string";var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}var fs;var nodePath;var requireNodeFS;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}requireNodeFS=(()=>{if(!nodePath){fs=require("fs");nodePath=require("path")}});read_=function shell_read(filename,binary){requireNodeFS();filename=nodePath["normalize"](filename);return fs.readFileSync(filename,binary?null:"utf8")};readBinary=(filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret});readAsync=((filename,onload,onerror)=>{requireNodeFS();filename=nodePath["normalize"](filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})});if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",function(reason){throw reason});quit_=((status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)});Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!=="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=(url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText});if(ENVIRONMENT_IS_WORKER){readBinary=(url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)})}readAsync=((url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=(()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()});xhr.onerror=onerror;xhr.send(null)})}setWindowTitle=(title=>document.title=title)}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);objAssign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var tempRet0=0;var setTempRet0=value=>{tempRet0=value};var getTempRet0=()=>tempRet0;var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!=="object"){abort("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(heap,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heap[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heap.subarray&&UTF8Decoder){return UTF8Decoder.decode(heap.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;function UTF16ToString(ptr,maxBytesToRead){var endPtr=ptr;var idx=endPtr>>1;var maxIdx=idx+maxBytesToRead/2;while(!(idx>=maxIdx)&&HEAPU16[idx])++idx;endPtr=idx<<1;if(endPtr-ptr>32&&UTF16Decoder){return UTF16Decoder.decode(HEAPU8.subarray(ptr,endPtr))}else{var str="";for(var i=0;!(i>=maxBytesToRead/2);++i){var codeUnit=HEAP16[ptr+i*2>>1];if(codeUnit==0)break;str+=String.fromCharCode(codeUnit)}return str}}function stringToUTF16(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===undefined){maxBytesToWrite=2147483647}if(maxBytesToWrite<2)return 0;maxBytesToWrite-=2;var startPtr=outPtr;var numCharsToWrite=maxBytesToWrite>1]=codeUnit;outPtr+=2}HEAP16[outPtr>>1]=0;return outPtr-startPtr}function lengthBytesUTF16(str){return str.length*2}function UTF32ToString(ptr,maxBytesToRead){var i=0;var str="";while(!(i>=maxBytesToRead/4)){var utf32=HEAP32[ptr+i*4>>2];if(utf32==0)break;++i;if(utf32>=65536){var ch=utf32-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}else{str+=String.fromCharCode(utf32)}}return str}function stringToUTF32(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===undefined){maxBytesToWrite=2147483647}if(maxBytesToWrite<4)return 0;var startPtr=outPtr;var endPtr=startPtr+maxBytesToWrite-4;for(var i=0;i=55296&&codeUnit<=57343){var trailSurrogate=str.charCodeAt(++i);codeUnit=65536+((codeUnit&1023)<<10)|trailSurrogate&1023}HEAP32[outPtr>>2]=codeUnit;outPtr+=4;if(outPtr+4>endPtr)break}HEAP32[outPtr>>2]=0;return outPtr-startPtr}function lengthBytesUTF32(str){var len=0;for(var i=0;i=55296&&codeUnit<=57343)++i;len+=4}return len}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}function alignUp(x,multiple){if(x%multiple>0){x+=multiple-x%multiple}return x}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||134217728;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;var runtimeKeepaliveCounter=0;function keepRuntimeAlive(){return noExitRuntime||runtimeKeepaliveCounter>0}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function exitRuntime(){runtimeExited=true}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -s ASSERTIONS=1 for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;wasmBinaryFile="canvaskit.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch==="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"a":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["bd"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["ed"];addOnInit(Module["asm"]["cd"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch==="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync().catch(readyPromiseReject);return{}}function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){getWasmTableEntry(func)()}else{getWasmTableEntry(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function getWasmTableEntry(funcPtr){return wasmTable.get(funcPtr)}function ___cxa_allocate_exception(size){return _malloc(size+16)+16}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-16;this.set_type=function(type){HEAP32[this.ptr+4>>2]=type};this.get_type=function(){return HEAP32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAP32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAP32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1}}var exceptionLast=0;var uncaughtExceptionCount=0;function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw ptr}function setErrNo(value){HEAP32[___errno_location()>>2]=value;return value}var SYSCALLS={mappings:{},buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},get64:function(low,high){return low}};function ___syscall_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;return 0}function ___syscall_fstat64(fd,buf){}function ___syscall_fstatat64(dirfd,path,buf,flags){}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;return 0}function ___syscall_lstat64(path,buf){}function zeroMemory(address,size){HEAPU8.fill(0,address,address+size)}function alignMemory(size,alignment){return Math.ceil(size/alignment)*alignment}function mmapAlloc(size){size=alignMemory(size,65536);var ptr=_memalign(65536,size);if(!ptr)return 0;zeroMemory(ptr,size);return ptr}function syscallMmap2(addr,len,prot,flags,fd,off){off<<=12;var ptr;var allocated=false;if((flags&16)!==0&&addr%65536!==0){return-28}if((flags&32)!==0){ptr=mmapAlloc(len);if(!ptr)return-48;allocated=true}else{return-52}SYSCALLS.mappings[ptr]={malloc:ptr,len:len,allocated:allocated,fd:fd,prot:prot,flags:flags,offset:off};return ptr}function ___syscall_mmap2(addr,len,prot,flags,fd,off){return syscallMmap2(addr,len,prot,flags,fd,off)}function syscallMunmap(addr,len){var info=SYSCALLS.mappings[addr];if(len===0||!info){return-28}if(len===info.len){SYSCALLS.mappings[addr]=null;if(info.allocated){_free(info.malloc)}}return 0}function ___syscall_munmap(addr,len){return syscallMunmap(addr,len)}function ___syscall_open(path,flags,varargs){SYSCALLS.varargs=varargs}function ___syscall_stat64(path,buf){}var structRegistrations={};function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return"_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return"_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return function(){null;return body.apply(this,arguments)}}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=(handle=>handle);return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=(handle=>{finalizationGroup.register(handle,handle.$$,handle.$$);return handle});detachFinalizer=(handle=>{finalizationGroup.unregister(handle.$$)});return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name)}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name)}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,Emval.toHandle(function(){clonedHandle["delete"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError("Unsupporting sharing policy")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name)}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name)}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this["toWireType"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function dynCallLegacy(sig,ptr,args){var f=Module["dynCall_"+sig];return args&&args.length?f.apply(null,[ptr].concat(args)):f.call(null,ptr)}function dynCall(sig,ptr,args){if(sig.includes("j")){return dynCallLegacy(sig,ptr,args)}return getWasmTableEntry(ptr).apply(null,args)}function getDynCaller(sig,ptr){var argCache=[];return function(){argCache.length=arguments.length;for(var i=0;i>2)+i])}return array}function __embind_register_class_class_function(rawClassType,methodName,argCount,rawArgTypesAddr,invokerSignature,rawInvoker,fn){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);methodName=readLatin1String(methodName);rawInvoker=embind__requireFunction(invokerSignature,rawInvoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=classType.name+"."+methodName;function unboundTypesHandler(){throwUnboundTypeError("Cannot call "+humanName+" due to unbound types",rawArgTypes)}if(methodName.startsWith("@@")){methodName=Symbol[methodName.substring(2)]}var proto=classType.registeredClass.constructor;if(undefined===proto[methodName]){unboundTypesHandler.argCount=argCount-1;proto[methodName]=unboundTypesHandler}else{ensureOverloadTable(proto,methodName,humanName);proto[methodName].overloadTable[argCount-1]=unboundTypesHandler}whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));var func=craftInvokerFunction(humanName,invokerArgsArray,null,rawInvoker,fn);if(undefined===proto[methodName].overloadTable){func.argCount=argCount-1;proto[methodName]=func}else{proto[methodName].overloadTable[argCount-1]=func}return[]});return[]})}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){assert(argCount>0);var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=(()=>{throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes)});whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){argTypes.splice(1,0,null);classType.registeredClass.constructor_body[argCount-1]=craftInvokerFunction(humanName,argTypes,null,invoker,rawConstructor);return[]});return[]})}function __embind_register_class_function(rawClassType,methodName,argCount,rawArgTypesAddr,invokerSignature,rawInvoker,context,isPureVirtual){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);methodName=readLatin1String(methodName);rawInvoker=embind__requireFunction(invokerSignature,rawInvoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=classType.name+"."+methodName;if(methodName.startsWith("@@")){methodName=Symbol[methodName.substring(2)]}if(isPureVirtual){classType.registeredClass.pureVirtualFunctions.push(methodName)}function unboundTypesHandler(){throwUnboundTypeError("Cannot call "+humanName+" due to unbound types",rawArgTypes)}var proto=classType.registeredClass.instancePrototype;var method=proto[methodName];if(undefined===method||undefined===method.overloadTable&&method.className!==classType.name&&method.argCount===argCount-2){unboundTypesHandler.argCount=argCount-2;unboundTypesHandler.className=classType.name;proto[methodName]=unboundTypesHandler}else{ensureOverloadTable(proto,methodName,humanName);proto[methodName].overloadTable[argCount-2]=unboundTypesHandler}whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){var memberFunction=craftInvokerFunction(humanName,argTypes,classType,rawInvoker,context);if(undefined===proto[methodName].overloadTable){memberFunction.argCount=argCount-2;proto[methodName]=memberFunction}else{proto[methodName].overloadTable[argCount-2]=memberFunction}return[]});return[]})}function __embind_register_constant(name,type,value){name=readLatin1String(name);whenDependentTypesAreResolved([],[type],function(type){type=type[0];Module[name]=type["fromWireType"](value);return[]})}var emval_free_list=[];var emval_handle_array=[{},{value:undefined},{value:null},{value:true},{value:false}];function __emval_decref(handle){if(handle>4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>1])};case 2:return function(pointer){var heap=signed?HEAP32:HEAPU32;return this["fromWireType"](heap[pointer>>2])};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_enum(rawType,name,size,isSigned){var shift=getShiftFromSize(size);name=readLatin1String(name);function ctor(){}ctor.values={};registerType(rawType,{name:name,constructor:ctor,"fromWireType":function(c){return this.constructor.values[c]},"toWireType":function(destructors,c){return c.value},"argPackAdvance":8,"readValueFromPointer":enumReadValueFromPointer(name,shift,isSigned),destructorFunction:null});exposePublicSymbol(name,ctor)}function requireRegisteredType(rawType,humanName){var impl=registeredTypes[rawType];if(undefined===impl){throwBindingError(humanName+" has unknown type "+getTypeName(rawType))}return impl}function __embind_register_enum_value(rawEnumType,name,enumValue){var enumType=requireRegisteredType(rawEnumType,"enum");name=readLatin1String(name);var Enum=enumType.constructor;var Value=Object.create(enumType.constructor.prototype,{value:{value:enumValue},constructor:{value:createNamedFunction(enumType.name+"_"+name,function(){})}});Enum.values[enumValue]=Value;Enum[name]=Value}function _embind_repr(v){if(v===null){return"null"}var t=typeof v;if(t==="object"||t==="array"||t==="function"){return v.toString()}else{return""+v}}function floatReadValueFromPointer(name,shift){switch(shift){case 2:return function(pointer){return this["fromWireType"](HEAPF32[pointer>>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=value=>value;if(minRange===0){var bitshift=32-8*size;fromWireType=(value=>value<>>bitshift)}var isUnsignedType=name.includes("unsigned");var checkAssertions=(value,toTypeName)=>{};var toWireType;if(isUnsignedType){toWireType=function(destructors,value){checkAssertions(value,this.name);return value>>>0}}else{toWireType=function(destructors,value){checkAssertions(value,this.name);return value}}registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":toWireType,"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(buffer,data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_smart_ptr(rawType,rawPointeeType,name,sharingPolicy,getPointeeSignature,rawGetPointee,constructorSignature,rawConstructor,shareSignature,rawShare,destructorSignature,rawDestructor){name=readLatin1String(name);rawGetPointee=embind__requireFunction(getPointeeSignature,rawGetPointee);rawConstructor=embind__requireFunction(constructorSignature,rawConstructor);rawShare=embind__requireFunction(shareSignature,rawShare);rawDestructor=embind__requireFunction(destructorSignature,rawDestructor);whenDependentTypesAreResolved([rawType],[rawPointeeType],function(pointeeType){pointeeType=pointeeType[0];var registeredPointer=new RegisteredPointer(name,pointeeType.registeredClass,false,false,true,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor);return[registeredPointer]})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(i==length||HEAPU8[currentBytePtr]==0){var maxRead=currentBytePtr-decodeStartPtr;var stringSegment=UTF8ToString(decodeStartPtr,maxRead);if(str===undefined){str=stringSegment}else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}}else{var a=new Array(length);for(var i=0;ilengthBytesUTF8(value))}else{getLength=(()=>value.length)}var length=getLength();var ptr=_malloc(4+length+1);HEAPU32[ptr>>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;iHEAPU16);shift=1}else if(charSize===4){decodeString=UTF32ToString;encodeString=stringToUTF32;lengthBytesUTF=lengthBytesUTF32;getHeap=(()=>HEAPU32);shift=2}registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var HEAP=getHeap();var str;var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i*charSize;if(i==length||HEAP[currentBytePtr>>shift]==0){var maxReadBytes=currentBytePtr-decodeStartPtr;var stringSegment=decodeString(decodeStartPtr,maxReadBytes);if(str===undefined){str=stringSegment}else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+charSize}}_free(value);return str},"toWireType":function(destructors,value){if(!(typeof value==="string")){throwBindingError("Cannot pass non-string to C++ string type "+name)}var length=lengthBytesUTF(value);var ptr=_malloc(4+length+charSize);HEAPU32[ptr>>2]=length>>shift;encodeString(value,ptr+4,length+charSize);if(destructors!==null){destructors.push(_free,ptr)}return ptr},"argPackAdvance":8,"readValueFromPointer":simpleReadValueFromPointer,destructorFunction:function(ptr){_free(ptr)}})}function __embind_register_value_object(rawType,name,constructorSignature,rawConstructor,destructorSignature,rawDestructor){structRegistrations[rawType]={name:readLatin1String(name),rawConstructor:embind__requireFunction(constructorSignature,rawConstructor),rawDestructor:embind__requireFunction(destructorSignature,rawDestructor),fields:[]}}function __embind_register_value_object_field(structType,fieldName,getterReturnType,getterSignature,getter,getterContext,setterArgumentType,setterSignature,setter,setterContext){structRegistrations[structType].fields.push({fieldName:readLatin1String(fieldName),getterReturnType:getterReturnType,getter:embind__requireFunction(getterSignature,getter),getterContext:getterContext,setterArgumentType:setterArgumentType,setter:embind__requireFunction(setterSignature,setter),setterContext:setterContext})}function __embind_register_void(rawType,name){name=readLatin1String(name);registerType(rawType,{isVoid:true,name:name,"argPackAdvance":0,"fromWireType":function(){return undefined},"toWireType":function(destructors,o){return undefined}})}function __emscripten_throw_longjmp(){throw"longjmp"}function __emval_as(handle,returnType,destructorsRef){handle=Emval.toValue(handle);returnType=requireRegisteredType(returnType,"emval::as");var destructors=[];var rd=Emval.toHandle(destructors);HEAP32[destructorsRef>>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_allocateDestructors(destructorsRef){var destructors=[];HEAP32[destructorsRef>>2]=Emval.toHandle(destructors);return destructors}var emval_symbols={};function getStringOrSymbol(address){var symbol=emval_symbols[address];if(symbol===undefined){return readLatin1String(address)}else{return symbol}}var emval_methodCallers=[];function __emval_call_method(caller,handle,methodName,destructorsRef,args){caller=emval_methodCallers[caller];handle=Emval.toValue(handle);methodName=getStringOrSymbol(methodName);return caller(handle,methodName,__emval_allocateDestructors(destructorsRef),args)}function __emval_call_void_method(caller,handle,methodName,args){caller=emval_methodCallers[caller];handle=Emval.toValue(handle);methodName=getStringOrSymbol(methodName);caller(handle,methodName,null,args)}function emval_get_global(){if(typeof globalThis==="object"){return globalThis}function testGlobal(obj){obj["$$$embind_global$$$"]=obj;var success=typeof $$$embind_global$$$==="object"&&obj["$$$embind_global$$$"]===obj;if(!success){delete obj["$$$embind_global$$$"]}return success}if(typeof $$$embind_global$$$==="object"){return $$$embind_global$$$}if(typeof global==="object"&&testGlobal(global)){$$$embind_global$$$=global}else if(typeof self==="object"&&testGlobal(self)){$$$embind_global$$$=self}if(typeof $$$embind_global$$$==="object"){return $$$embind_global$$$}throw Error("unable to get global object.")}function __emval_get_global(name){if(name===0){return Emval.toHandle(emval_get_global())}else{name=getStringOrSymbol(name);return Emval.toHandle(emval_get_global()[name])}}function __emval_addMethodCaller(caller){var id=emval_methodCallers.length;emval_methodCallers.push(caller);return id}function __emval_lookupTypes(argCount,argTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i)}return a}var emval_registeredMethods=[];function __emval_get_method_caller(argCount,argTypes){var types=__emval_lookupTypes(argCount,argTypes);var retType=types[0];var signatureName=retType.name+"_$"+types.slice(1).map(function(t){return t.name}).join("_")+"$";var returnId=emval_registeredMethods[signatureName];if(returnId!==undefined){return returnId}var argN=new Array(argCount-1);var invokerFunction=(handle,name,destructors,args)=>{var offset=0;for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function craftEmvalAllocator(argCount){var argsList=new Array(argCount+1);return function(constructor,argTypes,args){argsList[0]=constructor;for(var i=0;i>2)+i],"parameter "+i);argsList[i+1]=argType["readValueFromPointer"](args);args+=argType["argPackAdvance"]}var obj=new(constructor.bind.apply(constructor,argsList));return Emval.toHandle(obj)}}var emval_newers={};function __emval_new(handle,argCount,argTypes,args){handle=Emval.toValue(handle);var newer=emval_newers[argCount];if(!newer){newer=craftEmvalAllocator(argCount);emval_newers[argCount]=newer}return newer(handle,argTypes,args)}function __emval_new_array(){return Emval.toHandle([])}function __emval_new_cstring(v){return Emval.toHandle(getStringOrSymbol(v))}function __emval_new_object(){return Emval.toHandle({})}function __emval_not(object){object=Emval.toValue(object);return!object}function __emval_run_destructors(handle){var destructors=Emval.toValue(handle);runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=Emval.toValue(handle);key=Emval.toValue(key);value=Emval.toValue(value);handle[key]=value}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return Emval.toHandle(v)}function _abort(){abort("")}var _emscripten_get_now;if(ENVIRONMENT_IS_NODE){_emscripten_get_now=(()=>{var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6})}else _emscripten_get_now=(()=>performance.now());var _emscripten_get_now_is_monotonic=true;function _clock_gettime(clk_id,tp){var now;if(clk_id===0){now=Date.now()}else if((clk_id===1||clk_id===4)&&_emscripten_get_now_is_monotonic){now=_emscripten_get_now()}else{setErrNo(28);return-1}HEAP32[tp>>2]=now/1e3|0;HEAP32[tp+4>>2]=now%1e3*1e3*1e3|0;return 0}function __webgl_enable_ANGLE_instanced_arrays(ctx){var ext=ctx.getExtension("ANGLE_instanced_arrays");if(ext){ctx["vertexAttribDivisor"]=function(index,divisor){ext["vertexAttribDivisorANGLE"](index,divisor)};ctx["drawArraysInstanced"]=function(mode,first,count,primcount){ext["drawArraysInstancedANGLE"](mode,first,count,primcount)};ctx["drawElementsInstanced"]=function(mode,count,type,indices,primcount){ext["drawElementsInstancedANGLE"](mode,count,type,indices,primcount)};return 1}}function __webgl_enable_OES_vertex_array_object(ctx){var ext=ctx.getExtension("OES_vertex_array_object");if(ext){ctx["createVertexArray"]=function(){return ext["createVertexArrayOES"]()};ctx["deleteVertexArray"]=function(vao){ext["deleteVertexArrayOES"](vao)};ctx["bindVertexArray"]=function(vao){ext["bindVertexArrayOES"](vao)};ctx["isVertexArray"]=function(vao){return ext["isVertexArrayOES"](vao)};return 1}}function __webgl_enable_WEBGL_draw_buffers(ctx){var ext=ctx.getExtension("WEBGL_draw_buffers");if(ext){ctx["drawBuffers"]=function(n,bufs){ext["drawBuffersWEBGL"](n,bufs)};return 1}}function __webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(ctx){return!!(ctx.dibvbi=ctx.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"))}function __webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(ctx){return!!(ctx.mdibvbi=ctx.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance"))}function __webgl_enable_WEBGL_multi_draw(ctx){return!!(ctx.multiDrawWebgl=ctx.getExtension("WEBGL_multi_draw"))}var GL={counter:1,buffers:[],programs:[],framebuffers:[],renderbuffers:[],textures:[],shaders:[],vaos:[],contexts:[],offscreenCanvases:{},queries:[],samplers:[],transformFeedbacks:[],syncs:[],stringCache:{},stringiCache:{},unpackAlignment:4,recordError:function recordError(errorCode){if(!GL.lastError){GL.lastError=errorCode}},getNewId:function(table){var ret=GL.counter++;for(var i=table.length;i>2]:-1;source+=UTF8ToString(HEAP32[string+i*4>>2],len<0?undefined:len)}return source},createContext:function(canvas,webGLContextAttributes){if(!canvas.getContextSafariWebGL2Fixed){canvas.getContextSafariWebGL2Fixed=canvas.getContext;canvas.getContext=function(ver,attrs){var gl=canvas.getContextSafariWebGL2Fixed(ver,attrs);return ver=="webgl"==gl instanceof WebGLRenderingContext?gl:null}}var ctx=webGLContextAttributes.majorVersion>1?canvas.getContext("webgl2",webGLContextAttributes):canvas.getContext("webgl",webGLContextAttributes);if(!ctx)return 0;var handle=GL.registerContext(ctx,webGLContextAttributes);return handle},registerContext:function(ctx,webGLContextAttributes){var handle=GL.getNewId(GL.contexts);var context={handle:handle,attributes:webGLContextAttributes,version:webGLContextAttributes.majorVersion,GLctx:ctx};if(ctx.canvas)ctx.canvas.GLctxObject=context;GL.contexts[handle]=context;if(typeof webGLContextAttributes.enableExtensionsByDefault==="undefined"||webGLContextAttributes.enableExtensionsByDefault){GL.initExtensions(context)}return handle},makeContextCurrent:function(contextHandle){GL.currentContext=GL.contexts[contextHandle];Module.ctx=GLctx=GL.currentContext&&GL.currentContext.GLctx;return!(contextHandle&&!GLctx)},getContext:function(contextHandle){return GL.contexts[contextHandle]},deleteContext:function(contextHandle){if(GL.currentContext===GL.contexts[contextHandle])GL.currentContext=null;if(typeof JSEvents==="object")JSEvents.removeAllHandlersOnTarget(GL.contexts[contextHandle].GLctx.canvas);if(GL.contexts[contextHandle]&&GL.contexts[contextHandle].GLctx.canvas)GL.contexts[contextHandle].GLctx.canvas.GLctxObject=undefined;GL.contexts[contextHandle]=null},initExtensions:function(context){if(!context)context=GL.currentContext;if(context.initExtensionsDone)return;context.initExtensionsDone=true;var GLctx=context.GLctx;__webgl_enable_ANGLE_instanced_arrays(GLctx);__webgl_enable_OES_vertex_array_object(GLctx);__webgl_enable_WEBGL_draw_buffers(GLctx);__webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);__webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(context.version>=2){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query_webgl2")}if(context.version<2||!GLctx.disjointTimerQueryExt){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query")}__webgl_enable_WEBGL_multi_draw(GLctx);var exts=GLctx.getSupportedExtensions()||[];exts.forEach(function(ext){if(!ext.includes("lose_context")&&!ext.includes("debug")){GLctx.getExtension(ext)}})}};function _emscripten_glActiveTexture(x0){GLctx["activeTexture"](x0)}function _emscripten_glAttachShader(program,shader){GLctx.attachShader(GL.programs[program],GL.shaders[shader])}function _emscripten_glBindAttribLocation(program,index,name){GLctx.bindAttribLocation(GL.programs[program],index,UTF8ToString(name))}function _emscripten_glBindBuffer(target,buffer){if(target==35051){GLctx.currentPixelPackBufferBinding=buffer}else if(target==35052){GLctx.currentPixelUnpackBufferBinding=buffer}GLctx.bindBuffer(target,GL.buffers[buffer])}function _emscripten_glBindFramebuffer(target,framebuffer){GLctx.bindFramebuffer(target,GL.framebuffers[framebuffer])}function _emscripten_glBindRenderbuffer(target,renderbuffer){GLctx.bindRenderbuffer(target,GL.renderbuffers[renderbuffer])}function _emscripten_glBindSampler(unit,sampler){GLctx["bindSampler"](unit,GL.samplers[sampler])}function _emscripten_glBindTexture(target,texture){GLctx.bindTexture(target,GL.textures[texture])}function _emscripten_glBindVertexArray(vao){GLctx["bindVertexArray"](GL.vaos[vao])}function _emscripten_glBindVertexArrayOES(vao){GLctx["bindVertexArray"](GL.vaos[vao])}function _emscripten_glBlendColor(x0,x1,x2,x3){GLctx["blendColor"](x0,x1,x2,x3)}function _emscripten_glBlendEquation(x0){GLctx["blendEquation"](x0)}function _emscripten_glBlendFunc(x0,x1){GLctx["blendFunc"](x0,x1)}function _emscripten_glBlitFramebuffer(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9){GLctx["blitFramebuffer"](x0,x1,x2,x3,x4,x5,x6,x7,x8,x9)}function _emscripten_glBufferData(target,size,data,usage){if(GL.currentContext.version>=2){if(data){GLctx.bufferData(target,HEAPU8,usage,data,size)}else{GLctx.bufferData(target,size,usage)}}else{GLctx.bufferData(target,data?HEAPU8.subarray(data,data+size):size,usage)}}function _emscripten_glBufferSubData(target,offset,size,data){if(GL.currentContext.version>=2){GLctx.bufferSubData(target,offset,HEAPU8,data,size);return}GLctx.bufferSubData(target,offset,HEAPU8.subarray(data,data+size))}function _emscripten_glCheckFramebufferStatus(x0){return GLctx["checkFramebufferStatus"](x0)}function _emscripten_glClear(x0){GLctx["clear"](x0)}function _emscripten_glClearColor(x0,x1,x2,x3){GLctx["clearColor"](x0,x1,x2,x3)}function _emscripten_glClearStencil(x0){GLctx["clearStencil"](x0)}function convertI32PairToI53(lo,hi){return(lo>>>0)+hi*4294967296}function _emscripten_glClientWaitSync(sync,flags,timeoutLo,timeoutHi){return GLctx.clientWaitSync(GL.syncs[sync],flags,convertI32PairToI53(timeoutLo,timeoutHi))}function _emscripten_glColorMask(red,green,blue,alpha){GLctx.colorMask(!!red,!!green,!!blue,!!alpha)}function _emscripten_glCompileShader(shader){GLctx.compileShader(GL.shaders[shader])}function _emscripten_glCompressedTexImage2D(target,level,internalFormat,width,height,border,imageSize,data){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx["compressedTexImage2D"](target,level,internalFormat,width,height,border,imageSize,data)}else{GLctx["compressedTexImage2D"](target,level,internalFormat,width,height,border,HEAPU8,data,imageSize)}return}GLctx["compressedTexImage2D"](target,level,internalFormat,width,height,border,data?HEAPU8.subarray(data,data+imageSize):null)}function _emscripten_glCompressedTexSubImage2D(target,level,xoffset,yoffset,width,height,format,imageSize,data){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx["compressedTexSubImage2D"](target,level,xoffset,yoffset,width,height,format,imageSize,data)}else{GLctx["compressedTexSubImage2D"](target,level,xoffset,yoffset,width,height,format,HEAPU8,data,imageSize)}return}GLctx["compressedTexSubImage2D"](target,level,xoffset,yoffset,width,height,format,data?HEAPU8.subarray(data,data+imageSize):null)}function _emscripten_glCopyTexSubImage2D(x0,x1,x2,x3,x4,x5,x6,x7){GLctx["copyTexSubImage2D"](x0,x1,x2,x3,x4,x5,x6,x7)}function _emscripten_glCreateProgram(){var id=GL.getNewId(GL.programs);var program=GLctx.createProgram();program.name=id;program.maxUniformLength=program.maxAttributeLength=program.maxUniformBlockNameLength=0;program.uniformIdCounter=1;GL.programs[id]=program;return id}function _emscripten_glCreateShader(shaderType){var id=GL.getNewId(GL.shaders);GL.shaders[id]=GLctx.createShader(shaderType);return id}function _emscripten_glCullFace(x0){GLctx["cullFace"](x0)}function _emscripten_glDeleteBuffers(n,buffers){for(var i=0;i>2];var buffer=GL.buffers[id];if(!buffer)continue;GLctx.deleteBuffer(buffer);buffer.name=0;GL.buffers[id]=null;if(id==GLctx.currentPixelPackBufferBinding)GLctx.currentPixelPackBufferBinding=0;if(id==GLctx.currentPixelUnpackBufferBinding)GLctx.currentPixelUnpackBufferBinding=0}}function _emscripten_glDeleteFramebuffers(n,framebuffers){for(var i=0;i>2];var framebuffer=GL.framebuffers[id];if(!framebuffer)continue;GLctx.deleteFramebuffer(framebuffer);framebuffer.name=0;GL.framebuffers[id]=null}}function _emscripten_glDeleteProgram(id){if(!id)return;var program=GL.programs[id];if(!program){GL.recordError(1281);return}GLctx.deleteProgram(program);program.name=0;GL.programs[id]=null}function _emscripten_glDeleteRenderbuffers(n,renderbuffers){for(var i=0;i>2];var renderbuffer=GL.renderbuffers[id];if(!renderbuffer)continue;GLctx.deleteRenderbuffer(renderbuffer);renderbuffer.name=0;GL.renderbuffers[id]=null}}function _emscripten_glDeleteSamplers(n,samplers){for(var i=0;i>2];var sampler=GL.samplers[id];if(!sampler)continue;GLctx["deleteSampler"](sampler);sampler.name=0;GL.samplers[id]=null}}function _emscripten_glDeleteShader(id){if(!id)return;var shader=GL.shaders[id];if(!shader){GL.recordError(1281);return}GLctx.deleteShader(shader);GL.shaders[id]=null}function _emscripten_glDeleteSync(id){if(!id)return;var sync=GL.syncs[id];if(!sync){GL.recordError(1281);return}GLctx.deleteSync(sync);sync.name=0;GL.syncs[id]=null}function _emscripten_glDeleteTextures(n,textures){for(var i=0;i>2];var texture=GL.textures[id];if(!texture)continue;GLctx.deleteTexture(texture);texture.name=0;GL.textures[id]=null}}function _emscripten_glDeleteVertexArrays(n,vaos){for(var i=0;i>2];GLctx["deleteVertexArray"](GL.vaos[id]);GL.vaos[id]=null}}function _emscripten_glDeleteVertexArraysOES(n,vaos){for(var i=0;i>2];GLctx["deleteVertexArray"](GL.vaos[id]);GL.vaos[id]=null}}function _emscripten_glDepthMask(flag){GLctx.depthMask(!!flag)}function _emscripten_glDisable(x0){GLctx["disable"](x0)}function _emscripten_glDisableVertexAttribArray(index){GLctx.disableVertexAttribArray(index)}function _emscripten_glDrawArrays(mode,first,count){GLctx.drawArrays(mode,first,count)}function _emscripten_glDrawArraysInstanced(mode,first,count,primcount){GLctx["drawArraysInstanced"](mode,first,count,primcount)}function _emscripten_glDrawArraysInstancedBaseInstanceWEBGL(mode,first,count,instanceCount,baseInstance){GLctx.dibvbi["drawArraysInstancedBaseInstanceWEBGL"](mode,first,count,instanceCount,baseInstance)}var tempFixedLengthArray=[];function _emscripten_glDrawBuffers(n,bufs){var bufArray=tempFixedLengthArray[n];for(var i=0;i>2]}GLctx["drawBuffers"](bufArray)}function _emscripten_glDrawElements(mode,count,type,indices){GLctx.drawElements(mode,count,type,indices)}function _emscripten_glDrawElementsInstanced(mode,count,type,indices,primcount){GLctx["drawElementsInstanced"](mode,count,type,indices,primcount)}function _emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL(mode,count,type,offset,instanceCount,baseVertex,baseinstance){GLctx.dibvbi["drawElementsInstancedBaseVertexBaseInstanceWEBGL"](mode,count,type,offset,instanceCount,baseVertex,baseinstance)}function _glDrawElements(mode,count,type,indices){GLctx.drawElements(mode,count,type,indices)}function _emscripten_glDrawRangeElements(mode,start,end,count,type,indices){_glDrawElements(mode,count,type,indices)}function _emscripten_glEnable(x0){GLctx["enable"](x0)}function _emscripten_glEnableVertexAttribArray(index){GLctx.enableVertexAttribArray(index)}function _emscripten_glFenceSync(condition,flags){var sync=GLctx.fenceSync(condition,flags);if(sync){var id=GL.getNewId(GL.syncs);sync.name=id;GL.syncs[id]=sync;return id}else{return 0}}function _emscripten_glFinish(){GLctx["finish"]()}function _emscripten_glFlush(){GLctx["flush"]()}function _emscripten_glFramebufferRenderbuffer(target,attachment,renderbuffertarget,renderbuffer){GLctx.framebufferRenderbuffer(target,attachment,renderbuffertarget,GL.renderbuffers[renderbuffer])}function _emscripten_glFramebufferTexture2D(target,attachment,textarget,texture,level){GLctx.framebufferTexture2D(target,attachment,textarget,GL.textures[texture],level)}function _emscripten_glFrontFace(x0){GLctx["frontFace"](x0)}function __glGenObject(n,buffers,createFunction,objectTable){for(var i=0;i>2]=id}}function _emscripten_glGenBuffers(n,buffers){__glGenObject(n,buffers,"createBuffer",GL.buffers)}function _emscripten_glGenFramebuffers(n,ids){__glGenObject(n,ids,"createFramebuffer",GL.framebuffers)}function _emscripten_glGenRenderbuffers(n,renderbuffers){__glGenObject(n,renderbuffers,"createRenderbuffer",GL.renderbuffers)}function _emscripten_glGenSamplers(n,samplers){__glGenObject(n,samplers,"createSampler",GL.samplers)}function _emscripten_glGenTextures(n,textures){__glGenObject(n,textures,"createTexture",GL.textures)}function _emscripten_glGenVertexArrays(n,arrays){__glGenObject(n,arrays,"createVertexArray",GL.vaos)}function _emscripten_glGenVertexArraysOES(n,arrays){__glGenObject(n,arrays,"createVertexArray",GL.vaos)}function _emscripten_glGenerateMipmap(x0){GLctx["generateMipmap"](x0)}function _emscripten_glGetBufferParameteriv(target,value,data){if(!data){GL.recordError(1281);return}HEAP32[data>>2]=GLctx.getBufferParameter(target,value)}function _emscripten_glGetError(){var error=GLctx.getError()||GL.lastError;GL.lastError=0;return error}function _emscripten_glGetFramebufferAttachmentParameteriv(target,attachment,pname,params){var result=GLctx.getFramebufferAttachmentParameter(target,attachment,pname);if(result instanceof WebGLRenderbuffer||result instanceof WebGLTexture){result=result.name|0}HEAP32[params>>2]=result}function writeI53ToI64(ptr,num){HEAPU32[ptr>>2]=num;HEAPU32[ptr+4>>2]=(num-HEAPU32[ptr>>2])/4294967296}function emscriptenWebGLGet(name_,p,type){if(!p){GL.recordError(1281);return}var ret=undefined;switch(name_){case 36346:ret=1;break;case 36344:if(type!=0&&type!=1){GL.recordError(1280)}return;case 34814:case 36345:ret=0;break;case 34466:var formats=GLctx.getParameter(34467);ret=formats?formats.length:0;break;case 33309:if(GL.currentContext.version<2){GL.recordError(1282);return}var exts=GLctx.getSupportedExtensions()||[];ret=2*exts.length;break;case 33307:case 33308:if(GL.currentContext.version<2){GL.recordError(1280);return}ret=name_==33307?3:0;break}if(ret===undefined){var result=GLctx.getParameter(name_);switch(typeof result){case"number":ret=result;break;case"boolean":ret=result?1:0;break;case"string":GL.recordError(1280);return;case"object":if(result===null){switch(name_){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:{ret=0;break}default:{GL.recordError(1280);return}}}else if(result instanceof Float32Array||result instanceof Uint32Array||result instanceof Int32Array||result instanceof Array){for(var i=0;i>2]=result[i];break;case 2:HEAPF32[p+i*4>>2]=result[i];break;case 4:HEAP8[p+i>>0]=result[i]?1:0;break}}return}else{try{ret=result.name|0}catch(e){GL.recordError(1280);err("GL_INVALID_ENUM in glGet"+type+"v: Unknown object returned from WebGL getParameter("+name_+")! (error: "+e+")");return}}break;default:GL.recordError(1280);err("GL_INVALID_ENUM in glGet"+type+"v: Native code calling glGet"+type+"v("+name_+") and it returns "+result+" of type "+typeof result+"!");return}}switch(type){case 1:writeI53ToI64(p,ret);break;case 0:HEAP32[p>>2]=ret;break;case 2:HEAPF32[p>>2]=ret;break;case 4:HEAP8[p>>0]=ret?1:0;break}}function _emscripten_glGetIntegerv(name_,p){emscriptenWebGLGet(name_,p,0)}function _emscripten_glGetProgramInfoLog(program,maxLength,length,infoLog){var log=GLctx.getProgramInfoLog(GL.programs[program]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull}function _emscripten_glGetProgramiv(program,pname,p){if(!p){GL.recordError(1281);return}if(program>=GL.counter){GL.recordError(1281);return}program=GL.programs[program];if(pname==35716){var log=GLctx.getProgramInfoLog(program);if(log===null)log="(unknown error)";HEAP32[p>>2]=log.length+1}else if(pname==35719){if(!program.maxUniformLength){for(var i=0;i>2]=program.maxUniformLength}else if(pname==35722){if(!program.maxAttributeLength){for(var i=0;i>2]=program.maxAttributeLength}else if(pname==35381){if(!program.maxUniformBlockNameLength){for(var i=0;i>2]=program.maxUniformBlockNameLength}else{HEAP32[p>>2]=GLctx.getProgramParameter(program,pname)}}function _emscripten_glGetRenderbufferParameteriv(target,pname,params){if(!params){GL.recordError(1281);return}HEAP32[params>>2]=GLctx.getRenderbufferParameter(target,pname)}function _emscripten_glGetShaderInfoLog(shader,maxLength,length,infoLog){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull}function _emscripten_glGetShaderPrecisionFormat(shaderType,precisionType,range,precision){var result=GLctx.getShaderPrecisionFormat(shaderType,precisionType);HEAP32[range>>2]=result.rangeMin;HEAP32[range+4>>2]=result.rangeMax;HEAP32[precision>>2]=result.precision}function _emscripten_glGetShaderiv(shader,pname,p){if(!p){GL.recordError(1281);return}if(pname==35716){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var logLength=log?log.length+1:0;HEAP32[p>>2]=logLength}else if(pname==35720){var source=GLctx.getShaderSource(GL.shaders[shader]);var sourceLength=source?source.length+1:0;HEAP32[p>>2]=sourceLength}else{HEAP32[p>>2]=GLctx.getShaderParameter(GL.shaders[shader],pname)}}function stringToNewUTF8(jsString){var length=lengthBytesUTF8(jsString)+1;var cString=_malloc(length);stringToUTF8(jsString,cString,length);return cString}function _emscripten_glGetString(name_){var ret=GL.stringCache[name_];if(!ret){switch(name_){case 7939:var exts=GLctx.getSupportedExtensions()||[];exts=exts.concat(exts.map(function(e){return"GL_"+e}));ret=stringToNewUTF8(exts.join(" "));break;case 7936:case 7937:case 37445:case 37446:var s=GLctx.getParameter(name_);if(!s){GL.recordError(1280)}ret=s&&stringToNewUTF8(s);break;case 7938:var glVersion=GLctx.getParameter(7938);if(GL.currentContext.version>=2)glVersion="OpenGL ES 3.0 ("+glVersion+")";else{glVersion="OpenGL ES 2.0 ("+glVersion+")"}ret=stringToNewUTF8(glVersion);break;case 35724:var glslVersion=GLctx.getParameter(35724);var ver_re=/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/;var ver_num=glslVersion.match(ver_re);if(ver_num!==null){if(ver_num[1].length==3)ver_num[1]=ver_num[1]+"0";glslVersion="OpenGL ES GLSL ES "+ver_num[1]+" ("+glslVersion+")"}ret=stringToNewUTF8(glslVersion);break;default:GL.recordError(1280)}GL.stringCache[name_]=ret}return ret}function _emscripten_glGetStringi(name,index){if(GL.currentContext.version<2){GL.recordError(1282);return 0}var stringiCache=GL.stringiCache[name];if(stringiCache){if(index<0||index>=stringiCache.length){GL.recordError(1281);return 0}return stringiCache[index]}switch(name){case 7939:var exts=GLctx.getSupportedExtensions()||[];exts=exts.concat(exts.map(function(e){return"GL_"+e}));exts=exts.map(function(e){return stringToNewUTF8(e)});stringiCache=GL.stringiCache[name]=exts;if(index<0||index>=stringiCache.length){GL.recordError(1281);return 0}return stringiCache[index];default:GL.recordError(1280);return 0}}function jstoi_q(str){return parseInt(str)}function webglGetLeftBracePos(name){return name.slice(-1)=="]"&&name.lastIndexOf("[")}function webglPrepareUniformLocationsBeforeFirstUse(program){var uniformLocsById=program.uniformLocsById,uniformSizeAndIdsByName=program.uniformSizeAndIdsByName,i,j;if(!uniformLocsById){program.uniformLocsById=uniformLocsById={};program.uniformArrayNamesById={};for(i=0;i0?nm.slice(0,lb):nm;var id=program.uniformIdCounter;program.uniformIdCounter+=sz;uniformSizeAndIdsByName[arrayName]=[sz,id];for(j=0;j0){arrayIndex=jstoi_q(name.slice(leftBrace+1))>>>0;uniformBaseName=name.slice(0,leftBrace)}var sizeAndId=program.uniformSizeAndIdsByName[uniformBaseName];if(sizeAndId&&arrayIndex>2]}GLctx["invalidateFramebuffer"](target,list)}function _emscripten_glInvalidateSubFramebuffer(target,numAttachments,attachments,x,y,width,height){var list=tempFixedLengthArray[numAttachments];for(var i=0;i>2]}GLctx["invalidateSubFramebuffer"](target,list,x,y,width,height)}function _emscripten_glIsSync(sync){return GLctx.isSync(GL.syncs[sync])}function _emscripten_glIsTexture(id){var texture=GL.textures[id];if(!texture)return 0;return GLctx.isTexture(texture)}function _emscripten_glLineWidth(x0){GLctx["lineWidth"](x0)}function _emscripten_glLinkProgram(program){program=GL.programs[program];GLctx.linkProgram(program);program.uniformLocsById=0;program.uniformSizeAndIdsByName={}}function _emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL(mode,firsts,counts,instanceCounts,baseInstances,drawCount){GLctx.mdibvbi["multiDrawArraysInstancedBaseInstanceWEBGL"](mode,HEAP32,firsts>>2,HEAP32,counts>>2,HEAP32,instanceCounts>>2,HEAPU32,baseInstances>>2,drawCount)}function _emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(mode,counts,type,offsets,instanceCounts,baseVertices,baseInstances,drawCount){GLctx.mdibvbi["multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL"](mode,HEAP32,counts>>2,type,HEAP32,offsets>>2,HEAP32,instanceCounts>>2,HEAP32,baseVertices>>2,HEAPU32,baseInstances>>2,drawCount)}function _emscripten_glPixelStorei(pname,param){if(pname==3317){GL.unpackAlignment=param}GLctx.pixelStorei(pname,param)}function _emscripten_glReadBuffer(x0){GLctx["readBuffer"](x0)}function computeUnpackAlignedImageSize(width,height,sizePerPixel,alignment){function roundedToNextMultipleOf(x,y){return x+y-1&-y}var plainRowSize=width*sizePerPixel;var alignedRowSize=roundedToNextMultipleOf(plainRowSize,alignment);return height*alignedRowSize}function __colorChannelsInGlTextureFormat(format){var colorChannels={5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4};return colorChannels[format-6402]||1}function heapObjectForWebGLType(type){type-=5120;if(type==0)return HEAP8;if(type==1)return HEAPU8;if(type==2)return HEAP16;if(type==4)return HEAP32;if(type==6)return HEAPF32;if(type==5||type==28922||type==28520||type==30779||type==30782)return HEAPU32;return HEAPU16}function heapAccessShiftForWebGLHeap(heap){return 31-Math.clz32(heap.BYTES_PER_ELEMENT)}function emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat){var heap=heapObjectForWebGLType(type);var shift=heapAccessShiftForWebGLHeap(heap);var byteSize=1<>shift,pixels+bytes>>shift)}function _emscripten_glReadPixels(x,y,width,height,format,type,pixels){if(GL.currentContext.version>=2){if(GLctx.currentPixelPackBufferBinding){GLctx.readPixels(x,y,width,height,format,type,pixels)}else{var heap=heapObjectForWebGLType(type);GLctx.readPixels(x,y,width,height,format,type,heap,pixels>>heapAccessShiftForWebGLHeap(heap))}return}var pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,format);if(!pixelData){GL.recordError(1280);return}GLctx.readPixels(x,y,width,height,format,type,pixelData)}function _emscripten_glRenderbufferStorage(x0,x1,x2,x3){GLctx["renderbufferStorage"](x0,x1,x2,x3)}function _emscripten_glRenderbufferStorageMultisample(x0,x1,x2,x3,x4){GLctx["renderbufferStorageMultisample"](x0,x1,x2,x3,x4)}function _emscripten_glSamplerParameteri(sampler,pname,param){GLctx["samplerParameteri"](GL.samplers[sampler],pname,param)}function _emscripten_glSamplerParameteriv(sampler,pname,params){var param=HEAP32[params>>2];GLctx["samplerParameteri"](GL.samplers[sampler],pname,param)}function _emscripten_glScissor(x0,x1,x2,x3){GLctx["scissor"](x0,x1,x2,x3)}function _emscripten_glShaderSource(shader,count,string,length){var source=GL.getSource(shader,count,string,length);GLctx.shaderSource(GL.shaders[shader],source)}function _emscripten_glStencilFunc(x0,x1,x2){GLctx["stencilFunc"](x0,x1,x2)}function _emscripten_glStencilFuncSeparate(x0,x1,x2,x3){GLctx["stencilFuncSeparate"](x0,x1,x2,x3)}function _emscripten_glStencilMask(x0){GLctx["stencilMask"](x0)}function _emscripten_glStencilMaskSeparate(x0,x1){GLctx["stencilMaskSeparate"](x0,x1)}function _emscripten_glStencilOp(x0,x1,x2){GLctx["stencilOp"](x0,x1,x2)}function _emscripten_glStencilOpSeparate(x0,x1,x2,x3){GLctx["stencilOpSeparate"](x0,x1,x2,x3)}function _emscripten_glTexImage2D(target,level,internalFormat,width,height,border,format,type,pixels){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,heap,pixels>>heapAccessShiftForWebGLHeap(heap))}else{GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,null)}return}GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels?emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat):null)}function _emscripten_glTexParameterf(x0,x1,x2){GLctx["texParameterf"](x0,x1,x2)}function _emscripten_glTexParameterfv(target,pname,params){var param=HEAPF32[params>>2];GLctx.texParameterf(target,pname,param)}function _emscripten_glTexParameteri(x0,x1,x2){GLctx["texParameteri"](x0,x1,x2)}function _emscripten_glTexParameteriv(target,pname,params){var param=HEAP32[params>>2];GLctx.texParameteri(target,pname,param)}function _emscripten_glTexStorage2D(x0,x1,x2,x3,x4){GLctx["texStorage2D"](x0,x1,x2,x3,x4)}function _emscripten_glTexSubImage2D(target,level,xoffset,yoffset,width,height,format,type,pixels){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,heap,pixels>>heapAccessShiftForWebGLHeap(heap))}else{GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,null)}return}var pixelData=null;if(pixels)pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,0);GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,pixelData)}function webglGetUniformLocation(location){var p=GLctx.currentProgram;if(p){var webglLoc=p.uniformLocsById[location];if(typeof webglLoc==="number"){p.uniformLocsById[location]=webglLoc=GLctx.getUniformLocation(p,p.uniformArrayNamesById[location]+(webglLoc>0?"["+webglLoc+"]":""))}return webglLoc}else{GL.recordError(1282)}}function _emscripten_glUniform1f(location,v0){GLctx.uniform1f(webglGetUniformLocation(location),v0)}var miniTempWebGLFloatBuffers=[];function _emscripten_glUniform1fv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform1fv(webglGetUniformLocation(location),HEAPF32,value>>2,count);return}if(count<=288){var view=miniTempWebGLFloatBuffers[count-1];for(var i=0;i>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*4>>2)}GLctx.uniform1fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform1i(location,v0){GLctx.uniform1i(webglGetUniformLocation(location),v0)}var __miniTempWebGLIntBuffers=[];function _emscripten_glUniform1iv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform1iv(webglGetUniformLocation(location),HEAP32,value>>2,count);return}if(count<=288){var view=__miniTempWebGLIntBuffers[count-1];for(var i=0;i>2]}}else{var view=HEAP32.subarray(value>>2,value+count*4>>2)}GLctx.uniform1iv(webglGetUniformLocation(location),view)}function _emscripten_glUniform2f(location,v0,v1){GLctx.uniform2f(webglGetUniformLocation(location),v0,v1)}function _emscripten_glUniform2fv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform2fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLFloatBuffers[2*count-1];for(var i=0;i<2*count;i+=2){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform2i(location,v0,v1){GLctx.uniform2i(webglGetUniformLocation(location),v0,v1)}function _emscripten_glUniform2iv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform2iv(webglGetUniformLocation(location),HEAP32,value>>2,count*2);return}if(count<=144){var view=__miniTempWebGLIntBuffers[2*count-1];for(var i=0;i<2*count;i+=2){view[i]=HEAP32[value+4*i>>2];view[i+1]=HEAP32[value+(4*i+4)>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2iv(webglGetUniformLocation(location),view)}function _emscripten_glUniform3f(location,v0,v1,v2){GLctx.uniform3f(webglGetUniformLocation(location),v0,v1,v2)}function _emscripten_glUniform3fv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform3fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*3);return}if(count<=96){var view=miniTempWebGLFloatBuffers[3*count-1];for(var i=0;i<3*count;i+=3){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*12>>2)}GLctx.uniform3fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform3i(location,v0,v1,v2){GLctx.uniform3i(webglGetUniformLocation(location),v0,v1,v2)}function _emscripten_glUniform3iv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform3iv(webglGetUniformLocation(location),HEAP32,value>>2,count*3);return}if(count<=96){var view=__miniTempWebGLIntBuffers[3*count-1];for(var i=0;i<3*count;i+=3){view[i]=HEAP32[value+4*i>>2];view[i+1]=HEAP32[value+(4*i+4)>>2];view[i+2]=HEAP32[value+(4*i+8)>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*12>>2)}GLctx.uniform3iv(webglGetUniformLocation(location),view)}function _emscripten_glUniform4f(location,v0,v1,v2,v3){GLctx.uniform4f(webglGetUniformLocation(location),v0,v1,v2,v3)}function _emscripten_glUniform4fv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform4fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count-1];var heap=HEAPF32;value>>=2;for(var i=0;i<4*count;i+=4){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3]}}else{var view=HEAPF32.subarray(value>>2,value+count*16>>2)}GLctx.uniform4fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform4i(location,v0,v1,v2,v3){GLctx.uniform4i(webglGetUniformLocation(location),v0,v1,v2,v3)}function _emscripten_glUniform4iv(location,count,value){if(GL.currentContext.version>=2){GLctx.uniform4iv(webglGetUniformLocation(location),HEAP32,value>>2,count*4);return}if(count<=72){var view=__miniTempWebGLIntBuffers[4*count-1];for(var i=0;i<4*count;i+=4){view[i]=HEAP32[value+4*i>>2];view[i+1]=HEAP32[value+(4*i+4)>>2];view[i+2]=HEAP32[value+(4*i+8)>>2];view[i+3]=HEAP32[value+(4*i+12)>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*16>>2)}GLctx.uniform4iv(webglGetUniformLocation(location),view)}function _emscripten_glUniformMatrix2fv(location,count,transpose,value){if(GL.currentContext.version>=2){GLctx.uniformMatrix2fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count-1];for(var i=0;i<4*count;i+=4){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2];view[i+3]=HEAPF32[value+(4*i+12)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*16>>2)}GLctx.uniformMatrix2fv(webglGetUniformLocation(location),!!transpose,view)}function _emscripten_glUniformMatrix3fv(location,count,transpose,value){if(GL.currentContext.version>=2){GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*9);return}if(count<=32){var view=miniTempWebGLFloatBuffers[9*count-1];for(var i=0;i<9*count;i+=9){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2];view[i+3]=HEAPF32[value+(4*i+12)>>2];view[i+4]=HEAPF32[value+(4*i+16)>>2];view[i+5]=HEAPF32[value+(4*i+20)>>2];view[i+6]=HEAPF32[value+(4*i+24)>>2];view[i+7]=HEAPF32[value+(4*i+28)>>2];view[i+8]=HEAPF32[value+(4*i+32)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*36>>2)}GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,view)}function _emscripten_glUniformMatrix4fv(location,count,transpose,value){if(GL.currentContext.version>=2){GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*16);return}if(count<=18){var view=miniTempWebGLFloatBuffers[16*count-1];var heap=HEAPF32;value>>=2;for(var i=0;i<16*count;i+=16){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3];view[i+4]=heap[dst+4];view[i+5]=heap[dst+5];view[i+6]=heap[dst+6];view[i+7]=heap[dst+7];view[i+8]=heap[dst+8];view[i+9]=heap[dst+9];view[i+10]=heap[dst+10];view[i+11]=heap[dst+11];view[i+12]=heap[dst+12];view[i+13]=heap[dst+13];view[i+14]=heap[dst+14];view[i+15]=heap[dst+15]}}else{var view=HEAPF32.subarray(value>>2,value+count*64>>2)}GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,view)}function _emscripten_glUseProgram(program){program=GL.programs[program];GLctx.useProgram(program);GLctx.currentProgram=program}function _emscripten_glVertexAttrib1f(x0,x1){GLctx["vertexAttrib1f"](x0,x1)}function _emscripten_glVertexAttrib2fv(index,v){GLctx.vertexAttrib2f(index,HEAPF32[v>>2],HEAPF32[v+4>>2])}function _emscripten_glVertexAttrib3fv(index,v){GLctx.vertexAttrib3f(index,HEAPF32[v>>2],HEAPF32[v+4>>2],HEAPF32[v+8>>2])}function _emscripten_glVertexAttrib4fv(index,v){GLctx.vertexAttrib4f(index,HEAPF32[v>>2],HEAPF32[v+4>>2],HEAPF32[v+8>>2],HEAPF32[v+12>>2])}function _emscripten_glVertexAttribDivisor(index,divisor){GLctx["vertexAttribDivisor"](index,divisor)}function _emscripten_glVertexAttribIPointer(index,size,type,stride,ptr){GLctx["vertexAttribIPointer"](index,size,type,stride,ptr)}function _emscripten_glVertexAttribPointer(index,size,type,normalized,stride,ptr){GLctx.vertexAttribPointer(index,size,type,!!normalized,stride,ptr)}function _emscripten_glViewport(x0,x1,x2,x3){GLctx["viewport"](x0,x1,x2,x3)}function _emscripten_glWaitSync(sync,flags,timeoutLo,timeoutHi){GLctx.waitSync(GL.syncs[sync],flags,convertI32PairToI53(timeoutLo,timeoutHi))}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=2147483648;if(requestedSize>maxHeapSize){return false}for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}function _emscripten_webgl_do_get_current_context(){return GL.currentContext?GL.currentContext.handle:0}function _emscripten_webgl_get_current_context(){return _emscripten_webgl_do_get_current_context()}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator==="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAP32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAP32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAP32[penviron_buf_size>>2]=bufSize;return 0}function _exit(status){exit(status)}function _fd_close(fd){return 0}function _fd_pread(fd,iov,iovcnt,offset_low,offset_high,pnum){var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doReadv(stream,iov,iovcnt,offset_low);HEAP32[pnum>>2]=num;return 0}function _fd_read(fd,iov,iovcnt,pnum){var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){}function _fd_write(fd,iov,iovcnt,pnum){var num=0;for(var i=0;i>2];var len=HEAP32[iov+4>>2];iov+=8;for(var j=0;j>2]=num;return 0}function _getTempRet0(){return getTempRet0()}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value==="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var janFirst=new Date(date.tm_year+1900,0,1);var firstSunday=janFirst.getDay()===0?janFirst:__addDays(janFirst,7-janFirst.getDay());var endDate=new Date(date.tm_year+1900,date.tm_mon,date.tm_mday);if(compareByDay(firstSunday,endDate)<0){var februaryFirstUntilEndMonth=__arraySum(__isLeapYear(endDate.getFullYear())?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,endDate.getMonth()-1)-31;var firstSundayUntilEndJanuary=31-firstSunday.getDate();var days=firstSundayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate();return leadingNulls(Math.ceil(days/7),2)}return compareByDay(firstSunday,janFirst)===0?"01":"00"},"%V":function(date){var janFourthThisYear=new Date(date.tm_year+1900,0,4);var janFourthNextYear=new Date(date.tm_year+1901,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);var endDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);if(compareByDay(endDate,firstWeekStartThisYear)<0){return"53"}if(compareByDay(firstWeekStartNextYear,endDate)<=0){return"01"}var daysDifference;if(firstWeekStartThisYear.getFullYear()=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}function _strftime_l(s,maxsize,format,tm){return _strftime(s,maxsize,format,tm)}InternalError=Module["InternalError"]=extendError(Error,"InternalError");embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();var GLctx;for(var i=0;i<32;++i)tempFixedLengthArray.push(new Array(i));var miniTempWebGLFloatBuffersStorage=new Float32Array(288);for(var i=0;i<288;++i){miniTempWebGLFloatBuffers[i]=miniTempWebGLFloatBuffersStorage.subarray(0,i+1)}var __miniTempWebGLIntBuffersStorage=new Int32Array(288);for(var i=0;i<288;++i){__miniTempWebGLIntBuffers[i]=__miniTempWebGLIntBuffersStorage.subarray(0,i+1)}function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var asmLibraryArg={"Z":___cxa_allocate_exception,"Y":___cxa_throw,"X":___syscall_fcntl64,"ad":___syscall_fstat64,"$c":___syscall_fstatat64,"_c":___syscall_ioctl,"Zc":___syscall_lstat64,"Yc":___syscall_mmap2,"Xc":___syscall_munmap,"W":___syscall_open,"Wc":___syscall_stat64,"w":__embind_finalize_value_object,"$":__embind_register_bigint,"Sc":__embind_register_bool,"m":__embind_register_class,"e":__embind_register_class_class_function,"x":__embind_register_class_constructor,"d":__embind_register_class_function,"U":__embind_register_constant,"Rc":__embind_register_emval,"l":__embind_register_enum,"k":__embind_register_enum_value,"T":__embind_register_float,"s":__embind_register_function,"z":__embind_register_integer,"q":__embind_register_memory_view,"o":__embind_register_smart_ptr,"S":__embind_register_std_string,"I":__embind_register_std_wstring,"v":__embind_register_value_object,"i":__embind_register_value_object_field,"Qc":__embind_register_void,"Pc":__emscripten_throw_longjmp,"C":__emval_as,"D":__emval_call_method,"B":__emval_call_void_method,"H":__emval_decref,"Oc":__emval_get_global,"y":__emval_get_method_caller,"R":__emval_get_property,"G":__emval_incref,"Nc":__emval_new,"Mc":__emval_new_array,"Lc":__emval_new_cstring,"Kc":__emval_new_object,"Jc":__emval_not,"Ic":__emval_run_destructors,"u":__emval_set_property,"t":__emval_take_value,"a":_abort,"Hc":_clock_gettime,"Gc":_emscripten_glActiveTexture,"Fc":_emscripten_glAttachShader,"Ec":_emscripten_glBindAttribLocation,"Dc":_emscripten_glBindBuffer,"Q":_emscripten_glBindFramebuffer,"Cc":_emscripten_glBindRenderbuffer,"Bc":_emscripten_glBindSampler,"Ac":_emscripten_glBindTexture,"zc":_emscripten_glBindVertexArray,"yc":_emscripten_glBindVertexArrayOES,"xc":_emscripten_glBlendColor,"wc":_emscripten_glBlendEquation,"vc":_emscripten_glBlendFunc,"uc":_emscripten_glBlitFramebuffer,"tc":_emscripten_glBufferData,"sc":_emscripten_glBufferSubData,"rc":_emscripten_glCheckFramebufferStatus,"P":_emscripten_glClear,"O":_emscripten_glClearColor,"N":_emscripten_glClearStencil,"qc":_emscripten_glClientWaitSync,"pc":_emscripten_glColorMask,"oc":_emscripten_glCompileShader,"nc":_emscripten_glCompressedTexImage2D,"mc":_emscripten_glCompressedTexSubImage2D,"lc":_emscripten_glCopyTexSubImage2D,"kc":_emscripten_glCreateProgram,"jc":_emscripten_glCreateShader,"ic":_emscripten_glCullFace,"hc":_emscripten_glDeleteBuffers,"gc":_emscripten_glDeleteFramebuffers,"fc":_emscripten_glDeleteProgram,"ec":_emscripten_glDeleteRenderbuffers,"dc":_emscripten_glDeleteSamplers,"cc":_emscripten_glDeleteShader,"bc":_emscripten_glDeleteSync,"ac":_emscripten_glDeleteTextures,"$b":_emscripten_glDeleteVertexArrays,"_b":_emscripten_glDeleteVertexArraysOES,"Zb":_emscripten_glDepthMask,"Yb":_emscripten_glDisable,"Xb":_emscripten_glDisableVertexAttribArray,"Wb":_emscripten_glDrawArrays,"Vb":_emscripten_glDrawArraysInstanced,"Ub":_emscripten_glDrawArraysInstancedBaseInstanceWEBGL,"Tb":_emscripten_glDrawBuffers,"Sb":_emscripten_glDrawElements,"Rb":_emscripten_glDrawElementsInstanced,"Qb":_emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL,"Pb":_emscripten_glDrawRangeElements,"Ob":_emscripten_glEnable,"Nb":_emscripten_glEnableVertexAttribArray,"Mb":_emscripten_glFenceSync,"Lb":_emscripten_glFinish,"Kb":_emscripten_glFlush,"Jb":_emscripten_glFramebufferRenderbuffer,"Ib":_emscripten_glFramebufferTexture2D,"Hb":_emscripten_glFrontFace,"Gb":_emscripten_glGenBuffers,"Fb":_emscripten_glGenFramebuffers,"Eb":_emscripten_glGenRenderbuffers,"Db":_emscripten_glGenSamplers,"Cb":_emscripten_glGenTextures,"Bb":_emscripten_glGenVertexArrays,"Ab":_emscripten_glGenVertexArraysOES,"zb":_emscripten_glGenerateMipmap,"yb":_emscripten_glGetBufferParameteriv,"xb":_emscripten_glGetError,"wb":_emscripten_glGetFramebufferAttachmentParameteriv,"F":_emscripten_glGetIntegerv,"vb":_emscripten_glGetProgramInfoLog,"ub":_emscripten_glGetProgramiv,"tb":_emscripten_glGetRenderbufferParameteriv,"sb":_emscripten_glGetShaderInfoLog,"rb":_emscripten_glGetShaderPrecisionFormat,"qb":_emscripten_glGetShaderiv,"M":_emscripten_glGetString,"pb":_emscripten_glGetStringi,"ob":_emscripten_glGetUniformLocation,"nb":_emscripten_glInvalidateFramebuffer,"mb":_emscripten_glInvalidateSubFramebuffer,"lb":_emscripten_glIsSync,"kb":_emscripten_glIsTexture,"jb":_emscripten_glLineWidth,"ib":_emscripten_glLinkProgram,"hb":_emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL,"gb":_emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL,"fb":_emscripten_glPixelStorei,"eb":_emscripten_glReadBuffer,"db":_emscripten_glReadPixels,"cb":_emscripten_glRenderbufferStorage,"bb":_emscripten_glRenderbufferStorageMultisample,"ab":_emscripten_glSamplerParameteri,"$a":_emscripten_glSamplerParameteriv,"_a":_emscripten_glScissor,"Za":_emscripten_glShaderSource,"Ya":_emscripten_glStencilFunc,"Xa":_emscripten_glStencilFuncSeparate,"Wa":_emscripten_glStencilMask,"Va":_emscripten_glStencilMaskSeparate,"Ua":_emscripten_glStencilOp,"Ta":_emscripten_glStencilOpSeparate,"Sa":_emscripten_glTexImage2D,"Ra":_emscripten_glTexParameterf,"Qa":_emscripten_glTexParameterfv,"Pa":_emscripten_glTexParameteri,"Oa":_emscripten_glTexParameteriv,"Na":_emscripten_glTexStorage2D,"Ma":_emscripten_glTexSubImage2D,"La":_emscripten_glUniform1f,"Ka":_emscripten_glUniform1fv,"Ja":_emscripten_glUniform1i,"Ia":_emscripten_glUniform1iv,"Ha":_emscripten_glUniform2f,"Ga":_emscripten_glUniform2fv,"Fa":_emscripten_glUniform2i,"Ea":_emscripten_glUniform2iv,"Da":_emscripten_glUniform3f,"Ca":_emscripten_glUniform3fv,"Ba":_emscripten_glUniform3i,"Aa":_emscripten_glUniform3iv,"za":_emscripten_glUniform4f,"ya":_emscripten_glUniform4fv,"xa":_emscripten_glUniform4i,"wa":_emscripten_glUniform4iv,"va":_emscripten_glUniformMatrix2fv,"ua":_emscripten_glUniformMatrix3fv,"ta":_emscripten_glUniformMatrix4fv,"sa":_emscripten_glUseProgram,"ra":_emscripten_glVertexAttrib1f,"qa":_emscripten_glVertexAttrib2fv,"pa":_emscripten_glVertexAttrib3fv,"oa":_emscripten_glVertexAttrib4fv,"na":_emscripten_glVertexAttribDivisor,"ma":_emscripten_glVertexAttribIPointer,"la":_emscripten_glVertexAttribPointer,"ka":_emscripten_glViewport,"ja":_emscripten_glWaitSync,"ia":_emscripten_resize_heap,"ha":_emscripten_webgl_get_current_context,"Vc":_environ_get,"Uc":_environ_sizes_get,"ga":_exit,"J":_fd_close,"ba":_fd_pread,"Tc":_fd_read,"aa":_fd_seek,"V":_fd_write,"b":_getTempRet0,"h":invoke_ii,"n":invoke_iii,"g":invoke_iiii,"A":invoke_iiiii,"fa":invoke_iiiiii,"L":invoke_iiiiiii,"K":invoke_iiiiiiiiii,"E":invoke_v,"j":invoke_vi,"r":invoke_vii,"f":invoke_viii,"p":invoke_viiii,"ea":invoke_viiiii,"da":invoke_viiiiii,"ca":invoke_viiiiiiiii,"c":_setTempRet0,"_":_strftime_l};var asm=createWasm();var ___wasm_call_ctors=Module["___wasm_call_ctors"]=function(){return(___wasm_call_ctors=Module["___wasm_call_ctors"]=Module["asm"]["cd"]).apply(null,arguments)};var _malloc=Module["_malloc"]=function(){return(_malloc=Module["_malloc"]=Module["asm"]["dd"]).apply(null,arguments)};var _free=Module["_free"]=function(){return(_free=Module["_free"]=Module["asm"]["fd"]).apply(null,arguments)};var ___errno_location=Module["___errno_location"]=function(){return(___errno_location=Module["___errno_location"]=Module["asm"]["gd"]).apply(null,arguments)};var ___getTypeName=Module["___getTypeName"]=function(){return(___getTypeName=Module["___getTypeName"]=Module["asm"]["hd"]).apply(null,arguments)};var ___embind_register_native_and_builtin_types=Module["___embind_register_native_and_builtin_types"]=function(){return(___embind_register_native_and_builtin_types=Module["___embind_register_native_and_builtin_types"]=Module["asm"]["id"]).apply(null,arguments)};var _memalign=Module["_memalign"]=function(){return(_memalign=Module["_memalign"]=Module["asm"]["jd"]).apply(null,arguments)};var _setThrew=Module["_setThrew"]=function(){return(_setThrew=Module["_setThrew"]=Module["asm"]["kd"]).apply(null,arguments)};var stackSave=Module["stackSave"]=function(){return(stackSave=Module["stackSave"]=Module["asm"]["ld"]).apply(null,arguments)};var stackRestore=Module["stackRestore"]=function(){return(stackRestore=Module["stackRestore"]=Module["asm"]["md"]).apply(null,arguments)};var dynCall_iiiji=Module["dynCall_iiiji"]=function(){return(dynCall_iiiji=Module["dynCall_iiiji"]=Module["asm"]["nd"]).apply(null,arguments)};var dynCall_ji=Module["dynCall_ji"]=function(){return(dynCall_ji=Module["dynCall_ji"]=Module["asm"]["od"]).apply(null,arguments)};var dynCall_iiji=Module["dynCall_iiji"]=function(){return(dynCall_iiji=Module["dynCall_iiji"]=Module["asm"]["pd"]).apply(null,arguments)};var dynCall_iijjiii=Module["dynCall_iijjiii"]=function(){return(dynCall_iijjiii=Module["dynCall_iijjiii"]=Module["asm"]["qd"]).apply(null,arguments)};var dynCall_iij=Module["dynCall_iij"]=function(){return(dynCall_iij=Module["dynCall_iij"]=Module["asm"]["rd"]).apply(null,arguments)};var dynCall_vijjjii=Module["dynCall_vijjjii"]=function(){return(dynCall_vijjjii=Module["dynCall_vijjjii"]=Module["asm"]["sd"]).apply(null,arguments)};var dynCall_viji=Module["dynCall_viji"]=function(){return(dynCall_viji=Module["dynCall_viji"]=Module["asm"]["td"]).apply(null,arguments)};var dynCall_vijiii=Module["dynCall_vijiii"]=function(){return(dynCall_vijiii=Module["dynCall_vijiii"]=Module["asm"]["ud"]).apply(null,arguments)};var dynCall_viiiiij=Module["dynCall_viiiiij"]=function(){return(dynCall_viiiiij=Module["dynCall_viiiiij"]=Module["asm"]["vd"]).apply(null,arguments)};var dynCall_jii=Module["dynCall_jii"]=function(){return(dynCall_jii=Module["dynCall_jii"]=Module["asm"]["wd"]).apply(null,arguments)};var dynCall_iiij=Module["dynCall_iiij"]=function(){return(dynCall_iiij=Module["dynCall_iiij"]=Module["asm"]["xd"]).apply(null,arguments)};var dynCall_iiiij=Module["dynCall_iiiij"]=function(){return(dynCall_iiiij=Module["dynCall_iiiij"]=Module["asm"]["yd"]).apply(null,arguments)};var dynCall_viij=Module["dynCall_viij"]=function(){return(dynCall_viij=Module["dynCall_viij"]=Module["asm"]["zd"]).apply(null,arguments)};var dynCall_viiij=Module["dynCall_viiij"]=function(){return(dynCall_viiij=Module["dynCall_viiij"]=Module["asm"]["Ad"]).apply(null,arguments)};var dynCall_vij=Module["dynCall_vij"]=function(){return(dynCall_vij=Module["dynCall_vij"]=Module["asm"]["Bd"]).apply(null,arguments)};var dynCall_jiiii=Module["dynCall_jiiii"]=function(){return(dynCall_jiiii=Module["dynCall_jiiii"]=Module["asm"]["Cd"]).apply(null,arguments)};var dynCall_jiiiiii=Module["dynCall_jiiiiii"]=function(){return(dynCall_jiiiiii=Module["dynCall_jiiiiii"]=Module["asm"]["Dd"]).apply(null,arguments)};var dynCall_jiiiiji=Module["dynCall_jiiiiji"]=function(){return(dynCall_jiiiiji=Module["dynCall_jiiiiji"]=Module["asm"]["Ed"]).apply(null,arguments)};var dynCall_iijj=Module["dynCall_iijj"]=function(){return(dynCall_iijj=Module["dynCall_iijj"]=Module["asm"]["Fd"]).apply(null,arguments)};var dynCall_jiji=Module["dynCall_jiji"]=function(){return(dynCall_jiji=Module["dynCall_jiji"]=Module["asm"]["Gd"]).apply(null,arguments)};var dynCall_viijii=Module["dynCall_viijii"]=function(){return(dynCall_viijii=Module["dynCall_viijii"]=Module["asm"]["Hd"]).apply(null,arguments)};var dynCall_iiiiij=Module["dynCall_iiiiij"]=function(){return(dynCall_iiiiij=Module["dynCall_iiiiij"]=Module["asm"]["Id"]).apply(null,arguments)};var dynCall_iiiiijj=Module["dynCall_iiiiijj"]=function(){return(dynCall_iiiiijj=Module["dynCall_iiiiijj"]=Module["asm"]["Jd"]).apply(null,arguments)};var dynCall_iiiiiijj=Module["dynCall_iiiiiijj"]=function(){return(dynCall_iiiiiijj=Module["dynCall_iiiiiijj"]=Module["asm"]["Kd"]).apply(null,arguments)};function invoke_ii(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iii(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_viii(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iiii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_vi(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_vii(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iiiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_viiii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iiiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iiiii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_viiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_viiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_v(index){var sp=stackSave();try{getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_viiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}var calledRun;function ExitStatus(status){this.name="ExitStatus";this.message="Program terminated with exit("+status+")";this.status=status}dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(args){args=args||arguments_;if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;if(keepRuntimeAlive()){}else{exitRuntime()}procExit(status)}function procExit(code){EXITSTATUS=code;if(!keepRuntimeAlive()){if(Module["onExit"])Module["onExit"](code);ABORT=true}quit_(code,new ExitStatus(code))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run(); - - - return CanvasKitInit.ready -} -); -})(); -if (typeof exports === 'object' && typeof module === 'object') - module.exports = CanvasKitInit; -else if (typeof define === 'function' && define['amd']) - define([], function() { return CanvasKitInit; }); -else if (typeof exports === 'object') - exports["CanvasKitInit"] = CanvasKitInit; diff --git a/web/app/canvaskit/profiling/canvaskit.wasm b/web/app/canvaskit/profiling/canvaskit.wasm deleted file mode 100644 index 2dcf354..0000000 Binary files a/web/app/canvaskit/profiling/canvaskit.wasm and /dev/null differ diff --git a/web/app/favicon.png b/web/app/favicon.png deleted file mode 100644 index 8aaa46a..0000000 Binary files a/web/app/favicon.png and /dev/null differ diff --git a/web/app/flutter.js b/web/app/flutter.js deleted file mode 100644 index 2922143..0000000 --- a/web/app/flutter.js +++ /dev/null @@ -1,157 +0,0 @@ -// Copyright 2014 The Flutter Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -/** - * This script installs service_worker.js to provide PWA functionality to - * application. For more information, see: - * https://developers.google.com/web/fundamentals/primers/service-workers - */ - -if (!_flutter) { - var _flutter = {}; -} -_flutter.loader = null; - -(function() { - "use strict"; - class FlutterLoader { - /** - * Creates a FlutterLoader, and initializes its instance methods. - */ - constructor() { - // TODO: Move the below methods to "#private" once supported by all the browsers - // we support. In the meantime, we use the "revealing module" pattern. - - // Watchdog to prevent injecting the main entrypoint multiple times. - this._scriptLoaded = null; - - // Resolver for the pending promise returned by loadEntrypoint. - this._didCreateEngineInitializerResolve = null; - - // Called by Flutter web. - // Bound to `this` now, so "this" is preserved across JS <-> Flutter jumps. - this.didCreateEngineInitializer = this._didCreateEngineInitializer.bind(this); - } - - /** - * Initializes the main.dart.js with/without serviceWorker. - * @param {*} options - * @returns a Promise that will eventually resolve with an EngineInitializer, - * or will be rejected with the error caused by the loader. - */ - loadEntrypoint(options) { - const { - entrypointUrl = "main.dart.js", - serviceWorker, - } = (options || {}); - return this._loadWithServiceWorker(entrypointUrl, serviceWorker); - } - - /** - * Resolves the promise created by loadEntrypoint. - * Called by Flutter through the public `didCreateEngineInitializer` method, - * which is bound to the correct instance of the FlutterLoader on the page. - * @param {*} engineInitializer - */ - _didCreateEngineInitializer(engineInitializer) { - if (typeof this._didCreateEngineInitializerResolve != "function") { - console.warn("Do not call didCreateEngineInitializer by hand. Start with loadEntrypoint instead."); - } - this._didCreateEngineInitializerResolve(engineInitializer); - // Remove the public method after it's done, so Flutter Web can hot restart. - delete this.didCreateEngineInitializer; - } - - _loadEntrypoint(entrypointUrl) { - if (!this._scriptLoaded) { - this._scriptLoaded = new Promise((resolve, reject) => { - let scriptTag = document.createElement("script"); - scriptTag.src = entrypointUrl; - scriptTag.type = "application/javascript"; - // Cache the resolve, so it can be called from Flutter. - // Note: Flutter hot restart doesn't re-create this promise, so this - // can only be called once. Instead, we need to model this as a stream - // of `engineCreated` events coming from Flutter that are handled by JS. - this._didCreateEngineInitializerResolve = resolve; - scriptTag.addEventListener("error", reject); - document.body.append(scriptTag); - }); - } - - return this._scriptLoaded; - } - - _waitForServiceWorkerActivation(serviceWorker, entrypointUrl) { - if (!serviceWorker || serviceWorker.state == "activated") { - if (!serviceWorker) { - console.warn("Cannot activate a null service worker. Falling back to plain - - - - - - - diff --git a/web/app/icons/Icon-192.png b/web/app/icons/Icon-192.png deleted file mode 100644 index b749bfe..0000000 Binary files a/web/app/icons/Icon-192.png and /dev/null differ diff --git a/web/app/icons/Icon-512.png b/web/app/icons/Icon-512.png deleted file mode 100644 index 88cfd48..0000000 Binary files a/web/app/icons/Icon-512.png and /dev/null differ diff --git a/web/app/icons/Icon-maskable-192.png b/web/app/icons/Icon-maskable-192.png deleted file mode 100644 index eb9b4d7..0000000 Binary files a/web/app/icons/Icon-maskable-192.png and /dev/null differ diff --git a/web/app/icons/Icon-maskable-512.png b/web/app/icons/Icon-maskable-512.png deleted file mode 100644 index d69c566..0000000 Binary files a/web/app/icons/Icon-maskable-512.png and /dev/null differ diff --git a/web/app/index.html b/web/app/index.html deleted file mode 100644 index 1240c89..0000000 --- a/web/app/index.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - study_xxqg - - - - - - - - - - - diff --git a/web/app/main.dart.js b/web/app/main.dart.js deleted file mode 100644 index 51dbfb7..0000000 --- a/web/app/main.dart.js +++ /dev/null @@ -1,78412 +0,0 @@ -(function dartProgram(){function copyProperties(a,b){var s=Object.keys(a) -for(var r=0;r=0)return true -if(typeof version=="function"&&version.length==0){var q=version() -if(/^\d+\.\d+\.\d+\.\d+$/.test(q))return true}}catch(p){}return false}() -function inherit(a,b){a.prototype.constructor=a -a.prototype["$i"+a.name]=a -if(b!=null){if(z){a.prototype.__proto__=b.prototype -return}var s=Object.create(b.prototype) -copyProperties(a.prototype,s) -a.prototype=s}}function inheritMany(a,b){for(var s=0;s2)return B.aJ -return B.bg}else if(B.b.A(q.toLowerCase(),"iphone")||B.b.A(q.toLowerCase(),"ipad")||B.b.A(q.toLowerCase(),"ipod"))return B.aJ -else if(B.b.A(s,"Android"))return B.hB -else if(B.b.bl(q,"Linux"))return B.tV -else if(B.b.bl(q,"Win"))return B.tW -else return B.Kb}, -aId(){var s=$.ej() -return s===B.aJ&&B.b.A(window.navigator.userAgent,"OS 15_")}, -Eu(){var s,r=A.vN(1,1) -if(B.b1.En(r,"webgl2")!=null){s=$.ej() -if(s===B.aJ)return 1 -return 2}if(B.b1.En(r,"webgl")!=null)return 1 -return-1}, -a8(){return $.bg.bi()}, -aud(a){var s,r,q,p=new Float32Array(16) -for(s=0;s<4;++s)for(r=s*4,q=0;q<4;++q)p[q*4+s]=a[r+q] -return p}, -aIS(a){var s,r,q=new Float32Array(9) -for(s=0;s<9;++s){r=B.Hq[s] -if(r<16)q[s]=a[r] -else q[s]=0}return q}, -aue(a){var s=new Float32Array(2) -s[0]=a.a -s[1]=a.b -return s}, -aIR(a){var s,r -if(a==null)return $.avC() -s=new Float32Array(4) -for(r=0;r<4;++r)s[r]=a[r] -return s}, -aIl(a){return self.window.flutterCanvasKit.Malloc(self.Float32Array,a)}, -asP(a,b){var s=J.azu(a),r=b.a -s[0]=(r>>>16&255)/255 -s[1]=(r>>>8&255)/255 -s[2]=(r&255)/255 -s[3]=(r>>>24&255)/255 -return s}, -dc(a){var s=new Float32Array(4) -s[0]=a.a -s[1]=a.b -s[2]=a.c -s[3]=a.d -return s}, -atw(a){return new A.w(a[0],a[1],a[2],a[3])}, -mN(a){var s=new Float32Array(12) -s[0]=a.a -s[1]=a.b -s[2]=a.c -s[3]=a.d -s[4]=a.e -s[5]=a.f -s[6]=a.r -s[7]=a.w -s[8]=a.x -s[9]=a.y -s[10]=a.z -s[11]=a.Q -return s}, -aIQ(a){var s,r=a.length,q=new Uint32Array(r) -for(s=0;s=0;++r){p=b.length -if(p<=r||!J.f(a[q],b[p-1-r]))return o}return new A.tJ(B.c.ey(a,s+1),B.c.bG(b,0,b.length-s-1),!0,B.c.gJ(a))}return o}, -aBf(){var s,r,q,p,o,n,m,l=t.Te,k=A.z(l,t.Gs) -for(s=$.avQ(),r=0;r<25;++r){q=s[r] -q.c=q.d=null -for(p=q.b,o=p.length,n=0;n"),p=p.a,n=0;n")) -h.a.rU(p,l) -j.P(0,l)}}e=$.pK() -j.Y(0,e.gn3(e)) -if(c.a!==0||k.a!==0)if(!g.a)A.Tp() -else{e=$.pK() -if(!(e.c.a!==0||e.d!=null)){$.bV().$1("Could not find a set of Noto fonts to display all missing characters. Please add a font asset for the missing characters. See: https://flutter.dev/docs/cookbook/design/fonts") -g.b.P(0,c)}}return A.Q(null,r)}}) -return A.R($async$aiR,r)}, -aGu(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=null,a0="Unable to parse Google Fonts CSS: ",a1=A.b([],t.Zh) -for(s=new A.pr(A.akD(a2).a()),r=t.Cz,q=a,p=q,o=!1;s.t();){n=s.gH(s) -if(!o){if(n!=="@font-face {")continue -o=!0}else if(B.b.bl(n," src:")){m=B.b.eJ(n,"url(") -if(m===-1){$.bV().$1("Unable to resolve Noto font URL: "+n) -return a}p=B.b.N(n,m+4,B.b.eJ(n,")")) -o=!0}else if(B.b.bl(n," unicode-range:")){q=A.b([],r) -l=B.b.N(n,17,n.length-1).split(", ") -for(n=l.length,k=0;kh){B.c.sp(a0,0) -a0.push(g) -h=d}else if(d===h)a0.push(g)}if(h===0)break -k.a=B.c.gJ(a0) -if(a0.length>1)if(B.c.N0(a0,new A.aiT()))if(!q||!p||!o||n){if(B.c.A(a0,$.TO()))k.a=$.TO()}else if(!r||!m||l){if(B.c.A(a0,$.TP()))k.a=$.TP()}else if(s){if(B.c.A(a0,$.TM()))k.a=$.TM()}else if(a1)if(B.c.A(a0,$.TN()))k.a=$.TN() -a3.a0a(new A.aiU(k),!0) -a.P(0,a0)}return a}, -cC(a,b){return new A.oa(a,b)}, -aqw(a,b,c){J.ayG(new self.window.flutterCanvasKit.Font(c),A.b([0],t.t),null,null) -return new A.lZ(b,a,c)}, -aIB(a,b,c){var s,r="encoded image bytes" -if($.awb())return A.VE(a,r,c,b) -else{s=new A.FH(r,a) -s.jW(null,t.c6) -return s}}, -x5(a){return new A.HL(a)}, -aoA(a,b){var s=new A.le($,b) -s.VQ(a,b) -return s}, -aA8(a){++A.a(a,"box").a -return new A.le(a,null)}, -aA9(a,b,c,d,e){var s=d===B.nh||d===B.BF,r=J.j(e),q=s?r.afH(e,0,0,{width:r.Eg(e),height:r.CF(e),colorType:c,alphaType:a,colorSpace:b}):r.abL(e) -return q==null?null:A.kd(q.buffer,0,q.length)}, -VE(a,b,c,d){var s=0,r=A.S(t.Lh),q,p,o -var $async$VE=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:o=A.aHB(a) -if(o==null)throw A.c(A.x5("Failed to detect image file format using the file header.\nFile header was "+(!B.R.gS(a)?"["+A.aHe(B.R.bG(a,0,Math.min(10,a.length)))+"]":"empty")+".\nImage source: "+b)) -p=A.aA7(o,a,b,c,d) -s=3 -return A.U(p.mN(),$async$VE) -case 3:q=p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$VE,r)}, -aA7(a,b,c,d,e){return new A.vR(a,e,d,b,c,new A.vc(new A.VC()))}, -aHB(a){var s,r,q,p,o,n,m -$label0$0:for(s=a.length,r=0;r<6;++r){q=B.EW[r] -p=q.a -o=p.length -if(s=s)return!1 -if(a[n]!==B.b.ac(o,p))continue $label0$0}return!0}return!1}, -aFN(){if(self.window.flutterWebRenderer!=null){var s=self.window.flutterWebRenderer -s.toString -return J.f(s,"canvaskit")}s=$.ej() -return J.eD(B.lg.a,s)}, -aj0(){var s=0,r=A.S(t.H),q,p -var $async$aj0=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=self.window.flutterCanvasKit!=null?2:4 -break -case 2:q=self.window.flutterCanvasKit -q.toString -$.bg.b=q -s=3 -break -case 4:s=$.an5()?5:7 -break -case 5:q=self.window.h5vcc -if((q==null?null:J.anK(q))==null)throw A.c(A.ak5("H5vcc CanvasKit implementation not found.")) -q=self.window.h5vcc -q.toString -q=J.anK(q) -q.toString -$.bg.b=q -self.window.flutterCanvasKit=$.bg.bi() -s=6 -break -case 7:p=$.bg -s=8 -return A.U(A.aiK(null),$async$aj0) -case 8:p.b=b -self.window.flutterCanvasKit=$.bg.bi() -case 6:case 3:return A.Q(null,r)}}) -return A.R($async$aj0,r)}, -aiK(a){var s=0,r=A.S(t.oy),q,p -var $async$aiK=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=3 -return A.U(A.aFO(a),$async$aiK) -case 3:p=new A.a4($.a5,t.Z7) -J.azp(self.window.CanvasKitInit({locateFile:A.fi(new A.aiL(a))}),A.fi(new A.aiM(new A.aI(p,t.UB)))) -q=p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$aiK,r)}, -aFO(a){var s,r,q,p=$.bL -if(p==null)p=$.bL=new A.du(self.window.flutterConfiguration) -s=p.guL(p)+"canvaskit.js" -r=document.createElement("script") -r.src=s -p=new A.a4($.a5,t.U) -q=A.bx("loadSubscription") -q.b=A.bz(r,"load",new A.ahR(q,new A.aI(p,t.h)),!1,t.TV.c) -A.aIr(r) -return p}, -apv(a,b){var s,r=A.b([],b.j("o>")) -a.Y(0,new A.a0A(r,b)) -B.c.dk(r,new A.a0B(b)) -s=new A.a0z(b).$1(r) -s.toString -new A.a0y(b).$1(s) -return new A.HS(s,b.j("HS<0>"))}, -aT(){var s=new A.q1(B.fd,B.aq,B.c9,B.n,B.fH) -s.jW(null,t.XP) -return s}, -aAa(a,b){var s,r,q=new A.q2(b) -q.jW(a,t.Cj) -s=q.gag() -r=q.b -J.U3(s,$.TQ()[r.a]) -return q}, -t8(){if($.aqR)return -$.aL().gwh().b.push(A.aFS()) -$.aqR=!0}, -aDn(a){A.t8() -if(B.c.A($.zX,a))return -$.zX.push(a)}, -aDo(){var s,r -if($.zY.length===0&&$.zX.length===0)return -for(s=0;s<$.zY.length;++s){r=$.zY[s] -r.dX(0) -r.lJ()}B.c.sp($.zY,0) -for(s=0;s<$.zX.length;++s)$.zX[s].agb(0) -B.c.sp($.zX,0)}, -eQ(){var s,r,q,p,o="flt-canvas-container",n=$.ig -if(n==null){n=$.bL -if(n==null)n=$.bL=new A.du(self.window.flutterConfiguration) -n=n.gnc(n) -s=A.cz(o,null) -r=A.cz(o,null) -q=t.y1 -p=A.b([],q) -q=A.b([],q) -n=$.ig=new A.kz(new A.dm(s),new A.dm(r),n,p,q)}return n}, -ak7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.vX(b,c,d,e,f,l,k,s,g,h,j,p,a0,n,o,q,a,m,r,i)}, -amy(a,b){var s=A.aDj(null) -if(a!=null)s.weight=$.avW()[a.a] -return s}, -aoB(a){var s,r,q,p=null,o=A.b([],t.bY) -t.m6.a(a) -s=A.b([],t.V) -r=A.b([],t.AT) -q=J.awt(J.axX($.bg.bi()),a.a,$.pC.f) -r.push(A.ak7(p,p,p,p,p,p,a.c,p,p,a.d,a.r,a.f,p,a.e,a.w,p,p,p,p,p)) -return new A.VI(q,a,o,s,r)}, -alT(a,b){var s=A.b([],t.s) -if(a!=null)s.push(a) -if(b!=null&&!B.c.N0(b,new A.ahW(a)))B.c.P(s,b) -B.c.P(s,$.v2().f) -return s}, -ak5(a){return new A.Fz(a)}, -v0(a){var s=new Float32Array(4) -s[0]=(a.gl(a)>>>16&255)/255 -s[1]=(a.gl(a)>>>8&255)/255 -s[2]=(a.gl(a)&255)/255 -s[3]=(a.gl(a)>>>24&255)/255 -return s}, -aHo(a,b,c,d){var s,r,q,p,o,n,m,l,k=A.atw(J.ajQ(a.gag())) -if(b===0)return k -s=!d.O1() -if(s)k=A.TB(d,k) -r=Math.min(b*0.0078125*64,150) -q=1.1*b -p=-b -o=p*0 -n=p*-0.75 -m=new A.w(k.a-1+(o-r-q)*c,k.b-1+(n-r-q)*c,k.c+1+(o+r+q)*c,k.d+1+(n+r+q)*c) -if(s){l=new A.bJ(new Float32Array(16)) -if(l.kr(d)!==0)return A.TB(l,m) -else return m}else return m}, -atm(a,b,c,d,e,f){var s,r,q=e?5:4,p=A.ak(B.e.aI((c.gl(c)>>>24&255)*0.039),c.gl(c)>>>16&255,c.gl(c)>>>8&255,c.gl(c)&255),o=A.ak(B.e.aI((c.gl(c)>>>24&255)*0.25),c.gl(c)>>>16&255,c.gl(c)>>>8&255,c.gl(c)&255),n={ambient:A.v0(p),spot:A.v0(o)},m=J.awR($.bg.bi(),n),l=b.gag(),k=new Float32Array(3) -k[2]=f*d -s=new Float32Array(3) -s[0]=0 -s[1]=-450 -s[2]=f*600 -r=J.j(m) -J.awY(a,l,k,s,f*1.1,r.ga9q(m),r.gRt(m),q)}, -aq6(){var s=$.bU() -return s===B.bM||window.navigator.clipboard==null?new A.YI():new A.VU()}, -aBa(){var s=document.body -s.toString -s=new A.Hj(s) -s.eY(0) -return s}, -aBb(a){switch(a){case"DeviceOrientation.portraitUp":return"portrait-primary" -case"DeviceOrientation.landscapeLeft":return"portrait-secondary" -case"DeviceOrientation.portraitDown":return"landscape-primary" -case"DeviceOrientation.landscapeRight":return"landscape-secondary" -default:return null}}, -at3(a,b,c){var s,r=b===B.N,q=b===B.bM -if(q)a.insertRule("flt-paragraph, flt-span {line-height: 100%;}",a.cssRules.length) -a.insertRule(" flt-semantics input[type=range] {\n appearance: none;\n -webkit-appearance: none;\n width: 100%;\n position: absolute;\n border: none;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n ",a.cssRules.length) -if(r)a.insertRule("flt-semantics input[type=range]::-webkit-slider-thumb { -webkit-appearance: none;}",a.cssRules.length) -if(q){a.insertRule("input::-moz-selection { background-color: transparent;}",a.cssRules.length) -a.insertRule("textarea::-moz-selection { background-color: transparent;}",a.cssRules.length)}else{a.insertRule("input::selection { background-color: transparent;}",a.cssRules.length) -a.insertRule("textarea::selection { background-color: transparent;}",a.cssRules.length)}a.insertRule(' flt-semantics input,\n flt-semantics textarea,\n flt-semantics [contentEditable="true"] {\n caret-color: transparent;\n }\n ',a.cssRules.length) -if(r)a.insertRule(" flt-glass-pane * {\n -webkit-tap-highlight-color: transparent;\n }\n ",a.cssRules.length) -a.insertRule(" .flt-text-editing::placeholder {\n opacity: 0;\n }\n ",a.cssRules.length) -s=$.bU() -if(s!==B.b9)if(s!==B.ch)s=s===B.N -else s=!0 -else s=!0 -if(s)a.insertRule(" .transparentTextEditing:-webkit-autofill,\n .transparentTextEditing:-webkit-autofill:hover,\n .transparentTextEditing:-webkit-autofill:focus,\n .transparentTextEditing:-webkit-autofill:active {\n -webkit-transition-delay: 99999s;\n }\n ",a.cssRules.length)}, -aHP(){var s=$.ht -s.toString -return s}, -TC(a,b){var s -if(b.k(0,B.j))return a -s=new A.bJ(new Float32Array(16)) -s.by(a) -s.E2(0,b.a,b.b,0) -return s}, -atl(a,b,c){var s=a.agz() -if(c!=null)A.amt(s,A.TC(c,b).a) -return s}, -ams(){var s=0,r=A.S(t.z) -var $async$ams=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:if(!$.alQ){$.alQ=!0 -B.b6.Pk(window,new A.ajp())}return A.Q(null,r)}}) -return A.R($async$ams,r)}, -azK(a,b,c){var s=A.cz("flt-canvas",null),r=A.b([],t.lX),q=A.aX(),p=a.a,o=a.c-p,n=A.UT(o),m=a.b,l=a.d-m,k=A.US(l) -l=new A.Vs(A.UT(o),A.US(l),c,A.b([],t.vj),A.dM()) -q=new A.jJ(a,s,l,r,n,k,q,c,b) -k=s.style -k.position="absolute" -q.z=B.e.eG(p)-1 -q.Q=B.e.eG(m)-1 -q.L1() -l.z=t.py.a(s) -q.JU() -return q}, -UT(a){return B.e.dV((a+1)*A.aX())+2}, -US(a){return B.e.dV((a+1)*A.aX())+2}, -azL(a){B.BG.bw(a)}, -aiy(a){if(a==null)return null -switch(a.a){case 3:return"source-over" -case 5:return"source-in" -case 7:return"source-out" -case 9:return"source-atop" -case 4:return"destination-over" -case 6:return"destination-in" -case 8:return"destination-out" -case 10:return"destination-atop" -case 12:return"lighten" -case 1:return"copy" -case 11:return"xor" -case 24:case 13:return"multiply" -case 14:return"screen" -case 15:return"overlay" -case 16:return"darken" -case 17:return"lighten" -case 18:return"color-dodge" -case 19:return"color-burn" -case 20:return"hard-light" -case 21:return"soft-light" -case 22:return"difference" -case 23:return"exclusion" -case 25:return"hue" -case 26:return"saturation" -case 27:return"color" -case 28:return"luminosity" -default:throw A.c(A.c_("Flutter Web does not support the blend mode: "+a.i(0)))}}, -at7(a){switch(a.a){case 0:return B.MD -case 3:return B.ME -case 5:return B.MF -case 7:return B.MH -case 9:return B.MI -case 4:return B.MJ -case 6:return B.MK -case 8:return B.ML -case 10:return B.MM -case 12:return B.MN -case 1:return B.MO -case 11:return B.MG -case 24:case 13:return B.MX -case 14:return B.MY -case 15:return B.N0 -case 16:return B.MZ -case 17:return B.N_ -case 18:return B.N1 -case 19:return B.N2 -case 20:return B.N3 -case 21:return B.MQ -case 22:return B.MR -case 23:return B.MS -case 25:return B.MT -case 26:return B.MU -case 27:return B.MV -case 28:return B.MW -default:return B.MP}}, -aID(a){switch(a.a){case 0:return"butt" -case 1:return"round" -case 2:default:return"square"}}, -aIE(a){switch(a.a){case 1:return"round" -case 2:return"bevel" -case 0:default:return"miter"}}, -alL(b3,b4,b5,b6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4="absolute",a5="hidden",a6="transform-origin",a7="transform",a8="border-radius",a9="transform-style",b0=t.lX,b1=A.b([],b0),b2=b3.length -for(s=null,r=null,q=0;q>>24&255))&255)<<24|q.gl(q)&16777215)>>>0)) -q.toString -h=q}else B.h.an(i,B.h.X(i,"filter"),"blur("+A.e(g)+"px)","")}q=n-o -if(s){i.width=A.e(q-r)+"px" -i.height=A.e(l-m-r)+"px" -q=A.kX(r) -i.border=q+" solid "+h}else{i.width=A.e(q)+"px" -i.height=A.e(l-m)+"px" -i.backgroundColor=h -f=A.aG3(b.w,a) -q=f!==""?"url('"+f+"'":"" -i.backgroundImage=q}return e}, -aG3(a,b){if(a!=null)if(a instanceof A.wz)return A.bk(a.Mk(b,1,!0)) -return""}, -at4(a,b){var s,r,q=b.e,p=b.r -if(q===p){s=b.z -if(q===s){r=b.x -s=q===r&&q===b.f&&p===b.w&&s===b.Q&&r===b.y}else s=!1}else s=!1 -if(s){q=A.kX(b.z) -B.h.an(a,B.h.X(a,"border-radius"),q,"") -return}q=A.kX(q) -s=A.kX(b.f) -B.h.an(a,B.h.X(a,"border-top-left-radius"),q+" "+s,"") -p=A.kX(p) -s=A.kX(b.w) -B.h.an(a,B.h.X(a,"border-top-right-radius"),p+" "+s,"") -s=A.kX(b.z) -p=A.kX(b.Q) -B.h.an(a,B.h.X(a,"border-bottom-left-radius"),s+" "+p,"") -p=A.kX(b.x) -s=A.kX(b.y) -B.h.an(a,B.h.X(a,"border-bottom-right-radius"),p+" "+s,"")}, -kX(a){return B.e.V(a===0?1:a,3)+"px"}, -au2(a,b,c,d){var s,r,q,p,o="fill",n=A.ar1() -n.setAttribute("width",c+"px") -n.setAttribute("height",d+"px") -n.setAttribute("viewBox","0 0 "+c+" "+d) -s=t.YG.a(t.ry.a(B.b3.ip(document,"http://www.w3.org/2000/svg","path"))) -n.appendChild(s) -r=b.r -q=r==null -if(q)r=B.n -p=b.b -if(p!==B.T)if(p!==B.aq){p=b.c -p=p!==0&&p!=null}else p=!1 -else p=!0 -if(p){q=A.cm(r) -q.toString -s.setAttribute("stroke",q) -q=b.c -s.setAttribute("stroke-width",A.e(q==null?1:q)) -s.setAttribute(o,"none")}else if(!q){q=A.cm(r) -q.toString -s.setAttribute(o,q)}else s.setAttribute(o,"#000000") -if(a.b===B.eB)s.setAttribute("fill-rule","evenodd") -s.setAttribute("d",A.au1(a.a,0,0)) -return n}, -ak9(a,b,c){var s,r,q,p,o,n,m -if(0===b){c.push(new A.m(a.c,a.d)) -c.push(new A.m(a.e,a.f)) -return}s=new A.N6() -a.GI(s) -r=s.a -r.toString -q=s.b -q.toString -p=a.b -o=a.f -if(A.dk(p,a.d,o)){n=r.f -if(!A.dk(p,n,o))m=r.f=q.b=Math.abs(n-p)0){s=b[7] -b[9]=s -b[5]=s -if(o===2){s=b[13] -b[15]=s -b[11]=s}}return o}, -aFz(b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=b0.length -if(0===a9)for(s=0;s<8;++s)b2[s]=b1[s] -else{r=b0[0] -for(q=a9-1,p=0,s=0;s0))return 0 -s=1 -r=0}q=h-i -p=g-h -o=f-g -do{n=(r+s)/2 -m=i+q*n -l=h+p*n -k=m+(l-m)*n -j=k+(l+(g+o*n-l)*n-k)*n -if(j===0)return n -if(j<0)s=n -else r=n}while(Math.abs(r-s)>0.0000152587890625) -return(s+r)/2}, -atp(a,b,c,d,e){return(((d+3*(b-c)-a)*e+3*(c-b-b+a))*e+3*(b-a))*e+a}, -al7(){var s=new A.tj(A.aq9(),B.bi) -s.Jy() -return s}, -aFm(a,b,c){var s -if(0===c)s=0===b||360===b -else s=!1 -if(s)return new A.m(a.c,a.gaT().b) -return null}, -ahF(a,b,c,d){var s=a+b -if(s<=c)return d -return Math.min(c/s,d)}, -aq8(a,b){var s=new A.a3j(a,!0,a.w) -if(a.Q)a.yw() -if(!a.as)s.z=a.w -return s}, -aq9(){var s=new Float32Array(16) -s=new A.rh(s,new Uint8Array(8)) -s.e=s.c=8 -s.CW=172 -return s}, -aCk(a,b,c){var s,r,q=a.d,p=a.c,o=new Float32Array(p*2),n=a.f,m=q*2 -for(s=0;s0?1:0 -return s}, -TD(a,b){var s -if(a<0){a=-a -b=-b}if(b===0||a===0||a>=b)return null -s=a/b -if(isNaN(s))return null -if(s===0)return null -return s}, -aIe(a){var s,r,q=a.e,p=a.r -if(q+p!==a.c-a.a)return!1 -s=a.f -r=a.w -if(s+r!==a.d-a.b)return!1 -if(q!==a.z||p!==a.x||s!==a.Q||r!==a.y)return!1 -return!0}, -aqP(a,b,c,d,e,f){return new A.a7Y(e-2*c+a,f-2*d+b,2*(c-a),2*(d-b),a,b)}, -a3l(a,b,c,d,e,f){if(d===f)return A.dk(c,a,e)&&a!==e -else return a===c&&b===d}, -aCl(a){var s,r,q,p,o=a[0],n=a[1],m=a[2],l=a[3],k=a[4],j=a[5],i=n-l,h=A.TD(i,i-l+j) -if(h!=null){s=o+h*(m-o) -r=n+h*(l-n) -q=m+h*(k-m) -p=l+h*(j-l) -a[2]=s -a[3]=r -a[4]=s+h*(q-s) -a[5]=r+h*(p-r) -a[6]=q -a[7]=p -a[8]=k -a[9]=j -return 1}a[3]=Math.abs(i)=q}, -aIL(a,b,c,d){var s,r,q,p,o=a[1],n=a[3] -if(!A.dk(o,c,n))return -s=a[0] -r=a[2] -if(!A.dk(s,b,r))return -q=r-s -p=n-o -if(!(Math.abs((b-s)*p-q*(c-o))<0.000244140625))return -d.push(new A.m(q,p))}, -aIM(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=a[1],h=a[3],g=a[5] -if(!A.dk(i,c,h)&&!A.dk(h,c,g))return -s=a[0] -r=a[2] -q=a[4] -if(!A.dk(s,b,r)&&!A.dk(r,b,q))return -p=new A.kl() -o=p.kA(i-2*h+g,2*(h-i),i-c) -for(n=q-2*r+s,m=2*(r-s),l=0;l30)B.c.eW($.l0,0).d.m(0)}else a.d.m(0)}}, -a3p(a,b){if(a<=0)return b*0.1 -else return Math.min(Math.max(b*0.5,a*10),b)}, -aFB(a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6 -if(a7==null||a7.O1())return 1 -s=a7.a -r=s[12] -q=s[15] -p=r*q -o=s[13] -n=o*q -m=s[3] -l=m*a8 -k=s[7] -j=k*a9 -i=1/(l+j+q) -h=s[0] -g=h*a8 -f=s[4] -e=f*a9 -d=(g+e+r)*i -c=s[1] -b=c*a8 -a=s[5] -a0=a*a9 -a1=(b+a0+o)*i -a2=Math.min(p,d) -a3=Math.max(p,d) -a4=Math.min(n,a1) -a5=Math.max(n,a1) -i=1/(m*0+j+q) -d=(h*0+e+r)*i -a1=(c*0+a0+o)*i -p=Math.min(a2,d) -a3=Math.max(a3,d) -n=Math.min(a4,a1) -a5=Math.max(a5,a1) -i=1/(l+k*0+q) -d=(g+f*0+r)*i -a1=(b+a*0+o)*i -p=Math.min(p,d) -a3=Math.max(a3,d) -n=Math.min(n,a1) -a6=Math.min((a3-p)/a8,(Math.max(a5,a1)-n)/a9) -if(a6<1e-9||a6===1)return 1 -if(a6>1){a6=Math.min(4,B.e.dV(a6/2)*2) -r=a8*a9 -if(r*a6*a6>4194304&&a6>2)a6=3355443.2/r}else a6=Math.max(2/B.e.eG(2/a6),0.0001) -return a6}, -pz(a,b){var s=a<0?0:a,r=b<0?0:b -return s*s+r*r}, -Ev(a){var s,r=a.a,q=r.x,p=q!=null?0+q.b*2:0 -r=r.c -s=r==null -if((s?0:r)!==0)p+=(s?0:r)*0.70710678118 -return p}, -aCg(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 -if(a2==null)a2=B.Co -s=a1.length -r=B.c.fD(a1,new A.a2J()) -q=a2[0]!==0 -p=B.c.gR(a2)!==1 -o=q?s+1:s -if(p)++o -n=o*4 -m=new Float32Array(n) -l=new Float32Array(n) -n=o-1 -k=B.f.bC(n,4) -j=new Float32Array(4*(k+1)) -if(q){k=a1[0].a -m[0]=(k>>>16&255)/255 -m[1]=(k>>>8&255)/255 -m[2]=(k&255)/255 -m[3]=(k>>>24&255)/255 -j[0]=0 -i=4 -h=1}else{i=0 -h=0}for(k=a1.length,g=0;g>>16&255)/255 -i=f+1 -m[f]=(e>>>8&255)/255 -f=i+1 -m[i]=(e&255)/255 -i=f+1 -m[f]=(e>>>24&255)/255}for(k=a2.length,g=0;g>>16&255)/255 -i=f+1 -m[f]=(k>>>8&255)/255 -m[i]=(k&255)/255 -m[i+1]=(k>>>24&255)/255 -j[h]=1}c=4*n -for(b=0;b>>2 -l[b]=(m[b+4]-m[b])/(j[h+1]-j[h])}l[c]=0 -l[c+1]=0 -l[c+2]=0 -l[c+3]=0 -for(b=0;b1)B.c.dk(p,new A.aiE()) -for(p=$.ajg,o=p.length,r=0;r1)s.push(new A.lF(B.c.gJ(p),B.c.gR(p))) -else s.push(new A.lF(q,null))}return s}, -aGb(a,b){var s=a.hL(b),r=A.atk(A.bk(s.b)) -switch(s.a){case"setDevicePixelRatio":$.bW().w=r -$.aL().f.$0() -return!0}return!1}, -pG(a,b){if(a==null)return -if(b===$.a5)a.$0() -else b.rn(a)}, -Tx(a,b,c){if(a==null)return -if(b===$.a5)a.$1(c) -else b.ro(a,c)}, -aI9(a,b,c,d){if(b===$.a5)a.$2(c,d) -else b.rn(new A.aj6(a,c,d))}, -mK(a,b,c,d,e){if(a==null)return -if(b===$.a5)a.$3(c,d,e) -else b.rn(new A.aj7(a,c,d,e))}, -aHJ(){var s,r,q,p=document.documentElement -p.toString -if("computedStyleMap" in p){s=p.computedStyleMap() -if(s!=null){r=s.get("font-size") -q=r!=null?r.value:null}else q=null}else q=null -if(q==null)q=A.au_(J.anQ(p).fontSize) -return(q==null?16:q)/16}, -aHp(a){switch(a){case 0:return 1 -case 1:return 4 -case 2:return 2 -default:return B.f.xe(1,a)}}, -tN(a){var s=B.e.e6(a) -return A.bR(B.e.e6((a-s)*1000),s,0)}, -ajt(a,b){var s=b.$0() -return s}, -aHT(){if($.aL().ay==null)return -$.am3=B.e.e6(window.performance.now()*1000)}, -aHR(){if($.aL().ay==null)return -$.alK=B.e.e6(window.performance.now()*1000)}, -att(){if($.aL().ay==null)return -$.alJ=B.e.e6(window.performance.now()*1000)}, -atu(){if($.aL().ay==null)return -$.alZ=B.e.e6(window.performance.now()*1000)}, -aHS(){var s,r,q=$.aL() -if(q.ay==null)return -s=$.asQ=B.e.e6(window.performance.now()*1000) -$.alR.push(new A.lq(A.b([$.am3,$.alK,$.alJ,$.alZ,s,s,0,0,0,0,1],t.t))) -$.asQ=$.alZ=$.alJ=$.alK=$.am3=-1 -if(s-$.avy()>1e5){$.aFX=s -r=$.alR -A.Tx(q.ay,q.ch,r) -$.alR=A.b([],t.no)}}, -aGA(){return B.e.e6(window.performance.now()*1000)}, -aHv(a){var s=A.akz(a) -return s}, -amb(a,b){return a[b]}, -au_(a){var s=self.parseFloat.$1(a) -if(s==null||isNaN(s))return null -return s}, -aIp(a){var s,r,q -if("computedStyleMap" in a){s=a.computedStyleMap() -if(s!=null){r=s.get("font-size") -q=r!=null?r.value:null}else q=null}else q=null -return q==null?A.au_(J.anQ(a).fontSize):q}, -aIU(a,b){var s,r=document.createElement("CANVAS") -if(r==null)return null -try{r.width=a -r.height=b}catch(s){return null}return r}, -azA(){var s=new A.U5() -s.VC() -return s}, -aFx(a){var s=a.a -if((s&256)!==0)return B.SS -else if((s&65536)!==0)return B.ST -else return B.SR}, -aBy(a){var s=new A.qO(A.a0w(),a) -s.Wx(a) -return s}, -a6U(a){var s=a.style -s.removeProperty("transform-origin") -s.removeProperty("transform") -s=$.ej() -if(s!==B.aJ)s=s===B.bg -else s=!0 -if(s){s=a.style -s.top="0px" -s.left="0px"}else{s=a.style -s.removeProperty("top") -s.removeProperty("left")}}, -lo(){var s=t.UF,r=A.b([],t.eE),q=A.b([],t.b),p=$.ej() -p=J.eD(B.lg.a,p)?new A.WI():new A.a25() -p=new A.Yz(A.z(t.S,s),A.z(t.bo,s),r,q,new A.YC(),new A.a6Q(p),B.co,A.b([],t.U9)) -p.Wf() -return p}, -atM(a){var s,r,q,p,o,n,m,l,k=a.length,j=t.t,i=A.b([],j),h=A.b([0],j) -for(s=0,r=0;r=h.length)h.push(r) -else h[o]=r -if(o>s)s=o}m=A.b7(s,0,!1,t.S) -l=h[s] -for(r=s-1;r>=0;--r){m[r]=l -l=i[l]}return m}, -aD9(a){var s=$.zQ -if(s!=null&&s.a===a){s.toString -return s}return $.zQ=new A.a7_(a,A.b([],t.Iu))}, -all(){var s=new Uint8Array(0),r=new DataView(new ArrayBuffer(8)) -return new A.aaD(new A.M3(s,0),r,A.cX(r.buffer,0,null))}, -atd(a){if(a===0)return B.j -return new A.m(200*a/600,400*a/600)}, -aHn(a,b){var s,r,q,p,o,n -if(b===0)return a -s=a.c -r=a.a -q=a.d -p=a.b -o=b*((800+(s-r)*0.5)/600) -n=b*((800+(q-p)*0.5)/600) -return new A.w(r-o,p-n,s+o,q+n).c8(A.atd(b))}, -am8(a,b){if(b===0)return null -return new A.a91(Math.min(b*((800+(a.c-a.a)*0.5)/600),b*((800+(a.d-a.b)*0.5)/600)),A.atd(b))}, -am5(a,b,c,d){var s,r,q,p,o="box-shadow",n=A.am8(b,c) -if(n==null){s=a.style -B.h.an(s,B.h.X(s,o),"none","")}else{d=A.amx(d) -s=a.style -r=n.b -q=n.a -p=d.a -B.h.an(s,B.h.X(s,o),A.e(r.a)+"px "+A.e(r.b)+"px "+A.e(q)+"px 0px rgba("+(p>>>16&255)+", "+(p>>>8&255)+", "+(p&255)+", "+A.e((p>>>24&255)/255)+")","")}}, -amx(a){var s=a.a -return new A.E(((B.e.aI(0.3*(s>>>24&255))&255)<<24|s&16777215)>>>0)}, -aBg(){var s=t.mo -if($.an3())return new A.Hs(A.b([],s)) -else return new A.PW(A.b([],s))}, -akC(a,b,c,d,e,f){return new A.a1l(A.b([],t.L5),A.b([],t.Kd),e,a,b,f,d,c,f)}, -ato(){var s=$.ai7 -if(s==null){s=t.jQ -s=$.ai7=new A.kF(A.am2(u.K,937,B.nE,s),B.aR,A.z(t.S,s),t.MX)}return s}, -aIo(a,b,c){var s=A.aGT(a,b,c) -if(s.a>c)return new A.dv(c,Math.min(c,s.b),Math.min(c,s.c),B.bx) -return s}, -aGT(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=A.Tv(a1,a2),b=A.ato().qw(c),a=b===B.eg?B.ed:null,a0=b===B.h1 -if(b===B.fY||a0)b=B.aR -for(s=a1.length,r=t.jQ,q=t.S,p=t.MX,o=a2,n=o,m=null,l=0;a2a3)return new A.dv(a3,Math.min(a3,o),Math.min(a3,n),B.bx) -k=b===B.h5 -l=k?l+1:0 -a2=(c!=null&&c>65535?a2+1:a2)+1 -j=b===B.eg -i=!j -if(i)a=null -c=A.Tv(a1,a2) -h=$.ai7 -g=(h==null?$.ai7=new A.kF(A.am2(u.K,937,B.nE,r),B.aR,A.z(q,r),p):h).qw(c) -f=g===B.h1 -if(b===B.e9||b===B.h2)return new A.dv(a2,o,n,B.d4) -if(b===B.h6)if(g===B.e9)continue -else return new A.dv(a2,o,n,B.d4) -if(i)n=a2 -if(g===B.e9||g===B.h2||g===B.h6){o=a2 -continue}if(a2>=s)return new A.dv(s,a2,n,B.bX) -if(g===B.eg){a=j?a:b -o=a2 -continue}if(g===B.eb){o=a2 -continue}if(b===B.eb||a===B.eb)return new A.dv(a2,a2,n,B.d3) -if(g===B.fY||f){if(!j){if(k)--l -o=a2 -g=b -continue}g=B.aR}if(a0){o=a2 -continue}if(g===B.ed||b===B.ed){o=a2 -continue}if(b===B.h_){o=a2 -continue}if(!(!i||b===B.e6||b===B.d6)&&g===B.h_){o=a2 -continue}if(i)k=g===B.e8||g===B.cu||g===B.nu||g===B.e7||g===B.fZ -else k=!1 -if(k){o=a2 -continue}if(b===B.d5){o=a2 -continue}k=b===B.h7 -if(k&&g===B.d5){o=a2 -continue}i=b!==B.e8 -if((!i||a===B.e8||b===B.cu||a===B.cu)&&g===B.h0){o=a2 -continue}if((b===B.ec||a===B.ec)&&g===B.ec){o=a2 -continue}if(j)return new A.dv(a2,a2,n,B.d3) -if(k||g===B.h7){o=a2 -continue}if(b===B.h4||g===B.h4)return new A.dv(a2,a2,n,B.d3) -if(g===B.e6||g===B.d6||g===B.h0||b===B.ns){o=a2 -continue}if(m===B.aH)k=b===B.d6||b===B.e6 -else k=!1 -if(k){o=a2 -continue}k=b===B.fZ -if(k&&g===B.aH){o=a2 -continue}if(g===B.nt){o=a2 -continue}j=b!==B.aR -if(!((!j||b===B.aH)&&g===B.by))if(b===B.by)h=g===B.aR||g===B.aH -else h=!1 -else h=!0 -if(h){o=a2 -continue}h=b===B.eh -if(h)e=g===B.h3||g===B.ee||g===B.ef -else e=!1 -if(e){o=a2 -continue}if((b===B.h3||b===B.ee||b===B.ef)&&g===B.bY){o=a2 -continue}e=!h -if(!e||b===B.bY)d=g===B.aR||g===B.aH -else d=!1 -if(d){o=a2 -continue}if(!j||b===B.aH)d=g===B.eh||g===B.bY -else d=!1 -if(d){o=a2 -continue}if(!i||b===B.cu||b===B.by)i=g===B.bY||g===B.eh -else i=!1 -if(i){o=a2 -continue}i=b!==B.bY -if((!i||h)&&g===B.d5){o=a2 -continue}if((!i||!e||b===B.d6||b===B.e7||b===B.by||k)&&g===B.by){o=a2 -continue}k=b===B.ea -if(k)i=g===B.ea||g===B.d7||g===B.d9||g===B.da -else i=!1 -if(i){o=a2 -continue}i=b!==B.d7 -if(!i||b===B.d9)e=g===B.d7||g===B.d8 -else e=!1 -if(e){o=a2 -continue}e=b!==B.d8 -if((!e||b===B.da)&&g===B.d8){o=a2 -continue}if((k||!i||!e||b===B.d9||b===B.da)&&g===B.bY){o=a2 -continue}if(h)k=g===B.ea||g===B.d7||g===B.d8||g===B.d9||g===B.da -else k=!1 -if(k){o=a2 -continue}if(!j||b===B.aH)k=g===B.aR||g===B.aH -else k=!1 -if(k){o=a2 -continue}if(b===B.e7)k=g===B.aR||g===B.aH -else k=!1 -if(k){o=a2 -continue}if(!j||b===B.aH||b===B.by)if(g===B.d5){k=B.b.ak(a1,a2) -if(k!==9001)if(!(k>=12296&&k<=12317))k=k>=65047&&k<=65378 -else k=!0 -else k=!0 -k=!k}else k=!1 -else k=!1 -if(k){o=a2 -continue}if(b===B.cu){k=B.b.ak(a1,a2-1) -if(k!==9001)if(!(k>=12296&&k<=12317))k=k>=65047&&k<=65378 -else k=!0 -else k=!0 -if(!k)k=g===B.aR||g===B.aH||g===B.by -else k=!1}else k=!1 -if(k){o=a2 -continue}if(g===B.h5)if((l&1)===1){o=a2 -continue}else return new A.dv(a2,a2,n,B.d3) -if(b===B.ee&&g===B.ef){o=a2 -continue}return new A.dv(a2,a2,n,B.d3)}return new A.dv(s,o,n,B.bX)}, -amk(a,b,c,d,e){var s,r,q -if(c===d)return 0 -s=a.font -if(c===$.asI&&d===$.asH&&b===$.asJ&&s===$.asG)r=$.asK -else{q=a.measureText(c===0&&d===b.length?b:B.b.N(b,c,d)).width -q.toString -r=q}$.asI=c -$.asH=d -$.asJ=b -$.asG=s -$.asK=r -if(e==null)e=0 -return B.e.aI((e!==0?r+e*(d-c):r)*100)/100}, -ap4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,a0,a1,a2){var s=g==null,r=s?"":g -return new A.wC(b,c,d,e,f,m,k,a1,!s,r,h,i,l,j,p,a2,o,q,a,n,a0)}, -ats(a){if(a==null)return null -return A.atr(a.a)}, -atr(a){switch(a){case 0:return"100" -case 1:return"200" -case 2:return"300" -case 3:return"normal" -case 4:return"500" -case 5:return"600" -case 6:return"bold" -case 7:return"800" -case 8:return"900"}return""}, -aGI(a){var s,r,q,p,o=a.length -if(o===0)return"" -for(s=0,r="";s=a.length)return null -s=B.b.ak(a,b) -if((s&63488)===55296&&b>>6&31)+1<<16|(s&63)<<10|B.b.ak(a,b+1)&1023 -return s}, -aE1(a,b,c){return new A.kF(a,b,A.z(t.S,c),c.j("kF<0>"))}, -aE2(a,b,c,d,e){return new A.kF(A.am2(a,b,c,e),d,A.z(t.S,e),e.j("kF<0>"))}, -am2(a,b,c,d){var s,r,q,p,o,n=A.b([],d.j("o>")),m=a.length -for(s=d.j("c8<0>"),r=0;r=0&&q<=r))break -q+=s -if(A.aEe(b,q))break}return A.uX(q,0,r)}, -aEe(a,b){var s,r,q,p,o,n,m,l,k,j=null -if(b<=0||b>=a.length)return!0 -s=b-1 -if((B.b.ak(a,s)&63488)===55296)return!1 -r=$.EP().qv(0,a,b) -q=$.EP().qv(0,a,s) -if(q===B.eR&&r===B.eS)return!1 -if(A.dD(q,B.lI,B.eR,B.eS,j,j))return!0 -if(A.dD(r,B.lI,B.eR,B.eS,j,j))return!0 -if(q===B.lH&&r===B.lH)return!1 -if(A.dD(r,B.dE,B.dF,B.dD,j,j))return!1 -for(p=0;A.dD(q,B.dE,B.dF,B.dD,j,j);){++p -s=b-p-1 -if(s<0)return!0 -o=$.EP() -n=A.Tv(a,s) -q=n==null?o.b:o.qw(n)}if(A.dD(q,B.aZ,B.ax,j,j,j)&&A.dD(r,B.aZ,B.ax,j,j,j))return!1 -m=0 -do{++m -l=$.EP().qv(0,a,b+m)}while(A.dD(l,B.dE,B.dF,B.dD,j,j)) -do{++p -k=$.EP().qv(0,a,b-p-1)}while(A.dD(k,B.dE,B.dF,B.dD,j,j)) -if(A.dD(q,B.aZ,B.ax,j,j,j)&&A.dD(r,B.lF,B.dC,B.cO,j,j)&&A.dD(l,B.aZ,B.ax,j,j,j))return!1 -if(A.dD(k,B.aZ,B.ax,j,j,j)&&A.dD(q,B.lF,B.dC,B.cO,j,j)&&A.dD(r,B.aZ,B.ax,j,j,j))return!1 -s=q===B.ax -if(s&&r===B.cO)return!1 -if(s&&r===B.lE&&l===B.ax)return!1 -if(k===B.ax&&q===B.lE&&r===B.ax)return!1 -s=q===B.bq -if(s&&r===B.bq)return!1 -if(A.dD(q,B.aZ,B.ax,j,j,j)&&r===B.bq)return!1 -if(s&&A.dD(r,B.aZ,B.ax,j,j,j))return!1 -if(k===B.bq&&A.dD(q,B.lG,B.dC,B.cO,j,j)&&r===B.bq)return!1 -if(s&&A.dD(r,B.lG,B.dC,B.cO,j,j)&&l===B.bq)return!1 -if(q===B.dG&&r===B.dG)return!1 -if(A.dD(q,B.aZ,B.ax,B.bq,B.dG,B.eQ)&&r===B.eQ)return!1 -if(q===B.eQ&&A.dD(r,B.aZ,B.ax,B.bq,B.dG,j))return!1 -return!0}, -dD(a,b,c,d,e,f){if(a===b)return!0 -if(a===c)return!0 -if(d!=null&&a===d)return!0 -if(e!=null&&a===e)return!0 -if(f!=null&&a===f)return!0 -return!1}, -ap3(a,b){switch(a){case"TextInputType.number":return b?B.wR:B.x8 -case"TextInputType.phone":return B.xc -case"TextInputType.emailAddress":return B.wW -case"TextInputType.url":return B.xv -case"TextInputType.multiline":return B.x6 -case"TextInputType.none":return B.mj -case"TextInputType.text":default:return B.xt}}, -aDJ(a){var s -if(a==="TextCapitalization.words")s=B.vx -else if(a==="TextCapitalization.characters")s=B.vz -else s=a==="TextCapitalization.sentences"?B.vy:B.ls -return new A.Ao(s)}, -aFQ(a){}, -Tn(a,b){var s,r="transparent",q="none",p=a.style -p.whiteSpace="pre-wrap" -B.h.an(p,B.h.X(p,"align-content"),"center","") -p.padding="0" -B.h.an(p,B.h.X(p,"opacity"),"1","") -p.color=r -p.backgroundColor=r -p.background=r -p.outline=q -p.border=q -B.h.an(p,B.h.X(p,"resize"),q,"") -p.width="0" -p.height="0" -B.h.an(p,B.h.X(p,"text-shadow"),r,"") -B.h.an(p,B.h.X(p,"transform-origin"),"0 0 0","") -if(b){p.top="-9999px" -p.left="-9999px"}s=$.bU() -if(s!==B.b9)if(s!==B.ch)s=s===B.N -else s=!0 -else s=!0 -if(s)a.classList.add("transparentTextEditing") -B.h.an(p,B.h.X(p,"caret-color"),r,null)}, -aAX(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 -if(a1==null)return null -s=t.N -r=A.z(s,t.py) -q=A.z(s,t.M1) -p=document.createElement("form") -p.noValidate=!0 -p.method="post" -p.action="#" -B.na.kj(p,"submit",new A.Yg()) -A.Tn(p,!1) -o=J.qU(0,s) -n=A.ak_(a1,B.vw) -if(a2!=null)for(s=t.a,m=J.pM(a2,s),m=new A.cL(m,m.gp(m)),l=n.b,k=A.n(m).c;m.t();){j=m.d -if(j==null)j=k.a(j) -i=J.ax(j) -h=s.a(i.h(j,"autofill")) -g=A.bk(i.h(j,"textCapitalization")) -if(g==="TextCapitalization.words")g=B.vx -else if(g==="TextCapitalization.characters")g=B.vz -else g=g==="TextCapitalization.sentences"?B.vy:B.ls -f=A.ak_(h,new A.Ao(g)) -g=f.b -o.push(g) -if(g!==l){e=A.ap3(A.bk(J.ag(s.a(i.h(j,"inputType")),"name")),!1).BD() -f.a.eC(e) -f.eC(e) -A.Tn(e,!1) -q.n(0,g,f) -r.n(0,g,e) -p.appendChild(e)}}else o.push(n.b) -B.c.i3(o) -for(s=o.length,d=0,m="";d0?m+"*":m)+c}b=m.charCodeAt(0)==0?m:m -a=$.EC.h(0,b) -if(a!=null)B.na.bw(a) -a0=A.a0w() -A.Tn(a0,!0) -a0.className="submitBtn" -a0.type="submit" -p.appendChild(a0) -return new A.Yd(p,r,q,b)}, -ak_(a,b){var s,r=J.ax(a),q=A.bk(r.h(a,"uniqueIdentifier")),p=t.kc.a(r.h(a,"hints")),o=p==null||J.hy(p)?null:A.bk(J.v8(p)),n=A.aoZ(t.a.a(r.h(a,"editingValue"))) -if(o!=null){s=$.aui().a.h(0,o) -if(s==null)s=o}else s=null -return new A.Fb(n,q,s,A.bH(r.h(a,"hintText")))}, -am_(a,b,c){var s=c.a,r=c.b,q=Math.min(s,r) -r=Math.max(s,r) -return B.b.N(a,0,q)+b+B.b.bU(a,r)}, -aDK(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i=a2.a,h=a2.b,g=a2.c,f=a2.d,e=a2.e,d=a2.f,c=a2.r,b=a2.w,a=new A.tv(i,h,g,f,e,d,c,b) -e=a1==null -d=e?null:a1.b -s=d==(e?null:a1.c) -e=h.length -d=e===0 -r=d&&f!==-1 -d=!d -q=d&&!s -if(r){g=f-(i.length-a0.a.length) -a.c=g}else if(q){g=a1.b -a.c=g}p=c!=null&&c!==b -if(d&&s&&p){c.toString -g=a.c=c -b.toString -b=a.d=b -f=b}if(!(g===-1&&g===f)){o=A.am_(i,h,new A.cx(g,f)) -g=a0.a -g.toString -if(o!==g){n=B.b.A(h,".") -for(f=A.bZ(A.amp(h),!0).n5(0,g),f=new A.B_(f.a,f.b,f.c),d=t.Qz,c=i.length;f.t();){m=f.d -b=(m==null?d.a(m):m).b -l=b.index -if(!(l>=0&&l+b[0].length<=c)){k=l+e-1 -j=A.am_(i,h,new A.cx(l,k))}else{k=n?l+b[0].length-1:l+b[0].length -j=A.am_(i,h,new A.cx(l,k))}if(j===g){a.c=l -a.d=k -break}}}}a.e=a0.b -a.f=a0.c -return a}, -Y4(a,b,c){var s=a==null,r=s?0:a,q=b==null,p=q?0:b -p=Math.max(0,Math.min(r,p)) -s=s?0:a -r=q?0:b -return new A.ql(c,p,Math.max(0,Math.max(s,r)))}, -aoZ(a){var s=J.ax(a) -return A.Y4(A.eg(s.h(a,"selectionBase")),A.eg(s.h(a,"selectionExtent")),A.bH(s.h(a,"text")))}, -akh(a){var s -if(t.Zb.b(a)){s=a.value -return A.Y4(a.selectionStart,a.selectionEnd,s)}else if(t.S0.b(a)){s=a.value -return A.Y4(a.selectionStart,a.selectionEnd,s)}else throw A.c(A.N("Initialized with unsupported input type"))}, -apu(a){var s,r,q,p,o,n="inputType",m="autofill",l=J.ax(a),k=t.a,j=A.bk(J.ag(k.a(l.h(a,n)),"name")),i=A.pv(J.ag(k.a(l.h(a,n)),"decimal")) -j=A.ap3(j,i===!0) -i=A.bH(l.h(a,"inputAction")) -if(i==null)i="TextInputAction.done" -s=A.pv(l.h(a,"obscureText")) -r=A.pv(l.h(a,"readOnly")) -q=A.pv(l.h(a,"autocorrect")) -p=A.aDJ(A.bk(l.h(a,"textCapitalization"))) -k=l.ap(a,m)?A.ak_(k.a(l.h(a,m)),B.vw):null -o=A.aAX(t.nA.a(l.h(a,m)),t.kc.a(l.h(a,"fields"))) -l=A.pv(l.h(a,"enableDeltaModel")) -return new A.a0v(j,i,r===!0,s===!0,q!==!1,l===!0,k,o,p)}, -aIz(){$.EC.Y(0,new A.ajn())}, -aHf(){var s,r,q,p -for(s=$.EC.gb2($.EC),s=new A.eq(J.av(s.a),s.b),r=A.n(s).z[1];s.t();){q=s.a -if(q==null)q=r.a(q) -p=q.parentNode -if(p!=null)p.removeChild(q)}$.EC.aG(0)}, -amt(a,b){var s,r=a.style -B.h.an(r,B.h.X(r,"transform-origin"),"0 0 0","") -s=A.hw(b) -B.h.an(r,B.h.X(r,"transform"),s,"")}, -hw(a){var s=A.aju(a) -if(s===B.vL)return"matrix("+A.e(a[0])+","+A.e(a[1])+","+A.e(a[4])+","+A.e(a[5])+","+A.e(a[12])+","+A.e(a[13])+")" -else if(s===B.eN)return A.aHO(a) -else return"none"}, -aju(a){if(!(a[15]===1&&a[14]===0&&a[11]===0&&a[10]===1&&a[9]===0&&a[8]===0&&a[7]===0&&a[6]===0&&a[3]===0&&a[2]===0))return B.eN -if(a[0]===1&&a[1]===0&&a[4]===0&&a[5]===1&&a[12]===0&&a[13]===0)return B.vK -else return B.vL}, -aHO(a){var s=a[0] -if(s===1&&a[1]===0&&a[2]===0&&a[3]===0&&a[4]===0&&a[5]===1&&a[6]===0&&a[7]===0&&a[8]===0&&a[9]===0&&a[10]===1&&a[11]===0&&a[14]===0&&a[15]===1)return"translate3d("+A.e(a[12])+"px, "+A.e(a[13])+"px, 0px)" -else return"matrix3d("+A.e(s)+","+A.e(a[1])+","+A.e(a[2])+","+A.e(a[3])+","+A.e(a[4])+","+A.e(a[5])+","+A.e(a[6])+","+A.e(a[7])+","+A.e(a[8])+","+A.e(a[9])+","+A.e(a[10])+","+A.e(a[11])+","+A.e(a[12])+","+A.e(a[13])+","+A.e(a[14])+","+A.e(a[15])+")"}, -TB(a,b){var s=$.aw7() -s[0]=b.a -s[1]=b.b -s[2]=b.c -s[3]=b.d -A.amz(a,s) -return new A.w(s[0],s[1],s[2],s[3])}, -amz(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=$.an_() -a0[0]=a2[0] -a0[4]=a2[1] -a0[8]=0 -a0[12]=1 -a0[1]=a2[2] -a0[5]=a2[1] -a0[9]=0 -a0[13]=1 -a0[2]=a2[0] -a0[6]=a2[3] -a0[10]=0 -a0[14]=1 -a0[3]=a2[2] -a0[7]=a2[3] -a0[11]=0 -a0[15]=1 -s=$.aw6().a -r=s[0] -q=s[4] -p=s[8] -o=s[12] -n=s[1] -m=s[5] -l=s[9] -k=s[13] -j=s[2] -i=s[6] -h=s[10] -g=s[14] -f=s[3] -e=s[7] -d=s[11] -c=s[15] -b=a1.a -s[0]=r*b[0]+q*b[4]+p*b[8]+o*b[12] -s[4]=r*b[1]+q*b[5]+p*b[9]+o*b[13] -s[8]=r*b[2]+q*b[6]+p*b[10]+o*b[14] -s[12]=r*b[3]+q*b[7]+p*b[11]+o*b[15] -s[1]=n*b[0]+m*b[4]+l*b[8]+k*b[12] -s[5]=n*b[1]+m*b[5]+l*b[9]+k*b[13] -s[9]=n*b[2]+m*b[6]+l*b[10]+k*b[14] -s[13]=n*b[3]+m*b[7]+l*b[11]+k*b[15] -s[2]=j*b[0]+i*b[4]+h*b[8]+g*b[12] -s[6]=j*b[1]+i*b[5]+h*b[9]+g*b[13] -s[10]=j*b[2]+i*b[6]+h*b[10]+g*b[14] -s[14]=j*b[3]+i*b[7]+h*b[11]+g*b[15] -s[3]=f*b[0]+e*b[4]+d*b[8]+c*b[12] -s[7]=f*b[1]+e*b[5]+d*b[9]+c*b[13] -s[11]=f*b[2]+e*b[6]+d*b[10]+c*b[14] -s[15]=f*b[3]+e*b[7]+d*b[11]+c*b[15] -a=b[15] -if(a===0)a=1 -a2[0]=Math.min(Math.min(Math.min(a0[0],a0[1]),a0[2]),a0[3])/a -a2[1]=Math.min(Math.min(Math.min(a0[4],a0[5]),a0[6]),a0[7])/a -a2[2]=Math.max(Math.max(Math.max(a0[0],a0[1]),a0[2]),a0[3])/a -a2[3]=Math.max(Math.max(Math.max(a0[4],a0[5]),a0[6]),a0[7])/a}, -au6(a,b){return a.a<=b.a&&a.b<=b.b&&a.c>=b.c&&a.d>=b.d}, -cm(a){var s,r,q -if(a==null)return null -s=a.gl(a) -if((s&4278190080)>>>0===4278190080){r=B.f.iV(s&16777215,16) -switch(r.length){case 1:return"#00000"+r -case 2:return"#0000"+r -case 3:return"#000"+r -case 4:return"#00"+r -case 5:return"#0"+r -default:return"#"+r}}else{q=""+"rgba("+B.f.i(s>>>16&255)+","+B.f.i(s>>>8&255)+","+B.f.i(s&255)+","+B.e.i((s>>>24&255)/255)+")" -return q.charCodeAt(0)==0?q:q}}, -aHi(a,b,c,d){var s=""+a,r=""+b,q=""+c -if(d===255)return"rgb("+s+","+r+","+q+")" -else return"rgba("+s+","+r+","+q+","+B.e.V(d/255,2)+")"}, -asy(){if(A.aId())return"BlinkMacSystemFont" -var s=$.ej() -if(s!==B.aJ)s=s===B.bg -else s=!0 -if(s)return"-apple-system, BlinkMacSystemFont" -return"Arial"}, -aiA(a){var s -if(J.eD(B.Lt.a,a))return a -s=$.ej() -if(s!==B.aJ)s=s===B.bg -else s=!0 -if(s)if(a===".SF Pro Text"||a===".SF Pro Display"||a===".SF UI Text"||a===".SF UI Display")return A.asy() -return'"'+A.e(a)+'", '+A.asy()+", sans-serif"}, -uX(a,b,c){if(ac)return c -else return a}, -v_(a,b){var s -if(a==null)return b==null -if(b==null||a.length!==b.length)return!1 -for(s=0;s")).bB(0," ")}, -d2(a,b,c){var s=a.style -B.h.an(s,B.h.X(s,b),c,null)}, -ajq(a,b){var s=$.bU() -if(s===B.N){s=a.style -B.h.an(s,B.h.X(s,"-webkit-clip-path"),b,null)}s=a.style -B.h.an(s,B.h.X(s,"clip-path"),b,null)}, -Tu(a,b,c,d,e,f,g,h,i){var s=$.asv -if(s==null?$.asv=a.ellipse!=null:s)a.ellipse(b,c,d,e,f,g,h,i) -else{a.save() -a.translate(b,c) -a.rotate(f) -a.scale(d,e) -a.arc(0,0,1,g,h,i) -a.restore()}}, -amq(a){var s,r -for(;s=a.lastChild,s!=null;){r=s.parentNode -if(r!=null)r.removeChild(s)}}, -aC2(a){var s=new A.bJ(new Float32Array(16)) -if(s.kr(a)===0)return null -return s}, -dM(){var s=new Float32Array(16) -s[15]=1 -s[0]=1 -s[5]=1 -s[10]=1 -return new A.bJ(s)}, -aC_(a){return new A.bJ(a)}, -arp(a,b,c){var s=new Float32Array(3) -s[0]=a -s[1]=b -s[2]=c -return new A.aax(s)}, -aAZ(a,b){var s=new A.GZ(a,b,A.cU(null,t.H),B.eP) -s.We(a,b) -return s}, -vc:function vc(a){var _=this -_.a=a -_.d=_.c=_.b=null}, -Uu:function Uu(a,b){this.a=a -this.b=b}, -Uz:function Uz(a){this.a=a}, -Uy:function Uy(a){this.a=a}, -UA:function UA(a){this.a=a}, -Ux:function Ux(a){this.a=a}, -Uw:function Uw(a){this.a=a}, -Uv:function Uv(a){this.a=a}, -UE:function UE(){}, -UF:function UF(){}, -UG:function UG(){}, -pS:function pS(a,b){this.a=a -this.b=b}, -iF:function iF(a,b){this.a=a -this.b=b}, -hX:function hX(a,b){this.a=a -this.b=b}, -Vs:function Vs(a,b,c,d,e){var _=this -_.e=_.d=null -_.f=a -_.r=b -_.z=_.y=_.x=_.w=null -_.Q=0 -_.as=c -_.a=d -_.b=null -_.c=e}, -Wb:function Wb(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=_.r=null -_.x=1 -_.Q=_.z=_.y=null -_.as=!1}, -QI:function QI(){}, -eX:function eX(a){this.a=a}, -JU:function JU(a,b){this.b=a -this.a=b}, -VJ:function VJ(a,b){this.a=a -this.b=b}, -c3:function c3(){}, -FI:function FI(a){this.a=a}, -G6:function G6(){}, -G3:function G3(){}, -G4:function G4(a){this.a=a}, -Ga:function Ga(a,b){this.a=a -this.b=b}, -G8:function G8(a,b){this.a=a -this.b=b}, -G5:function G5(a){this.a=a}, -G9:function G9(a){this.a=a}, -FL:function FL(a,b,c){this.a=a -this.b=b -this.c=c}, -FM:function FM(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -FK:function FK(a,b){this.a=a -this.b=b}, -FJ:function FJ(a,b){this.a=a -this.b=b}, -FQ:function FQ(a,b,c){this.a=a -this.b=b -this.c=c}, -FR:function FR(a){this.a=a}, -FW:function FW(a,b){this.a=a -this.b=b}, -FV:function FV(a,b){this.a=a -this.b=b}, -FO:function FO(a,b,c){this.a=a -this.b=b -this.c=c}, -FN:function FN(a,b,c){this.a=a -this.b=b -this.c=c}, -FT:function FT(a,b){this.a=a -this.b=b}, -FX:function FX(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -FP:function FP(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -FS:function FS(a,b){this.a=a -this.b=b}, -FU:function FU(a){this.a=a}, -G7:function G7(a,b){this.a=a -this.b=b}, -a_c:function a_c(){}, -iH:function iH(){}, -Vp:function Vp(){}, -Vq:function Vq(){}, -W1:function W1(){}, -a8i:function a8i(){}, -a83:function a83(){}, -a7D:function a7D(){}, -a7B:function a7B(){}, -a7A:function a7A(){}, -a7C:function a7C(){}, -rU:function rU(){}, -a7i:function a7i(){}, -a7h:function a7h(){}, -a87:function a87(){}, -t4:function t4(){}, -a84:function a84(){}, -t1:function t1(){}, -a88:function a88(){}, -t5:function t5(){}, -a7Z:function a7Z(){}, -rY:function rY(){}, -a8_:function a8_(){}, -rZ:function rZ(){}, -a8g:function a8g(){}, -a8f:function a8f(){}, -a7X:function a7X(){}, -a7W:function a7W(){}, -a7o:function a7o(){}, -rS:function rS(){}, -a7v:function a7v(){}, -rT:function rT(){}, -a7T:function a7T(){}, -a7S:function a7S(){}, -a7m:function a7m(){}, -rR:function rR(){}, -a81:function a81(){}, -t_:function t_(){}, -a7M:function a7M(){}, -rV:function rV(){}, -a7l:function a7l(){}, -rQ:function rQ(){}, -a82:function a82(){}, -t0:function t0(){}, -a8b:function a8b(){}, -t6:function t6(){}, -a7x:function a7x(){}, -a7w:function a7w(){}, -a7K:function a7K(){}, -a7J:function a7J(){}, -a7k:function a7k(){}, -a7j:function a7j(){}, -a7r:function a7r(){}, -a7q:function a7q(){}, -ma:function ma(){}, -mc:function mc(){}, -a80:function a80(){}, -jm:function jm(){}, -a7I:function a7I(){}, -me:function me(){}, -FY:function FY(){}, -abT:function abT(){}, -abV:function abV(){}, -md:function md(){}, -a7p:function a7p(){}, -mb:function mb(){}, -a7F:function a7F(){}, -a7E:function a7E(){}, -a7R:function a7R(){}, -aeX:function aeX(){}, -a7y:function a7y(){}, -mf:function mf(){}, -a7t:function a7t(){}, -a7s:function a7s(){}, -a7U:function a7U(){}, -a7n:function a7n(){}, -mg:function mg(){}, -a7O:function a7O(){}, -a7N:function a7N(){}, -a7P:function a7P(){}, -KZ:function KZ(){}, -oI:function oI(){}, -a86:function a86(){}, -t3:function t3(){}, -a85:function a85(){}, -t2:function t2(){}, -a7V:function a7V(){}, -rX:function rX(){}, -L0:function L0(){}, -L_:function L_(){}, -KY:function KY(){}, -oH:function oH(){}, -zW:function zW(){}, -a8d:function a8d(){}, -kt:function kt(){}, -KX:function KX(){}, -aaf:function aaf(){}, -a7H:function a7H(){}, -rW:function rW(){}, -a89:function a89(){}, -a8a:function a8a(){}, -a8h:function a8h(){}, -a8c:function a8c(){}, -a7z:function a7z(){}, -aag:function aag(){}, -a8e:function a8e(){}, -a42:function a42(a){this.a=$ -this.b=a -this.c=null}, -a43:function a43(a){this.a=a}, -a44:function a44(a){this.a=a}, -L3:function L3(a,b){this.a=a -this.b=b}, -jl:function jl(){}, -a0J:function a0J(){}, -a7L:function a7L(){}, -a7u:function a7u(){}, -a7G:function a7G(){}, -a7Q:function a7Q(){}, -ajh:function ajh(a,b){this.a=a -this.b=b}, -aji:function aji(){}, -ajj:function ajj(a,b){this.a=a -this.b=b}, -ajk:function ajk(){}, -Vo:function Vo(a){this.a=a}, -xM:function xM(a){this.b=a -this.a=null}, -VF:function VF(){}, -VB:function VB(){}, -G1:function G1(a){this.a=a}, -vS:function vS(a,b){this.a=a -this.b=b}, -HF:function HF(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.z=i -_.Q=j -_.ax=k}, -a_T:function a_T(){}, -a_U:function a_U(){}, -a_V:function a_V(){}, -a_W:function a_W(a){this.a=a}, -a_S:function a_S(){}, -lM:function lM(a,b){this.a=a -this.b=b}, -hV:function hV(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -y5:function y5(a){this.a=a}, -tJ:function tJ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Hr:function Hr(a,b,c,d,e,f,g){var _=this -_.a=!1 -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=!1}, -Zk:function Zk(){}, -Zl:function Zl(){}, -Zm:function Zm(){}, -aib:function aib(){}, -aie:function aie(){}, -aiT:function aiT(){}, -aiU:function aiU(a){this.a=a}, -oa:function oa(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -Y:function Y(a,b){this.a=a -this.b=b}, -afQ:function afQ(a,b){this.a=a -this.c=b}, -kR:function kR(a,b,c){this.a=a -this.b=b -this.c=c}, -H8:function H8(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -YN:function YN(a,b,c){this.a=a -this.b=b -this.c=c}, -a2L:function a2L(){this.a=0}, -a2N:function a2N(){}, -a2M:function a2M(){}, -a2P:function a2P(){}, -a2O:function a2O(){}, -L1:function L1(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=null}, -a8l:function a8l(){}, -a8m:function a8m(){}, -a8k:function a8k(a,b,c){this.a=a -this.b=b -this.c=c}, -a8j:function a8j(){}, -lZ:function lZ(a,b,c){this.a=a -this.b=b -this.c=c}, -HL:function HL(a){this.a=a}, -le:function le(a,b){var _=this -_.a=null -_.b=a -_.c=b -_.d=!1}, -VG:function VG(a,b,c){this.a=a -this.b=b -this.c=c}, -vf:function vf(a,b){this.a=a -this.b=b}, -FH:function FH(a,b){var _=this -_.b=a -_.c=b -_.d=0 -_.e=-1 -_.f=0 -_.r=!1 -_.a=null}, -vR:function vR(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=_.f=$ -_.w=!1 -_.x=0 -_.y=null -_.z=f}, -VC:function VC(){}, -VD:function VD(a){this.a=a}, -jZ:function jZ(a,b){this.a=a -this.b=b}, -aiL:function aiL(a){this.a=a}, -aiM:function aiM(a){this.a=a}, -ahR:function ahR(a,b){this.a=a -this.b=b}, -HS:function HS(a,b){this.a=a -this.$ti=b}, -a0A:function a0A(a,b){this.a=a -this.b=b}, -a0B:function a0B(a){this.a=a}, -a0z:function a0z(a){this.a=a}, -a0y:function a0y(a){this.a=a}, -iX:function iX(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=_.e=null -_.$ti=e}, -eJ:function eJ(){}, -a3S:function a3S(a){this.c=a}, -a39:function a39(a,b){this.a=a -this.b=b}, -qa:function qa(){}, -Kr:function Kr(a,b){this.c=a -this.a=null -this.b=b}, -Gd:function Gd(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -Gg:function Gg(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -Gf:function Gf(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -IP:function IP(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -AN:function AN(a,b,c){var _=this -_.f=a -_.c=b -_.a=null -_.b=c}, -IN:function IN(a,b,c){var _=this -_.f=a -_.c=b -_.a=null -_.b=c}, -Jr:function Jr(a,b,c){var _=this -_.c=a -_.d=b -_.a=null -_.b=c}, -Jp:function Jp(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.c=f -_.a=null -_.b=g}, -I4:function I4(a){this.a=a}, -a1i:function a1i(a){this.a=a -this.b=$}, -a1j:function a1j(a,b){this.a=a -this.b=b}, -ZD:function ZD(a,b,c){this.a=a -this.b=b -this.c=c}, -ZE:function ZE(a,b,c){this.a=a -this.b=b -this.c=c}, -ZF:function ZF(a,b,c){this.a=a -this.b=b -this.c=c}, -W4:function W4(){}, -G0:function G0(a,b){this.b=a -this.c=b -this.a=null}, -VH:function VH(a){this.a=a}, -q1:function q1(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=0 -_.e=c -_.r=!0 -_.w=d -_.x=!1 -_.as=_.Q=_.z=_.y=null -_.at=e -_.a=_.CW=_.ch=_.ax=null}, -q2:function q2(a){this.b=a -this.a=this.c=null}, -vU:function vU(a,b){var _=this -_.b=a -_.c=b -_.d=!1 -_.a=_.e=null}, -n7:function n7(){this.c=this.b=this.a=null}, -a4a:function a4a(a,b){this.a=a -this.b=b}, -q3:function q3(){}, -FZ:function FZ(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=null}, -L2:function L2(a,b,c){this.a=a -this.b=b -this.c=c}, -a96:function a96(a,b,c){this.a=a -this.b=b -this.c=c}, -dS:function dS(){}, -fu:function fu(){}, -t7:function t7(a,b,c){var _=this -_.a=1 -_.b=a -_.d=_.c=null -_.e=b -_.f=!1 -_.$ti=c}, -Ah:function Ah(a,b){this.a=a -this.b=b}, -dm:function dm(a){var _=this -_.a=null -_.b=!0 -_.c=!1 -_.w=_.r=_.f=_.e=_.d=null -_.x=a -_.y=null -_.Q=_.z=-1 -_.as=!1 -_.ax=_.at=null -_.ay=-1}, -a92:function a92(a){this.a=a}, -vW:function vW(a,b){this.a=a -this.b=b -this.c=!1}, -kz:function kz(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -G2:function G2(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -vX:function vX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.dx=_.db=$}, -VK:function VK(a){this.a=a}, -vV:function vV(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -vT:function vT(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null -_.e=0 -_.f=!1 -_.Q=_.z=_.y=_.x=_.w=_.r=0 -_.as=null}, -G_:function G_(a){this.a=a}, -VI:function VI(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=0 -_.e=d -_.f=e}, -abU:function abU(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -mC:function mC(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -pk:function pk(a,b){this.a=a -this.b=b}, -ahW:function ahW(a){this.a=a}, -Fz:function Fz(a){this.a=a}, -Gi:function Gi(a,b){this.a=a -this.b=b}, -VY:function VY(a,b){this.a=a -this.b=b}, -VZ:function VZ(a,b){this.a=a -this.b=b}, -VW:function VW(a){this.a=a}, -VX:function VX(a,b){this.a=a -this.b=b}, -VV:function VV(a){this.a=a}, -Gh:function Gh(){}, -VU:function VU(){}, -H2:function H2(){}, -YI:function YI(){}, -du:function du(a){this.a=a}, -a0K:function a0K(){}, -Hj:function Hj(a){var _=this -_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=null -_.Q=a}, -Z9:function Z9(a,b,c){this.a=a -this.b=b -this.c=c}, -Za:function Za(a){this.a=a}, -Zb:function Zb(a){this.a=a}, -Yh:function Yh(){}, -Kz:function Kz(a,b){this.a=a -this.b=b}, -ox:function ox(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -QH:function QH(a,b){this.a=a -this.b=b}, -a5V:function a5V(){}, -ajp:function ajp(){}, -ajo:function ajo(){}, -fr:function fr(a){this.a=a}, -Gs:function Gs(a){this.b=this.a=null -this.$ti=a}, -tX:function tX(a,b,c){this.a=a -this.b=b -this.$ti=c}, -a74:function a74(){this.a=$}, -Y5:function Y5(){this.a=$}, -jJ:function jJ(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.e=null -_.f=d -_.r=e -_.w=f -_.x=0 -_.y=g -_.Q=_.z=null -_.ax=_.at=_.as=!1 -_.ay=h -_.ch=i}, -bT:function bT(a){this.b=a}, -a8X:function a8X(a){this.a=a}, -u2:function u2(){}, -yA:function yA(a,b,c,d,e,f){var _=this -_.CW=a -_.cx=b -_.cr$=c -_.x=d -_.a=e -_.b=-1 -_.c=f -_.w=_.r=_.f=_.e=_.d=null}, -Jj:function Jj(a,b,c,d,e,f){var _=this -_.CW=a -_.cx=b -_.cr$=c -_.x=d -_.a=e -_.b=-1 -_.c=f -_.w=_.r=_.f=_.e=_.d=null}, -yD:function yD(a,b,c,d,e,f,g,h,i,j){var _=this -_.CW=a -_.cx=b -_.cy=c -_.db=d -_.dx=e -_.dy=f -_.fx=_.fr=null -_.cr$=g -_.x=h -_.a=i -_.b=-1 -_.c=j -_.w=_.r=_.f=_.e=_.d=null}, -yz:function yz(a,b,c,d,e){var _=this -_.CW=a -_.cx=b -_.cy=null -_.x=c -_.a=d -_.b=-1 -_.c=e -_.w=_.r=_.f=_.e=_.d=null}, -a94:function a94(a,b,c){this.a=a -this.b=b -this.c=c}, -a93:function a93(a,b){this.a=a -this.b=b}, -Xu:function Xu(a,b,c,d){var _=this -_.a=a -_.N9$=b -_.qt$=c -_.js$=d}, -yB:function yB(a,b,c,d,e){var _=this -_.CW=a -_.cx=b -_.cy=null -_.x=c -_.a=d -_.b=-1 -_.c=e -_.w=_.r=_.f=_.e=_.d=null}, -yC:function yC(a,b,c,d,e){var _=this -_.CW=a -_.cx=b -_.cy=null -_.x=c -_.a=d -_.b=-1 -_.c=e -_.w=_.r=_.f=_.e=_.d=null}, -aO:function aO(a){this.a=a -this.b=!1}, -aQ:function aQ(){var _=this -_.e=_.d=_.c=_.b=_.a=null -_.f=!0 -_.z=_.y=_.x=_.w=_.r=null}, -eY:function eY(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -a47:function a47(){var _=this -_.d=_.c=_.b=_.a=0}, -W5:function W5(){var _=this -_.d=_.c=_.b=_.a=0}, -N6:function N6(){this.b=this.a=null}, -Wj:function Wj(){var _=this -_.d=_.c=_.b=_.a=0}, -tj:function tj(a,b){var _=this -_.a=a -_.b=b -_.d=0 -_.f=_.e=-1}, -a3j:function a3j(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1 -_.e=0 -_.f=-1 -_.Q=_.z=_.y=_.x=_.w=_.r=0}, -rh:function rh(a,b){var _=this -_.b=_.a=null -_.e=_.d=_.c=0 -_.f=a -_.r=b -_.x=_.w=0 -_.y=null -_.z=0 -_.as=_.Q=!0 -_.ch=_.ay=_.ax=_.at=!1 -_.CW=-1 -_.cx=0}, -oe:function oe(a){var _=this -_.a=a -_.b=-1 -_.e=_.d=_.c=0}, -kl:function kl(){this.b=this.a=null}, -a7Y:function a7Y(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -a3k:function a3k(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=_.d=0 -_.f=d}, -lQ:function lQ(a,b){this.a=a -this.b=b}, -Jm:function Jm(a,b,c,d,e,f,g){var _=this -_.ch=null -_.CW=a -_.cx=b -_.cy=c -_.db=d -_.dy=1 -_.fr=!1 -_.fx=e -_.id=_.go=_.fy=null -_.a=f -_.b=-1 -_.c=g -_.w=_.r=_.f=_.e=_.d=null}, -a3o:function a3o(a){this.a=a}, -a4u:function a4u(a,b,c){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.f=_.e=!1 -_.r=1}, -cM:function cM(){}, -wt:function wt(){}, -yt:function yt(){}, -J8:function J8(){}, -Jc:function Jc(a,b){this.a=a -this.b=b}, -Ja:function Ja(a,b){this.a=a -this.b=b}, -J9:function J9(a){this.a=a}, -Jb:function Jb(a){this.a=a}, -IZ:function IZ(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.a=!1 -_.b=c -_.c=d -_.d=e -_.e=f}, -IY:function IY(a,b,c,d,e){var _=this -_.f=a -_.a=!1 -_.b=b -_.c=c -_.d=d -_.e=e}, -IX:function IX(a,b,c,d,e){var _=this -_.f=a -_.a=!1 -_.b=b -_.c=c -_.d=d -_.e=e}, -J2:function J2(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.a=!1 -_.b=d -_.c=e -_.d=f -_.e=g}, -J6:function J6(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.a=!1 -_.b=c -_.c=d -_.d=e -_.e=f}, -J5:function J5(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.a=!1 -_.b=c -_.c=d -_.d=e -_.e=f}, -J0:function J0(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.x=null -_.a=!1 -_.b=d -_.c=e -_.d=f -_.e=g}, -J_:function J_(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.a=!1 -_.b=d -_.c=e -_.d=f -_.e=g}, -J4:function J4(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.a=!1 -_.b=c -_.c=d -_.d=e -_.e=f}, -J7:function J7(a,b,c,d,e,f,g,h){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.a=!1 -_.b=e -_.c=f -_.d=g -_.e=h}, -J1:function J1(a,b,c,d,e,f,g,h){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.a=!1 -_.b=e -_.c=f -_.d=g -_.e=h}, -J3:function J3(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.a=!1 -_.b=c -_.c=d -_.d=e -_.e=f}, -af8:function af8(a,b,c,d){var _=this -_.a=a -_.b=!1 -_.d=_.c=17976931348623157e292 -_.f=_.e=-17976931348623157e292 -_.r=b -_.w=c -_.x=!0 -_.y=d -_.z=!1 -_.ax=_.at=_.as=_.Q=0}, -a5o:function a5o(){var _=this -_.d=_.c=_.b=_.a=!1}, -ahe:function ahe(){}, -tk:function tk(a){this.a=a}, -yE:function yE(a,b,c){var _=this -_.CW=null -_.x=a -_.a=b -_.b=-1 -_.c=c -_.w=_.r=_.f=_.e=_.d=null}, -a8Y:function a8Y(a){this.a=a}, -a9_:function a9_(a){this.a=a}, -a90:function a90(a){this.a=a}, -a2I:function a2I(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a2J:function a2J(){}, -wz:function wz(){}, -a_b:function a_b(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -KQ:function KQ(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.e=null -_.w=_.r=_.f=0 -_.y=c -_.z=d -_.Q=null -_.as=e}, -zR:function zR(a,b){this.b=a -this.c=b -this.d=1}, -oD:function oD(a,b,c){this.a=a -this.b=b -this.c=c}, -aiE:function aiE(){}, -lS:function lS(a,b){this.a=a -this.b=b}, -d5:function d5(){}, -Jl:function Jl(){}, -dw:function dw(){}, -a3n:function a3n(){}, -mE:function mE(a,b,c){this.a=a -this.b=b -this.c=c}, -a3T:function a3T(){}, -yF:function yF(a,b,c,d){var _=this -_.CW=a -_.cy=_.cx=null -_.x=b -_.a=c -_.b=-1 -_.c=d -_.w=_.r=_.f=_.e=_.d=null}, -HE:function HE(){}, -a_Q:function a_Q(a,b,c){this.a=a -this.b=b -this.c=c}, -a_R:function a_R(a,b){this.a=a -this.b=b}, -a_O:function a_O(a,b,c){this.a=a -this.b=b -this.c=c}, -a_P:function a_P(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -HD:function HD(a){this.a=a}, -zV:function zV(a){this.a=a}, -x_:function x_(a,b,c){var _=this -_.a=a -_.c=_.b=!1 -_.d=b -_.e=c}, -lj:function lj(a,b){this.a=a -this.b=b}, -aj2:function aj2(){}, -aj3:function aj3(){}, -aj4:function aj4(a){this.a=a}, -aj1:function aj1(a){this.a=a}, -ahw:function ahw(){}, -ahx:function ahx(){}, -Z2:function Z2(){}, -nN:function nN(){}, -nq:function nq(){}, -ow:function ow(){}, -np:function np(){}, -hg:function hg(){}, -a0X:function a0X(a,b){var _=this -_.a=a -_.c=_.b=null -_.d=0 -_.e=b}, -a0Y:function a0Y(a){this.a=a}, -a0Z:function a0Z(a){this.a=a}, -a1_:function a1_(a){this.a=a}, -a1g:function a1g(a,b,c){this.a=a -this.b=b -this.c=c}, -a1h:function a1h(a){this.a=a}, -ahZ:function ahZ(){}, -ai_:function ai_(){}, -ai0:function ai0(){}, -ai1:function ai1(){}, -ai2:function ai2(){}, -ai3:function ai3(){}, -ai4:function ai4(){}, -ai5:function ai5(){}, -I2:function I2(a){this.b=$ -this.c=a}, -a10:function a10(a){this.a=a}, -a11:function a11(a){this.a=a}, -a12:function a12(a){this.a=a}, -a13:function a13(a){this.a=a}, -jU:function jU(a){this.a=a}, -a14:function a14(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=!1 -_.e=c -_.f=d}, -a1a:function a1a(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a1b:function a1b(a){this.a=a}, -a1c:function a1c(a,b,c){this.a=a -this.b=b -this.c=c}, -a1d:function a1d(a,b){this.a=a -this.b=b}, -a16:function a16(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a17:function a17(a,b,c){this.a=a -this.b=b -this.c=c}, -a18:function a18(a,b){this.a=a -this.b=b}, -a19:function a19(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a15:function a15(a,b,c){this.a=a -this.b=b -this.c=c}, -a1e:function a1e(a,b){this.a=a -this.b=b}, -a2b:function a2b(){}, -UZ:function UZ(){}, -y3:function y3(a){var _=this -_.d=a -_.a=_.e=$ -_.c=_.b=!1}, -a2l:function a2l(){}, -zU:function zU(a,b){var _=this -_.d=a -_.e=b -_.f=null -_.a=$ -_.c=_.b=!1}, -a7f:function a7f(){}, -a7g:function a7g(){}, -nV:function nV(){}, -aas:function aas(){}, -a_f:function a_f(){}, -a_h:function a_h(a,b){this.a=a -this.b=b}, -a_g:function a_g(a,b){this.a=a -this.b=b}, -Wr:function Wr(a){this.a=a}, -a3A:function a3A(){}, -V9:function V9(){}, -GY:function GY(){this.a=null -this.b=$ -this.c=!1}, -GX:function GX(a){this.a=!1 -this.b=a}, -Yl:function Yl(a,b,c,d){var _=this -_.a=a -_.d=b -_.e=c -_.go=_.fy=_.fx=_.dy=_.cy=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=null -_.id=d -_.R8=_.p4=_.p3=_.p2=_.p1=_.k3=_.k2=_.k1=null -_.RG=$}, -Yx:function Yx(a,b,c){this.a=a -this.b=b -this.c=c}, -Yw:function Yw(a,b){this.a=a -this.b=b}, -Yq:function Yq(a,b){this.a=a -this.b=b}, -Yr:function Yr(a,b){this.a=a -this.b=b}, -Ys:function Ys(a,b){this.a=a -this.b=b}, -Yt:function Yt(a,b){this.a=a -this.b=b}, -Yu:function Yu(){}, -Yv:function Yv(a,b){this.a=a -this.b=b}, -Yo:function Yo(a){this.a=a}, -Yp:function Yp(a){this.a=a}, -Ym:function Ym(a){this.a=a}, -Yn:function Yn(a){this.a=a}, -Yy:function Yy(a,b){this.a=a -this.b=b}, -aj6:function aj6(a,b,c){this.a=a -this.b=b -this.c=c}, -aj7:function aj7(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a3C:function a3C(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a3D:function a3D(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a3E:function a3E(a,b){this.b=a -this.c=b}, -Jx:function Jx(a,b){this.a=a -this.c=b -this.d=$}, -a3Q:function a3Q(){}, -abd:function abd(){}, -abe:function abe(a,b,c){this.a=a -this.b=b -this.c=c}, -Sm:function Sm(){}, -ahf:function ahf(a){this.a=a}, -kS:function kS(a,b){this.a=a -this.b=b}, -p6:function p6(){this.a=0}, -afb:function afb(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.c=d}, -afd:function afd(){}, -afc:function afc(a){this.a=a}, -afe:function afe(a){this.a=a}, -aff:function aff(a){this.a=a}, -afg:function afg(a){this.a=a}, -afh:function afh(a){this.a=a}, -afi:function afi(a){this.a=a}, -agT:function agT(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.c=d}, -agU:function agU(a){this.a=a}, -agV:function agV(a){this.a=a}, -agW:function agW(a){this.a=a}, -agX:function agX(a){this.a=a}, -agY:function agY(a){this.a=a}, -aeR:function aeR(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.c=d}, -aeS:function aeS(a){this.a=a}, -aeT:function aeT(a){this.a=a}, -aeU:function aeU(a){this.a=a}, -aeV:function aeV(a){this.a=a}, -aeW:function aeW(a){this.a=a}, -uA:function uA(a,b){this.a=null -this.b=a -this.c=b}, -a3I:function a3I(a){this.a=a -this.b=0}, -a3J:function a3J(a,b){this.a=a -this.b=b}, -akU:function akU(){}, -a0P:function a0P(){}, -qK:function qK(){}, -a0b:function a0b(){}, -qf:function qf(){}, -Ww:function Ww(){}, -aaz:function aaz(){}, -a0l:function a0l(){}, -a0k:function a0k(){}, -Hz:function Hz(a){this.a=a}, -Hy:function Hy(a){var _=this -_.a=a -_.fx=_.fr=_.dy=_.CW=_.ch=_.ay=_.ax=_.w=_.r=_.f=_.e=_.d=_.c=null}, -akN:function akN(a,b){var _=this -_.b=_.a=null -_.c=a -_.d=b}, -U5:function U5(){this.c=this.a=null}, -U6:function U6(a){this.a=a}, -U7:function U7(a){this.a=a}, -tP:function tP(a,b){this.a=a -this.b=b}, -q0:function q0(a,b){this.c=a -this.b=b}, -qL:function qL(a){this.c=null -this.b=a}, -qO:function qO(a,b){var _=this -_.c=a -_.d=1 -_.e=null -_.f=!1 -_.b=b}, -a0p:function a0p(a,b){this.a=a -this.b=b}, -a0q:function a0q(a){this.a=a}, -r1:function r1(a){this.c=null -this.b=a}, -r3:function r3(a){this.b=a}, -rG:function rG(a){var _=this -_.d=_.c=null -_.e=0 -_.b=a}, -a6y:function a6y(a){this.a=a}, -a6z:function a6z(a){this.a=a}, -a6A:function a6A(a){this.a=a}, -a70:function a70(a){this.a=a}, -KO:function KO(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.a=a -_.b=b -_.c=c -_.f=d -_.r=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.ch=n -_.CW=o -_.cx=p -_.cy=q -_.db=r -_.dx=s -_.dy=a0 -_.fr=a1 -_.fx=a2 -_.fy=a3 -_.go=a4 -_.id=a5 -_.k1=a6 -_.k2=a7 -_.k4=a8}, -hj:function hj(a,b){this.a=a -this.b=b}, -aif:function aif(){}, -aig:function aig(){}, -aih:function aih(){}, -aii:function aii(){}, -aij:function aij(){}, -aik:function aik(){}, -ail:function ail(){}, -aim:function aim(){}, -fA:function fA(){}, -cE:function cE(a,b,c,d){var _=this -_.a=0 -_.fy=_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=null -_.go=a -_.id=b -_.k1=c -_.k2=-1 -_.k4=_.k3=null -_.ok=d -_.p2=_.p1=0 -_.p3=null}, -EY:function EY(a,b){this.a=a -this.b=b}, -lr:function lr(a,b){this.a=a -this.b=b}, -Yz:function Yz(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null -_.f=e -_.r=f -_.w=!1 -_.y=g -_.z=null -_.Q=h}, -YA:function YA(a){this.a=a}, -YC:function YC(){}, -YB:function YB(a){this.a=a}, -qn:function qn(a,b){this.a=a -this.b=b}, -a6Q:function a6Q(a){this.a=a}, -a6M:function a6M(){}, -WI:function WI(){this.a=null}, -WJ:function WJ(a){this.a=a}, -a25:function a25(){var _=this -_.b=_.a=null -_.c=0 -_.d=!1}, -a27:function a27(a){this.a=a}, -a26:function a26(a){this.a=a}, -tp:function tp(a){this.c=null -this.b=a}, -a9h:function a9h(a){this.a=a}, -a7_:function a7_(a,b){var _=this -_.ax=_.at=_.as=null -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1}, -tw:function tw(a){this.c=$ -this.d=!1 -this.b=a}, -a9m:function a9m(a){this.a=a}, -a9n:function a9n(a){this.a=a}, -a9o:function a9o(a,b){this.a=a -this.b=b}, -a9p:function a9p(a){this.a=a}, -jG:function jG(){}, -OA:function OA(){}, -M3:function M3(a,b){this.a=a -this.b=b}, -hc:function hc(a,b){this.a=a -this.b=b}, -a0E:function a0E(){}, -a0G:function a0G(){}, -a8H:function a8H(){}, -a8K:function a8K(a,b){this.a=a -this.b=b}, -a8L:function a8L(){}, -aaD:function aaD(a,b,c){var _=this -_.a=!1 -_.b=a -_.c=b -_.d=c}, -JS:function JS(a){this.a=a -this.b=0}, -a91:function a91(a,b){this.a=a -this.b=b}, -FA:function FA(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=d -_.f=!1 -_.r=null -_.x=_.w=$ -_.y=null}, -no:function no(a,b,c){this.a=a -this.b=b -this.c=c}, -ri:function ri(a,b,c,d,e){var _=this -_.r=a -_.a=b -_.b=c -_.c=d -_.d=e}, -ti:function ti(){}, -FF:function FF(a,b){this.b=a -this.c=b -this.a=null}, -Ks:function Ks(a){this.b=a -this.a=null}, -Vr:function Vr(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=0 -_.r=f -_.w=!0}, -Zj:function Zj(){this.b=this.a=null}, -Hs:function Hs(a){this.a=a}, -Zn:function Zn(a){this.a=a}, -Zo:function Zo(a){this.a=a}, -PW:function PW(a){this.a=a}, -afj:function afj(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -afk:function afk(a){this.a=a}, -a9M:function a9M(a,b,c){var _=this -_.a=a -_.b=b -_.c=-1 -_.d=0 -_.e=null -_.r=_.f=0 -_.x=_.w=-1 -_.y=!1 -_.z=c}, -ro:function ro(){}, -of:function of(a,b,c,d,e){var _=this -_.r=a -_.a=b -_.b=c -_.d=_.c=$ -_.e=d -_.f=e}, -fd:function fd(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=!1 -_.Q=e -_.as=f -_.at=g -_.a=h -_.b=i -_.d=_.c=$ -_.e=j -_.f=k}, -xv:function xv(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a1l:function a1l(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.as=_.Q=_.z=_.y=0 -_.at=!1 -_.ax=0 -_.ch=_.ay=$ -_.cx=_.CW=0 -_.cy=null}, -a8z:function a8z(a,b){var _=this -_.a=a -_.b=b -_.c="" -_.e=_.d=null}, -be:function be(a,b){this.a=a -this.b=b}, -nY:function nY(a,b){this.a=a -this.b=b}, -dv:function dv(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Kw:function Kw(a){this.a=a}, -a9N:function a9N(a){this.a=a}, -qo:function qo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p}, -wA:function wA(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.z=j -_.Q=k}, -wC:function wC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=null -_.dy=$}, -wB:function wB(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a3d:function a3d(){}, -Ar:function Ar(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=$}, -a9i:function a9i(a){this.a=a -this.b=null}, -LM:function LM(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=$ -_.e=c -_.r=_.f=$}, -lm:function lm(a,b,c){this.a=a -this.b=b -this.c=c}, -tT:function tT(a,b){this.a=a -this.b=b}, -c8:function c8(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -kF:function kF(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -cH:function cH(a,b){this.a=a -this.b=b}, -O4:function O4(a){this.a=a}, -UY:function UY(a){this.a=a}, -Yk:function Yk(){}, -a2F:function a2F(){}, -a9F:function a9F(){}, -a2Q:function a2Q(){}, -Wv:function Wv(){}, -a3q:function a3q(){}, -Yc:function Yc(){}, -aap:function aap(){}, -a2o:function a2o(){}, -oP:function oP(a,b){this.a=a -this.b=b}, -Ao:function Ao(a){this.a=a}, -Yd:function Yd(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Yg:function Yg(){}, -Ye:function Ye(a,b){this.a=a -this.b=b}, -Yf:function Yf(a,b,c){this.a=a -this.b=b -this.c=c}, -Fb:function Fb(a,b,c,d){var _=this -_.a=a -_.b=b -_.d=c -_.e=d}, -tv:function tv(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -ql:function ql(a,b,c){this.a=a -this.b=b -this.c=c}, -a0v:function a0v(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -HA:function HA(a,b){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1}, -a5U:function a5U(a,b){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1}, -wc:function wc(){}, -Wy:function Wy(a){this.a=a}, -Wz:function Wz(){}, -WA:function WA(){}, -WB:function WB(){}, -a01:function a01(a,b){var _=this -_.fx=null -_.fy=!0 -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1}, -a04:function a04(a){this.a=a}, -a05:function a05(a,b){this.a=a -this.b=b}, -a02:function a02(a){this.a=a}, -a03:function a03(a){this.a=a}, -Ug:function Ug(a,b){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1}, -Uh:function Uh(a){this.a=a}, -YV:function YV(a,b){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1}, -YX:function YX(a){this.a=a}, -YY:function YY(a){this.a=a}, -YW:function YW(a){this.a=a}, -a9r:function a9r(){}, -a9z:function a9z(a,b){this.a=a -this.b=b}, -a9G:function a9G(){}, -a9B:function a9B(a){this.a=a}, -a9E:function a9E(){}, -a9A:function a9A(a){this.a=a}, -a9D:function a9D(a){this.a=a}, -a9q:function a9q(){}, -a9w:function a9w(){}, -a9C:function a9C(){}, -a9y:function a9y(){}, -a9x:function a9x(){}, -a9v:function a9v(a){this.a=a}, -ajn:function ajn(){}, -a9j:function a9j(a){this.a=a}, -a9k:function a9k(a){this.a=a}, -a_Z:function a_Z(){var _=this -_.a=$ -_.b=null -_.c=!1 -_.d=null -_.f=$}, -a00:function a00(a){this.a=a}, -a0_:function a0_(a){this.a=a}, -Y3:function Y3(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -XF:function XF(a,b,c){this.a=a -this.b=b -this.c=c}, -tE:function tE(a,b){this.a=a -this.b=b}, -aiz:function aiz(){}, -bJ:function bJ(a){this.a=a}, -aax:function aax(a){this.a=a}, -GW:function GW(){}, -Yi:function Yi(a){this.a=a}, -Yj:function Yj(a,b){this.a=a -this.b=b}, -GZ:function GZ(a,b,c,d){var _=this -_.w=null -_.a=a -_.b=b -_.c=null -_.d=c -_.e=d -_.f=null}, -Mi:function Mi(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -NI:function NI(){}, -Px:function Px(){}, -Py:function Py(){}, -CC:function CC(){}, -SK:function SK(){}, -SP:function SP(){}, -akx:function akx(){}, -n4(a,b,c){if(b.j("V<0>").b(a))return new A.Bv(a,b.j("@<0>").az(c).j("Bv<1,2>")) -return new A.n3(a,b.j("@<0>").az(c).j("n3<1,2>"))}, -apD(a){return new A.j_("Field '"+a+"' has been assigned during initialization.")}, -apE(a){return new A.j_("Field '"+a+"' has not been initialized.")}, -e2(a){return new A.j_("Local '"+a+"' has not been initialized.")}, -k5(a){return new A.j_("Local '"+a+"' has already been initialized.")}, -aAh(a){return new A.fn(a)}, -aiX(a){var s,r=a^48 -if(r<=9)return r -s=a|32 -if(97<=s&&s<=102)return s-87 -return-1}, -aIq(a,b){var s=A.aiX(B.b.ak(a,b)),r=A.aiX(B.b.ak(a,b+1)) -return s*16+r-(r&256)}, -v(a,b){a=a+b&536870911 -a=a+((a&524287)<<10)&536870911 -return a^a>>>6}, -dA(a){a=a+((a&67108863)<<3)&536870911 -a^=a>>>11 -return a+((a&16383)<<15)&536870911}, -ar3(a,b,c){return A.dA(A.v(A.v(c,a),b))}, -aDG(a,b,c,d,e){return A.dA(A.v(A.v(A.v(A.v(e,a),b),c),d))}, -eC(a,b,c){return a}, -eP(a,b,c,d){A.cZ(b,"start") -if(c!=null){A.cZ(c,"end") -if(b>c)A.K(A.bt(b,0,c,"start",null))}return new A.fF(a,b,c,d.j("fF<0>"))}, -k8(a,b,c,d){if(t.Ee.b(a))return new A.nj(a,b,c.j("@<0>").az(d).j("nj<1,2>")) -return new A.d3(a,b,c.j("@<0>").az(d).j("d3<1,2>"))}, -a9a(a,b,c){var s="takeCount" -A.fS(b,s) -A.cZ(b,s) -if(t.Ee.b(a))return new A.ww(a,b,c.j("ww<0>")) -return new A.oO(a,b,c.j("oO<0>"))}, -a8n(a,b,c){var s="count" -if(t.Ee.b(a)){A.fS(b,s) -A.cZ(b,s) -return new A.qm(a,b,c.j("qm<0>"))}A.fS(b,s) -A.cZ(b,s) -return new A.ku(a,b,c.j("ku<0>"))}, -aBd(a,b,c){return new A.nx(a,b,c.j("nx<0>"))}, -bB(){return new A.kx("No element")}, -apx(){return new A.kx("Too many elements")}, -apw(){return new A.kx("Too few elements")}, -aqV(a,b){A.Lf(a,0,J.bP(a)-1,b)}, -Lf(a,b,c,d){if(c-b<=32)A.Lh(a,b,c,d) -else A.Lg(a,b,c,d)}, -Lh(a,b,c,d){var s,r,q,p,o -for(s=b+1,r=J.ax(a);s<=c;++s){q=r.h(a,s) -p=s -while(!0){if(!(p>b&&d.$2(r.h(a,p-1),q)>0))break -o=p-1 -r.n(a,p,r.h(a,o)) -p=o}r.n(a,p,q)}}, -Lg(a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i=B.f.bC(a5-a4+1,6),h=a4+i,g=a5-i,f=B.f.bC(a4+a5,2),e=f-i,d=f+i,c=J.ax(a3),b=c.h(a3,h),a=c.h(a3,e),a0=c.h(a3,f),a1=c.h(a3,d),a2=c.h(a3,g) -if(a6.$2(b,a)>0){s=a -a=b -b=s}if(a6.$2(a1,a2)>0){s=a2 -a2=a1 -a1=s}if(a6.$2(b,a0)>0){s=a0 -a0=b -b=s}if(a6.$2(a,a0)>0){s=a0 -a0=a -a=s}if(a6.$2(b,a1)>0){s=a1 -a1=b -b=s}if(a6.$2(a0,a1)>0){s=a1 -a1=a0 -a0=s}if(a6.$2(a,a2)>0){s=a2 -a2=a -a=s}if(a6.$2(a,a0)>0){s=a0 -a0=a -a=s}if(a6.$2(a1,a2)>0){s=a2 -a2=a1 -a1=s}c.n(a3,h,b) -c.n(a3,f,a0) -c.n(a3,g,a2) -c.n(a3,e,c.h(a3,a4)) -c.n(a3,d,c.h(a3,a5)) -r=a4+1 -q=a5-1 -if(J.f(a6.$2(a,a1),0)){for(p=r;p<=q;++p){o=c.h(a3,p) -n=a6.$2(o,a) -if(n===0)continue -if(n<0){if(p!==r){c.n(a3,p,c.h(a3,r)) -c.n(a3,r,o)}++r}else for(;!0;){n=a6.$2(c.h(a3,q),a) -if(n>0){--q -continue}else{m=q-1 -if(n<0){c.n(a3,p,c.h(a3,r)) -l=r+1 -c.n(a3,r,c.h(a3,q)) -c.n(a3,q,o) -q=m -r=l -break}else{c.n(a3,p,c.h(a3,q)) -c.n(a3,q,o) -q=m -break}}}}k=!0}else{for(p=r;p<=q;++p){o=c.h(a3,p) -if(a6.$2(o,a)<0){if(p!==r){c.n(a3,p,c.h(a3,r)) -c.n(a3,r,o)}++r}else if(a6.$2(o,a1)>0)for(;!0;)if(a6.$2(c.h(a3,q),a1)>0){--q -if(qg){for(;J.f(a6.$2(c.h(a3,r),a),0);)++r -for(;J.f(a6.$2(c.h(a3,q),a1),0);)--q -for(p=r;p<=q;++p){o=c.h(a3,p) -if(a6.$2(o,a)===0){if(p!==r){c.n(a3,p,c.h(a3,r)) -c.n(a3,r,o)}++r}else if(a6.$2(o,a1)===0)for(;!0;)if(a6.$2(c.h(a3,q),a1)===0){--q -if(q")),!0,b),n=o.length,m=0 -while(!0){if(!(m").az(c).j("bd<1,2>"))}return new A.nc(A.apG(a,b,c),b.j("@<0>").az(c).j("nc<1,2>"))}, -aka(){throw A.c(A.N("Cannot modify unmodifiable Map"))}, -aBo(a){if(typeof a=="number")return B.e.gv(a) -if(t.if.b(a))return a.gv(a) -if(t.n.b(a))return A.e5(a) -return A.mL(a)}, -aBp(a){return new A.ZR(a)}, -aug(a){var s=v.mangledGlobalNames[a] -if(s!=null)return s -return"minified:"+a}, -atK(a,b){var s -if(b!=null){s=b.x -if(s!=null)return s}return t.dC.b(a)}, -e(a){var s -if(typeof a=="string")return a -if(typeof a=="number"){if(a!==0)return""+a}else if(!0===a)return"true" -else if(!1===a)return"false" -else if(a==null)return"null" -s=J.bX(a) -return s}, -e5(a){var s,r=$.aqj -if(r==null)r=$.aqj=Symbol("identityHashCode") -s=a[r] -if(s==null){s=Math.random()*0x3fffffff|0 -a[r]=s}return s}, -aqm(a,b){var s,r,q,p,o,n=null,m=/^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(a) -if(m==null)return n -s=m[3] -if(b==null){if(s!=null)return parseInt(a,10) -if(m[2]!=null)return parseInt(a,16) -return n}if(b<2||b>36)throw A.c(A.bt(b,2,36,"radix",n)) -if(b===10&&s!=null)return parseInt(a,10) -if(b<10||s==null){r=b<=10?47+b:86+b -q=m[1] -for(p=q.length,o=0;or)return n}return parseInt(a,b)}, -aql(a){var s,r -if(!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(a))return null -s=parseFloat(a) -if(isNaN(s)){r=B.b.jM(a) -if(r==="NaN"||r==="+NaN"||r==="-NaN")return s -return null}return s}, -a40(a){return A.aCE(a)}, -aCE(a){var s,r,q,p,o -if(a instanceof A.D)return A.dH(A.aV(a),null) -s=J.ix(a) -if(s===B.BV||s===B.C6||t.kk.b(a)){r=B.mh(a) -q=r!=="Object"&&r!=="" -if(q)return r -p=a.constructor -if(typeof p=="function"){o=p.name -if(typeof o=="string")q=o!=="Object"&&o!=="" -else q=!1 -if(q)return o}}return A.dH(A.aV(a),null)}, -aCH(){return Date.now()}, -aCJ(){var s,r -if($.a41!==0)return -$.a41=1000 -if(typeof window=="undefined")return -s=window -if(s==null)return -r=s.performance -if(r==null)return -if(typeof r.now!="function")return -$.a41=1e6 -$.JF=new A.a4_(r)}, -aCG(){if(!!self.location)return self.location.href -return null}, -aqi(a){var s,r,q,p,o=a.length -if(o<=500)return String.fromCharCode.apply(null,a) -for(s="",r=0;r65535)return A.aCK(a)}return A.aqi(a)}, -aCL(a,b,c){var s,r,q,p -if(c<=500&&b===0&&c===a.length)return String.fromCharCode.apply(null,a) -for(s=b,r="";s>>0,s&1023|56320)}}throw A.c(A.bt(a,0,1114111,null,null))}, -aCI(a){var s=A.dO(a),r=/\((.*)\)/.exec(s.toString()) -if(r!=null)return r[1] -r=/^[A-Z,a-z]{3}\s[A-Z,a-z]{3}\s\d+\s\d{2}:\d{2}:\d{2}\s([A-Z]{3,5})\s\d{4}$/.exec(s.toString()) -if(r!=null)return r[1] -r=/(?:GMT|UTC)[+-]\d{4}/.exec(s.toString()) -if(r!=null)return r[0] -return""}, -aqo(a,b,c,d,e,f,g,h){var s,r=b-1 -if(0<=a&&a<100){a+=400 -r-=4800}s=new Date(a,r,c,d,e,f,g).valueOf() -if(isNaN(s)||s<-864e13||s>864e13)return null -return s}, -dO(a){if(a.date===void 0)a.date=new Date(a.a) -return a.date}, -yM(a){return a.b?A.dO(a).getUTCFullYear()+0:A.dO(a).getFullYear()+0}, -yL(a){return a.b?A.dO(a).getUTCMonth()+1:A.dO(a).getMonth()+1}, -JC(a){return a.b?A.dO(a).getUTCDate()+0:A.dO(a).getDate()+0}, -oo(a){return a.b?A.dO(a).getUTCHours()+0:A.dO(a).getHours()+0}, -JD(a){return a.b?A.dO(a).getUTCMinutes()+0:A.dO(a).getMinutes()+0}, -JE(a){return a.b?A.dO(a).getUTCSeconds()+0:A.dO(a).getSeconds()+0}, -a3Z(a){return a.b?A.dO(a).getUTCMilliseconds()+0:A.dO(a).getMilliseconds()+0}, -aqk(a){return B.f.bE((a.b?A.dO(a).getUTCDay()+0:A.dO(a).getDay()+0)+6,7)+1}, -lW(a,b,c){var s,r,q={} -q.a=0 -s=[] -r=[] -q.a=b.length -B.c.P(s,b) -q.b="" -if(c!=null&&c.a!==0)c.Y(0,new A.a3Y(q,r,s)) -return J.az4(a,new A.a0D(B.N5,0,s,r,0))}, -aCF(a,b,c){var s,r,q -if(Array.isArray(b))s=c==null||c.a===0 -else s=!1 -if(s){r=b.length -if(r===0){if(!!a.$0)return a.$0()}else if(r===1){if(!!a.$1)return a.$1(b[0])}else if(r===2){if(!!a.$2)return a.$2(b[0],b[1])}else if(r===3){if(!!a.$3)return a.$3(b[0],b[1],b[2])}else if(r===4){if(!!a.$4)return a.$4(b[0],b[1],b[2],b[3])}else if(r===5)if(!!a.$5)return a.$5(b[0],b[1],b[2],b[3],b[4]) -q=a[""+"$"+r] -if(q!=null)return q.apply(a,b)}return A.aCD(a,b,c)}, -aCD(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=Array.isArray(b)?b:A.ap(b,!0,t.z),f=g.length,e=a.$R -if(fn)return A.lW(a,g,null) -if(fe)return A.lW(a,g,c) -if(g===b)g=A.ap(g,!0,t.z) -l=Object.keys(q) -if(c==null)for(r=l.length,k=0;k=s)return A.bY(b,a,r,null,s) -return A.a49(b,r)}, -aHD(a,b,c){if(a<0||a>c)return A.bt(a,0,c,"start",null) -if(b!=null)if(bc)return A.bt(b,a,c,"end",null) -return new A.fQ(!0,b,"end",null)}, -l3(a){return new A.fQ(!0,a,null,null)}, -da(a){return a}, -c(a){var s,r -if(a==null)a=new A.IH() -s=new Error() -s.dartException=a -r=A.aIT -if("defineProperty" in Object){Object.defineProperty(s,"message",{get:r}) -s.name=""}else s.toString=r -return s}, -aIT(){return J.bX(this.dartException)}, -K(a){throw A.c(a)}, -G(a){throw A.c(A.bw(a))}, -kE(a){var s,r,q,p,o,n -a=A.amp(a.replace(String({}),"$receiver$")) -s=a.match(/\\\$[a-zA-Z]+\\\$/g) -if(s==null)s=A.b([],t.s) -r=s.indexOf("\\$arguments\\$") -q=s.indexOf("\\$argumentsExpr\\$") -p=s.indexOf("\\$expr\\$") -o=s.indexOf("\\$method\\$") -n=s.indexOf("\\$receiver\\$") -return new A.aad(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, -aae(a){return function($expr$){var $argumentsExpr$="$arguments$" -try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, -arl(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, -aky(a,b){var s=b==null,r=s?null:b.method -return new A.HW(a,r,s?null:b.receiver)}, -ab(a){if(a==null)return new A.II(a) -if(a instanceof A.wF)return A.mM(a,a.a) -if(typeof a!=="object")return a -if("dartException" in a)return A.mM(a,a.dartException) -return A.aGU(a)}, -mM(a,b){if(t.Lt.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a -return b}, -aGU(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null -if(!("message" in a))return a -s=a.message -if("number" in a&&typeof a.number=="number"){r=a.number -q=r&65535 -if((B.f.h9(r,16)&8191)===10)switch(q){case 438:return A.mM(a,A.aky(A.e(s)+" (Error "+q+")",e)) -case 445:case 5007:p=A.e(s) -return A.mM(a,new A.yh(p+" (Error "+q+")",e))}}if(a instanceof TypeError){o=$.auU() -n=$.auV() -m=$.auW() -l=$.auX() -k=$.av_() -j=$.av0() -i=$.auZ() -$.auY() -h=$.av2() -g=$.av1() -f=o.iJ(s) -if(f!=null)return A.mM(a,A.aky(s,f)) -else{f=n.iJ(s) -if(f!=null){f.method="call" -return A.mM(a,A.aky(s,f))}else{f=m.iJ(s) -if(f==null){f=l.iJ(s) -if(f==null){f=k.iJ(s) -if(f==null){f=j.iJ(s) -if(f==null){f=i.iJ(s) -if(f==null){f=l.iJ(s) -if(f==null){f=h.iJ(s) -if(f==null){f=g.iJ(s) -p=f!=null}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0 -if(p)return A.mM(a,new A.yh(s,f==null?e:f.method))}}return A.mM(a,new A.M4(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.Ab() -s=function(b){try{return String(b)}catch(d){}return null}(a) -return A.mM(a,new A.fQ(!1,e,e,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.Ab() -return a}, -aA(a){var s -if(a instanceof A.wF)return a.b -if(a==null)return new A.Dn(a) -s=a.$cachedTrace -if(s!=null)return s -return a.$cachedTrace=new A.Dn(a)}, -mL(a){if(a==null||typeof a!="object")return J.r(a) -else return A.e5(a)}, -atq(a,b){var s,r,q,p=a.length -for(s=0;s=0 -else if(b instanceof A.nT){s=B.b.bU(a,c) -return b.b.test(s)}else{s=J.an9(b,B.b.bU(a,c)) -return!s.gS(s)}}, -ama(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") -return a}, -aIH(a,b,c,d){var s=b.HC(a,d) -if(s==null)return a -return A.amw(a,s.b.index,s.gaO(s),c)}, -amp(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") -return a}, -fM(a,b,c){var s -if(typeof b=="string")return A.aIG(a,b,c) -if(b instanceof A.nT){s=b.gIW() -s.lastIndex=0 -return a.replace(s,A.ama(c))}return A.aIF(a,b,c)}, -aIF(a,b,c){var s,r,q,p -for(s=J.an9(b,a),s=s.ga1(s),r=0,q="";s.t();){p=s.gH(s) -q=q+a.substring(r,p.gb8(p))+c -r=p.gaO(p)}s=q+a.substring(r) -return s.charCodeAt(0)==0?s:s}, -aIG(a,b,c){var s,r,q,p -if(b===""){if(a==="")return c -s=a.length -r=""+c -for(q=0;q=0)return a.split(b).join(c) -return a.replace(new RegExp(A.amp(b),"g"),A.ama(c))}, -at_(a){return a}, -aub(a,b,c,d){var s,r,q,p,o,n,m -for(s=b.n5(0,a),s=new A.B_(s.a,s.b,s.c),r=t.Qz,q=0,p="";s.t();){o=s.d -if(o==null)o=r.a(o) -n=o.b -m=n.index -p=p+A.e(A.at_(B.b.N(a,q,m)))+A.e(c.$1(o)) -q=m+n[0].length}s=p+A.e(A.at_(B.b.bU(a,q))) -return s.charCodeAt(0)==0?s:s}, -aII(a,b,c,d){var s,r,q,p -if(typeof b=="string"){s=a.indexOf(b,d) -if(s<0)return a -return A.amw(a,s,s+b.length,c)}if(b instanceof A.nT)return d===0?a.replace(b.b,A.ama(c)):A.aIH(a,b,c,d) -r=J.awK(b,a,d) -q=r.ga1(r) -if(!q.t())return a -p=q.gH(q) -return B.b.iR(a,p.gb8(p),p.gaO(p),c)}, -amw(a,b,c,d){return a.substring(0,b)+d+a.substring(c)}, -nc:function nc(a,b){this.a=a -this.$ti=b}, -q9:function q9(){}, -W7:function W7(a,b,c){this.a=a -this.b=b -this.c=c}, -bd:function bd(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -W8:function W8(a){this.a=a}, -Bf:function Bf(a,b){this.a=a -this.$ti=b}, -bI:function bI(a,b){this.a=a -this.$ti=b}, -ZR:function ZR(a){this.a=a}, -xc:function xc(){}, -nQ:function nQ(a,b){this.a=a -this.$ti=b}, -a0D:function a0D(a,b,c,d,e){var _=this -_.a=a -_.c=b -_.d=c -_.e=d -_.f=e}, -a4_:function a4_(a){this.a=a}, -a3Y:function a3Y(a,b,c){this.a=a -this.b=b -this.c=c}, -aad:function aad(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -yh:function yh(a,b){this.a=a -this.b=b}, -HW:function HW(a,b,c){this.a=a -this.b=b -this.c=c}, -M4:function M4(a){this.a=a}, -II:function II(a){this.a=a}, -wF:function wF(a,b){this.a=a -this.b=b}, -Dn:function Dn(a){this.a=a -this.b=null}, -cb:function cb(){}, -Gj:function Gj(){}, -Gk:function Gk(){}, -LD:function LD(){}, -Lr:function Lr(){}, -pW:function pW(a,b){this.a=a -this.b=b}, -Kx:function Kx(a){this.a=a}, -afO:function afO(){}, -dh:function dh(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -a0N:function a0N(a){this.a=a}, -a0M:function a0M(a,b){this.a=a -this.b=b}, -a0L:function a0L(a){this.a=a}, -a1n:function a1n(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -b3:function b3(a,b){this.a=a -this.$ti=b}, -xx:function xx(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -aiY:function aiY(a){this.a=a}, -aiZ:function aiZ(a){this.a=a}, -aj_:function aj_(a){this.a=a}, -nT:function nT(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -uq:function uq(a){this.b=a}, -Mq:function Mq(a,b,c){this.a=a -this.b=b -this.c=c}, -B_:function B_(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -tg:function tg(a,b){this.a=a -this.c=b}, -Rl:function Rl(a,b,c){this.a=a -this.b=b -this.c=c}, -Rm:function Rm(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -aIP(a){return A.K(A.apD(a))}, -bx(a){var s=new A.abP(a) -return s.b=s}, -a(a,b){if(a===$)throw A.c(A.apE(b)) -return a}, -c9(a,b){if(a!==$)throw A.c(new A.j_("Field '"+b+"' has already been initialized."))}, -ba(a,b){if(a!==$)throw A.c(A.apD(b))}, -abP:function abP(a){this.a=a -this.b=null}, -Ti(a,b,c){}, -kZ(a){var s,r,q -if(t.RP.b(a))return a -s=J.ax(a) -r=A.b7(s.gp(a),null,!1,t.z) -for(q=0;q>>0!==a||a>=c)throw A.c(A.pE(b,a))}, -mH(a,b,c){var s -if(!(a>>>0!==a))if(b==null)s=a>c -else s=b>>>0!==b||a>b||b>c -else s=!0 -if(s)throw A.c(A.aHD(a,b,c)) -if(b==null)return c -return b}, -o6:function o6(){}, -dj:function dj(){}, -y6:function y6(){}, -r9:function r9(){}, -lN:function lN(){}, -fw:function fw(){}, -y7:function y7(){}, -Iy:function Iy(){}, -Iz:function Iz(){}, -y8:function y8(){}, -IA:function IA(){}, -IB:function IB(){}, -y9:function y9(){}, -ya:function ya(){}, -o7:function o7(){}, -Cn:function Cn(){}, -Co:function Co(){}, -Cp:function Cp(){}, -Cq:function Cq(){}, -aqF(a,b){var s=b.c -return s==null?b.c=A.alB(a,b.y,!0):s}, -aqE(a,b){var s=b.c -return s==null?b.c=A.DL(a,"a7",[b.y]):s}, -aqG(a){var s=a.x -if(s===6||s===7||s===8)return A.aqG(a.y) -return s===11||s===12}, -aD2(a){return a.at}, -a_(a){return A.Sf(v.typeUniverse,a,!1)}, -aI8(a,b){var s,r,q,p,o -if(a==null)return null -s=b.z -r=a.as -if(r==null)r=a.as=new Map() -q=b.at -p=r.get(q) -if(p!=null)return p -o=A.l1(v.typeUniverse,a.y,s,0) -r.set(q,o) -return o}, -l1(a,b,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=b.x -switch(c){case 5:case 1:case 2:case 3:case 4:return b -case 6:s=b.y -r=A.l1(a,s,a0,a1) -if(r===s)return b -return A.as2(a,r,!0) -case 7:s=b.y -r=A.l1(a,s,a0,a1) -if(r===s)return b -return A.alB(a,r,!0) -case 8:s=b.y -r=A.l1(a,s,a0,a1) -if(r===s)return b -return A.as1(a,r,!0) -case 9:q=b.z -p=A.Ez(a,q,a0,a1) -if(p===q)return b -return A.DL(a,b.y,p) -case 10:o=b.y -n=A.l1(a,o,a0,a1) -m=b.z -l=A.Ez(a,m,a0,a1) -if(n===o&&l===m)return b -return A.alz(a,n,l) -case 11:k=b.y -j=A.l1(a,k,a0,a1) -i=b.z -h=A.aGK(a,i,a0,a1) -if(j===k&&h===i)return b -return A.as0(a,j,h) -case 12:g=b.z -a1+=g.length -f=A.Ez(a,g,a0,a1) -o=b.y -n=A.l1(a,o,a0,a1) -if(f===g&&n===o)return b -return A.alA(a,n,f,!0) -case 13:e=b.y -if(e0;--p)a4.push("T"+(q+p)) -for(o=t.X,n=t.ub,m="<",l="",p=0;p0){a0+=a1+"[" -for(a1="",p=0;p0){a0+=a1+"{" -for(a1="",p=0;p "+a}, -dH(a,b){var s,r,q,p,o,n,m=a.x -if(m===5)return"erased" -if(m===2)return"dynamic" -if(m===3)return"void" -if(m===1)return"Never" -if(m===4)return"any" -if(m===6){s=A.dH(a.y,b) -return s}if(m===7){r=a.y -s=A.dH(r,b) -q=r.x -return(q===11||q===12?"("+s+")":s)+"?"}if(m===8)return"FutureOr<"+A.dH(a.y,b)+">" -if(m===9){p=A.aGS(a.y) -o=a.z -return o.length>0?p+("<"+A.aGF(o,b)+">"):p}if(m===11)return A.asz(a,b,null) -if(m===12)return A.asz(a.y,b,a.z) -if(m===13){n=a.y -return b[b.length-1-n]}return"?"}, -aGS(a){var s=v.mangledGlobalNames[a] -if(s!=null)return s -return"minified:"+a}, -aF9(a,b){var s=a.tR[b] -for(;typeof s=="string";)s=a.tR[s] -return s}, -aF8(a,b){var s,r,q,p,o,n=a.eT,m=n[b] -if(m==null)return A.Sf(a,b,!1) -else if(typeof m=="number"){s=m -r=A.DM(a,5,"#") -q=A.ahc(s) -for(p=0;p0)p+="<"+A.Se(c)+">" -s=a.eC.get(p) -if(s!=null)return s -r=new A.i6(null,null) -r.x=9 -r.y=b -r.z=c -if(c.length>0)r.c=c[0] -r.at=p -q=A.mF(a,r) -a.eC.set(p,q) -return q}, -alz(a,b,c){var s,r,q,p,o,n -if(b.x===10){s=b.y -r=b.z.concat(c)}else{r=c -s=b}q=s.at+(";<"+A.Se(r)+">") -p=a.eC.get(q) -if(p!=null)return p -o=new A.i6(null,null) -o.x=10 -o.y=s -o.z=r -o.at=q -n=A.mF(a,o) -a.eC.set(q,n) -return n}, -as0(a,b,c){var s,r,q,p,o,n=b.at,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.Se(m) -if(j>0){s=l>0?",":"" -g+=s+"["+A.Se(k)+"]"}if(h>0){s=l>0?",":"" -g+=s+"{"+A.aF_(i)+"}"}r=n+(g+")") -q=a.eC.get(r) -if(q!=null)return q -p=new A.i6(null,null) -p.x=11 -p.y=b -p.z=c -p.at=r -o=A.mF(a,p) -a.eC.set(r,o) -return o}, -alA(a,b,c,d){var s,r=b.at+("<"+A.Se(c)+">"),q=a.eC.get(r) -if(q!=null)return q -s=A.aF1(a,b,c,r,d) -a.eC.set(r,s) -return s}, -aF1(a,b,c,d,e){var s,r,q,p,o,n,m,l -if(e){s=c.length -r=A.ahc(s) -for(q=0,p=0;p0){n=A.l1(a,b,r,0) -m=A.Ez(a,c,r,0) -return A.alA(a,n,m,c!==m)}}l=new A.i6(null,null) -l.x=12 -l.y=b -l.z=c -l.at=d -return A.mF(a,l)}, -arM(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, -arO(a){var s,r,q,p,o,n,m,l,k,j,i,h=a.r,g=a.s -for(s=h.length,r=0;r=48&&q<=57)r=A.aEJ(r+1,q,h,g) -else if((((q|32)>>>0)-97&65535)<26||q===95||q===36)r=A.arN(a,r,h,g,!1) -else if(q===46)r=A.arN(a,r,h,g,!0) -else{++r -switch(q){case 44:break -case 58:g.push(!1) -break -case 33:g.push(!0) -break -case 59:g.push(A.mD(a.u,a.e,g.pop())) -break -case 94:g.push(A.aF4(a.u,g.pop())) -break -case 35:g.push(A.DM(a.u,5,"#")) -break -case 64:g.push(A.DM(a.u,2,"@")) -break -case 126:g.push(A.DM(a.u,3,"~")) -break -case 60:g.push(a.p) -a.p=g.length -break -case 62:p=a.u -o=g.splice(a.p) -A.alw(a.u,a.e,o) -a.p=g.pop() -n=g.pop() -if(typeof n=="string")g.push(A.DL(p,n,o)) -else{m=A.mD(p,a.e,n) -switch(m.x){case 11:g.push(A.alA(p,m,o,a.n)) -break -default:g.push(A.alz(p,m,o)) -break}}break -case 38:A.aEK(a,g) -break -case 42:p=a.u -g.push(A.as2(p,A.mD(p,a.e,g.pop()),a.n)) -break -case 63:p=a.u -g.push(A.alB(p,A.mD(p,a.e,g.pop()),a.n)) -break -case 47:p=a.u -g.push(A.as1(p,A.mD(p,a.e,g.pop()),a.n)) -break -case 40:g.push(a.p) -a.p=g.length -break -case 41:p=a.u -l=new A.Oh() -k=p.sEA -j=p.sEA -n=g.pop() -if(typeof n=="number")switch(n){case-1:k=g.pop() -break -case-2:j=g.pop() -break -default:g.push(n) -break}else g.push(n) -o=g.splice(a.p) -A.alw(a.u,a.e,o) -a.p=g.pop() -l.a=o -l.b=k -l.c=j -g.push(A.as0(p,A.mD(p,a.e,g.pop()),l)) -break -case 91:g.push(a.p) -a.p=g.length -break -case 93:o=g.splice(a.p) -A.alw(a.u,a.e,o) -a.p=g.pop() -g.push(o) -g.push(-1) -break -case 123:g.push(a.p) -a.p=g.length -break -case 125:o=g.splice(a.p) -A.aEM(a.u,a.e,o) -a.p=g.pop() -g.push(o) -g.push(-2) -break -default:throw"Bad character "+q}}}i=g.pop() -return A.mD(a.u,a.e,i)}, -aEJ(a,b,c,d){var s,r,q=b-48 -for(s=c.length;a=48&&r<=57))break -q=q*10+(r-48)}d.push(q) -return a}, -arN(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 -for(s=c.length;m>>0)-97&65535)<26||r===95||r===36))q=r>=48&&r<=57 -else q=!0 -if(!q)break}}p=c.substring(b,m) -if(e){s=a.u -o=a.e -if(o.x===10)o=o.y -n=A.aF9(s,o.y)[p] -if(n==null)A.K('No "'+p+'" in "'+A.aD2(o)+'"') -d.push(A.ah_(s,o,n))}else d.push(p) -return m}, -aEK(a,b){var s=b.pop() -if(0===s){b.push(A.DM(a.u,1,"0&")) -return}if(1===s){b.push(A.DM(a.u,4,"1&")) -return}throw A.c(A.la("Unexpected extended operation "+A.e(s)))}, -mD(a,b,c){if(typeof c=="string")return A.DL(a,c,a.sEA) -else if(typeof c=="number")return A.aEL(a,b,c) -else return c}, -alw(a,b,c){var s,r=c.length -for(s=0;sn)return!1 -m=n-o -l=s.b -k=r.b -j=l.length -i=k.length -if(o+j=d)return!1 -a1=f[b] -b+=3 -if(a00?new Array(q):v.typeUniverse.sEA -for(o=0;o0?new Array(a):v.typeUniverse.sEA}, -i6:function i6(a,b){var _=this -_.a=a -_.b=b -_.w=_.r=_.c=null -_.x=0 -_.at=_.as=_.Q=_.z=_.y=null}, -Oh:function Oh(){this.c=this.b=this.a=null}, -DI:function DI(a){this.a=a}, -NY:function NY(){}, -DJ:function DJ(a){this.a=a}, -aEf(){var s,r,q={} -if(self.scheduleImmediate!=null)return A.aH2() -if(self.MutationObserver!=null&&self.document!=null){s=self.document.createElement("div") -r=self.document.createElement("span") -q.a=null -new self.MutationObserver(A.fj(new A.ab4(q),1)).observe(s,{childList:true}) -return new A.ab3(q,s,r)}else if(self.setImmediate!=null)return A.aH3() -return A.aH4()}, -aEg(a){self.scheduleImmediate(A.fj(new A.ab5(a),0))}, -aEh(a){self.setImmediate(A.fj(new A.ab6(a),0))}, -aEi(a){A.ali(B.r,a)}, -ali(a,b){var s=B.f.bC(a.a,1000) -return A.aEW(s<0?0:s,b)}, -ard(a,b){var s=B.f.bC(a.a,1000) -return A.aEX(s<0?0:s,b)}, -aEW(a,b){var s=new A.DF(!0) -s.Y9(a,b) -return s}, -aEX(a,b){var s=new A.DF(!1) -s.Ya(a,b) -return s}, -S(a){return new A.ME(new A.a4($.a5,a.j("a4<0>")),a.j("ME<0>"))}, -R(a,b){a.$2(0,null) -b.b=!0 -return b.a}, -U(a,b){A.aFq(a,b)}, -Q(a,b){b.c3(0,a)}, -P(a,b){b.fG(A.ab(a),A.aA(a))}, -aFq(a,b){var s,r,q=new A.ahA(b),p=new A.ahB(b) -if(a instanceof A.a4)a.Kq(q,p,t.z) -else{s=t.z -if(t.L0.b(a))a.fp(0,q,p,s) -else{r=new A.a4($.a5,t.LR) -r.a=8 -r.c=a -r.Kq(q,p,s)}}}, -T(a){var s=function(b,c){return function(d,e){while(true)try{b(d,e) -break}catch(r){e=r -d=c}}}(a,1) -return $.a5.DK(new A.ait(s))}, -aKV(a){return new A.uk(a,1)}, -arI(){return B.Tf}, -arJ(a){return new A.uk(a,3)}, -asM(a,b){return new A.Dw(a,b.j("Dw<0>"))}, -UH(a,b){var s=A.eC(a,"error",t.K) -return new A.F9(s,b==null?A.vv(a):b)}, -vv(a){var s -if(t.Lt.b(a)){s=a.gmC() -if(s!=null)return s}return B.xE}, -Hu(a,b){var s=new A.a4($.a5,b.j("a4<0>")) -A.bN(B.r,new A.ZK(s,a)) -return s}, -cU(a,b){var s,r -if(a==null){b.a(a) -s=a}else s=a -r=new A.a4($.a5,b.j("a4<0>")) -r.oV(s) -return r}, -ako(a,b,c){var s -A.eC(a,"error",t.K) -$.a5!==B.ae -if(b==null)b=A.vv(a) -s=new A.a4($.a5,c.j("a4<0>")) -s.oW(a,b) -return s}, -Hv(a,b){var s,r=!b.b(null) -if(r)throw A.c(A.fR(null,"computation","The type parameter is not nullable")) -s=new A.a4($.a5,b.j("a4<0>")) -A.bN(a,new A.ZJ(null,s,b)) -return s}, -nA(a,b){var s,r,q,p,o,n,m,l,k,j,i={},h=null,g=!1,f=new A.a4($.a5,b.j("a4>")) -i.a=null -i.b=0 -s=A.bx("error") -r=A.bx("stackTrace") -q=new A.ZQ(i,h,g,f,s,r) -try{for(l=J.av(a),k=t.P;l.t();){p=l.gH(l) -o=i.b -J.aoc(p,new A.ZP(i,o,f,h,g,s,r,b),q,k);++i.b}l=i.b -if(l===0){l=f -l.p_(A.b([],b.j("o<0>"))) -return l}i.a=A.b7(l,null,!1,b.j("0?"))}catch(j){n=A.ab(j) -m=A.aA(j) -if(i.b===0||g)return A.ako(n,m,b.j("x<0>")) -else{s.b=n -r.b=m}}return f}, -aBl(a,b){var s,r,q,p=new A.Dv(new A.a4($.a5,b.j("a4<0>")),b.j("Dv<0>")),o=new A.ZM(p,b),n=new A.ZL(p) -for(s=a.length,r=t.H,q=0;q")),a.j("aI<0>"))}, -asn(a,b,c){if(c==null)c=A.vv(b) -a.f7(b,c)}, -acU(a,b){var s,r -for(;s=a.a,(s&4)!==0;)a=a.c -if((s&24)!==0){r=b.u6() -b.yo(a) -A.uc(b,r)}else{r=b.c -b.a=b.a&1|4 -b.c=a -a.Jk(r)}}, -uc(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a -for(s=t.L0;!0;){r={} -q=e.a -p=(q&16)===0 -o=!p -if(b==null){if(o&&(q&1)===0){e=e.c -A.uU(e.a,e.b)}return}r.a=b -n=b.a -for(e=b;n!=null;e=n,n=m){e.a=null -A.uc(f.a,e) -r.a=n -m=n.a}q=f.a -l=q.c -r.b=o -r.c=l -if(p){k=e.c -k=(k&1)!==0||(k&15)===8}else k=!0 -if(k){j=e.b.b -if(o){q=q.b===j -q=!(q||q)}else q=!1 -if(q){A.uU(l.a,l.b) -return}i=$.a5 -if(i!==j)$.a5=j -else i=null -e=e.c -if((e&15)===8)new A.ad1(r,f,o).$0() -else if(p){if((e&1)!==0)new A.ad0(r,l).$0()}else if((e&2)!==0)new A.ad_(f,r).$0() -if(i!=null)$.a5=i -e=r.c -if(s.b(e)){q=r.a.$ti -q=q.j("a7<2>").b(e)||!q.z[1].b(e)}else q=!1 -if(q){h=r.a.b -if(e instanceof A.a4)if((e.a&24)!==0){g=h.c -h.c=null -b=h.u8(g) -h.a=e.a&30|h.a&1 -h.c=e.c -f.a=e -continue}else A.acU(e,h) -else h.yg(e) -return}}h=r.a.b -g=h.c -h.c=null -b=h.u8(g) -e=r.b -q=r.c -if(!e){h.a=8 -h.c=q}else{h.a=h.a&1|16 -h.c=q}f.a=h -e=h}}, -asR(a,b){if(t.Hg.b(a))return b.DK(a) -if(t.C_.b(a))return a -throw A.c(A.fR(a,"onError",u.w))}, -aGx(){var s,r -for(s=$.uT;s!=null;s=$.uT){$.Ey=null -r=s.b -$.uT=r -if(r==null)$.Ex=null -s.a.$0()}}, -aGJ(){$.alX=!0 -try{A.aGx()}finally{$.Ey=null -$.alX=!1 -if($.uT!=null)$.amH().$1(A.at6())}}, -asX(a){var s=new A.MF(a),r=$.Ex -if(r==null){$.uT=$.Ex=s -if(!$.alX)$.amH().$1(A.at6())}else $.Ex=r.b=s}, -aGH(a){var s,r,q,p=$.uT -if(p==null){A.asX(a) -$.Ey=$.Ex -return}s=new A.MF(a) -r=$.Ey -if(r==null){s.b=p -$.uT=$.Ey=s}else{q=r.b -s.b=q -$.Ey=r.b=s -if(q==null)$.Ex=s}}, -fk(a){var s=null,r=$.a5 -if(B.ae===r){A.uV(s,s,B.ae,a) -return}A.uV(s,s,r,r.Bg(a))}, -aDy(a,b){return new A.BH(new A.a8P(a,b),b.j("BH<0>"))}, -aKe(a){A.eC(a,"stream",t.K) -return new A.Rk()}, -aqY(a,b,c){return new A.mt(a,null,null,null,c.j("mt<0>"))}, -am0(a){var s,r,q -if(a==null)return -try{a.$0()}catch(q){s=A.ab(q) -r=A.aA(q) -A.uU(s,r)}}, -ary(a,b,c,d,e){var s=$.a5,r=d?1:0,q=A.abi(s,a),p=A.aln(s,b),o=c==null?A.at5():c -return new A.jy(q,p,o,s,r,e.j("jy<0>"))}, -abi(a,b){return b==null?A.aH5():b}, -aln(a,b){if(b==null)b=A.aH6() -if(t.hK.b(b))return a.DK(b) -if(t.mX.b(b))return b -throw A.c(A.b5("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, -aGB(a){}, -aGD(a,b){A.uU(a,b)}, -aGC(){}, -aFv(a,b,c){var s=a.aA(0),r=$.EL() -if(s!==r)s.fU(new A.ahD(b,c)) -else b.li(c)}, -arY(a,b,c){return new A.Dq(new A.agp(a,null,null,c,b),b.j("@<0>").az(c).j("Dq<1,2>"))}, -bN(a,b){var s=$.a5 -if(s===B.ae)return A.ali(a,b) -return A.ali(a,s.Bg(b))}, -AD(a,b){var s=$.a5 -if(s===B.ae)return A.ard(a,b) -return A.ard(a,s.Bh(b,t.qe))}, -uU(a,b){A.aGH(new A.ain(a,b))}, -asS(a,b,c,d){var s,r=$.a5 -if(r===c)return d.$0() -$.a5=c -s=r -try{r=d.$0() -return r}finally{$.a5=s}}, -asU(a,b,c,d,e){var s,r=$.a5 -if(r===c)return d.$1(e) -$.a5=c -s=r -try{r=d.$1(e) -return r}finally{$.a5=s}}, -asT(a,b,c,d,e,f){var s,r=$.a5 -if(r===c)return d.$2(e,f) -$.a5=c -s=r -try{r=d.$2(e,f) -return r}finally{$.a5=s}}, -uV(a,b,c,d){if(B.ae!==c)d=c.Bg(d) -A.asX(d)}, -ab4:function ab4(a){this.a=a}, -ab3:function ab3(a,b,c){this.a=a -this.b=b -this.c=c}, -ab5:function ab5(a){this.a=a}, -ab6:function ab6(a){this.a=a}, -DF:function DF(a){this.a=a -this.b=null -this.c=0}, -agP:function agP(a,b){this.a=a -this.b=b}, -agO:function agO(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ME:function ME(a,b){this.a=a -this.b=!1 -this.$ti=b}, -ahA:function ahA(a){this.a=a}, -ahB:function ahB(a){this.a=a}, -ait:function ait(a){this.a=a}, -uk:function uk(a,b){this.a=a -this.b=b}, -pr:function pr(a){var _=this -_.a=a -_.d=_.c=_.b=null}, -Dw:function Dw(a,b){this.a=a -this.$ti=b}, -F9:function F9(a,b){this.a=a -this.b=b}, -ZK:function ZK(a,b){this.a=a -this.b=b}, -ZJ:function ZJ(a,b,c){this.a=a -this.b=b -this.c=c}, -ZQ:function ZQ(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -ZP:function ZP(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -ZM:function ZM(a,b){this.a=a -this.b=b}, -ZL:function ZL(a){this.a=a}, -ZO:function ZO(a,b){this.a=a -this.b=b}, -ZN:function ZN(a,b,c){this.a=a -this.b=b -this.c=c}, -ZH:function ZH(a,b,c){this.a=a -this.b=b -this.c=c}, -ZI:function ZI(a,b){this.a=a -this.b=b}, -tU:function tU(){}, -aI:function aI(a,b){this.a=a -this.$ti=b}, -Dv:function Dv(a,b){this.a=a -this.$ti=b}, -jA:function jA(a,b,c,d,e){var _=this -_.a=null -_.b=a -_.c=b -_.d=c -_.e=d -_.$ti=e}, -a4:function a4(a,b){var _=this -_.a=0 -_.b=a -_.c=null -_.$ti=b}, -acR:function acR(a,b){this.a=a -this.b=b}, -acZ:function acZ(a,b){this.a=a -this.b=b}, -acV:function acV(a){this.a=a}, -acW:function acW(a){this.a=a}, -acX:function acX(a,b,c){this.a=a -this.b=b -this.c=c}, -acT:function acT(a,b){this.a=a -this.b=b}, -acY:function acY(a,b){this.a=a -this.b=b}, -acS:function acS(a,b,c){this.a=a -this.b=b -this.c=c}, -ad1:function ad1(a,b,c){this.a=a -this.b=b -this.c=c}, -ad2:function ad2(a){this.a=a}, -ad0:function ad0(a,b){this.a=a -this.b=b}, -ad_:function ad_(a,b){this.a=a -this.b=b}, -MF:function MF(a){this.a=a -this.b=null}, -d_:function d_(){}, -a8P:function a8P(a,b){this.a=a -this.b=b}, -a8S:function a8S(a,b){this.a=a -this.b=b}, -a8T:function a8T(a,b){this.a=a -this.b=b}, -a8Q:function a8Q(a){this.a=a}, -a8R:function a8R(a,b,c){this.a=a -this.b=b -this.c=c}, -ky:function ky(){}, -ie:function ie(){}, -uL:function uL(){}, -ago:function ago(a){this.a=a}, -agn:function agn(a){this.a=a}, -MG:function MG(){}, -mt:function mt(a,b,c,d,e){var _=this -_.a=null -_.b=0 -_.c=null -_.d=a -_.e=b -_.f=c -_.r=d -_.$ti=e}, -jz:function jz(a,b){this.a=a -this.$ti=b}, -tW:function tW(a,b,c,d,e,f,g){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null -_.$ti=g}, -jy:function jy(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=_.f=null -_.$ti=f}, -abk:function abk(a,b,c){this.a=a -this.b=b -this.c=c}, -abj:function abj(a){this.a=a}, -uM:function uM(){}, -BH:function BH(a,b){this.a=a -this.b=!1 -this.$ti=b}, -BX:function BX(a){this.b=a -this.a=0}, -NB:function NB(){}, -u_:function u_(a){this.b=a -this.a=null}, -Bk:function Bk(a,b){this.b=a -this.c=b -this.a=null}, -acq:function acq(){}, -Pv:function Pv(){}, -afa:function afa(a,b){this.a=a -this.b=b}, -Dr:function Dr(){this.c=this.b=null -this.a=0}, -Rk:function Rk(){}, -ahD:function ahD(a,b){this.a=a -this.b=b}, -By:function By(a){this.a=a}, -uJ:function uJ(a,b,c,d,e,f){var _=this -_.w=$ -_.x=null -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=_.f=null -_.$ti=f}, -uN:function uN(){}, -B8:function B8(a,b,c){this.a=a -this.b=b -this.$ti=c}, -ue:function ue(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Dq:function Dq(a,b){this.a=a -this.$ti=b}, -agp:function agp(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aho:function aho(){}, -ain:function ain(a,b){this.a=a -this.b=b}, -afT:function afT(){}, -afV:function afV(a,b){this.a=a -this.b=b}, -afW:function afW(a,b,c){this.a=a -this.b=b -this.c=c}, -afU:function afU(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -iS(a,b){return new A.pc(a.j("@<0>").az(b).j("pc<1,2>"))}, -alp(a,b){var s=a[b] -return s===a?null:s}, -alr(a,b,c){if(c==null)a[b]=a -else a[b]=c}, -alq(){var s=Object.create(null) -A.alr(s,"",s) -delete s[""] -return s}, -hQ(a,b,c,d,e){if(c==null)if(b==null){if(a==null)return new A.dh(d.j("@<0>").az(e).j("dh<1,2>")) -b=A.atb()}else{if(A.aHt()===b&&A.aHs()===a)return new A.C6(d.j("@<0>").az(e).j("C6<1,2>")) -if(a==null)a=A.ata()}else{if(b==null)b=A.atb() -if(a==null)a=A.ata()}return A.aEE(a,b,c,d,e)}, -aB(a,b,c){return A.atq(a,new A.dh(b.j("@<0>").az(c).j("dh<1,2>")))}, -z(a,b){return new A.dh(a.j("@<0>").az(b).j("dh<1,2>"))}, -aEE(a,b,c,d,e){var s=c!=null?c:new A.adW(d) -return new A.uo(a,b,s,d.j("@<0>").az(e).j("uo<1,2>"))}, -cf(a){return new A.mx(a.j("mx<0>"))}, -als(){var s=Object.create(null) -s[""]=s -delete s[""] -return s}, -j0(a){return new A.hq(a.j("hq<0>"))}, -aK(a){return new A.hq(a.j("hq<0>"))}, -bM(a,b){return A.aHI(a,new A.hq(b.j("hq<0>")))}, -alt(){var s=Object.create(null) -s[""]=s -delete s[""] -return s}, -ir(a,b){var s=new A.kP(a,b) -s.c=a.e -return s}, -aFK(a,b){return J.f(a,b)}, -aFL(a){return J.r(a)}, -akr(a,b,c){var s,r -if(A.alY(a)){if(b==="("&&c===")")return"(...)" -return b+"..."+c}s=A.b([],t.s) -$.pD.push(a) -try{A.aGo(a,s)}finally{$.pD.pop()}r=A.Ls(b,s,", ")+c -return r.charCodeAt(0)==0?r:r}, -xe(a,b,c){var s,r -if(A.alY(a))return b+"..."+c -s=new A.by(b) -$.pD.push(a) -try{r=s -r.a=A.Ls(r.a,a,", ")}finally{$.pD.pop()}s.a+=c -r=s.a -return r.charCodeAt(0)==0?r:r}, -alY(a){var s,r -for(s=$.pD.length,r=0;r100){while(!0){if(!(k>75&&j>3))break -k-=b.pop().length+2;--j}b.push("...") -return}}q=A.e(p) -r=A.e(o) -k+=r.length+q.length+4}}if(j>b.length+2){k+=5 -m="..."}else m=null -while(!0){if(!(k>80&&b.length>3))break -k-=b.pop().length+2 -if(m==null){k+=5 -m="..."}}if(m!=null)b.push(m) -b.push(q) -b.push(r)}, -apG(a,b,c){var s=A.hQ(null,null,null,b,c) -a.Y(0,new A.a1o(s,b,c)) -return s}, -a1p(a,b,c){var s=A.hQ(null,null,null,b,c) -s.P(0,a) -return s}, -k7(a,b){var s,r=A.j0(b) -for(s=J.av(a);s.t();)r.E(0,b.a(s.gH(s))) -return r}, -j1(a,b){var s=A.j0(b) -s.P(0,a) -return s}, -aEF(a){return new A.C7(a,a.a,a.c)}, -aBQ(a,b){var s=t.b8 -return J.v3(s.a(a),s.a(b))}, -a1G(a){var s,r={} -if(A.alY(a))return"{...}" -s=new A.by("") -try{$.pD.push(a) -s.a+="{" -r.a=!0 -J.eE(a,new A.a1H(r,s)) -s.a+="}"}finally{$.pD.pop()}r=s.a -return r.charCodeAt(0)==0?r:r}, -aoX(a){var s=new A.Bp(a.j("Bp<0>")) -s.a=s -s.b=s -return new A.wp(s,a.j("wp<0>"))}, -j2(a,b){return new A.xB(A.b7(A.aBR(a),null,!1,b.j("0?")),b.j("xB<0>"))}, -aBR(a){if(a==null||a<8)return 8 -else if((a&a-1)>>>0!==0)return A.apH(a) -return a}, -apH(a){var s -a=(a<<1>>>0)-1 -for(;!0;a=s){s=(a&a-1)>>>0 -if(s===0)return a}}, -arL(a){return new A.C9(a,a.c,a.d,a.b)}, -as3(){throw A.c(A.N("Cannot change an unmodifiable set"))}, -aFP(a,b){return J.v3(a,b)}, -aFJ(a){if(a.j("q(0,0)").b(A.atf()))return A.atf() -return A.aHh()}, -al4(a,b){var s=A.aFJ(a) -return new A.A7(s,new A.a8B(a),a.j("@<0>").az(b).j("A7<1,2>"))}, -al5(a,b,c){var s=b==null?new A.a8D(c):b -return new A.td(a,s,c.j("td<0>"))}, -pc:function pc(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -ad7:function ad7(a){this.a=a}, -ad6:function ad6(a){this.a=a}, -BN:function BN(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -pd:function pd(a,b){this.a=a -this.$ti=b}, -BK:function BK(a,b){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null}, -C6:function C6(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -uo:function uo(a,b,c,d){var _=this -_.w=a -_.x=b -_.y=c -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=d}, -adW:function adW(a){this.a=a}, -mx:function mx(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -pe:function pe(a,b){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null}, -hq:function hq(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -adX:function adX(a){this.a=a -this.c=this.b=null}, -kP:function kP(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -xf:function xf(){}, -xd:function xd(){}, -a1o:function a1o(a,b,c){this.a=a -this.b=b -this.c=c}, -xy:function xy(a){var _=this -_.b=_.a=0 -_.c=null -_.$ti=a}, -C7:function C7(a,b,c){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.e=!1}, -nZ:function nZ(){}, -xz:function xz(){}, -O:function O(){}, -xN:function xN(){}, -a1H:function a1H(a,b){this.a=a -this.b=b}, -aq:function aq(){}, -a1I:function a1I(a){this.a=a}, -Cc:function Cc(a,b){this.a=a -this.$ti=b}, -OW:function OW(a,b){this.a=a -this.b=b -this.c=null}, -DN:function DN(){}, -r6:function r6(){}, -kG:function kG(a,b){this.a=a -this.$ti=b}, -Bo:function Bo(){}, -Bn:function Bn(a,b,c){var _=this -_.c=a -_.d=b -_.b=_.a=null -_.$ti=c}, -Bp:function Bp(a){this.b=this.a=null -this.$ti=a}, -wp:function wp(a,b){this.a=a -this.b=0 -this.$ti=b}, -NN:function NN(a,b){this.a=a -this.b=b -this.c=null}, -xB:function xB(a,b){var _=this -_.a=a -_.d=_.c=_.b=0 -_.$ti=b}, -C9:function C9(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null}, -cF:function cF(){}, -pm:function pm(){}, -Sg:function Sg(){}, -dU:function dU(a,b){this.a=a -this.$ti=b}, -Rg:function Rg(){}, -cl:function cl(a,b){var _=this -_.a=a -_.c=_.b=null -_.$ti=b}, -ef:function ef(a,b,c){var _=this -_.d=a -_.a=b -_.c=_.b=null -_.$ti=c}, -Rf:function Rf(){}, -A7:function A7(a,b,c){var _=this -_.d=null -_.e=a -_.f=b -_.c=_.b=_.a=0 -_.$ti=c}, -a8B:function a8B(a){this.a=a}, -jD:function jD(){}, -kT:function kT(a,b){this.a=a -this.$ti=b}, -pp:function pp(a,b){this.a=a -this.$ti=b}, -Di:function Di(a,b){this.a=a -this.$ti=b}, -d9:function d9(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -Dm:function Dm(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -po:function po(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -td:function td(a,b,c){var _=this -_.d=null -_.e=a -_.f=b -_.c=_.b=_.a=0 -_.$ti=c}, -a8D:function a8D(a){this.a=a}, -a8C:function a8C(a,b){this.a=a -this.b=b}, -C8:function C8(){}, -Dj:function Dj(){}, -Dk:function Dk(){}, -Dl:function Dl(){}, -DO:function DO(){}, -Eo:function Eo(){}, -Es:function Es(){}, -aGE(a,b){var s,r,q,p=null -try{p=JSON.parse(a)}catch(r){s=A.ab(r) -q=A.c5(String(s),null,null) -throw A.c(q)}q=A.ahI(p) -return q}, -ahI(a){var s -if(a==null)return null -if(typeof a!="object")return a -if(Object.getPrototypeOf(a)!==Array.prototype)return new A.OD(a,Object.create(null)) -for(s=0;s=0)return null -return r}return null}, -aE8(a,b,c,d){var s=a?$.av4():$.av3() -if(s==null)return null -if(0===c&&d===b.length)return A.aro(s,b) -return A.aro(s,b.subarray(c,A.er(c,d,b.length,null,null)))}, -aro(a,b){var s,r -try{s=a.decode(b) -return s}catch(r){}return null}, -aol(a,b,c,d,e,f){if(B.f.bE(f,4)!==0)throw A.c(A.c5("Invalid base64 padding, padded length must be multiple of four, is "+f,a,c)) -if(d+e!==f)throw A.c(A.c5("Invalid base64 padding, '=' not at the end",a,b)) -if(e>2)throw A.c(A.c5("Invalid base64 padding, more than two '=' characters",a,b))}, -apB(a,b,c){return new A.xk(a,b)}, -aFM(a){return a.i0()}, -aEC(a,b){var s=b==null?A.ate():b -return new A.OF(a,[],s)}, -um(a,b,c){var s,r=new A.by("") -A.aED(a,r,b,c) -s=r.a -return s.charCodeAt(0)==0?s:s}, -aED(a,b,c,d){var s,r -if(d==null)s=A.aEC(b,c) -else{r=c==null?A.ate():c -s=new A.adF(d,0,b,[],r)}s.mh(a)}, -akD(a){return A.asM(function(){var s=a -var r=0,q=1,p,o,n,m,l,k -return function $async$akD(b,c){if(b===1){p=c -r=q}while(true)switch(r){case 0:k=A.er(0,null,s.length,null,null) -o=0,n=0,m=0 -case 2:if(!(m>>0!==0?255:q}return o}, -OD:function OD(a,b){this.a=a -this.b=b -this.c=null}, -adC:function adC(a){this.a=a}, -OE:function OE(a){this.a=a}, -aaw:function aaw(){}, -aav:function aav(){}, -Fg:function Fg(){}, -Fh:function Fh(){}, -Vc:function Vc(){}, -Vd:function Vd(){}, -MX:function MX(a,b){this.a=a -this.b=b -this.c=0}, -FG:function FG(){}, -na:function na(){}, -jO:function jO(){}, -nk:function nk(){}, -xk:function xk(a,b){this.a=a -this.b=b}, -HY:function HY(a,b){this.a=a -this.b=b}, -HX:function HX(){}, -I_:function I_(a,b){this.a=a -this.b=b}, -HZ:function HZ(a){this.a=a}, -adG:function adG(){}, -adH:function adH(a,b){this.a=a -this.b=b}, -adD:function adD(){}, -adE:function adE(a,b){this.a=a -this.b=b}, -OF:function OF(a,b,c){this.c=a -this.a=b -this.b=c}, -adF:function adF(a,b,c,d,e){var _=this -_.f=a -_.a$=b -_.c=c -_.a=d -_.b=e}, -Mb:function Mb(){}, -Mc:function Mc(){}, -ahb:function ahb(a){this.b=this.a=0 -this.c=a}, -AT:function AT(a){this.a=a}, -aha:function aha(a){this.a=a -this.b=16 -this.c=0}, -SF:function SF(){}, -aI2(a){return A.mL(a)}, -apj(a,b){return A.aCF(a,b,null)}, -aB1(a){var s=typeof a=="number"||typeof a=="string" -if(s)throw A.c(A.fR(a,u.e,null))}, -fJ(a,b){var s=A.aqm(a,b) -if(s!=null)return s -throw A.c(A.c5(a,null,null))}, -atk(a){var s=A.aql(a) -if(s!=null)return s -throw A.c(A.c5("Invalid double",a,null))}, -aB_(a){if(a instanceof A.cb)return a.i(0) -return"Instance of '"+A.a40(a)+"'"}, -aB0(a,b){a=A.c(a) -a.stack=b.i(0) -throw a -throw A.c("unreachable")}, -aoJ(a,b){var s -if(Math.abs(a)<=864e13)s=!1 -else s=!0 -if(s)A.K(A.b5("DateTime is outside valid range: "+a,null)) -A.eC(b,"isUtc",t.y) -return new A.df(a,b)}, -b7(a,b,c,d){var s,r=c?J.qU(a,d):J.HV(a,d) -if(a!==0&&b!=null)for(s=0;s")) -for(s=J.av(a);s.t();)r.push(s.gH(s)) -if(b)return r -return J.a0C(r)}, -ap(a,b,c){var s -if(b)return A.apJ(a,c) -s=J.a0C(A.apJ(a,c)) -return s}, -apJ(a,b){var s,r -if(Array.isArray(a))return A.b(a.slice(0),b.j("o<0>")) -s=A.b([],b.j("o<0>")) -for(r=J.av(a);r.t();)s.push(r.gH(r)) -return s}, -aBU(a,b,c){var s,r=J.qU(a,c) -for(s=0;s0||c>>4]&1<<(o&15))!==0)p+=A.fb(o) -else p=d&&o===32?p+"+":p+"%"+n[o>>>4&15]+n[o&15]}return p.charCodeAt(0)==0?p:p}, -Ac(){var s,r -if($.avA())return A.aA(new Error()) -try{throw A.c("")}catch(r){s=A.aA(r) -return s}}, -aAi(a,b){return J.v3(a,b)}, -aAs(a,b){var s -if(Math.abs(a)<=864e13)s=!1 -else s=!0 -if(s)A.K(A.b5("DateTime is outside valid range: "+a,null)) -A.eC(b,"isUtc",t.y) -return new A.df(a,b)}, -aAt(a){var s=Math.abs(a),r=a<0?"-":"" -if(s>=1000)return""+a -if(s>=100)return r+"0"+s -if(s>=10)return r+"00"+s -return r+"000"+s}, -aAu(a){if(a>=100)return""+a -if(a>=10)return"0"+a -return"00"+a}, -Gz(a){if(a>=10)return""+a -return"0"+a}, -bR(a,b,c){return new A.aP(a+1000*b+6e7*c)}, -nl(a){if(typeof a=="number"||A.mJ(a)||a==null)return J.bX(a) -if(typeof a=="string")return JSON.stringify(a) -return A.aB_(a)}, -la(a){return new A.mU(a)}, -b5(a,b){return new A.fQ(!1,null,b,a)}, -fR(a,b,c){return new A.fQ(!0,a,b,c)}, -fS(a,b){return a}, -dx(a){var s=null -return new A.rp(s,s,!1,s,s,a)}, -a49(a,b){return new A.rp(null,null,!0,a,b,"Value not in range")}, -bt(a,b,c,d,e){return new A.rp(b,c,!0,a,d,"Invalid value")}, -akW(a,b,c,d){if(ac)throw A.c(A.bt(a,b,c,d,null)) -return a}, -aqt(a,b,c,d){if(d==null)d=J.bP(b) -if(0>a||a>=d)throw A.c(A.bY(a,b,c==null?"index":c,null,d)) -return a}, -er(a,b,c,d,e){if(0>a||a>c)throw A.c(A.bt(a,0,c,d==null?"start":d,null)) -if(b!=null){if(a>b||b>c)throw A.c(A.bt(b,a,c,e==null?"end":e,null)) -return b}return c}, -cZ(a,b){if(a<0)throw A.c(A.bt(a,0,null,b,null)) -return a}, -bY(a,b,c,d,e){var s=e==null?J.bP(b):e -return new A.HN(s,!0,a,c,"Index out of range")}, -N(a){return new A.M6(a)}, -c_(a){return new A.tG(a)}, -X(a){return new A.kx(a)}, -bw(a){return new A.Go(a)}, -cv(a){return new A.NZ(a)}, -c5(a,b,c){return new A.h0(a,b,c)}, -akF(a,b,c,d,e){return new A.n5(a,b.j("@<0>").az(c).az(d).az(e).j("n5<1,2,3,4>"))}, -a3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1){var s -if(B.a===c)return A.ar3(J.r(a),J.r(b),$.dp()) -if(B.a===d){s=J.r(a) -b=J.r(b) -c=J.r(c) -return A.dA(A.v(A.v(A.v($.dp(),s),b),c))}if(B.a===e)return A.aDG(J.r(a),J.r(b),J.r(c),J.r(d),$.dp()) -if(B.a===f){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -return A.dA(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e))}if(B.a===g){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f))}if(B.a===h){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g))}if(B.a===i){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h))}if(B.a===j){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i))}if(B.a===k){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j))}if(B.a===l){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k))}if(B.a===m){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l))}if(B.a===n){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m))}if(B.a===o){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n))}if(B.a===p){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -o=J.r(o) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o))}if(B.a===q){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -o=J.r(o) -p=J.r(p) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p))}if(B.a===r){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -o=J.r(o) -p=J.r(p) -q=J.r(q) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q))}if(B.a===a0){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -o=J.r(o) -p=J.r(p) -q=J.r(q) -r=J.r(r) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r))}if(B.a===a1){s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -o=J.r(o) -p=J.r(p) -q=J.r(q) -r=J.r(r) -a0=J.r(a0) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0))}s=J.r(a) -b=J.r(b) -c=J.r(c) -d=J.r(d) -e=J.r(e) -f=J.r(f) -g=J.r(g) -h=J.r(h) -i=J.r(i) -j=J.r(j) -k=J.r(k) -l=J.r(l) -m=J.r(m) -n=J.r(n) -o=J.r(o) -p=J.r(p) -q=J.r(q) -r=J.r(r) -a0=J.r(a0) -a1=J.r(a1) -return A.dA(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v(A.v($.dp(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0),a1))}, -f9(a){var s,r=$.dp() -for(s=J.av(a);s.t();)r=A.v(r,J.r(s.gH(s))) -return A.dA(r)}, -fK(a){A.au4(A.e(a))}, -aDx(){$.TH() -return new A.Ad()}, -aFA(a,b){return 65536+((a&1023)<<10)+(b&1023)}, -p_(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=null -a5=a3.length -s=a4+5 -if(a5>=s){r=((B.b.ac(a3,a4+4)^58)*3|B.b.ac(a3,a4)^100|B.b.ac(a3,a4+1)^97|B.b.ac(a3,a4+2)^116|B.b.ac(a3,a4+3)^97)>>>0 -if(r===0)return A.aak(a4>0||a5=14)q[7]=a5 -o=q[1] -if(o>=a4)if(A.asW(a3,a4,o,20,q)===20)q[7]=o -n=q[2]+1 -m=q[3] -l=q[4] -k=q[5] -j=q[6] -if(jo+3){h=a2 -i=!1}else{p=m>a4 -if(p&&m+1===l){h=a2 -i=!1}else{if(!(kl+2&&B.b.cQ(a3,"/..",k-3) -else g=!0 -if(g){h=a2 -i=!1}else{if(o===a4+4)if(B.b.cQ(a3,"file",a4)){if(n<=a4){if(!B.b.cQ(a3,"/",l)){f="file:///" -r=3}else{f="file://" -r=2}a3=f+B.b.N(a3,l,a5) -o-=a4 -s=r-a4 -k+=s -j+=s -a5=a3.length -a4=0 -n=7 -m=7 -l=7}else if(l===k)if(a4===0&&!0){a3=B.b.iR(a3,l,k,"/");++k;++j;++a5}else{a3=B.b.N(a3,a4,l)+"/"+B.b.N(a3,k,a5) -o-=a4 -n-=a4 -m-=a4 -l-=a4 -s=1-a4 -k+=s -j+=s -a5=a3.length -a4=0}h="file"}else if(B.b.cQ(a3,"http",a4)){if(p&&m+3===l&&B.b.cQ(a3,"80",m+1))if(a4===0&&!0){a3=B.b.iR(a3,m,l,"") -l-=3 -k-=3 -j-=3 -a5-=3}else{a3=B.b.N(a3,a4,m)+B.b.N(a3,l,a5) -o-=a4 -n-=a4 -m-=a4 -s=3+a4 -l-=s -k-=s -j-=s -a5=a3.length -a4=0}h="http"}else h=a2 -else if(o===s&&B.b.cQ(a3,"https",a4)){if(p&&m+4===l&&B.b.cQ(a3,"443",m+1))if(a4===0&&!0){a3=B.b.iR(a3,m,l,"") -l-=4 -k-=4 -j-=4 -a5-=3}else{a3=B.b.N(a3,a4,m)+B.b.N(a3,l,a5) -o-=a4 -n-=a4 -m-=a4 -s=4+a4 -l-=s -k-=s -j-=s -a5=a3.length -a4=0}h="https"}else h=a2 -i=!0}}}else h=a2 -if(i){if(a4>0||a5a4)h=A.aFf(a3,a4,o) -else{if(o===a4)A.uR(a3,a4,"Invalid empty scheme") -h=""}if(n>a4){e=o+3 -d=e9)k.$2("invalid character",s)}else{if(q===3)k.$2(m,s) -o=A.fJ(B.b.N(a,r,s),null) -if(o>255)k.$2(l,r) -n=q+1 -j[q]=o -r=s+1 -q=n}}if(q!==3)k.$2(m,c) -o=A.fJ(B.b.N(a,r,c),null) -if(o>255)k.$2(l,r) -j[q]=o -return j}, -arn(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=new A.aam(a),c=new A.aan(d,a) -if(a.length<2)d.$2("address is too short",e) -s=A.b([],t.t) -for(r=b,q=r,p=!1,o=!1;r>>0) -s.push((k[2]<<8|k[3])>>>0)}if(p){if(s.length>7)d.$2("an address with a wildcard must have less than 7 parts",e)}else if(s.length!==8)d.$2("an address without a wildcard must contain exactly 8 parts",e) -j=new Uint8Array(16) -for(l=s.length,i=9-l,r=0,h=0;ro)A.K(A.bt(0,0,p.gp(q),null,null)) -if(A.amv(q,"/",0)){s=A.N("Illegal path character "+A.e(q)) -throw A.c(s)}}}, -as5(a,b,c){var s,r,q,p -for(s=A.eP(a,c,null,A.af(a).c),s=new A.cL(s,s.gp(s)),r=A.n(s).c;s.t();){q=s.d -if(q==null)q=r.a(q) -p=A.bZ('["*/:<>?\\\\|]',!0) -if(A.amv(q,p,0)){s=A.N("Illegal character in path: "+q) -throw A.c(s)}}}, -aFc(a,b){var s -if(!(65<=a&&a<=90))s=97<=a&&a<=122 -else s=!0 -if(s)return -s=A.N("Illegal drive letter "+A.aDA(a)) -throw A.c(s)}, -alE(a,b){if(a!=null&&a===A.as6(b))return null -return a}, -asa(a,b,c,d){var s,r,q,p,o,n -if(a==null)return null -if(b===c)return"" -if(B.b.ak(a,b)===91){s=c-1 -if(B.b.ak(a,s)!==93)A.uR(a,b,"Missing end `]` to match `[` in host") -r=b+1 -q=A.aFd(a,r,s) -if(q=b&&q=b&&s>>4]&1<<(p&15))!==0){if(q&&65<=p&&90>=p){if(i==null)i=new A.by("") -if(r>>4]&1<<(o&15))!==0){if(p&&65<=o&&90>=o){if(q==null)q=new A.by("") -if(r>>4]&1<<(o&15))!==0)A.uR(a,s,"Invalid character") -else{if((o&64512)===55296&&s+1>>4]&1<<(q&15))!==0))A.uR(a,s,"Illegal scheme character") -if(65<=q&&q<=90)r=!0}a=B.b.N(a,b,c) -return A.aFa(r?a.toLowerCase():a)}, -aFa(a){if(a==="http")return"http" -if(a==="file")return"file" -if(a==="https")return"https" -if(a==="package")return"package" -return a}, -asb(a,b,c){if(a==null)return"" -return A.DS(a,b,c,B.EP,!1)}, -alD(a,b,c,d,e,f){var s,r=e==="file",q=r||f -if(a==null)return r?"/":"" -else s=A.DS(a,b,c,B.nL,!0) -if(s.length===0){if(r)return"/"}else if(q&&!B.b.bl(s,"/"))s="/"+s -return A.ase(s,e,f)}, -ase(a,b,c){var s=b.length===0 -if(s&&!c&&!B.b.bl(a,"/"))return A.alH(a,!s||c) -return A.kV(a)}, -alF(a,b,c,d){var s,r={} -if(a!=null){if(d!=null)throw A.c(A.b5("Both query and queryParameters specified",null)) -return A.DS(a,b,c,B.ej,!0)}if(d==null)return null -s=new A.by("") -r.a="" -d.Y(0,new A.ah2(new A.ah3(r,s))) -r=s.a -return r.charCodeAt(0)==0?r:r}, -as9(a,b,c){if(a==null)return null -return A.DS(a,b,c,B.ej,!0)}, -alG(a,b,c){var s,r,q,p,o,n=b+2 -if(n>=a.length)return"%" -s=B.b.ak(a,b+1) -r=B.b.ak(a,n) -q=A.aiX(s) -p=A.aiX(r) -if(q<0||p<0)return"%" -o=q*16+p -if(o<127&&(B.cv[B.f.h9(o,4)]&1<<(o&15))!==0)return A.fb(c&&65<=o&&90>=o?(o|32)>>>0:o) -if(s>=97||r>=97)return B.b.N(a,b,b+3).toUpperCase() -return null}, -alC(a){var s,r,q,p,o,n="0123456789ABCDEF" -if(a<128){s=new Uint8Array(3) -s[0]=37 -s[1]=B.b.ac(n,a>>>4) -s[2]=B.b.ac(n,a&15)}else{if(a>2047)if(a>65535){r=240 -q=4}else{r=224 -q=3}else{r=192 -q=2}s=new Uint8Array(3*q) -for(p=0;--q,q>=0;r=128){o=B.f.Ab(a,6*q)&63|r -s[p]=37 -s[p+1]=B.b.ac(n,o>>>4) -s[p+2]=B.b.ac(n,o&15) -p+=3}}return A.th(s,0,null)}, -DS(a,b,c,d,e){var s=A.asd(a,b,c,d,e) -return s==null?B.b.N(a,b,c):s}, -asd(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i=null -for(s=!e,r=b,q=r,p=i;r>>4]&1<<(o&15))!==0)++r -else{if(o===37){n=A.alG(a,r,!1) -if(n==null){r+=3 -continue}if("%"===n){n="%25" -m=1}else m=3}else if(s&&o<=93&&(B.nw[o>>>4]&1<<(o&15))!==0){A.uR(a,r,"Invalid character") -m=i -n=m}else{if((o&64512)===55296){l=r+1 -if(l=2&&A.as8(B.b.ac(a,0)))for(s=1;s127||(B.nA[r>>>4]&1<<(r&15))===0)break}return a}, -aFh(a,b){if(a.CY("package")&&a.c==null)return A.asY(b,0,b.length) -return-1}, -asg(a){var s,r,q,p=a.gkN(),o=p.length -if(o>0&&J.bP(p[0])===2&&J.ang(p[0],1)===58){A.aFc(J.ang(p[0],0),!1) -A.as5(p,!1,1) -s=!0}else{A.as5(p,!1,0) -s=!1}r=a.gvD()&&!s?""+"\\":"" -if(a.gnD()){q=a.giz(a) -if(q.length!==0)r=r+"\\"+q+"\\"}r=A.Ls(r,p,"\\") -o=s&&o===1?r+"\\":r -return o.charCodeAt(0)==0?o:o}, -aFe(a,b){var s,r,q -for(s=0,r=0;r<2;++r){q=B.b.ac(a,b+r) -if(48<=q&&q<=57)s=s*16+q-48 -else{q|=32 -if(97<=q&&q<=102)s=s*16+q-87 -else throw A.c(A.b5("Invalid URL encoding",null))}}return s}, -alI(a,b,c,d,e){var s,r,q,p,o=b -while(!0){if(!(o127)throw A.c(A.b5("Illegal percent encoding in URI",null)) -if(r===37){if(o+3>q)throw A.c(A.b5("Truncated URI",null)) -p.push(A.aFe(a,o+1)) -o+=2}else p.push(r)}}return d.dr(0,p)}, -as8(a){var s=a|32 -return 97<=s&&s<=122}, -aE3(a){if(!a.CY("data"))throw A.c(A.fR(a,"uri","Scheme must be 'data'")) -if(a.gnD())throw A.c(A.fR(a,"uri","Data uri must not have authority")) -if(a.gvE())throw A.c(A.fR(a,"uri","Data uri must not have a fragment part")) -if(!a.glU())return A.aak(a.ge4(a),0,a) -return A.aak(a.i(0),5,a)}, -aak(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.b([b-1],t.t) -for(s=a.length,r=b,q=-1,p=null;rb)throw A.c(A.c5(k,a,r)) -for(;p!==44;){j.push(r);++r -for(o=-1;r=0)j.push(o) -else{n=B.c.gR(j) -if(p!==44||r!==n+7||!B.b.cQ(a,"base64",n+1))throw A.c(A.c5("Expecting '='",a,r)) -break}}j.push(r) -m=r+1 -if((j.length&1)===1)a=B.wN.aes(0,a,m,s) -else{l=A.asd(a,m,s,B.ej,!0) -if(l!=null)a=B.b.iR(a,m,s,l)}return new A.aaj(a,j,c)}, -aFH(){var s,r,q,p,o,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=",m=".",l=":",k="/",j="?",i="#",h=J.aks(22,t.H3) -for(s=0;s<22;++s)h[s]=new Uint8Array(96) -r=new A.ahM(h) -q=new A.ahN() -p=new A.ahO() -o=r.$2(0,225) -q.$3(o,n,1) -q.$3(o,m,14) -q.$3(o,l,34) -q.$3(o,k,3) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(14,225) -q.$3(o,n,1) -q.$3(o,m,15) -q.$3(o,l,34) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(15,225) -q.$3(o,n,1) -q.$3(o,"%",225) -q.$3(o,l,34) -q.$3(o,k,9) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(1,225) -q.$3(o,n,1) -q.$3(o,l,34) -q.$3(o,k,10) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(2,235) -q.$3(o,n,139) -q.$3(o,k,131) -q.$3(o,m,146) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(3,235) -q.$3(o,n,11) -q.$3(o,k,68) -q.$3(o,m,18) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(4,229) -q.$3(o,n,5) -p.$3(o,"AZ",229) -q.$3(o,l,102) -q.$3(o,"@",68) -q.$3(o,"[",232) -q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(5,229) -q.$3(o,n,5) -p.$3(o,"AZ",229) -q.$3(o,l,102) -q.$3(o,"@",68) -q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(6,231) -p.$3(o,"19",7) -q.$3(o,"@",68) -q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(7,231) -p.$3(o,"09",7) -q.$3(o,"@",68) -q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) -q.$3(r.$2(8,8),"]",5) -o=r.$2(9,235) -q.$3(o,n,11) -q.$3(o,m,16) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(16,235) -q.$3(o,n,11) -q.$3(o,m,17) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(17,235) -q.$3(o,n,11) -q.$3(o,k,9) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(10,235) -q.$3(o,n,11) -q.$3(o,m,18) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(18,235) -q.$3(o,n,11) -q.$3(o,m,19) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(19,235) -q.$3(o,n,11) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(11,235) -q.$3(o,n,11) -q.$3(o,k,10) -q.$3(o,j,172) -q.$3(o,i,205) -o=r.$2(12,236) -q.$3(o,n,12) -q.$3(o,j,12) -q.$3(o,i,205) -o=r.$2(13,237) -q.$3(o,n,13) -q.$3(o,j,13) -p.$3(r.$2(20,245),"az",21) -o=r.$2(21,245) -p.$3(o,"az",21) -p.$3(o,"09",21) -q.$3(o,"+-.",21) -return h}, -asW(a,b,c,d,e){var s,r,q,p,o=$.avU() -for(s=b;s95?31:q] -d=p&31 -e[p>>>5]=s}return d}, -arX(a){if(a.b===7&&B.b.bl(a.a,"package")&&a.c<=0)return A.asY(a.a,a.e,a.f) -return-1}, -asY(a,b,c){var s,r,q -for(s=b,r=0;s")) -return t.Q.a(s.gbX(s))}, -aAR(a){return A.cz(a,null)}, -wx(a){var s,r,q="element tag unavailable" -try{s=J.j(a) -s.gPw(a) -q=s.gPw(a)}catch(r){}return q}, -cz(a,b){return document.createElement(a)}, -aBe(a,b,c){var s=new FontFace(a,b,A.Ts(c)) -return s}, -aBv(a,b){var s,r=new A.a4($.a5,t._T),q=new A.aI(r,t.rj),p=new XMLHttpRequest() -B.fR.afc(p,"GET",a,!0) -p.responseType=b -s=t._p -A.bz(p,"load",new A.a_X(p,q),!1,s) -A.bz(p,"error",q.gLZ(),!1,s) -p.send() -return r}, -apr(){var s=document.createElement("img") -return s}, -a0w(){var s,r=null,q=document.createElement("input"),p=t.Zb.a(q) -if(r!=null)try{p.type=r}catch(s){}return p}, -bz(a,b,c,d,e){var s=c==null?null:A.am4(new A.acA(c),t.I3) -s=new A.Bz(a,b,s,!1,e.j("Bz<0>")) -s.Ax() -return s}, -arH(a){var s=document.createElement("a"),r=new A.ag0(s,window.location) -r=new A.ug(r) -r.Y5(a) -return r}, -aEz(a,b,c,d){return!0}, -aEA(a,b,c,d){var s,r=d.a,q=r.a -q.href=c -s=q.hostname -r=r.b -if(!(s==r.hostname&&q.port===r.port&&q.protocol===r.protocol))if(s==="")if(q.port===""){r=q.protocol -r=r===":"||r===""}else r=!1 -else r=!1 -else r=!0 -return r}, -arZ(){var s=t.N,r=A.k7(B.nM,s),q=A.b(["TEMPLATE"],t.s) -s=new A.RB(r,A.j0(s),A.j0(s),A.j0(s),null) -s.Y8(null,new A.az(B.nM,new A.agu(),t.a4),q,null) -return s}, -ahJ(a){var s -if("postMessage" in a){s=A.aEq(a) -return s}else return a}, -asr(a){if(t.VF.b(a))return a -return new A.im([],[]).jg(a,!0)}, -aEq(a){if(a===window)return a -else return new A.ac9(a)}, -am4(a,b){var s=$.a5 -if(s===B.ae)return a -return s.Bh(a,b)}, -aGV(a,b,c){var s=$.a5 -if(s===B.ae)return a -return s.a9I(a,b,c)}, -ad:function ad(){}, -U8:function U8(){}, -F0:function F0(){}, -F6:function F6(){}, -pU:function pU(){}, -mX:function mX(){}, -Fl:function Fl(){}, -fT:function fT(){}, -mY:function mY(){}, -UX:function UX(){}, -Fw:function Fw(){}, -n2:function n2(){}, -FB:function FB(){}, -iI:function iI(){}, -Gn:function Gn(){}, -w4:function w4(){}, -We:function We(){}, -qb:function qb(){}, -Wf:function Wf(){}, -c4:function c4(){}, -qc:function qc(){}, -Wg:function Wg(){}, -qd:function qd(){}, -hC:function hC(){}, -jP:function jP(){}, -Wh:function Wh(){}, -Wi:function Wi(){}, -Ws:function Ws(){}, -wj:function wj(){}, -iO:function iO(){}, -Xv:function Xv(){}, -nh:function nh(){}, -wn:function wn(){}, -wo:function wo(){}, -GQ:function GQ(){}, -Xw:function Xw(){}, -N2:function N2(a,b){this.a=a -this.b=b}, -ub:function ub(a,b){this.a=a -this.$ti=b}, -am:function am(){}, -Y6:function Y6(){}, -GT:function GT(){}, -hG:function hG(){}, -YE:function YE(a){this.a=a}, -YF:function YF(a){this.a=a}, -ah:function ah(){}, -a2:function a2(){}, -dK:function dK(){}, -H6:function H6(){}, -YO:function YO(){}, -H9:function H9(){}, -fq:function fq(){}, -qw:function qw(){}, -qx:function qx(){}, -YQ:function YQ(){}, -ny:function ny(){}, -jW:function jW(){}, -hJ:function hJ(){}, -a_L:function a_L(){}, -nF:function nF(){}, -wZ:function wZ(){}, -lt:function lt(){}, -a_X:function a_X(a,b){this.a=a -this.b=b}, -x0:function x0(){}, -HH:function HH(){}, -x7:function x7(){}, -nK:function nK(){}, -nP:function nP(){}, -k4:function k4(){}, -xr:function xr(){}, -xw:function xw(){}, -a1r:function a1r(){}, -Ig:function Ig(){}, -a1S:function a1S(){}, -a1T:function a1T(){}, -Ik:function Ik(){}, -r8:function r8(){}, -Im:function Im(){}, -y_:function y_(){}, -lK:function lK(){}, -In:function In(){}, -a21:function a21(a){this.a=a}, -a22:function a22(a){this.a=a}, -Io:function Io(){}, -Ip:function Ip(){}, -a23:function a23(a){this.a=a}, -a24:function a24(a){this.a=a}, -y0:function y0(){}, -hT:function hT(){}, -Iq:function Iq(){}, -eK:function eK(){}, -kc:function kc(){}, -a2p:function a2p(a){this.a=a}, -y4:function y4(){}, -a2B:function a2B(){}, -dE:function dE(a){this.a=a}, -a6:function a6(){}, -ra:function ra(){}, -a2K:function a2K(){}, -IK:function IK(){}, -IL:function IL(){}, -IS:function IS(){}, -a2X:function a2X(){}, -yw:function yw(){}, -Jd:function Jd(){}, -a3h:function a3h(){}, -Jg:function Jg(){}, -j8:function j8(){}, -a3m:function a3m(){}, -i_:function i_(){}, -Jw:function Jw(){}, -kj:function kj(){}, -fy:function fy(){}, -JI:function JI(){}, -Kv:function Kv(){}, -a5R:function a5R(a){this.a=a}, -a5S:function a5S(a){this.a=a}, -a6d:function a6d(){}, -zD:function zD(){}, -KK:function KK(){}, -KS:function KS(){}, -Le:function Le(){}, -i9:function i9(){}, -Li:function Li(){}, -ib:function ib(){}, -Lo:function Lo(){}, -ic:function ic(){}, -Lp:function Lp(){}, -a8A:function a8A(){}, -Ae:function Ae(){}, -a8N:function a8N(a){this.a=a}, -a8O:function a8O(a){this.a=a}, -Ag:function Ag(){}, -fE:function fE(){}, -Am:function Am(){}, -LA:function LA(){}, -LB:function LB(){}, -tq:function tq(){}, -ts:function ts(){}, -LK:function LK(){}, -ii:function ii(){}, -fG:function fG(){}, -LR:function LR(){}, -LS:function LS(){}, -a9V:function a9V(){}, -ij:function ij(){}, -mr:function mr(){}, -AM:function AM(){}, -aa6:function aa6(){}, -oY:function oY(){}, -aao:function aao(){}, -aaA:function aaA(){}, -p1:function p1(){}, -p3:function p3(){}, -jx:function jx(){}, -tM:function tM(){}, -Nj:function Nj(){}, -Bm:function Bm(){}, -Oi:function Oi(){}, -Cm:function Cm(){}, -Re:function Re(){}, -Rs:function Rs(){}, -MH:function MH(){}, -Bw:function Bw(a){this.a=a}, -akk:function akk(a,b){this.a=a -this.$ti=b}, -mv:function mv(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -p9:function p9(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -Bz:function Bz(a,b,c,d,e){var _=this -_.a=0 -_.b=a -_.c=b -_.d=c -_.e=d -_.$ti=e}, -acA:function acA(a){this.a=a}, -acB:function acB(a){this.a=a}, -ug:function ug(a){this.a=a}, -cB:function cB(){}, -yf:function yf(a){this.a=a}, -a2H:function a2H(a){this.a=a}, -a2G:function a2G(a,b,c){this.a=a -this.b=b -this.c=c}, -Dd:function Dd(){}, -agd:function agd(){}, -age:function age(){}, -RB:function RB(a,b,c,d,e){var _=this -_.e=a -_.a=b -_.b=c -_.c=d -_.d=e}, -agu:function agu(){}, -Rt:function Rt(){}, -wJ:function wJ(a,b){var _=this -_.a=a -_.b=b -_.c=-1 -_.d=null}, -Gp:function Gp(){}, -ac9:function ac9(a){this.a=a}, -ag0:function ag0(a,b){this.a=a -this.b=b}, -Si:function Si(a){this.a=a -this.b=0}, -ahd:function ahd(a){this.a=a}, -Nk:function Nk(){}, -NJ:function NJ(){}, -NK:function NK(){}, -NL:function NL(){}, -NM:function NM(){}, -O2:function O2(){}, -O3:function O3(){}, -Oo:function Oo(){}, -Op:function Op(){}, -P2:function P2(){}, -P3:function P3(){}, -P4:function P4(){}, -P5:function P5(){}, -Pg:function Pg(){}, -Ph:function Ph(){}, -Pz:function Pz(){}, -PA:function PA(){}, -QF:function QF(){}, -Dg:function Dg(){}, -Dh:function Dh(){}, -Rc:function Rc(){}, -Rd:function Rd(){}, -Rj:function Rj(){}, -RK:function RK(){}, -RL:function RL(){}, -DD:function DD(){}, -DE:function DE(){}, -RW:function RW(){}, -RX:function RX(){}, -Ss:function Ss(){}, -St:function St(){}, -SC:function SC(){}, -SD:function SD(){}, -SM:function SM(){}, -SN:function SN(){}, -T_:function T_(){}, -T0:function T0(){}, -T1:function T1(){}, -T2:function T2(){}, -asq(a){var s,r -if(a==null)return a -if(typeof a=="string"||typeof a=="number"||A.mJ(a))return a -if(A.atJ(a))return A.hv(a) -if(Array.isArray(a)){s=[] -for(r=0;rc)throw A.c(A.bt(a,0,c,s,s)) -if(bc)throw A.c(A.bt(b,a,c,s,s))}, -aFw(a){return a}, -alP(a,b,c){var s -try{if(Object.isExtensible(a)&&!Object.prototype.hasOwnProperty.call(a,b)){Object.defineProperty(a,b,{value:c}) -return!0}}catch(s){}return!1}, -asC(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b] -return null}, -Tj(a){if(a==null||typeof a=="string"||typeof a=="number"||A.mJ(a))return a -if(a instanceof A.k2)return a.a -if(A.atH(a))return a -if(t.e2.b(a))return a -if(a instanceof A.df)return A.dO(a) -if(t._8.b(a))return A.asB(a,"$dart_jsFunction",new A.ahK()) -return A.asB(a,"_$dart_jsObject",new A.ahL($.amR()))}, -asB(a,b,c){var s=A.asC(a,b) -if(s==null){s=c.$1(a) -A.alP(a,b,s)}return s}, -alM(a){if(a==null||typeof a=="string"||typeof a=="number"||typeof a=="boolean")return a -else if(a instanceof Object&&A.atH(a))return a -else if(a instanceof Object&&t.e2.b(a))return a -else if(a instanceof Date)return A.aoJ(a.getTime(),!1) -else if(a.constructor===$.amR())return a.o -else return A.aiu(a)}, -aiu(a){if(typeof a=="function")return A.alS(a,$.TF(),new A.aiv()) -if(a instanceof Array)return A.alS(a,$.amN(),new A.aiw()) -return A.alS(a,$.amN(),new A.aix())}, -alS(a,b,c){var s=A.asC(a,b) -if(s==null||!(a instanceof Object)){s=c.$1(a) -A.alP(a,b,s)}return s}, -aFC(a){var s,r=a.$dart_jsFunction -if(r!=null)return r -s=function(b,c){return function(){return b(c,Array.prototype.slice.apply(arguments))}}(A.aFt,a) -s[$.TF()]=a -a.$dart_jsFunction=s -return s}, -aFt(a,b){return A.apj(a,b)}, -fi(a){if(typeof a=="function")return a -else return A.aFC(a)}, -a0O:function a0O(a){this.a=a}, -ahK:function ahK(){}, -ahL:function ahL(a){this.a=a}, -aiv:function aiv(){}, -aiw:function aiw(){}, -aix:function aix(){}, -k2:function k2(a){this.a=a}, -qW:function qW(a){this.a=a}, -nU:function nU(a,b){this.a=a -this.$ti=b}, -ul:function ul(){}, -ame(a,b){return b in a}, -bE(a,b,c){return a[b].apply(a,c)}, -aFu(a,b){return a[b]()}, -fL(a,b){var s=new A.a4($.a5,b.j("a4<0>")),r=new A.aI(s,b.j("aI<0>")) -a.then(A.fj(new A.ajl(r),1),A.fj(new A.ajm(r),1)) -return s}, -IG:function IG(a){this.a=a}, -ajl:function ajl(a){this.a=a}, -ajm:function ajm(a){this.a=a}, -atU(a,b){return Math.max(A.da(a),A.da(b))}, -atL(a){return Math.log(a)}, -adA:function adA(){}, -fx:function fx(a,b,c){this.a=a -this.b=b -this.$ti=c}, -ar1(){var s=t.ry.a(B.b3.ip(document,"http://www.w3.org/2000/svg","svg")) -s.setAttribute("version","1.1") -return t.OM.a(s)}, -q4:function q4(){}, -qg:function qg(){}, -qs:function qs(){}, -qt:function qt(){}, -qu:function qu(){}, -qv:function qv(){}, -qy:function qy(){}, -h1:function h1(){}, -e1:function e1(){}, -k6:function k6(){}, -I9:function I9(){}, -kf:function kf(){}, -IJ:function IJ(){}, -rg:function rg(){}, -a3H:function a3H(){}, -rB:function rB(){}, -Lu:function Lu(){}, -aH:function aH(){}, -oM:function oM(){}, -kC:function kC(){}, -M1:function M1(){}, -OL:function OL(){}, -OM:function OM(){}, -Pn:function Pn(){}, -Po:function Po(){}, -Rn:function Rn(){}, -Ro:function Ro(){}, -S0:function S0(){}, -S1:function S1(){}, -GV:function GV(){}, -aCm(){if($.aJ())return new A.n7() -else return new A.GY()}, -aA_(a,b){var s='"recorder" must not already be associated with another Canvas.' -if($.aJ()){if(a.gO4())A.K(A.b5(s,null)) -if(b==null)b=B.l4 -return new A.Vo(t.wW.a(a).lz(0,b))}else{t.X8.a(a) -if(a.c)A.K(A.b5(s,null)) -return new A.a8X(a.lz(0,b==null?B.l4:b))}}, -aD4(){var s,r,q -if($.aJ()){s=new A.Kr(A.b([],t.k5),B.F) -r=new A.a1i(s) -r.b=s -return r}else{s=A.b([],t.wc) -r=$.a8Z -q=A.b([],t.g) -r=new A.fr(r!=null&&r.c===B.ak?r:null) -$.iw.push(r) -r=new A.yE(q,r,B.aU) -r.f=A.dM() -s.push(r) -return new A.a8Y(s)}}, -yj(a,b,c){if(b==null)if(a==null)return null -else return a.W(0,1-c) -else if(a==null)return b.W(0,c) -else return new A.m(A.jH(a.a,b.a,c),A.jH(a.b,b.b,c))}, -aDi(a,b,c){if(b==null)if(a==null)return null -else return a.W(0,1-c) -else if(a==null)return b.W(0,c) -else return new A.L(A.jH(a.a,b.a,c),A.jH(a.b,b.b,c))}, -lY(a,b){var s=a.a,r=b*2/2,q=a.b -return new A.w(s-r,q-r,s+r,q+r)}, -aqu(a,b,c){var s=a.a,r=c/2,q=a.b,p=b/2 -return new A.w(s-r,q-p,s+r,q+p)}, -akX(a,b){var s=a.a,r=b.a,q=a.b,p=b.b -return new A.w(Math.min(s,r),Math.min(q,p),Math.max(s,r),Math.max(q,p))}, -aCU(a,b,c){var s,r,q,p,o -if(b==null)if(a==null)return null -else{s=1-c -return new A.w(a.a*s,a.b*s,a.c*s,a.d*s)}else{r=b.a -q=b.b -p=b.c -o=b.d -if(a==null)return new A.w(r*c,q*c,p*c,o*c) -else return new A.w(A.jH(a.a,r,c),A.jH(a.b,q,c),A.jH(a.c,p,c),A.jH(a.d,o,c))}}, -yX(a,b,c){var s,r,q -if(b==null)if(a==null)return null -else{s=1-c -return new A.bD(a.a*s,a.b*s)}else{r=b.a -q=b.b -if(a==null)return new A.bD(r*c,q*c) -else return new A.bD(A.jH(a.a,r,c),A.jH(a.b,q,c))}}, -yV(a,b){var s=b.a,r=b.b -return new A.i2(a.a,a.b,a.c,a.d,s,r,s,r,s,r,s,r,s===r)}, -aqr(a,b,c,d,e,f,g,h){var s=g.a,r=g.b,q=h.a,p=h.b,o=e.a,n=e.b,m=f.a,l=f.b -return new A.i2(a,b,c,d,s,r,q,p,m,l,o,n,s===r&&s===q&&s===p&&s===o&&s===n&&s===m&&s===l)}, -a48(a,b,c,d,e){var s=d.a,r=d.b,q=e.a,p=e.b,o=b.a,n=b.b,m=c.a,l=c.b,k=s===r&&s===q&&s===p&&s===o&&s===n&&s===m&&s===l -return new A.i2(a.a,a.b,a.c,a.d,s,r,q,p,m,l,o,n,k)}, -dT(a,b){a=a+J.r(b)&536870911 -a=a+((a&524287)<<10)&536870911 -return a^a>>>6}, -arK(a){a=a+((a&67108863)<<3)&536870911 -a^=a>>>11 -return a+((a&16383)<<15)&536870911}, -ct(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var s=A.dT(A.dT(0,a),b) -if(!J.f(c,B.d)){s=A.dT(s,c) -if(!J.f(d,B.d)){s=A.dT(s,d) -if(e!==B.d){s=A.dT(s,e) -if(f!==B.d){s=A.dT(s,f) -if(g!==B.d){s=A.dT(s,g) -if(h!==B.d){s=A.dT(s,h) -if(!J.f(i,B.d)){s=A.dT(s,i) -if(!J.f(j,B.d)){s=A.dT(s,j) -if(!J.f(k,B.d)){s=A.dT(s,k) -if(l!==B.d){s=A.dT(s,l) -if(m!==B.d){s=A.dT(s,m) -if(n!==B.d){s=A.dT(s,n) -if(!J.f(o,B.d)){s=A.dT(s,o) -if(p!==B.d){s=A.dT(s,p) -if(q!==B.d){s=A.dT(s,q) -if(r!==B.d)s=A.dT(s,r)}}}}}}}}}}}}}}}return A.arK(s)}, -ED(a){var s,r -if(a!=null)for(s=J.av(a),r=0;s.t();)r=A.dT(r,s.gH(s)) -else r=0 -return A.arK(r)}, -ajv(a,b){var s=0,r=A.S(t.H),q=[],p,o,n,m -var $async$ajv=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:n=new A.Uu(new A.ajw(),new A.ajx(a,b)) -m=!0 -try{m=self._flutter.loader.didCreateEngineInitializer==null}catch(l){m=!0}s=m?2:4 -break -case 2:A.fK("Flutter Web Bootstrap: Auto") -s=5 -return A.U(n.nb(),$async$ajv) -case 5:s=3 -break -case 4:A.fK("Flutter Web Bootstrap: Programmatic") -o=self._flutter.loader.didCreateEngineInitializer -o.toString -o.$1(n.afs()) -case 3:return A.Q(null,r)}}) -return A.R($async$ajv,r)}, -aBJ(a){switch(a.a){case 1:return"up" -case 0:return"down" -case 2:return"repeat"}}, -Z(a,b,c){var s -if(a!=b)if((a==null?null:isNaN(a))===!0)s=(b==null?null:isNaN(b))===!0 -else s=!1 -else s=!0 -if(s)return a==null?null:a -if(a==null)a=0 -if(b==null)b=0 -return a*(1-c)+b*c}, -jH(a,b,c){return a*(1-c)+b*c}, -ai6(a,b,c){return a*(1-c)+b*c}, -asV(a,b){return A.ak(A.uX(B.e.aI((a.gl(a)>>>24&255)*b),0,255),a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}, -ak(a,b,c,d){return new A.E(((a&255)<<24|(b&255)<<16|(c&255)<<8|d&255)>>>0)}, -ak8(a){if(a<=0.03928)return a/12.92 -return Math.pow((a+0.055)/1.055,2.4)}, -A(a,b,c){if(b==null)if(a==null)return null -else return A.asV(a,1-c) -else if(a==null)return A.asV(b,c) -else return A.ak(A.uX(B.e.e6(A.ai6(a.gl(a)>>>24&255,b.gl(b)>>>24&255,c)),0,255),A.uX(B.e.e6(A.ai6(a.gl(a)>>>16&255,b.gl(b)>>>16&255,c)),0,255),A.uX(B.e.e6(A.ai6(a.gl(a)>>>8&255,b.gl(b)>>>8&255,c)),0,255),A.uX(B.e.e6(A.ai6(a.gl(a)&255,b.gl(b)&255,c)),0,255))}, -q6(a,b){var s,r,q,p=a.gl(a)>>>24&255 -if(p===0)return b -s=255-p -r=b.gl(b)>>>24&255 -if(r===255)return A.ak(255,B.f.bC(p*(a.gl(a)>>>16&255)+s*(b.gl(b)>>>16&255),255),B.f.bC(p*(a.gl(a)>>>8&255)+s*(b.gl(b)>>>8&255),255),B.f.bC(p*(a.gl(a)&255)+s*(b.gl(b)&255),255)) -else{r=B.f.bC(r*s,255) -q=p+r -return A.ak(q,B.f.lg((a.gl(a)>>>16&255)*p+(b.gl(b)>>>16&255)*r,q),B.f.lg((a.gl(a)>>>8&255)*p+(b.gl(b)>>>8&255)*r,q),B.f.lg((a.gl(a)&255)*p+(b.gl(b)&255)*r,q))}}, -apk(a,b,c,d,e){var s -if($.aJ()){s=new A.FZ(a,b,c,d,e,null) -s.jW(null,t.wX)}else s=new A.a_b(a,b,c,d,e,null) -return s}, -amh(a,b,c,d){var s=0,r=A.S(t.hP),q -var $async$amh=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:if($.aJ()){q=A.aIB(a,d,c) -s=1 -break}else{q=new A.HD((self.URL||self.webkitURL).createObjectURL(A.azM([a.buffer]))) -s=1 -break}case 1:return A.Q(q,r)}}) -return A.R($async$amh,r)}, -aDd(a,b,c){var s,r,q=A.A(a.a,b.a,c) -q.toString -s=A.yj(a.b,b.b,c) -s.toString -r=A.jH(a.c,b.c,c) -return new A.m8(q,s,r)}, -aDe(a,b,c){var s,r,q,p=a==null -if(p&&b==null)return null -if(p)a=A.b([],t.kO) -if(b==null)b=A.b([],t.kO) -s=A.b([],t.kO) -r=Math.min(a.length,b.length) -for(q=0;q=0}else q=!1 -if(!q)break -if(r>s)return-1 -if(A.ami(a,c,d,r)&&A.ami(a,c,d,r+p))return r -c=r+1}return-1}return A.aFY(a,b,c,d)}, -aFY(a,b,c,d){var s,r,q,p=new A.hB(a,d,c,0) -for(s=b.length;r=p.hs(),r>=0;){q=r+s -if(q>d)break -if(B.b.cQ(a,b,r)&&A.ami(a,c,d,q))return r}return-1}, -e9:function e9(a){this.a=a}, -Lt:function Lt(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -aj8(a,b,c,d){if(d===208)return A.atO(a,b,c) -if(d===224){if(A.atN(a,b,c)>=0)return 145 -return 64}throw A.c(A.X("Unexpected state: "+B.f.iV(d,16)))}, -atO(a,b,c){var s,r,q,p,o -for(s=c,r=0;q=s-2,q>=b;s=q){p=B.b.ak(a,s-1) -if((p&64512)!==56320)break -o=B.b.ak(a,q) -if((o&64512)!==55296)break -if(A.jI(o,p)!==6)break -r^=1}if(r===0)return 193 -else return 144}, -atN(a,b,c){var s,r,q,p,o -for(s=c;s>b;){--s -r=B.b.ak(a,s) -if((r&64512)!==56320)q=A.pH(r) -else{if(s>b){--s -p=B.b.ak(a,s) -o=(p&64512)===55296}else{p=0 -o=!1}if(o)q=A.jI(p,r) -else break}if(q===7)return s -if(q!==4)break}return-1}, -ami(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=u.q -if(b=c)return!0 -n=B.b.ak(a,o) -if((n&64512)!==56320)return!0 -p=A.jI(s,n)}else return(q&64512)!==55296 -if((q&64512)!==56320){m=A.pH(q) -d=r}else{d-=2 -if(b<=d){l=B.b.ak(a,d) -if((l&64512)!==55296)return!0 -m=A.jI(l,q)}else return!0}k=B.b.ac(j,(B.b.ac(j,(p|176)>>>0)&240|m)>>>0) -return((k>=208?A.aj8(a,b,d,k):k)&1)===0}return b!==c}, -aIu(a,b,c,d){var s,r,q,p,o,n -if(d===b||d===c)return d -s=B.b.ak(a,d) -if((s&63488)!==55296){r=A.pH(s) -q=d}else if((s&64512)===55296){p=d+1 -if(p>>0)).hs()}, -aIn(a,b,c,d){var s,r,q,p,o,n,m,l -if(d===b||d===c)return d -s=d-1 -r=B.b.ak(a,s) -if((r&63488)!==55296)q=A.pH(r) -else if((r&64512)===55296){p=B.b.ak(a,d) -if((p&64512)===56320){++d -if(d===c)return c -q=A.jI(r,p)}else q=2}else if(s>b){o=s-1 -n=B.b.ak(a,o) -if((n&64512)===55296){q=A.jI(n,r) -s=o}else q=2}else q=2 -if(q===6)m=A.atO(a,b,s)!==144?160:48 -else{l=q===1 -if(l||q===4)if(A.atN(a,b,s)>=0)m=l?144:128 -else m=48 -else m=B.b.ac(u.S,(q|176)>>>0)}return new A.hB(a,a.length,d,m).hs()}, -hB:function hB(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Fc:function Fc(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -bc:function bc(){}, -Vh:function Vh(a){this.a=a}, -Vi:function Vi(a){this.a=a}, -Vj:function Vj(a,b){this.a=a -this.b=b}, -Vk:function Vk(a){this.a=a}, -Vl:function Vl(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Vm:function Vm(a,b,c){this.a=a -this.b=b -this.c=c}, -Vn:function Vn(a){this.a=a}, -HC:function HC(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=0 -_.$ti=c}, -YD:function YD(){}, -rx:function rx(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=f}, -V_:function V_(a){this.a=a}, -V1:function V1(a){this.a=a}, -V2:function V2(a,b){this.a=a -this.b=b}, -V0:function V0(){}, -V3:function V3(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -V4:function V4(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -V5:function V5(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -V6:function V6(a,b){this.a=a -this.b=b}, -V7:function V7(a){this.a=a}, -V8:function V8(a,b){this.a=a -this.b=b}, -aAA(a,b,c,d){return new A.e_(b,c,d,a)}, -ll:function ll(a,b){this.a=a -this.b=b}, -e_:function e_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null}, -ake(a,b,c){var s=A.b([],c.j("o>")) -s.push(b) -return A.aBl(s,c)}, -aoR(a,b){if(b==null)b=A.akO(null,null,null) -b.a=a -return b}, -WR(a,b,c){var s=b.$0() -return s}, -akd(a,b,c){var s=a instanceof A.e_?a:new A.e_(b,null,B.AO,a) -s.e=c==null?s.e:c -return s}, -aoQ(a,b,c){var s,r,q,p,o,n,m,l=null -if(!(a instanceof A.cN)){c.a(a) -return A.akZ(a,l,l,l,l,b,l,l,c)}else if(!c.j("cN<0>").b(a)){s=c.j("0?").a(a.a) -r=A.a(a.b,"headers") -q=A.a(a.c,"requestOptions") -p=a.d -o=a.w -n=A.a(a.r,"redirects") -m=a.e -return A.akZ(s,A.a(a.f,"extra"),r,o,n,q,p,m,c)}return a}, -WP:function WP(){}, -WY:function WY(a,b){this.a=a -this.b=b}, -X0:function X0(a,b,c){this.a=a -this.b=b -this.c=c}, -X_:function X_(a,b,c){this.a=a -this.b=b -this.c=c}, -WZ:function WZ(a,b){this.a=a -this.b=b}, -X1:function X1(a,b){this.a=a -this.b=b}, -X4:function X4(a,b,c){this.a=a -this.b=b -this.c=c}, -X3:function X3(a,b,c){this.a=a -this.b=b -this.c=c}, -X2:function X2(a,b){this.a=a -this.b=b}, -WU:function WU(a,b){this.a=a -this.b=b}, -WX:function WX(a,b,c){this.a=a -this.b=b -this.c=c}, -WW:function WW(a,b,c){this.a=a -this.b=b -this.c=c}, -WV:function WV(a,b){this.a=a -this.b=b}, -X5:function X5(a){this.a=a}, -X6:function X6(a,b){this.a=a -this.b=b}, -X7:function X7(a,b){this.a=a -this.b=b}, -WS:function WS(a){this.a=a}, -WT:function WT(a){this.a=a}, -X8:function X8(a,b){this.a=a -this.b=b}, -X9:function X9(a,b){this.a=a -this.b=b}, -Xa:function Xa(a,b){this.a=a -this.b=b}, -Xb:function Xb(a,b,c){this.a=a -this.b=b -this.c=c}, -WQ:function WQ(a,b){this.a=a -this.b=b}, -xE:function xE(){this.a=null}, -nR:function nR(a,b){this.a=a -this.b=b}, -dg:function dg(a,b){this.a=a -this.b=b}, -abf:function abf(){}, -ot:function ot(a){this.a=a}, -kp:function kp(a){this.a=a}, -jT:function jT(a){this.a=a}, -HR:function HR(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=0}, -WO:function WO(a,b,c,d,e){var _=this -_.Cg$=a -_.ny$=b -_.N3$=c -_.N4$=d -_.ahy$=e}, -NE:function NE(){}, -aBi(a){var s=new A.qD(A.bZ("\\r\\n|\\r|\\n",!0),A.b([],t.Iq),A.b([],t.cS)) -s.Wp(a,B.ei) -return s}, -qD:function qD(a,b,c){var _=this -_.a=$ -_.b=a -_.c=b -_.d=c -_.e=!1}, -Zs:function Zs(a){this.a=a}, -Zu:function Zu(a){this.a=a}, -Zt:function Zt(a,b){this.a=a -this.b=b}, -ZC:function ZC(a,b){this.a=a -this.b=b}, -Zz:function Zz(a){this.a=a}, -ZB:function ZB(a){this.a=a}, -ZA:function ZA(a){this.a=a}, -Zw:function Zw(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Zx:function Zx(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Zv:function Zv(a){this.a=a}, -Zy:function Zy(a,b,c){this.a=a -this.b=b -this.c=c}, -aBr(a){var s=t.yp -return new A.HB(A.aiB(a.jB(a,new A.a_i(),t.N,s),s))}, -HB:function HB(a){this.a=a}, -a_i:function a_i(){}, -a_k:function a_k(a){this.a=a}, -a_j:function a_j(a,b){this.a=a -this.b=b}, -azJ(a,b,c,d,e){var s=null,r=new A.UN($,$,$,s,s) -r.G3(c,s,s,s,s,s,s,s,d,s,s,B.eF,e,s) -r.nx$=A.z(t.N,t.z) -r.nw$=a -r.jr$=b==null?0:b -return r}, -akO(a,b,c){return new A.a2W(b,c,a)}, -aD_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var s=new A.jg(c,j,$,$,$,n,o) -s.G3(null,d,e,f,g,h,i,l,m,n,o,p,q,r) -s.nx$=k==null?A.z(t.N,t.z):k -s.nw$=a==null?"":a -s.jr$=b==null?0:b -return s}, -ou:function ou(a,b){this.a=a -this.b=b}, -xA:function xA(a,b){this.a=a -this.b=b}, -UN:function UN(a,b,c,d,e){var _=this -_.nw$=a -_.nx$=b -_.jr$=c -_.d=_.c=_.b=_.a=$ -_.e=null -_.z=_.y=_.x=_.w=_.r=_.f=$ -_.Q=d -_.as=e -_.at=$}, -IQ:function IQ(){}, -a2W:function a2W(a,b,c){var _=this -_.a=null -_.b=a -_.r=b -_.y=c}, -jg:function jg(a,b,c,d,e,f,g){var _=this -_.ax=a -_.ay=b -_.cx=_.CW=_.ch=null -_.nw$=c -_.nx$=d -_.jr$=e -_.d=_.c=_.b=_.a=$ -_.e=null -_.z=_.y=_.x=_.w=_.r=_.f=$ -_.Q=f -_.as=g -_.at=$}, -afM:function afM(){}, -afN:function afN(){}, -ML:function ML(){}, -Qx:function Qx(){}, -aGX(a,b,c){if(t.NP.b(a))return a -return A.aGR(a,b,c,t.Cm).FX(a)}, -aGR(a,b,c,d){return A.arY(new A.air(c,d),d,t.H3)}, -air:function air(a,b){this.a=a -this.b=b}, -akZ(a,b,c,d,e,f,g,h,i){var s=new A.cN(a,f,g,h,d,i.j("cN<0>")) -s.b=c==null?new A.HB(A.aiB(null,t.yp)):c -s.f=b==null?A.z(t.N,t.z):b -s.r=e==null?A.b([],t.Bw):e -return s}, -cN:function cN(a,b,c,d,e,f){var _=this -_.a=a -_.b=$ -_.c=b -_.d=c -_.e=d -_.r=_.f=$ -_.w=e -_.$ti=f}, -ari(a,b){return A.atn(a,new A.aa8(),!0,b)}, -arh(a){var s,r,q -if(a==null)return!1 -s=A.aC4(a) -r=s.b -q=s.a+"/"+r -return q==="application/json"||q==="text/json"||B.b.kv(r,"+json")}, -aa7:function aa7(){}, -aa8:function aa8(){}, -WD:function WD(){}, -WE:function WE(a,b,c){this.a=a -this.b=b -this.c=c}, -WF:function WF(a,b){this.a=a -this.b=b}, -WH:function WH(a){this.a=a}, -WG:function WG(a){this.a=a}, -aIW(a,b){var s=new A.a4($.a5,t.LR) -a.vV(b.gn3(b),new A.ajy(new A.aI(s,t.zh)),b.ga9c()) -return s}, -atn(a,b,c,d){var s,r,q={},p=new A.by("") -q.a=!0 -s=c?"%5B":"[" -r=c?"%5D":"]" -new A.aiO(q,d,s,r,c?A.aHr():new A.aiN(),b,p).$2(a,"") -q=p.a -return q.charCodeAt(0)==0?q:q}, -aG9(a){switch(a.a){case 0:return"," -case 1:return" " -case 2:return"\\t" -case 3:return"|" -default:return""}}, -aiB(a,b){var s=A.hQ(new A.aiC(),new A.aiD(),null,t.N,b) -if(a!=null&&a.a!==0)s.P(0,a) -return s}, -ajy:function ajy(a){this.a=a}, -aiN:function aiN(){}, -aiO:function aiO(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aiP:function aiP(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aiC:function aiC(){}, -aiD:function aiD(){}, -YG:function YG(){this.b=this.a=null}, -he:function he(a){this.a=a -this.c=this.b=null}, -a5t:function a5t(){var _=this -_.w=_.r=_.f=_.e=_.c=_.b=_.a=null}, -a5u:function a5u(){var _=this -_.f=_.e=_.d=_.c=_.b=_.a=null}, -nG:function nG(a){this.a=a}, -Oq:function Oq(a){var _=this -_.a=_.e=_.d=null -_.b=a -_.c=null}, -adk:function adk(a,b){this.a=a -this.b=b}, -adj:function adj(){}, -adl:function adl(a){this.a=a}, -adi:function adi(){}, -adm:function adm(a){this.a=a}, -adh:function adh(a,b){this.a=a -this.b=b}, -adg:function adg(a){this.a=a}, -wg:function wg(){this.a=null}, -Tz(a){var s=null,r=null -return A.aIA(a)}, -aIA(a){var s=0,r=A.S(t.z),q=1,p,o=[],n,m,l,k,j,i -var $async$Tz=A.T(function(b,c){if(b===1){p=c -s=q}while(true)switch(s){case 0:k=null -j=null -q=3 -s=6 -return A.U(A.Hv(A.bR(0,500,0),t.z),$async$Tz) -case 6:A.am9() -$.uZ=A.rb(new A.ajr(j,k),!1) -n=a.ju(t.N1) -if(n!=null){m=$.uZ -m.toString -n.qG(0,m)}q=1 -s=5 -break -case 3:q=2 -i=p -s=5 -break -case 2:s=1 -break -case 5:return A.Q(null,r) -case 1:return A.P(p,r)}}) -return A.R($async$Tz,r)}, -am9(){var s=$.uZ -if(s!=null)s.bw(0) -$.uZ=null}, -ajr:function ajr(a,b){this.a=a -this.b=b}, -ws:function ws(a,b){this.f=a -this.a=b}, -Bq:function Bq(a){var _=this -_.d=30 -_.e=100 -_.r=_.f=$ -_.a=null -_.b=a -_.c=null}, -acw:function acw(a){this.a=a}, -acv:function acv(){}, -acu:function acu(){}, -xF:function xF(a,b){this.c=a -this.a=b}, -OR:function OR(a,b){var _=this -_.cV$=a -_.a=null -_.b=b -_.c=null}, -SG:function SG(){}, -xH:function xH(a,b){this.c=a -this.a=b}, -OT:function OT(a,b){var _=this -_.r=_.f=_.e=_.d=$ -_.x=null -_.cV$=a -_.a=null -_.b=b -_.c=null}, -ae7:function ae7(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -ae6:function ae6(a,b){this.a=a -this.b=b}, -Ee:function Ee(){}, -xI:function xI(a,b){this.c=a -this.a=b}, -OU:function OU(a,b){var _=this -_.d=!1 -_.e=14 -_.cV$=a -_.a=null -_.b=b -_.c=null}, -aeb:function aeb(a){this.a=a}, -aea:function aea(){}, -aec:function aec(a){this.a=a}, -ae9:function ae9(){}, -ae8:function ae8(a,b){this.a=a -this.b=b}, -SH:function SH(){}, -o0:function o0(a,b){this.c=a -this.a=b}, -Cb:function Cb(a,b,c,d){var _=this -_.d=a -_.e=null -_.f=0 -_.fe$=b -_.cz$=c -_.a=null -_.b=d -_.c=null}, -aee:function aee(a){this.a=a}, -aed:function aed(a,b){this.a=a -this.b=b}, -Ef:function Ef(){}, -atR(a){var s,r -if(a==null)return"" -s=new A.by("") -s.a=""+"{\n" -a.Y(0,new A.ajd(s)) -r=s.a+="}" -return r.charCodeAt(0)==0?r:r}, -ajd:function ajd(a){this.a=a}, -xG(){var s=new A.a1u(new A.a1v()) -s.a=A.hQ(null,null,null,t.N,t.dg) -s.b=A.b([],t.s) -return s}, -a1u:function a1u(a){this.b=this.a=$ -this.d=a}, -a1v:function a1v(){}, -a1w:function a1w(a){this.a=a}, -a1x:function a1x(a){this.a=a}, -a1y:function a1y(a){this.a=a}, -qY:function qY(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -OG:function OG(a,b){var _=this -_.d=a -_.e=0 -_.a=null -_.b=b -_.c=null}, -adL:function adL(a,b){this.a=a -this.b=b}, -adI:function adI(a,b){this.a=a -this.b=b}, -adJ:function adJ(a,b){this.a=a -this.b=b}, -adQ:function adQ(a,b){this.a=a -this.b=b}, -adP:function adP(){}, -adK:function adK(a,b){this.a=a -this.b=b}, -adN:function adN(){}, -adO:function adO(){}, -adM:function adM(a,b){this.a=a -this.b=b}, -qX:function qX(a,b){this.a=a -this.b=b}, -eW:function eW(a,b){this.a=a -this.b=b}, -bv:function bv(){}, -bo(a,b,c,d,e){var s=new A.l8(0,1,a,B.w8,b,c,B.X,B.w,new A.aM(A.b([],t.W),t.jc),new A.aM(A.b([],t.b),t.fy)) -s.r=e.v3(s.gGi()) -s.zt(d==null?0:d) -return s}, -aoj(a,b,c){var s=new A.l8(-1/0,1/0,a,B.w9,null,null,B.X,B.w,new A.aM(A.b([],t.W),t.jc),new A.aM(A.b([],t.b),t.fy)) -s.r=c.v3(s.gGi()) -s.zt(b) -return s}, -p5:function p5(a,b){this.a=a -this.b=b}, -vl:function vl(a,b){this.a=a -this.b=b}, -l8:function l8(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=_.r=null -_.x=$ -_.y=null -_.z=g -_.Q=$ -_.as=h -_.d2$=i -_.bj$=j}, -adz:function adz(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.a=e}, -afL:function afL(a,b,c,d,e,f,g){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.a=g}, -My:function My(){}, -Mz:function Mz(){}, -MA:function MA(){}, -yP(a){var s=new A.yO(new A.aM(A.b([],t.W),t.jc),new A.aM(A.b([],t.b),t.fy),0) -s.c=a -if(a==null){s.a=B.w -s.b=0}return s}, -cn(a,b,c){var s=new A.nd(b,a,c) -s.AA(b.gaZ(b)) -b.c1(s.gAz()) -return s}, -alj(a,b,c){var s,r,q=new A.oW(a,b,c,new A.aM(A.b([],t.W),t.jc),new A.aM(A.b([],t.b),t.fy)) -if(J.f(a.gl(a),b.gl(b))){q.a=b -q.b=null -s=b}else{if(a.gl(a)>b.gl(b))q.c=B.TX -else q.c=B.TW -s=a}s.c1(q.gmZ()) -s=q.gAO() -q.a.a2(0,s) -r=q.b -if(r!=null){r.cf() -r=r.bj$ -r.b=!0 -r.a.push(s)}return q}, -aok(a,b,c){return new A.vo(a,b,new A.aM(A.b([],t.W),t.jc),new A.aM(A.b([],t.b),t.fy),0,c.j("vo<0>"))}, -Mr:function Mr(){}, -Ms:function Ms(){}, -vp:function vp(){}, -yO:function yO(a,b,c){var _=this -_.c=_.b=_.a=null -_.d2$=a -_.bj$=b -_.jq$=c}, -i4:function i4(a,b,c){this.a=a -this.d2$=b -this.jq$=c}, -nd:function nd(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -DH:function DH(a,b){this.a=a -this.b=b}, -oW:function oW(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.f=_.e=null -_.d2$=d -_.bj$=e}, -q8:function q8(){}, -vo:function vo(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.d2$=c -_.bj$=d -_.jq$=e -_.$ti=f}, -Bc:function Bc(){}, -Bd:function Bd(){}, -Be:function Be(){}, -Ns:function Ns(){}, -Q_:function Q_(){}, -Q0:function Q0(){}, -Q1:function Q1(){}, -QB:function QB(){}, -QC:function QC(){}, -RY:function RY(){}, -RZ:function RZ(){}, -S_:function S_(){}, -yx:function yx(){}, -fV:function fV(){}, -C5:function C5(){}, -zy:function zy(a){this.a=a}, -ep:function ep(a,b,c){this.a=a -this.b=b -this.c=c}, -Az:function Az(a){this.a=a}, -f_:function f_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -qz:function qz(a){this.a=a}, -Nv:function Nv(){}, -vn:function vn(){}, -vm:function vm(){}, -mR:function mR(){}, -l9:function l9(){}, -ec(a,b,c){return new A.ar(a,b,c.j("ar<0>"))}, -f0(a){return new A.fW(a)}, -an:function an(){}, -aC:function aC(a,b,c){this.a=a -this.b=b -this.$ti=c}, -eT:function eT(a,b,c){this.a=a -this.b=b -this.$ti=c}, -ar:function ar(a,b,c){this.a=a -this.b=b -this.$ti=c}, -zv:function zv(a,b,c,d){var _=this -_.c=a -_.a=b -_.b=c -_.$ti=d}, -de:function de(a,b){this.a=a -this.b=b}, -z2:function z2(a,b){this.a=a -this.b=b}, -ly:function ly(a,b){this.a=a -this.b=b}, -fW:function fW(a){this.a=a}, -E1:function E1(){}, -arj(a,b){var s=new A.AO(A.b([],b.j("o>")),A.b([],t.mz),b.j("AO<0>")) -s.XZ(a,b) -return s}, -ark(a,b,c){return new A.kD(a,b,c.j("kD<0>"))}, -AO:function AO(a,b,c){this.a=a -this.b=b -this.$ti=c}, -kD:function kD(a,b,c){this.a=a -this.b=b -this.$ti=c}, -OC:function OC(a,b){this.a=a -this.b=b}, -Wk(a,b){if(a==null)return null -return a instanceof A.dZ?a.eZ(b):a}, -dZ:function dZ(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.a=l}, -Wl:function Wl(a){this.a=a}, -Nl:function Nl(){}, -ac1:function ac1(){}, -w5:function w5(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Nm:function Nm(){}, -Nn:function Nn(){}, -GF:function GF(){}, -aAn(a){var s -if(a.gO0())return!1 -s=a.eh$ -if(s!=null&&s.length!==0)return!1 -s=a.fx -if(s.gaZ(s)!==B.H)return!1 -s=a.fy -if(s.gaZ(s)!==B.w)return!1 -if(a.a.CW.a)return!1 -return!0}, -aAo(a,b,c,d,e,f){var s,r,q,p=a.a.CW.a,o=p?c:A.cn(B.fv,c,B.mJ),n=$.avO(),m=t.m -m.a(o) -s=p?d:A.cn(B.fv,d,B.mJ) -r=$.avN() -m.a(s) -p=p?c:A.cn(B.fv,c,null) -q=$.av9() -return new A.Gt(new A.aC(o,n,n.$ti.j("aC")),new A.aC(s,r,r.$ti.j("aC")),new A.aC(m.a(p),q,A.n(q).j("aC")),new A.tY(e,new A.Wn(a),new A.Wo(a,f),null,f.j("tY<0>")),null)}, -ac2(a,b,c){var s,r,q,p,o,n,m=a==null -if(m&&b==null)return null -if(m){m=b.a -if(m==null)m=b -else{s=A.af(m).j("az<1,E>") -s=new A.ip(A.ap(new A.az(m,new A.ac3(c),s),!0,s.j("bl.E"))) -m=s}return m}if(b==null){m=a.a -if(m==null)m=a -else{s=A.af(m).j("az<1,E>") -s=new A.ip(A.ap(new A.az(m,new A.ac4(c),s),!0,s.j("bl.E"))) -m=s}return m}m=A.b([],t.t_) -for(s=b.a,r=a.a,q=r==null,p=0;p"))) -return new A.nr(r)}, -Z3(a){return new A.nr(a)}, -aB7(a){return a}, -apc(a,b){if(a.r&&!0)return -if($.akm===0||!1)A.aHw(J.bX(a.a),100,a.b) -else A.amo().$1("Another exception was thrown: "+a.gRD().i(0)) -$.akm=$.akm+1}, -aB8(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.aB(["dart:async-patch",0,"dart:async",0,"package:stack_trace",0,"class _AssertionError",0,"class _FakeAsync",0,"class _FrameCallbackEntry",0,"class _Timer",0,"class _RawReceivePortImpl",0],t.N,t.S),d=A.aDu(J.anV(a,"\n")) -for(s=0,r=0;q=d.length,r0)q.push(h.gcG(h))}B.c.i3(q) -if(s===1)j.push("(elided one frame from "+B.c.gbX(q)+")") -else if(s>1){l=q.length -if(l>1)q[l-1]="and "+B.c.gR(q) -l="(elided "+s -if(q.length>2)j.push(l+" frames from "+B.c.bB(q,", ")+")") -else j.push(l+" frames from "+B.c.bB(q," ")+")")}return j}, -cS(a){var s=$.hx() -if(s!=null)s.$1(a)}, -aHw(a,b,c){var s,r -if(a!=null)A.amo().$1(a) -s=A.b(B.b.E3(J.bX(c==null?A.Ac():A.aB7(c))).split("\n"),t.s) -r=s.length -s=J.aob(r!==0?new A.zZ(s,new A.aiI(),t.Ws):s,b) -A.amo().$1(B.c.bB(A.aB8(s),"\n"))}, -aEt(a,b,c){return new A.O7(c,a,!0,!0,null,b)}, -mu:function mu(){}, -qp:function qp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o}, -H0:function H0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o}, -H_:function H_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o}, -bs:function bs(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -Z4:function Z4(a){this.a=a}, -nr:function nr(a){this.a=a}, -Z5:function Z5(){}, -Z6:function Z6(){}, -Z7:function Z7(){}, -aiI:function aiI(){}, -O7:function O7(a,b,c,d,e,f){var _=this -_.f=a -_.r=null -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -O9:function O9(){}, -O8:function O8(){}, -Fk:function Fk(){}, -UR:function UR(a,b){this.a=a -this.b=b}, -aE9(a){return new A.d7(a,$.b4())}, -at:function at(){}, -jN:function jN(){}, -Vx:function Vx(a){this.a=a}, -pi:function pi(a){this.a=a}, -d7:function d7(a,b){var _=this -_.a=a -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -aAy(a,b,c){var s=null -return A.nf("",s,b,B.bt,a,!1,s,s,B.aO,s,!1,!1,!0,c,s,t.H)}, -nf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var s -if(h==null)s=k?"MISSING":null -else s=h -return new A.hD(e,!1,c,s,g,o,k,b,d,i,a,m,l,j,n,p.j("hD<0>"))}, -akc(a,b,c){return new A.GL(c,a,!0,!0,null,b)}, -bF(a){return B.b.m2(B.f.iV(J.r(a)&1048575,16),5,"0")}, -aHz(a){var s -if(t.Q8.b(a))return a.b -s=J.bX(a) -return B.b.bU(s,B.b.eJ(s,".")+1)}, -qh:function qh(a,b){this.a=a -this.b=b}, -iN:function iN(a,b){this.a=a -this.b=b}, -aeZ:function aeZ(){}, -em:function em(){}, -hD:function hD(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o -_.$ti=p}, -we:function we(){}, -GL:function GL(a,b,c,d,e,f){var _=this -_.f=a -_.r=null -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -ai:function ai(){}, -WM:function WM(){}, -iM:function iM(){}, -NC:function NC(){}, -f5:function f5(){}, -Ie:function Ie(){}, -oZ:function oZ(){}, -ed:function ed(a,b){this.a=a -this.$ti=b}, -aly:function aly(a){this.$ti=a}, -h9:function h9(){}, -xu:function xu(){}, -H:function H(){}, -yi(a){return new A.aM(A.b([],a.j("o<0>")),a.j("aM<0>"))}, -aM:function aM(a,b){var _=this -_.a=a -_.b=!1 -_.c=$ -_.$ti=b}, -wX:function wX(a,b){this.a=a -this.$ti=b}, -dn:function dn(a,b){this.a=a -this.b=b}, -aaE(){var s=new DataView(new ArrayBuffer(8)),r=A.cX(s.buffer,0,null) -return new A.aaC(new Uint8Array(8),s,r)}, -aaC:function aaC(a,b,c){var _=this -_.a=a -_.b=0 -_.c=!1 -_.d=b -_.e=c}, -z1:function z1(a){this.a=a -this.b=0}, -aDu(a){var s=t.ZK -return A.ap(new A.fI(new A.d3(new A.au(A.b(B.b.jM(a).split("\n"),t.s),new A.a8F(),t.Hd),A.aIC(),t.IQ),s),!0,s.j("p.E"))}, -aDs(a){var s=A.aDt(a) -return s}, -aDt(a){var s,r,q="",p=$.auQ().vq(a) -if(p==null)return null -s=A.b(p.b[1].split("."),t.s) -r=s.length>1?B.c.gJ(s):q -return new A.id(a,-1,q,q,q,-1,-1,r,s.length>1?A.eP(s,1,null,t.N).bB(0,"."):B.c.gbX(s))}, -aDv(a){var s,r,q,p,o,n,m,l,k,j,i=null,h="" -if(a==="")return B.Mz -else if(a==="...")return B.My -if(!B.b.bl(a,"#"))return A.aDs(a) -s=A.bZ("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$",!0).vq(a).b -r=s[2] -r.toString -q=A.fM(r,".","") -if(B.b.bl(q,"new")){p=q.split(" ").length>1?q.split(" ")[1]:h -if(B.b.A(p,".")){o=p.split(".") -p=o[0] -q=o[1]}else q=""}else if(B.b.A(q,".")){o=q.split(".") -p=o[0] -q=o[1]}else p="" -r=s[3] -r.toString -n=A.p_(r,0,i) -m=n.ge4(n) -if(n.gdP()==="dart"||n.gdP()==="package"){l=n.gkN()[0] -m=B.b.Ph(n.ge4(n),A.e(n.gkN()[0])+"/","")}else l=h -r=s[1] -r.toString -r=A.fJ(r,i) -k=n.gdP() -j=s[4] -if(j==null)j=-1 -else{j=j -j.toString -j=A.fJ(j,i)}s=s[5] -if(s==null)s=-1 -else{s=s -s.toString -s=A.fJ(s,i)}return new A.id(a,r,k,l,m,j,s,p,q)}, -id:function id(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a8F:function a8F(){}, -d0:function d0(a,b){this.a=a -this.$ti=b}, -a95:function a95(a){this.a=a}, -wU:function wU(a,b){this.a=a -this.b=b}, -cV:function cV(){}, -qE:function qE(a,b,c){this.a=a -this.b=b -this.c=c}, -ud:function ud(a){var _=this -_.a=a -_.b=!0 -_.d=_.c=!1 -_.e=null}, -ad3:function ad3(a){this.a=a}, -ZS:function ZS(a){this.a=a}, -ZU:function ZU(a,b){this.a=a -this.b=b}, -ZT:function ZT(a,b,c){this.a=a -this.b=b -this.c=c}, -aB6(a,b,c,d,e,f,g){return new A.wN(c,g,f,a,e,!1)}, -afP:function afP(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=!1 -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=null}, -qF:function qF(){}, -ZX:function ZX(a){this.a=a}, -ZY:function ZY(a,b){this.a=a -this.b=b}, -wN:function wN(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -at0(a,b){switch(b.a){case 1:return a -case 0:case 2:case 3:return a===0?1:a -case 5:default:return a===0?1:a}}, -aCt(a,b){var s=A.af(a) -return new A.d3(new A.au(a,new A.a3K(),s.j("au<1>")),new A.a3L(b),s.j("d3<1,bf>"))}, -a3K:function a3K(){}, -a3L:function a3L(a){this.a=a}, -jR:function jR(a){this.a=a}, -fZ:function fZ(a,b,c){this.a=a -this.b=b -this.d=c}, -f1:function f1(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -hF:function hF(a,b){this.a=a -this.b=b}, -akT(a,b){var s,r -if(a==null)return b -s=new A.fH(new Float64Array(3)) -s.my(b.a,b.b,0) -r=a.wd(s).a -return new A.m(r[0],r[1])}, -akS(a,b,c,d){if(a==null)return c -if(b==null)b=A.akT(a,d) -return b.a9(0,A.akT(a,d.a9(0,c)))}, -akR(a){var s,r,q=new Float64Array(4),p=new A.ik(q) -p.t0(0,0,1,0) -s=new Float64Array(16) -r=new A.bb(s) -r.by(a) -s[11]=q[3] -s[10]=q[2] -s[9]=q[1] -s[8]=q[0] -r.xc(2,p) -return r}, -aCq(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.og(d,n,0,e,a,h,B.j,0,!1,!1,0,j,i,b,c,0,0,0,l,k,g,m,0,!1,null,null)}, -aCx(a,b,c,d,e,f,g,h,i,j,k){return new A.oj(c,k,0,d,a,f,B.j,0,!1,!1,0,h,g,0,b,0,0,0,j,i,0,0,0,!1,null,null)}, -aCv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.kk(f,a0,0,g,c,j,b,a,!1,!1,0,l,k,d,e,q,m,p,o,n,i,s,0,r,null,null)}, -aCs(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.lU(g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, -aCu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.lV(g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, -aCr(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.ki(d,s,h,e,b,i,B.j,a,!0,!1,j,l,k,0,c,q,m,p,o,n,g,r,0,!1,null,null)}, -aCw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.oi(e,a2,j,f,c,k,b,a,!0,!1,l,n,m,0,d,s,o,r,q,p,h,a1,i,a0,null,null)}, -aCz(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.ol(e,a0,i,f,b,j,B.j,a,!1,!1,k,m,l,c,d,r,n,q,p,o,h,s,0,!1,null,null)}, -aCy(a,b,c,d,e,f){return new A.ok(e,b,f,0,c,a,d,B.j,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -aqe(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.oh(e,s,i,f,b,j,B.j,a,!1,!1,0,l,k,c,d,q,m,p,o,n,h,r,0,!1,null,null)}, -EB(a,b){var s -switch(a.a){case 1:return 1 -case 2:case 3:case 5:case 0:default:s=b==null?null:b.a -return s==null?18:s}}, -aHm(a,b){var s -switch(a.a){case 1:return 2 -case 2:case 3:case 5:case 0:default:if(b==null)s=null -else{s=b.a -s=s!=null?s*2:null}return s==null?36:s}}, -bf:function bf(){}, -ex:function ex(){}, -Ml:function Ml(){}, -S6:function S6(){}, -N7:function N7(){}, -og:function og(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S2:function S2(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Ne:function Ne(){}, -oj:function oj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -Sa:function Sa(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Nc:function Nc(){}, -kk:function kk(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S8:function S8(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Na:function Na(){}, -lU:function lU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S5:function S5(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Nb:function Nb(){}, -lV:function lV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S7:function S7(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -N9:function N9(){}, -ki:function ki(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S4:function S4(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Nd:function Nd(){}, -oi:function oi(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S9:function S9(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Ng:function Ng(){}, -ol:function ol(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -Sc:function Sc(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -jc:function jc(){}, -Nf:function Nf(){}, -ok:function ok(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.bQ=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7}, -Sb:function Sb(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -N8:function N8(){}, -oh:function oh(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -S3:function S3(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -PB:function PB(){}, -PC:function PC(){}, -PD:function PD(){}, -PE:function PE(){}, -PF:function PF(){}, -PG:function PG(){}, -PH:function PH(){}, -PI:function PI(){}, -PJ:function PJ(){}, -PK:function PK(){}, -PL:function PL(){}, -PM:function PM(){}, -PN:function PN(){}, -PO:function PO(){}, -PP:function PP(){}, -PQ:function PQ(){}, -PR:function PR(){}, -PS:function PS(){}, -PT:function PT(){}, -PU:function PU(){}, -PV:function PV(){}, -T3:function T3(){}, -T4:function T4(){}, -T5:function T5(){}, -T6:function T6(){}, -T7:function T7(){}, -T8:function T8(){}, -T9:function T9(){}, -Ta:function Ta(){}, -Tb:function Tb(){}, -Tc:function Tc(){}, -Td:function Td(){}, -Te:function Te(){}, -aBh(a){var s=t.S,r=A.cf(s) -return new A.hI(B.lL,A.z(s,t.G),r,a,null,A.z(s,t.C))}, -aph(a,b,c){var s=(c-a)/(b-a) -return!isNaN(s)?B.e.G(s,0,1):s}, -mw:function mw(a,b){this.a=a -this.b=b}, -nz:function nz(a){this.a=a}, -hI:function hI(a,b,c,d,e,f){var _=this -_.ax=_.at=_.as=_.Q=null -_.cy=_.cx=$ -_.db=a -_.e=b -_.f=c -_.r=null -_.a=d -_.b=null -_.c=e -_.d=f}, -Zr:function Zr(a,b){this.a=a -this.b=b}, -Zp:function Zp(a){this.a=a}, -Zq:function Zq(a){this.a=a}, -wd:function wd(a){this.a=a}, -akp(){var s=A.b([],t.om),r=new A.bb(new Float64Array(16)) -r.dC() -return new A.hK(s,A.b([r],t.rE),A.b([],t.cR))}, -fs:function fs(a,b){this.a=a -this.b=null -this.$ti=b}, -uQ:function uQ(){}, -Ci:function Ci(a){this.a=a}, -uw:function uw(a){this.a=a}, -hK:function hK(a,b,c){this.a=a -this.b=b -this.c=c}, -akE(a,b,c,d,e){var s=b==null?B.d_:b,r=t.S,q=A.cf(r),p=t.C,o=c==null?e:A.bM([c],p) -return new A.f7(s,d,B.bv,A.z(r,t.G),q,a,o,A.z(r,p))}, -r5:function r5(a,b){this.a=a -this.b=b}, -xJ:function xJ(a,b,c){this.a=a -this.b=b -this.c=c}, -r4:function r4(a,b){this.b=a -this.c=b}, -f7:function f7(a,b,c,d,e,f,g,h){var _=this -_.go=!1 -_.b5=_.aq=_.a6=_.ao=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=null -_.Q=a -_.at=b -_.ax=c -_.ch=_.ay=null -_.CW=!1 -_.cx=null -_.e=d -_.f=e -_.r=null -_.a=f -_.b=null -_.c=g -_.d=h}, -a1D:function a1D(a,b){this.a=a -this.b=b}, -a1C:function a1C(a,b){this.a=a -this.b=b}, -a1B:function a1B(a,b){this.a=a -this.b=b}, -kW:function kW(a,b,c){this.a=a -this.b=b -this.c=c}, -alu:function alu(a,b){this.a=a -this.b=b}, -a3R:function a3R(a){this.a=a -this.b=$}, -I8:function I8(a,b,c){this.a=a -this.b=b -this.c=c}, -aAL(a){return new A.jw(a.gd4(a),A.b7(20,null,!1,t.av))}, -arr(a,b){var s=t.S,r=A.cf(s) -return new A.il(B.V,A.aml(),B.dH,A.z(s,t.GY),A.aK(s),A.z(s,t.G),r,a,b,A.z(s,t.C))}, -a_N(a,b){var s=t.S,r=A.cf(s) -return new A.hL(B.V,A.aml(),B.dH,A.z(s,t.GY),A.aK(s),A.z(s,t.G),r,a,b,A.z(s,t.C))}, -aq5(a,b){var s=t.S,r=A.cf(s) -return new A.hZ(B.V,A.aml(),B.dH,A.z(s,t.GY),A.aK(s),A.z(s,t.G),r,a,b,A.z(s,t.C))}, -u3:function u3(a,b){this.a=a -this.b=b}, -wq:function wq(){}, -Xx:function Xx(a,b){this.a=a -this.b=b}, -XB:function XB(a,b){this.a=a -this.b=b}, -XC:function XC(a,b){this.a=a -this.b=b}, -Xy:function Xy(a,b){this.a=a -this.b=b}, -Xz:function Xz(a){this.a=a}, -XA:function XA(a,b){this.a=a -this.b=b}, -il:function il(a,b,c,d,e,f,g,h,i,j){var _=this -_.Q=a -_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=null -_.db=b -_.dx=c -_.fr=_.dy=$ -_.go=_.fy=_.fx=null -_.id=$ -_.k1=d -_.k2=e -_.e=f -_.f=g -_.r=null -_.a=h -_.b=null -_.c=i -_.d=j}, -hL:function hL(a,b,c,d,e,f,g,h,i,j){var _=this -_.Q=a -_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=null -_.db=b -_.dx=c -_.fr=_.dy=$ -_.go=_.fy=_.fx=null -_.id=$ -_.k1=d -_.k2=e -_.e=f -_.f=g -_.r=null -_.a=h -_.b=null -_.c=i -_.d=j}, -hZ:function hZ(a,b,c,d,e,f,g,h,i,j){var _=this -_.Q=a -_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=null -_.db=b -_.dx=c -_.fr=_.dy=$ -_.go=_.fy=_.fx=null -_.id=$ -_.k1=d -_.k2=e -_.e=f -_.f=g -_.r=null -_.a=h -_.b=null -_.c=i -_.d=j}, -Ni:function Ni(){this.a=!1}, -uO:function uO(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=!1}, -hE:function hE(a,b,c,d){var _=this -_.x=_.w=_.r=_.f=_.e=null -_.y=a -_.a=b -_.b=null -_.c=c -_.d=d}, -a3M:function a3M(a,b){this.a=a -this.b=b}, -a3O:function a3O(){}, -a3N:function a3N(a,b,c){this.a=a -this.b=b -this.c=c}, -a3P:function a3P(){this.b=this.a=null}, -wr:function wr(a,b){this.a=a -this.b=b}, -cJ:function cJ(){}, -yl:function yl(){}, -qG:function qG(a,b){this.a=a -this.b=b}, -rk:function rk(){}, -a3X:function a3X(a,b){this.a=a -this.b=b}, -hf:function hf(a,b){this.a=a -this.b=b}, -Oj:function Oj(){}, -a9b(a){var s=t.S,r=A.cf(s) -return new A.fe(B.an,18,B.bv,A.z(s,t.G),r,a,null,A.z(s,t.C))}, -to:function to(a,b,c){this.a=a -this.b=b -this.c=c}, -mm:function mm(a,b){this.a=a -this.c=b}, -Fi:function Fi(){}, -fe:function fe(a,b,c,d,e,f,g,h){var _=this -_.af=_.M=_.C=_.bQ=_.cW=_.b5=_.aq=_.a6=_.ao=_.y2=_.y1=null -_.id=_.go=!1 -_.k2=_.k1=null -_.Q=a -_.at=b -_.ax=c -_.ch=_.ay=null -_.CW=!1 -_.cx=null -_.e=d -_.f=e -_.r=null -_.a=f -_.b=null -_.c=g -_.d=h}, -a9c:function a9c(a,b){this.a=a -this.b=b}, -a9d:function a9d(a,b){this.a=a -this.b=b}, -a9e:function a9e(a,b){this.a=a -this.b=b}, -a9f:function a9f(a){this.a=a}, -N5:function N5(a,b){this.a=a -this.b=b}, -p7:function p7(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1 -_.f=_.e=null}, -ZV:function ZV(a){this.a=a}, -ZW:function ZW(a,b){this.a=a -this.b=b}, -jv:function jv(a){this.a=a}, -tI:function tI(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -CD:function CD(a,b){this.a=a -this.b=b}, -jw:function jw(a,b){this.a=a -this.b=b -this.c=0}, -qJ:function qJ(a,b,c){var _=this -_.d=a -_.a=b -_.b=c -_.c=0}, -aBV(){return new A.wY(new A.a1J(),A.z(t.K,t.Qu))}, -LU:function LU(a,b){this.a=a -this.b=b}, -xQ:function xQ(a,b,c,d){var _=this -_.f=a -_.r=b -_.ch=c -_.a=d}, -a1J:function a1J(){}, -a1M:function a1M(){}, -Cd:function Cd(a){var _=this -_.d=$ -_.a=null -_.b=a -_.c=null}, -aej:function aej(){}, -aek:function aek(){}, -F5(a,b,c,d,e,f){return new A.vt(f,a,d,b,e,c,new A.PY(null,null,1/0,56),null)}, -azF(a,b){var s=A.ae(a).to.at -if(s==null)s=56 -return s+0}, -agQ:function agQ(a){this.b=a}, -PY:function PY(a,b,c,d){var _=this -_.e=a -_.f=b -_.a=c -_.b=d}, -vt:function vt(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.x=c -_.at=d -_.ch=e -_.db=f -_.fy=g -_.a=h}, -Ut:function Ut(a,b){this.a=a -this.b=b}, -B2:function B2(a){var _=this -_.d=null -_.e=!1 -_.a=null -_.b=a -_.c=null}, -aaX:function aaX(){}, -MD:function MD(a,b){this.c=a -this.a=b}, -Qe:function Qe(a,b,c,d){var _=this -_.u=null -_.a8=a -_.aD=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -acn:function acn(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this -_.cx=a -_.db=_.cy=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s}, -azE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){return new A.pR(d,b==null?null:b,g,f,i,j,l,k,h,a,n,e,o,q,r,p,m,c)}, -pR:function pR(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r}, -MC:function MC(){}, -aGw(a,b){var s,r,q,p,o=A.bx("maxValue") -for(s=null,r=0;r<4;++r){q=a[r] -p=b.$1(q) -if(s==null||p>s){o.b=q -s=p}}return o.bm()}, -xT:function xT(a,b){var _=this -_.c=!0 -_.r=_.f=_.e=_.d=null -_.a=a -_.b=b}, -a1K:function a1K(a,b){this.a=a -this.b=b}, -p8:function p8(a,b){this.a=a -this.b=b}, -kN:function kN(a,b){this.a=a -this.b=b}, -r7:function r7(a,b){var _=this -_.e=!0 -_.r=_.f=$ -_.a=a -_.b=b}, -a1L:function a1L(a,b){this.a=a -this.b=b}, -azI(a){switch(a.a){case 0:case 1:case 3:case 5:return B.Bu -case 2:case 4:return B.Bv}}, -Fe:function Fe(a){this.a=a}, -Fd:function Fd(a){this.a=a}, -UM:function UM(a,b){this.a=a -this.b=b}, -xR:function xR(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -OX:function OX(){}, -vB:function vB(a,b,c){this.a=a -this.b=b -this.c=c}, -MO:function MO(){}, -aom(a,b,c,d){return new A.vC(b,c,a,d,null,null)}, -arx(a,b){if(a==null)a=B.vH -return a.r==null?a.aaF(b):a}, -Fp:function Fp(a,b){this.a=a -this.b=b}, -pV:function pV(a,b){this.a=a -this.b=b}, -vC:function vC(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.y=e -_.a=f}, -MQ:function MQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.a=s}, -RQ:function RQ(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -RR:function RR(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h}, -OJ:function OJ(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h}, -B7:function B7(a,b,c,d,e){var _=this -_.d=a -_.e=$ -_.f=b -_.r=null -_.bP$=c -_.aw$=d -_.a=null -_.b=e -_.c=null}, -abh:function abh(){}, -abg:function abg(a,b){this.a=a -this.b=b}, -MK:function MK(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -alo:function alo(a){this.a=a}, -abR:function abR(){}, -Q4:function Q4(a,b,c){this.b=a -this.c=b -this.a=c}, -E3:function E3(){}, -ak2(a){var s -a.L(t.i1) -s=A.ae(a) -return s.xr}, -vD:function vD(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -MP:function MP(){}, -azQ(a,b,c){var s,r=A.A(a.a,b.a,c),q=A.Z(a.b,b.b,c),p=A.A(a.c,b.c,c),o=A.Z(a.d,b.d,c),n=A.e8(a.e,b.e,c) -if(c<0.5)s=a.f -else s=b.f -return new A.vE(r,q,p,o,n,s,A.vG(a.r,b.r,c))}, -vE:function vE(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -MR:function MR(){}, -z0:function z0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.c=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.Q=g -_.as=h -_.at=i -_.ax=j -_.ay=k -_.ch=l -_.cy=m -_.db=n -_.dy=o -_.fr=p -_.fx=q -_.fy=r -_.go=s -_.id=a0 -_.a=a1}, -Q8:function Q8(a,b){var _=this -_.iv$=a -_.a=null -_.b=b -_.c=null}, -Oy:function Oy(a,b,c){this.e=a -this.c=b -this.a=c}, -CO:function CO(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -afy:function afy(a,b){this.a=a -this.b=b}, -SQ:function SQ(){}, -azW(a,b,c){var s,r,q,p,o,n,m,l,k=c<0.5 -if(k)s=a.a -else s=b.a -if(k)r=a.b -else r=b.b -if(k)q=a.c -else q=b.c -p=A.Z(a.d,b.d,c) -o=A.Z(a.e,b.e,c) -n=A.eo(a.f,b.f,c) -if(k)m=a.r -else m=b.r -if(k)l=a.w -else l=b.w -if(k)k=a.x -else k=b.x -return new A.vK(s,r,q,p,o,n,m,l,k)}, -vK:function vK(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -MT:function MT(){}, -aoy(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.bp(s,c,g,k,m,q,d,l,i,f,h,o,n,j,a0,r,b,e,a,p)}, -ak4(a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=null,a3=a4==null -if(a3&&a5==null)return a2 -s=a3?a2:a4.a -r=a5==null -q=r?a2:a5.a -q=A.iG(s,q,a6,A.auc(),t.p8) -s=a3?a2:a4.b -p=r?a2:a5.b -o=t.MH -p=A.iG(s,p,a6,A.eh(),o) -s=a3?a2:a4.c -s=A.iG(s,r?a2:a5.c,a6,A.eh(),o) -n=a3?a2:a4.d -n=A.iG(n,r?a2:a5.d,a6,A.eh(),o) -m=a3?a2:a4.e -m=A.iG(m,r?a2:a5.e,a6,A.eh(),o) -l=a3?a2:a4.f -o=A.iG(l,r?a2:a5.f,a6,A.eh(),o) -l=a3?a2:a4.r -k=r?a2:a5.r -k=A.iG(l,k,a6,A.auf(),t.PM) -l=a3?a2:a4.w -j=r?a2:a5.w -j=A.iG(l,j,a6,A.aHG(),t.pc) -l=a3?a2:a4.x -i=r?a2:a5.x -h=t.tW -i=A.iG(l,i,a6,A.amA(),h) -l=a3?a2:a4.y -l=A.iG(l,r?a2:a5.y,a6,A.amA(),h) -g=a3?a2:a4.z -h=A.iG(g,r?a2:a5.z,a6,A.amA(),h) -g=a3?a2:a4.Q -g=A.azZ(g,r?a2:a5.Q,a6) -f=a3?a2:a4.as -f=A.azY(f,r?a2:a5.as,a6) -e=a6<0.5 -if(e)d=a3?a2:a4.at -else d=r?a2:a5.at -if(e)c=a3?a2:a4.ax -else c=r?a2:a5.ax -if(e)b=a3?a2:a4.ay -else b=r?a2:a5.ay -if(e)a=a3?a2:a4.ch -else a=r?a2:a5.ch -if(e)a0=a3?a2:a4.CW -else a0=r?a2:a5.CW -a1=a3?a2:a4.cx -a1=A.ajY(a1,r?a2:a5.cx,a6) -if(e)a3=a3?a2:a4.cy -else a3=r?a2:a5.cy -return A.aoy(a1,a,p,k,a0,l,s,h,i,d,n,j,m,f,g,a3,o,b,q,c)}, -iG(a,b,c,d,e){if(a==null&&b==null)return null -return new A.BZ(a,b,c,d,e.j("BZ<0>"))}, -azZ(a,b,c){if(a==null&&b==null)return null -return new A.OO(a,b,c)}, -azY(a,b,c){if(a==null&&b==null)return null -return new A.ON(a,b,c)}, -bp:function bp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0}, -BZ:function BZ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -OO:function OO(a,b,c){this.a=a -this.b=b -this.c=c}, -ON:function ON(a,b,c){this.a=a -this.b=b -this.c=c}, -MV:function MV(){}, -azX(a,b,c,d){var s -if(d<=1)return a -else if(d>=3)return c -else if(d<=2){s=A.eo(a,b,d-1) -s.toString -return s}s=A.eo(b,c,d-2) -s.toString -return s}, -vL:function vL(){}, -MU:function MU(a,b,c,d){var _=this -_.f=_.e=_.d=null -_.bP$=a -_.aw$=b -_.iv$=c -_.a=null -_.b=d -_.c=null}, -abJ:function abJ(a,b,c){this.a=a -this.b=b -this.c=c}, -abK:function abK(a,b){this.a=a -this.b=b}, -abL:function abL(a,b,c){this.a=a -this.b=b -this.c=c}, -abo:function abo(){}, -abp:function abp(){}, -abq:function abq(){}, -abB:function abB(){}, -abC:function abC(){}, -abD:function abD(){}, -abE:function abE(){}, -abF:function abF(){}, -abG:function abG(){}, -abH:function abH(){}, -abI:function abI(){}, -abr:function abr(){}, -abz:function abz(a){this.a=a}, -abm:function abm(a){this.a=a}, -abA:function abA(a){this.a=a}, -abl:function abl(a){this.a=a}, -abs:function abs(){}, -abt:function abt(){}, -abu:function abu(){}, -abv:function abv(){}, -abw:function abw(){}, -abx:function abx(){}, -aby:function aby(a){this.a=a}, -abn:function abn(){}, -P8:function P8(a){this.a=a}, -Oz:function Oz(a,b,c){this.e=a -this.c=b -this.a=c}, -CP:function CP(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -afz:function afz(a,b){this.a=a -this.b=b}, -Sr:function Sr(){}, -E4:function E4(){}, -Fx:function Fx(a,b){this.a=a -this.b=b}, -Fy:function Fy(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.as=f -_.at=g -_.ax=h}, -MW:function MW(){}, -FD:function FD(a,b,c,d){var _=this -_.f=a -_.y=b -_.Q=c -_.a=d}, -aco:function aco(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h}, -q_:function q_(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -N_:function N_(){}, -ak6(a,b,c,d,e){if(a==null&&b==null)return null -return new A.C3(a,b,c,d,e.j("C3<0>"))}, -aA1(a,b,c){if(a==null&&b==null)return null -a.toString -b.toString -return A.aE(a,b,c)}, -vP:function vP(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -C3:function C3(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -N0:function N0(){}, -aA6(a,b,c){var s,r,q=A.A(a.a,b.a,c),p=A.A(a.b,b.b,c),o=A.A(a.c,b.c,c),n=A.A(a.d,b.d,c),m=A.A(a.e,b.e,c),l=A.A(a.f,b.f,c),k=A.A(a.r,b.r,c),j=A.A(a.x,b.x,c),i=A.eo(a.y,b.y,c),h=A.eo(a.z,b.z,c),g=A.aA5(a.Q,b.Q,c),f=A.aA4(a.as,b.as,c),e=A.bj(a.at,b.at,c),d=A.bj(a.ax,b.ax,c) -if(c<0.5){s=a.ay -if(s==null)s=B.ac}else{s=b.ay -if(s==null)s=B.ac}r=A.Z(a.ch,b.ch,c) -return new A.vQ(q,p,o,n,m,l,k,j,i,h,g,f,e,d,s,r,A.Z(a.CW,b.CW,c))}, -aA5(a,b,c){var s=a==null -if(s&&b==null)return null -if(s){s=b.a -return A.aE(new A.ds(A.ak(0,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255),0,B.br),b,c)}if(b==null){s=a.a -return A.aE(new A.ds(A.ak(0,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255),0,B.br),a,c)}return A.aE(a,b,c)}, -aA4(a,b,c){if(a==null&&b==null)return null -return t.KX.a(A.e8(a,b,c))}, -vQ:function vQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=o -_.ch=p -_.CW=q}, -N3:function N3(){}, -W0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){return new A.Gl(b,a0,k,a1,l,a3,m,a4,n,b0,q,b1,r,c,h,d,i,a,g,a7,o,a9,p,s,a6,f,j,e,a8,a2,a5)}, -Gl:function Gl(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1}, -N4:function N4(){}, -lH:function lH(a,b){this.b=a -this.a=b}, -aoI(a,b,c,d,e){if(a==null&&b==null)return null -return new A.C2(a,b,c,d,e.j("C2<0>"))}, -wa:function wa(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k}, -C2:function C2(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Nt:function Nt(){}, -acr:function acr(){}, -aFr(a,b,c,d){return A.iQ(!1,d,A.cn(B.dX,b,null))}, -aAz(a,b,c,d,e,f,g,h,i,j){var s,r,q,p,o,n,m=null -A.lG(f,B.bp,t.c4).toString -s=A.b([],t.Zt) -r=$.a5 -q=A.yP(B.cj) -p=A.b([],t.wi) -o=$.b4() -n=$.a5 -return new A.wf(new A.WN(e,h,!0),!0,"Dismiss",b,B.cY,A.aHE(),a,m,s,new A.bC(m,j.j("bC>")),new A.bC(m,t.A),new A.IU(),m,new A.aI(new A.a4(r,j.j("a4<0?>")),j.j("aI<0?>")),q,p,B.l7,new A.d7(m,o),new A.aI(new A.a4(n,j.j("a4<0?>")),j.j("aI<0?>")),j.j("wf<0>"))}, -arA(a){return new A.acp(a,A.ae(a).R8,null,24,B.eG,B.M,null,null)}, -GM:function GM(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.a=h}, -pP:function pP(a,b,c){this.c=a -this.f=b -this.a=c}, -wf:function wf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.co=a -_.c5=b -_.e1=c -_.al=d -_.fK=e -_.ho=f -_.ek=g -_.dy=h -_.fr=!1 -_.fy=_.fx=null -_.go=i -_.id=j -_.k1=k -_.k2=l -_.k3=$ -_.k4=null -_.ok=$ -_.eh$=m -_.y=n -_.z=!1 -_.as=_.Q=null -_.at=o -_.ch=_.ay=null -_.e=p -_.a=null -_.b=q -_.c=r -_.d=s -_.$ti=a0}, -WN:function WN(a,b,c){this.a=a -this.b=b -this.c=c}, -acp:function acp(a,b,c,d,e,f,g,h){var _=this -_.r=a -_.w=b -_.a=c -_.b=d -_.c=e -_.d=f -_.e=g -_.f=h}, -qi:function qi(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -ND:function ND(){}, -aoU(a){return new A.ng(a,null,null)}, -aAI(a,b,c){var s,r,q=A.aoV(a).a -if(q==null)q=A.ae(a).fr -s=q -r=c -return new A.ds(s,r,B.br)}, -ng:function ng(a,b,c){this.c=a -this.e=b -this.a=c}, -aoV(a){var s -a.L(t.Jj) -s=A.ae(a) -return s.C}, -wk:function wk(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -NH:function NH(){}, -aAO(a,b,c){var s=A.A(a.a,b.a,c),r=A.A(a.b,b.b,c),q=A.Z(a.c,b.c,c),p=A.e8(a.d,b.d,c) -return new A.wu(s,r,q,p,A.Z(a.e,b.e,c))}, -wu:function wu(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -NO:function NO(){}, -ap1(a,b){var s=null -return new A.GS(b,s,s,s,s,B.u,s,!1,a,s)}, -aGG(a){var s=A.e4(a) -s=s==null?null:s.c -return A.azX(B.fF,B.n1,B.Bf,s==null?1:s)}, -GS:function GS(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -NR:function NR(a,b){this.a=a -this.b=b}, -NT:function NT(a,b){this.a=a -this.b=b}, -NV:function NV(a){this.a=a}, -NS:function NS(a){this.a=a}, -NU:function NU(a,b){this.a=a -this.b=b}, -Sv:function Sv(){}, -Sw:function Sw(){}, -Sx:function Sx(){}, -Sy:function Sy(){}, -Sz:function Sz(){}, -aAV(a,b,c){return new A.wy(A.ak4(a.a,b.a,c))}, -wy:function wy(a){this.a=a}, -NW:function NW(){}, -aB2(a,b,c){var s=A.A(a.a,b.a,c),r=A.A(a.b,b.b,c),q=A.eo(a.c,b.c,c),p=A.ajY(a.d,b.d,c),o=A.eo(a.e,b.e,c),n=A.A(a.f,b.f,c),m=A.A(a.r,b.r,c),l=A.A(a.w,b.w,c) -return new A.wG(s,r,q,p,o,n,m,l,A.A(a.x,b.x,c))}, -wG:function wG(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -O_:function O_(){}, -wM:function wM(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.b=f -_.a=g}, -ace:function ace(){}, -u6:function u6(a,b){this.a=a -this.b=b}, -Hf:function Hf(a,b,c,d){var _=this -_.c=a -_.z=b -_.k1=c -_.a=d}, -N1:function N1(a,b){this.c=a -this.a=b}, -CG:function CG(a,b,c,d){var _=this -_.u=null -_.a8=a -_.aD=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -aei:function aei(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this -_.db=a -_.dx=b -_.dy=c -_.fr=d -_.a=e -_.b=f -_.c=g -_.d=h -_.e=i -_.f=j -_.r=k -_.w=l -_.x=m -_.y=n -_.z=o -_.Q=p -_.as=q -_.at=r -_.ax=s -_.ay=a0 -_.ch=a1 -_.CW=a2 -_.cx=a3 -_.cy=a4}, -arw(a,b,c,d,e){return new A.B1(c,d,a,b,new A.aM(A.b([],t.W),t.jc),new A.aM(A.b([],t.b),t.fy),0,e.j("B1<0>"))}, -Z1:function Z1(){}, -a8G:function a8G(){}, -YM:function YM(){}, -YL:function YL(){}, -acy:function acy(){}, -Z0:function Z0(){}, -ag3:function ag3(){}, -B1:function B1(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.x=b -_.a=c -_.b=d -_.d=_.c=null -_.d2$=e -_.bj$=f -_.jq$=g -_.$ti=h}, -SA:function SA(){}, -SB:function SB(){}, -aB3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.qA(k,a,i,m,a0,c,j,n,b,l,q,d,o,r,s,p,g,e,f,h)}, -aB4(a0,a1,a2){var s,r,q,p,o,n,m,l,k=A.A(a0.a,a1.a,a2),j=A.A(a0.b,a1.b,a2),i=A.A(a0.c,a1.c,a2),h=A.A(a0.d,a1.d,a2),g=A.A(a0.e,a1.e,a2),f=A.Z(a0.f,a1.f,a2),e=A.Z(a0.r,a1.r,a2),d=A.Z(a0.w,a1.w,a2),c=A.Z(a0.x,a1.x,a2),b=A.Z(a0.y,a1.y,a2),a=A.e8(a0.z,a1.z,a2) -if(a2<0.5)s=a0.Q -else s=a1.Q -r=A.Z(a0.as,a1.as,a2) -q=A.vG(a0.at,a1.at,a2) -p=A.vG(a0.ax,a1.ax,a2) -o=A.vG(a0.ay,a1.ay,a2) -n=A.vG(a0.ch,a1.ch,a2) -m=A.Z(a0.CW,a1.CW,a2) -l=A.eo(a0.cx,a1.cx,a2) -return A.aB3(j,c,f,s,m,l,n,A.bj(a0.cy,a1.cy,a2),i,e,k,b,h,d,r,o,a,q,p,g)}, -qA:function qA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0}, -O6:function O6(){}, -akq(a,b,c,d,e){return new A.HJ(c,b,a,d,e,null)}, -HJ:function HJ(a,b,c,d,e,f){var _=this -_.c=a -_.w=b -_.z=c -_.ax=d -_.cx=e -_.a=f}, -lw:function lw(a,b,c,d,e,f,g,h,i,j){var _=this -_.y=a -_.z=b -_.Q=c -_.as=d -_.at=e -_.ax=f -_.ch=_.ay=$ -_.CW=!0 -_.e=g -_.a=h -_.b=i -_.c=j -_.d=!1}, -aG5(a,b,c){if(c!=null)return c -if(b)return new A.ahV(a) -return null}, -ahV:function ahV(a){this.a=a}, -adv:function adv(){}, -x9:function x9(a,b,c,d,e,f,g,h,i,j){var _=this -_.y=a -_.z=b -_.Q=c -_.as=d -_.at=e -_.ax=f -_.db=_.cy=_.cx=_.CW=_.ch=_.ay=$ -_.e=g -_.a=h -_.b=i -_.c=j -_.d=!1}, -aG4(a,b,c){if(c!=null)return c -if(b)return new A.ahU(a) -return null}, -aGa(a,b,c,d){var s,r,q,p,o,n -if(b){if(c!=null){s=c.$0() -r=new A.L(s.c-s.a,s.d-s.b)}else{s=a.k1 -s.toString -r=s}q=d.a9(0,B.j).gcE() -p=d.a9(0,new A.m(0+r.a,0)).gcE() -o=d.a9(0,new A.m(0,0+r.b)).gcE() -n=d.a9(0,r.LL(0,B.j)).gcE() -return Math.ceil(Math.max(Math.max(q,p),Math.max(o,n)))}return 35}, -ahU:function ahU(a){this.a=a}, -adw:function adw(){}, -xa:function xa(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.y=a -_.z=b -_.Q=c -_.as=d -_.at=e -_.ax=f -_.ay=g -_.cx=_.CW=_.ch=$ -_.cy=null -_.e=h -_.a=i -_.b=j -_.c=k -_.d=!1}, -aps(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){return new A.qQ(d,a1,a3,a4,a2,p,a0,r,s,o,e,l,a6,b,f,i,m,k,a5,a7,a8,g,!1,q,!1,j,c,n)}, -iV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0){var s=null -return new A.qR(c,p,s,s,s,k,o,m,n,j,!0,B.aF,s,s,d,f,i,h,q,r,a0,e!==!1,!1,l,!1,g,b,s)}, -lz:function lz(){}, -qS:function qS(){}, -CB:function CB(a,b,c){this.f=a -this.b=b -this.a=c}, -qQ:function qQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.a=a8}, -BS:function BS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.a=b1}, -pf:function pf(a,b){this.a=a -this.b=b}, -BR:function BR(a,b,c,d){var _=this -_.e=_.d=null -_.f=!1 -_.r=a -_.w=$ -_.x=b -_.y=!1 -_.cV$=c -_.a=null -_.b=d -_.c=null}, -adt:function adt(){}, -adu:function adu(a,b){this.a=a -this.b=b}, -adr:function adr(a,b){this.a=a -this.b=b}, -ads:function ads(a){this.a=a}, -qR:function qR(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.a=a8}, -Ec:function Ec(){}, -h6:function h6(){}, -js:function js(a,b){this.b=a -this.a=b}, -aB5(a){if(a===-1)return"FloatingLabelAlignment.start" -if(a===0)return"FloatingLabelAlignment.center" -return"FloatingLabelAlignment(x: "+B.f.V(a,1)+")"}, -BT:function BT(a){var _=this -_.a=null -_.y1$=_.b=0 -_.y2$=a -_.a6$=_.ao$=0 -_.aq$=!1}, -BU:function BU(a,b){this.a=a -this.b=b}, -Ow:function Ow(a,b,c,d,e,f,g,h,i){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.a=i}, -B6:function B6(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -MN:function MN(a,b,c){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.bP$=a -_.aw$=b -_.a=null -_.b=c -_.c=null}, -QU:function QU(a,b,c){this.e=a -this.c=b -this.a=c}, -BL:function BL(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h}, -BM:function BM(a,b,c){var _=this -_.d=$ -_.f=_.e=null -_.fe$=a -_.cz$=b -_.a=null -_.b=c -_.c=null}, -ad8:function ad8(){}, -qC:function qC(a,b){this.a=a -this.b=b}, -Hg:function Hg(){}, -dF:function dF(a,b){this.a=a -this.b=b}, -Nw:function Nw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1}, -aft:function aft(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -CJ:function CJ(a,b,c,d,e,f,g,h){var _=this -_.C=a -_.M=b -_.af=c -_.a7=d -_.q=e -_.D=f -_.b6=null -_.hT$=g -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=h -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -afx:function afx(a){this.a=a}, -afw:function afw(a,b){this.a=a -this.b=b}, -afv:function afv(a,b){this.a=a -this.b=b}, -afu:function afu(a,b,c){this.a=a -this.b=b -this.c=c}, -Ny:function Ny(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -nO:function nO(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -BV:function BV(a,b,c,d){var _=this -_.e=_.d=$ -_.f=a -_.r=null -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null}, -ady:function ady(){}, -adx:function adx(a,b){this.a=a -this.b=b}, -lx:function lx(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.ao=c8 -_.a6=c9 -_.aq=d0}, -HQ:function HQ(){}, -Ox:function Ox(){}, -E2:function E2(){}, -Su:function Su(){}, -Eb:function Eb(){}, -Ed:function Ed(){}, -ST:function ST(){}, -aBS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.xC(b,k,l,i,e,m,a,n,j,d,g,f,c,h,o)}, -aBT(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=c<0.5 -if(e)s=a.a -else s=b.a -r=A.e8(a.b,b.b,c) -if(e)q=a.c -else q=b.c -p=A.A(a.d,b.d,c) -o=A.A(a.e,b.e,c) -n=A.A(a.f,b.f,c) -m=A.eo(a.r,b.r,c) -l=A.A(a.w,b.w,c) -k=A.A(a.x,b.x,c) -j=A.Z(a.y,b.y,c) -i=A.Z(a.z,b.z,c) -h=A.Z(a.Q,b.Q,c) -if(e)g=a.as -else g=b.as -if(e)f=a.at -else f=b.at -if(e)e=a.ax -else e=b.ax -return A.aBS(m,s,g,j,o,h,i,f,p,k,r,q,n,l,e)}, -xC:function xC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -OP:function OP(){}, -hS(a,b,c,d,e,f,g,h,i,j,k,l,m){return new A.xP(d,m,g,f,i,k,l,j,!0,e,a,c,h)}, -k9:function k9(a,b){this.a=a -this.b=b}, -xP:function xP(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.a=m}, -P0:function P0(a,b,c,d){var _=this -_.d=a -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null}, -aeA:function aeA(a){this.a=a}, -CN:function CN(a,b,c,d){var _=this -_.u=a -_.aD=b -_.aK=null -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Ov:function Ov(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -k_:function k_(){}, -oF:function oF(a,b){this.a=a -this.b=b}, -Ce:function Ce(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.c=i -_.d=j -_.e=k -_.a=l}, -OY:function OY(a,b,c){var _=this -_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.fe$=a -_.cz$=b -_.a=null -_.b=c -_.c=null}, -ael:function ael(){}, -aem:function aem(){}, -aen:function aen(){}, -aeo:function aeo(){}, -Db:function Db(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -QV:function QV(a,b,c){this.b=a -this.c=b -this.a=c}, -SI:function SI(){}, -OZ:function OZ(){}, -GG:function GG(){}, -di(a,b,c){if(c.j("aU<0>").b(a))return a.O(b) -return a}, -cp:function cp(a,b){this.a=a -this.b=b}, -Ii:function Ii(){}, -Bx:function Bx(a,b){this.a=a -this.c=b}, -aU:function aU(){}, -ee:function ee(a,b){this.a=a -this.$ti=b}, -fh:function fh(a,b){this.a=a -this.$ti=b}, -xV:function xV(){}, -a1P:function a1P(a,b,c){this.a=a -this.b=b -this.c=c}, -a1N:function a1N(){}, -a1O:function a1O(){}, -aCd(a,b,c){var s,r=A.Z(a.a,b.a,c),q=A.A(a.b,b.b,c),p=A.Z(a.c,b.c,c),o=A.A(a.d,b.d,c),n=A.e8(a.e,b.e,c),m=A.apY(a.f,b.f,c,A.auc(),t.p8),l=A.apY(a.r,b.r,c,A.aI0(),t.lF) -if(c<0.5)s=a.w -else s=b.w -return new A.yb(r,q,p,o,n,m,l,s)}, -apY(a,b,c,d,e){if(a==null&&b==null)return null -return new A.C1(a,b,c,d,e.j("C1<0>"))}, -yb:function yb(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -C1:function C1(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Pe:function Pe(){}, -aCe(a,b,c){var s,r,q,p=A.A(a.a,b.a,c),o=A.Z(a.b,b.b,c),n=A.bj(a.c,b.c,c),m=A.bj(a.d,b.d,c),l=A.iU(a.e,b.e,c),k=A.iU(a.f,b.f,c),j=A.Z(a.r,b.r,c),i=c<0.5 -if(i)s=a.w -else s=b.w -if(i)i=a.x -else i=b.x -r=A.A(a.y,b.y,c) -q=A.Z(a.z,b.z,c) -return new A.yc(p,o,n,m,l,k,j,s,i,r,q,A.Z(a.Q,b.Q,c))}, -yc:function yc(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -Pf:function Pf(){}, -aCj(a,b,c){return new A.yp(A.ak4(a.a,b.a,c))}, -yp:function yp(a){this.a=a}, -Pr:function Pr(){}, -akG(a,b,c){var s=null,r=A.b([],t.Zt),q=$.a5,p=A.yP(B.cj),o=A.b([],t.wi),n=$.b4(),m=$.a5,l=b==null?B.l7:b -return new A.o3(a,!1,s,r,new A.bC(s,c.j("bC>")),new A.bC(s,t.A),new A.IU(),s,new A.aI(new A.a4(q,c.j("a4<0?>")),c.j("aI<0?>")),p,o,l,new A.d7(s,n),new A.aI(new A.a4(m,c.j("a4<0?>")),c.j("aI<0?>")),c.j("o3<0>"))}, -o3:function o3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.c5=a -_.ao=b -_.dy=c -_.fr=!1 -_.fy=_.fx=null -_.go=d -_.id=e -_.k1=f -_.k2=g -_.k3=$ -_.k4=null -_.ok=$ -_.eh$=h -_.y=i -_.z=!1 -_.as=_.Q=null -_.at=j -_.ch=_.ay=null -_.e=k -_.a=null -_.b=l -_.c=m -_.d=n -_.$ti=o}, -xU:function xU(){}, -Cf:function Cf(){}, -Sp:function Sp(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -ahq:function ahq(){}, -ahr:function ahr(){}, -ahs:function ahs(){}, -aht:function aht(){}, -ps:function ps(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -ahp:function ahp(a){this.a=a}, -pt:function pt(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -kg:function kg(){}, -Mk:function Mk(){}, -Gu:function Gu(){}, -IV:function IV(){}, -a37:function a37(a){this.a=a}, -Pt:function Pt(){}, -aCA(a,b,c){var s,r=A.A(a.a,b.a,c),q=A.e8(a.b,b.b,c),p=A.Z(a.c,b.c,c),o=A.bj(a.d,b.d,c),n=c<0.5 -if(n)s=a.e -else s=b.e -if(n)n=a.f -else n=b.f -return new A.yJ(r,q,p,o,s,n)}, -yJ:function yJ(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -PX:function PX(){}, -aEp(a,b,c,d,e,f,g,h){var s=g!=null,r=s?-1.5707963267948966:-1.5707963267948966+f*3/2*3.141592653589793+d*3.141592653589793*2+c*0.5*3.141592653589793 -return new A.tQ(a,h,g,b,f,c,d,e,r,s?B.e.G(g,0,1)*6.282185307179586:Math.max(b*3/2*3.141592653589793-f*3/2*3.141592653589793,0.001),null)}, -Mo:function Mo(a,b){this.a=a -this.b=b}, -JH:function JH(){}, -tQ:function tQ(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.a=k}, -ld:function ld(a,b,c,d,e,f,g,h){var _=this -_.z=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.a=h}, -Bb:function Bb(a,b,c){var _=this -_.d=$ -_.fe$=a -_.cz$=b -_.a=null -_.b=c -_.c=null}, -abS:function abS(a){this.a=a}, -Qa:function Qa(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.as=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.a=l}, -rs:function rs(a,b,c,d,e,f,g,h){var _=this -_.z=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.a=h}, -Qb:function Qb(a,b,c){var _=this -_.z=_.y=$ -_.Q=null -_.d=$ -_.fe$=a -_.cz$=b -_.a=null -_.b=c -_.c=null}, -afs:function afs(a){this.a=a}, -E6:function E6(){}, -aCO(a,b,c){var s=A.A(a.a,b.a,c),r=A.A(a.b,b.b,c),q=A.Z(a.c,b.c,c),p=A.A(a.d,b.d,c) -return new A.yN(s,r,q,p,A.A(a.e,b.e,c))}, -akV(a){var s -a.L(t.C0) -s=A.ae(a) -return s.bI}, -yN:function yN(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -PZ:function PZ(){}, -aqs(a,b,c,d,e){if(a==null&&b==null)return null -return new A.C0(a,b,c,d,e.j("C0<0>"))}, -yW:function yW(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -C0:function C0(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Q5:function Q5(){}, -kQ:function kQ(a,b){this.a=a -this.b=b}, -JV:function JV(a,b){this.a=a -this.b=b}, -z3:function z3(a,b,c){this.c=a -this.f=b -this.a=c}, -z4:function z4(a,b,c){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.as=_.Q=_.y=null -_.bP$=a -_.aw$=b -_.a=null -_.b=c -_.c=null}, -a4z:function a4z(a){this.a=a}, -a4x:function a4x(a,b){this.a=a -this.b=b}, -a4y:function a4y(a){this.a=a}, -a4C:function a4C(a,b){this.a=a -this.b=b}, -a4A:function a4A(a){this.a=a}, -a4B:function a4B(a,b){this.a=a -this.b=b}, -a4D:function a4D(a,b){this.a=a -this.b=b}, -CF:function CF(){}, -rz(a,b,c){return new A.zz(a,b,c,null)}, -a66(a){var s=a.ju(t.Np) -if(s!=null)return s -throw A.c(A.Z3(A.b([A.wD("Scaffold.of() called with a context that does not contain a Scaffold."),A.bi("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."),A.YH('There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https://api.flutter.dev/flutter/material/Scaffold/of.html'),A.YH("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."),a.abl("The context used was")],t.F)))}, -eU:function eU(a,b){this.a=a -this.b=b}, -zB:function zB(a,b){this.c=a -this.a=b}, -zC:function zC(a,b,c,d,e,f){var _=this -_.d=a -_.e=b -_.r=c -_.y=_.x=_.w=null -_.bP$=d -_.aw$=e -_.a=null -_.b=f -_.c=null}, -a6_:function a6_(a,b){this.a=a -this.b=b}, -a60:function a60(a,b){this.a=a -this.b=b}, -a5W:function a5W(a){this.a=a}, -a5X:function a5X(a){this.a=a}, -a5Z:function a5Z(a,b,c){this.a=a -this.b=b -this.c=c}, -a5Y:function a5Y(a,b,c){this.a=a -this.b=b -this.c=c}, -D_:function D_(a,b,c){this.f=a -this.b=b -this.a=c}, -a61:function a61(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.e=d -_.f=e -_.r=f -_.w=g -_.y=h}, -KA:function KA(a,b){this.a=a -this.b=b}, -QJ:function QJ(a,b,c){var _=this -_.a=a -_.b=null -_.c=b -_.y1$=0 -_.y2$=c -_.a6$=_.ao$=0 -_.aq$=!1}, -B5:function B5(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=e -_.c=f -_.d=g}, -MM:function MM(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -ag1:function ag1(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.c=_.b=null}, -BB:function BB(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -BC:function BC(a,b,c){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.y=null -_.bP$=a -_.aw$=b -_.a=null -_.b=c -_.c=null}, -acD:function acD(a,b){this.a=a -this.b=b}, -zz:function zz(a,b,c,d){var _=this -_.e=a -_.f=b -_.ch=c -_.a=d}, -rA:function rA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=a -_.e=b -_.f=null -_.r=c -_.w=d -_.y=_.x=null -_.z=e -_.ax=_.at=_.as=null -_.ay=f -_.ch=null -_.CW=g -_.cy=_.cx=$ -_.dx=_.db=null -_.fr=_.dy=$ -_.fx=!1 -_.fy=h -_.br$=i -_.em$=j -_.hQ$=k -_.d0$=l -_.cF$=m -_.bP$=n -_.aw$=o -_.a=null -_.b=p -_.c=null}, -a65:function a65(a,b,c){this.a=a -this.b=b -this.c=c}, -a63:function a63(a,b){this.a=a -this.b=b}, -a62:function a62(a,b){this.a=a -this.b=b}, -a64:function a64(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -zA:function zA(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -QK:function QK(a,b,c){this.f=a -this.b=b -this.a=c}, -ag2:function ag2(){}, -D0:function D0(){}, -D1:function D1(){}, -D2:function D2(){}, -E9:function E9(){}, -aqJ(a,b){return new A.KI(a,b,null)}, -KI:function KI(a,b,c){this.c=a -this.d=b -this.a=c}, -ur:function ur(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.fy=a -_.go=b -_.c=c -_.d=d -_.e=e -_.w=f -_.x=g -_.as=h -_.ch=i -_.CW=j -_.cx=k -_.cy=l -_.db=m -_.dx=n -_.a=o}, -P_:function P_(a,b,c,d){var _=this -_.ch=$ -_.cx=_.CW=!1 -_.dx=_.db=_.cy=$ -_.f=_.e=_.d=null -_.w=_.r=$ -_.x=a -_.y=!1 -_.z=$ -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null}, -aet:function aet(a){this.a=a}, -aeq:function aeq(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aes:function aes(a,b,c){this.a=a -this.b=b -this.c=c}, -aer:function aer(a,b,c){this.a=a -this.b=b -this.c=c}, -aep:function aep(a){this.a=a}, -aez:function aez(a){this.a=a}, -aey:function aey(a){this.a=a}, -aex:function aex(a){this.a=a}, -aev:function aev(a){this.a=a}, -aew:function aew(a){this.a=a}, -aeu:function aeu(a){this.a=a}, -zO(a,b,c,d,e){if(a==null&&b==null)return null -return new A.C4(a,b,c,d,e.j("C4<0>"))}, -aGr(a,b,c){return c<0.5?a:b}, -zN:function zN(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -C4:function C4(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -QO:function QO(){}, -aEP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var s=null,r=new A.uE(m,A.LP(s,s,s,s,s,B.bm,s,s,1,B.aA),p,i,k,a,e,l,o,j,h,g,f,n,c,d,A.aj()) -r.gar() -r.gaE() -r.CW=!1 -r.Y7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) -return r}, -R4:function R4(a,b){this.a=a -this.b=b}, -A_:function A_(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.r=c -_.w=d -_.a=e}, -De:function De(a,b,c,d,e){var _=this -_.r=_.f=_.e=_.d=$ -_.w=null -_.x=a -_.z=$ -_.Q=null -_.as=!1 -_.at=null -_.ay=_.ax=!1 -_.ch=b -_.CW=null -_.bP$=c -_.aw$=d -_.a=null -_.b=e -_.c=null}, -agh:function agh(a,b){this.a=a -this.b=b}, -agi:function agi(a,b){this.a=a -this.b=b}, -agf:function agf(a){this.a=a}, -agg:function agg(a){this.a=a}, -agj:function agj(a){this.a=a}, -R2:function R2(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.a=n}, -uE:function uE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.C=a -_.a7=_.af=_.M=$ -_.q=b -_.b6=_.D=$ -_.au=!1 -_.bA=0 -_.bI=c -_.cK=d -_.dF=e -_.ei=f -_.ej=g -_.cs=h -_.eR=i -_.dt=j -_.cb=k -_.cX=l -_.co=m -_.c5=n -_.e1=o -_.al=p -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=q -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -afF:function afF(a){this.a=a}, -afD:function afD(){}, -afC:function afC(){}, -afE:function afE(a){this.a=a}, -io:function io(a){this.a=a}, -pn:function pn(a,b){this.a=a -this.b=b}, -Sj:function Sj(a,b){this.d=a -this.a=b}, -Qv:function Qv(a,b){var _=this -_.C=$ -_.M=a -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=b -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -El:function El(){}, -Em:function Em(){}, -Ep:function Ep(){}, -aqS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){return new A.A0(a4,b,i,d,f,a,h,c,e,a0,l,g,m,a6,n,a3,a2,a5,a7,p,o,q,r,s,a8,j,a1,k)}, -KT:function KT(a,b){this.a=a -this.b=b}, -A0:function A0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8}, -a8o:function a8o(){}, -a8p:function a8p(){}, -a8q:function a8q(){}, -UO:function UO(){}, -a5G:function a5G(){}, -a5F:function a5F(){}, -a5E:function a5E(){}, -a5D:function a5D(){}, -a4v:function a4v(){}, -QE:function QE(){}, -R3:function R3(){}, -aqU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.tb(f,c,i,k,m,o,n,d,a,h,b,l,g,e,j)}, -i8:function i8(a,b){this.a=a -this.b=b}, -tb:function tb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.a=o}, -Df:function Df(a){var _=this -_.d=!1 -_.a=null -_.b=a -_.c=null}, -agl:function agl(a){this.a=a}, -agk:function agk(a){this.a=a}, -agm:function agm(a){this.a=a}, -A5:function A5(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -Rb:function Rb(){}, -Rv:function Rv(a,b){this.a=a -this.b=b}, -Ly:function Ly(a,b,c){this.c=a -this.d=b -this.a=c}, -Cg:function Cg(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ay=m -_.ch=n -_.CW=o -_.cx=p -_.cy=q -_.db=r -_.dx=s -_.dy=a0 -_.fr=a1 -_.a=a2}, -Ch:function Ch(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=a -_.e=!1 -_.qq$=b -_.lP$=c -_.nz$=d -_.N5$=e -_.N6$=f -_.Ch$=g -_.N7$=h -_.Ci$=i -_.Cj$=j -_.vn$=k -_.qr$=l -_.qs$=m -_.bP$=n -_.aw$=o -_.a=null -_.b=p -_.c=null}, -aeE:function aeE(a){this.a=a}, -aeB:function aeB(a,b){this.a=a -this.b=b}, -aeF:function aeF(a){this.a=a}, -aeC:function aeC(a,b){this.a=a -this.b=b}, -aeD:function aeD(a){this.a=a}, -aeG:function aeG(a,b){this.a=a -this.b=b}, -Du:function Du(a){var _=this -_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=_.go=_.fy=_.fx=_.fr=_.dy=_.dx=_.db=_.cy=null -_.p2=!1 -_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=null -_.y1$=0 -_.y2$=a -_.a6$=_.ao$=0 -_.aq$=!1}, -Eg:function Eg(){}, -Eh:function Eh(){}, -al8(a,b,c,d,e){if(a==null&&b==null)return null -return new A.C_(a,b,c,d,e.j("C_<0>"))}, -ar2(a){var s -a.L(t.OJ) -s=A.ae(a) -return s.ej}, -Ai:function Ai(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -C_:function C_(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Ru:function Ru(){}, -Al:function Al(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -BY:function BY(a,b,c){this.a=a -this.b=b -this.c=c}, -Rz:function Rz(){}, -ar4(a){return new A.Ak(a,null)}, -Ak:function Ak(a,b){this.c=a -this.a=b}, -aDI(a,b,c){return new A.An(A.ak4(a.a,b.a,c))}, -An:function An(a){this.a=a}, -RC:function RC(){}, -ala(a,b,c){var s,r=c?B.Mm:B.Mn,q=c?B.Mo:B.Mp -if(c)s=B.Rc -else s=B.Rd -return new A.Aq(a,b,B.Nq,c,r,q,s,!0,null)}, -RD:function RD(a,b){var _=this -_.f=a -_.a=b -_.b=!0 -_.c=0 -_.d=!1 -_.e=null}, -Aq:function Aq(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.e=b -_.f=c -_.ay=d -_.CW=e -_.cx=f -_.fx=g -_.x1=h -_.a=i}, -DA:function DA(a,b,c,d,e,f,g){var _=this -_.e=_.d=null -_.r=_.f=!1 -_.x=_.w=$ -_.y=a -_.br$=b -_.em$=c -_.hQ$=d -_.d0$=e -_.cF$=f -_.a=null -_.b=g -_.c=null}, -agw:function agw(){}, -agy:function agy(a,b){this.a=a -this.b=b}, -agx:function agx(a,b){this.a=a -this.b=b}, -agA:function agA(a){this.a=a}, -agB:function agB(a){this.a=a}, -agC:function agC(a,b,c){this.a=a -this.b=b -this.c=c}, -agE:function agE(a){this.a=a}, -agF:function agF(a){this.a=a}, -agD:function agD(a,b){this.a=a -this.b=b}, -agz:function agz(a){this.a=a}, -ahv:function ahv(){}, -Er:function Er(){}, -a1Q:function a1Q(){}, -RE:function RE(a,b){this.b=a -this.a=b}, -aDN(a,b,c){var s=A.A(a.a,b.a,c),r=A.A(a.b,b.b,c) -return new A.Ax(s,r,A.A(a.c,b.c,c))}, -ar9(a){var s -a.L(t.bZ) -s=A.ae(a) -return s.dt}, -Ax:function Ax(a,b,c){this.a=a -this.b=b -this.c=c}, -RG:function RG(){}, -arb(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8){var s=null,r=d==null?s:d,q=e==null?s:e,p=f==null?s:f,o=a1==null?s:a1,n=a2==null?s:a2,m=a6==null?s:a6,l=a7==null?s:a7,k=a8==null?s:a8,j=a==null?s:a,i=b==null?s:b,h=c==null?s:c,g=a3==null?s:a3 -return new A.eb(r,q,p,a0,o,n,m,l,k,j,i,h,g,a4,a5==null?s:a5)}, -mq(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null,e=a==null,d=e?f:a.a,c=b==null -d=A.bj(d,c?f:b.a,a0) -s=e?f:a.b -s=A.bj(s,c?f:b.b,a0) -r=e?f:a.c -r=A.bj(r,c?f:b.c,a0) -q=e?f:a.d -q=A.bj(q,c?f:b.d,a0) -p=e?f:a.e -p=A.bj(p,c?f:b.e,a0) -o=e?f:a.f -o=A.bj(o,c?f:b.f,a0) -n=e?f:a.r -n=A.bj(n,c?f:b.r,a0) -m=e?f:a.w -m=A.bj(m,c?f:b.w,a0) -l=e?f:a.x -l=A.bj(l,c?f:b.x,a0) -k=e?f:a.y -k=A.bj(k,c?f:b.y,a0) -j=e?f:a.z -j=A.bj(j,c?f:b.z,a0) -i=e?f:a.Q -i=A.bj(i,c?f:b.Q,a0) -h=e?f:a.as -h=A.bj(h,c?f:b.as,a0) -g=e?f:a.at -g=A.bj(g,c?f:b.at,a0) -e=e?f:a.ax -return A.arb(k,j,i,d,s,r,q,p,o,h,g,A.bj(e,c?f:b.ax,a0),n,m,l)}, -eb:function eb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -RJ:function RJ(){}, -ae(a){var s,r=a.L(t.Nr),q=A.lG(a,B.bp,t.c4)==null?null:B.v_ -if(q==null)q=B.v_ -s=r==null?null:r.w.c -if(s==null)s=$.auT() -return A.aDR(s,s.p4.PX(q))}, -tz:function tz(a,b,c){this.c=a -this.d=b -this.a=c}, -BQ:function BQ(a,b,c){this.w=a -this.b=b -this.a=c}, -oT:function oT(a,b){this.a=a -this.b=b}, -vj:function vj(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -Mx:function Mx(a,b,c){var _=this -_.CW=null -_.e=_.d=$ -_.fe$=a -_.cz$=b -_.a=null -_.b=c -_.c=null}, -aaW:function aaW(){}, -alc(d4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1=null,d2=A.b([],t.FO),d3=A.dI() -d3=d3 -switch(d3.a){case 0:case 1:case 2:s=B.JH -break -case 3:case 4:case 5:s=B.JI -break -default:s=d1}r=A.aEa() -q=d4 -p=q===B.a3 -o=p?B.zN:B.de -n=A.LT(o) -m=p?B.zX:B.mC -l=p?B.n:B.fq -k=n===B.a3 -if(p)j=B.mB -else j=B.dS -i=p?B.mB:B.mx -h=A.LT(i) -g=h===B.a3 -f=p?A.ak(31,255,255,255):A.ak(31,0,0,0) -e=p?A.ak(10,255,255,255):A.ak(10,0,0,0) -d=p?B.my:B.mG -c=p?B.dT:B.m -b=p?B.dT:B.m -a=p?B.Ao:B.ft -a0=A.LT(B.de)===B.a3 -a1=A.LT(i) -a2=p?B.zD:B.fq -a3=p?B.fr:B.dV -a4=a0?B.m:B.n -a1=a1===B.a3?B.m:B.n -a5=p?B.m:B.n -a6=a0?B.m:B.n -a7=A.W0(a3,q,B.fs,d1,d1,d1,a6,p?B.n:B.m,d1,d1,a4,d1,a1,d1,a5,d1,d1,d1,d1,B.de,d1,l,i,d1,a2,d1,b,d1,d1,d1,d1) -a8=p?B.A:B.x -a9=p?B.fr:B.mF -b0=p?B.fr:B.dV -b1=p?B.dT:B.m -b2=i.k(0,o)?B.m:i -b3=p?B.zv:A.ak(153,0,0,0) -a1=p?B.dS:B.mE -b4=new A.Fy(a1,d1,f,e,d1,d1,a7,s) -b5=p?B.zs:B.zr -b6=p?B.mt:B.fo -b7=p?B.mt:B.zu -b8=A.aDY(d3) -b9=p?b8.b:b8.a -c0=k?b8.b:b8.a -c1=g?b8.b:b8.a -c2=b9.bg(d1) -c3=c0.bg(d1) -c4=p?B.fT:B.BD -c5=k?B.fT:B.nf -c6=p?i:B.dV -c7=p?B.zM:B.mA -c8=c1.bg(d1) -c9=g?B.fT:B.nf -d0=p?B.dS:B.mE -return A.alb(i,h,c9,c8,d1,B.wa,!1,b0,B.JE,c,B.wq,B.wt,B.wu,B.wG,d0,b4,d,b,B.xJ,B.xN,B.xO,a7,d1,B.zR,B.Az,b1,B.AK,b5,a,B.AR,B.AU,B.Bg,B.fs,B.Bj,A.aDQ(d2),!0,B.Bm,f,b6,b3,e,c4,b2,B.wZ,B.Cm,s,B.JX,B.JY,B.Ki,B.xa,d3,B.Kq,o,n,l,m,c5,c3,B.Kr,B.KA,d,B.L2,a9,B.A9,B.n,B.Ml,B.Mt,b7,B.xA,B.N4,B.Nb,B.Nc,c6,c7,B.Nt,c2,B.R7,B.Ra,j,B.Re,b8,a8,!1,!0,r)}, -alb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5){return new A.hn(e,g,a3,b5,c4,c6,d0,d1,e2,e9,g5,!1,a2,d3,d6,d5,b8,c1,e5,q,e1,j,r,a9,b9,e8,e4,g2,a8,e3,h,a6,c3,c0,b3,f9,g1,f6,d8,c2,d7,f,i,k,l,m,n,p,s,a0,a1,a5,a7,b0,b1,b2,b7,c5,c7,c8,c9,d2,d9,e0,e6,e7,f0,f1,f2,f5,f7,f8,g0,b4,!0,f3,a4,f4,a,b,d,c,o,!0,d4)}, -aDO(){return A.alc(B.ac)}, -aDR(a,b){return $.auS().bs(0,new A.uh(a,b),new A.a9T(a,b))}, -LT(a){var s=0.2126*A.ak8((a.gl(a)>>>16&255)/255)+0.7152*A.ak8((a.gl(a)>>>8&255)/255)+0.0722*A.ak8((a.gl(a)&255)/255)+0.05 -if(s*s>0.15)return B.ac -return B.a3}, -aDP(a,b,c){var s=a.d,r=s.jB(s,new A.a9R(b,c),t.K,t.Ag) -s=b.d -r.AX(r,s.geP(s).ol(0,new A.a9S(a))) -return r}, -aDQ(a){var s,r,q=t.K,p=t.ZF,o=A.z(q,p) -for(s=0;!1;++s){r=a[s] -o.n(0,r.gwB(r),p.a(r))}return A.aAm(o,q,t.Ag)}, -aBZ(a,b){return new A.Ih(a,b,B.lJ,b.a,b.b,b.c,b.d,b.e,b.f)}, -aEa(){switch(A.dI().a){case 0:case 2:case 1:break -case 3:case 4:case 5:return B.SL}return B.vR}, -lI:function lI(a,b){this.a=a -this.b=b}, -hn:function hn(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.ao=c8 -_.a6=c9 -_.aq=d0 -_.b5=d1 -_.cW=d2 -_.bQ=d3 -_.C=d4 -_.M=d5 -_.af=d6 -_.a7=d7 -_.q=d8 -_.D=d9 -_.b6=e0 -_.au=e1 -_.bA=e2 -_.bI=e3 -_.cK=e4 -_.dF=e5 -_.ei=e6 -_.ej=e7 -_.cs=e8 -_.eR=e9 -_.dt=f0 -_.cb=f1 -_.cX=f2 -_.co=f3 -_.c5=f4 -_.e1=f5 -_.al=f6 -_.fK=f7 -_.ho=f8 -_.ek=f9 -_.fL=g0 -_.fM=g1 -_.fN=g2 -_.u=g3 -_.a8=g4 -_.aD=g5}, -a9T:function a9T(a,b){this.a=a -this.b=b}, -a9R:function a9R(a,b){this.a=a -this.b=b}, -a9S:function a9S(a){this.a=a}, -Ih:function Ih(a,b,c,d,e,f,g,h,i){var _=this -_.at=a -_.ax=b -_.r=c -_.a=d -_.b=e -_.c=f -_.d=g -_.e=h -_.f=i}, -uh:function uh(a,b){this.a=a -this.b=b}, -O1:function O1(a,b,c){this.a=a -this.b=b -this.$ti=c}, -kH:function kH(a,b){this.a=a -this.b=b}, -RO:function RO(){}, -Sl:function Sl(){}, -AC:function AC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q}, -RS:function RS(){}, -aDS(a,b,c){var s=A.bj(a.a,b.a,c),r=A.vG(a.b,b.b,c),q=A.A(a.c,b.c,c),p=A.A(a.d,b.d,c),o=A.A(a.e,b.e,c),n=A.A(a.f,b.f,c),m=A.A(a.r,b.r,c),l=A.A(a.w,b.w,c),k=A.A(a.y,b.y,c),j=A.A(a.x,b.x,c),i=A.A(a.z,b.z,c),h=A.A(a.Q,b.Q,c),g=A.A(a.as,b.as,c),f=A.n0(a.ax,b.ax,c) -return new A.AF(s,r,q,p,o,n,m,l,j,k,i,h,g,A.Z(a.at,b.at,c),f)}, -AF:function AF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -RT:function RT(){}, -AG:function AG(){}, -a9Y:function a9Y(a,b){this.a=a -this.b=b}, -a9Z:function a9Z(a){this.a=a}, -a9W:function a9W(a,b){this.a=a -this.b=b}, -a9X:function a9X(a,b){this.a=a -this.b=b}, -tC:function tC(){}, -are(a,b,c,d,e){return new A.AJ(c,e,d,b,a,null)}, -arf(a){var s,r,q,p -if($.kB.length!==0){s=A.b($.kB.slice(0),A.af($.kB)) -for(r=s.length,q=0;q>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -break -default:p=null}switch(q.a){case 1:o=b.a -break -case 0:r=b.a -o=A.ak(0,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -break -default:o=null}r=A.A(p,o,c) -r.toString -return new A.ds(r,s,B.br)}, -e8(a,b,c){var s,r=b!=null?b.du(a,c):null -if(r==null&&a!=null)r=a.dv(b,c) -if(r==null)s=c<0.5?a:b -else s=r -return s}, -arz(a,b,c){var s,r,q,p,o,n,m=a instanceof A.hp?a.a:A.b([a],t.Fi),l=b instanceof A.hp?b.a:A.b([b],t.Fi),k=A.b([],t.N_),j=Math.max(m.length,l.length) -for(s=1-c,r=0;ro/m?new A.L(o*p/m,p):new A.L(q,m*q/o) -r=b -break -case 2:q=c.a -p=c.b -o=b.a -r=q/p>o/m?new A.L(o,o*p/q):new A.L(m*q/p,m) -s=c -break -case 3:m=b.a -q=c.a -p=m*c.b/q -r=new A.L(m,p) -s=new A.L(q,p*q/m) -break -case 4:q=c.b -p=m*c.a/q -r=new A.L(p,m) -s=new A.L(p*q/m,q) -break -case 5:r=new A.L(Math.min(b.a,c.a),Math.min(m,c.b)) -s=r -break -case 6:n=b.a/m -q=c.b -s=m>q?new A.L(q*n,q):b -m=c.a -if(s.a>m)s=new A.L(m,m/n) -r=b -break -default:r=null -s=null}return new A.Hd(r,s)}, -Fs:function Fs(a,b){this.a=a -this.b=b}, -Hd:function Hd(a,b){this.a=a -this.b=b}, -azV(a,b,c){var s,r,q,p,o=A.A(a.a,b.a,c) -o.toString -s=A.yj(a.b,b.b,c) -s.toString -r=A.Z(a.c,b.c,c) -r.toString -q=A.Z(a.d,b.d,c) -q.toString -p=a.e -return new A.fU(q,p===B.cP?b.e:p,o,s,r)}, -aox(a,b,c){var s,r,q,p,o,n,m,l=a==null -if(l&&b==null)return null -if(l)a=A.b([],t.sq) -if(b==null)b=A.b([],t.sq) -s=Math.min(a.length,b.length) -l=A.b([],t.sq) -for(r=0;r>>0)) -i.skz(a6) -i.svM(b0) -h=j.a -g=(r-h)/2 -f=j.b -e=(p-f)/2 -p=a1.a -p=s+(g+(a8?-p:p)*g) -q+=e+a1.b*e -d=new A.w(p,q,p+h,q+f) -c=b4!==B.cr||a8 -if(c)a2.bF(0) -q=b4===B.cr -if(!q)a2.je(0,b3) -if(a8){b=-(s+r/2) -a2.aC(0,-b,0) -a2.cP(0,-1,1) -a2.aC(0,b,0)}a=a1.CM(k,new A.w(0,0,n,m)) -if(q)a2.hM(a9,a,d,i) -else for(s=A.aG2(b3,d,b4),r=s.length,a0=0;a00){n=-n -l=2*l -r=(n-Math.sqrt(j))/l -q=(n+Math.sqrt(j))/l -p=(c-r*b)/(q-r) -return new A.af4(r,q,b-p,p)}o=Math.sqrt(k-m)/(2*l) -s=-(n/2*l) -return new A.agZ(o,s,b,(c-s*b)/o)}, -a8E:function a8E(a,b,c){this.a=a -this.b=b -this.c=c}, -te:function te(a,b){this.a=a -this.b=b}, -A8:function A8(a,b,c){this.b=a -this.c=b -this.a=c}, -m7:function m7(a,b,c){this.b=a -this.c=b -this.a=c}, -ac_:function ac_(a,b,c){this.a=a -this.b=b -this.c=c}, -af4:function af4(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -agZ:function agZ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -AI:function AI(a,b){this.a=a -this.c=b}, -rw:function rw(){}, -a5s:function a5s(a){this.a=a}, -vF(a){var s=a.a,r=a.b -return new A.aF(s,s,r,r)}, -n1(a,b){var s,r,q=b==null,p=q?0:b -q=q?1/0:b -s=a==null -r=s?0:a -return new A.aF(p,q,r,s?1/0:a)}, -hA(a,b){var s,r,q=b!==1/0,p=q?b:0 -q=q?b:1/0 -s=a!==1/0 -r=s?a:0 -return new A.aF(p,q,r,s?a:1/0)}, -ak3(a){return new A.aF(0,a.a,0,a.b)}, -vG(a,b,c){var s,r,q,p=a==null -if(p&&b==null)return null -if(p)return b.W(0,c) -if(b==null)return a.W(0,1-c) -p=a.a -if(isFinite(p)){p=A.Z(p,b.a,c) -p.toString}else p=1/0 -s=a.b -if(isFinite(s)){s=A.Z(s,b.b,c) -s.toString}else s=1/0 -r=a.c -if(isFinite(r)){r=A.Z(r,b.c,c) -r.toString}else r=1/0 -q=a.d -if(isFinite(q)){q=A.Z(q,b.d,c) -q.toString}else q=1/0 -return new A.aF(p,s,r,q)}, -azU(){var s=A.b([],t.om),r=new A.bb(new Float64Array(16)) -r.dC() -return new A.iE(s,A.b([r],t.rE),A.b([],t.cR))}, -aow(a){return new A.iE(a.a,a.b,a.c)}, -aF:function aF(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -UW:function UW(){}, -iE:function iE(a,b,c){this.a=a -this.b=b -this.c=c}, -pX:function pX(a,b){this.c=a -this.a=b -this.b=null}, -fm:function fm(a){this.a=a}, -w3:function w3(){}, -ph:function ph(a,b){this.a=a -this.b=b}, -BW:function BW(a,b){this.a=a -this.b=b}, -B:function B(){}, -a4H:function a4H(a,b){this.a=a -this.b=b}, -a4J:function a4J(a,b){this.a=a -this.b=b}, -a4I:function a4I(a,b){this.a=a -this.b=b}, -cD:function cD(){}, -a4G:function a4G(a,b,c){this.a=a -this.b=b -this.c=c}, -Bg:function Bg(){}, -hd:function hd(a,b,c){var _=this -_.e=null -_.bO$=a -_.ae$=b -_.a=c}, -a2j:function a2j(){}, -z9:function z9(a,b,c,d,e){var _=this -_.C=a -_.bz$=b -_.U$=c -_.bV$=d -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -CI:function CI(){}, -Qf:function Qf(){}, -aqz(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e={} -e.a=b -if(a==null)a=B.h8 -s=J.ax(a) -r=s.gp(a)-1 -q=A.b7(0,null,!1,t.LQ) -p=0<=r -while(!0){if(!!1)break -s.h(a,0) -o=b[0] -o.gcG(o) -break}while(!0){if(!!1)break -s.h(a,r) -n=b[-1] -n.gcG(n) -break}m=A.bx("oldKeyedChildren") -if(p){m.sdH(A.z(t.D2,t.bu)) -for(l=m.a,k=0;k<=r;){j=s.h(a,k) -i=j.d -if(i!=null){h=m.b -if(h===m)A.K(A.e2(l)) -J.cR(h,i,j)}++k}p=!0}else k=0 -for(l=m.a,g=0;!1;){o=e.a[g] -if(p){f=o.gcG(o) -i=m.b -if(i===m)A.K(A.e2(l)) -j=J.ag(i,f) -if(j!=null){o.gcG(o) -j=null}}else j=null -q[g]=A.aqy(j,o);++g}s.gp(a) -while(!0){if(!!1)break -q[g]=A.aqy(s.h(a,k),e.a[g]);++g;++k}return new A.cu(q,A.af(q).j("cu<1,c6>"))}, -aqy(a,b){var s,r=a==null?A.KN(b.gcG(b),null):a,q=b.gahG(),p=A.oA() -q.gxj() -p.id=q.gxj() -p.d=!0 -q.gBp(q) -s=q.gBp(q) -p.b3(B.Lh,!0) -p.b3(B.Lj,s) -q.gx0(q) -p.b3(B.vd,q.gx0(q)) -q.gBk(q) -p.b3(B.vi,q.gBk(q)) -q.gjz() -p.b3(B.Lm,q.gjz()) -q.gDR() -p.b3(B.v8,q.gDR()) -q.gxi() -p.b3(B.vj,q.gxi()) -q.gD1() -p.b3(B.Li,q.gD1()) -q.grg(q) -p.b3(B.v6,q.grg(q)) -q.gCp() -p.b3(B.vb,q.gCp()) -q.gCq(q) -p.b3(B.le,q.gCq(q)) -q.gku(q) -s=q.gku(q) -p.b3(B.lf,!0) -p.b3(B.ld,s) -q.gCK() -p.b3(B.Lk,q.gCK()) -q.gm0() -p.b3(B.v5,q.gm0()) -q.gDg(q) -p.b3(B.vg,q.gDg(q)) -q.gCG(q) -p.b3(B.eJ,q.gCG(q)) -q.gCE() -p.b3(B.vf,q.gCE()) -q.gwY() -p.b3(B.va,q.gwY()) -q.gDi() -p.b3(B.ve,q.gDi()) -q.gD4() -p.b3(B.vc,q.gD4()) -q.gqR() -p.sqR(q.gqR()) -q.gnm() -p.snm(q.gnm()) -q.gE_() -s=q.gE_() -p.b3(B.vh,!0) -p.b3(B.v7,s) -q.geT(q) -p.b3(B.v9,q.geT(q)) -q.gD2(q) -p.p4=new A.bQ(q.gD2(q),B.S) -p.d=!0 -q.gl(q) -p.R8=new A.bQ(q.gl(q),B.S) -p.d=!0 -q.gadx() -p.RG=new A.bQ(q.gadx(),B.S) -p.d=!0 -q.gabe() -p.rx=new A.bQ(q.gabe(),B.S) -p.d=!0 -q.gadg(q) -p.ry=new A.bQ(q.gadg(q),B.S) -p.d=!0 -q.gbx(q) -p.xr=q.gbx(q) -p.d=!0 -q.giL() -p.siL(q.giL()) -q.gjD() -p.sjD(q.gjD()) -q.go1() -p.so1(q.go1()) -q.go2() -p.so2(q.go2()) -q.go3() -p.so3(q.go3()) -q.go0() -p.so0(q.go0()) -q.gnV() -p.snV(q.gnV()) -q.gnS() -p.snS(q.gnS()) -q.gnQ(q) -p.snQ(0,q.gnQ(q)) -q.gnR(q) -p.snR(0,q.gnR(q)) -q.go_(q) -p.so_(0,q.go_(q)) -q.gnY() -p.snY(q.gnY()) -q.gnW() -p.snW(q.gnW()) -q.gnZ() -p.snZ(q.gnZ()) -q.gnX() -p.snX(q.gnX()) -q.go4() -p.so4(q.go4()) -q.go5() -p.so5(q.go5()) -q.gnT() -p.snT(q.gnT()) -q.gr0() -p.sr0(q.gr0()) -q.gnU() -p.snU(q.gnU()) -r.jO(0,B.h8,p) -r.sb7(0,b.gb7(b)) -r.sce(0,b.gce(b)) -r.dx=b.gahK() -return r}, -Gx:function Gx(){}, -za:function za(a,b,c,d,e,f,g){var _=this -_.u=a -_.a8=b -_.aD=c -_.aK=d -_.c6=e -_.iw=_.ff=_.nA=_.el=null -_.q$=f -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=g -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Wu:function Wu(){}, -arR(a){var s=new A.Qg(a,A.aj()) -s.gar() -s.CW=!0 -return s}, -as_(){var s=$.aJ()?A.aT():new A.aO(new A.aQ()) -return new A.DB(s,B.cR,B.bL,$.b4())}, -ty:function ty(a,b){this.a=a -this.b=b}, -aay:function aay(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=!0 -_.r=f}, -oq:function oq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this -_.M=_.C=null -_.af=$ -_.q=_.a7=null -_.D=$ -_.b6=a -_.au=b -_.ei=_.dF=_.cK=_.bI=_.bA=null -_.ej=c -_.cs=d -_.eR=e -_.dt=f -_.cb=g -_.cX=h -_.co=i -_.c5=j -_.e1=null -_.al=k -_.ho=_.fK=null -_.ek=l -_.fL=m -_.fM=n -_.fN=o -_.u=p -_.a8=q -_.aD=r -_.aK=s -_.c6=a0 -_.el=a1 -_.nA=a2 -_.ff=a3 -_.iw=a4 -_.ky=a5 -_.dG=!1 -_.eS=$ -_.fO=a6 -_.fP=0 -_.qu=a7 -_.em=_.br=null -_.d0=_.hQ=$ -_.ae=_.bO=_.cF=null -_.jp=$ -_.bz=a8 -_.U=null -_.eh=_.aw=_.bP=_.bV=!1 -_.cU=null -_.ds=a9 -_.bz$=b0 -_.U$=b1 -_.bV$=b2 -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=b3 -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a4L:function a4L(a){this.a=a}, -a4O:function a4O(a){this.a=a}, -a4N:function a4N(){}, -a4K:function a4K(a,b){this.a=a -this.b=b}, -a4P:function a4P(){}, -a4Q:function a4Q(a,b,c){this.a=a -this.b=b -this.c=c}, -a4M:function a4M(a){this.a=a}, -Qg:function Qg(a,b){var _=this -_.C=a -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=b -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -m0:function m0(){}, -DB:function DB(a,b,c,d){var _=this -_.f=a -_.w=_.r=null -_.x=b -_.y=c -_.y1$=0 -_.y2$=d -_.a6$=_.ao$=0 -_.aq$=!1}, -BD:function BD(a,b,c,d){var _=this -_.f=!0 -_.r=a -_.w=!1 -_.x=b -_.y=$ -_.Q=_.z=null -_.as=c -_.ax=_.at=null -_.y1$=0 -_.y2$=d -_.a6$=_.ao$=0 -_.aq$=!1}, -tV:function tV(a,b){var _=this -_.f=a -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -CK:function CK(){}, -CL:function CL(){}, -Qh:function Qh(){}, -zc:function zc(a,b){var _=this -_.C=a -_.M=$ -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=b -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -asZ(a,b,c){switch(a.a){case 0:switch(b){case B.q:return!0 -case B.aa:return!1 -case null:return null}break -case 1:switch(c){case B.lC:return!0 -case B.SK:return!1 -case null:return null}break}}, -wK:function wK(a,b){this.a=a -this.b=b}, -f3:function f3(a,b,c){var _=this -_.f=_.e=null -_.bO$=a -_.ae$=b -_.a=c}, -xL:function xL(a,b){this.a=a -this.b=b}, -xK:function xK(a,b){this.a=a -this.b=b}, -li:function li(a,b){this.a=a -this.b=b}, -zd:function zd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.C=a -_.M=b -_.af=c -_.a7=d -_.q=e -_.D=f -_.b6=g -_.au=0 -_.bA=h -_.bI=i -_.ahw$=j -_.ahx$=k -_.bz$=l -_.U$=m -_.bV$=n -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=o -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a4U:function a4U(){}, -a4S:function a4S(){}, -a4T:function a4T(){}, -a4R:function a4R(){}, -adU:function adU(a,b,c){this.a=a -this.b=b -this.c=c}, -Qi:function Qi(){}, -Qj:function Qj(){}, -Qk:function Qk(){}, -zf:function zf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.M=_.C=null -_.af=a -_.a7=b -_.q=c -_.D=d -_.b6=e -_.au=null -_.bA=f -_.bI=g -_.cK=h -_.dF=i -_.ei=j -_.ej=k -_.cs=l -_.eR=m -_.dt=n -_.cb=o -_.cX=p -_.co=q -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=r -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -aj(){return new A.I3()}, -arg(a){return new A.tF(a,B.j,A.aj())}, -aqb(){return new A.yG(B.u,A.aj())}, -apg(a){var s,r,q=new A.bb(new Float64Array(16)) -q.dC() -for(s=a.length-1;s>0;--s){r=a[s] -if(r!=null)r.n8(a[s-1],q)}return q}, -Zi(a,b,c,d){var s,r -if(a==null||b==null)return null -if(a===b)return a -s=a.a -r=b.a -if(sr){s=t.Hb -c.push(s.a(A.H.prototype.ga3.call(a,a))) -return A.Zi(s.a(A.H.prototype.ga3.call(a,a)),b,c,d)}s=t.Hb -c.push(s.a(A.H.prototype.ga3.call(a,a))) -d.push(s.a(A.H.prototype.ga3.call(b,b))) -return A.Zi(s.a(A.H.prototype.ga3.call(a,a)),s.a(A.H.prototype.ga3.call(b,b)),c,d)}, -vs:function vs(a,b,c){this.a=a -this.b=b -this.$ti=c}, -F3:function F3(a,b){this.a=a -this.$ti=b}, -xs:function xs(){}, -I3:function I3(){this.a=null}, -Jq:function Jq(a,b){var _=this -_.ax=a -_.ay=null -_.d=_.CW=_.ch=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -Ji:function Ji(a,b,c,d,e,f){var _=this -_.ax=a -_.ay=b -_.ch=c -_.CW=d -_.cx=e -_.d=!1 -_.e=f -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -dY:function dY(){}, -j5:function j5(a,b){var _=this -_.id=a -_.ay=_.ax=null -_.d=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -w0:function w0(a,b){var _=this -_.id=null -_.k1=a -_.ay=_.ax=null -_.d=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -w_:function w_(a,b){var _=this -_.id=null -_.k1=a -_.ay=_.ax=null -_.d=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -vZ:function vZ(a,b){var _=this -_.id=null -_.k1=a -_.ay=_.ax=null -_.d=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -tF:function tF(a,b,c){var _=this -_.to=a -_.x2=_.x1=null -_.xr=!0 -_.id=b -_.ay=_.ax=null -_.d=!1 -_.e=c -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -ym:function ym(a,b){var _=this -_.to=null -_.id=a -_.ay=_.ax=null -_.d=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -yG:function yG(a,b){var _=this -_.id=null -_.k1=a -_.ay=_.ax=_.k4=_.k3=_.k2=null -_.d=!1 -_.e=b -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -r2:function r2(){var _=this -_.b=_.a=null -_.c=!1 -_.d=null}, -nX:function nX(a,b,c){var _=this -_.id=a -_.k1=b -_.ay=_.ax=null -_.d=!1 -_.e=c -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -wS:function wS(a,b,c,d,e){var _=this -_.id=a -_.k1=b -_.k2=c -_.k3=d -_.p1=_.ok=_.k4=null -_.p2=!0 -_.ay=_.ax=null -_.d=!1 -_.e=e -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null}, -vr:function vr(a,b,c,d,e){var _=this -_.id=a -_.k1=b -_.k2=c -_.ay=_.ax=null -_.d=!1 -_.e=d -_.f=0 -_.r=!0 -_.z=_.y=_.x=_.w=null -_.a=0 -_.c=_.b=null -_.$ti=e}, -OK:function OK(){}, -aC6(a,b){var s -if(a==null)return!0 -s=a.b -if(t.ks.b(b))return!1 -return t.ge.b(s)||t.PB.b(b)||!s.gbS(s).k(0,b.gbS(b))}, -aC5(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=a4.d -if(a3==null)a3=a4.c -s=a4.a -r=a4.b -q=a3.gjK(a3) -p=a3.gcu() -o=a3.gd4(a3) -n=a3.gjk(a3) -m=a3.gbS(a3) -l=a3.gq3() -k=a3.gdn(a3) -a3.gm0() -j=a3.gwf() -i=a3.gra() -h=a3.gcE() -g=a3.gC1() -f=a3.gjT(a3) -e=a3.gDF() -d=a3.gDI() -c=a3.gDH() -b=a3.gDG() -a=a3.go6(a3) -a0=a3.gDU() -s.Y(0,new A.a2d(r,A.aCu(k,l,n,h,g,a3.gvh(),0,o,!1,a,p,m,i,j,e,b,c,d,f,a3.goO(),a0,q).bT(a3.gce(a3)),s)) -q=A.n(r).j("b3<1>") -a0=q.j("au") -a1=A.ap(new A.au(new A.b3(r,q),new A.a2e(s),a0),!0,a0.j("p.E")) -a0=a3.gjK(a3) -q=a3.gcu() -f=a3.gd4(a3) -d=a3.gjk(a3) -c=a3.gbS(a3) -b=a3.gq3() -e=a3.gdn(a3) -a3.gm0() -j=a3.gwf() -i=a3.gra() -m=a3.gcE() -p=a3.gC1() -a=a3.gjT(a3) -o=a3.gDF() -g=a3.gDI() -h=a3.gDH() -n=a3.gDG() -l=a3.go6(a3) -k=a3.gDU() -a2=A.aCs(e,b,d,m,p,a3.gvh(),0,f,!1,l,q,c,i,j,o,n,h,g,a,a3.goO(),k,a0).bT(a3.gce(a3)) -for(q=new A.ch(a1,A.af(a1).j("ch<1>")),q=new A.cL(q,q.gp(q)),p=A.n(q).c;q.t();){o=q.d -if(o==null)o=p.a(o) -if(o.gEe()&&o.gDm(o)!=null){n=o.gDm(o) -n.toString -n.$1(a2.bT(r.h(0,o)))}}}, -Pa:function Pa(a,b){this.a=a -this.b=b}, -Pb:function Pb(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Iu:function Iu(a,b,c){var _=this -_.a=a -_.b=b -_.c=!1 -_.y1$=0 -_.y2$=c -_.a6$=_.ao$=0 -_.aq$=!1}, -a2f:function a2f(){}, -a2i:function a2i(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a2h:function a2h(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a2g:function a2g(a,b){this.a=a -this.b=b}, -a2d:function a2d(a,b,c){this.a=a -this.b=b -this.c=c}, -a2e:function a2e(a){this.a=a}, -SL:function SL(){}, -aq4(a,b,c){var s,r,q=a.ay,p=t.dJ.a(q.a) -if(p==null){s=new A.j5(B.j,A.aj()) -q.saL(0,s) -q=s}else{p.DM() -q=p}r=a.giM() -b=new A.rf(q,r) -a.J7(b,B.j) -b.oF()}, -aCX(a){a.GJ()}, -aCY(a){a.a5X()}, -arW(a,b){var s -if(a==null)return null -if(!a.gS(a)){s=b.a -s=s[0]===0&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===0&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===0&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===0}else s=!0 -if(s)return B.F -return A.apO(b,a)}, -aEU(a,b,c,d){var s,r,q,p=b.ga3(b) -p.toString -s=t.d -s.a(p) -for(r=p;r!==a;r=p,b=q){r.dm(b,c) -p=r.ga3(r) -p.toString -s.a(p) -q=b.ga3(b) -q.toString -s.a(q)}a.dm(b,c) -a.dm(b,d)}, -arV(a,b){if(a==null)return b -if(b==null)return a -return a.e2(b)}, -cw:function cw(){}, -rf:function rf(a,b){var _=this -_.a=a -_.b=b -_.e=_.d=_.c=null}, -a3c:function a3c(a,b,c){this.a=a -this.b=b -this.c=c}, -a3b:function a3b(a,b,c){this.a=a -this.b=b -this.c=c}, -a3a:function a3a(a,b,c){this.a=a -this.b=b -this.c=c}, -W9:function W9(){}, -a6P:function a6P(a,b){this.a=a -this.b=b}, -Js:function Js(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=null -_.e=d -_.r=_.f=!1 -_.w=e -_.x=f -_.y=!1 -_.z=null -_.Q=0 -_.as=!1 -_.at=g}, -a3t:function a3t(){}, -a3s:function a3s(){}, -a3u:function a3u(){}, -a3v:function a3v(){}, -u:function u(){}, -a52:function a52(a){this.a=a}, -a56:function a56(a,b,c){this.a=a -this.b=b -this.c=c}, -a54:function a54(a){this.a=a}, -a55:function a55(){}, -a53:function a53(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aD:function aD(){}, -eG:function eG(){}, -ac:function ac(){}, -m_:function m_(){}, -ag6:function ag6(){}, -abZ:function abZ(a,b){this.b=a -this.a=b}, -pg:function pg(){}, -QD:function QD(a,b,c){var _=this -_.e=a -_.b=b -_.c=null -_.a=c}, -Rw:function Rw(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=!1 -_.w=c -_.x=!1 -_.b=d -_.c=null -_.a=e}, -ag7:function ag7(){var _=this -_.b=_.a=null -_.d=_.c=$ -_.e=!1}, -Ql:function Ql(){}, -eu:function eu(a,b,c){var _=this -_.e=null -_.bO$=a -_.ae$=b -_.a=c}, -lT:function lT(a,b){this.b=a -this.a=b}, -zk:function zk(a,b,c,d,e,f,g){var _=this -_.C=a -_.af=_.M=null -_.a7=$ -_.q=b -_.D=c -_.b6=!1 -_.cK=_.bI=_.bA=_.au=null -_.bz$=d -_.U$=e -_.bV$=f -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=g -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a58:function a58(a){this.a=a}, -a5a:function a5a(a,b,c){this.a=a -this.b=b -this.c=c}, -a5b:function a5b(a){this.a=a}, -a59:function a59(){}, -a57:function a57(a,b){this.a=a -this.b=b}, -CR:function CR(){}, -Qm:function Qm(){}, -Qn:function Qn(){}, -zl:function zl(a,b,c,d,e){var _=this -_.C=a -_.M=b -_.af=c -_.a7=d -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -aqx(a){var s=new A.z8(a,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -a4Y(a,b){return a}, -Ki:function Ki(){}, -dP:function dP(){}, -qI:function qI(a,b){this.a=a -this.b=b}, -zm:function zm(){}, -z8:function z8(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Ka:function Ka(a,b,c,d){var _=this -_.u=a -_.a8=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -zh:function zh(a,b,c,d){var _=this -_.u=a -_.a8=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Kd:function Kd(a,b,c,d,e){var _=this -_.u=a -_.a8=b -_.aD=c -_.q$=d -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -z6:function z6(){}, -K_:function K_(a,b,c,d,e,f){var _=this -_.hS$=a -_.vl$=b -_.nv$=c -_.vm$=d -_.q$=e -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=f -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -w7:function w7(){}, -oE:function oE(a,b,c){this.b=a -this.c=b -this.a=c}, -uC:function uC(){}, -K3:function K3(a,b,c,d){var _=this -_.u=a -_.a8=null -_.aD=b -_.c6=_.aK=null -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K2:function K2(a,b,c,d,e){var _=this -_.cn=a -_.u=b -_.a8=null -_.aD=c -_.c6=_.aK=null -_.q$=d -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K1:function K1(a,b,c,d){var _=this -_.u=a -_.a8=null -_.aD=b -_.c6=_.aK=null -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -CS:function CS(){}, -Ke:function Ke(a,b,c,d,e,f,g,h,i){var _=this -_.Ce=a -_.Cf=b -_.cn=c -_.e_=d -_.hR=e -_.u=f -_.a8=null -_.aD=g -_.c6=_.aK=null -_.q$=h -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=i -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Kf:function Kf(a,b,c,d,e,f,g){var _=this -_.cn=a -_.e_=b -_.hR=c -_.u=d -_.a8=null -_.aD=e -_.c6=_.aK=null -_.q$=f -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=g -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -wb:function wb(a,b){this.a=a -this.b=b}, -K4:function K4(a,b,c,d,e){var _=this -_.u=null -_.a8=a -_.aD=b -_.aK=c -_.q$=d -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Ko:function Ko(a,b,c){var _=this -_.aD=_.a8=_.u=null -_.aK=a -_.el=_.c6=null -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a5p:function a5p(a){this.a=a}, -K7:function K7(a,b,c,d){var _=this -_.u=a -_.a8=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a4W:function a4W(a){this.a=a}, -Kg:function Kg(a,b,c,d,e,f,g,h,i){var _=this -_.cU=a -_.ds=b -_.cq=c -_.d1=d -_.cn=e -_.e_=f -_.u=g -_.q$=h -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=i -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Kc:function Kc(a,b,c,d,e,f,g,h){var _=this -_.cU=a -_.ds=b -_.cq=c -_.d1=d -_.cn=e -_.e_=!0 -_.u=f -_.q$=g -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=h -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Kj:function Kj(a,b){var _=this -_.a8=_.u=0 -_.q$=a -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=b -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -ze:function ze(a,b,c,d){var _=this -_.u=a -_.a8=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -zi:function zi(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -z5:function z5(a,b,c,d){var _=this -_.u=a -_.a8=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -ko:function ko(a,b,c){var _=this -_.cn=_.d1=_.cq=_.ds=_.cU=null -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -zn:function zn(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8){var _=this -_.u=a -_.a8=b -_.aD=c -_.aK=d -_.c6=e -_.el=f -_.nA=g -_.ff=h -_.iw=i -_.ky=j -_.jt=k -_.dG=l -_.eS=m -_.fO=n -_.fP=o -_.qu=p -_.br=q -_.em=r -_.hQ=s -_.d0=a0 -_.cF=a1 -_.bO=a2 -_.ae=a3 -_.jp=a4 -_.bz=a5 -_.U=a6 -_.bV=a7 -_.bP=a8 -_.aw=a9 -_.eh=b0 -_.cU=b1 -_.ds=b2 -_.cq=b3 -_.d1=b4 -_.cn=b5 -_.e_=b6 -_.hR=b7 -_.qn=b8 -_.ahr=b9 -_.ahs=c0 -_.aht=c1 -_.ahu=c2 -_.ahv=c3 -_.jq=c4 -_.bj=c5 -_.d2=c6 -_.hS=c7 -_.vl=c8 -_.nv=c9 -_.vm=d0 -_.e0=d1 -_.qo=d2 -_.kx=d3 -_.eQ=d4 -_.iv=d5 -_.cV=d6 -_.q$=d7 -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d8 -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K0:function K0(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Kb:function Kb(a,b){var _=this -_.q$=a -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=b -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K5:function K5(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K8:function K8(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K9:function K9(a,b,c){var _=this -_.u=a -_.a8=null -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -K6:function K6(a,b,c,d,e,f,g){var _=this -_.u=a -_.a8=b -_.aD=c -_.aK=d -_.c6=e -_.q$=f -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=g -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a4V:function a4V(a){this.a=a}, -z7:function z7(a,b,c,d,e){var _=this -_.u=a -_.a8=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null -_.$ti=e}, -Qc:function Qc(){}, -Qd:function Qd(){}, -CT:function CT(){}, -CU:function CU(){}, -zo:function zo(){}, -a5c:function a5c(a,b,c){this.a=a -this.b=b -this.c=c}, -zj:function zj(a,b,c,d){var _=this -_.u=null -_.a8=a -_.aD=b -_.q$=c -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -JZ:function JZ(){}, -Kh:function Kh(a,b,c,d,e,f){var _=this -_.cq=a -_.d1=b -_.u=null -_.a8=c -_.aD=d -_.q$=e -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=f -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a7c:function a7c(){}, -zb:function zb(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -CV:function CV(){}, -l2(a,b){switch(b.a){case 0:return a -case 1:return A.aHM(a)}}, -aGZ(a,b){switch(b.a){case 0:return a -case 1:return A.aHN(a)}}, -jn(a,b,c,d,e,f,g,h,i){var s=d==null?f:d,r=c==null?f:c,q=a==null?d:a -if(q==null)q=f -return new A.L9(h,g,f,s,e,r,f>0,b,i,q)}, -wV:function wV(a,b){this.a=a -this.b=b}, -mh:function mh(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -L9:function L9(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -t9:function t9(a,b,c){this.a=a -this.b=b -this.c=c}, -La:function La(a,b,c){var _=this -_.c=a -_.d=b -_.a=c -_.b=null}, -A1:function A1(){}, -mi:function mi(a){this.a=a}, -kv:function kv(a,b,c){this.bO$=a -this.ae$=b -this.a=c}, -cg:function cg(){}, -a5d:function a5d(){}, -a5e:function a5e(a,b){this.a=a -this.b=b}, -R7:function R7(){}, -Ra:function Ra(){}, -Kk:function Kk(a,b,c,d,e,f,g){var _=this -_.bV=a -_.a6=b -_.aq=c -_.b5=$ -_.cW=!0 -_.bz$=d -_.U$=e -_.bV$=f -_.fy=null -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=g -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Kl:function Kl(){}, -Km:function Km(a,b,c,d,e,f){var _=this -_.a6=a -_.aq=b -_.b5=$ -_.cW=!0 -_.bz$=c -_.U$=d -_.bV$=e -_.fy=null -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=f -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a5f:function a5f(a,b,c){this.a=a -this.b=b -this.c=c}, -iZ:function iZ(){}, -a5j:function a5j(){}, -fD:function fD(a,b,c){var _=this -_.b=null -_.c=!1 -_.qp$=a -_.bO$=b -_.ae$=c -_.a=null}, -m2:function m2(){}, -a5g:function a5g(a,b,c){this.a=a -this.b=b -this.c=c}, -a5i:function a5i(a,b){this.a=a -this.b=b}, -a5h:function a5h(){}, -CX:function CX(){}, -Qr:function Qr(){}, -Qs:function Qs(){}, -R8:function R8(){}, -R9:function R9(){}, -zp:function zp(){}, -Kn:function Kn(a,b,c,d){var _=this -_.co=null -_.c5=a -_.e1=b -_.q$=c -_.fy=null -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=d -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Qp:function Qp(){}, -aCZ(a,b,c,d,e){var s=new A.ru(a,e,d,c,A.aj(),0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.P(0,b) -return s}, -os(a,b){var s,r,q,p -for(s=t.B,r=a,q=0;r!=null;){p=r.e -p.toString -s.a(p) -if(!p.gvQ())q=Math.max(q,A.da(b.$1(r))) -r=p.ae$}return q}, -aqA(a,b,c,d){var s,r,q,p,o,n=b.w -if(n!=null&&b.f!=null){s=b.f -s.toString -n.toString -r=B.cQ.wv(c.a-s-n)}else{n=b.x -r=n!=null?B.cQ.wv(n):B.cQ}n=b.e -if(n!=null&&b.r!=null){s=b.r -s.toString -n.toString -r=r.wu(c.b-s-n)}else{n=b.y -if(n!=null)r=r.wu(n)}a.cH(0,r,!0) -q=b.w -if(!(q!=null)){n=b.f -s=a.k1 -if(n!=null)q=c.a-n-s.a -else{s.toString -q=d.lv(t.EP.a(c.a9(0,s))).a}}p=(q<0||q+a.k1.a>c.a)&&!0 -o=b.e -if(!(o!=null)){n=b.r -s=a.k1 -if(n!=null)o=c.b-n-s.b -else{s.toString -o=d.lv(t.EP.a(c.a9(0,s))).b}}if(o<0||o+a.k1.b>c.b)p=!0 -b.a=new A.m(q,o) -return p}, -a4F:function a4F(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -dl:function dl(a,b,c){var _=this -_.y=_.x=_.w=_.r=_.f=_.e=null -_.bO$=a -_.ae$=b -_.a=c}, -Aa:function Aa(a,b){this.a=a -this.b=b}, -ru:function ru(a,b,c,d,e,f,g,h,i){var _=this -_.C=!1 -_.M=null -_.af=a -_.a7=b -_.q=c -_.D=d -_.b6=e -_.bz$=f -_.U$=g -_.bV$=h -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=i -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a5n:function a5n(a){this.a=a}, -a5l:function a5l(a){this.a=a}, -a5m:function a5m(a){this.a=a}, -a5k:function a5k(a){this.a=a}, -zg:function zg(a,b,c,d,e,f,g,h,i,j){var _=this -_.ky=a -_.C=!1 -_.M=null -_.af=b -_.a7=c -_.q=d -_.D=e -_.b6=f -_.bz$=g -_.U$=h -_.bV$=i -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=j -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -a4X:function a4X(a,b,c){this.a=a -this.b=b -this.c=c}, -Qt:function Qt(){}, -Qu:function Qu(){}, -Me:function Me(a,b){this.a=a -this.b=b}, -zq:function zq(a,b,c,d,e){var _=this -_.fy=a -_.go=b -_.id=c -_.k1=!0 -_.k2=null -_.q$=d -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -Qw:function Qw(){}, -aCV(a){var s,r -for(s=t.Rn,r=t.NW;a!=null;){if(r.b(a))return a -a=s.a(a.ga3(a))}return null}, -aqB(a,b,c,d,e,f){var s,r,q,p,o,n,m -if(b==null)return e -s=f.mk(b,0,e) -r=f.mk(b,1,e) -q=d.as -q.toString -p=s.a -o=r.a -if(pp)n=s -else{if(!(q0)return a>=1e5 -return!0}, -ua:function ua(a){this.a=a -this.b=null}, -m6:function m6(a,b){this.a=a -this.b=b}, -dR:function dR(){}, -a68:function a68(a){this.a=a}, -a6a:function a6a(a){this.a=a}, -a6b:function a6b(a,b){this.a=a -this.b=b}, -a6c:function a6c(a,b){this.a=a -this.b=b}, -a67:function a67(a){this.a=a}, -a69:function a69(a){this.a=a}, -ald(){var s=new A.oU(new A.aI(new A.a4($.a5,t.U),t.h)) -s.Ks() -return s}, -tA:function tA(a,b){var _=this -_.a=null -_.b=!1 -_.c=null -_.d=a -_.e=null -_.f=b -_.r=$}, -oU:function oU(a){this.a=a -this.c=this.b=null}, -a9U:function a9U(a){this.a=a}, -AA:function AA(a){this.a=a}, -a6D:function a6D(){}, -aoH(a){var s=$.aoF.h(0,a) -if(s==null){s=$.aoG -$.aoG=s+1 -$.aoF.n(0,a,s) -$.aoE.n(0,s,a)}return s}, -aD8(a,b){var s -if(a.length!==b.length)return!1 -for(s=0;s=0){q.N(r,0,p).split("\n") -q.bU(r,p+2) -n.push(new A.xu())}else n.push(new A.xu())}return n}, -aqK(a){switch(a){case"AppLifecycleState.paused":return B.we -case"AppLifecycleState.resumed":return B.wc -case"AppLifecycleState.inactive":return B.wd -case"AppLifecycleState.detached":return B.wf}return null}, -rM:function rM(){}, -a73:function a73(a){this.a=a}, -aca:function aca(){}, -acb:function acb(a){this.a=a}, -acc:function acc(a){this.a=a}, -w1(a){var s=0,r=A.S(t.H) -var $async$w1=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=2 -return A.U(B.bh.cA("Clipboard.setData",A.aB(["text",a.a],t.N,t.z),t.H),$async$w1) -case 2:return A.Q(null,r)}}) -return A.R($async$w1,r)}, -W_(a){var s=0,r=A.S(t.Vz),q,p -var $async$W_=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=3 -return A.U(B.bh.cA("Clipboard.getData",a,t.a),$async$W_) -case 3:p=c -if(p==null){q=null -s=1 -break}q=new A.n9(A.bH(J.ag(p,"text"))) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$W_,r)}, -n9:function n9(a){this.a=a}, -aBK(a){var s,r,q=a.c,p=B.Jo.h(0,q) -if(p==null)p=new A.l(q) -q=a.d -s=B.JA.h(0,q) -if(s==null)s=new A.d(q) -r=a.a -switch(a.b.a){case 0:return new A.nW(p,s,a.e,r,a.f) -case 1:return new A.lC(p,s,null,r,a.f) -case 2:return new A.xp(p,s,a.e,r,!1)}}, -r0:function r0(a){this.a=a}, -lB:function lB(){}, -nW:function nW(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -lC:function lC(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -xp:function xp(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a_e:function a_e(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1 -_.e=null}, -xm:function xm(a,b){this.a=a -this.b=b}, -xn:function xn(a,b){this.a=a -this.b=b}, -I1:function I1(a,b,c){var _=this -_.a=null -_.b=a -_.c=b -_.d=null -_.e=c}, -OH:function OH(){}, -a1f:function a1f(){}, -d:function d(a){this.a=a}, -l:function l(a){this.a=a}, -OI:function OI(){}, -a3y(a,b,c,d){return new A.yH(a,c,b,d)}, -apQ(a){return new A.y1(a)}, -ka:function ka(a,b){this.a=a -this.b=b}, -yH:function yH(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -y1:function y1(a){this.a=a}, -a8U:function a8U(){}, -a0F:function a0F(){}, -a0H:function a0H(){}, -a8I:function a8I(){}, -a8J:function a8J(a,b){this.a=a -this.b=b}, -a8M:function a8M(){}, -aEr(a){var s,r,q -for(s=new A.eq(J.av(a.a),a.b),r=A.n(s).z[1];s.t();){q=s.a -if(q==null)q=r.a(q) -if(!q.k(0,B.ck))return q}return null}, -a2c:function a2c(a,b){this.a=a -this.b=b}, -y2:function y2(){}, -cW:function cW(){}, -NA:function NA(){}, -Ry:function Ry(a,b){this.a=a -this.b=b}, -mk:function mk(a){this.a=a}, -P9:function P9(){}, -lb:function lb(a,b,c){this.a=a -this.b=b -this.$ti=c}, -UP:function UP(a,b){this.a=a -this.b=b}, -lL:function lL(a,b,c){this.a=a -this.b=b -this.c=c}, -a20:function a20(a,b){this.a=a -this.b=b}, -lO:function lO(a,b,c){this.a=a -this.b=b -this.c=c}, -aCR(a){var s,r,q,p,o={} -o.a=null -s=new A.a4e(o,a).$0() -r=$.ajC().d -q=A.n(r).j("b3<1>") -p=A.j1(new A.b3(r,q),q.j("p.E")).A(0,s.gfR()) -q=J.ag(a,"type") -q.toString -A.bk(q) -switch(q){case"keydown":return new A.kn(o.a,p,s) -case"keyup":return new A.z_(null,!1,s) -default:throw A.c(A.Hh("Unknown key event type: "+q))}}, -lD:function lD(a,b){this.a=a -this.b=b}, -f8:function f8(a,b){this.a=a -this.b=b}, -yZ:function yZ(){}, -i3:function i3(){}, -a4e:function a4e(a,b){this.a=a -this.b=b}, -kn:function kn(a,b,c){this.a=a -this.b=b -this.c=c}, -z_:function z_(a,b,c){this.a=a -this.b=b -this.c=c}, -a4f:function a4f(a,b,c){this.a=a -this.d=b -this.e=c}, -a4g:function a4g(a){this.a=a}, -cs:function cs(a,b){this.a=a -this.b=b}, -Q7:function Q7(){}, -Q6:function Q6(){}, -a4b:function a4b(){}, -a4c:function a4c(){}, -a4d:function a4d(){}, -JR:function JR(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -zu:function zu(a,b){var _=this -_.b=_.a=null -_.f=_.e=_.d=_.c=!1 -_.r=a -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -a5z:function a5z(a){this.a=a}, -a5A:function a5A(a){this.a=a}, -cO:function cO(a,b,c,d,e,f){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.x=_.w=!1}, -a5w:function a5w(){}, -a5x:function a5x(){}, -a5v:function a5v(){}, -a5y:function a5y(){}, -a97(a){var s=0,r=A.S(t.H) -var $async$a97=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=2 -return A.U(B.bh.cA(u.p,A.aB(["label",a.a,"primaryColor",a.b],t.N,t.z),t.H),$async$a97) -case 2:return A.Q(null,r)}}) -return A.R($async$a97,r)}, -aDF(a){if($.tn!=null){$.tn=a -return}if(a.k(0,$.al9))return -$.tn=a -A.fk(new A.a98())}, -UB:function UB(a,b){this.a=a -this.b=b}, -ml:function ml(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -a98:function a98(){}, -Lz(a){var s=0,r=A.S(t.H) -var $async$Lz=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=2 -return A.U(B.bh.cA("SystemSound.play","SystemSoundType."+a.b,t.H),$async$Lz) -case 2:return A.Q(null,r)}}) -return A.R($async$Lz,r)}, -Aj:function Aj(a,b){this.a=a -this.b=b}, -cj(a,b,c,d){var s=b1&&sb -q=!m -j=q&&!n&&re||!q||l -if(d===p+a+o)return new A.tu() -else if((!i||j)&&r)return new A.LH() -else if((c===b||k)&&r){B.b.N(a,e,e+(a0-e)) -return new A.LI()}else if(f)return new A.LJ() -return new A.tu()}, -mn:function mn(){}, -LI:function LI(){}, -LH:function LH(){}, -LJ:function LJ(){}, -tu:function tu(){}, -aBM(a){return B.JK}, -xX:function xX(a,b){this.a=a -this.b=b}, -oQ:function oQ(){}, -Pc:function Pc(a,b){this.a=a -this.b=b}, -agv:function agv(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=!1}, -Hc:function Hc(a,b,c){this.a=a -this.b=b -this.c=c}, -YU:function YU(a,b,c){this.a=a -this.b=b -this.c=c}, -ar6(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.a9s(h,k,j,!0,b,l,m,!0,e,g,n,i,!0,!1)}, -aGO(a){switch(a){case"TextAffinity.downstream":return B.l -case"TextAffinity.upstream":return B.ar}return null}, -ar5(a){var s,r,q,p=J.ax(a),o=A.bk(p.h(a,"text")),n=A.hs(p.h(a,"selectionBase")) -if(n==null)n=-1 -s=A.hs(p.h(a,"selectionExtent")) -if(s==null)s=-1 -r=A.aGO(A.bH(p.h(a,"selectionAffinity"))) -if(r==null)r=B.l -q=A.pv(p.h(a,"selectionIsDirectional")) -n=A.cj(r,n,s,q===!0) -s=A.hs(p.h(a,"composingBase")) -if(s==null)s=-1 -p=A.hs(p.h(a,"composingExtent")) -return new A.dB(o,n,new A.cx(s,p==null?-1:p))}, -ar7(a){var s=A.b([],t.u1),r=$.ar8 -$.ar8=r+1 -return new A.a9t(s,r,a)}, -aGQ(a){switch(a){case"TextInputAction.none":return B.Nf -case"TextInputAction.unspecified":return B.Ng -case"TextInputAction.go":return B.Nj -case"TextInputAction.search":return B.Nk -case"TextInputAction.send":return B.Nl -case"TextInputAction.next":return B.Nm -case"TextInputAction.previous":return B.Nn -case"TextInputAction.continue_action":return B.No -case"TextInputAction.join":return B.Np -case"TextInputAction.route":return B.Nh -case"TextInputAction.emergencyCall":return B.Ni -case"TextInputAction.done":return B.lt -case"TextInputAction.newline":return B.vB}throw A.c(A.Z3(A.b([A.wD("Unknown text input action: "+a)],t.F)))}, -aGP(a){switch(a){case"FloatingCursorDragState.start":return B.n7 -case"FloatingCursorDragState.update":return B.fL -case"FloatingCursorDragState.end":return B.fM}throw A.c(A.Z3(A.b([A.wD("Unknown text cursor action: "+a)],t.F)))}, -A3:function A3(a,b){this.a=a -this.b=b}, -A4:function A4(a,b){this.a=a -this.b=b}, -As:function As(a,b,c){this.a=a -this.b=b -this.c=c}, -et:function et(a,b){this.a=a -this.b=b}, -LF:function LF(a,b){this.a=a -this.b=b}, -a9s:function a9s(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n}, -qB:function qB(a,b){this.a=a -this.b=b}, -dB:function dB(a,b,c){this.a=a -this.b=b -this.c=c}, -a9l:function a9l(a,b){this.a=a -this.b=b}, -fC:function fC(a,b){this.a=a -this.b=b}, -a9P:function a9P(){}, -e6:function e6(a,b){this.a=a -this.b=b}, -a9t:function a9t(a,b,c){var _=this -_.d=_.c=_.b=_.a=null -_.e=a -_.f=b -_.r=c}, -a9u:function a9u(){}, -LN:function LN(a){var _=this -_.a=$ -_.b=null -_.c=$ -_.d=a -_.f=_.e=!1}, -a9I:function a9I(){}, -a9H:function a9H(a,b){this.a=a -this.b=b}, -a9J:function a9J(a){this.a=a}, -a9K:function a9K(a){this.a=a}, -aG7(a){var s=A.bx("parent") -a.wF(new A.ahY(s)) -return s.bm()}, -va(a,b){return new A.mP(a,b,null)}, -Uc(a,b){var s,r,q=t.KU,p=a.mj(q) -for(;s=p!=null,s;p=r){if(J.f(b.$1(p),!0))break -s=A.aG7(p).y -r=s==null?null:s.h(0,A.b1(q))}return s}, -aoh(a){var s={} -s.a=null -A.Uc(a,new A.Ua(s)) -return B.wK}, -ajW(a,b,c){var s={} -s.a=null -if((b==null?null:A.C(b))==null)A.b1(c) -A.Uc(a,new A.Ue(s,b,a,c)) -return s.a}, -ajV(a,b){var s={} -s.a=null -A.b1(b) -A.Uc(a,new A.Ub(s,null,b)) -return s.a}, -ajU(a,b,c){var s,r=b==null?null:A.C(b) -if(r==null)r=A.b1(c) -s=a.r.h(0,r) -if(c.j("b_<0>?").b(s))return s -else return null}, -iB(a,b,c){var s={} -s.a=null -A.Uc(a,new A.Ud(s,b,a,c)) -return s.a}, -apf(a,b,c,d,e,f,g,h,i){return new A.nw(d,e,!1,a,i,g,h,f,c,null)}, -aoW(a){return new A.wl(a,new A.aM(A.b([],t.e),t._))}, -aEH(a,b,c){return new A.Cy(a,b,!1,!1,!1,!1,new A.aM(A.b([],t.e),t._),c.j("Cy<0>"))}, -aEI(a,b,c){return new A.Cz(a,b,!1,!1,!1,!1,new A.aM(A.b([],t.e),t._),c.j("Cz<0>"))}, -ahY:function ahY(a){this.a=a}, -aW:function aW(){}, -b_:function b_(){}, -cA:function cA(){}, -c2:function c2(a,b,c){var _=this -_.c=a -_.a=b -_.b=null -_.$ti=c}, -U9:function U9(){}, -mP:function mP(a,b,c){this.d=a -this.e=b -this.a=c}, -Ua:function Ua(a){this.a=a}, -Ue:function Ue(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Ub:function Ub(a,b,c){this.a=a -this.b=b -this.c=c}, -Ud:function Ud(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -AZ:function AZ(a,b,c){var _=this -_.d=a -_.e=b -_.a=null -_.b=c -_.c=null}, -aaH:function aaH(a){this.a=a}, -AY:function AY(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.w=c -_.b=d -_.a=e}, -nw:function nw(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.w=d -_.x=e -_.y=f -_.z=g -_.as=h -_.at=i -_.a=j}, -BF:function BF(a,b){var _=this -_.f=_.e=_.d=!1 -_.r=a -_.a=null -_.b=b -_.c=null}, -acQ:function acQ(a){this.a=a}, -acO:function acO(a){this.a=a}, -acJ:function acJ(a){this.a=a}, -acK:function acK(a){this.a=a}, -acI:function acI(a,b){this.a=a -this.b=b}, -acN:function acN(a){this.a=a}, -acL:function acL(a){this.a=a}, -acM:function acM(a,b){this.a=a -this.b=b}, -acP:function acP(a,b){this.a=a -this.b=b}, -wl:function wl(a,b){this.c=a -this.a=b -this.b=null}, -pO:function pO(){}, -pY:function pY(){}, -fY:function fY(){}, -GN:function GN(){}, -op:function op(){}, -JG:function JG(a){var _=this -_.d=_.c=$ -_.a=a -_.b=null}, -uy:function uy(){}, -Cy:function Cy(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.ac6$=c -_.ac7$=d -_.ac8$=e -_.ac9$=f -_.a=g -_.b=null -_.$ti=h}, -Cz:function Cz(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.ac6$=c -_.ac7$=d -_.ac8$=e -_.ac9$=f -_.a=g -_.b=null -_.$ti=h}, -Bh:function Bh(a,b,c,d){var _=this -_.c=a -_.d=b -_.a=c -_.b=null -_.$ti=d}, -Mn:function Mn(){}, -Mm:function Mm(){}, -OB:function OB(){}, -Ei:function Ei(){}, -Ej:function Ej(){}, -vq:function vq(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -aH7(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c -if(a==null||a.length===0)return B.c.gJ(b) -s=t.N -r=t.da -q=A.iS(s,r) -p=A.iS(s,r) -o=A.iS(s,r) -n=A.iS(s,r) -m=A.iS(t.ob,r) -for(l=0;l<1;++l){k=b[l] -s=k.a -r=B.b4.h(0,s) -if(r==null)r=s -j=k.c -i=B.be.h(0,j) -if(i==null)i=j -i=r+"_null_"+A.e(i) -if(q.h(0,i)==null)q.n(0,i,k) -r=B.b4.h(0,s) -r=(r==null?s:r)+"_null" -if(o.h(0,r)==null)o.n(0,r,k) -r=B.b4.h(0,s) -if(r==null)r=s -i=B.be.h(0,j) -if(i==null)i=j -i=r+"_"+A.e(i) -if(p.h(0,i)==null)p.n(0,i,k) -r=B.b4.h(0,s) -s=r==null?s:r -if(n.h(0,s)==null)n.n(0,s,k) -s=B.be.h(0,j) -if(s==null)s=j -if(m.h(0,s)==null)m.n(0,s,k)}for(h=null,g=null,f=0;f"))}, -aEd(){var s=null,r=A.b([],t.GA),q=$.a5,p=A.b([],t.Jh),o=A.b7(7,s,!1,t.JI),n=t.S,m=A.cf(n),l=t.j1,k=A.b([],l) -l=A.b([],l) -r=new A.Mh(s,$,r,!0,new A.aI(new A.a4(q,t.U),t.h),!1,s,!1,!1,s,$,s,!1,0,!1,$,$,new A.Rx(A.aK(t.T)),$,$,$,$,s,p,s,A.aHc(),new A.HC(A.aHb(),o,t.G7),!1,0,A.z(n,t.h1),m,k,l,s,!1,B.cI,!0,!1,s,B.r,B.r,s,0,s,!1,s,A.j2(s,t.W2),new A.a3M(A.z(n,t.rr),A.z(t.Ld,t.iD)),new A.ZS(A.z(n,t.cK)),new A.a3P(),A.z(n,t.Fn),$,!1,B.B5) -r.VJ() -return r}, -ahk:function ahk(a,b,c){this.a=a -this.b=b -this.c=c}, -ahl:function ahl(a){this.a=a}, -ho:function ho(){}, -AW:function AW(){}, -ahj:function ahj(a,b){this.a=a -this.b=b}, -aaB:function aaB(a,b){this.a=a -this.b=b}, -or:function or(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.$ti=e}, -a50:function a50(a,b,c){this.a=a -this.b=b -this.c=c}, -a51:function a51(a){this.a=a}, -m1:function m1(a,b,c){var _=this -_.d=_.c=_.b=_.a=_.cx=_.ch=_.af=_.M=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1 -_.$ti=c}, -Mh:function Mh(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4){var _=this -_.D$=a -_.b6$=b -_.au$=c -_.bA$=d -_.bI$=e -_.cK$=f -_.dF$=g -_.ei$=h -_.RG$=i -_.rx$=j -_.ry$=k -_.to$=l -_.x1$=m -_.x2$=n -_.xr$=o -_.qo$=p -_.kx$=q -_.eQ$=r -_.b5$=s -_.cW$=a0 -_.bQ$=a1 -_.C$=a2 -_.M$=a3 -_.w$=a4 -_.x$=a5 -_.y$=a6 -_.z$=a7 -_.Q$=a8 -_.as$=a9 -_.at$=b0 -_.ax$=b1 -_.ay$=b2 -_.ch$=b3 -_.CW$=b4 -_.cx$=b5 -_.cy$=b6 -_.db$=b7 -_.dx$=b8 -_.dy$=b9 -_.fr$=c0 -_.fx$=c1 -_.fy$=c2 -_.go$=c3 -_.id$=c4 -_.k1$=c5 -_.k2$=c6 -_.k3$=c7 -_.k4$=c8 -_.ok$=c9 -_.p1$=d0 -_.p2$=d1 -_.p3$=d2 -_.p4$=d3 -_.R8$=d4 -_.a=!1 -_.b=0}, -DV:function DV(){}, -DW:function DW(){}, -DX:function DX(){}, -DY:function DY(){}, -DZ:function DZ(){}, -E_:function E_(){}, -E0:function E0(){}, -UU(a,b){return new A.Fo(a,a,b)}, -Fo:function Fo(a,b,c){this.a=a -this.b=b -this.c=c}, -aoK(a,b,c){return new A.GB(b,c,a,null)}, -cc(a,b,c,d,e,f,g,h,i){var s -if(i!=null||f!=null){s=d==null?null:d.DT(f,i) -if(s==null)s=A.n1(f,i)}else s=d -return new A.Gq(b,a,h,c,e,s,g,null)}, -GB:function GB(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -Gq:function Gq(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.x=f -_.y=g -_.a=h}, -aAw(){var s=$.auo() -return s}, -GI:function GI(a,b,c,d){var _=this -_.d=a -_.e=b -_.f=c -_.a=d}, -fp:function fp(a,b){this.a=a -this.b=b}, -wi:function wi(a,b,c,d,e){var _=this -_.c=a -_.w=b -_.x=c -_.y=d -_.a=e}, -u5:function u5(a,b){this.a=a -this.b=b}, -Bl:function Bl(a,b,c,d){var _=this -_.d=null -_.e=$ -_.r=_.f=null -_.w=0 -_.y=_.x=!1 -_.z=null -_.Q=!1 -_.cV$=a -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null}, -acs:function acs(a){this.a=a}, -act:function act(a){this.a=a}, -E7:function E7(){}, -E8:function E8(){}, -aAE(a){var s=a.L(t.I) -s.toString -switch(s.f.a){case 0:return B.K6 -case 1:return B.j}}, -aAF(a){var s=a.ch,r=A.af(s) -return new A.d3(new A.au(s,new A.Xs(),r.j("au<1>")),new A.Xt(),r.j("d3<1,w>"))}, -aAD(a,b){var s,r,q,p,o=B.c.gJ(a),n=A.aoT(b,o) -for(s=a.length,r=0;rr)return a.a9(0,new A.m(p,r)).gcE() -else return p-q}}else{p=b.c -if(q>p){s=a.b -r=b.b -if(sr)return a.a9(0,new A.m(p,r)).gcE() -else return q-p}}else{q=a.b -p=b.b -if(qp)return q-p -else return 0}}}}, -aAG(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=t.AO,f=A.b([a],g) -for(s=new A.eq(J.av(b.a),b.b),r=A.n(s).z[1];s.t();f=p){q=s.a -if(q==null)q=r.a(q) -p=A.b([],g) -for(o=f.length,n=q.a,m=q.b,l=q.d,q=q.c,k=0;k=m&&j.d<=l){h=j.a -if(hq)p.push(new A.w(q,i,q+(h-q),i+(j.d-i)))}else{h=j.a -if(h>=n&&j.c<=q){if(il)p.push(new A.w(h,l,h+(j.c-h),l+(i-l)))}else p.push(j)}}}return f}, -aAC(a,b){var s,r=a.a -if(r>=0)if(r<=b.a){s=a.b -s=s>=0&&s<=b.b}else s=!1 -else s=!1 -if(s)return a -else return new A.m(Math.min(Math.max(0,r),b.a),Math.min(Math.max(0,a.b),b.b))}, -GO:function GO(a,b,c){this.c=a -this.d=b -this.a=c}, -Xs:function Xs(){}, -Xt:function Xt(){}, -GP:function GP(a){this.a=a}, -qj:function qj(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -Br:function Br(a,b,c){var _=this -_.d=$ -_.e=a -_.f=b -_.a=null -_.b=c -_.c=null}, -aEs(a){var s=A.b([],t.p) -a.bb(new A.acx(s)) -return s}, -ah0(a,b,c,d){return new A.DP(a,b,c,new A.aM(A.b([],t.e),t._),d.j("DP<0>"))}, -aGM(a,b,c){var s={} -s.a=null -s.b=!1 -return new A.aiq(s,A.bx("arg"),!1,b,a,c)}, -jq:function jq(a,b){var _=this -_.a=a -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -LY:function LY(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -wv:function wv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.x=e -_.z=f -_.Q=g -_.as=h -_.at=i -_.ax=j -_.ay=k -_.ch=l -_.CW=m -_.cx=n -_.cy=o -_.db=p -_.dx=q -_.fx=r -_.fy=s -_.go=a0 -_.id=a1 -_.k1=a2 -_.k2=a3 -_.k3=a4 -_.k4=a5 -_.ok=a6 -_.p1=a7 -_.p2=a8 -_.p3=a9 -_.p4=b0 -_.R8=b1 -_.RG=b2 -_.rx=b3 -_.ry=b4 -_.to=b5 -_.x1=b6 -_.x2=b7 -_.xr=b8 -_.y1=b9 -_.y2=c0 -_.ao=c1 -_.a6=c2 -_.aq=c3 -_.b5=c4 -_.cW=c5 -_.bQ=c6 -_.C=c7 -_.M=c8 -_.af=c9 -_.a7=d0 -_.q=d1 -_.D=d2 -_.au=d3 -_.bA=d4 -_.bI=d5 -_.dF=d6 -_.a=d7}, -qk:function qk(a,b,c,d,e,f,g,h,i,j){var _=this -_.d=null -_.e=!1 -_.f=a -_.r=b -_.Q=_.z=_.y=_.x=null -_.as=c -_.at=d -_.ax=e -_.ay=!1 -_.CW=_.ch=null -_.cx=!0 -_.fr=_.dy=_.dx=_.db=_.cy=null -_.fx=0 -_.fy=!1 -_.go=null -_.id=!1 -_.k1=$ -_.k2=0 -_.k3=null -_.k4=!1 -_.ok="" -_.p1=null -_.p2=f -_.p3=-1 -_.p4=null -_.R8=-1 -_.RG=null -_.x1=_.to=_.ry=_.rx=$ -_.bP$=g -_.aw$=h -_.cV$=i -_.a=null -_.b=j -_.c=null}, -XY:function XY(a){this.a=a}, -Y0:function Y0(a){this.a=a}, -XL:function XL(a,b){this.a=a -this.b=b}, -XZ:function XZ(a){this.a=a}, -XJ:function XJ(a){this.a=a}, -XH:function XH(a){this.a=a}, -XI:function XI(){}, -XK:function XK(a){this.a=a}, -XR:function XR(a,b){this.a=a -this.b=b}, -XS:function XS(a){this.a=a}, -XT:function XT(){}, -XU:function XU(a){this.a=a}, -XQ:function XQ(a){this.a=a}, -XP:function XP(a){this.a=a}, -Y_:function Y_(a){this.a=a}, -Y1:function Y1(a){this.a=a}, -Y2:function Y2(a,b,c){this.a=a -this.b=b -this.c=c}, -XM:function XM(a,b){this.a=a -this.b=b}, -XN:function XN(a,b){this.a=a -this.b=b}, -XO:function XO(a,b){this.a=a -this.b=b}, -XG:function XG(a){this.a=a}, -XX:function XX(a){this.a=a}, -XW:function XW(a,b){this.a=a -this.b=b}, -XV:function XV(a){this.a=a}, -Bs:function Bs(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.as=i -_.at=j -_.ax=k -_.ay=l -_.ch=m -_.CW=n -_.cx=o -_.cy=p -_.db=q -_.dx=r -_.dy=s -_.fr=a0 -_.fx=a1 -_.fy=a2 -_.go=a3 -_.id=a4 -_.k1=a5 -_.k2=a6 -_.k3=a7 -_.k4=a8 -_.ok=a9 -_.p1=b0 -_.p2=b1 -_.p3=b2 -_.p4=b3 -_.R8=b4 -_.RG=b5 -_.rx=b6 -_.ry=b7 -_.to=b8 -_.x1=b9 -_.c=c0 -_.a=c1}, -acx:function acx(a){this.a=a}, -D3:function D3(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -QL:function QL(a,b){var _=this -_.d=a -_.a=null -_.b=b -_.c=null}, -ag4:function ag4(a){this.a=a}, -pl:function pl(a,b,c,d,e){var _=this -_.x=a -_.e=b -_.b=c -_.c=d -_.a=e}, -Dx:function Dx(){}, -tR:function tR(a){this.a=a}, -ahg:function ahg(a){this.a=a}, -tO:function tO(a){this.a=a}, -ahm:function ahm(a,b){this.a=a -this.b=b}, -adV:function adV(a,b){this.a=a -this.b=b}, -u1:function u1(a){this.a=a}, -acC:function acC(a,b){this.a=a -this.b=b}, -tS:function tS(a,b){this.a=a -this.b=b}, -us:function us(a,b){this.a=a -this.b=b}, -kM:function kM(a,b,c,d){var _=this -_.e=a -_.f=b -_.a=c -_.b=null -_.$ti=d}, -DP:function DP(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=null -_.$ti=e}, -ah1:function ah1(a){this.a=a}, -O0:function O0(a,b,c){var _=this -_.e=a -_.f=b -_.a=c -_.b=null}, -DQ:function DQ(a,b,c){var _=this -_.e=a -_.r=_.f=null -_.a=b -_.b=null -_.$ti=c}, -QP:function QP(a,b){this.e=a -this.a=b -this.b=null}, -Nh:function Nh(a,b){this.e=a -this.a=b -this.b=null}, -Dy:function Dy(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -Dz:function Dz(a,b){var _=this -_.d=a -_.e=$ -_.a=_.f=null -_.b=b -_.c=null}, -DK:function DK(a,b){this.a=a -this.b=$ -this.$ti=b}, -aiq:function aiq(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aip:function aip(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Bt:function Bt(){}, -NP:function NP(){}, -Bu:function Bu(){}, -NQ:function NQ(){}, -aHj(a){var s,r,q -for(s=a.length,r=!1,q=0;q>")) -for(s=new A.cL(n,n.gp(n)),r=A.n(s).c,q=null;s.t();){p=s.d -o=p==null?r.a(p):p -q=(q==null?o:q).CQ(0,o)}if(q.gS(q))return B.c.gJ(a).a -return B.c.acm(B.c.gJ(a).gMC(),q.ghJ(q)).f}, -arQ(a,b){A.pI(a,new A.afq(b),t.zP)}, -aEN(a,b){A.pI(a,new A.afn(b),t.h7)}, -ahT:function ahT(a){this.a=a}, -u8:function u8(a,b){this.b=a -this.c=b}, -oX:function oX(a,b){this.a=a -this.b=b}, -Hp:function Hp(){}, -Zh:function Zh(a,b){this.a=a -this.b=b}, -Zg:function Zg(){}, -u0:function u0(a,b){this.a=a -this.b=b}, -NF:function NF(a){this.a=a}, -Xc:function Xc(){}, -afr:function afr(a){this.a=a}, -Xk:function Xk(a,b){this.a=a -this.b=b}, -Xe:function Xe(){}, -Xf:function Xf(a){this.a=a}, -Xg:function Xg(a){this.a=a}, -Xh:function Xh(){}, -Xi:function Xi(a){this.a=a}, -Xj:function Xj(a){this.a=a}, -Xd:function Xd(a,b,c){this.a=a -this.b=b -this.c=c}, -Xl:function Xl(a){this.a=a}, -Xm:function Xm(a){this.a=a}, -Xn:function Xn(a){this.a=a}, -Xo:function Xo(a){this.a=a}, -Xp:function Xp(a){this.a=a}, -Xq:function Xq(a){this.a=a}, -d8:function d8(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -afo:function afo(){}, -afq:function afq(a){this.a=a}, -afp:function afp(){}, -jB:function jB(a){this.a=a -this.b=null}, -afm:function afm(){}, -afn:function afn(a){this.a=a}, -JT:function JT(a){this.eS$=a}, -a4r:function a4r(){}, -a4s:function a4s(){}, -a4t:function a4t(a){this.a=a}, -wR:function wR(a,b,c){this.c=a -this.f=b -this.a=c}, -Of:function Of(a){var _=this -_.a=_.d=null -_.b=a -_.c=null}, -u9:function u9(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -Kp:function Kp(a){this.a=a -this.b=null}, -o9:function o9(){}, -IE:function IE(a){this.a=a -this.b=null}, -on:function on(){}, -JB:function JB(a){this.a=a -this.b=null}, -wh:function wh(a,b){this.c=a -this.a=b -this.b=null}, -Og:function Og(){}, -Q9:function Q9(){}, -SR:function SR(){}, -SS:function SS(){}, -aEB(a){a.dc() -a.bb(A.aiW())}, -aAT(a,b){var s,r="_depth" -if(A.a(a.e,r)>")),i).aV(0,new A.aia(k,h),t.e3)}, -If(a){var s=a.L(t.Gk) -return s==null?null:s.r.f}, -lG(a,b,c){var s=a.L(t.Gk) -return s==null?null:c.j("0?").a(J.ag(s.r.e,b))}, -uz:function uz(a,b){this.a=a -this.b=b}, -ai8:function ai8(a){this.a=a}, -ai9:function ai9(){}, -aia:function aia(a,b){this.a=a -this.b=b}, -f6:function f6(){}, -So:function So(){}, -GK:function GK(){}, -Ca:function Ca(a,b,c,d){var _=this -_.r=a -_.w=b -_.b=c -_.a=d}, -xD:function xD(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -OQ:function OQ(a,b,c){var _=this -_.d=a -_.e=b -_.a=_.f=null -_.b=c -_.c=null}, -ae_:function ae_(a){this.a=a}, -ae0:function ae0(a,b){this.a=a -this.b=b}, -adZ:function adZ(a,b,c){this.a=a -this.b=b -this.c=c}, -akJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){return new A.xY(m,d,o,l,p,k,q,n,!1,a,i,h,e,c,j,g,f)}, -apP(a,b,c,d,e,f){return new A.hb(b.L(t.w).f.P9(c,d,e,f),a,null)}, -e4(a){var s=a.L(t.w) -return s==null?null:s.f}, -akK(a){var s=A.e4(a) -s=s==null?null:s.c -return s==null?1:s}, -yn:function yn(a,b){this.a=a -this.b=b}, -xY:function xY(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q}, -a1U:function a1U(a){this.a=a}, -hb:function hb(a,b,c){this.f=a -this.b=b -this.a=c}, -IC:function IC(a,b){this.a=a -this.b=b}, -Cj:function Cj(a,b){this.c=a -this.a=b}, -P1:function P1(a){this.a=null -this.b=a -this.c=null}, -aeH:function aeH(){}, -aeJ:function aeJ(){}, -aeI:function aeI(){}, -SJ:function SJ(){}, -akL(a,b,c,d){return new A.Ir(b,c,!0,d,null)}, -Ir:function Ir(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.f=c -_.r=d -_.a=e}, -a28:function a28(a,b){this.a=a -this.b=b}, -F2:function F2(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -tL:function tL(a,b,c,d,e,f,g,h){var _=this -_.y1=null -_.id=_.go=!1 -_.k2=_.k1=null -_.Q=a -_.at=b -_.ax=c -_.ch=_.ay=null -_.CW=!1 -_.cx=null -_.e=d -_.f=e -_.r=null -_.a=f -_.b=null -_.c=g -_.d=h}, -aeK:function aeK(a){this.a=a}, -MB:function MB(a){this.a=a}, -P7:function P7(a,b,c){this.c=a -this.d=b -this.a=c}, -ID:function ID(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -uP:function uP(a,b){this.a=a -this.b=b}, -agR:function agR(a,b,c){var _=this -_.d=a -_.e=b -_.f=c -_.c=_.b=null}, -apZ(a){return A.hW(a,!1).aek(null)}, -hW(a,b){var s,r,q -if(a instanceof A.hl){s=a.p2 -s.toString -s=s instanceof A.j3}else s=!1 -if(s){s=a.p2 -s.toString -t.uK.a(s) -r=s}else r=null -if(b){q=a.Co(t.uK) -r=q==null?r:q -s=r}else{if(r==null)r=a.ju(t.uK) -s=r}s.toString -return s}, -aCf(a,b){var s,r,q,p,o,n,m=null,l=A.b([],t.ny) -if(B.b.bl(b,"/")&&b.length>1){b=B.b.bU(b,1) -s=t.z -l.push(a.pp("/",!0,m,s)) -r=b.split("/") -if(b.length!==0)for(q=r.length,p=0,o="";p=3}, -aET(a){return a.gaha()}, -arS(a){return new A.ag_(a)}, -aEQ(a){var s,r,q -t.OX.a(a) -s=J.ax(a) -r=s.h(a,0) -r.toString -switch(B.Ee[A.eg(r)].a){case 0:s=s.ey(a,1) -r=s[0] -r.toString -A.eg(r) -q=s[1] -q.toString -A.bk(q) -return new A.Pd(r,q,s.length>2?s[2]:null,B.lT) -case 1:s=s.ey(a,1)[1] -s.toString -t.pO.a(A.aCo(new A.Vg(A.eg(s)))) -return null}}, -ov:function ov(a,b){this.a=a -this.b=b}, -bS:function bS(){}, -a5K:function a5K(a){this.a=a}, -a5J:function a5J(a){this.a=a}, -a5N:function a5N(){}, -a5O:function a5O(){}, -a5P:function a5P(){}, -a5Q:function a5Q(){}, -a5L:function a5L(a){this.a=a}, -a5M:function a5M(){}, -i5:function i5(a,b){this.a=a -this.b=b}, -o8:function o8(){}, -nD:function nD(a,b,c){this.f=a -this.b=b -this.a=c}, -a5I:function a5I(){}, -M2:function M2(){}, -GJ:function GJ(){}, -yd:function yd(a,b,c,d,e,f,g,h){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.z=f -_.Q=g -_.a=h}, -a2C:function a2C(){}, -ez:function ez(a,b){this.a=a -this.b=b}, -Pi:function Pi(a,b,c){var _=this -_.a=null -_.b=a -_.c=b -_.d=c}, -dG:function dG(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=null -_.w=!0 -_.x=!1}, -afZ:function afZ(a,b){this.a=a -this.b=b}, -afX:function afX(){}, -afY:function afY(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ag_:function ag_(a){this.a=a}, -mB:function mB(){}, -uv:function uv(a,b){this.a=a -this.b=b}, -Cr:function Cr(a,b){this.a=a -this.b=b}, -Cs:function Cs(a,b){this.a=a -this.b=b}, -Ct:function Ct(a,b){this.a=a -this.b=b}, -j3:function j3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=$ -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=!1 -_.z=null -_.Q=$ -_.as=f -_.at=null -_.ay=_.ax=!1 -_.ch=0 -_.CW=g -_.cx=h -_.br$=i -_.em$=j -_.hQ$=k -_.d0$=l -_.cF$=m -_.bP$=n -_.aw$=o -_.a=null -_.b=p -_.c=null}, -a2A:function a2A(a){this.a=a}, -a2u:function a2u(){}, -a2v:function a2v(){}, -a2w:function a2w(){}, -a2x:function a2x(){}, -a2y:function a2y(){}, -a2z:function a2z(){}, -a2t:function a2t(a){this.a=a}, -uG:function uG(a,b){this.a=a -this.b=b}, -Qz:function Qz(){}, -Pd:function Pd(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=null}, -alm:function alm(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=null}, -Om:function Om(a){var _=this -_.x=null -_.a=!1 -_.c=_.b=null -_.y1$=0 -_.y2$=a -_.a6$=_.ao$=0 -_.aq$=!1}, -adf:function adf(){}, -aeY:function aeY(){}, -Cu:function Cu(){}, -Cv:function Cv(){}, -IF:function IF(){}, -cY:function cY(a,b,c,d){var _=this -_.d=a -_.b=b -_.a=c -_.$ti=d}, -Cw:function Cw(a,b,c){var _=this -_.d=_.c=_.b=_.a=_.ch=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1 -_.$ti=c}, -h8:function h8(){}, -SO:function SO(){}, -rb(a,b){return new A.j6(a,b,new A.bC(null,t.af),$.b4())}, -j6:function j6(a,b,c,d){var _=this -_.a=a -_.b=!1 -_.c=b -_.d=!1 -_.e=null -_.f=c -_.y1$=0 -_.y2$=d -_.a6$=_.ao$=0 -_.aq$=!1}, -a2Y:function a2Y(a){this.a=a}, -ux:function ux(a,b,c){this.c=a -this.d=b -this.a=c}, -Cx:function Cx(a){this.a=null -this.b=a -this.c=null}, -af5:function af5(){}, -yq:function yq(a,b){this.c=a -this.a=b}, -rd:function rd(a,b,c,d){var _=this -_.d=a -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null}, -a31:function a31(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a30:function a30(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a32:function a32(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a3_:function a3_(){}, -a2Z:function a2Z(){}, -RM:function RM(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -RN:function RN(a,b,c){var _=this -_.p3=$ -_.p4=a -_.d=_.c=_.b=_.a=_.cx=_.ch=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1}, -uF:function uF(a,b,c,d,e,f,g,h){var _=this -_.C=!1 -_.M=null -_.af=a -_.a7=b -_.q=c -_.D=d -_.bz$=e -_.U$=f -_.bV$=g -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=h -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -afJ:function afJ(a){this.a=a}, -afH:function afH(a){this.a=a}, -afI:function afI(a){this.a=a}, -afG:function afG(a){this.a=a}, -afK:function afK(a,b,c){this.a=a -this.b=b -this.c=c}, -Ps:function Ps(){}, -SW:function SW(){}, -arE(a,b,c){var s,r=null,q="_glowController",p=t.Y,o=new A.ar(0,0,p),n=new A.ar(0,0,p),m=new A.BI(B.eX,o,n,0.5,0.5,b,a,$.b4()),l=A.bo(r,r,r,r,c) -l.c1(m.gyh()) -A.c9(m.b,q) -m.b=l -s=A.cn(B.dN,A.a(l,q),r) -s.a.a2(0,m.gcY()) -t.m.a(s) -A.c9(m.r,"_glowOpacity") -m.r=new A.aC(s,o,p.j("aC")) -A.c9(m.x,"_glowSize") -m.x=new A.aC(s,n,p.j("aC")) -p=c.v3(m.ga87()) -A.c9(m.y,"_displacementTicker") -m.y=p -return m}, -qH:function qH(a,b,c,d){var _=this -_.e=a -_.f=b -_.w=c -_.a=d}, -BJ:function BJ(a,b,c,d){var _=this -_.r=_.f=_.e=_.d=null -_.w=a -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null}, -pb:function pb(a,b){this.a=a -this.b=b}, -BI:function BI(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=$ -_.c=null -_.e=_.d=0 -_.f=b -_.r=$ -_.w=c -_.y=_.x=$ -_.z=null -_.Q=d -_.as=e -_.at=0 -_.ax=f -_.ay=g -_.y1$=0 -_.y2$=h -_.a6$=_.ao$=0 -_.aq$=!1}, -ad4:function ad4(a){this.a=a}, -Ol:function Ol(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -tf:function tf(a,b,c){this.c=a -this.e=b -this.a=c}, -Dt:function Dt(a,b,c){var _=this -_.d=$ -_.f=_.e=null -_.r=!0 -_.bP$=a -_.aw$=b -_.a=null -_.b=c -_.c=null}, -agq:function agq(a,b,c){this.a=a -this.b=b -this.c=c}, -pq:function pq(a,b){this.a=a -this.b=b}, -Ds:function Ds(a,b,c){var _=this -_.b=_.a=$ -_.c=a -_.d=b -_.y1$=_.e=0 -_.y2$=c -_.a6$=_.ao$=0 -_.aq$=!1}, -lP:function lP(a,b){this.a=a -this.c=!0 -this.e0$=b}, -CA:function CA(){}, -Ea:function Ea(){}, -Eq:function Eq(){}, -aq2(a,b){var s=a.f -s.toString -return!(s instanceof A.re)}, -a36(a){var s=a.ace(t.Mf) -return s==null?null:s.d}, -Do:function Do(a){this.a=a}, -IU:function IU(){this.a=null}, -a35:function a35(a){this.a=a}, -re:function re(a,b,c){this.c=a -this.d=b -this.a=c}, -aq1(a){return new A.IT(a,A.b([],t.ZP),$.b4())}, -IT:function IT(a,b,c){var _=this -_.y=a -_.d=b -_.y1$=0 -_.y2$=c -_.a6$=_.ao$=0 -_.aq$=!1}, -oc:function oc(a,b,c,d,e,f){var _=this -_.f=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -pj:function pj(a,b,c,d,e,f,g,h,i){var _=this -_.af=a -_.a7=null -_.q=b -_.k1=0 -_.k2=c -_.k3=null -_.f=d -_.r=e -_.w=f -_.x=g -_.z=_.y=null -_.Q=0 -_.at=_.as=null -_.ax=!1 -_.ay=!0 -_.ch=!1 -_.CW=null -_.cx=!1 -_.db=_.cy=null -_.dx=h -_.dy=null -_.y1$=0 -_.y2$=i -_.a6$=_.ao$=0 -_.aq$=!1}, -BG:function BG(a,b){this.b=a -this.a=b}, -yr:function yr(a){this.a=a}, -ys:function ys(a,b,c,d){var _=this -_.r=a -_.y=b -_.z=c -_.a=d}, -Pu:function Pu(a){var _=this -_.d=0 -_.a=null -_.b=a -_.c=null}, -af6:function af6(a){this.a=a}, -af7:function af7(a,b){this.a=a -this.b=b}, -j7:function j7(){}, -Jh:function Jh(a,b,c,d){var _=this -_.d=a -_.f=b -_.r=c -_.a=d}, -a1Y:function a1Y(){}, -a3B:function a3B(){}, -GH:function GH(a,b){this.a=a -this.d=b}, -aqh(a){return new A.rl(null,a,null)}, -jd(a){var s=a.L(t.bb) -return s==null?null:s.f}, -rl:function rl(a,b,c){this.f=a -this.b=b -this.a=c}, -ry(a){var s=a.L(t.lQ) -return s==null?null:s.f}, -aai(a,b){return new A.AR(a,b,null)}, -m4:function m4(a,b,c){this.c=a -this.d=b -this.a=c}, -QA:function QA(a,b,c,d,e,f){var _=this -_.br$=a -_.em$=b -_.hQ$=c -_.d0$=d -_.cF$=e -_.a=null -_.b=f -_.c=null}, -AR:function AR(a,b,c){this.f=a -this.b=b -this.a=c}, -zx:function zx(a,b,c){this.c=a -this.d=b -this.a=c}, -CZ:function CZ(a){var _=this -_.d=null -_.e=!1 -_.r=_.f=null -_.w=!1 -_.a=null -_.b=a -_.c=null}, -afS:function afS(a){this.a=a}, -afR:function afR(a,b){this.a=a -this.b=b}, -dy:function dy(){}, -jh:function jh(){}, -a5B:function a5B(a,b){this.a=a -this.b=b}, -ahu:function ahu(){}, -SX:function SX(){}, -dQ:function dQ(){}, -is:function is(){}, -CY:function CY(){}, -zt:function zt(a,b,c){var _=this -_.CW=a -_.x=null -_.a=!1 -_.c=_.b=null -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1 -_.$ti=c}, -zs:function zs(a,b){var _=this -_.CW=a -_.x=null -_.a=!1 -_.c=_.b=null -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -a5H:function a5H(a,b){this.a=a -this.b=b}, -Is(a,b){var s=a.L(t.Fe),r=s==null?null:s.w -return b.j("hU<0>?").a(r)}, -rc:function rc(){}, -dC:function dC(){}, -aaa:function aaa(a,b,c){this.a=a -this.b=b -this.c=c}, -aab:function aab(a,b,c){this.a=a -this.b=b -this.c=c}, -aac:function aac(a,b,c){this.a=a -this.b=b -this.c=c}, -aa9:function aa9(a,b){this.a=a -this.b=b}, -Id:function Id(){}, -NG:function NG(a,b){this.e=a -this.a=b -this.b=null}, -Cl:function Cl(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.w=c -_.b=d -_.a=e}, -uu:function uu(a,b,c){this.c=a -this.a=b -this.$ti=c}, -mA:function mA(a,b,c,d){var _=this -_.d=null -_.e=$ -_.f=a -_.r=b -_.a=null -_.b=c -_.c=null -_.$ti=d}, -aeL:function aeL(a){this.a=a}, -aeP:function aeP(a){this.a=a}, -aeQ:function aeQ(a){this.a=a}, -aeO:function aeO(a){this.a=a}, -aeM:function aeM(a){this.a=a}, -aeN:function aeN(a){this.a=a}, -hU:function hU(){}, -a2a:function a2a(a,b){this.a=a -this.b=b}, -a29:function a29(){}, -yK:function yK(){}, -yY:function yY(){}, -Hn:function Hn(a,b,c){this.e=a -this.c=b -this.a=c}, -Ho:function Ho(a,b,c){this.e=a -this.c=b -this.a=c}, -uD:function uD(a,b,c){var _=this -_.u=a -_.q$=b -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -CM:function CM(a,b,c,d,e){var _=this -_.ds=a -_.cq=b -_.u=c -_.q$=d -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=e -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -ut:function ut(){}, -al_(a,b,c){return new A.Ky(c,a,b,null)}, -Ky:function Ky(a,b,c,d){var _=this -_.d=a -_.f=b -_.x=c -_.a=d}, -KF:function KF(){}, -lu:function lu(a){this.a=a}, -a_M:function a_M(a,b){this.b=a -this.a=b}, -a6k:function a6k(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -XD:function XD(a,b){this.b=a -this.a=b}, -Ff:function Ff(a){this.b=$ -this.a=a}, -GR:function GR(a){this.c=this.b=$ -this.a=a}, -zE:function zE(a,b,c){this.a=a -this.b=b -this.$ti=c}, -a6f:function a6f(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a6e:function a6e(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a6i(a){var s=a.L(t.Cy),r=s==null?null:s.f -return r==null?B.xm:r}, -vd:function vd(a,b){this.a=a -this.b=b}, -KG:function KG(){}, -a6g:function a6g(){}, -a6h:function a6h(){}, -ahn:function ahn(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -zF:function zF(a,b,c){this.f=a -this.b=b -this.a=c}, -a6j(){return new A.oy(A.b([],t.ZP),$.b4())}, -oy:function oy(a,b){var _=this -_.d=a -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -i7:function i7(){}, -wI:function wI(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -O5:function O5(){}, -al0(a,b,c,d,e){var s=new A.fc(c,e,d,a,0) -if(b!=null)s.e0$=b -return s}, -aHy(a){return a.e0$===0}, -fg:function fg(){}, -Mg:function Mg(){}, -eN:function eN(){}, -rF:function rF(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.e0$=d}, -fc:function fc(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.e0$=e}, -hY:function hY(a,b,c,d,e,f){var _=this -_.d=a -_.e=b -_.f=c -_.a=d -_.b=e -_.e0$=f}, -kq:function kq(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.e0$=d}, -Ma:function Ma(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.e0$=d}, -D6:function D6(){}, -D5:function D5(a,b,c){this.f=a -this.b=b -this.a=c}, -my:function my(a){var _=this -_.d=a -_.c=_.b=_.a=null}, -zH:function zH(a,b){this.c=a -this.a=b}, -zI:function zI(a,b){var _=this -_.d=a -_.a=null -_.b=b -_.c=null}, -a6l:function a6l(a){this.a=a}, -a6m:function a6m(a){this.a=a}, -azR(a,b,c){var s,r -if(a>0){s=a/c -if(b"))}, -alU(a,b){var s=$.F.D$.z.h(0,a).gF() -s.toString -return t.r.a(s).i1(b)}, -rH:function rH(a,b){this.a=a -this.b=b}, -rI:function rI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=!1 -_.cy=_.cx=_.CW=_.ch=null -_.db=$ -_.y1$=0 -_.y2$=o -_.a6$=_.ao$=0 -_.aq$=!1}, -a6B:function a6B(){}, -rr:function rr(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.w=d -_.x=e -_.as=f -_.ch=g -_.CW=h -_.cx=i -_.cy=j -_.db=k -_.dx=l -_.a=m}, -je:function je(a,b,c,d,e){var _=this -_.f=_.e=_.d=null -_.w=_.r=$ -_.x=a -_.y=!1 -_.z=$ -_.bP$=b -_.aw$=c -_.a=null -_.b=d -_.c=null -_.$ti=e}, -a4o:function a4o(a){this.a=a}, -a4k:function a4k(a){this.a=a}, -a4l:function a4l(a){this.a=a}, -a4h:function a4h(a){this.a=a}, -a4i:function a4i(a){this.a=a}, -a4j:function a4j(a){this.a=a}, -a4m:function a4m(a){this.a=a}, -a4n:function a4n(a){this.a=a}, -a4p:function a4p(a){this.a=a}, -a4q:function a4q(a){this.a=a}, -jE:function jE(a,b,c,d,e,f,g,h,i){var _=this -_.ej=a -_.go=!1 -_.b5=_.aq=_.a6=_.ao=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=null -_.Q=b -_.at=c -_.ax=d -_.ch=_.ay=null -_.CW=!1 -_.cx=null -_.e=e -_.f=f -_.r=null -_.a=g -_.b=null -_.c=h -_.d=i}, -jF:function jF(a,b,c,d,e,f,g,h,i){var _=this -_.al=a -_.af=_.M=_.C=_.bQ=_.cW=_.b5=_.aq=_.a6=_.ao=_.y2=_.y1=null -_.id=_.go=!1 -_.k2=_.k1=null -_.Q=b -_.at=c -_.ax=d -_.ch=_.ay=null -_.CW=!1 -_.cx=null -_.e=e -_.f=f -_.r=null -_.a=g -_.b=null -_.c=h -_.d=i}, -uB:function uB(){}, -zS:function zS(a,b){this.c=a -this.a=b}, -QW:function QW(a){var _=this -_.d=$ -_.a=null -_.b=a -_.c=null}, -QX:function QX(a,b,c){this.x=a -this.b=b -this.a=c}, -oG(a,b,c,d,e){return new A.aR(a,c,e,b,d)}, -aDh(a){var s=A.z(t.y6,t.Xw) -a.Y(0,new A.a7a(s)) -return s}, -aR:function aR(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -p4:function p4(a,b){this.a=a -this.b=b}, -rP:function rP(a,b){var _=this -_.b=a -_.c=null -_.y1$=0 -_.y2$=b -_.a6$=_.ao$=0 -_.aq$=!1}, -a7a:function a7a(a){this.a=a}, -a79:function a79(){}, -m9:function m9(a,b,c,d){var _=this -_.d=a -_.e=b -_.f=c -_.a=d}, -Dc:function Dc(a){var _=this -_.a=_.d=null -_.b=a -_.c=null}, -QZ:function QZ(a,b,c){this.f=a -this.b=b -this.a=c}, -QY:function QY(){}, -R_:function R_(){}, -R0:function R0(){}, -Sq:function Sq(){}, -a7d(a,b,c){var s=c===B.a2 -return new A.KU(c,s,b,a,null)}, -KU:function KU(a,b,c,d,e){var _=this -_.c=a -_.r=b -_.w=c -_.x=d -_.a=e}, -a7e:function a7e(a,b,c){this.a=a -this.b=b -this.c=c}, -uI:function uI(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -R1:function R1(a,b){var _=this -_.d=_.c=_.b=_.a=_.cx=_.ch=_.p3=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1}, -CW:function CW(a,b,c,d,e,f){var _=this -_.C=a -_.M=b -_.a7=c -_.q=d -_.q$=e -_.go=_.fy=null -_.id=!1 -_.k2=_.k1=null -_.k3=0 -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=f -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -afB:function afB(a,b){this.a=a -this.b=b}, -afA:function afA(a,b){this.a=a -this.b=b}, -Ek:function Ek(){}, -SY:function SY(){}, -SZ:function SZ(){}, -asE(a,b){return b}, -aqT(a,b){return new A.ta(b,A.al4(t.S,t.Dv),a,B.a7)}, -aDq(a,b,c,d,e){if(b===e-1)return d -return d+(d-c)/(b-a+1)*(e-b-1)}, -aBI(a,b){return new A.xl(b,a,null)}, -a8r:function a8r(){}, -QG:function QG(a){this.a=a}, -L7:function L7(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.w=f}, -Ld:function Ld(){}, -oJ:function oJ(){}, -Lb:function Lb(a,b){this.d=a -this.a=b}, -ta:function ta(a,b,c,d){var _=this -_.p3=a -_.p4=b -_.RG=_.R8=null -_.rx=!1 -_.d=_.c=_.b=_.a=_.cx=_.ch=null -_.e=$ -_.f=c -_.r=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1}, -a8v:function a8v(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a8t:function a8t(){}, -a8u:function a8u(a,b){this.a=a -this.b=b}, -a8s:function a8s(a,b,c){this.a=a -this.b=b -this.c=c}, -a8w:function a8w(a,b){this.a=a -this.b=b}, -xl:function xl(a,b,c){this.f=a -this.b=b -this.a=c}, -L8:function L8(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -R5:function R5(a,b,c){this.f=a -this.d=b -this.a=c}, -R6:function R6(a,b,c){this.e=a -this.c=b -this.a=c}, -Qq:function Qq(a,b,c){var _=this -_.co=null -_.c5=a -_.e1=null -_.q$=b -_.fy=null -_.d=!1 -_.f=_.e=null -_.w=_.r=!1 -_.x=null -_.y=!1 -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=c -_.ch=!1 -_.CW=$ -_.cx=!0 -_.cy=null -_.db=!0 -_.dx=null -_.a=0 -_.c=_.b=null}, -mj:function mj(){}, -oK:function oK(){}, -A2:function A2(a,b,c,d){var _=this -_.p3=a -_.d=_.c=_.b=_.a=_.cx=_.ch=_.p4=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1 -_.$ti=d}, -Ln:function Ln(a){this.a=a}, -jQ(a,b,c,d,e,f,g,h,i){return new A.lk(f,g,e,d,c,i,h,a,b)}, -aoM(a,b,c){var s=null -return new A.jL(new A.WC(s,c,s,s,b,s,s,a),s)}, -aoL(a){var s=a.L(t.uy) -return s==null?null:s.grp(s)}, -bu(a,b,c,d,e,f,g,h){return new A.es(a,null,f,g,h,e,c,b,d,null)}, -lk:function lk(a,b,c,d,e,f,g,h,i){var _=this -_.w=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.as=f -_.at=g -_.b=h -_.a=i}, -WC:function WC(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -Pm:function Pm(a){this.a=a}, -es:function es(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.w=e -_.y=f -_.z=g -_.as=h -_.at=i -_.a=j}, -wm:function wm(){}, -hi:function hi(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -eR:function eR(a,b,c){this.a=a -this.b=b -this.c=c}, -arU(a,b,c,d,e,f,g,h,i,j){return new A.D9(b,f,d,e,c,h,j,g,i,a,null)}, -tx:function tx(a,b){this.a=a -this.b=b}, -a9O:function a9O(){}, -LQ:function LQ(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=$ -_.e=d -_.f=e -_.r=f -_.w=g -_.x=!1 -_.z=_.y=$}, -KL:function KL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.go=_.fy=null -_.id=!1}, -a6C:function a6C(a){this.a=a}, -D9:function D9(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.a=k}, -Da:function Da(a,b,c){var _=this -_.d=$ -_.fe$=a -_.cz$=b -_.a=null -_.b=c -_.c=null}, -Aw:function Aw(){}, -Av:function Av(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.a=q}, -DC:function DC(a){var _=this -_.e=_.d=null -_.f=!1 -_.a=_.x=_.w=_.r=null -_.b=a -_.c=null}, -agG:function agG(a){this.a=a}, -agH:function agH(a){this.a=a}, -agI:function agI(a){this.a=a}, -agJ:function agJ(a){this.a=a}, -agK:function agK(a){this.a=a}, -agL:function agL(a){this.a=a}, -agM:function agM(a){this.a=a}, -agN:function agN(a){this.a=a}, -En:function En(){}, -ale(a){var s=a.L(t.l3),r=s==null?null:s.f -return r!==!1}, -arc(a){var s=a.mj(t.l3) -if(s==null)s=null -else{s=s.f -s.toString}t.Wj.a(s) -s=s==null?null:s.r -return s==null?new A.d7(!0,$.b4()):s}, -tB:function tB(a,b,c){this.c=a -this.d=b -this.a=c}, -RP:function RP(a,b){var _=this -_.d=!0 -_.e=a -_.a=null -_.b=b -_.c=null}, -u4:function u4(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -jk:function jk(){}, -cP:function cP(){}, -Sn:function Sn(a,b,c){var _=this -_.w=a -_.a=null -_.b=!1 -_.c=null -_.d=b -_.e=null -_.f=c -_.r=$}, -LX:function LX(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -al3(a,b,c,d){return new A.L6(c,d,a,b,null)}, -KC(a,b){return new A.KB(a,b,null)}, -aqD(a,b){return new A.Kt(a,b,null)}, -aqN(a,b,c,d){return new A.KW(a,b,c,d,null)}, -iQ(a,b,c){return new A.H7(c,a,b,null)}, -fP(a,b,c){return new A.F1(b,c,a,null)}, -vk:function vk(){}, -B0:function B0(a){this.a=null -this.b=a -this.c=null}, -aaV:function aaV(){}, -L6:function L6(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -KB:function KB(a,b,c){this.r=a -this.c=b -this.a=c}, -Kt:function Kt(a,b,c){this.r=a -this.c=b -this.a=c}, -KW:function KW(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -H7:function H7(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -GC:function GC(a,b,c,d){var _=this -_.e=a -_.r=b -_.c=c -_.a=d}, -F1:function F1(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -ars(a,b,c,d,e,f,g,h){return new A.p0(b,a,g,e,c,d,f,h,null)}, -art(a,b){var s -switch(b.a){case 0:s=a.L(t.I) -s.toString -return A.ajs(s.f) -case 1:return B.J -case 2:s=a.L(t.I) -s.toString -return A.ajs(s.f) -case 3:return B.J}}, -p0:function p0(a,b,c,d,e,f,g,h,i){var _=this -_.e=a -_.r=b -_.w=c -_.x=d -_.y=e -_.z=f -_.Q=g -_.c=h -_.a=i}, -Sk:function Sk(a,b,c){var _=this -_.a7=!1 -_.q=null -_.p3=$ -_.p4=a -_.d=_.c=_.b=_.a=_.cx=_.ch=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ay=_.ax=_.at=!1}, -Tf:function Tf(){}, -Tg:function Tg(){}, -kI:function kI(){}, -a0Q:function a0Q(){}, -JX:function JX(){}, -a4E:function a4E(a){this.a=a}, -a3G:function a3G(a){this.a=a}, -nt(a,b,c,d){var s=0,r=A.S(t.X7),q,p,o,n,m -var $async$nt=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:m=d===B.R9?"long":"short" -if(c==null)c=B.m -p=B.n.a -o=B.n.a -n=c.gl(c) -s=3 -return A.U(B.JO.k7("showToast",A.aB(["msg",b,"length",m,"time",1,"gravity","bottom","bgcolor",p,"iosBgcolor",o,"textcolor",n,"iosTextcolor",c.gl(c),"fontSize",a,"webShowClose",!1,"webBgColor",u.P,"webPosition","right"],t.N,t.z),!1,t.y),$async$nt) -case 3:q=f -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$nt,r)}, -AE:function AE(a,b){this.a=a -this.b=b}, -Hk:function Hk(){}, -aA0(a,b){var s=new A.vO(new A.Vt(),A.z(t.N,b.j("aw")),b.j("vO<0>")) -s.P(0,a) -return s}, -vO:function vO(a,b,c){this.a=a -this.c=b -this.$ti=c}, -Vt:function Vt(){}, -aC4(a){return A.aIV("media type",a,new A.a1V(a))}, -xZ:function xZ(a,b,c){this.a=a -this.b=b -this.c=c}, -a1V:function a1V(a){this.a=a}, -a1X:function a1X(a){this.a=a}, -a1W:function a1W(){}, -aHH(a){var s -a.N2($.avS(),"quoted string") -s=a.gD3().h(0,0) -return A.aub(B.b.N(s,1,s.length-1),$.avR(),new A.aiQ(),null)}, -aiQ:function aiQ(){}, -WK:function WK(){this.a=null}, -a1s:function a1s(){}, -a1t:function a1t(){}, -a1z:function a1z(){}, -e3:function e3(a,b){this.a=a -this.b=b}, -a1A:function a1A(a,b,c){this.a=a -this.b=b -this.c=c}, -W6:function W6(){}, -aCC(){var s=new A.a3U() -s.Xl(!0,8,B.tF,120,2,!1,!0,!1,0) -return s}, -a3U:function a3U(){var _=this -_.y=$ -_.as=_.Q=_.z=""}, -a3V:function a3V(a){this.a=a}, -a3W:function a3W(a){this.a=a}, -a33:function a33(){}, -a34:function a34(a){this.a=a}, -asO(a){if(t.Xu.b(a))return a -throw A.c(A.fR(a,"uri","Value must be a String or a Uri"))}, -at1(a,b){var s,r,q,p,o,n,m,l -for(s=b.length,r=1;r=1;s=q){q=s-1 -if(b[q]!=null)break}p=new A.by("") -o=""+(a+"(") -p.a=o -n=A.af(b) -m=n.j("fF<1>") -l=new A.fF(b,0,s,m) -l.tg(b,0,s,n.c) -m=o+new A.az(l,new A.ais(),m.j("az")).bB(0,", ") -p.a=m -p.a=m+("): part "+(r-1)+" was null, but part "+r+" was not.") -throw A.c(A.b5(p.i(0),null))}}, -Wa:function Wa(a,b){this.a=a -this.b=b}, -Wc:function Wc(){}, -Wd:function Wd(){}, -ais:function ais(){}, -nS:function nS(){}, -Je(a,b){var s,r,q,p,o,n=b.Qv(a) -b.kI(a) -if(n!=null)a=B.b.bU(a,n.length) -s=t.s -r=A.b([],s) -q=A.b([],s) -s=a.length -if(s!==0&&b.jy(B.b.ac(a,0))){q.push(a[0]) -p=1}else{q.push("") -p=0}for(o=p;oo)throw A.c(new A.xb("Input too long. "+q+" > "+o)) -if(q+4<=o)m.kS(0,0,4) -for(;B.f.bE(m.b,8)!==0;)m.P_(!1) -for(;!0;){if(m.b>=o)break -m.kS(0,236,8) -if(m.b>=o)break -m.kS(0,17,8)}return A.aFD(m,n)}, -aFD(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=t.tG,b=A.b7(a1.length,null,!1,c),a=A.b7(a1.length,null,!1,c) -for(c=a0.a,s=0,r=0,q=0,p=0;p=0?g[e]:0}}d=A.b([],t.t) -for(k=0;k5)s+=3+o-5}for(m=f-1,r=0;ra.c.length)A.K(A.dx("Offset "+b+u.D+a.gp(a)+".")) -return new A.Ha(a,b)}, -a8x:function a8x(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -Ha:function Ha(a,b){this.a=a -this.b=b}, -BA:function BA(a,b,c){this.a=a -this.b=b -this.c=c}, -aBs(a,b){var s=A.aBt(A.b([A.aEv(a,!0)],t._Y)),r=new A.a_J(b).$0(),q=B.f.i(B.c.gR(s).b+1),p=A.aBu(s)?0:3,o=A.af(s) -return new A.a_p(s,r,null,1+Math.max(q.length,p),new A.az(s,new A.a_r(),o.j("az<1,q>")).o8(0,B.wI),!A.aIb(new A.az(s,new A.a_s(),o.j("az<1,D?>"))),new A.by(""))}, -aBu(a){var s,r,q -for(s=0;s") -return A.ap(new A.hH(s,new A.a_w(),r),!0,r.j("p.E"))}, -aEv(a,b){return new A.ew(new A.ade(a).$0(),!0)}, -aEx(a){var s,r,q,p,o,n,m=a.gc7(a) -if(!B.b.A(m,"\r\n"))return a -s=a.gaO(a) -r=s.gbJ(s) -for(s=m.length-1,q=0;q"))}, -aBw(a,b,c,d){var s=0,r=A.S(d),q,p,o -var $async$x1=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:p=$.iT -s=3 -return A.U(p==null?null:p.Ek(0,a,b,t.z),$async$x1) -case 3:o=f -o.toString -q=A.apn(o,c) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$x1,r)}, -nH(a,b,c,d){return A.aBx(a,b,c,d,d.j("hM<0?>"))}, -aBx(a,b,c,d,e){var s=0,r=A.S(e),q,p,o -var $async$nH=A.T(function(f,g){if(f===1)return A.P(g,r) -while(true)switch(s){case 0:p=$.iT -s=3 -return A.U(p==null?null:p.OL(a,b,A.akO(!1,null,new A.a_Y()),c,t.z),$async$nH) -case 3:o=g -o.toString -q=A.apn(o,d) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$nH,r)}, -apn(a,b){var s,r,q,p,o=null,n="code",m="message" -if(A.dH(J.W(a.a).a,o)==="String")a.a=B.at.Mu(0,a.a,o) -if(!J.f(J.ag(a.a,n),200)){$.l5().jA(B.fX,"\u8bbf\u95eeapi\u51fa\u73b0\u9519\u8bef",o,o) -s=J.ag(a.a,"error") -$.l5().jA(B.fX,s,o,o) -s=J.ag(a.a,n) -J.ag(a.a,"error") -return new A.hM(s,o,b.j("hM<0?>"))}if(A.b1(b)===B.dB){s=J.ag(a.a,n) -J.ag(a.a,m) -return new A.hM(s,J.ag(a.a,"data"),b.j("hM<0?>"))}else{s=A.b1(b) -r=a.a -q=b.j("hM<0?>") -p=J.ax(r) -if(s===B.RH){s=p.h(r,n) -J.ag(a.a,m) -return new A.hM(s,o,q)}else{s=p.h(r,n) -J.ag(a.a,m) -return new A.hM(s,A.akA(J.ag(a.a,"data"),b),q)}}}, -a_Y:function a_Y(){}, -hM:function hM(a,b,c){this.a=a -this.c=b -this.$ti=c}, -AH:function AH(){}, -jY:function jY(){var _=this -_.e=_.d=_.c=_.b=_.a=null}, -i1:function i1(){var _=this -_.d=_.c=_.b=_.a=null}, -kr:function kr(){this.a=null}, -ju:function ju(){var _=this -_.e=_.d=_.c=_.b=_.a=null}, -aau(){var s=0,r=A.S(t.H),q,p -var $async$aau=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:q=$.cy -s=2 -return A.U(A.Uk((q==null?$.cy=new A.eS():q).b),$async$aau) -case 2:p=b -q=$.cy;(q==null?$.cy=new A.eS():q).a=p -return A.Q(null,r)}}) -return A.R($async$aau,r)}, -M9(){var s=0,r=A.S(t.H),q,p,o,n -var $async$M9=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:n=$.cy -if(n==null)n=$.cy=new A.eS() -s=2 -return A.U(A.KR(),$async$M9) -case 2:q=b.a -p=J.ax(q) -o=A.bH(p.h(q,"token")) -n.b=o==null?"":o -o=A.bH(p.h(q,"account")) -n.c=o==null?"":o -o=A.bH(p.h(q,"password")) -n.d=o==null?"":o -q=A.bH(p.h(q,"baseUrl")) -n.e=q==null?"":q -A.HG() -s=3 -return A.U(A.aau(),$async$M9) -case 3:return A.Q(null,r)}}) -return A.R($async$M9,r)}, -aat(a){var s=0,r=A.S(t.z),q -var $async$aat=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=2 -return A.U(A.KR(),$async$aat) -case 2:q=c -q.pt("String","baseUrl",a.e) -q.pt("String","token",a.b) -q.pt("String","account",a.c) -q.pt("String","password",a.d) -q.pt("String","baseUrl",a.e) -return A.Q(null,r)}}) -return A.R($async$aat,r)}, -eS:function eS(){var _=this -_.a=!1 -_.r=_.e=_.d=_.c=_.b=""}, -akA(a,b){if(t.j.b(a))return A.aBH(a,b) -else return A.aBG(a,b)}, -aBG(a,b){var s,r=null,q=A.dH(A.b1(b).a,r) -if(q===A.dH(B.Rz.a,r)){s=new A.jY() -s.FZ(a) -return b.a(s)}if(q===A.dH(B.RN.a,r)){s=new A.i1() -s.G_(a) -return b.a(s)}if(q===A.dH(B.RV.a,r)){s=new A.kr() -s.a=J.ag(a,"sign") -return b.a(s)}if(q===A.dH(B.S1.a,r)){s=new A.ju() -s.G2(a) -return b.a(s)}throw A.c(A.cv("not found"))}, -aBH(a,b){if(b.b(A.b([],t.y0)))return b.a(J.mO(a,new A.a0R(),t.x0).dK(0)) -if(b.b(A.b([],t.E8)))return b.a(J.mO(a,new A.a0S(),t.k6).dK(0)) -if(b.b(A.b([],t.QC)))return b.a(J.mO(a,new A.a0T(),t.Hc).dK(0)) -if(b.b(A.b([],t.hq)))return b.a(J.mO(a,new A.a0U(),t.Z2).dK(0)) -throw A.c(A.cv("not found"))}, -a0R:function a0R(){}, -a0S:function a0S(){}, -a0T:function a0T(){}, -a0U:function a0U(){}, -atP(){if($.F==null)A.aEd() -var s=$.F -s.QC(B.JW) -s.EN()}, -Iw:function Iw(a){this.a=a}, -a2q:function a2q(){}, -a2r:function a2r(){}, -a2s:function a2s(){}, -mS:function mS(a){this.a=a}, -B3:function B3(a,b){var _=this -_.e=0 -_.f=a -_.a=null -_.b=b -_.c=null}, -ab1:function ab1(a){this.a=a}, -ab0:function ab0(){}, -ab2:function ab2(a){this.a=a}, -ab_:function ab_(){}, -aaY:function aaY(a,b){this.a=a -this.b=b}, -aaZ:function aaZ(a){this.a=a}, -vb:function vb(a){this.a=a}, -Mp:function Mp(a){var _=this -_.d="" -_.a=_.f=null -_.b=a -_.c=null}, -aaN:function aaN(a){this.a=a}, -aaL:function aaL(a,b){this.a=a -this.b=b}, -aaM:function aaM(a,b,c){this.a=a -this.b=b -this.c=c}, -aaK:function aaK(a,b,c){this.a=a -this.b=b -this.c=c}, -aaJ:function aaJ(a){this.a=a}, -aaI:function aaI(a){this.a=a}, -o_:function o_(a){this.a=a}, -OS:function OS(a){var _=this -_.d="" -_.e=$ -_.a=null -_.b=a -_.c=null}, -ae4:function ae4(a){this.a=a}, -ae3:function ae3(a,b){this.a=a -this.b=b}, -ae5:function ae5(a){this.a=a}, -ae2:function ae2(a){this.a=a}, -ae1:function ae1(a,b){this.a=a -this.b=b}, -o1:function o1(a){this.a=a}, -OV:function OV(a){var _=this -_.f=_.e=_.d=$ -_.a=null -_.b=a -_.c=null}, -aef:function aef(a){this.a=a}, -aeh:function aeh(a){this.a=a}, -aeg:function aeg(){}, -yo:function yo(a){this.a=a}, -Pq:function Pq(a){this.a=null -this.b=a -this.c=null}, -af1:function af1(a){this.a=a}, -af2:function af2(a){this.a=a}, -af0:function af0(){}, -af3:function af3(){}, -AS:function AS(a){this.a=a}, -DT:function DT(a,b){var _=this -_.d=a -_.a=null -_.b=b -_.c=null}, -ah7:function ah7(a){this.a=a}, -ah6:function ah6(){}, -ah4:function ah4(a,b){this.a=a -this.b=b}, -ah5:function ah5(a,b,c){this.a=a -this.b=b -this.c=c}, -ah8:function ah8(a,b){this.a=a -this.b=b}, -ah9:function ah9(a){this.a=a}, -a2_:function a2_(a){this.a=a}, -aaq:function aaq(){}, -aar:function aar(a,b){this.c=a -this.d=!1 -this.a=b}, -xW(a){var s=new A.bb(new Float64Array(16)) -if(s.kr(a)===0)return null -return s}, -aC0(){return new A.bb(new Float64Array(16))}, -aC1(){var s=new A.bb(new Float64Array(16)) -s.dC() -return s}, -o4(a,b,c){var s=new Float64Array(16),r=new A.bb(s) -r.dC() -s[14]=c -s[13]=b -s[12]=a -return r}, -Ij(a,b,c){var s=new Float64Array(16) -s[15]=1 -s[10]=c -s[5]=b -s[0]=a -return new A.bb(s)}, -bb:function bb(a){this.a=a}, -fH:function fH(a){this.a=a}, -ik:function ik(a){this.a=a}, -aj9(){var s=0,r=A.S(t.H) -var $async$aj9=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=2 -return A.U(A.ajv(new A.aja(),new A.ajb()),$async$aj9) -case 2:return A.Q(null,r)}}) -return A.R($async$aj9,r)}, -ajb:function ajb(){}, -aja:function aja(){}, -aAr(a){a.L(t.H5) -return null}, -aBP(a){return $.aBO.h(0,a).gahm()}, -atH(a){return t.jj.b(a)||t.I3.b(a)||t.X_.b(a)||t.J2.b(a)||t._A.b(a)||t.VW.b(a)||t.oL.b(a)}, -au4(a){if(typeof dartPrint=="function"){dartPrint(a) -return}if(typeof console=="object"&&typeof console.log!="undefined"){console.log(a) -return}if(typeof window=="object")return -if(typeof print=="function"){print(a) -return}throw"Unable to print message: "+String(a)}, -pH(a){var s=B.b.ac(u.W,a>>>6)+(a&63),r=s&1,q=B.b.ac(u.M,s>>>1) -return q>>>4&-r|q&15&r-1}, -jI(a,b){var s=B.b.ac(u.W,1024+(a&1023))+(b&1023),r=s&1,q=B.b.ac(u.M,s>>>1) -return q>>>4&-r|q&15&r-1}, -aHY(a,b,c,d){var s,r,q,p,o,n=A.z(d,c.j("x<0>")) -for(s=c.j("o<0>"),r=0;r<1;++r){q=a[r] -p=b.$1(q) -o=n.h(0,p) -if(o==null){o=A.b([],s) -n.n(0,p,o) -p=o}else p=o -J.fN(p,q)}return n}, -aHQ(a,b){var s,r,q,p,o,n,m,l,k="0",j=6e7,i=36e8,h=864e8 -for(s=a.a,r=0,q="";r<11;++r){p=b[r] -if(B.b.bl(p,"\\"))q+=B.b.bU(p,1) -else if(p==="yyyy"){o=""+A.yM(a) -n=o.length -q+=n<4?B.b.W(k,4-n)+o:o}else if(p==="yy"){o=""+B.f.bE(A.yM(a),100) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="mm"){o=""+A.yL(a) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="m")q+=A.yL(a) -else if(p==="MM")q+=B.Ex[A.yL(a)-1] -else if(p==="M")q+=B.EQ[A.yL(a)-1] -else if(p==="dd"){o=""+A.JC(a) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="d")q+=A.JC(a) -else if(p==="w")q+=(A.JC(a)+7)/7|0 -else if(p==="W"){n=A.aqo(A.yM(a),1,1,0,0,0,0,!1) -if(!A.l_(n))A.K(A.l3(n)) -q+=B.f.bC(B.f.bC(1000*(s-n),h)+7,7)}else if(p==="WW"){n=A.aqo(A.yM(a),1,1,0,0,0,0,!1) -if(!A.l_(n))A.K(A.l3(n)) -o=""+B.f.bC(B.f.bC(1000*(s-n),h)+7,7) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="DD")q+=B.DW[A.aqk(a)-1] -else if(p==="D")q+=B.ER[A.aqk(a)-1] -else if(p==="HH"){o=""+A.oo(a) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="H")q+=A.oo(a) -else if(p==="hh"){m=B.f.bE(A.oo(a),12) -o=""+(m===0?12:m) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="h"){m=B.f.bE(A.oo(a),12) -q+=m===0?12:m}else if(p==="am")q+=A.oo(a)<12?"AM":"PM" -else if(p==="nn"){o=""+A.JD(a) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="n")q+=A.JD(a) -else if(p==="ss"){o=""+A.JE(a) -n=o.length -q+=n<2?B.b.W(k,2-n)+o:o}else if(p==="s")q+=A.JE(a) -else if(p==="SSS"){o=""+A.a3Z(a) -n=o.length -q+=n<3?B.b.W(k,3-n)+o:o}else if(p==="S")q+=A.a3Z(a) -else if(p==="uuu"){n=B.b.W(k,1) -q+=n+"0"}else if(p==="u")q+="0" -else if(p==="z")if(B.f.bC(a.goi().a,j)===0)q+="Z" -else if(a.goi().a<0){o=""+B.f.bE(-B.f.bC(a.goi().a,i),24) -n=o.length -if(n<2)o=B.b.W(k,2-n)+o -l=""+B.f.bE(-B.f.bC(a.goi().a,j),60) -n=l.length -if(n<2)l=B.b.W(k,2-n)+l -q=q+"-"+o+l}else{o=""+B.f.bE(B.f.bC(a.goi().a,i),24) -n=o.length -if(n<2)o=B.b.W(k,2-n)+o -l=""+B.f.bE(B.f.bC(a.goi().a,j),60) -n=l.length -if(n<2)l=B.b.W(k,2-n)+l -q=q+"+"+o+l}else q=p==="Z"?q+a.gagv():q+p}return q.charCodeAt(0)==0?q:q}, -Tt(a,b){var s=null,r=A.aqU(s,s,s,s,B.ai,A.bu(A.e(b)+"\n\n copy success to clipboard",s,s,s,s,s,s,s),B.mR,B.B4,s,s,s,s,s,s,s),q=a.L(t.Pu) -q.toString -q.f.Ri(r) -A.w1(new A.n9(b==null?"null":b))}, -atC(a){var s,r,q,p,o,n=A.yM(a) -n=n>9?B.f.i(n):"0"+n -s=A.yL(a) -s=s>9?B.f.i(s):"0"+s -r=A.JC(a) -r=r>9?B.f.i(r):"0"+r -q=A.oo(a) -q=q>9?B.f.i(q):"0"+q -p=A.JD(a) -p=p>9?B.f.i(p):"0"+p -o=A.JE(a) -o=o>9?B.f.i(o):"0"+o -return n+"."+s+"."+r+"-"+q+":"+p+":"+o+":"+A.a3Z(a)}, -atD(a){var s,r,q=A.oo(a) -q=q>9?B.f.i(q):"0"+q -s=A.JD(a) -s=s>9?B.f.i(s):"0"+s -r=A.JE(a) -r=r>9?B.f.i(r):"0"+r -return q+":"+s+":"+r}, -Tr(a,b,c,d,e){return A.aHl(a,b,c,d,e,e)}, -aHl(a,b,c,d,e,f){var s=0,r=A.S(f),q -var $async$Tr=A.T(function(g,h){if(g===1)return A.P(h,r) -while(true)switch(s){case 0:s=3 -return A.U(null,$async$Tr) -case 3:q=a.$1(b) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Tr,r)}, -amu(a,b){var s,r,q -if(a==null)return b==null -if(b==null||a.a!==b.gp(b))return!1 -if(a===b)return!0 -for(s=A.ir(a,a.r),r=A.n(s).c;s.t();){q=s.d -if(!b.A(0,q==null?r.a(q):q))return!1}return!0}, -dV(a,b){var s -if(a==null)return b==null -if(b==null||a.length!==b.length)return!1 -if(a===b)return!0 -for(s=0;s1e6){if(q.b==null)q.b=$.JF.$0() -q.eY(0) -$.Tl=0}while(!0){if($.Tl<12288){q=$.TL() -q=!q.gS(q)}else q=r -if(!q)break -s=$.TL().oc() -$.Tl=$.Tl+s.length -A.au4(s)}r=$.TL() -if(!r.gS(r)){$.alN=!0 -$.Tl=0 -A.bN(B.dZ,A.aIv()) -if($.ahQ==null)$.ahQ=new A.aI(new A.a4($.a5,t.U),t.h)}else{$.amS().oD(0) -r=$.ahQ -if(r!=null)r.eg(0) -$.ahQ=null}}, -ap2(a,b,c){var s,r=A.ae(a) -if(c>0)if(r.b){s=r.as -if(s.a===B.a3){s=s.cy.a -s=A.ak(255,b.gl(b)>>>16&255,b.gl(b)>>>8&255,b.gl(b)&255).k(0,A.ak(255,s>>>16&255,s>>>8&255,s&255))}else s=!1}else s=!1 -else s=!1 -if(s)return A.q6(A.aAW(r.as.db,c),b) -return b}, -aAW(a,b){return A.ak(B.e.aI(255*((4.5*Math.log(b+1)+2)/100)),a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}, -YP(a){var s=0,r=A.S(t.H),q -var $async$YP=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)$async$outer:switch(s){case 0:a.gF().rY(B.vr) -switch(A.ae(a).w.a){case 0:case 1:q=A.Lz(B.N7) -s=1 -break $async$outer -case 2:case 3:case 4:case 5:q=A.cU(null,t.H) -s=1 -break $async$outer}case 1:return A.Q(q,r)}}) -return A.R($async$YP,r)}, -apa(a){a.gF().rY(B.J9) -switch(A.ae(a).w.a){case 0:case 1:return A.a_d() -case 2:case 3:case 4:case 5:return A.cU(null,t.H)}}, -aIs(a,b,c,d,e){var s,r,q,p,o,n,m=d.b,l=m+e,k=a.b,j=c.b-10,i=l+k<=j -k=m-e-k -s=k>=10 -if(b)r=i||!s -else r=!(s||!i) -q=r?Math.min(l,j):Math.max(k,10) -m=c.a -l=a.a -if(m-20m-n?k-l:o-j}return new A.m(p,q)}, -aBq(a,b,c){return null}, -akH(a){var s=a.a -if(s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[14]===0&&s[15]===1)return new A.m(s[12],s[13]) -return null}, -aC3(a,b){var s,r -if(a===b)return!0 -if(a==null)return A.akI(b) -s=a.a -r=b.a -return s[0]===r[0]&&s[1]===r[1]&&s[2]===r[2]&&s[3]===r[3]&&s[4]===r[4]&&s[5]===r[5]&&s[6]===r[6]&&s[7]===r[7]&&s[8]===r[8]&&s[9]===r[9]&&s[10]===r[10]&&s[11]===r[11]&&s[12]===r[12]&&s[13]===r[13]&&s[14]===r[14]&&s[15]===r[15]}, -akI(a){var s=a.a -return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, -ha(a,b){var s=a.a,r=b.a,q=b.b,p=s[0]*r+s[4]*q+s[12],o=s[1]*r+s[5]*q+s[13],n=s[3]*r+s[7]*q+s[15] -if(n===1)return new A.m(p,o) -else return new A.m(p/n,o/n)}, -a1R(a,b,c,d,e){var s,r=e?1:1/(a[3]*b+a[7]*c+a[15]),q=(a[0]*b+a[4]*c+a[12])*r,p=(a[1]*b+a[5]*c+a[13])*r -if(d){s=$.ajB() -s[2]=q -s[0]=q -s[3]=p -s[1]=p}else{s=$.ajB() -if(qs[2])s[2]=q -if(p>s[3])s[3]=p}}, -lJ(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=b1.a,a5=b2.a,a6=b2.b,a7=b2.c,a8=a7-a5,a9=b2.d,b0=a9-a6 -if(!isFinite(a8)||!isFinite(b0)){s=a4[3]===0&&a4[7]===0&&a4[15]===1 -A.a1R(a4,a5,a6,!0,s) -A.a1R(a4,a7,a6,!1,s) -A.a1R(a4,a5,a9,!1,s) -A.a1R(a4,a7,a9,!1,s) -a7=$.ajB() -return new A.w(a7[0],a7[1],a7[2],a7[3])}a7=a4[0] -r=a7*a8 -a9=a4[4] -q=a9*b0 -p=a7*a5+a9*a6+a4[12] -a9=a4[1] -o=a9*a8 -a7=a4[5] -n=a7*b0 -m=a9*a5+a7*a6+a4[13] -a7=a4[3] -if(a7===0&&a4[7]===0&&a4[15]===1){l=p+r -if(r<0)k=p -else{k=l -l=p}if(q<0)l+=q -else k+=q -j=m+o -if(o<0)i=m -else{i=j -j=m}if(n<0)j+=n -else i+=n -return new A.w(l,j,k,i)}else{a9=a4[7] -h=a9*b0 -g=a7*a5+a9*a6+a4[15] -f=p/g -e=m/g -a9=p+r -a7=g+a7*a8 -d=a9/a7 -c=m+o -b=c/a7 -a=g+h -a0=(p+q)/a -a1=(m+n)/a -a7+=h -a2=(a9+q)/a7 -a3=(c+n)/a7 -return new A.w(A.apM(f,d,a0,a2),A.apM(e,b,a1,a3),A.apL(f,d,a0,a2),A.apL(e,b,a1,a3))}}, -apM(a,b,c,d){var s=ab?a:b,r=c>d?c:d -return s>r?s:r}, -apO(a,b){var s -if(A.akI(a))return b -s=new A.bb(new Float64Array(16)) -s.by(a) -s.kr(s) -return A.lJ(s,b)}, -apN(a){var s,r=new A.bb(new Float64Array(16)) -r.dC() -s=new A.ik(new Float64Array(4)) -s.t0(0,0,0,a.a) -r.xc(0,s) -s=new A.ik(new Float64Array(4)) -s.t0(0,0,0,a.b) -r.xc(1,s) -return r}, -EI(a,b,c){if(a==null||!1)return a===b -return a>b-c&&a=65&&a<=90))s=a>=97&&a<=122 -else s=!0 -return s}, -atI(a,b){var s=a.length,r=b+2 -if(s=256;)a-=255 -return $.amT()[a]}, -aFF(){var s,r=new Uint8Array(256) -for(s=0;s<8;++s)r[s]=B.f.JW(1,s) -for(s=8;s<256;++s)r[s]=(r[s-4]^r[s-5]^r[s-6]^r[s-8])>>>0 -return r}, -aFG(){var s,r=new Uint8Array(256) -for(s=0;s<255;++s)r[$.amT()[s]]=s -return r}, -aH8(a){var s,r=a<<10>>>0 -for(s=r;A.px(s)-A.px(1335)>=0;)s=(s^B.f.xe(1335,A.px(s)-A.px(1335)))>>>0 -return((r|s)^21522)>>>0}, -aH9(a){var s,r=a<<12>>>0 -for(s=r;A.px(s)-A.px(7973)>=0;)s=(s^B.f.xe(7973,A.px(s)-A.px(7973)))>>>0 -return(r|s)>>>0}, -px(a){var s -for(s=0;a!==0;){++s -a=a>>>1}return s}, -aIb(a){var s,r,q,p -if(a.gp(a)===0)return!0 -s=a.gJ(a) -for(r=A.eP(a,1,null,a.$ti.j("bl.E")),r=new A.cL(r,r.gp(r)),q=A.n(r).c;r.t();){p=r.d -if(!J.f(p==null?q.a(p):p,s))return!1}return!0}, -aIy(a,b){var s=B.c.eJ(a,null) -if(s<0)throw A.c(A.b5(A.e(a)+" contains no null elements.",null)) -a[s]=b}, -au8(a,b){var s=B.c.eJ(a,b) -if(s<0)throw A.c(A.b5(A.e(a)+" contains no elements matching "+b.i(0)+".",null)) -a[s]=null}, -aHu(a,b){var s,r,q,p -for(s=new A.fn(a),s=new A.cL(s,s.gp(s)),r=A.n(s).c,q=0;s.t();){p=s.d -if((p==null?r.a(p):p)===b)++q}return q}, -aiS(a,b,c){var s,r,q -if(b.length===0)for(s=0;!0;){r=B.b.iA(a,"\n",s) -if(r===-1)return a.length-s>=c?s:null -if(r-s>=c)return s -s=r+1}r=B.b.eJ(a,b) -for(;r!==-1;){q=r===0?0:B.b.vS(a,"\n",r-1)+1 -if(c===r-q)return q -r=B.b.iA(a,b,r+1)}return null}, -Uo(a,b,c){var s=0,r=A.S(t.y),q,p,o,n -var $async$Uo=A.T(function(d,e){if(d===1)return A.P(e,r) -while(true)switch(s){case 0:o=t.N -s=3 -return A.U(A.nH(a+"/auth/login",A.aB(["account",b,"password",c],o,o),null,o),$async$Uo) -case 3:n=e -if(n.a===200){o=n.c -$.l5().jA(B.bW,o,null,null) -o.toString -$.l5().jA(B.np,"the account "+b+" is login success",null,null) -p=$.cy -if(p==null)p=$.cy=new A.eS() -p.a=!0 -p.c=b -p.d=c -p.b=o -p.e=a -A.aat(p) -o=$.iT -if(o!=null)A.a(o.Cg$,"options").nw$=a -A.HG() -q=!0 -s=1 -break}q=!1 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Uo,r)}, -Un(){var s=0,r=A.S(t.YP),q,p,o -var $async$Un=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=3 -return A.U(A.x1("/user",null,t.YP),$async$Un) -case 3:o=b -if(o.a===200){p=o.c -q=p==null?A.b([],t.hq):p -s=1 -break}else{q=A.b([],t.hq) -s=1 -break}case 1:return A.Q(q,r)}}) -return A.R($async$Un,r)}, -Uj(a,b){var s=0,r=A.S(t.y),q,p,o -var $async$Uj=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:p=$.cy -o=t.N -p=A.aB(["register_id",(p==null?$.cy=new A.eS():p).r],o,t.z) -s=3 -return A.U(A.nH("/user",A.aB(["code",a,"state",b],o,o),p,o),$async$Uj) -case 3:q=d.a===200 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Uj,r)}, -Ur(a){var s=0,r=A.S(t.y),q,p -var $async$Ur=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:p=t.N -s=3 -return A.U(A.nH("/study",null,A.aB(["uid",a],p,t.z),p),$async$Ur) -case 3:q=c.a===200 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Ur,r)}, -Us(a){var s=0,r=A.S(t.y),q,p -var $async$Us=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:p=t.N -s=3 -return A.U(A.nH("/stop_study",null,A.aB(["uid",a],p,t.z),p),$async$Us) -case 3:q=c.a===200 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Us,r)}, -Uq(){var s=0,r=A.S(t.N),q,p -var $async$Uq=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=3 -return A.U(A.x1("/sign/",null,t.Hc),$async$Uq) -case 3:p=b.c.a -q=p==null?"":p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Uq,r)}, -Um(){var s=0,r=A.S(t.N),q,p,o -var $async$Um=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:if($.iT==null)A.HG() -o=A -s=3 -return A.U($.iT.Ej(0,"/login/user/qrcode/generate",t.z),$async$Um) -case 3:p=o.akA(b.a,t.x0).d -q=p==null?"":p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Um,r)}, -Ul(a){var s=0,r=A.S(t.k6),q,p,o,n,m -var $async$Ul=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:if($.iT==null)A.HG() -p=$.iT -p.toString -o=t.N -n=t.z -m=A -s=3 -return A.U(p.afq("/login/login/login_with_qr",A.aBi(A.aB(["qrCode",a,"goto","https://oa.xuexi.cn","pdmToken",""],o,n)),A.akO(null,A.aB(["content-type","application/x-www-form-urlencoded;charset=UTF-8"],o,n),null),n),$async$Ul) -case 3:q=m.akA(c.a,t.k6) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Ul,r)}, -F4(){var s=0,r=A.S(t.N),q,p -var $async$F4=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:if($.iT==null)A.HG() -s=3 -return A.U($.iT.Ej(0,"/log",t.N),$async$F4) -case 3:p=b.a -q=p==null?"":p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$F4,r)}, -Uk(a){var s=0,r=A.S(t.y),q -var $async$Uk=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:if(a===""){q=!1 -s=1 -break}s=3 -return A.U(A.nH("/auth/check/"+a,null,null,t.MY),$async$Uk) -case 3:q=c.a===200 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Uk,r)}, -Up(a){var s=0,r=A.S(t.N),q,p -var $async$Up=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:p=t.N -s=3 -return A.U(A.x1("/score",A.aB(["token",a],p,t.z),p),$async$Up) -case 3:p=c.c -q=p==null?"":p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Up,r)}},J={ -amj(a,b,c,d){return{i:a,p:b,e:c,x:d}}, -Tw(a){var s,r,q,p,o,n=a[v.dispatchPropertyName] -if(n==null)if($.amf==null){A.aI5() -n=a[v.dispatchPropertyName]}if(n!=null){s=n.p -if(!1===s)return n.i -if(!0===s)return a -r=Object.getPrototypeOf(a) -if(s===r)return n.i -if(n.e===r)throw A.c(A.c_("Return interceptor for "+A.e(s(a,n))))}q=a.constructor -if(q==null)p=null -else{o=$.adB -if(o==null)o=$.adB=v.getIsolateTag("_$dart_js") -p=q[o]}if(p!=null)return p -p=A.aIj(a) -if(p!=null)return p -if(typeof a=="function")return B.C5 -s=Object.getPrototypeOf(a) -if(s==null)return B.uO -if(s===Object.prototype)return B.uO -if(typeof q=="function"){o=$.adB -if(o==null)o=$.adB=v.getIsolateTag("_$dart_js") -Object.defineProperty(q,o,{value:B.lB,enumerable:false,writable:true,configurable:true}) -return B.lB}return B.lB}, -HV(a,b){if(a<0||a>4294967295)throw A.c(A.bt(a,0,4294967295,"length",null)) -return J.xg(new Array(a),b)}, -qU(a,b){if(a<0)throw A.c(A.b5("Length must be a non-negative integer: "+a,null)) -return A.b(new Array(a),b.j("o<0>"))}, -aks(a,b){return A.b(new Array(a),b.j("o<0>"))}, -xg(a,b){return J.a0C(A.b(a,b.j("o<0>")))}, -a0C(a){a.fixed$length=Array -return a}, -apy(a){a.fixed$length=Array -a.immutable$list=Array -return a}, -aBD(a,b){return J.v3(a,b)}, -apz(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 -default:return!1}switch(a){case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8232:case 8233:case 8239:case 8287:case 12288:case 65279:return!0 -default:return!1}}, -aku(a,b){var s,r -for(s=a.length;b0;b=s){s=b-1 -r=B.b.ak(a,s) -if(r!==32&&r!==13&&!J.apz(r))break}return b}, -ix(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.qV.prototype -return J.xj.prototype}if(typeof a=="string")return J.k1.prototype -if(a==null)return J.xi.prototype -if(typeof a=="boolean")return J.xh.prototype -if(a.constructor==Array)return J.o.prototype -if(typeof a!="object"){if(typeof a=="function")return J.iY.prototype -return a}if(a instanceof A.D)return a -return J.Tw(a)}, -aHV(a){if(typeof a=="number")return J.lA.prototype -if(typeof a=="string")return J.k1.prototype -if(a==null)return a -if(a.constructor==Array)return J.o.prototype -if(typeof a!="object"){if(typeof a=="function")return J.iY.prototype -return a}if(a instanceof A.D)return a -return J.Tw(a)}, -ax(a){if(typeof a=="string")return J.k1.prototype -if(a==null)return a -if(a.constructor==Array)return J.o.prototype -if(typeof a!="object"){if(typeof a=="function")return J.iY.prototype -return a}if(a instanceof A.D)return a -return J.Tw(a)}, -bO(a){if(a==null)return a -if(a.constructor==Array)return J.o.prototype -if(typeof a!="object"){if(typeof a=="function")return J.iY.prototype -return a}if(a instanceof A.D)return a -return J.Tw(a)}, -aHW(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.qV.prototype -return J.xj.prototype}if(a==null)return a -if(!(a instanceof A.D))return J.jt.prototype -return a}, -aty(a){if(typeof a=="number")return J.lA.prototype -if(a==null)return a -if(!(a instanceof A.D))return J.jt.prototype -return a}, -atz(a){if(typeof a=="number")return J.lA.prototype -if(typeof a=="string")return J.k1.prototype -if(a==null)return a -if(!(a instanceof A.D))return J.jt.prototype -return a}, -pF(a){if(typeof a=="string")return J.k1.prototype -if(a==null)return a -if(!(a instanceof A.D))return J.jt.prototype -return a}, -j(a){if(a==null)return a -if(typeof a!="object"){if(typeof a=="function")return J.iY.prototype -return a}if(a instanceof A.D)return a -return J.Tw(a)}, -iy(a){if(a==null)return a -if(!(a instanceof A.D))return J.jt.prototype -return a}, -an6(a,b){if(typeof a=="number"&&typeof b=="number")return a+b -return J.aHV(a).Z(a,b)}, -f(a,b){if(a==null)return b==null -if(typeof a!="object")return b!=null&&a===b -return J.ix(a).k(a,b)}, -awl(a,b){if(typeof a=="number"&&typeof b=="number")return a*b -return J.atz(a).W(a,b)}, -awm(a,b){if(typeof a=="number"&&typeof b=="number")return a-b -return J.aty(a).a9(a,b)}, -awn(a,b,c){return J.j(a).Wq(a,b,c)}, -awo(a){return J.j(a).WJ(a)}, -awp(a,b){return J.j(a).WK(a,b)}, -awq(a,b,c,d){return J.j(a).WL(a,b,c,d)}, -awr(a,b,c){return J.j(a).WM(a,b,c)}, -an7(a,b){return J.j(a).WN(a,b)}, -aws(a,b){return J.j(a).WO(a,b)}, -awt(a,b,c){return J.j(a).WP(a,b,c)}, -awu(a,b){return J.j(a).WQ(a,b)}, -awv(a,b,c,d){return J.j(a).WR(a,b,c,d)}, -aww(a,b,c){return J.j(a).WS(a,b,c)}, -awx(a,b,c,d,e,f,g){return J.j(a).WT(a,b,c,d,e,f,g)}, -awy(a,b){return J.j(a).WU(a,b)}, -awz(a,b,c,d,e){return J.j(a).WV(a,b,c,d,e)}, -awA(a,b){return J.j(a).WW(a,b)}, -awB(a,b){return J.j(a).Xg(a,b)}, -awC(a,b){return J.j(a).XU(a,b)}, -ag(a,b){if(typeof b==="number")if(a.constructor==Array||typeof a=="string"||A.atK(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b0?1:a<0?-1:a -return J.aHW(a).gFg(a)}, -anO(a){return J.iy(a).gxk(a)}, -anP(a){return J.j(a).gPx(a)}, -U1(a){return J.j(a).gl(a)}, -ayE(a){return J.j(a).gb2(a)}, -ayF(a){return J.j(a).PZ(a)}, -ajQ(a){return J.j(a).di(a)}, -U2(a){return J.j(a).Q1(a)}, -anQ(a){return J.j(a).El(a)}, -ayG(a,b,c,d){return J.j(a).Q6(a,b,c,d)}, -anR(a,b){return J.j(a).Q7(a,b)}, -ayH(a,b,c){return J.j(a).Q8(a,b,c)}, -ayI(a){return J.j(a).Q9(a)}, -ayJ(a){return J.j(a).Qa(a)}, -ayK(a){return J.j(a).Qb(a)}, -anS(a){return J.j(a).Qc(a)}, -ayL(a){return J.j(a).Qd(a)}, -ayM(a){return J.j(a).Qe(a)}, -ayN(a){return J.j(a).Qf(a)}, -ayO(a){return J.j(a).Qh(a)}, -ayP(a){return J.j(a).rM(a)}, -ayQ(a,b,c){return J.bO(a).mm(a,b,c)}, -ayR(a){return J.j(a).Qs(a)}, -ayS(a,b,c,d,e){return J.j(a).Qt(a,b,c,d,e)}, -ayT(a){return J.j(a).oq(a)}, -ayU(a,b){return J.j(a).ft(a,b)}, -ayV(a,b){return J.j(a).l4(a,b)}, -anT(a){return J.j(a).CF(a)}, -ayW(a,b,c){return J.bO(a).kE(a,b,c)}, -ayX(a,b){return J.j(a).adM(a,b)}, -anU(a){return J.j(a).adN(a)}, -ayY(a){return J.iy(a).qJ(a)}, -ayZ(a){return J.bO(a).D_(a)}, -anV(a,b){return J.bO(a).bB(a,b)}, -az_(a,b){return J.j(a).fg(a,b)}, -az0(a,b,c){return J.j(a).cO(a,b,c)}, -az1(a,b){return J.iy(a).ae7(a,b)}, -mO(a,b,c){return J.bO(a).iH(a,b,c)}, -az2(a,b,c,d){return J.bO(a).jB(a,b,c,d)}, -anW(a,b,c){return J.pF(a).nO(a,b,c)}, -az3(a,b,c){return J.j(a).ep(a,b,c)}, -az4(a,b){return J.ix(a).Oo(a,b)}, -az5(a){return J.j(a).dg(a)}, -az6(a,b,c,d){return J.j(a).afy(a,b,c,d)}, -az7(a,b,c,d){return J.j(a).rd(a,b,c,d)}, -anX(a,b){return J.j(a).kR(a,b)}, -EV(a,b,c){return J.j(a).bs(a,b,c)}, -az8(a,b,c){return J.j(a).o9(a,b,c)}, -anY(a,b,c){return J.j(a).afO(a,b,c)}, -az9(a){return J.j(a).afT(a)}, -ca(a){return J.bO(a).bw(a)}, -l7(a,b){return J.bO(a).B(a,b)}, -anZ(a,b,c){return J.j(a).wk(a,b,c)}, -aza(a,b,c,d){return J.j(a).ob(a,b,c,d)}, -ao_(a){return J.bO(a).eX(a)}, -azb(a,b,c,d){return J.j(a).iS(a,b,c,d)}, -azc(a,b){return J.j(a).ag7(a,b)}, -azd(a){return J.j(a).eY(a)}, -ao0(a){return J.j(a).bt(a)}, -ao1(a,b){return J.j(a).ma(a,b)}, -ao2(a,b,c,d){return J.j(a).agk(a,b,c,d)}, -ao3(a){return J.j(a).bF(a)}, -ao4(a,b,c,d,e){return J.j(a).Qz(a,b,c,d,e)}, -ao5(a,b){return J.j(a).bd(a,b)}, -ao6(a,b,c){return J.j(a).cP(a,b,c)}, -aze(a){return J.j(a).QJ(a)}, -ao7(a,b){return J.ax(a).sp(a,b)}, -ao8(a,b,c){return J.iy(a).QQ(a,b,c)}, -azf(a,b){return J.j(a).x5(a,b)}, -azg(a,b){return J.j(a).EV(a,b)}, -ao9(a,b){return J.j(a).EY(a,b)}, -ajR(a,b){return J.j(a).x6(a,b)}, -U3(a,b){return J.j(a).QW(a,b)}, -azh(a,b){return J.j(a).F6(a,b)}, -azi(a,b,c,d,e){return J.bO(a).bh(a,b,c,d,e)}, -azj(a,b){return J.j(a).R1(a,b)}, -aoa(a,b){return J.j(a).F9(a,b)}, -azk(a,b){return J.j(a).Fa(a,b)}, -azl(a,b){return J.j(a).Fb(a,b)}, -azm(a,b){return J.j(a).Fc(a,b)}, -U4(a,b){return J.bO(a).fu(a,b)}, -ajS(a,b){return J.bO(a).dk(a,b)}, -azn(a,b){return J.pF(a).t4(a,b)}, -aIY(a,b,c){return J.bO(a).bG(a,b,c)}, -azo(a){return J.iy(a).xs(a)}, -aob(a,b){return J.bO(a).i_(a,b)}, -azp(a,b){return J.j(a).agu(a,b)}, -ajT(a,b,c){return J.j(a).aV(a,b,c)}, -aoc(a,b,c,d){return J.j(a).fp(a,b,c,d)}, -azq(a){return J.j(a).agw(a)}, -azr(a){return J.bO(a).dK(a)}, -azs(a){return J.pF(a).DW(a)}, -azt(a){return J.bO(a).iW(a)}, -bX(a){return J.ix(a).i(a)}, -azu(a){return J.j(a).agD(a)}, -azv(a,b,c,d,e,f,g,h,i,j){return J.j(a).agI(a,b,c,d,e,f,g,h,i,j)}, -aod(a,b,c){return J.j(a).aC(a,b,c)}, -azw(a){return J.pF(a).agO(a)}, -azx(a){return J.pF(a).E3(a)}, -azy(a){return J.j(a).agQ(a)}, -aoe(a,b){return J.iy(a).ah_(a,b)}, -azz(a,b){return J.j(a).PM(a,b)}, -aof(a){return J.j(a).Eg(a)}, -qT:function qT(){}, -xh:function xh(){}, -xi:function xi(){}, -i:function i(){}, -M:function M(){}, -Ju:function Ju(){}, -jt:function jt(){}, -iY:function iY(){}, -o:function o(a){this.$ti=a}, -a0I:function a0I(a){this.$ti=a}, -fl:function fl(a,b){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null}, -lA:function lA(){}, -qV:function qV(){}, -xj:function xj(){}, -k1:function k1(){}},B={} -var w=[A,J,B] -var $={} -A.vc.prototype={ -sBH(a){var s,r,q,p=this -if(J.f(a,p.c))return -if(a==null){p.yf() -p.c=null -return}s=p.a.$0() -r=a.a -q=s.a -if(rr){p.yf() -p.b=A.bN(A.bR(0,r-q,0),p.gAs())}p.c=a}, -yf(){var s=this.b -if(s!=null)s.aA(0) -this.b=null}, -a8a(){var s=this,r=s.a.$0(),q=s.c,p=r.a -q=q.a -if(p>=q){s.b=null -q=s.d -if(q!=null)q.$0()}else s.b=A.bN(A.bR(0,q-p,0),s.gAs())}} -A.Uu.prototype={ -nb(){var s=0,r=A.S(t.H),q=this -var $async$nb=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=2 -return A.U(q.a.$0(),$async$nb) -case 2:s=3 -return A.U(q.b.$0(),$async$nb) -case 3:return A.Q(null,r)}}) -return A.R($async$nb,r)}, -afs(){var s=A.fi(new A.Uz(this)) -return{initializeEngine:A.fi(new A.UA(this)),autoStart:s}}, -a5U(){return{runApp:A.fi(new A.Uw(this))}}} -A.Uz.prototype={ -$0(){return new self.Promise(A.fi(new A.Uy(this.a)))}, -$S:303} -A.Uy.prototype={ -$2(a,b){var s=0,r=A.S(t.H),q=this -var $async$$2=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:s=2 -return A.U(q.a.nb(),$async$$2) -case 2:a.$1({}) -return A.Q(null,r)}}) -return A.R($async$$2,r)}, -$S:159} -A.UA.prototype={ -$1(a){return new self.Promise(A.fi(new A.Ux(this.a)))}, -$0(){return this.$1(null)}, -$C:"$1", -$R:0, -$D(){return[null]}, -$S:310} -A.Ux.prototype={ -$2(a,b){var s=0,r=A.S(t.H),q=this,p -var $async$$2=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:p=q.a -s=2 -return A.U(p.a.$0(),$async$$2) -case 2:a.$1(p.a5U()) -return A.Q(null,r)}}) -return A.R($async$$2,r)}, -$S:208} -A.Uw.prototype={ -$1(a){return new self.Promise(A.fi(new A.Uv(this.a)))}, -$0(){return this.$1(null)}, -$C:"$1", -$R:0, -$D(){return[null]}, -$S:239} -A.Uv.prototype={ -$2(a,b){var s=0,r=A.S(t.H),q=this -var $async$$2=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:s=2 -return A.U(q.a.b.$0(),$async$$2) -case 2:a.$1({}) -return A.Q(null,r)}}) -return A.R($async$$2,r)}, -$S:159} -A.UE.prototype={ -gYN(){var s=new A.fI(new A.ub(window.document.querySelectorAll("meta"),t.xl),t.u8).nC(0,new A.UF(),new A.UG()) -return s==null?null:s.content}, -wI(a){var s -if(A.p_(a,0,null).gNB())return A.mG(B.ha,a,B.z,!1) -s=this.gYN() -if(s==null)s="" -return A.mG(B.ha,s+("assets/"+a),B.z,!1)}, -dI(a,b){return this.ae8(0,b)}, -ae8(a,b){var s=0,r=A.S(t.V4),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e -var $async$dI=A.T(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:f=m.wI(b) -p=4 -s=7 -return A.U(A.aBv(f,"arraybuffer"),$async$dI) -case 7:l=d -k=t.pI.a(A.asr(l.response)) -h=A.kd(k,0,null) -q=h -s=1 -break -p=2 -s=6 -break -case 4:p=3 -e=o -h=A.ab(e) -if(t._p.b(h)){j=h -i=A.ahJ(j.target) -if(t.Gf.b(i)){if(i.status===404&&b==="AssetManifest.json"){$.bV().$1("Asset manifest does not exist at `"+A.e(f)+"` \u2013 ignoring.") -q=A.kd(new Uint8Array(A.kZ(B.z.giu().cS("{}"))).buffer,0,null) -s=1 -break}h=i.status -h.toString -throw A.c(new A.pS(f,h))}$.bV().$1("Caught ProgressEvent with target: "+A.e(i)) -throw e}else throw e -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$dI,r)}} -A.UF.prototype={ -$1(a){return J.f(J.anL(a),"assetBase")}, -$S:51} -A.UG.prototype={ -$0(){return null}, -$S:6} -A.pS.prototype={ -i(a){return'Failed to load asset at "'+this.a+'" ('+this.b+")"}, -$ice:1} -A.iF.prototype={ -i(a){return"BrowserEngine."+this.b}} -A.hX.prototype={ -i(a){return"OperatingSystem."+this.b}} -A.Vs.prototype={ -gaP(a){var s,r=this.d -if(r==null){this.yE() -s=this.d -s.toString -r=s}return r}, -gd_(){if(this.y==null)this.yE() -var s=this.e -s.toString -return s}, -yE(){var s,r,q,p,o,n,m,l,k=this,j=!1,i=null,h=k.y -if(h!=null){h.width=0 -k.y.height=0 -k.y=null}h=k.x -if(h!=null&&h.length!==0){h.toString -s=B.c.eW(h,0) -k.y=s -i=s -j=!0 -r=!0}else{h=k.f -q=A.aX() -p=k.r -o=A.aX() -i=k.Gf(h,p) -n=i -k.y=n -if(n==null){A.au7() -i=k.Gf(h,p)}n=i.style -n.position="absolute" -n.width=A.e(h/q)+"px" -n.height=A.e(p/o)+"px" -r=!1}h=k.z -q=h.lastChild -p=i -if(q==null?p!=null:q!==p)h.appendChild(i) -try{if(j)i.style.removeProperty("z-index") -k.d=i.getContext("2d")}catch(m){}h=k.d -if(h==null){A.au7() -h=k.d=i.getContext("2d")}q=k.as -k.e=new A.Wb(h,k,q,B.fd,B.c9,B.dy) -l=k.gaP(k) -l.save();++k.Q -l.setTransform(1,0,0,1,0,0) -if(r)l.clearRect(0,0,k.f*q,k.r*q) -l.scale(A.aX()*q,A.aX()*q) -k.a6p()}, -Gf(a,b){var s=this.as -return A.aIU(B.e.dV(a*s),B.e.dV(b*s))}, -aG(a){var s,r,q,p,o,n=this -n.UA(0) -if(n.y!=null){s=n.d -if(s!=null)try{s.font=""}catch(q){r=A.ab(q) -if(!J.f(r.name,"NS_ERROR_FAILURE"))throw q}}if(n.y!=null){n.A2() -n.e.eY(0) -p=n.w -if(p==null)p=n.w=A.b([],t.r3) -o=n.y -o.toString -p.push(o) -n.e=n.d=null}n.x=n.w -n.e=n.d=n.y=n.w=null}, -Jv(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.gaP(i) -if(d!=null)for(s=d.length,r=i.as,q=t.Ci;a>>16&255,q.gl(q)>>>8&255,q.gl(q)&255)) -q.toString -s.shadowColor=q}else{q=A.cm(B.n) -q.toString -s.shadowColor=q}s.translate(-5e4,0) -m=new Float32Array(2) -q=$.bW().w -m[0]=5e4*(q==null?A.aX():q) -q=j.b -q.c.PG(m) -l=m[0] -k=m[1] -m[1]=0 -m[0]=0 -q.c.PG(m) -s.shadowOffsetX=l-m[0] -s.shadowOffsetY=k-m[1]}}, -og(){var s=this,r=s.z -if((r==null?null:r.x)!=null){r=$.bU() -r=r===B.N||!1}else r=!1 -if(r)s.a.restore() -r=s.Q -if(r!=null){s.a.translate(-r.a,-r.b) -s.Q=null}}, -ht(a){var s=this.a -if(a===B.T)s.stroke() -else s.fill()}, -eY(a){var s=this,r=s.a -r.fillStyle="" -s.r=r.fillStyle -r.strokeStyle="" -s.w=r.strokeStyle -r.shadowBlur=0 -r.shadowColor="none" -r.shadowOffsetX=0 -r.shadowOffsetY=0 -r.globalCompositeOperation="source-over" -s.d=B.fd -r.lineWidth=1 -s.x=1 -r.lineCap="butt" -s.e=B.c9 -r.lineJoin="miter" -s.f=B.dy -s.Q=null}} -A.QI.prototype={ -aG(a){B.c.sp(this.a,0) -this.b=null -this.c=A.dM()}, -bF(a){var s=this.c,r=new A.bJ(new Float32Array(16)) -r.by(s) -s=this.b -s=s==null?null:A.ft(s,!0,t.Sv) -this.a.push(new A.Kz(r,s))}, -bt(a){var s,r=this.a -if(r.length===0)return -s=r.pop() -this.c=s.a -this.b=s.b}, -aC(a,b,c){this.c.aC(0,b,c)}, -cP(a,b,c){this.c.cP(0,b,c)}, -hw(a,b){this.c.Pt(0,$.ave(),b)}, -T(a,b){this.c.cg(0,new A.bJ(b))}, -je(a,b){var s,r,q=this.b -if(q==null)q=this.b=A.b([],t.CK) -s=this.c -r=new A.bJ(new Float32Array(16)) -r.by(s) -q.push(new A.ox(b,null,null,r))}, -lD(a,b){var s,r,q=this.b -if(q==null)q=this.b=A.b([],t.CK) -s=this.c -r=new A.bJ(new Float32Array(16)) -r.by(s) -q.push(new A.ox(null,b,null,r))}, -fF(a,b){var s,r,q=this.b -if(q==null)q=this.b=A.b([],t.CK) -s=this.c -r=new A.bJ(new Float32Array(16)) -r.by(s) -q.push(new A.ox(null,null,b,r))}} -A.eX.prototype={ -lC(a,b){J.anc(this.a,A.asP($.amU(),b))}, -jd(a,b,c){J.and(this.a,b.gag(),$.TK(),c)}, -nf(a,b,c){J.ane(this.a,A.mN(b),$.TK(),c)}, -kq(a,b,c,d){J.anf(this.a,A.dc(b),$.amW()[c.a],d)}, -jl(a,b,c,d,e,f){J.ani(this.a,A.dc(b),c*57.29577951308232,d*57.29577951308232,!1,f.gag())}, -dZ(a,b,c,d){J.anj(this.a,b.a,b.b,c,d.gag())}, -fb(a,b,c,d){J.ank(this.a,A.mN(b),A.mN(c),d.gag())}, -hM(a,b,c,d){var s,r,q,p,o=d.at,n=this.a,m=a.b -if(o===B.fI)J.anl(n,A.a(m,"box").gag(),A.dc(b),A.dc(c),0.3333333333333333,0.3333333333333333,d.gag()) -else{m=A.a(m,"box").gag() -s=A.dc(b) -r=A.dc(c) -q=o===B.fH?J.anz(J.TV($.bg.bi())):J.TW(J.TV($.bg.bi())) -p=o===B.n4?J.TW(J.TX($.bg.bi())):J.anA(J.TX($.bg.bi())) -J.anm(n,m,s,r,q,p,d.gag())}}, -is(a,b,c,d){J.ann(this.a,b.a,b.b,c.a,c.b,d.gag())}, -qe(a,b){J.ano(this.a,b.gag())}, -hm(a,b,c){var s=b.d -s.toString -J.anp(this.a,b.k_(s),c.a,c.b) -if(!$.v1().D9(b))$.v1().E(0,b)}, -cp(a,b,c){J.anq(this.a,b.gag(),c.gag())}, -qf(a,b){J.TT(this.a,b.gag())}, -cm(a,b,c){J.anr(this.a,A.mN(b),c.gag())}, -c9(a,b,c){J.ans(this.a,A.dc(b),c.gag())}, -it(a,b,c,d,e){var s=$.bW().w -if(s==null)s=A.aX() -A.atm(this.a,b,c,d,e,s)}, -bt(a){J.ao0(this.a)}, -ma(a,b){J.ao1(this.a,b)}, -hw(a,b){J.ao2(this.a,b*180/3.141592653589793,0,0)}, -bF(a){return J.ao3(this.a)}, -f2(a,b,c){var s=c==null?null:c.gag() -J.ao4(this.a,s,A.dc(b),null,null)}, -cP(a,b,c){J.ao6(this.a,b,c)}, -T(a,b){J.anh(this.a,A.aud(b))}, -aC(a,b,c){J.aod(this.a,b,c)}, -gOG(){return null}} -A.JU.prototype={ -lC(a,b){this.RP(0,b) -this.b.b.push(new A.FI(b))}, -jd(a,b,c){this.RQ(0,b,c) -this.b.b.push(new A.FJ(b,c))}, -nf(a,b,c){this.RR(0,b,c) -this.b.b.push(new A.FK(b,c))}, -kq(a,b,c,d){this.RS(0,b,c,d) -this.b.b.push(new A.FL(b,c,d))}, -jl(a,b,c,d,e,f){this.RT(0,b,c,d,!1,f) -this.b.b.push(new A.FM(b,c,d,!1,f))}, -dZ(a,b,c,d){this.RU(0,b,c,d) -this.b.b.push(new A.FN(b,c,d))}, -fb(a,b,c,d){this.RV(0,b,c,d) -this.b.b.push(new A.FO(b,c,d))}, -hM(a,b,c,d){this.RW(a,b,c,d) -this.b.b.push(new A.FP(A.aA8(A.a(a.b,"box")),b,c,d))}, -is(a,b,c,d){this.RX(0,b,c,d) -this.b.b.push(new A.FQ(b,c,d))}, -qe(a,b){this.RY(0,b) -this.b.b.push(new A.FR(b))}, -hm(a,b,c){this.RZ(0,b,c) -this.b.b.push(new A.FS(b,c))}, -cp(a,b,c){this.S_(0,b,c) -this.b.b.push(new A.FT(b,c))}, -qf(a,b){this.S0(0,b) -this.b.b.push(new A.FU(b))}, -cm(a,b,c){this.S1(0,b,c) -this.b.b.push(new A.FV(b,c))}, -c9(a,b,c){this.S2(0,b,c) -this.b.b.push(new A.FW(b,c))}, -it(a,b,c,d,e){this.S3(0,b,c,d,e) -this.b.b.push(new A.FX(b,c,d,e))}, -bt(a){this.S4(0) -this.b.b.push(B.wO)}, -ma(a,b){this.S5(0,b) -this.b.b.push(new A.G4(b))}, -hw(a,b){this.S6(0,b) -this.b.b.push(new A.G5(b))}, -bF(a){this.b.b.push(B.wP) -return this.S7(0)}, -f2(a,b,c){this.S8(0,b,c) -this.b.b.push(new A.G7(b,c))}, -cP(a,b,c){this.S9(0,b,c) -this.b.b.push(new A.G8(b,c))}, -T(a,b){this.Sa(0,b) -this.b.b.push(new A.G9(b))}, -aC(a,b,c){this.Sb(0,b,c) -this.b.b.push(new A.Ga(b,c))}, -gOG(){return this.b}} -A.VJ.prototype={ -agB(){var s,r,q,p,o=new self.window.flutterCanvasKit.PictureRecorder(),n=J.j(o),m=n.lz(o,A.dc(this.a)) -for(s=this.b,r=s.length,q=0;q") -r=A.ap(new A.az(q,new A.a_T(),s),!0,s.j("bl.E")) -return r}, -Zz(a){var s,r,q,p,o,n,m,l=this.ax -if(l.ap(0,a)){s=null.ahH(0,"#sk_path_defs") -r=A.b([],t.lX) -q=l.h(0,a) -q.toString -for(p=s.ghj(s),p=p.ga1(p);p.t();){o=p.gH(p) -if(q.A(0,o.gahA(o)))r.push(o)}for(q=r.length,n=0;n") -q=a4.x -p=A.af(q).j("au<1>") -r=A.aHF(A.ap(new A.au(a7,new A.a_U(),s),!0,s.j("p.E")),A.ap(new A.au(q,new A.a_V(),p),!0,p.j("p.E")))}o=a4.a8D(r) -s=$.bL -if(s==null)s=$.bL=new A.du(self.window.flutterConfiguration) -s=s.gnc(s)<=1 -if(!s)for(s=a4.x,q=a4.r,p=a4.d,n=a4.a,m=t.y1,l=!1,k=0;k") -p=A.ap(new A.au(s,new A.a_S(),q),!0,q.j("p.E")) -o=Math.min(A.eQ().c-2,p.length) -for(s=t.y1,n=0;ng){f=Math.min(A.eQ().c-2,s.length-g) -e=A.eQ().c-2-s.length -for(r=a5.r,q=a5.z,l=t.y1;f>0;e=d){d=e+1 -k=q[e] -if(r.h(0,k)!=null){j=r.h(0,k) -j.toString -i=$.ig -if(i==null){i=$.bL -i=(i==null?$.bL=new A.du(self.window.flutterConfiguration):i).a -i=i==null?a6:J.v7(i) -if(i==null)i=8 -c=A.cz(a7,a6) -b=A.cz(a7,a6) -a=A.b([],l) -a0=A.b([],l) -i=$.ig=new A.kz(new A.dm(c),new A.dm(b),i,a,a0)}i.DL(j) -r.B(0,k)}--f}}r=s.length -q=A.eQ() -a1=Math.min(r,q.c-2-q.d.length) -for(r=a5.r,q=t.y1,n=0;n0&&e")) -return new A.cL(s,s.gp(s))}} -A.tJ.prototype={} -A.Hr.prototype={ -abR(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=a0.length,a=0 -while(!0){if(!(a=160){s=!1 -break}++a}if(s)return -r=A.aK(t.S) -for(b=new A.a5T(a0),q=c.c,p=c.b;b.t();){o=b.d -if(!(o<160||q.A(0,o)||p.A(0,o)))r.E(0,o)}if(r.a===0)return -n=A.ap(r,!0,r.$ti.j("cF.E")) -m=A.b([],t.Jw) -for(b=a1.length,l=0;l127&&e<160 -else e=!0}else e=!0 -i[a]=B.d1.wU(f,e)}}if(B.c.fD(i,new A.Zl())){d=A.b([],t.t) -for(a=0;a127&&e<160 -else e=!0}else e=!0 -q[f]=B.d1.wU(d,e)}}b=0 -while(!0){if(!(b=0;--f)if(q[f])B.c.eW(r,f) -A.aiR(r)}, -afN(a,b){var s,r,q,p,o=this,n=J.an7(J.anJ($.bg.bi()),b.buffer) -if(n==null){$.bV().$1("Failed to parse fallback font "+a+" as a font.") -return}s=o.r -s.bs(0,a,new A.Zm()) -r=s.h(0,a) -r.toString -q=s.h(0,a) -q.toString -s.n(0,a,q+1) -p=a+" "+A.e(r) -o.e.push(A.aqw(b,p,n)) -if(a==="Noto Color Emoji Compat"){s=o.f -if(B.c.gJ(s)==="Roboto")B.c.kE(s,1,p) -else B.c.kE(s,0,p)}else o.f.push(p)}} -A.Zk.prototype={ -$0(){return A.b([],t.Cz)}, -$S:107} -A.Zl.prototype={ -$1(a){return!a}, -$S:200} -A.Zm.prototype={ -$0(){return 0}, -$S:67} -A.aib.prototype={ -$0(){return A.b([],t.Cz)}, -$S:107} -A.aie.prototype={ -$1(a){var s,r,q -for(s=new A.pr(A.akD(a).a());s.t();){r=s.gH(s) -if(B.b.bl(r," src:")){q=B.b.eJ(r,"url(") -if(q===-1){$.bV().$1("Unable to resolve Noto font URL: "+r) -return null}return B.b.N(r,q+4,B.b.eJ(r,")"))}}$.bV().$1("Unable to determine URL for Noto font") -return null}, -$S:229} -A.aiT.prototype={ -$1(a){return B.c.A($.avu(),a)}, -$S:233} -A.aiU.prototype={ -$1(a){return this.a.a.d.c.a.uV(a)}, -$S:71} -A.oa.prototype={ -qi(){var s=0,r=A.S(t.H),q=this,p,o,n -var $async$qi=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=q.d==null?2:3 -break -case 2:p=q.c -s=p==null?4:6 -break -case 4:q.c=new A.aI(new A.a4($.a5,t.U),t.h) -p=$.pK().a -o=q.a -n=A -s=7 -return A.U(p.C2("https://fonts.googleapis.com/css2?family="+A.fM(o," ","+")),$async$qi) -case 7:q.d=n.aGu(b,o) -q.c.eg(0) -s=5 -break -case 6:s=8 -return A.U(p.a,$async$qi) -case 8:case 5:case 3:return A.Q(null,r)}}) -return A.R($async$qi,r)}, -gaN(a){return this.a}} -A.Y.prototype={ -k(a,b){if(b==null)return!1 -if(!(b instanceof A.Y))return!1 -return b.a===this.a&&b.b===this.b}, -gv(a){return A.ct(this.a,this.b,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"["+this.a+", "+this.b+"]"}} -A.afQ.prototype={ -gaN(a){return this.a}} -A.kR.prototype={ -i(a){return"_ResolvedNotoSubset("+this.b+", "+this.a+")"}} -A.H8.prototype={ -E(a,b){var s,r,q=this -if(q.b.A(0,b)||q.c.ap(0,b.a))return -s=q.c -r=s.a -s.n(0,b.a,b) -if(r===0)A.bN(B.r,q.gRu())}, -la(){var s=0,r=A.S(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h,g,f,e,d -var $async$la=A.T(function(a,b){if(a===1){p=b -s=q}while(true)switch(s){case 0:f=t.N -e=A.z(f,t.uz) -d=A.z(f,t.H3) -for(f=n.c,m=f.gb2(f),m=new A.eq(J.av(m.a),m.b),l=t.H,k=A.n(m).z[1];m.t();){j=m.a -if(j==null)j=k.a(j) -e.n(0,j.a,A.Hu(new A.YN(n,j,d),l))}s=2 -return A.U(A.nA(e.gb2(e),l),$async$la) -case 2:m=d.$ti.j("b3<1>") -m=A.ap(new A.b3(d,m),!0,m.j("p.E")) -B.c.i3(m) -l=A.af(m).j("ch<1>") -i=A.ap(new A.ch(m,l),!0,l.j("bl.E")) -m=i.length,h=0 -case 3:if(!(h");s.t();){p=s.gH(s) -o=p.a -p=p.b -r.push(new A.iX(a,o,p,p,q))}}, -$S(){return this.b.j("~(0,x)")}} -A.a0B.prototype={ -$2(a,b){return a.b-b.b}, -$S(){return this.a.j("q(iX<0>,iX<0>)")}} -A.a0z.prototype={ -$1(a){var s,r,q=a.length -if(q===0)return null -if(q===1)return B.c.gbX(a) -s=q/2|0 -r=a[s] -r.e=this.$1(B.c.bG(a,0,s)) -r.f=this.$1(B.c.ey(a,s+1)) -return r}, -$S(){return this.a.j("iX<0>?(x>)")}} -A.a0y.prototype={ -$1(a){var s,r=this,q=a.e,p=q==null -if(p&&a.f==null)a.d=a.c -else if(p){q=a.f -q.toString -r.$1(q) -a.d=Math.max(a.c,a.f.d)}else{p=a.f -s=a.c -if(p==null){r.$1(q) -a.d=Math.max(s,a.e.d)}else{r.$1(p) -q=a.e -q.toString -r.$1(q) -a.d=Math.max(s,Math.max(a.e.d,a.f.d))}}}, -$S(){return this.a.j("~(iX<0>)")}} -A.iX.prototype={ -M3(a){return this.b<=a&&a<=this.c}, -uV(a){var s,r=this -if(a>r.d)return!1 -if(r.M3(a))return!0 -s=r.e -if((s==null?null:s.uV(a))===!0)return!0 -if(ar.d)return -s=r.e -if(s!=null)s.rU(a,b) -if(r.M3(a))b.push(r.a) -if(a=q.c||q.b>=q.d)q=o.b -else{n=o.b -if(!(n.a>=n.c||n.b>=n.d))q=q.kw(n)}}return q}, -kM(a){var s,r,q,p,o -for(s=this.c,r=s.length,q=0;q=o.c||o.b>=o.d))p.ht(a)}}} -A.Kr.prototype={ -ht(a){this.kM(a)}} -A.Gd.prototype={ -jF(a,b){var s,r,q=null,p=this.f,o=a.c.a -o.push(new A.hV(B.JT,q,q,p,q,q)) -s=this.m5(a,b) -r=A.atw(J.ajQ(p.gag())) -if(s.r4(r))this.b=s.e2(r) -o.pop()}, -ht(a){var s,r=this,q=a.a -q.bF(0) -s=r.r -q.jd(0,r.f,s!==B.ai) -s=s===B.cU -if(s)q.f2(0,r.b,null) -r.kM(a) -if(s)q.bt(0) -q.bt(0)}, -$iVQ:1} -A.Gg.prototype={ -jF(a,b){var s,r=null,q=this.f,p=a.c.a -p.push(new A.hV(B.JR,q,r,r,r,r)) -s=this.m5(a,b) -if(s.r4(q))this.b=s.e2(q) -p.pop()}, -ht(a){var s,r,q=a.a -q.bF(0) -s=this.f -r=this.r -q.kq(0,s,B.cl,r!==B.ai) -r=r===B.cU -if(r)q.f2(0,s,null) -this.kM(a) -if(r)q.bt(0) -q.bt(0)}, -$iVT:1} -A.Gf.prototype={ -jF(a,b){var s,r,q,p,o=null,n=this.f,m=a.c.a -m.push(new A.hV(B.JS,o,n,o,o,o)) -s=this.m5(a,b) -r=n.a -q=n.b -p=n.c -n=n.d -if(s.r4(new A.w(r,q,p,n)))this.b=s.e2(new A.w(r,q,p,n)) -m.pop()}, -ht(a){var s,r=this,q=a.a -q.bF(0) -s=r.r -q.nf(0,r.f,s!==B.ai) -s=s===B.cU -if(s)q.f2(0,r.b,null) -r.kM(a) -if(s)q.bt(0) -q.bt(0)}, -$iVR:1} -A.IP.prototype={ -jF(a,b){var s,r,q,p,o=this,n=null,m=new A.bJ(new Float32Array(16)) -m.by(b) -s=o.r -r=s.a -s=s.b -m.aC(0,r,s) -q=A.dM() -q.mw(r,s,0) -p=a.c.a -p.push(A.apT(q)) -p.push(new A.hV(B.JV,n,n,n,n,o.f)) -o.Si(a,m) -p.pop() -p.pop() -o.b=o.b.aC(0,r,s)}, -ht(a){var s,r,q,p=this,o=A.aT() -o.sad(0,A.ak(p.f,0,0,0)) -s=a.a -s.bF(0) -r=p.r -q=r.a -r=r.b -s.aC(0,q,r) -s.f2(0,p.b.c8(new A.m(-q,-r)),o) -p.kM(a) -s.bt(0) -s.bt(0)}, -$ia2V:1} -A.AN.prototype={ -jF(a,b){var s=this.f,r=b.w6(s),q=a.c.a -q.push(A.apT(s)) -this.b=A.TB(s,this.m5(a,r)) -q.pop()}, -ht(a){var s=a.a -s.bF(0) -s.T(0,this.f.a) -this.kM(a) -s.bt(0)}, -$iM0:1} -A.IN.prototype={$ia2U:1} -A.Jr.prototype={ -jF(a,b){this.b=this.c.b.c8(this.d)}, -ht(a){var s,r=a.b -r.bF(0) -s=this.d -r.aC(0,s.a,s.b) -r.qf(0,this.c) -r.bt(0)}} -A.Jp.prototype={ -jF(a,b){var s,r=this -r.m5(a,b) -s=$.bW().w -if(s==null)s=A.aX() -r.b=A.aHo(r.x,r.f,s,b)}, -ht(a){var s,r,q,p,o=this,n=o.f -if(n!==0){s=o.w -s.toString -r=o.r -a.b.it(0,o.x,s,n,(r.gl(r)>>>24&255)!==255)}q=A.aT() -q.sad(0,o.r) -n=o.y -s=n===B.cU -if(!s)a.b.cp(0,o.x,q) -r=a.a -p=r.bF(0) -switch(n.a){case 1:r.jd(0,o.x,!1) -break -case 2:r.jd(0,o.x,!0) -break -case 3:r.jd(0,o.x,!0) -r.f2(0,o.b,null) -break -case 0:break}if(s)a.b.qe(0,q) -o.kM(a) -r.ma(0,p)}, -$ia3r:1} -A.I4.prototype={ -m(a){}} -A.a1i.prototype={ -Ls(a,b){throw A.c(A.c_(null))}, -Lt(a,b,c,d){var s=A.a(this.b,"currentLayer"),r=new A.Jr(t.Bn.a(b),a,B.F) -r.a=s -s.c.push(r)}, -Lw(a){var s=A.a(this.b,"currentLayer") -t.L6.a(a) -a.a=s -s.c.push(a)}, -bq(a){return new A.I4(new A.a1j(this.a,$.bW().gkO()))}, -dg(a){var s,r=this,q="currentLayer" -if(A.a(r.b,q)===r.a)return -s=A.a(r.b,q).a -s.toString -r.b=s}, -OS(a,b,c){return this.m7(new A.Gd(t.E_.a(a),b,A.b([],t.k5),B.F))}, -OT(a,b,c){return this.m7(new A.Gf(a,b,A.b([],t.k5),B.F))}, -OU(a,b,c){return this.m7(new A.Gg(a,b,A.b([],t.k5),B.F))}, -DD(a,b,c){var s=A.dM() -s.mw(a,b,0) -return this.m7(new A.IN(s,A.b([],t.k5),B.F))}, -OW(a,b,c){return this.m7(new A.IP(a,b,A.b([],t.k5),B.F))}, -OY(a,b,c,d,e,f){return this.m7(new A.Jp(c,b,f,t.E_.a(e),a,A.b([],t.k5),B.F))}, -re(a,b){return this.m7(new A.AN(new A.bJ(A.TA(a)),A.b([],t.k5),B.F))}, -EW(a){}, -EX(a){}, -F7(a){}, -afx(a){var s=A.a(this.b,"currentLayer") -a.a=s -s.c.push(a) -return this.b=a}, -m7(a){return this.afx(a,t.vn)}} -A.a1j.prototype={ -aff(a,b){var s,r,q,p=A.b([],t.iW),o=new A.VH(p),n=a.a -p.push(n) -s=a.c.Ql() -for(r=0;r0))q.as=null -else{s=new A.G0(a.a,s) -s.jW(null,t.VE) -q.as=s}s=q.gag() -r=q.as -J.azh(s,r==null?null:r.gag())}, -skz(a){var s,r,q=this -if(q.at===a)return -q.at=a -s=q.gag() -r=q.z -J.aoa(s,r==null?null:r.gag())}, -sLX(a){var s,r=this,q=r.ax -if(J.f(q==null?null:q.b,a))return -r.y=null -q=r.ax=A.a1F(a) -if(r.x){r.y=q -r.ax=A.a1F(new A.vS($.ajF(),q))}q=r.gag() -s=r.ax -J.ao9(q,s==null?null:s.gag())}, -jh(){var s,r=new self.window.flutterCanvasKit.Paint(),q=J.j(r) -q.x5(r,this.r) -s=this.w -q.x6(r,s.gl(s)) -return r}, -mb(){var s=this,r=null,q=new self.window.flutterCanvasKit.Paint(),p=s.b,o=J.j(q) -o.EV(q,$.amV()[p.a]) -p=s.c -o.Fc(q,$.amX()[p.a]) -o.Fb(q,s.d) -o.x5(q,s.r) -p=s.w -o.x6(q,p.gl(p)) -p=s.z -o.F9(q,p==null?r:p.gag()) -p=s.as -o.F6(q,p==null?r:p.gag()) -p=s.ax -o.EY(q,p==null?r:p.gag()) -p=s.CW -o.QY(q,p==null?r:p.gag()) -p=s.e -o.Fa(q,$.amY()[p.a]) -o.R4(q,$.aw_()[0]) -o.R5(q,0) -return q}, -dX(a){var s=this.a -if(s!=null)J.fO(s)}, -$iIW:1} -A.q2.prototype={ -sNa(a){if(this.b===a)return -this.b=a -J.U3(this.gag(),$.TQ()[a.a])}, -uw(a,b,c,d){J.awE(this.gag(),A.dc(b),c*57.29577951308232,d*57.29577951308232)}, -pD(a,b){J.awF(this.gag(),A.dc(b),!1,1)}, -fB(a,b){J.awI(this.gag(),A.mN(b),!1)}, -kl(a,b){J.awJ(this.gag(),A.dc(b))}, -lx(a,b,c,d,e){J.awL(this.gag(),A.dc(b),c*57.29577951308232,d*57.29577951308232,e)}, -eD(a){J.ajI(this.gag())}, -A(a,b){return J.awS(this.gag(),b.a,b.b)}, -di(a){var s=J.ajQ(this.gag()) -return new A.w(s[0],s[1],s[2],s[3])}, -cO(a,b,c){J.az0(this.gag(),b,c)}, -ep(a,b,c){J.az3(this.gag(),b,c)}, -eY(a){this.b=B.bi -J.azd(this.gag())}, -c8(a){var s=J.awT(this.gag()) -J.azv(s,1,0,a.a,0,1,a.b,0,0,1) -return A.aAa(s,this.b)}, -gqM(){return!0}, -jh(){var s=new self.window.flutterCanvasKit.Path(),r=this.b -J.U3(s,$.TQ()[r.a]) -return s}, -dX(a){var s -this.c=J.azq(this.gag()) -s=this.a -if(s!=null)J.fO(s)}, -mb(){var s,r=J.axY($.bg.bi()),q=this.c -q.toString -s=J.aws(r,q) -q=this.b -J.U3(s,$.TQ()[q.a]) -return s}} -A.vU.prototype={ -m(a){var s,r=this -r.d=!0 -s=r.c -if(s!=null)s.m(0) -s=r.a -if(s!=null)J.fO(s) -r.a=null}, -gqM(){return!0}, -jh(){throw A.c(A.X("Unreachable code"))}, -mb(){return this.c.agB()}, -dX(a){var s -if(!this.d){s=this.a -if(s!=null)J.fO(s)}}} -A.n7.prototype={ -lz(a,b){var s,r -this.a=b -s=new self.window.flutterCanvasKit.PictureRecorder() -this.b=s -r=J.awM(s,A.dc(b)) -return this.c=$.EN()?new A.eX(r):new A.JU(new A.VJ(b,A.b([],t.Ns)),r)}, -vj(){var s,r,q=this,p=q.b -if(p==null)throw A.c(A.X("PictureRecorder is not recording")) -s=J.j(p) -r=s.Nf(p) -s.dX(p) -q.b=null -s=new A.vU(q.a,q.c.gOG()) -s.jW(r,t.xc) -return s}, -gO4(){return this.b!=null}} -A.a4a.prototype={ -abA(a){var s,r,q,p,o -try{p=a.b -if(p.gS(p))return -s=A.eQ().a.AU(p) -$.ajA().Q=p -r=new A.eX(J.U2(s.a.a)) -q=new A.ZD(r,null,$.ajA()) -q.afz(a,!0) -p=A.eQ().a -if(!p.as){o=$.iz -o.toString -J.U_(o).kE(0,0,p.x)}p.as=!0 -J.azo(s) -$.ajA().RC(0)}finally{this.a6J()}}, -a6J(){var s,r -for(s=this.b,r=0;rr.a)A.aDn(r)}, -agb(a){var s,r,q,p,o,n=this.a/2|0 -for(s=this.b,r=s.a,q=this.c,p=0;pr;){o=q.a.zV(0);--s.b -p.B(0,o) -o.dX(0) -o.lJ()}}} -A.dS.prototype={} -A.fu.prototype={ -jW(a,b){var s=this,r=a==null?s.jh():a -s.a=r -if($.EN())$.TE().o9(0,s,t.s7.a(r)) -else if(s.gqM()){A.t8() -$.TG().E(0,s)}else{A.t8() -$.zY.push(s)}}, -gag(){var s,r=this,q=r.a -if(q==null){s=r.mb() -r.a=s -if(r.gqM()){A.t8() -$.TG().E(0,r)}else{A.t8() -$.zY.push(r)}q=s}return q}, -lJ(){if(this.a==null)return -this.a=null}, -gqM(){return!1}} -A.t7.prototype={ -It(a,b){this.d=this.c=b}, -gag(){var s=this,r=s.c -if(r==null){r=s.e.$0() -s.c=r -s.d=t.LS.a(r) -A.t8() -$.TG().E(0,s) -r=s.gag()}return r}, -dX(a){var s=this.d -if(s!=null)J.fO(s)}, -lJ(){this.d=this.c=null}, -agR(a){var s,r=this -if(--r.a===0){s=r.d -if(s!=null)if($.EN())$.TE().Br(s) -else{r.dX(0) -r.lJ()}r.e=r.d=r.c=null -r.f=!0}}} -A.Ah.prototype={ -xs(a){return this.b.$2(this,new A.eX(J.U2(this.a.a)))}} -A.dm.prototype={ -Kf(){var s,r=this.w -if(r!=null){s=this.f -if(s!=null)J.azj(s,r)}}, -AU(a){return new A.Ah(this.v1(a),new A.a92(this))}, -v1(a){var s,r,q,p,o,n,m,l,k,j=this,i="webglcontextrestored",h="webglcontextlost" -if($.an5()){s=j.a -return s==null?j.a=new A.vW(J.ayI($.bg.bi()),null):s}if(a.gS(a))throw A.c(A.ak5("Cannot create surfaces of empty size.")) -r=j.ax -if(!j.b&&r!=null&&a.a===r.a&&a.b===r.b){s=$.bW().w -if(s==null)s=A.aX() -if(s!==j.ay)j.KT() -s=j.a -s.toString -return s}s=$.bW() -q=s.w -j.ay=q==null?A.aX():q -p=j.at -if(j.b||p==null||a.a>p.a||a.b>p.b){o=p==null?a:a.W(0,1.4) -q=j.a -if(q!=null)q.m(0) -j.a=null -j.as=!1 -q=j.f -if(q!=null)J.az9(q) -q=j.f -if(q!=null)J.fO(q) -j.f=null -q=j.y -if(q!=null){B.b1.ob(q,i,j.e,!1) -q=j.y -q.toString -B.b1.ob(q,h,j.d,!1) -q=j.y -q.toString -B.b1.bw(q) -j.d=j.e=null}j.z=B.e.dV(o.a) -q=B.e.dV(o.b) -j.Q=q -n=j.y=A.vN(q,j.z) -q=n.style -q.position="absolute" -j.KT() -j.e=j.gZQ() -q=j.gZO() -j.d=q -B.b1.kk(n,h,q,!1) -B.b1.kk(n,i,j.e,!1) -q=j.c=j.b=!1 -m=$.iu -if((m==null?$.iu=A.Eu():m)!==-1){q=$.bL -if(q==null)q=$.bL=new A.du(self.window.flutterConfiguration) -q=!q.guM(q)}if(q){q=$.bg.bi() -m=$.iu -if(m==null)m=$.iu=A.Eu() -l=j.r=J.awn(q,n,{antialias:0,majorVersion:m}) -if(l!==0){q=J.awu($.bg.bi(),l) -j.f=q -if(q==null)A.K(A.ak5("Failed to initialize CanvasKit. CanvasKit.MakeGrContext returned null.")) -j.Kf()}}j.x.appendChild(n) -j.at=o}j.ax=a -k=B.e.dV(a.b) -q=j.Q -s=s.w -if(s==null)s=A.aX() -m=j.y.style -B.h.an(m,B.h.X(m,"transform"),"translate(0, -"+A.e((q-k)/s)+"px)","") -return j.a=j.a_1(a)}, -KT(){var s,r,q=this.z,p=$.bW(),o=p.w -if(o==null)o=A.aX() -s=this.Q -p=p.w -if(p==null)p=A.aX() -r=this.y.style -r.width=A.e(q/o)+"px" -r.height=A.e(s/p)+"px"}, -ZR(a){this.c=!1 -$.aL().CS() -a.stopPropagation() -a.preventDefault()}, -ZP(a){var s=this,r=A.eQ() -s.c=!0 -if(r.adR(s)){s.b=!0 -a.preventDefault()}else s.m(0)}, -a_1(a){var s,r,q=this,p=$.iu -if((p==null?$.iu=A.Eu():p)===-1){p=q.y -p.toString -return q.tS(p,"WebGL support not detected")}else{p=$.bL -if(p==null)p=$.bL=new A.du(self.window.flutterConfiguration) -if(p.guM(p)){p=q.y -p.toString -return q.tS(p,"CPU rendering forced by application")}else if(q.r===0){p=q.y -p.toString -return q.tS(p,"Failed to initialize WebGL context")}else{p=$.bg.bi() -s=q.f -s.toString -r=J.awz(p,s,B.e.dV(a.a),B.e.dV(a.b),self.window.flutterCanvasKit.ColorSpace.SRGB) -if(r==null){p=q.y -p.toString -return q.tS(p,"Failed to initialize WebGL surface")}return new A.vW(r,q.r)}}}, -tS(a,b){if(!$.ar_){$.bV().$1("WARNING: Falling back to CPU-only rendering. "+b+".") -$.ar_=!0}return new A.vW(J.awA($.bg.bi(),a),null)}, -m(a){var s=this,r=s.y -if(r!=null)B.b1.ob(r,"webglcontextlost",s.d,!1) -r=s.y -if(r!=null)B.b1.ob(r,"webglcontextrestored",s.e,!1) -s.e=s.d=null -J.ca(s.x) -r=s.a -if(r!=null)r.m(0)}} -A.a92.prototype={ -$2(a,b){J.awZ(this.a.a.a) -return!0}, -$S:183} -A.vW.prototype={ -m(a){if(this.c)return -J.ES(this.a) -this.c=!0}} -A.kz.prototype={ -wP(){var s,r=this,q=r.e,p=q.length -if(p!==0){s=q.pop() -r.d.push(s) -return s}else{q=r.d -if(q.length+p+2>>0 -if((r|2)===r)s=(s|J.axW($.bg.bi()))>>>0 -a5.decoration=(r|4)===r?(s|J.axK($.bg.bi()))>>>0:s}if(e!=null)a5.decorationThickness=e -if(g!=null)a5.decorationColor=A.v0(g) -if(f!=null)a5.decorationStyle=$.aw1()[f.a] -if(c!=null)a5.textBaseline=$.amZ()[c.a] -if(b!=null)a5.fontSize=b -if(a!=null)a5.letterSpacing=a -if(a0!=null)a5.wordSpacing=a0 -if(a1!=null)a5.heightMultiplier=a1 -switch(j.ax){case null:break -case B.vD:a5.halfLeading=!0 -break -case B.vC:a5.halfLeading=!1 -break}q=j.db -if(q===$){p=A.alT(j.x,j.y) -A.ba(j.db,"effectiveFontFamilies") -j.db=p -q=p}a5.fontFamilies=q -if(d!=null||!1)a5.fontStyle=A.amy(d,j.r) -if(a3!=null)a5.foregroundColor=A.v0(a3.w) -if(a4!=null){o=A.b([],t.tA) -for(j=a4.length,n=0;n=q.gFk(r)&&s<=q.gMT(r))return new A.cx(q.gFk(r),q.gMT(r))}return B.bo}, -pU(){var s,r,q=this.d -q.toString -s=J.anS(this.k_(q)) -r=A.b([],t.ER) -for(q=J.av(s);q.t();)r.push(new A.G_(q.gH(q))) -return r}} -A.G_.prototype={ -gv7(a){return J.ayv(this.a)}, -gly(a){return J.ayp(this.a)}, -gvU(a){return J.ayA(this.a)}, -$ia1m:1} -A.VI.prototype={ -ux(a,b,c,d,e,f,g){var s;++this.d -this.e.push(g) -s=f==null?c:f -this.Yw(new A.abU(b*g,c*g,$.avX()[d.a],$.amZ()[0],s*g))}, -Lu(a,b,c,d,e){return this.ux(a,b,c,d,null,null,e)}, -Yw(a){this.c.push(new A.mC(B.w0,null,null,a)) -J.awG(this.a,a.a,a.b,a.c,a.d,a.e)}, -ls(a,b){var s=A.b([],t.s),r=B.c.gR(this.f),q=r.x -if(q!=null)s.push(q) -q=r.y -if(q!=null)B.c.P(s,q) -$.v2().abR(b,s) -this.c.push(new A.mC(B.TD,b,null,null)) -J.an8(this.a,b)}, -bq(a){return new A.vT(this.Gu(),this.b,this.c)}, -Gu(){var s=this.a,r=J.j(s),q=r.bq(s) -r.dX(s) -return q}, -gOH(){return this.d}, -gOI(){return this.e}, -dg(a){var s=this.f -if(s.length<=1)return -this.c.push(B.TG) -s.pop() -J.az5(this.a)}, -kR(a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.f,a4=B.c.gR(a3) -t.BQ.a(a6) -s=a6.a -if(s==null)s=a4.a -r=a6.b -if(r==null)r=a4.b -q=a6.c -if(q==null)q=a4.c -p=a6.d -if(p==null)p=a4.d -o=a6.e -if(o==null)o=a4.e -n=a6.f -if(n==null)n=a4.f -m=a6.w -if(m==null)m=a4.w -l=a6.x -if(l==null)l=a4.x -k=a6.y -if(k==null)k=a4.y -j=a6.z -if(j==null)j=a4.z -i=a6.Q -if(i==null)i=a4.Q -h=a6.as -if(h==null)h=a4.as -g=a6.at -if(g==null)g=a4.at -f=a6.ax -if(f==null)f=a4.ax -e=a6.ch -if(e==null)e=a4.ch -d=a6.CW -if(d==null)d=a4.CW -c=a6.cx -if(c==null)c=a4.cx -b=A.ak7(e,s,r,q,p,o,l,k,a4.cy,j,a4.r,n,d,g,f,i,a4.ay,c,m,h) -a3.push(b) -a1.c.push(new A.mC(B.TF,a2,a6,a2)) -a3=b.CW -s=a3==null -if(!s||b.ch!=null){a=s?a2:a3.gag() -if(a==null){a=$.auk() -a3=b.a -a3=a3==null?a2:a3.gl(a3) -J.ajR(a,a3==null?4278190080:a3)}a3=b.ch -a0=a3==null?a2:a3.gag() -if(a0==null)a0=$.auj() -J.az6(a1.a,b.gFi(),a,a0)}else J.anX(a1.a,b.gFi())}} -A.abU.prototype={} -A.mC.prototype={} -A.pk.prototype={ -i(a){return"_ParagraphCommandType."+this.b}} -A.ahW.prototype={ -$1(a){return this.a===a}, -$S:19} -A.Fz.prototype={ -i(a){return"CanvasKitError: "+this.a}} -A.Gi.prototype={ -QV(a,b){var s={} -s.a=!1 -this.a.ov(0,A.bH(J.ag(a.b,"text"))).aV(0,new A.VY(s,b),t.P).hI(new A.VZ(s,b))}, -Q3(a){this.b.rI(0).aV(0,new A.VW(a),t.P).hI(new A.VX(this,a))}} -A.VY.prototype={ -$1(a){var s=this.b -if(a){s.toString -s.$1(B.a4.ca([!0]))}else{s.toString -s.$1(B.a4.ca(["copy_fail","Clipboard.setData failed",null])) -this.a.a=!0}}, -$S:97} -A.VZ.prototype={ -$1(a){var s -if(!this.a.a){s=this.b -s.toString -s.$1(B.a4.ca(["copy_fail","Clipboard.setData failed",null]))}}, -$S:7} -A.VW.prototype={ -$1(a){var s=A.aB(["text",a],t.N,t.z),r=this.a -r.toString -r.$1(B.a4.ca([s]))}, -$S:215} -A.VX.prototype={ -$1(a){var s -if(a instanceof A.tG){A.Hv(B.r,t.H).aV(0,new A.VV(this.b),t.P) -return}s=this.b -A.fK("Could not get text from clipboard: "+A.e(a)) -s.toString -s.$1(B.a4.ca(["paste_fail","Clipboard.getData failed",null]))}, -$S:7} -A.VV.prototype={ -$1(a){var s=this.a -if(s!=null)s.$1(null)}, -$S:20} -A.Gh.prototype={ -ov(a,b){return this.QU(0,b)}, -QU(a,b){var s=0,r=A.S(t.y),q,p=2,o,n=[],m,l,k,j -var $async$ov=A.T(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:p=4 -l=window.navigator.clipboard -l.toString -b.toString -s=7 -return A.U(A.fL(l.writeText(b),t.z),$async$ov) -case 7:p=2 -s=6 -break -case 4:p=3 -j=o -m=A.ab(j) -A.fK("copy is not successful "+A.e(m)) -l=A.cU(!1,t.y) -q=l -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:q=A.cU(!0,t.y) -s=1 -break -case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$ov,r)}} -A.VU.prototype={ -rI(a){var s=0,r=A.S(t.N),q -var $async$rI=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:q=A.fL(window.navigator.clipboard.readText(),t.N) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$rI,r)}} -A.H2.prototype={ -ov(a,b){return A.cU(this.a75(b),t.y)}, -a75(a){var s,r,q,p,o="-99999px",n="transparent",m=document,l=m.createElement("textarea"),k=l.style -k.position="absolute" -k.top=o -k.left=o -B.h.an(k,B.h.X(k,"opacity"),"0","") -k.color=n -k.backgroundColor=n -k.background=n -m.body.appendChild(l) -s=l -s.value=a -J.ant(s) -J.aze(s) -r=!1 -try{r=m.execCommand("copy") -if(!r)A.fK("copy is not successful")}catch(p){q=A.ab(p) -A.fK("copy is not successful "+A.e(q))}finally{J.ca(s)}return r}} -A.YI.prototype={ -rI(a){return A.ako(new A.tG("Paste is not implemented for this browser."),null,t.N)}} -A.du.prototype={ -guL(a){var s=this.a -s=s==null?null:J.ayq(s) -return s==null?"https://unpkg.com/canvaskit-wasm@0.33.0/bin/":s}, -guM(a){var s=this.a -s=s==null?null:J.ayr(s) -return s==null?!1:s}, -gnc(a){var s=this.a -s=s==null?null:J.v7(s) -return s==null?8:s}, -gno(a){var s=this.a -s=s==null?null:J.ayu(s) -return s==null?!1:s}} -A.a0K.prototype={} -A.Hj.prototype={ -Pf(a){var s=this.w -if(a==null?s!=null:a!==s){if(s!=null)J.ca(s) -this.w=a -s=this.e -s.toString -a.toString -s.appendChild(a)}}, -eY(a){var s,r,q,p,o,n,m,l,k=this,j="0",i="none",h="absolute",g={},f=$.bU(),e=f===B.N,d=k.c -if(d!=null)B.vp.bw(d) -d=document -s=d.createElement("style") -k.c=s -k.f=null -d.head.appendChild(s) -s=k.c.sheet -s.toString -t.IP.a(s) -if(f!==B.b9)if(f!==B.ch)r=e -else r=!0 -else r=!0 -A.at3(s,f,r) -r=d.body -r.toString -r.setAttribute("flt-renderer",($.aJ()?"canvaskit":"html")+" (auto-selected)") -r.setAttribute("flt-build-mode","release") -A.d2(r,"position","fixed") -A.d2(r,"top",j) -A.d2(r,"right",j) -A.d2(r,"bottom",j) -A.d2(r,"left",j) -A.d2(r,"overflow","hidden") -A.d2(r,"padding",j) -A.d2(r,"margin",j) -A.d2(r,"user-select",i) -A.d2(r,"-webkit-user-select",i) -A.d2(r,"-ms-user-select",i) -A.d2(r,"-moz-user-select",i) -A.d2(r,"touch-action",i) -A.d2(r,"font","normal normal 14px sans-serif") -A.d2(r,"color","red") -r.spellcheck=!1 -for(f=new A.ub(d.head.querySelectorAll('meta[name="viewport"]'),t.xl),f=new A.cL(f,f.gp(f)),s=A.n(f).c;f.t();){q=f.d -if(q==null)q=s.a(q) -p=q.parentNode -if(p!=null)p.removeChild(q)}f=k.d -if(f!=null)B.JL.bw(f) -f=d.createElement("meta") -f.setAttribute("flt-viewport","") -f.name="viewport" -f.content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" -k.d=f -d.head.appendChild(f) -f=k.y -if(f!=null)J.ca(f) -o=d.createElement("flt-glass-pane") -k.y=o -f=o.style -f.position=h -f.top=j -f.right=j -f.bottom=j -f.left=j -r.appendChild(o) -n=k.z=k.ZY(o) -f=d.createElement("flt-scene-host") -s=f.style -B.h.an(s,B.h.X(s,"pointer-events"),i,"") -k.e=f -m=d.createElement("flt-semantics-host") -f=m.style -f.position=h -B.h.an(f,B.h.X(f,"transform-origin"),"0 0 0","") -k.r=m -k.PK() -f=$.e0 -l=(f==null?$.e0=A.lo():f).r.a.OM() -f=n.gOq(n) -d=k.e -d.toString -f.P(0,A.b([m,l,d],t.f2)) -f=$.bL -if(f==null)f=$.bL=new A.du(self.window.flutterConfiguration) -if(f.gno(f)){f=k.e.style -B.h.an(f,B.h.X(f,"opacity"),"0.3","")}if($.aqd==null){f=new A.Jx(o,new A.a3I(A.z(t.S,t.mm))) -f.d=f.ZU() -$.aqd=f}if($.apC==null){f=new A.I2(A.z(t.N,t.lG)) -f.a79() -$.apC=f}k.e.setAttribute("aria-hidden","true") -if(window.visualViewport==null&&e){f=window.innerWidth -f.toString -g.a=0 -A.AD(B.an,new A.Z9(g,k,f))}f=k.ga4J() -d=t.I3 -if(window.visualViewport!=null){s=window.visualViewport -s.toString -k.a=A.bz(s,"resize",f,!1,d)}else k.a=A.bz(window,"resize",f,!1,d) -k.b=A.bz(window,"languagechange",k.ga4g(),!1,d) -f=$.aL() -f.a=f.a.M9(A.akj())}, -ZY(a){var s,r,q,p,o -if(a.attachShadow!=null){s=new A.a74() -r=a.attachShadow(A.Ts(A.aB(["mode","open","delegatesFocus",!1],t.N,t.z))) -s.a=r -q=document.createElement("style") -A.a(r,"_shadow").appendChild(q) -r=q.sheet -r.toString -t.IP.a(r) -p=$.bU() -if(p!==B.b9)if(p!==B.ch)o=p===B.N -else o=!0 -else o=!0 -A.at3(r,p,o) -return s}else{s=new A.Y5() -r=document.createElement("flt-element-host-node") -s.a=r -a.appendChild(A.a(r,"_element")) -return s}}, -PK(){var s=this.r.style,r=window.devicePixelRatio -B.h.an(s,B.h.X(s,"transform"),"scale("+A.e(1/r)+")","")}, -IV(a){var s -this.PK() -s=$.ej() -if(!J.eD(B.lg.a,s)&&!$.bW().adU()&&$.an4().c){$.bW().M_(!0) -$.aL().CS()}else{s=$.bW() -s.M0() -s.M_(!1) -$.aL().CS()}}, -a4h(a){var s=$.aL() -s.a=s.a.M9(A.akj()) -s=$.bW().b.dy -if(s!=null)s.$0()}, -R0(a){var s,r,q,p,o=window.screen.orientation -if(o!=null){q=J.ax(a) -if(q.gS(a)){q=o -q.toString -J.azy(q) -return A.cU(!0,t.y)}else{s=A.aBb(A.bH(q.gJ(a))) -if(s!=null){r=new A.aI(new A.a4($.a5,t.ot),t.VY) -try{A.fL(o.lock(s),t.z).aV(0,new A.Za(r),t.P).hI(new A.Zb(r))}catch(p){q=A.cU(!1,t.y) -return q}return r.a}}}return A.cU(!1,t.y)}} -A.Z9.prototype={ -$1(a){var s=++this.a.a -if(this.c!==window.innerWidth){a.aA(0) -this.b.IV(null)}else if(s>5)a.aA(0)}, -$S:48} -A.Za.prototype={ -$1(a){this.a.c3(0,!0)}, -$S:7} -A.Zb.prototype={ -$1(a){this.a.c3(0,!1)}, -$S:7} -A.Yh.prototype={} -A.Kz.prototype={} -A.ox.prototype={} -A.QH.prototype={} -A.a5V.prototype={ -bF(a){var s,r,q=this,p=q.qt$ -p=p.length===0?q.a:B.c.gR(p) -s=q.js$ -r=new A.bJ(new Float32Array(16)) -r.by(s) -q.N9$.push(new A.QH(p,r))}, -bt(a){var s,r,q,p=this,o=p.N9$ -if(o.length===0)return -s=o.pop() -p.js$=s.b -o=p.qt$ -r=s.a -q=p.a -while(!0){if(!((o.length===0?q:B.c.gR(o))!==r))break -o.pop()}}, -aC(a,b,c){this.js$.aC(0,b,c)}, -cP(a,b,c){this.js$.cP(0,b,c)}, -hw(a,b){this.js$.Pt(0,$.auJ(),b)}, -T(a,b){this.js$.cg(0,new A.bJ(b))}} -A.ajp.prototype={ -$1(a){$.alQ=!1 -$.aL().hW("flutter/system",$.avx(),new A.ajo())}, -$S:152} -A.ajo.prototype={ -$1(a){}, -$S:16} -A.fr.prototype={} -A.Gs.prototype={ -aal(){var s,r,q,p=this,o=p.b -if(o!=null)for(o=o.gb2(o),o=new A.eq(J.av(o.a),o.b),s=A.n(o).z[1];o.t();){r=o.a -for(r=J.av(r==null?s.a(r):r);r.t();){q=r.gH(r) -q.b.$1(q.a)}}p.b=p.a -p.a=null}, -G9(a,b){var s,r=this,q=r.a -if(q==null)q=r.a=A.z(t.N,r.$ti.j("x>")) -s=q.h(0,a) -if(s==null){s=A.b([],r.$ti.j("o>")) -q.n(0,a,s) -q=s}else q=s -q.push(b)}, -agf(a){var s,r,q=this.b -if(q==null)return null -s=q.h(0,a) -if(s==null||s.length===0)return null -r=(s&&B.c).eW(s,0) -this.G9(a,r) -return r.a}} -A.tX.prototype={} -A.a74.prototype={ -kp(a,b){return A.a(this.a,"_shadow").appendChild(b)}, -gOp(){return A.a(this.a,"_shadow")}, -gOq(a){return new A.dE(A.a(this.a,"_shadow"))}} -A.Y5.prototype={ -kp(a,b){return A.a(this.a,"_element").appendChild(b)}, -gOp(){return A.a(this.a,"_element")}, -gOq(a){return new A.dE(A.a(this.a,"_element"))}} -A.jJ.prototype={ -sjb(a,b){var s,r,q=this -q.a=b -s=B.e.eG(b.a)-1 -r=B.e.eG(q.a.b)-1 -if(q.z!==s||q.Q!==r){q.z=s -q.Q=r -q.L1()}}, -L1(){var s=this.c.style,r=this.z,q=this.Q -B.h.an(s,B.h.X(s,"transform"),"translate("+r+"px, "+q+"px)","")}, -JU(){var s=this,r=s.a,q=r.a -r=r.b -s.d.aC(0,-q+(q-1-s.z)+1,-r+(r-1-s.Q)+1)}, -MH(a,b){return this.r>=A.UT(a.c-a.a)&&this.w>=A.US(a.d-a.b)&&this.ay===b}, -aG(a){var s,r,q,p,o,n,m=this -m.at=!1 -m.d.aG(0) -s=m.f -r=s.length -for(q=m.c,p=0;pp){m=p -p=q -q=m}if(o>n){m=n -n=o -o=m}l=Math.abs(a2.r) -k=Math.abs(a2.e) -j=Math.abs(a2.w) -i=Math.abs(a2.f) -h=Math.abs(a2.z) -g=Math.abs(a2.x) -f=Math.abs(a2.Q) -e=Math.abs(a2.y) -c.beginPath() -c.moveTo(q+l,o) -b=p-l -c.lineTo(b,o) -A.Tu(c,b,o+j,l,j,0,4.71238898038469,6.283185307179586,!1) -b=n-e -c.lineTo(p,b) -A.Tu(c,p-g,b,g,e,0,0,1.5707963267948966,!1) -b=q+h -c.lineTo(b,n) -A.Tu(c,b,n-f,h,f,0,1.5707963267948966,3.141592653589793,!1) -b=o+i -c.lineTo(q,b) -A.Tu(c,q+k,b,k,i,0,3.141592653589793,4.71238898038469,!1) -a0.gd_().ht(d) -a0.gd_().og()}}, -dZ(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=A.lY(b,c) -if(l.AM(d)){s=A.EA(k,d,"draw-circle",l.d.c) -l.p7(s,new A.m(Math.min(k.a,k.c),Math.min(k.b,k.d)),d) -r=s.style -B.h.an(r,B.h.X(r,"border-radius"),"50%","")}else{r=d.w!=null?A.lY(b,c):null -q=l.d -q.gd_().mx(d,r) -r=d.b -q.gaP(q).beginPath() -p=q.gd_().Q -o=p==null -n=b.a -n=o?n:n-p.a -m=b.b -m=o?m:m-p.b -A.Tu(q.gaP(q),n,m,c,c,0,0,6.283185307179586,!1) -q.gd_().ht(r) -q.gd_().og()}}, -cp(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(e.Lb(c)){s=e.d -r=s.c -t.Ci.a(b) -q=b.a.Qy() -if(q!=null){p=q.b -o=q.d -n=q.a -m=p===o?new A.w(n,p,n+(q.c-n),p+1):new A.w(n,p,n+1,p+(o-p)) -e.p7(A.EA(m,c,"draw-rect",s.c),new A.m(Math.min(m.a,m.c),Math.min(m.b,m.d)),c) -return}l=b.a.rN() -if(l!=null){e.c9(0,l,c) -return}p=b.a -k=p.ax?p.tG():null -if(k!=null){e.cm(0,k,c) -return}j=b.di(0) -i=A.au2(b,c,A.e(j.c),A.e(j.d)) -if(s.b==null){h=i.style -h.position="absolute" -if(!r.qJ(0)){s=A.hw(r.a) -B.h.an(h,B.h.X(h,"transform"),s,"") -B.h.an(h,B.h.X(h,"transform-origin"),"0 0 0","")}}if(c.x!=null){s=c.b -p=c.r -if(p==null)g="#000000" -else{p=A.cm(p) -p.toString -g=p}f=c.x.b -p=$.bU() -if(p===B.N&&s!==B.T){s=i.style -B.h.an(s,B.h.X(s,"box-shadow"),"0px 0px "+A.e(f*2)+"px "+g,"")}else{s=i.style -B.h.an(s,B.h.X(s,"filter"),"blur("+A.e(f)+"px)","")}}e.p7(i,B.j,c)}else{s=c.w!=null?b.di(0):null -p=e.d -p.gd_().mx(c,s) -s=c.b -if(s==null&&c.c!=null)p.cp(0,b,B.T) -else p.cp(0,b,s) -p.gd_().og()}}, -it(a,b,c,d,e){var s,r,q,p,o,n=this.d,m=A.am8(b.di(0),d) -if(m!=null){s=A.amx(c).a -r=A.aHi(s>>>16&255,s>>>8&255,s&255,255) -n.gaP(n).save() -n.gaP(n).globalAlpha=(s>>>24&255)/255 -s=$.bU() -s=s!==B.N -q=m.b -p=m.a -o=q.a -q=q.b -if(s){n.gaP(n).translate(o,q) -n.gaP(n).filter=A.atS(new A.xO(B.cP,p)) -n.gaP(n).strokeStyle="" -n.gaP(n).fillStyle=r}else{n.gaP(n).filter="none" -n.gaP(n).strokeStyle="" -n.gaP(n).fillStyle=r -n.gaP(n).shadowBlur=p -n.gaP(n).shadowColor=r -n.gaP(n).shadowOffsetX=o -n.gaP(n).shadowOffsetY=q}n.mV(n.gaP(n),b) -n.gaP(n).fill() -n.gaP(n).restore()}}, -JC(a){var s,r,q,p=a.a.src -p.toString -s=this.b -if(s!=null){r=s.agf(p) -if(r!=null)return r}q=a.aag() -s=this.b -if(s!=null)s.G9(p,new A.tX(q,A.aFR(),s.$ti.j("tX<1>"))) -return q}, -Hn(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=this -t.gc.a(a) -s=c.a -r=c.z -if(r instanceof A.VB)q=i.ZZ(a,r.a,r.b,c) -else q=i.JC(a) -p=q.style -o=A.aiy(s) -if(o==null)o="" -B.h.an(p,B.h.X(p,"mix-blend-mode"),o,"") -p=i.d -if(p.b!=null){o=q.style -o.removeProperty("width") -o.removeProperty("height") -o=p.b -o.toString -n=A.alL(o,q,b,p.c) -for(p=n.length,o=i.c,m=i.f,l=0;l1){s=q.a -s.y=s.r.pop() -r=s.w.pop() -if(r!=null){s.Q=r.a -s.as=r.b -s.at=r.c -s.ax=r.d -s.z=!0}else if(s.z)s.z=!1}s=q.c -if(s.length!==0&&B.c.gR(s) instanceof A.yt)s.pop() -else s.push(B.xb);--q.r}, -aC(a,b,c){var s=this.a,r=s.a -if(b!==0||c!==0)r.x=!1 -r.y.aC(0,b,c) -s.c.push(new A.Jc(b,c))}, -cP(a,b,c){var s=c==null?b:c,r=this.a,q=r.a -if(b!==1||s!==1)q.x=!1 -q.y.cP(0,b,s) -r.c.push(new A.Ja(b,s)) -return null}, -hw(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this.a,g=h.a -if(b!==0)g.x=!1 -g=g.y -s=Math.cos(b) -r=Math.sin(b) -g=g.a -q=g[0] -p=g[4] -o=g[1] -n=g[5] -m=g[2] -l=g[6] -k=g[3] -j=g[7] -i=-r -g[0]=q*s+p*r -g[1]=o*s+n*r -g[2]=m*s+l*r -g[3]=k*s+j*r -g[4]=q*i+p*s -g[5]=o*i+n*s -g[6]=m*i+l*s -g[7]=k*i+j*s -h.c.push(new A.J9(b))}, -T(a,b){var s=A.TA(b),r=this.a,q=r.a -q.y.cg(0,new A.bJ(s)) -q.x=q.y.qJ(0) -r.c.push(new A.Jb(s))}, -pR(a,b,c,d){var s=this.a,r=new A.IZ(b,c,-1/0,-1/0,1/0,1/0) -switch(c.a){case 1:s.a.lE(0,b,r) -break -case 0:break}s.d.c=!0 -s.c.push(r)}, -LU(a,b,c){return this.pR(a,b,B.cl,c)}, -je(a,b){return this.pR(a,b,B.cl,!0)}, -uR(a,b,c){var s=this.a,r=new A.IY(b,-1/0,-1/0,1/0,1/0) -s.a.lE(0,new A.w(b.a,b.b,b.c,b.d),r) -s.d.c=!0 -s.c.push(r)}, -lD(a,b){return this.uR(a,b,!0)}, -uQ(a,b,c){var s,r=this.a -t.Ci.a(b) -s=new A.IX(b,-1/0,-1/0,1/0,1/0) -r.a.lE(0,b.di(0),s) -r.d.c=!0 -r.c.push(s)}, -fF(a,b){return this.uQ(a,b,!0)}, -is(a,b,c,d){var s,r,q,p,o,n,m=this.a -t.o.a(d) -s=Math.max(A.Ev(d),1) -d.b=!0 -r=new A.J2(b,c,d.a,-1/0,-1/0,1/0,1/0) -q=b.a -p=c.a -o=b.b -n=c.b -m.a.mr(Math.min(q,p)-s,Math.min(o,n)-s,Math.max(q,p)+s,Math.max(o,n)+s,r) -m.e=m.d.c=!0 -m.c.push(r)}, -c9(a,b,c){this.a.c9(0,b,t.o.a(c))}, -cm(a,b,c){this.a.cm(0,b,t.o.a(c))}, -fb(a,b,c,d){this.a.fb(0,b,c,t.o.a(d))}, -dZ(a,b,c,d){var s,r,q,p,o,n=this.a -t.o.a(d) -n.e=n.d.c=!0 -s=A.Ev(d) -d.b=!0 -r=new A.J_(b,c,d.a,-1/0,-1/0,1/0,1/0) -q=c+s -p=b.a -o=b.b -n.a.mr(p-q,o-q,p+q,o+q,r) -n.c.push(r)}, -jl(a,b,c,d,e,f){var s,r=A.d4() -if(d<=-6.283185307179586){r.lx(0,b,c,-3.141592653589793,!0) -c-=3.141592653589793 -r.lx(0,b,c,-3.141592653589793,!1) -c-=3.141592653589793 -d+=6.283185307179586 -s=!1}else s=!0 -for(;d>=6.283185307179586;s=!1){r.lx(0,b,c,3.141592653589793,s) -c+=3.141592653589793 -r.lx(0,b,c,3.141592653589793,!1) -c+=3.141592653589793 -d-=6.283185307179586}r.lx(0,b,c,d,s) -this.a.cp(0,r,t.o.a(f))}, -cp(a,b,c){this.a.cp(0,b,t.o.a(c))}, -hM(a,b,c,d){var s,r,q=this.a -t.o.a(d) -s=q.d -d.b=q.e=s.a=s.c=!0 -r=new A.J1(a,b,c,d.a,-1/0,-1/0,1/0,1/0) -q.a.or(c,r) -q.c.push(r)}, -hm(a,b,c){this.a.hm(0,b,c)}, -it(a,b,c,d,e){var s,r,q=this.a -q.e=q.d.c=!0 -s=A.aHn(b.di(0),d) -r=new A.J7(t.Ci.a(b),c,d,!0,-1/0,-1/0,1/0,1/0) -q.a.or(s,r) -q.c.push(r)}} -A.u2.prototype={ -ghi(){return this.cr$}, -c_(a){var s=this.v6("flt-clip"),r=A.cz("flt-clip-interior",null) -this.cr$=r -r=r.style -r.position="absolute" -r=this.cr$ -r.toString -s.appendChild(r) -return s}, -LD(a,b){var s -if(b!==B.u){s=a.style -s.overflow="hidden" -s.zIndex="0"}}} -A.yA.prototype={ -hv(){var s=this -s.f=s.e.f -if(s.CW!==B.u)s.w=s.cx -else s.w=null -s.r=null}, -c_(a){var s=this.xQ(0) -s.setAttribute("clip-type","rect") -return s}, -fa(){var s,r=this,q=r.d.style,p=r.cx,o=p.a -q.left=A.e(o)+"px" -s=p.b -q.top=A.e(s)+"px" -q.width=A.e(p.c-o)+"px" -q.height=A.e(p.d-s)+"px" -q=r.d -q.toString -r.LD(q,r.CW) -q=r.cr$.style -q.left=A.e(-o)+"px" -q.top=A.e(-s)+"px"}, -bc(a,b){var s=this -s.ld(0,b) -if(!s.cx.k(0,b.cx)||s.CW!==b.CW){s.w=null -s.fa()}}, -$iVT:1} -A.Jj.prototype={ -hv(){var s,r=this -r.f=r.e.f -if(r.cx!==B.u){s=r.CW -r.w=new A.w(s.a,s.b,s.c,s.d)}else r.w=null -r.r=null}, -c_(a){var s=this.xQ(0) -s.setAttribute("clip-type","rrect") -return s}, -fa(){var s,r=this,q=r.d.style,p=r.CW,o=p.a -q.left=A.e(o)+"px" -s=p.b -q.top=A.e(s)+"px" -q.width=A.e(p.c-o)+"px" -q.height=A.e(p.d-s)+"px" -B.h.an(q,B.h.X(q,"border-top-left-radius"),A.e(p.e)+"px","") -B.h.an(q,B.h.X(q,"border-top-right-radius"),A.e(p.r)+"px","") -B.h.an(q,B.h.X(q,"border-bottom-right-radius"),A.e(p.x)+"px","") -B.h.an(q,B.h.X(q,"border-bottom-left-radius"),A.e(p.z)+"px","") -p=r.d -p.toString -r.LD(p,r.cx) -p=r.cr$.style -p.left=A.e(-o)+"px" -p.top=A.e(-s)+"px"}, -bc(a,b){var s=this -s.ld(0,b) -if(!s.CW.k(0,b.CW)||s.cx!==b.cx){s.w=null -s.fa()}}, -$iVR:1} -A.yD.prototype={ -hv(){var s,r,q,p,o=this -o.f=o.e.f -if(o.dy!==B.u){s=o.CW -r=s.a -q=r.ax?r.tG():null -if(q!=null)o.w=new A.w(q.a,q.b,q.c,q.d) -else{p=s.a.rN() -if(p!=null)o.w=p -else o.w=null}}else o.w=null -o.r=null}, -c_(a){var s=this.xQ(0) -s.setAttribute("clip-type","physical-shape") -return s}, -hl(){var s,r=this -r.Ug() -s=r.fr -if(s!=null)B.aW.bw(s) -r.fr=null -s=r.fx -if(s!=null)B.aW.bw(s) -r.fx=null}, -fa(){this.Gk()}, -Gk(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0="border-radius",a1="hidden",a2=a.d.style,a3=a.db,a4=A.cm(a3) -a2.backgroundColor=a4==null?"":a4 -a2=a.CW -a4=a2.a -s=a4.ax?a4.tG():null -if(s!=null){a2=s.e -a3=s.r -a4=s.x -r=s.z -q=a.d.style -p=s.a -q.left=A.e(p)+"px" -o=s.b -q.top=A.e(o)+"px" -n=s.c -q.width=A.e(n-p)+"px" -n=s.d -q.height=A.e(n-o)+"px" -B.h.an(q,B.h.X(q,a0),A.e(a2)+"px "+A.e(a3)+"px "+A.e(a4)+"px "+A.e(r)+"px","") -a2=a.cr$.style -a2.left=A.e(-p)+"px" -a2.top=A.e(-o)+"px" -if(a.dy!==B.u)q.overflow=a1 -A.am5(a.d,a.cx,a.cy,a.dx) -return}else{m=a2.a.rN() -if(m!=null){q=a.d.style -a2=m.a -q.left=A.e(a2)+"px" -a3=m.b -q.top=A.e(a3)+"px" -a4=m.c -q.width=A.e(a4-a2)+"px" -a4=m.d -q.height=A.e(a4-a3)+"px" -B.h.an(q,B.h.X(q,a0),"","") -a4=a.cr$.style -a4.left=A.e(-a2)+"px" -a4.top=A.e(-a3)+"px" -if(a.dy!==B.u)q.overflow=a1 -A.am5(a.d,a.cx,a.cy,a.dx) -return}else{a4=a2.a -l=(a4.at?a4.CW:-1)===-1?null:a4.di(0) -if(l!=null){a2=l.c -a3=l.a -k=(a2-a3)/2 -a2=l.d -a4=l.b -j=(a2-a4)/2 -i=A.e(k)+"px " -i=k===j?i:i+A.e(j)+"px " -q=a.d.style -q.left=A.e(a3)+"px" -q.top=A.e(a4)+"px" -q.width=A.e(k*2)+"px" -q.height=A.e(j*2)+"px" -B.h.an(q,B.h.X(q,a0),i,"") -a2=a.cr$.style -a2.left=A.e(-a3)+"px" -a2.top=A.e(-a4)+"px" -if(a.dy!==B.u)q.overflow=a1 -A.am5(a.d,a.cx,a.cy,a.dx) -return}}}a4=a.cy -r=a4===0 -p=a.cx -o=p.c -n=p.d -if(r){h=p.a -g=p.b -f=A.amn(a2,-h,-g,1/(o-h),1/(n-g))}else f=A.amn(a2,0,0,1/o,1/n) -h=a.fr -if(h!=null)B.aW.bw(h) -h=a.fx -if(h!=null)B.aW.bw(h) -a.fr=f -a.d.appendChild(f) -if(r){a2=a.d -a2.toString -A.ajq(a2,"url(#svgClip"+$.Et+")") -e=a.d.style -e.overflow="" -a2=p.a -a3=A.e(a2) -e.left=a3+"px" -a4=p.b -r=A.e(a4) -e.top=r+"px" -e.width=A.e(o-a2)+"px" -e.height=A.e(n-a4)+"px" -B.h.an(e,B.h.X(e,a0),"","") -a2=a.cr$.style -a2.left="-"+a3+"px" -a2.top="-"+r+"px" -return}r=a.cr$ -r.toString -A.ajq(r,"url(#svgClip"+$.Et+")") -e=a.d.style -e.overflow="" -r=p.a -h=A.e(r) -e.left=h+"px" -g=p.b -d=A.e(g) -e.top=d+"px" -e.width=A.e(o-r)+"px" -e.height=A.e(n-g)+"px" -B.h.an(e,B.h.X(e,a0),"","") -r=a.cr$.style -r.left="-"+h+"px" -r.top="-"+d+"px" -r.width=A.e(o)+"px" -r.height=A.e(n)+"px" -c=a2.di(0) -r=new A.aQ() -r.b=B.aq -r.r=a3 -r=A.au2(a2,r,A.e(c.c),A.e(c.d)) -a.fx=r -a.d.insertBefore(r,a.cr$) -a4=A.am8(p,a4) -a4.toString -b=A.amx(a.dx) -p=a.fx.style -r=a4.b -a2=b.a -B.h.an(p,B.h.X(p,"filter"),"drop-shadow("+A.e(r.a)+"px "+A.e(r.b)+"px "+A.e(a4.a)+"px rgba("+(a2>>>16&255)+", "+(a2>>>8&255)+", "+(a2&255)+", "+A.e((a2>>>24&255)/255)+"))","") -B.h.an(p,B.h.X(p,"transform"),"translate(-"+A.e(c.a)+"px, -"+A.e(c.b)+"px)","") -p=a.d.style -p.backgroundColor=""}, -bc(a,b){var s,r,q=this -q.ld(0,b) -s=b.CW===q.CW -if(!s)q.w=null -s=!s||b.cy!==q.cy||!b.dx.k(0,q.dx)||!b.db.k(0,q.db) -r=b.fr -if(s){if(r!=null)B.aW.bw(r) -b.fr=null -s=b.fx -if(s!=null)B.aW.bw(s) -b.fx=null -s=q.fr -if(s!=null)B.aW.bw(s) -q.fr=null -s=q.fx -if(s!=null)B.aW.bw(s) -q.fx=null -s=q.d -s.toString -A.ajq(s,"") -q.Gk()}else{q.fr=r -if(r!=null)q.d.appendChild(r) -b.fr=null -s=q.fx=b.fx -if(s!=null)q.d.insertBefore(s,q.cr$) -b.fx=null}}, -$ia3r:1} -A.yz.prototype={ -c_(a){return this.v6("flt-clippath")}, -hv(){var s=this -s.T0() -if(s.cx!==B.u){if(s.w==null)s.w=s.CW.di(0)}else s.w=null}, -fa(){var s=this,r=s.cy -if(r!=null)B.aW.bw(r) -r=s.d -r.toString -r=A.atg(t.py.a(r),s.CW) -s.cy=r -s.d.appendChild(r)}, -bc(a,b){var s,r=this -r.ld(0,b) -if(b.CW!==r.CW){r.w=null -s=b.cy -if(s!=null)B.aW.bw(s) -r.fa()}else r.cy=b.cy -b.cy=null}, -hl(){var s=this.cy -if(s!=null)B.aW.bw(s) -this.cy=null -this.t8()}, -$iVQ:1} -A.a94.prototype={ -F0(a,b){var s,r,q,p,o=t.u7.a(t.ry.a(B.b3.ip(document,"http://www.w3.org/2000/svg","feColorMatrix"))) -o.type.baseVal=1 -o.result.baseVal=b -s=o.values.baseVal -s.toString -for(r=this.b,q=0;q<20;++q){p=r.createSVGNumber() -p.value=a[q] -s.appendItem(p)}this.c.appendChild(o)}, -mu(a,b,c){var s=t.FQ.a(t.ry.a(B.b3.ip(document,"http://www.w3.org/2000/svg","feFlood"))) -s.setAttribute("flood-color",a) -s.setAttribute("flood-opacity",b) -s.result.baseVal=c -this.c.appendChild(s)}, -F_(a,b,c){var s=t.in.a(t.ry.a(B.b3.ip(document,"http://www.w3.org/2000/svg","feBlend"))) -s.in1.baseVal=a -s.in2.baseVal=b -s.mode.baseVal=c -this.c.appendChild(s)}, -rZ(a,b,c,d,e,f,g,h){var s=t.BH.a(t.ry.a(B.b3.ip(document,"http://www.w3.org/2000/svg","feComposite"))) -s.in1.baseVal=a -s.in2.baseVal=b -s.operator.baseVal=g -if(c!=null)s.k1.baseVal=c -if(d!=null)s.k2.baseVal=d -if(e!=null)s.k3.baseVal=e -if(f!=null)s.k4.baseVal=f -s.result.baseVal=h -this.c.appendChild(s)}, -x8(a,b,c,d){return this.rZ(a,b,null,null,null,null,c,d)}, -bq(a){var s=this.b -s.appendChild(this.c) -return new A.a93(this.a,s)}} -A.a93.prototype={} -A.Xu.prototype={ -lE(a,b,c){throw A.c(A.c_(null))}, -lD(a,b){throw A.c(A.c_(null))}, -fF(a,b){throw A.c(A.c_(null))}, -is(a,b,c,d){throw A.c(A.c_(null))}, -c9(a,b,c){var s=this.qt$ -s=s.length===0?this.a:B.c.gR(s) -s.appendChild(A.EA(b,c,"draw-rect",this.js$))}, -cm(a,b,c){var s,r=A.EA(new A.w(b.a,b.b,b.c,b.d),c,"draw-rrect",this.js$) -A.at4(r.style,b) -s=this.qt$;(s.length===0?this.a:B.c.gR(s)).appendChild(r)}, -dZ(a,b,c,d){throw A.c(A.c_(null))}, -cp(a,b,c){throw A.c(A.c_(null))}, -it(a,b,c,d,e){throw A.c(A.c_(null))}, -hM(a,b,c,d){throw A.c(A.c_(null))}, -hm(a,b,c){var s=A.atl(b,c,this.js$),r=this.qt$;(r.length===0?this.a:B.c.gR(r)).appendChild(s)}, -nu(){}} -A.yB.prototype={ -hv(){var s,r,q=this,p=q.e.f -q.f=p -s=q.CW -if(s!==0||q.cx!==0){p.toString -r=new A.bJ(new Float32Array(16)) -r.by(p) -q.f=r -r.aC(0,s,q.cx)}q.r=null}, -gqO(){var s=this,r=s.cy -if(r==null){r=A.dM() -r.mw(-s.CW,-s.cx,0) -s.cy=r}return r}, -c_(a){var s=document.createElement("flt-offset") -A.d2(s,"position","absolute") -A.d2(s,"transform-origin","0 0 0") -return s}, -fa(){var s=this.d.style -B.h.an(s,B.h.X(s,"transform"),"translate("+A.e(this.CW)+"px, "+A.e(this.cx)+"px)","")}, -bc(a,b){var s=this -s.ld(0,b) -if(b.CW!==s.CW||b.cx!==s.cx)s.fa()}, -$ia2U:1} -A.yC.prototype={ -hv(){var s,r,q,p=this,o=p.e.f -p.f=o -s=p.cx -r=s.a -q=s.b -if(r!==0||q!==0){o.toString -s=new A.bJ(new Float32Array(16)) -s.by(o) -p.f=s -s.aC(0,r,q)}p.r=null}, -gqO(){var s,r=this.cy -if(r==null){r=this.cx -s=A.dM() -s.mw(-r.a,-r.b,0) -this.cy=s -r=s}return r}, -c_(a){var s=document.createElement("flt-opacity") -A.d2(s,"position","absolute") -A.d2(s,"transform-origin","0 0 0") -return s}, -fa(){var s,r=this.d -r.toString -A.d2(r,"opacity",A.e(this.CW/255)) -r=r.style -s=this.cx -B.h.an(r,B.h.X(r,"transform"),"translate("+A.e(s.a)+"px, "+A.e(s.b)+"px)","")}, -bc(a,b){var s=this -s.ld(0,b) -if(s.CW!==b.CW||!s.cx.k(0,b.cx))s.fa()}, -$ia2V:1} -A.aO.prototype={ -sLK(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.a=a}, -gcj(a){var s=this.a.b -return s==null?B.aq:s}, -scj(a,b){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.b=b}, -gf5(){var s=this.a.c -return s==null?0:s}, -sf5(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.c=a}, -sFm(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.d=a}, -sqI(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.f=a}, -gad(a){var s=this.a.r -return s==null?B.n:s}, -sad(a,b){var s,r=this -if(r.b){r.a=r.a.dq(0) -r.b=!1}s=r.a -s.r=A.C(b)===B.Rq?b:new A.E(b.gl(b))}, -svM(a){}, -sFe(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.w=a}, -sOh(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.x=a}, -skz(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.y=a}, -sLX(a){var s=this -if(s.b){s.a=s.a.dq(0) -s.b=!1}s.a.z=a}, -i(a){var s,r,q=this,p=""+"Paint(",o=q.a.b,n=o==null -if((n?B.aq:o)===B.T){p+=(n?B.aq:o).i(0) -o=q.a -n=o.c -s=n==null -if((s?0:n)!==0)p+=" "+A.e(s?0:n) -else p+=" hairline" -o=o.d -n=o==null -if((n?B.c9:o)!==B.c9)p+=" "+(n?B.c9:o).i(0) -r="; "}else r="" -o=q.a -if(!o.f){p+=r+"antialias off" -r="; "}o=o.r -if(!(o==null?B.n:o).k(0,B.n)){o=q.a.r -p+=r+(o==null?B.n:o).i(0)}p+=")" -return p.charCodeAt(0)==0?p:p}, -$iIW:1} -A.aQ.prototype={ -dq(a){var s=this,r=new A.aQ() -r.a=s.a -r.y=s.y -r.x=s.x -r.w=s.w -r.f=s.f -r.r=s.r -r.z=s.z -r.c=s.c -r.b=s.b -r.e=s.e -r.d=s.d -return r}, -i(a){var s=this.bY(0) -return s}} -A.eY.prototype={ -DY(){var s,r,q,p,o,n,m,l,k,j=this,i=A.b([],t.yv),h=j.ZL(0.25),g=B.f.JW(1,h) -i.push(new A.m(j.a,j.b)) -if(h===5){s=new A.N6() -j.GI(s) -r=s.a -r.toString -q=s.b -q.toString -p=r.c -if(p===r.e&&r.d===r.f&&q.a===q.c&&q.b===q.d){o=new A.m(p,r.d) -i.push(o) -i.push(o) -i.push(o) -i.push(new A.m(q.e,q.f)) -g=2 -n=!0}else n=!1}else n=!1 -if(!n)A.ak9(j,h,i) -m=2*g+1 -k=0 -while(!0){if(!(k=0)s.d=-r -s.f=s.e=-1}, -kl(a,b){this.uz(b,0,0)}, -tM(){var s,r=this.a,q=r.w -for(r=r.r,s=0;s359){j=c4<0?-0.001953125:0.001953125 -i=p -do{i-=j -m=Math.cos(i) -l=Math.sin(i)}while(o===m&&n===l)}}h=c4>0?0:1 -g=c0/2 -f=(c2.d-c2.b)/2 -e=c2.gaT().a+g*Math.cos(p) -d=c2.gaT().b+f*Math.sin(p) -if(o===m&&n===l){if(c5)b9.ep(0,e,d) -else b9.zy(e,d) -return}c=o*m+n*l -b=o*l-n*m -if(Math.abs(b)<=0.000244140625)if(c>0)if(!(b>=0&&h===0))c0=b<=0&&h===1 -else c0=!0 -else c0=!1 -else c0=!1 -if(c0){if(c5)b9.ep(0,e,d) -else b9.zy(e,d) -return}c0=h===1 -if(c0)b=-b -if(0===b)a=2 -else if(0===c)a=b>0?1:3 -else{r=b<0 -a=r?2:0 -if(c<0!==r)++a}a0=A.b([],t.td) -for(a1=0;a1=6.283185307179586||d<=-6.283185307179586){s=c/1.5707963267948966 -r=Math.floor(s+0.5) -if(Math.abs(s-r-0)<0.000244140625){q=r+1 -if(q<0)q+=4 -p=d>0?0:1 -this.xW(b,p,B.e.e6(q)) -return}}this.lx(0,b,c,d,!0)}, -fB(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.tM(),e=a2.a,d=a2.b,c=a2.c,b=a2.d,a=new A.w(e,d,c,b),a0=a2.e -if(a0===0||a2.f===0)if(a2.r===0||a2.w===0)if(a2.z===0||a2.Q===0)s=a2.x===0||a2.y===0 -else s=!1 -else s=!1 -else s=!1 -if(s||e>=c||d>=b)g.uz(a,0,3) -else if(A.aIe(a2))g.xW(a,0,3) -else{r=c-e -q=b-d -p=Math.max(0,a0) -o=Math.max(0,a2.r) -n=Math.max(0,a2.z) -m=Math.max(0,a2.x) -l=Math.max(0,a2.f) -k=Math.max(0,a2.w) -j=Math.max(0,a2.Q) -i=Math.max(0,a2.y) -h=A.ahF(j,i,q,A.ahF(l,k,q,A.ahF(n,m,r,A.ahF(p,o,r,1)))) -a0=b-h*j -g.ep(0,e,a0) -g.cO(0,e,d+h*l) -g.fH(0,e,d,e+h*p,d,0.707106781) -g.cO(0,c-h*o,d) -g.fH(0,c,d,c,d+h*k,0.707106781) -g.cO(0,c,b-h*i) -g.fH(0,c,b,c-h*m,b,0.707106781) -g.cO(0,e+h*n,b) -g.fH(0,e,b,e,a0,0.707106781) -g.eD(0) -g.f=f?0:-1 -e=g.a -e.ax=f -e.ch=!1 -e.CW=6}}, -A(a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this -if(a3.a.w===0)return!1 -s=a3.di(0) -r=a5.a -q=a5.b -if(rs.c||q>s.d)return!1 -p=a3.a -o=new A.a3k(p,r,q,new Float32Array(18)) -o.a8Y() -n=B.eB===a3.b -m=o.d -if((n?m&1:m)!==0)return!0 -l=o.e -if(l<=1)return B.d1.VA(l!==0,!1) -p=l&1 -if(p!==0||n)return p!==0 -k=A.aq8(a3.a,!0) -j=new Float32Array(18) -i=A.b([],t.yv) -p=k.a -h=!1 -do{g=i.length -switch(k.eq(0,j)){case 0:case 5:break -case 1:A.aIL(j,r,q,i) -break -case 2:A.aIM(j,r,q,i) -break -case 3:f=k.f -A.aIJ(j,r,q,p.y[f],i) -break -case 4:A.aIK(j,r,q,i) -break -case 6:h=!0 -break}f=i.length -if(f>g){e=f-1 -d=i[e] -c=d.a -b=d.b -if(Math.abs(c*c+b*b-0)<0.000244140625)B.c.eW(i,e) -else for(a=0;a0?1:0 -if(f<=0){f=b*a1 -if(f<0)f=-1 -else f=f>0?1:0 -f=f<=0}else f=!1}else f=!1 -if(f){a2=B.c.eW(i,e) -if(a!==i.length)i[a]=a2 -break}}}}while(!h) -return i.length!==0||!1}, -c8(a){var s,r=a.a,q=a.b,p=this.a,o=A.aCk(p,r,q),n=p.e,m=new Uint8Array(n) -B.R.mt(m,0,p.r) -o=new A.rh(o,m) -n=p.x -o.x=n -o.z=p.z -s=p.y -if(s!=null){n=new Float32Array(n) -o.y=n -B.hz.mt(n,0,s)}o.e=p.e -o.w=p.w -o.c=p.c -o.d=p.d -n=p.Q -o.Q=n -if(!n){o.a=p.a.aC(0,r,q) -n=p.b -o.b=n==null?null:n.aC(0,r,q) -o.as=p.as}o.cx=p.cx -o.at=p.at -o.ax=p.ax -o.ay=p.ay -o.ch=p.ch -o.CW=p.CW -r=new A.tj(o,B.bi) -r.H0(this) -return r}, -di(e2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0=this,e1=e0.a -if((e1.ax?e1.CW:-1)===-1)s=(e1.at?e1.CW:-1)!==-1 -else s=!0 -if(s)return e1.di(0) -if(!e1.Q&&e1.b!=null){e1=e1.b -e1.toString -return e1}r=new A.oe(e1) -r.oP(e1) -q=e0.a.f -for(p=!1,o=0,n=0,m=0,l=0,k=0,j=0,i=0,h=0,g=null,f=null,e=null;d=r.aeq(),d!==6;){c=r.e -switch(d){case 0:j=q[c] -h=q[c+1] -i=h -k=j -break -case 1:j=q[c+2] -h=q[c+3] -i=h -k=j -break -case 2:if(f==null)f=new A.a47() -b=c+1 -a=q[c] -a0=b+1 -a1=q[b] -b=a0+1 -a2=q[a0] -a0=b+1 -a3=q[b] -a4=q[a0] -a5=q[a0+1] -s=f.a=Math.min(a,a4) -a6=f.b=Math.min(a1,a5) -a7=f.c=Math.max(a,a4) -a8=f.d=Math.max(a1,a5) -a9=a-2*a2+a4 -if(Math.abs(a9)>0.000244140625){b0=(a-a2)/a9 -if(b0>=0&&b0<=1){b1=1-b0 -b2=b1*b1 -b3=2*b0*b1 -b0*=b0 -b4=b2*a+b3*a2+b0*a4 -b5=b2*a1+b3*a3+b0*a5 -s=Math.min(s,b4) -f.a=s -a7=Math.max(a7,b4) -f.c=a7 -a6=Math.min(a6,b5) -f.b=a6 -a8=Math.max(a8,b5) -f.d=a8}}a9=a1-2*a3+a5 -if(Math.abs(a9)>0.000244140625){b6=(a1-a3)/a9 -if(b6>=0&&b6<=1){b7=1-b6 -b2=b7*b7 -b3=2*b6*b7 -b6*=b6 -b8=b2*a+b3*a2+b6*a4 -b9=b2*a1+b3*a3+b6*a5 -s=Math.min(s,b8) -f.a=s -a7=Math.max(a7,b8) -f.c=a7 -a6=Math.min(a6,b9) -f.b=a6 -a8=Math.max(a8,b9) -f.d=a8}h=a8 -j=a7 -i=a6 -k=s}else{h=a8 -j=a7 -i=a6 -k=s}break -case 3:if(e==null)e=new A.W5() -s=e1.y[r.b] -b=c+1 -a=q[c] -a0=b+1 -a1=q[b] -b=a0+1 -a2=q[a0] -a0=b+1 -a3=q[b] -a4=q[a0] -a5=q[a0+1] -e.a=Math.min(a,a4) -e.b=Math.min(a1,a5) -e.c=Math.max(a,a4) -e.d=Math.max(a1,a5) -c0=new A.kl() -c1=a4-a -c2=s*(a2-a) -if(c0.kA(s*c1-c1,c1-2*c2,c2)!==0){a6=c0.a -a6.toString -if(a6>=0&&a6<=1){c3=2*(s-1) -a9=(-c3*a6+c3)*a6+1 -c4=a2*s -b4=(((a4-2*c4+a)*a6+2*(c4-a))*a6+a)/a9 -c4=a3*s -b5=(((a5-2*c4+a1)*a6+2*(c4-a1))*a6+a1)/a9 -e.a=Math.min(e.a,b4) -e.c=Math.max(e.c,b4) -e.b=Math.min(e.b,b5) -e.d=Math.max(e.d,b5)}}c5=a5-a1 -c6=s*(a3-a1) -if(c0.kA(s*c5-c5,c5-2*c6,c6)!==0){a6=c0.a -a6.toString -if(a6>=0&&a6<=1){c3=2*(s-1) -a9=(-c3*a6+c3)*a6+1 -c4=a2*s -b8=(((a4-2*c4+a)*a6+2*(c4-a))*a6+a)/a9 -c4=a3*s -b9=(((a5-2*c4+a1)*a6+2*(c4-a1))*a6+a1)/a9 -e.a=Math.min(e.a,b8) -e.c=Math.max(e.c,b8) -e.b=Math.min(e.b,b9) -e.d=Math.max(e.d,b9)}}k=e.a -i=e.b -j=e.c -h=e.d -break -case 4:if(g==null)g=new A.Wj() -b=c+1 -c7=q[c] -a0=b+1 -c8=q[b] -b=a0+1 -c9=q[a0] -a0=b+1 -d0=q[b] -b=a0+1 -d1=q[a0] -a0=b+1 -d2=q[b] -d3=q[a0] -d4=q[a0+1] -s=Math.min(c7,d3) -g.a=s -g.c=Math.min(c8,d4) -a6=Math.max(c7,d3) -g.b=a6 -g.d=Math.max(c8,d4) -if(!(c7c9&&c9>d1&&d1>d3 -else a7=!0 -if(!a7){a7=-c7 -d5=a7+3*(c9-d1)+d3 -d6=2*(c7-2*c9+d1) -d7=d6*d6-4*d5*(a7+c9) -if(d7>=0&&Math.abs(d5)>0.000244140625){a7=-d6 -a8=2*d5 -if(d7===0){d8=a7/a8 -b1=1-d8 -if(d8>=0&&d8<=1){a7=3*b1 -b4=b1*b1*b1*c7+a7*b1*d8*c9+a7*d8*d8*d1+d8*d8*d8*d3 -g.a=Math.min(b4,s) -g.b=Math.max(b4,a6)}}else{d7=Math.sqrt(d7) -d8=(a7-d7)/a8 -b1=1-d8 -if(d8>=0&&d8<=1){s=3*b1 -b4=b1*b1*b1*c7+s*b1*d8*c9+s*d8*d8*d1+d8*d8*d8*d3 -g.a=Math.min(b4,g.a) -g.b=Math.max(b4,g.b)}d8=(a7+d7)/a8 -b1=1-d8 -if(d8>=0&&d8<=1){s=3*b1 -b4=b1*b1*b1*c7+s*b1*d8*c9+s*d8*d8*d1+d8*d8*d8*d3 -g.a=Math.min(b4,g.a) -g.b=Math.max(b4,g.b)}}}}if(!(c8d0&&d0>d2&&d2>d4 -else s=!0 -if(!s){s=-c8 -d5=s+3*(d0-d2)+d4 -d6=2*(c8-2*d0+d2) -d7=d6*d6-4*d5*(s+d0) -if(d7>=0&&Math.abs(d5)>0.000244140625){s=-d6 -a6=2*d5 -if(d7===0){d8=s/a6 -b1=1-d8 -if(d8>=0&&d8<=1){s=3*b1 -b5=b1*b1*b1*c8+s*b1*d8*d0+s*d8*d8*d2+d8*d8*d8*d4 -g.c=Math.min(b5,g.c) -g.d=Math.max(b5,g.d)}}else{d7=Math.sqrt(d7) -d8=(s-d7)/a6 -b1=1-d8 -if(d8>=0&&d8<=1){a7=3*b1 -b5=b1*b1*b1*c8+a7*b1*d8*d0+a7*d8*d8*d2+d8*d8*d8*d4 -g.c=Math.min(b5,g.c) -g.d=Math.max(b5,g.d)}s=(s+d7)/a6 -b7=1-s -if(s>=0&&s<=1){a6=3*b7 -b5=b7*b7*b7*c8+a6*b7*s*d0+a6*s*s*d2+s*s*s*d4 -g.c=Math.min(b5,g.c) -g.d=Math.max(b5,g.d)}}}}k=g.a -i=g.c -j=g.b -h=g.d -break}if(!p){l=h -m=j -n=i -o=k -p=!0}else{o=Math.min(o,k) -m=Math.max(m,j) -n=Math.min(n,i) -l=Math.max(l,h)}}d9=p?new A.w(o,n,m,l):B.F -e0.a.di(0) -return e0.a.b=d9}, -i(a){var s=this.bY(0) -return s}} -A.a3j.prototype={ -y9(a){var s=this,r=s.r,q=s.x -if(r!==q||s.w!==s.y){if(isNaN(r)||isNaN(s.w)||isNaN(q)||isNaN(s.y))return 5 -a[0]=r -a[1]=s.w -a[2]=q -r=s.y -a[3]=r -s.r=q -s.w=r -return 1}else{a[0]=q -a[1]=s.y -return 5}}, -tn(){var s,r,q=this -if(q.e===1){q.e=2 -return new A.m(q.x,q.y)}s=q.a.f -r=q.Q -return new A.m(s[r-2],s[r-1])}, -eq(a,b){var s,r,q,p,o,n,m=this,l=m.z,k=m.a -if(l===k.w){if(m.d&&m.e===2){if(1===m.y9(b))return 1 -m.d=!1 -return 5}return 6}s=m.z=l+1 -r=k.r[l] -switch(r){case 0:if(m.d){m.z=s-1 -q=m.y9(b) -if(q===5)m.d=!1 -return q}if(s===m.c)return 6 -l=k.f -k=m.Q -s=m.Q=k+1 -p=l[k] -m.Q=s+1 -o=l[s] -m.x=p -m.y=o -b[0]=p -b[1]=o -m.e=1 -m.r=p -m.w=o -m.d=!0 -break -case 1:n=m.tn() -l=k.f -k=m.Q -s=m.Q=k+1 -p=l[k] -m.Q=s+1 -o=l[s] -b[0]=n.a -b[1]=n.b -b[2]=p -b[3]=o -m.r=p -m.w=o -break -case 3:++m.f -n=m.tn() -b[0]=n.a -b[1]=n.b -l=k.f -k=m.Q -s=m.Q=k+1 -b[2]=l[k] -k=m.Q=s+1 -b[3]=l[s] -s=m.Q=k+1 -k=l[k] -b[4]=k -m.r=k -m.Q=s+1 -s=l[s] -b[5]=s -m.w=s -break -case 2:n=m.tn() -b[0]=n.a -b[1]=n.b -l=k.f -k=m.Q -s=m.Q=k+1 -b[2]=l[k] -k=m.Q=s+1 -b[3]=l[s] -s=m.Q=k+1 -k=l[k] -b[4]=k -m.r=k -m.Q=s+1 -s=l[s] -b[5]=s -m.w=s -break -case 4:n=m.tn() -b[0]=n.a -b[1]=n.b -l=k.f -k=m.Q -s=m.Q=k+1 -b[2]=l[k] -k=m.Q=s+1 -b[3]=l[s] -s=m.Q=k+1 -b[4]=l[k] -k=m.Q=s+1 -b[5]=l[s] -s=m.Q=k+1 -k=l[k] -b[6]=k -m.r=k -m.Q=s+1 -s=l[s] -b[7]=s -m.w=s -break -case 5:r=m.y9(b) -if(r===1)--m.z -else{m.d=!1 -m.e=0}m.r=m.x -m.w=m.y -break -case 6:break -default:throw A.c(A.c5("Unsupport Path verb "+r,null,null))}return r}} -A.rh.prototype={ -fX(a,b,c){var s=a*2,r=this.f -r[s]=b -r[s+1]=c}, -fE(a){var s=this.f,r=a*2 -return new A.m(s[r],s[r+1])}, -rN(){var s=this -if(s.ay)return new A.w(s.fE(0).a,s.fE(0).b,s.fE(1).a,s.fE(2).b) -else return s.w===4?s.a_f():null}, -di(a){var s -if(this.Q)this.yw() -s=this.a -s.toString -return s}, -a_f(){var s,r,q,p,o,n,m=this,l=null,k=m.fE(0).a,j=m.fE(0).b,i=m.fE(1).a,h=m.fE(1).b -if(m.r[1]!==1||h!==j)return l -s=i-k -r=m.fE(2).a -q=m.fE(2).b -if(m.r[2]!==1||r!==i)return l -p=q-h -o=m.fE(3) -n=m.fE(3).b -if(m.r[3]!==1||n!==q)return l -if(r-o.a!==s||n-j!==p)return l -return new A.w(k,j,k+s,j+p)}, -Qy(){var s,r,q,p,o -if(this.w===2){s=this.r -s=s[0]!==0||s[1]!==1}else s=!0 -if(s)return null -s=this.f -r=s[0] -q=s[1] -p=s[2] -o=s[3] -if(q===o||r===p)return new A.w(r,q,p,o) -return null}, -tG(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this.di(0),f=A.b([],t.kG),e=new A.oe(this) -e.oP(this) -s=new Float32Array(8) -e.eq(0,s) -for(r=0;q=e.eq(0,s),q!==6;)if(3===q){p=s[2] -o=s[3] -n=p-s[0] -m=o-s[1] -l=s[4] -k=s[5] -if(n!==0){j=Math.abs(n) -i=Math.abs(k-o)}else{i=Math.abs(m) -j=m!==0?Math.abs(l-p):Math.abs(n)}f.push(new A.bD(j,i));++r}l=f[0] -k=f[1] -h=f[2] -return A.a48(g,f[3],h,l,k)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.rh&&this.abW(b)}, -gv(a){var s=this -return A.ct(s.cx,s.f,s.y,s.r,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -abW(a){var s,r,q,p,o,n,m,l=this -if(l.cx!==a.cx)return!1 -s=l.d -if(s!==a.d)return!1 -r=s*2 -for(q=l.f,p=a.f,o=0;oq.c){s=a+10 -q.c=s -r=new Float32Array(s*2) -B.hz.mt(r,0,q.f) -q.f=r}q.d=a}, -a6v(a){var s,r,q=this -if(a>q.e){s=a+8 -q.e=s -r=new Uint8Array(s) -B.R.mt(r,0,q.r) -q.r=r}q.w=a}, -a6t(a){var s,r,q=this -if(a>q.x){s=a+4 -q.x=s -r=new Float32Array(s) -s=q.y -if(s!=null)B.hz.mt(r,0,s) -q.y=r}q.z=a}, -yw(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.d -i.Q=!1 -i.b=null -if(h===0){i.a=B.F -i.as=!0}else{s=i.f -r=s[0] -q=s[1] -p=0*r*q -o=2*h -for(n=q,m=r,l=2;lm){l.a=m -l.b=s}else if(s===m)return 1}return o}} -A.a7Y.prototype={ -MZ(a){return(this.a*a+this.c)*a+this.e}, -N_(a){return(this.b*a+this.d)*a+this.f}} -A.a3k.prototype={ -a8Y(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.a,c=A.aq8(d,!0) -for(s=e.f,r=t.td;q=c.eq(0,s),q!==6;)switch(q){case 0:case 5:break -case 1:e.ZJ() -break -case 2:p=!A.aqa(s)?A.aCl(s):0 -o=e.GX(s[0],s[1],s[2],s[3],s[4],s[5]) -e.d+=p>0?o+e.GX(s[4],s[5],s[6],s[7],s[8],s[9]):o -break -case 3:n=d.y[c.f] -m=s[0] -l=s[1] -k=s[2] -j=s[3] -i=s[4] -h=s[5] -g=A.aqa(s) -f=A.b([],r) -new A.eY(m,l,k,j,i,h,n).aa8(f) -e.GW(f[0]) -if(!g&&f.length===2)e.GW(f[1]) -break -case 4:e.ZH() -break}}, -ZJ(){var s,r,q,p,o,n=this,m=n.f,l=m[0],k=m[1],j=m[2],i=m[3] -if(k>i){s=k -r=i -q=-1}else{s=i -r=k -q=1}m=n.c -if(ms)return -p=n.b -if(A.a3l(p,m,l,k,j,i)){++n.e -return}if(m===s)return -o=(j-l)*(m-k)-(i-k)*(p-l) -if(o===0){if(p!==j||m!==i)++n.e -q=0}else if(A.aD3(o)===q)q=0 -n.d+=q}, -GX(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k=this -if(b>f){s=b -r=f -q=-1}else{s=f -r=b -q=1}p=k.c -if(ps)return 0 -o=k.b -if(A.a3l(o,p,a,b,e,f)){++k.e -return 0}if(p===s)return 0 -n=new A.kl() -if(0===n.kA(b-2*d+f,2*(d-b),b-p))m=q===1?a:e -else{l=n.a -l.toString -m=((e-2*c+a)*l+2*(c-a))*l+a}if(Math.abs(m-o)<0.000244140625)if(o!==e||p!==f){++k.e -return 0}return mg){s=h -r=g -q=-1}else{s=g -r=h -q=1}p=i.c -if(ps)return -o=i.b -if(A.a3l(o,p,a.a,h,a.e,g)){++i.e -return}if(p===s)return -n=a.r -m=a.d*n-p*n+p -l=new A.kl() -if(0===l.kA(g+(h-2*m),2*(m-h),h-p))k=q===1?a.a:a.e -else{j=l.a -j.toString -k=A.aAl(a.a,a.c,a.e,n,j)/A.aAk(n,j)}if(Math.abs(k-o)<0.000244140625)if(o!==a.e||p!==a.f){++i.e -return}p=i.d -i.d=p+(kq){p=b -o=q -n=-1}else{p=q -o=b -n=1}m=g.c -if(mp)return -l=g.b -if(A.a3l(l,m,d,b,r,q)){++g.e -return}if(m===p)return -k=Math.min(d,Math.min(a,Math.min(s,r))) -j=Math.max(d,Math.max(a,Math.max(s,r))) -if(lj){g.d+=n -return}i=A.at9(f,a0,m) -if(i==null)return -h=A.atp(d,a,s,r,i) -if(Math.abs(h-l)<0.000244140625)if(l!==r||m!==q){++g.e -return}f=g.d -g.d=f+(h1,o=null,n=1/0,m=0;m<$.l0.length;++m){l=$.l0[m] -k=window.devicePixelRatio -j=k===0?1:k -if(l.y!==j)continue -j=l.a -i=j.c-j.a -j=j.d-j.b -h=i*j -g=c.dy -k=window.devicePixelRatio -if(l.r>=B.e.dV(s*(k===0?1:k))+2){k=window.devicePixelRatio -f=l.w>=B.e.dV(r*(k===0?1:k))+2&&l.ay===g}else f=!1 -e=h4)){if(i===b&&j===a){o=l -break}n=h -o=l}}if(o!=null){B.c.B($.l0,o) -o.sjb(0,a0) -o.b=c.fx -return o}d=A.azK(a0,c.cy.b.d,c.dy) -d.b=c.fx -return d}, -Gl(){var s=this.d.style -B.h.an(s,B.h.X(s,"transform"),"translate("+A.e(this.CW)+"px, "+A.e(this.cx)+"px)","")}, -fa(){this.Gl() -this.tj(null)}, -bq(a){this.yy(null) -this.fr=!0 -this.FE(0)}, -bc(a,b){var s,r,q=this -q.FI(0,b) -q.fx=b.fx -if(b!==q)b.fx=null -if(q.CW!==b.CW||q.cx!==b.cx)q.Gl() -q.yy(b) -if(q.cy===b.cy){s=q.ch -r=s instanceof A.jJ&&q.dy!==s.ay -if(q.fr||r)q.tj(b) -else q.ch=b.ch}else q.tj(b)}, -kT(){var s=this -s.FH() -s.yy(s) -if(s.fr)s.tj(s)}, -hl(){A.To(this.ch) -this.ch=null -this.FF()}} -A.a3o.prototype={ -$0(){var s,r=this.a,q=r.fy -q.toString -s=r.ch=r.a0k(q) -s.b=r.fx -q=r.d -q.toString -A.amq(q) -r.d.appendChild(s.c) -s.aG(0) -q=r.cy.b -q.toString -r=r.fy -r.toString -q.B7(s,r) -s.nu()}, -$S:0} -A.a4u.prototype={ -B7(a,b){var s,r,q,p,o,n,m,l,k,j -try{m=this.b -m.toString -m=A.au6(b,m) -l=this.c -k=l.length -if(m){s=k -for(r=0;rq||l>p||k>o||j>n)return -d.e=d.d.c=!0 -i=A.Ev(a6) -a6.b=!0 -h=new A.J0(a4,a5,a6.a,-1/0,-1/0,1/0,1/0) -g=A.d4() -g.sNa(B.eB) -g.fB(0,a4) -g.fB(0,a5) -g.eD(0) -h.x=g -f=Math.min(b,a0) -e=Math.max(b,a0) -d.a.mr(f-i,Math.min(a,a1)-i,e+i,Math.max(a,a1)+i,h) -d.c.push(h)}, -cp(a,b,c){var s,r,q,p,o,n,m,l,k,j=this -if(c.a.w==null){t.Ci.a(b) -s=b.a.rN() -if(s!=null){j.c9(0,s,c) -return}r=b.a -q=r.ax?r.tG():null -if(q!=null){j.cm(0,q,c) -return}}t.Ci.a(b) -if(b.a.w!==0){j.e=j.d.c=!0 -p=b.di(0) -o=A.Ev(c) -if(o!==0)p=p.hp(o) -r=b.a -n=new A.rh(r.f,r.r) -n.e=r.e -n.w=r.w -n.c=r.c -n.d=r.d -n.x=r.x -n.z=r.z -n.y=r.y -m=r.Q -n.Q=m -if(!m){n.a=r.a -n.b=r.b -n.as=r.as}n.cx=r.cx -n.at=r.at -n.ax=r.ax -n.ay=r.ay -n.ch=r.ch -n.CW=r.CW -l=new A.tj(n,B.bi) -l.H0(b) -c.b=!0 -k=new A.J4(l,c.a,-1/0,-1/0,1/0,1/0) -j.a.or(p,k) -l.b=b.b -j.c.push(k)}}, -hm(a,b,c){var s,r,q,p,o=this -t.Ak.a(b) -if(!b.f)return -o.e=!0 -s=o.d -s.c=!0 -s.b=!0 -r=c.a -q=c.b -p=new A.J3(b,c,-1/0,-1/0,1/0,1/0) -o.a.mr(r,q,r+b.gdT().c,q+b.gdT().d,p) -o.c.push(p)}} -A.cM.prototype={} -A.wt.prototype={ -qK(a){var s=this -if(s.a)return!0 -return s.ea.d||s.da.c}} -A.yt.prototype={ -be(a){a.bF(0)}, -i(a){var s=this.bY(0) -return s}} -A.J8.prototype={ -be(a){a.bt(0)}, -i(a){var s=this.bY(0) -return s}} -A.Jc.prototype={ -be(a){a.aC(0,this.a,this.b)}, -i(a){var s=this.bY(0) -return s}} -A.Ja.prototype={ -be(a){a.cP(0,this.a,this.b)}, -i(a){var s=this.bY(0) -return s}} -A.J9.prototype={ -be(a){a.hw(0,this.a)}, -i(a){var s=this.bY(0) -return s}} -A.Jb.prototype={ -be(a){a.T(0,this.a)}, -i(a){var s=this.bY(0) -return s}} -A.IZ.prototype={ -be(a){a.lE(0,this.f,this.r)}, -i(a){var s=this.bY(0) -return s}} -A.IY.prototype={ -be(a){a.lD(0,this.f)}, -i(a){var s=this.bY(0) -return s}} -A.IX.prototype={ -be(a){a.fF(0,this.f)}, -i(a){var s=this.bY(0) -return s}} -A.J2.prototype={ -be(a){a.is(0,this.f,this.r,this.w)}, -i(a){var s=this.bY(0) -return s}} -A.J6.prototype={ -be(a){a.c9(0,this.f,this.r)}, -i(a){var s=this.bY(0) -return s}} -A.J5.prototype={ -be(a){a.cm(0,this.f,this.r)}, -i(a){var s=this.bY(0) -return s}} -A.J0.prototype={ -be(a){var s=this.w -if(s.b==null)s.b=B.aq -a.cp(0,this.x,s)}, -i(a){var s=this.bY(0) -return s}} -A.J_.prototype={ -be(a){a.dZ(0,this.f,this.r,this.w)}, -i(a){var s=this.bY(0) -return s}} -A.J4.prototype={ -be(a){a.cp(0,this.f,this.r)}, -i(a){var s=this.bY(0) -return s}} -A.J7.prototype={ -be(a){a.it(0,this.f,this.r,this.w,!0)}, -i(a){var s=this.bY(0) -return s}} -A.J1.prototype={ -be(a){var s=this -a.hM(s.f,s.r,s.w,s.x)}, -i(a){var s=this.bY(0) -return s}} -A.J3.prototype={ -be(a){a.hm(0,this.f,this.r)}, -i(a){var s=this.bY(0) -return s}} -A.af8.prototype={ -lE(a,b,c){var s,r,q,p,o=this,n=b.a,m=b.b,l=b.c,k=b.d -if(!o.x){s=$.amP() -s[0]=n -s[1]=m -s[2]=l -s[3]=k -A.amz(o.y,s) -n=s[0] -m=s[1] -l=s[2] -k=s[3]}if(!o.z){o.Q=n -o.as=m -o.at=l -o.ax=k -o.z=!0 -r=k -q=l -p=m -s=n}else{s=o.Q -if(n>s){o.Q=n -s=n}p=o.as -if(m>p){o.as=m -p=m}q=o.at -if(l=q||p>=r)c.a=!0 -else{c.b=s -c.c=p -c.d=q -c.e=r}}, -or(a,b){this.mr(a.a,a.b,a.c,a.d,b)}, -mr(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this -if(a===c||b===d){e.a=!0 -return}if(!j.x){s=$.amP() -s[0]=a -s[1]=b -s[2]=c -s[3]=d -A.amz(j.y,s) -r=s[0] -q=s[1] -p=s[2] -o=s[3]}else{o=d -p=c -q=b -r=a}if(j.z){n=j.at -if(r>=n){e.a=!0 -return}m=j.Q -if(p<=m){e.a=!0 -return}l=j.ax -if(q>=l){e.a=!0 -return}k=j.as -if(o<=k){e.a=!0 -return}if(rn)p=n -if(ql)o=l}e.b=r -e.c=q -e.d=p -e.e=o -if(j.b){j.c=Math.min(Math.min(j.c,r),p) -j.e=Math.max(Math.max(j.e,r),p) -j.d=Math.min(Math.min(j.d,q),o) -j.f=Math.max(Math.max(j.f,q),o)}else{j.c=Math.min(r,p) -j.e=Math.max(r,p) -j.d=Math.min(q,o) -j.f=Math.max(q,o)}j.b=!0}, -EK(){var s=this,r=s.y,q=new A.bJ(new Float32Array(16)) -q.by(r) -s.r.push(q) -r=s.z?new A.w(s.Q,s.as,s.at,s.ax):null -s.w.push(r)}, -aap(){var s,r,q,p,o,n,m,l,k,j,i=this -if(!i.b)return B.F -s=i.a -r=s.a -if(isNaN(r))r=-1/0 -q=s.c -if(isNaN(q))q=1/0 -p=s.b -if(isNaN(p))p=-1/0 -o=s.d -if(isNaN(o))o=1/0 -s=i.c -n=i.e -m=Math.min(s,n) -l=Math.max(s,n) -n=i.d -s=i.f -k=Math.min(n,s) -j=Math.max(n,s) -if(l1;)s.pop() -t.IF.a(B.c.gJ(s)).r9(new A.a3T())}, -$S:0} -A.a90.prototype={ -$0(){var s,r,q=t.IF,p=this.a.a -if($.a8Z==null)q.a(B.c.gJ(p)).bq(0) -else{s=q.a(B.c.gJ(p)) -r=$.a8Z -r.toString -s.bc(0,r)}A.aHk(q.a(B.c.gJ(p))) -$.a8Z=q.a(B.c.gJ(p)) -return new A.tk(q.a(B.c.gJ(p)).d)}, -$S:245} -A.a2I.prototype={ -R9(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -for(s=f.d,r=f.c,q=a.a,p=f.b,o=b.a,n=0;n>>24&255)<1}, -$S:251} -A.wz.prototype={} -A.a_b.prototype={ -ab1(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e -if(h===B.eM||h===B.vJ){s=i.f -r=b.a -q=b.b -p=i.a -o=i.b -n=p.a -m=o.a -p=p.b -o=o.b -if(s!=null){l=(n+m)/2-r -k=(p+o)/2-q -s.agH(0,n-l,p-k) -p=s.b -n=s.c -s.agH(0,m-l,o-k) -j=a.createLinearGradient(p+l-r,n+k-q,s.b+l-r,s.c+k-q)}else j=a.createLinearGradient(n-r,p-q,m-r,o-q) -A.aFk(j,i.c,i.d,h===B.vJ) -return j}else{h=a.createPattern(i.Mk(b,c,!1),"no-repeat") -h.toString -return h}}, -Mk(c8,c9,d0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0=this,c1="premultipliedAlpha",c2="u_resolution",c3="m_gradient",c4="attachShader",c5="bindBuffer",c6=c8.c,c7=c8.a -c6-=c7 -s=B.e.dV(c6) -r=c8.d -q=c8.b -r-=q -p=B.e.dV(r) -if($.amd==null)$.amd=new A.ahe() -o=$.a2S -if(o==null?$.a2S="OffscreenCanvas" in window:o){o=new OffscreenCanvas(s,p) -n=null}else{o=A.vN(p,s) -o.className="gl-canvas" -n=A.aX() -m=A.aX() -l=o.style -l.position="absolute" -l.width=A.e(s/n)+"px" -l.height=A.e(p/m)+"px" -n=o -o=null}m=$.a2S -if(m==null?$.a2S="OffscreenCanvas" in window:m){o.toString -n=t.N -m=B.JZ.rH(o,"webgl2",A.aB([c1,!1],n,t.z)) -m.toString -k=new A.Hy(m) -$.a_a.b=A.z(n,t.eS) -k.dy=o -o=$.a_a}else{n.toString -o=$.iu -o=(o==null?$.iu=A.Eu():o)===1?"webgl":"webgl2" -m=t.N -o=B.b1.rH(n,o,A.aB([c1,!1],m,t.z)) -o.toString -k=new A.Hy(o) -$.a_a.b=A.z(m,t.eS) -k.dy=n -o=$.a_a}k.fr=s -k.fx=p -j=A.aCg(c0.c,c0.d) -n=$.arq -if(n==null){n=$.iu -if(n==null)n=$.iu=A.Eu() -m=A.b([],t.zz) -l=A.b([],t.fe) -i=new A.KQ(m,l,n===2,!1,new A.by("")) -i.AZ(11,"position") -i.AZ(11,"color") -i.km(14,"u_ctransform") -i.km(11,"u_scale") -i.km(11,"u_shift") -m.push(new A.oD("v_color",11,3)) -h=new A.zR("main",A.b([],t.s)) -l.push(h) -h.eB("gl_Position = ((u_ctransform * position) * u_scale) + u_shift;") -h.eB("v_color = color.zyxw;") -n=$.arq=i.bq(0)}m=c0.e -l=$.iu -if(l==null)l=$.iu=A.Eu() -g=A.b([],t.zz) -f=A.b([],t.fe) -l=l===2 -i=new A.KQ(g,f,l,!0,new A.by("")) -i.e=1 -i.AZ(11,"v_color") -i.km(9,c2) -i.km(14,c3) -e=i.Q -if(e==null)e=i.Q=new A.oD(l?"gFragColor":"gl_FragColor",11,3) -h=new A.zR("main",A.b([],t.s)) -f.push(h) -h.eB("vec4 localCoord = m_gradient * vec4(gl_FragCoord.x, u_resolution.y - gl_FragCoord.y, 0, 1);") -h.eB("float st = localCoord.x;") -h.eB(e.a+" = "+A.aGW(i,h,j,m)+" * scale + bias;") -d=i.bq(0) -c=n+"||"+d -b=J.ag(o.bi(),c) -if(b==null){a=k.LY(0,"VERTEX_SHADER",n) -a0=k.LY(0,"FRAGMENT_SHADER",d) -n=k.a -l=n.createProgram() -A.bE(n,c4,[l,a]) -A.bE(n,c4,[l,a0]) -A.bE(n,"linkProgram",[l]) -g=k.ay -if(!A.bE(n,"getProgramParameter",[l,g==null?k.ay=n.LINK_STATUS:g]))A.K(A.cv(A.bE(n,"getProgramInfoLog",[l]))) -b=new A.Hz(l) -J.cR(o.bi(),c,b)}o=k.a -n=b.a -A.bE(o,"useProgram",[n]) -l=c0.a -a1=l.a -a2=l.b -l=c0.b -a3=l.a -a4=l.b -a5=a3-a1 -a6=a4-a2 -a7=Math.sqrt(a5*a5+a6*a6) -l=a7<11920929e-14 -a8=l?0:-a6/a7 -a9=l?1:a5/a7 -b0=m!==B.eM -b1=b0?c6/2:(a1+a3)/2-c7 -b2=b0?r/2:(a2+a4)/2-q -b3=A.dM() -b3.mw(-b1,-b2,0) -b4=A.dM() -b5=b4.a -b5[0]=a9 -b5[1]=a8 -b5[4]=-a8 -b5[5]=a9 -b6=A.dM() -b6.aC(0,0.5,0) -if(a7>11920929e-14)b6.bd(0,1/a7) -c7=c0.f -if(c7!=null){c7=c7.a -b6.cP(0,1,-1) -b6.aC(0,-c8.gaT().a,-c8.gaT().b) -b6.cg(0,new A.bJ(c7)) -b6.aC(0,c8.gaT().a,c8.gaT().b) -b6.cP(0,1,-1)}b6.cg(0,b4) -b6.cg(0,b3) -j.R9(k,b) -A.bE(o,"uniformMatrix4fv",[k.mq(0,n,c3),!1,b6.a]) -A.bE(o,"uniform2f",[k.mq(0,n,c2),s,p]) -c7=$.amd -c6=0+c6 -r=0+r -if(d0){c7.MM(new A.w(0,0,c6,r),k,b,j,s,p) -c6=k.fr -b7=A.vN(k.fx,c6) -k.ML(0,b7.getContext("2d"),0,0) -b8=b7.toDataURL("image/png",null) -b7.width=0 -b7.height=0 -A.bE(o,c5,[k.gnI(),null]) -A.bE(o,c5,[k.gvR(),null]) -return b8}else{c7.MM(new A.w(0,0,c6,r),k,b,j,s,p) -b9=k.afG(j.e) -A.bE(o,c5,[k.gnI(),null]) -A.bE(o,c5,[k.gvR(),null]) -b9.toString -return b9}}} -A.KQ.prototype={ -AZ(a,b){var s=new A.oD(b,a,1) -this.b.push(s) -return s}, -km(a,b){var s=new A.oD(b,a,2) -this.b.push(s) -return s}, -Ln(a,b){var s,r,q=this,p="varying ",o=b.c -switch(o){case 0:q.as.a+="const " -break -case 1:if(q.y)s="in " -else s=q.z?p:"attribute " -q.as.a+=s -break -case 2:q.as.a+="uniform " -break -case 3:s=q.y?"out ":p -q.as.a+=s -break}s=q.as -r=s.a+=A.aDc(b.b)+" "+b.a -if(o===0)o=s.a=r+" = " -else o=r -s.a=o+";\n"}, -bq(a){var s,r,q,p,o,n=this,m=n.y -if(m)n.as.a+="#version 300 es\n" -s=n.e -if(s!=null){if(s===0)s="lowp" -else s=s===1?"mediump":"highp" -n.as.a+="precision "+s+" float;\n"}if(m&&n.Q!=null){m=n.Q -m.toString -n.Ln(n.as,m)}for(m=n.b,s=m.length,r=n.as,q=0;q=0;--r,o=m){a.toString -n=B.c.eJ(a,r)!==-1&&B.c.A(l,r) -m=s[r].d -m.toString -p.a(m) -if(!n)if(o==null)q.appendChild(m) -else q.insertBefore(m,o)}}, -a4w(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this.x,c=d.length,b=a1.x,a=b.length,a0=A.b([],t.g) -for(s=0;s=97&&q<=122))q=q>=65&&q<=90 -else q=!0 -o=!(q&&e.length>1) -if(o)n=e -else n=g -m=new A.a16(a,n,e,p).$0() -if(f.type!=="keydown")if(h.b){e=f.code -e.toString -e=e==="CapsLock" -l=e}else l=!1 -else l=!0 -if(h.b){e=f.code -e.toString -e=e==="CapsLock"}else e=!1 -if(e){h.JG(B.r,new A.a17(r,p,m),new A.a18(h,p)) -k=B.e3}else if(l){e=h.e -if(e.h(0,p)!=null){q=f.repeat -if(q===!0)k=B.Cd -else{h.c.$1(new A.h7(r,B.cs,p,m,g,!0)) -e.B(0,p) -k=B.e3}}else k=B.e3}else{if(h.e.h(0,p)==null){f.preventDefault() -return}k=B.cs}e=h.e -j=e.h(0,p) -switch(k.a){case 0:i=m -break -case 1:i=g -break -case 2:i=j -break -default:i=g}q=i==null -if(q)e.B(0,p) -else e.n(0,p,i) -$.avI().Y(0,new A.a19(h,m,a,r)) -if(o)if(!q)h.a7C(p,m,r) -else{e=h.f.B(0,p) -if(e!=null)e.$0()}e=j==null?m:j -q=k===B.cs?g:n -if(h.c.$1(new A.h7(r,k,p,e,q,!1)))f.preventDefault()}, -kB(a){var s=this,r={} -r.a=!1 -s.c=new A.a1e(r,s) -try{s.a1W(a)}finally{if(!r.a)s.c.$1(B.Cc) -s.c=null}}} -A.a1a.prototype={ -$1(a){var s=this -if(!s.a.a&&!s.b.d){s.c.$0() -s.b.a.$1(s.d.$0())}}, -$S:20} -A.a1b.prototype={ -$0(){this.a.a=!0}, -$S:0} -A.a1c.prototype={ -$0(){return new A.h7(new A.aP(this.a.a+2e6),B.cs,this.b,this.c,null,!0)}, -$S:164} -A.a1d.prototype={ -$0(){this.a.e.B(0,this.b)}, -$S:0} -A.a16.prototype={ -$0(){var s,r,q,p,o,n,m,l=this,k=l.a.a,j=k.key -j.toString -if(B.tA.ap(0,j)){j=k.key -j.toString -j=B.tA.h(0,j) -s=j==null?null:j[k.location] -s.toString -return s}j=l.b -if(j!=null){s=B.b.ac(j,0)&65535 -if(j.length===2)s+=B.b.ac(j,1)<<16>>>0 -return s>=65&&s<=90?s+97-65:s}j=l.c -if(j==="Dead"){r=k.altKey -q=k.ctrlKey -p=k.shiftKey -o=k.metaKey -k=r?1073741824:0 -j=q?268435456:0 -n=p?536870912:0 -m=o?2147483648:0 -return l.d+(k+j+n+m)+98784247808}k=B.Jc.h(0,j) -return k==null?B.b.gv(j)+98784247808:k}, -$S:67} -A.a17.prototype={ -$0(){return new A.h7(this.a,B.cs,this.b,this.c,null,!0)}, -$S:164} -A.a18.prototype={ -$0(){this.a.e.B(0,this.b)}, -$S:0} -A.a19.prototype={ -$2(a,b){var s,r,q=this -if(q.b===a)return -s=q.a -r=s.e -if(r.aaw(0,a)&&!b.$1(q.c))r.afZ(r,new A.a15(s,a,q.d))}, -$S:331} -A.a15.prototype={ -$2(a,b){var s=this.b -if(b!==s)return!1 -this.a.c.$1(new A.h7(this.c,B.cs,a,s,null,!0)) -return!0}, -$S:335} -A.a1e.prototype={ -$1(a){this.a.a=!0 -return this.b.a.$1(a)}, -$S:94} -A.a2b.prototype={} -A.UZ.prototype={ -ga8u(){return A.a(this.a,"_unsubscribe")}, -JV(a){this.a=a.pE(0,t.lG.a(this.gOy(this)))}, -m(a){var s=this -if(s.c||s.gkY()==null)return -s.c=!0 -s.a8v()}, -qj(){var s=0,r=A.S(t.H),q=this -var $async$qj=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=q.gkY()!=null?2:3 -break -case 2:s=4 -return A.U(q.iT(),$async$qj) -case 4:s=5 -return A.U(q.gkY().l4(0,-1),$async$qj) -case 5:case 3:return A.Q(null,r)}}) -return A.R($async$qj,r)}, -gji(){var s=this.gkY() -s=s==null?null:s.rM(0) -return s==null?"/":s}, -ga5(){var s=this.gkY() -return s==null?null:s.oq(0)}, -a8v(){return this.ga8u().$0()}} -A.y3.prototype={ -X4(a){var s,r=this,q=r.d -if(q==null)return -r.JV(q) -if(!r.zm(r.ga5())){s=t.z -q.iS(0,A.aB(["serialCount",0,"state",r.ga5()],s,s),"flutter",r.gji())}r.e=r.gyJ()}, -gyJ(){if(this.zm(this.ga5())){var s=this.ga5() -s.toString -return A.eg(J.ag(t.f.a(s),"serialCount"))}return 0}, -zm(a){return t.f.b(a)&&J.ag(a,"serialCount")!=null}, -t_(a,b,c){var s,r,q="_lastSeenSerialCount",p=this.d -if(p!=null){s=t.z -r=this.e -if(b){s=A.aB(["serialCount",A.a(r,q),"state",c],s,s) -a.toString -p.iS(0,s,"flutter",a)}else{r=A.a(r,q)+1 -this.e=r -s=A.aB(["serialCount",A.a(r,q),"state",c],s,s) -a.toString -p.rd(0,s,"flutter",a)}}}, -F8(a){return this.t_(a,!1,null)}, -Dq(a,b){var s,r,q,p,o=this -if(!o.zm(new A.im([],[]).jg(b.state,!0))){s=o.d -s.toString -r=new A.im([],[]).jg(b.state,!0) -q=t.z -s.iS(0,A.aB(["serialCount",A.a(o.e,"_lastSeenSerialCount")+1,"state",r],q,q),"flutter",o.gji())}o.e=o.gyJ() -s=$.aL() -r=o.gji() -q=new A.im([],[]).jg(b.state,!0) -q=q==null?null:J.ag(q,"state") -p=t.z -s.hW("flutter/navigation",B.aB.hO(new A.hc("pushRouteInformation",A.aB(["location",r,"state",q],p,p))),new A.a2l())}, -iT(){var s=0,r=A.S(t.H),q,p=this,o,n,m -var $async$iT=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:p.m(0) -if(p.b||p.d==null){s=1 -break}p.b=!0 -o=p.gyJ() -s=o>0?3:4 -break -case 3:s=5 -return A.U(p.d.l4(0,-o),$async$iT) -case 5:case 4:n=p.ga5() -n.toString -t.f.a(n) -m=p.d -m.toString -m.iS(0,J.ag(n,"state"),"flutter",p.gji()) -case 1:return A.Q(q,r)}}) -return A.R($async$iT,r)}, -gkY(){return this.d}} -A.a2l.prototype={ -$1(a){}, -$S:16} -A.zU.prototype={ -XA(a){var s,r=this,q=r.d -if(q==null)return -r.JV(q) -s=r.gji() -if(!A.al2(new A.im([],[]).jg(window.history.state,!0))){q.iS(0,A.aB(["origin",!0,"state",r.ga5()],t.N,t.z),"origin","") -r.A7(q,s,!1)}}, -t_(a,b,c){var s=this.d -if(s!=null)this.A7(s,a,!0)}, -F8(a){return this.t_(a,!1,null)}, -Dq(a,b){var s,r=this,q="flutter/navigation" -if(A.aqM(new A.im([],[]).jg(b.state,!0))){s=r.d -s.toString -r.a7a(s) -$.aL().hW(q,B.aB.hO(B.JM),new A.a7f())}else if(A.al2(new A.im([],[]).jg(b.state,!0))){s=r.f -s.toString -r.f=null -$.aL().hW(q,B.aB.hO(new A.hc("pushRoute",s)),new A.a7g())}else{r.f=r.gji() -r.d.l4(0,-1)}}, -A7(a,b,c){var s -if(b==null)b=this.gji() -s=this.e -if(c)a.iS(0,s,"flutter",b) -else a.rd(0,s,"flutter",b)}, -a7a(a){return this.A7(a,null,!1)}, -iT(){var s=0,r=A.S(t.H),q,p=this,o,n -var $async$iT=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:p.m(0) -if(p.b||p.d==null){s=1 -break}p.b=!0 -o=p.d -s=3 -return A.U(o.l4(0,-1),$async$iT) -case 3:n=p.ga5() -n.toString -o.iS(0,J.ag(t.f.a(n),"state"),"flutter",p.gji()) -case 1:return A.Q(q,r)}}) -return A.R($async$iT,r)}, -gkY(){return this.d}} -A.a7f.prototype={ -$1(a){}, -$S:16} -A.a7g.prototype={ -$1(a){}, -$S:16} -A.nV.prototype={} -A.aas.prototype={} -A.a_f.prototype={ -pE(a,b){B.b6.kj(window,"popstate",b) -return new A.a_h(this,b)}, -rM(a){var s=window.location.hash -if(s.length===0||s==="#")return"/" -return B.b.bU(s,1)}, -oq(a){return new A.im([],[]).jg(window.history.state,!0)}, -ON(a,b){var s,r -if(b.length===0){s=window.location.pathname -s.toString -r=window.location.search -r.toString -r=s+r -s=r}else s="#"+b -return s}, -rd(a,b,c,d){var s=this.ON(0,d) -window.history.pushState(new A.Rq([],[]).jP(b),c,s)}, -iS(a,b,c,d){var s=this.ON(0,d) -window.history.replaceState(new A.Rq([],[]).jP(b),c,s)}, -l4(a,b){window.history.go(b) -return this.a8W()}, -a8W(){var s=new A.a4($.a5,t.U),r=A.bx("unsubscribe") -r.b=this.pE(0,new A.a_g(r,new A.aI(s,t.h))) -return s}} -A.a_h.prototype={ -$0(){B.b6.wk(window,"popstate",this.b) -return null}, -$S:0} -A.a_g.prototype={ -$1(a){this.a.bm().$0() -this.b.eg(0)}, -$S:8} -A.Wr.prototype={ -pE(a,b){return J.awH(this.a,b)}, -rM(a){return J.ayP(this.a)}, -oq(a){return J.ayT(this.a)}, -rd(a,b,c,d){return J.az7(this.a,b,c,d)}, -iS(a,b,c,d){return J.azb(this.a,b,c,d)}, -l4(a,b){return J.ayV(this.a,b)}} -A.a3A.prototype={} -A.V9.prototype={} -A.GY.prototype={ -lz(a,b){var s,r -this.b=b -this.c=!0 -s=A.a(b,"cullRect") -r=A.b([],t.EO) -return this.a=new A.a4u(new A.af8(s,A.b([],t.Xr),A.b([],t.cA),A.dM()),r,new A.a5o())}, -gO4(){return this.c}, -vj(){var s,r=this -if(!r.c)r.lz(0,B.l4) -r.c=!1 -s=r.a -s.b=s.a.aap() -s.f=!0 -s=r.a -A.a(r.b,"cullRect") -return new A.GX(s)}} -A.GX.prototype={ -m(a){this.a=!0}} -A.Yl.prototype={ -CS(){var s=this.f -if(s!=null)A.pG(s,this.r)}, -adK(a,b){var s=this.at -if(s!=null)A.pG(new A.Yx(b,s,a),this.ax) -else b.$1(!1)}, -hW(a,b,c){var s,r,q,p,o,n,m,l,k,j="Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)",i="Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)" -if(a==="dev.flutter/channel-buffers")try{s=$.EO() -r=A.cX(b.buffer,b.byteOffset,b.byteLength) -if(r[0]===7){q=r[1] -if(q>=254)A.K(A.cv("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")) -p=2+q -o=B.z.dr(0,B.R.bG(r,2,p)) -switch(o){case"resize":if(r[p]!==12)A.K(A.cv(j)) -n=p+1 -if(r[n]<2)A.K(A.cv(j));++n -if(r[n]!==7)A.K(A.cv("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++n -m=r[n] -if(m>=254)A.K(A.cv("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++n -p=n+m -l=B.z.dr(0,B.R.bG(r,n,p)) -if(r[p]!==3)A.K(A.cv("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")) -s.Pm(0,l,b.getUint32(p+1,B.ad===$.dd())) -break -case"overflow":if(r[p]!==12)A.K(A.cv(i)) -n=p+1 -if(r[n]<2)A.K(A.cv(i));++n -if(r[n]!==7)A.K(A.cv("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++n -m=r[n] -if(m>=254)A.K(A.cv("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++n -s=n+m -B.z.dr(0,B.R.bG(r,n,s)) -s=r[s] -if(s!==1&&s!==2)A.K(A.cv("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")) -break -default:A.K(A.cv("Unrecognized method '"+o+"' sent to dev.flutter/channel-buffers"))}}else{k=A.b(B.z.dr(0,r).split("\r"),t.s) -if(k.length===3&&J.f(k[0],"resize"))s.Pm(0,k[1],A.fJ(k[2],null)) -else A.K(A.cv("Unrecognized message "+A.e(k)+" sent to dev.flutter/channel-buffers."))}}finally{c.$1(null)}else $.EO().OR(a,b,c)}, -a73(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this -switch(a){case"flutter/skia":s=B.aB.hL(b) -switch(s.a){case"Skia.setResourceCacheMaxBytes":if($.aJ()){r=A.eg(s.b) -h.gwh().toString -q=A.eQ().a -q.w=r -q.Kf()}h.fm(c,B.a4.ca([A.b([!0],t.HZ)])) -break}return -case"flutter/assets":p=B.z.dr(0,A.cX(b.buffer,0,null)) -$.ahz.dI(0,p).fp(0,new A.Yq(h,c),new A.Yr(h,c),t.P) -return -case"flutter/platform":s=B.aB.hL(b) -switch(s.a){case"SystemNavigator.pop":h.d.h(0,0).guG().qj().aV(0,new A.Ys(h,c),t.P) -return -case"HapticFeedback.vibrate":q=h.a0Q(A.bH(s.b)) -o=window.navigator -if("vibrate" in o)o.vibrate(q) -h.fm(c,B.a4.ca([!0])) -return -case u.p:n=t.a.a(s.b) -q=J.ax(n) -m=A.bH(q.h(n,"label")) -if(m==null)m="" -l=A.hs(q.h(n,"primaryColor")) -if(l==null)l=4278190080 -q=document -q.title=m -k=t.iI.a(q.querySelector("#flutterweb-theme")) -if(k==null){k=q.createElement("meta") -k.id="flutterweb-theme" -k.name="theme-color" -q.head.appendChild(k)}q=A.cm(new A.E(l>>>0)) -q.toString -k.content=q -h.fm(c,B.a4.ca([!0])) -return -case"SystemChrome.setPreferredOrientations":n=t.j.a(s.b) -$.ht.R0(n).aV(0,new A.Yt(h,c),t.P) -return -case"SystemSound.play":h.fm(c,B.a4.ca([!0])) -return -case"Clipboard.setData":q=window.navigator.clipboard!=null?new A.Gh():new A.H2() -new A.Gi(q,A.aq6()).QV(s,c) -return -case"Clipboard.getData":q=window.navigator.clipboard!=null?new A.Gh():new A.H2() -new A.Gi(q,A.aq6()).Q3(c) -return}break -case"flutter/service_worker":q=window -j=document.createEvent("Event") -j.initEvent("flutter-first-frame",!0,!0) -q.dispatchEvent(j) -return -case"flutter/textinput":q=$.an4() -q.gpQ(q).ad4(b,c) -return -case"flutter/mousecursor":s=B.ci.hL(b) -n=t.f.a(s.b) -switch(s.a){case"activateSystemCursor":$.akM.toString -q=A.bH(J.ag(n,"kind")) -i=$.ht.y -i.toString -q=B.Jx.h(0,q) -A.d2(i,"cursor",q==null?"default":q) -break}return -case"flutter/web_test_e2e":h.fm(c,B.a4.ca([A.aGb(B.aB,b)])) -return -case"flutter/platform_views":q=h.cy -if(q==null)q=h.cy=new A.a3E($.pL(),new A.Yu()) -c.toString -q.acV(b,c) -return -case"flutter/accessibility":$.awa().acO(B.bs,b) -h.fm(c,B.bs.ca(!0)) -return -case"flutter/navigation":h.d.h(0,0).Cy(b).aV(0,new A.Yv(h,c),t.P) -h.R8="/" -return}q=$.au3 -if(q!=null){q.$3(a,b,c) -return}h.fm(c,null)}, -a0Q(a){switch(a){case"HapticFeedbackType.lightImpact":return 10 -case"HapticFeedbackType.mediumImpact":return 20 -case"HapticFeedbackType.heavyImpact":return 30 -case"HapticFeedbackType.selectionClick":return 10 -default:return 50}}, -iZ(){var s=$.au9 -if(s==null)throw A.c(A.cv("scheduleFrameCallback must be initialized first.")) -s.$0()}, -ag0(a,b){if($.aJ()){A.att() -A.atu() -t.h_.a(a) -this.gwh().abA(a.a)}else{t._P.a(a) -$.ht.Pf(a.a)}A.aHS()}, -Yr(){var s,r=new (window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver)(A.fj(A.aGV(new A.Yo(this),t.j,t._O),2)) -this.fx=r -s=document.documentElement -s.toString -B.JQ.aev(r,s,A.b(["style"],t.s),!0) -$.hu.push(new A.Yp(this))}, -L_(a){var s=this,r=s.a -if(r.d!==a){s.a=r.aaH(a) -A.pG(null,null) -A.pG(s.k2,s.k3)}}, -Ym(){var s,r=this,q=r.id -r.L_(q.matches?B.a3:B.ac) -s=new A.Ym(r) -r.k1=s -B.tK.a2(q,s) -$.hu.push(new A.Yn(r))}, -gBK(){var s=this.R8 -return s==null?this.R8=this.d.h(0,0).guG().gji():s}, -gwh(){var s=this.RG -if(s===$)s=this.RG=$.aJ()?new A.a4a(new A.W4(),A.b([],t.b)):null -return s}, -fm(a,b){A.Hv(B.r,t.H).aV(0,new A.Yy(a,b),t.P)}} -A.Yx.prototype={ -$0(){return this.a.$1(this.b.$1(this.c))}, -$S:0} -A.Yw.prototype={ -$1(a){this.a.ro(this.b,a)}, -$S:16} -A.Yq.prototype={ -$1(a){this.a.fm(this.b,a)}, -$S:345} -A.Yr.prototype={ -$1(a){$.bV().$1("Error while trying to load an asset: "+A.e(a)) -this.a.fm(this.b,null)}, -$S:7} -A.Ys.prototype={ -$1(a){this.a.fm(this.b,B.a4.ca([!0]))}, -$S:20} -A.Yt.prototype={ -$1(a){this.a.fm(this.b,B.a4.ca([a]))}, -$S:97} -A.Yu.prototype={ -$1(a){$.ht.y.appendChild(a)}, -$S:376} -A.Yv.prototype={ -$1(a){var s=this.b -if(a)this.a.fm(s,B.a4.ca([!0])) -else if(s!=null)s.$1(null)}, -$S:97} -A.Yo.prototype={ -$2(a,b){var s,r,q,p,o,n,m -for(s=J.av(a),r=t.BZ,q=this.a;s.t();){p=r.a(s.gH(s)) -if(p.type==="attributes"&&p.attributeName==="style"){o=document.documentElement -o.toString -n=A.aIp(o) -m=(n==null?16:n)/16 -o=q.a -if(o.e!==m){q.a=o.uZ(m) -A.pG(null,null) -A.pG(q.fy,q.go)}}}}, -$S:384} -A.Yp.prototype={ -$0(){var s=this.a,r=s.fx -if(r!=null)r.disconnect() -s.fx=null}, -$S:0} -A.Ym.prototype={ -$1(a){var s=t.oh.a(a).matches -s.toString -s=s?B.a3:B.ac -this.a.L_(s)}, -$S:8} -A.Yn.prototype={ -$0(){var s=this.a -B.tK.K(s.id,s.k1) -s.k1=null}, -$S:0} -A.Yy.prototype={ -$1(a){var s=this.a -if(s!=null)s.$1(this.b)}, -$S:20} -A.aj6.prototype={ -$0(){this.a.$2(this.b,this.c)}, -$S:0} -A.aj7.prototype={ -$0(){var s=this -s.a.$3(s.b,s.c,s.d)}, -$S:0} -A.a3C.prototype={ -afM(a,b,c){var s=this.a -if(s.ap(0,a))return!1 -s.n(0,a,b) -this.c.E(0,a) -return!0}, -ag1(a,b,c){this.d.n(0,b,a) -return this.b.bs(0,b,new A.a3D(this,"flt-pv-slot-"+b,a,b,c))}, -a6M(a){var s,r,q -if(a==null)return -s=$.bU() -if(s!==B.N){J.ca(a) -return}r="tombstone-"+A.e(a.getAttribute("slot")) -q=document.createElement("slot") -s=q.style -s.display="none" -q.setAttribute("name",r) -$.ht.z.kp(0,q) -a.setAttribute("slot",r) -J.ca(a) -J.ca(q)}, -qK(a){var s=this.d.h(0,a) -return s!=null&&this.c.A(0,s)}} -A.a3D.prototype={ -$0(){var s,r,q,p,o=this,n=document.createElement("flt-platform-view") -n.setAttribute("slot",o.b) -s=o.c -r=o.a.a.h(0,s) -r.toString -q=A.bx("content") -p=o.d -if(t.pW.b(r))q.b=r.$2$params(p,o.e) -else q.b=t.BP.a(r).$1(p) -r=q.bm() -if(r.style.height.length===0){$.bV().$1("Height of Platform View type: ["+s+"] may not be set. Defaulting to `height: 100%`.\nSet `style.height` to any appropriate value to stop this message.") -p=r.style -p.height="100%"}if(r.style.width.length===0){$.bV().$1("Width of Platform View type: ["+s+"] may not be set. Defaulting to `width: 100%`.\nSet `style.width` to any appropriate value to stop this message.") -s=r.style -s.width="100%"}n.appendChild(q.bm()) -return n}, -$S:389} -A.a3E.prototype={ -a_3(a,b){var s=t.f.a(a.b),r=J.ax(s),q=A.eg(r.h(s,"id")),p=A.bk(r.h(s,"viewType")) -r=this.b -if(!r.a.ap(0,p)){b.$1(B.ci.lN("unregistered_view_type","unregistered view type: "+p,"trying to create a view with an unregistered type")) -return}if(r.b.ap(0,q)){b.$1(B.ci.lN("recreating_view","view id: "+q,"trying to create an already created view")) -return}this.c.$1(r.ag1(p,q,s)) -b.$1(B.ci.qg(null))}, -acV(a,b){var s,r=B.ci.hL(a) -switch(r.a){case"create":this.a_3(r,b) -return -case"dispose":s=this.b -s.a6M(s.b.B(0,A.eg(r.b))) -b.$1(B.ci.qg(null)) -return}b.$1(null)}} -A.Jx.prototype={ -ZU(){var s,r=this -if("PointerEvent" in window){s=new A.afb(A.z(t.S,t.ZW),r.a,r.gzO(),r.c) -s.ox() -return s}if("TouchEvent" in window){s=new A.agT(A.aK(t.S),r.a,r.gzO(),r.c) -s.ox() -return s}if("MouseEvent" in window){s=new A.aeR(new A.p6(),r.a,r.gzO(),r.c) -s.ox() -return s}throw A.c(A.N("This browser does not support pointer, touch, or mouse events."))}, -a54(a){var s=A.b(a.slice(0),A.af(a)),r=$.aL() -A.Tx(r.Q,r.as,new A.yI(s))}} -A.a3Q.prototype={ -i(a){return"pointers:"+("PointerEvent" in window)+", touch:"+("TouchEvent" in window)+", mouse:"+("MouseEvent" in window)}} -A.abd.prototype={ -AY(a,b,c,d){var s=new A.abe(this,d,c) -$.aEk.n(0,b,s) -B.b6.kk(window,b,s,!0)}, -kj(a,b,c){return this.AY(a,b,c,!1)}} -A.abe.prototype={ -$1(a){var s -if(!this.b&&!this.a.a.contains(t.ZR.a(J.anP(a))))return null -s=$.e0 -if((s==null?$.e0=A.lo():s).P2(a))this.c.$1(a)}, -$S:34} -A.Sm.prototype={ -Ga(a){var s=A.aHv(A.aB(["passive",!1],t.N,t.X)),r=A.fi(new A.ahf(a)) -$.aEl.n(0,"wheel",r) -A.bE(this.a,"addEventListener",["wheel",r,s])}, -Il(a){var s,r,q,p,o,n,m,l,k,j,i,h -t.V6.a(a) -s=B.lD.gabj(a) -r=B.lD.gabk(a) -switch(B.lD.gabi(a)){case 1:q=$.asi -if(q==null){q=document -p=q.createElement("div") -o=p.style -o.fontSize="initial" -o.display="none" -q.body.appendChild(p) -n=B.mT.El(p).fontSize -if(B.b.A(n,"px"))m=A.aql(A.fM(n,"px","")) -else m=null -B.mT.bw(p) -q=$.asi=m==null?16:m/4}s*=q -r*=q -break -case 2:q=$.bW() -s*=q.gkO().a -r*=q.gkO().b -break -case 0:default:break}l=A.b([],t.v) -q=a.timeStamp -q.toString -q=A.tN(q) -o=a.clientX -a.clientY -k=$.bW() -j=k.w -if(j==null)j=A.aX() -a.clientX -i=a.clientY -k=k.w -if(k==null)k=A.aX() -h=a.buttons -h.toString -this.c.aaz(l,h,B.dq,-1,B.bD,o*j,i*k,1,1,0,s,r,B.Ko,q) -this.b.$1(l) -if(a.getModifierState("Control")){q=$.ej() -if(q!==B.bg)q=q!==B.aJ -else q=!1}else q=!1 -if(q)return -a.preventDefault()}} -A.ahf.prototype={ -$1(a){return this.a.$1(a)}, -$S:34} -A.kS.prototype={ -i(a){return A.C(this).i(0)+"(change: "+this.a.i(0)+", buttons: "+this.b+")"}} -A.p6.prototype={ -EE(a,b){var s -if(this.a!==0)return this.wV(b) -s=(b===0&&a>-1?A.aHp(a):b)&1073741823 -this.a=s -return new A.kS(B.uP,s)}, -wV(a){var s=a&1073741823,r=this.a -if(r===0&&s!==0)return new A.kS(B.dq,r) -this.a=s -return new A.kS(s===0?B.dq:B.dr,s)}, -rQ(a){if(this.a!==0&&(a&1073741823)===0){this.a=0 -return new A.kS(B.l1,0)}return null}, -EG(a){var s -if(this.a===0)return null -s=this.a=(a==null?0:a)&1073741823 -if(s===0)return new A.kS(B.l1,s) -else return new A.kS(B.dr,s)}} -A.afb.prototype={ -HA(a){return this.d.bs(0,a,new A.afd())}, -Jt(a){if(a.pointerType==="touch")this.d.B(0,a.pointerId)}, -xX(a,b,c){this.AY(0,a,new A.afc(b),c)}, -G8(a,b){return this.xX(a,b,!1)}, -ox(){var s=this -s.G8("pointerdown",new A.afe(s)) -s.xX("pointermove",new A.aff(s),!0) -s.xX("pointerup",new A.afg(s),!0) -s.G8("pointercancel",new A.afh(s)) -s.Ga(new A.afi(s))}, -h4(a,b,c){var s,r,q,p,o,n,m,l,k,j=c.pointerType -j.toString -s=this.Ji(j) -j=c.tiltX -j.toString -r=c.tiltY -r.toString -if(!(Math.abs(j)>Math.abs(r)))j=r -r=c.timeStamp -r.toString -q=A.tN(r) -p=c.pressure -r=this.pb(c) -o=c.clientX -c.clientY -n=$.bW() -m=n.w -if(m==null)m=A.aX() -c.clientX -l=c.clientY -n=n.w -if(n==null)n=A.aX() -k=p==null?0:p -this.c.aay(a,b.b,b.a,r,s,o*m,l*n,k,1,0,B.cG,j/180*3.141592653589793,q)}, -a02(a){var s -if("getCoalescedEvents" in a){s=J.pM(a.getCoalescedEvents(),t.qL) -if(!s.gS(s))return s}return A.b([a],t.Y2)}, -Ji(a){switch(a){case"mouse":return B.bD -case"pen":return B.eC -case"touch":return B.bC -default:return B.l2}}, -pb(a){var s=a.pointerType -s.toString -if(this.Ji(s)===B.bD)s=-1 -else{s=a.pointerId -s.toString}return s}} -A.afd.prototype={ -$0(){return new A.p6()}, -$S:393} -A.afc.prototype={ -$1(a){return this.a.$1(t.qL.a(a))}, -$S:34} -A.afe.prototype={ -$1(a){var s,r,q=this.a,p=q.pb(a),o=A.b([],t.v),n=q.HA(p),m=a.buttons -m.toString -s=n.rQ(m) -if(s!=null)q.h4(o,s,a) -m=a.button -r=a.buttons -r.toString -q.h4(o,n.EE(m,r),a) -q.b.$1(o)}, -$S:57} -A.aff.prototype={ -$1(a){var s,r,q,p,o=this.a,n=o.HA(o.pb(a)),m=A.b([],t.v) -for(s=J.av(o.a02(a));s.t();){r=s.gH(s) -q=r.buttons -q.toString -p=n.rQ(q) -if(p!=null)o.h4(m,p,r) -q=r.buttons -q.toString -o.h4(m,n.wV(q),r)}o.b.$1(m)}, -$S:57} -A.afg.prototype={ -$1(a){var s,r=this.a,q=r.pb(a),p=A.b([],t.v),o=r.d.h(0,q) -o.toString -s=o.EG(a.buttons) -r.Jt(a) -if(s!=null){r.h4(p,s,a) -r.b.$1(p)}}, -$S:57} -A.afh.prototype={ -$1(a){var s=this.a,r=s.pb(a),q=A.b([],t.v),p=s.d.h(0,r) -p.toString -p.a=0 -s.Jt(a) -s.h4(q,new A.kS(B.l_,0),a) -s.b.$1(q)}, -$S:57} -A.afi.prototype={ -$1(a){this.a.Il(a)}, -$S:8} -A.agT.prototype={ -ti(a,b){this.kj(0,a,new A.agU(b))}, -ox(){var s=this -s.ti("touchstart",new A.agV(s)) -s.ti("touchmove",new A.agW(s)) -s.ti("touchend",new A.agX(s)) -s.ti("touchcancel",new A.agY(s))}, -tp(a,b,c,d,e){var s,r,q,p,o,n=e.identifier -n.toString -s=B.e.aI(e.clientX) -B.e.aI(e.clientY) -r=$.bW() -q=r.w -if(q==null)q=A.aX() -B.e.aI(e.clientX) -p=B.e.aI(e.clientY) -r=r.w -if(r==null)r=A.aX() -o=c?1:0 -this.c.M4(b,o,a,n,B.bC,s*q,p*r,1,1,0,B.cG,d)}} -A.agU.prototype={ -$1(a){return this.a.$1(t.wv.a(a))}, -$S:34} -A.agV.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k=a.timeStamp -k.toString -s=A.tN(k) -r=A.b([],t.v) -for(k=a.changedTouches,q=k.length,p=this.a,o=p.d,n=0;nq){r.d=q+1 -r=$.aL() -A.mK(r.p3,r.p4,this.b.go,B.v4,null)}else if(sq){s=s.b -s.toString -if((s&32)!==0||(s&16)!==0){s=$.aL() -A.mK(s.p3,s.p4,p,B.du,n)}else{s=$.aL() -A.mK(s.p3,s.p4,p,B.dw,n)}}else{s=s.b -s.toString -if((s&32)!==0||(s&16)!==0){s=$.aL() -A.mK(s.p3,s.p4,p,B.dv,n)}else{s=$.aL() -A.mK(s.p3,s.p4,p,B.dx,n)}}}}, -jN(a){var s,r,q,p=this -if(p.d==null){s=p.b -r=s.k1 -q=r.style -B.h.an(q,B.h.X(q,"touch-action"),"none","") -p.HM() -s=s.id -s.d.push(new A.a6y(p)) -q=new A.a6z(p) -p.c=q -s.Q.push(q) -q=new A.a6A(p) -p.d=q -J.iA(r,"scroll",q)}}, -gHl(){var s=this.b,r=s.b -r.toString -r=(r&32)!==0||(r&16)!==0 -s=s.k1 -if(r)return B.e.aI(s.scrollTop) -else return B.e.aI(s.scrollLeft)}, -IX(){var s=this.b,r=s.k1,q=s.b -q.toString -if((q&32)!==0||(q&16)!==0){r.scrollTop=10 -s.p1=this.e=B.e.aI(r.scrollTop) -s.p2=0}else{r.scrollLeft=10 -q=B.e.aI(r.scrollLeft) -this.e=q -s.p1=0 -s.p2=q}}, -HM(){var s="overflow-y",r="overflow-x",q=this.b,p=q.k1 -switch(q.id.y.a){case 1:q=q.b -q.toString -if((q&32)!==0||(q&16)!==0){q=p.style -B.h.an(q,B.h.X(q,s),"scroll","")}else{q=p.style -B.h.an(q,B.h.X(q,r),"scroll","")}break -case 0:q=q.b -q.toString -if((q&32)!==0||(q&16)!==0){q=p.style -B.h.an(q,B.h.X(q,s),"hidden","")}else{q=p.style -B.h.an(q,B.h.X(q,r),"hidden","")}break}}, -m(a){var s,r=this,q=r.b,p=q.k1,o=p.style -o.removeProperty("overflowY") -o.removeProperty("overflowX") -o.removeProperty("touch-action") -s=r.d -if(s!=null)J.anZ(p,"scroll",s) -B.c.B(q.id.Q,r.c) -r.c=null}} -A.a6y.prototype={ -$0(){this.a.IX()}, -$S:0} -A.a6z.prototype={ -$1(a){this.a.HM()}, -$S:125} -A.a6A.prototype={ -$1(a){this.a.a65()}, -$S:8} -A.a70.prototype={} -A.KO.prototype={} -A.hj.prototype={ -i(a){return"Role."+this.b}} -A.aif.prototype={ -$1(a){return A.aBy(a)}, -$S:171} -A.aig.prototype={ -$1(a){return new A.rG(a)}, -$S:172} -A.aih.prototype={ -$1(a){return new A.r1(a)}, -$S:173} -A.aii.prototype={ -$1(a){return new A.tp(a)}, -$S:174} -A.aij.prototype={ -$1(a){var s,r,q,p="editableElement",o=new A.tw(a),n=(a.a&524288)!==0?document.createElement("textarea"):A.a0w() -A.c9($,p) -o.c=n -s=A.a(n,p) -s.spellcheck=!1 -s.setAttribute("autocorrect","off") -s.setAttribute("autocomplete","off") -s.setAttribute("data-semantics-role","text-field") -s=A.a(n,p).style -s.position="absolute" -s.top="0" -s.left="0" -r=a.y -q=r.c -r=r.a -s.width=A.e(q-r)+"px" -r=a.y -q=r.d -r=r.b -s.height=A.e(q-r)+"px" -a.k1.appendChild(A.a(n,p)) -n=$.bU() -switch(n.a){case 0:case 5:case 3:case 4:case 2:case 6:o.Iu() -break -case 1:o.a3Y() -break}return o}, -$S:175} -A.aik.prototype={ -$1(a){return new A.q0(A.aFx(a),a)}, -$S:176} -A.ail.prototype={ -$1(a){return new A.qL(a)}, -$S:177} -A.aim.prototype={ -$1(a){return new A.r3(a)}, -$S:179} -A.fA.prototype={} -A.cE.prototype={ -xR(a,b){var s=this.k1,r=s.style -r.position="absolute" -if(this.go===0){r=$.bL -if(r==null)r=$.bL=new A.du(self.window.flutterConfiguration) -r=!r.gno(r)}else r=!1 -if(r){r=s.style -B.h.an(r,B.h.X(r,"filter"),"opacity(0%)","") -r=s.style -r.color="rgba(0,0,0,0)"}r=$.bL -if(r==null)r=$.bL=new A.du(self.window.flutterConfiguration) -if(r.gno(r)){s=s.style -s.outline="1px solid green"}}, -Ey(){var s,r=this -if(r.k3==null){s=A.cz("flt-semantics-container",null) -r.k3=s -s=s.style -s.position="absolute" -s=r.k3 -s.toString -r.k1.appendChild(s)}return r.k3}, -gO8(){var s,r=this.a -if((r&16384)!==0){s=this.b -s.toString -r=(s&1)===0&&(r&8)===0}else r=!1 -return r}, -MQ(){var s=this.a -if((s&64)!==0)if((s&128)!==0)return B.Bi -else return B.fG -else return B.Bh}, -fW(a,b){var s -if(b)this.k1.setAttribute("role",a) -else{s=this.k1 -if(s.getAttribute("role")===a)s.removeAttribute("role")}}, -kg(a,b){var s=this.ok,r=s.h(0,a) -if(b){if(r==null){r=$.avT().h(0,a).$1(this) -s.n(0,a,r)}r.jN(0)}else if(r!=null){r.m(0) -s.B(0,a)}}, -P4(){var s,r,q,p,o,n,m,l,k,j=this,i=j.k1,h=i.style,g=j.y,f=g.c -g=g.a -h.width=A.e(f-g)+"px" -g=j.y -f=g.d -g=g.b -h.height=A.e(f-g)+"px" -h=j.dy -s=h!=null&&!B.eA.gS(h)?j.Ey():null -h=j.y -r=h.b===0&&h.a===0 -q=j.dx -h=q==null -p=h||A.aju(q)===B.vK -if(r&&p&&j.p1===0&&j.p2===0){A.a6U(i) -if(s!=null)A.a6U(s) -return}o=A.bx("effectiveTransform") -if(!r)if(h){h=j.y -n=h.a -m=h.b -h=A.dM() -h.mw(n,m,0) -o.b=h -l=n===0&&m===0}else{h=new A.bJ(new Float32Array(16)) -h.by(new A.bJ(q)) -g=j.y -h.E2(0,g.a,g.b,0) -o.b=h -l=J.ayY(o.bm())}else if(!p){o.b=new A.bJ(q) -l=!1}else l=!0 -if(!l){i=i.style -B.h.an(i,B.h.X(i,"transform-origin"),"0 0 0","") -h=A.hw(o.bm().a) -B.h.an(i,B.h.X(i,"transform"),h,"")}else A.a6U(i) -if(s!=null)if(!r||j.p1!==0||j.p2!==0){i=j.y -h=i.a -g=j.p2 -i=i.b -f=j.p1 -k=s.style -k.top=A.e(-i+f)+"px" -k.left=A.e(-h+g)+"px"}else A.a6U(s)}, -a8w(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2="flt-semantics",a3=a1.dy -if(a3==null||a3.length===0){s=a1.p3 -if(s==null||s.length===0){a1.p3=a3 -return}r=s.length -for(a3=a1.id,s=a3.a,q=0;q=0;--q){a0=a1.dy[q] -p=s.h(0,a0) -if(p==null){p=new A.cE(a0,a3,A.cz(a2,null),A.z(n,m)) -p.xR(a0,a3) -s.n(0,a0,p)}if(!B.c.A(b,a0)){l=p.k1 -if(a==null)o.appendChild(l) -else o.insertBefore(l,a) -p.k4=a1 -a3.b.n(0,p.go,a1)}a=p.k1}a1.p3=a1.dy}, -i(a){var s=this.bY(0) -return s}} -A.EY.prototype={ -i(a){return"AccessibilityMode."+this.b}} -A.lr.prototype={ -i(a){return"GestureMode."+this.b}} -A.Yz.prototype={ -Wf(){$.hu.push(new A.YA(this))}, -a0c(){var s,r,q,p,o,n,m,l=this -for(s=l.c,r=s.length,q=l.a,p=0;p>>0}l=m.cx -if(k.ax!==l){k.ax=l -k.k2=(k.k2|4096)>>>0}l=m.cy -if(k.ay!==l){k.ay=l -k.k2=(k.k2|4096)>>>0}l=m.ax -if(k.z!==l){k.z=l -k.k2=(k.k2|1024)>>>0}l=m.ay -if(k.Q!==l){k.Q=l -k.k2=(k.k2|1024)>>>0}l=m.at -if(!J.f(k.y,l)){k.y=l -k.k2=(k.k2|512)>>>0}l=m.go -if(k.dx!==l){k.dx=l -k.k2=(k.k2|65536)>>>0}l=m.z -if(k.r!==l){k.r=l -k.k2=(k.k2|64)>>>0}l=k.b -j=m.c -if(l!==j){k.b=j -k.k2=(k.k2|2)>>>0 -l=j}j=m.f -if(k.c!==j){k.c=j -k.k2=(k.k2|4)>>>0}j=m.r -if(k.d!==j){k.d=j -k.k2=(k.k2|8)>>>0}j=m.x -if(k.e!==j){k.e=j -k.k2=(k.k2|16)>>>0}j=m.y -if(k.f!==j){k.f=j -k.k2=(k.k2|32)>>>0}j=m.Q -if(k.w!==j){k.w=j -k.k2=(k.k2|128)>>>0}j=m.as -if(k.x!==j){k.x=j -k.k2=(k.k2|256)>>>0}j=m.ch -if(k.as!==j){k.as=j -k.k2=(k.k2|2048)>>>0}j=m.CW -if(k.at!==j){k.at=j -k.k2=(k.k2|2048)>>>0}j=m.db -if(k.ch!==j){k.ch=j -k.k2=(k.k2|8192)>>>0}j=m.dx -if(k.CW!==j){k.CW=j -k.k2=(k.k2|8192)>>>0}j=m.dy -if(k.cx!==j){k.cx=j -k.k2=(k.k2|16384)>>>0}j=m.fr -if(k.cy!==j){k.cy=j -k.k2=(k.k2|16384)>>>0}j=m.fy -if(k.db!=j){k.db=j -k.k2=(k.k2|32768)>>>0}j=m.k1 -if(k.fr!==j){k.fr=j -k.k2=(k.k2|1048576)>>>0}j=m.id -if(k.dy!==j){k.dy=j -k.k2=(k.k2|524288)>>>0}j=m.k2 -if(k.fx!==j){k.fx=j -k.k2=(k.k2|2097152)>>>0}j=k.z -if(!(j!=null&&j.length!==0)){j=k.ax -if(!(j!=null&&j.length!==0))j=!1 -else j=!0}else j=!0 -if(j){j=k.a -if((j&16)===0){if((j&16384)!==0){l.toString -l=(l&1)===0&&(j&8)===0}else l=!1 -l=!l}else l=!1}else l=!1 -k.kg(B.uT,l) -k.kg(B.uV,(k.a&16)!==0) -l=k.b -l.toString -k.kg(B.uU,((l&1)!==0||(k.a&8)!==0)&&(k.a&16)===0) -l=k.b -l.toString -k.kg(B.uR,(l&64)!==0||(l&128)!==0) -l=k.b -l.toString -k.kg(B.uS,(l&32)!==0||(l&16)!==0||(l&4)!==0||(l&8)!==0) -l=k.a -k.kg(B.uW,(l&1)!==0||(l&65536)!==0) -l=k.a -if((l&16384)!==0){j=k.b -j.toString -l=(j&1)===0&&(l&8)===0}else l=!1 -k.kg(B.uX,l) -l=k.a -k.kg(B.uY,(l&32768)!==0&&(l&8192)===0) -k.a8w() -l=k.k2 -if((l&512)!==0||(l&65536)!==0||(l&64)!==0)k.P4() -k.k2=0}if(i.e==null){s=q.h(0,0).k1 -i.e=s -$.ht.r.appendChild(s)}i.a0c()}} -A.YA.prototype={ -$0(){var s=this.a.e -if(s!=null)J.ca(s)}, -$S:0} -A.YC.prototype={ -$0(){return new A.df(Date.now(),!1)}, -$S:158} -A.YB.prototype={ -$0(){var s=this.a -if(s.y===B.co)return -s.y=B.co -s.IY()}, -$S:0} -A.qn.prototype={ -i(a){return"EnabledState."+this.b}} -A.a6Q.prototype={} -A.a6M.prototype={ -Rc(a){if(!this.gO9())return!0 -else return this.wA(a)}} -A.WI.prototype={ -gO9(){return this.a!=null}, -wA(a){var s,r -if(this.a==null)return!0 -s=$.e0 -if((s==null?$.e0=A.lo():s).w)return!0 -if(!J.eD(B.Lr.a,a.type))return!0 -s=J.anP(a) -r=this.a -if(s==null?r!=null:s!==r)return!0 -s=$.e0;(s==null?$.e0=A.lo():s).sx3(!0) -this.m(0) -return!1}, -OM(){var s,r=this.a=A.cz("flt-semantics-placeholder",null) -J.EQ(r,"click",new A.WJ(this),!0) -r.setAttribute("role","button") -r.setAttribute("aria-live","polite") -r.setAttribute("tabindex","0") -r.setAttribute("aria-label","Enable accessibility") -s=r.style -s.position="absolute" -s.left="-1px" -s.top="-1px" -s.width="1px" -s.height="1px" -return r}, -m(a){var s=this.a -if(s!=null)J.ca(s) -this.a=null}} -A.WJ.prototype={ -$1(a){this.a.wA(a)}, -$S:8} -A.a25.prototype={ -gO9(){return this.b!=null}, -wA(a){var s,r,q,p,o,n,m,l,k,j=this -if(j.b==null)return!0 -if(j.d){s=$.bU() -if(s===B.N){s=a.type -r=s==="touchend"||s==="pointerup"||s==="click"}else r=!0 -if(r)j.m(0) -return!0}s=$.e0 -if((s==null?$.e0=A.lo():s).w)return!0 -if(++j.c>=20)return j.d=!0 -if(!J.eD(B.Lo.a,a.type))return!0 -if(j.a!=null)return!1 -switch(a.type){case"click":q=J.anM(t.Tl.a(a)) -break -case"touchstart":case"touchend":s=t.wv.a(a).changedTouches -s.toString -s=B.dA.gJ(s) -q=new A.fx(B.e.aI(s.clientX),B.e.aI(s.clientY),t.i6) -break -case"pointerdown":case"pointerup":t.qL.a(a) -q=new A.fx(a.clientX,a.clientY,t.i6) -break -default:return!0}p=j.b.getBoundingClientRect() -s=p.left -s.toString -o=p.right -o.toString -n=p.top -n.toString -m=p.bottom -m.toString -l=q.a-(s+(o-s)/2) -k=q.b-(n+(m-n)/2) -if(l*l+k*k<1&&!0){j.d=!0 -j.a=A.bN(B.cn,new A.a27(j)) -return!1}return!0}, -OM(){var s,r=this.b=A.cz("flt-semantics-placeholder",null) -J.EQ(r,"click",new A.a26(this),!0) -r.setAttribute("role","button") -r.setAttribute("aria-label","Enable accessibility") -s=r.style -s.position="absolute" -s.left="0" -s.top="0" -s.right="0" -s.bottom="0" -return r}, -m(a){var s=this.b -if(s!=null)J.ca(s) -this.a=this.b=null}} -A.a27.prototype={ -$0(){this.a.m(0) -var s=$.e0;(s==null?$.e0=A.lo():s).sx3(!0)}, -$S:0} -A.a26.prototype={ -$1(a){this.a.wA(a)}, -$S:8} -A.tp.prototype={ -jN(a){var s,r=this,q=r.b,p=q.k1 -p.tabIndex=0 -q.fW("button",(q.a&8)!==0) -if(q.MQ()===B.fG&&(q.a&8)!==0){p.setAttribute("aria-disabled","true") -r.Ak()}else{s=q.b -s.toString -if((s&1)!==0&&(q.a&16)===0){if(r.c==null){s=new A.a9h(r) -r.c=s -J.iA(p,"click",s)}}else r.Ak()}if((q.k2&1)!==0&&(q.a&32)!==0)J.ant(p)}, -Ak(){var s=this.c -if(s==null)return -J.anZ(this.b.k1,"click",s) -this.c=null}, -m(a){this.Ak() -this.b.fW("button",!1)}} -A.a9h.prototype={ -$1(a){var s,r=this.a.b -if(r.id.y!==B.co)return -s=$.aL() -A.mK(s.p3,s.p4,r.go,B.dt,null)}, -$S:8} -A.a7_.prototype={ -C9(a,b,c,d){this.at=b -this.x=d -this.y=c}, -a98(a){var s,r,q=this,p=q.as -if(p===a)return -else if(p!=null)q.ir(0) -q.as=a -q.c=A.a(a.c,"editableElement") -q.Kg() -p=q.at -p.toString -s=q.x -s.toString -r=q.y -r.toString -q.So(0,p,r,s)}, -ir(a){var s,r,q=this -if(!q.b)return -q.b=!1 -q.w=q.r=null -for(s=q.z,r=0;r=this.b)throw A.c(A.bY(b,this,null,null,null)) -return this.a[b]}, -n(a,b,c){if(b>=this.b)throw A.c(A.bY(b,this,null,null,null)) -this.a[b]=c}, -sp(a,b){var s,r,q,p=this,o=p.b -if(bo){if(o===0)q=new Uint8Array(b) -else q=p.yD(b) -B.R.d6(q,0,p.b,p.a) -p.a=q}}p.b=b}, -dS(a,b){var s=this,r=s.b -if(r===s.a.length)s.G5(r) -s.a[s.b++]=b}, -E(a,b){var s=this,r=s.b -if(r===s.a.length)s.G5(r) -s.a[s.b++]=b}, -uv(a,b,c,d){A.cZ(c,"start") -if(d!=null&&c>d)throw A.c(A.bt(d,c,null,"end",null)) -this.Yb(b,c,d)}, -P(a,b){return this.uv(a,b,0,null)}, -Yb(a,b,c){var s,r,q,p=this -if(A.n(p).j("x").b(a))c=c==null?a.length:c -if(c!=null){p.a45(p.b,a,b,c) -return}for(s=J.av(a),r=0;s.t();){q=s.gH(s) -if(r>=b)p.dS(0,q);++r}if(ro.gp(b)||d>o.gp(b))throw A.c(A.X("Too few elements")) -s=d-c -r=p.b+s -p.a_Q(r) -o=p.a -q=a+s -B.R.bh(o,q,p.b+s,o,a) -B.R.bh(p.a,a,q,b,c) -p.b=r}, -a_Q(a){var s,r=this -if(a<=r.a.length)return -s=r.yD(a) -B.R.d6(s,0,r.b,r.a) -r.a=s}, -yD(a){var s=this.a.length*2 -if(a!=null&&ss)throw A.c(A.bt(c,0,s,null,null)) -s=this.a -if(A.n(this).j("jG").b(d))B.R.bh(s,b,c,d.a,e) -else B.R.bh(s,b,c,d,e)}, -d6(a,b,c,d){return this.bh(a,b,c,d,0)}} -A.OA.prototype={} -A.M3.prototype={} -A.hc.prototype={ -i(a){return A.C(this).i(0)+"("+this.a+", "+A.e(this.b)+")"}} -A.a0E.prototype={ -ca(a){return A.kd(B.ba.cS(B.at.lM(a)).buffer,0,null)}, -fJ(a){if(a==null)return a -return B.at.dr(0,B.cN.cS(A.cX(a.buffer,0,null)))}} -A.a0G.prototype={ -hO(a){return B.a4.ca(A.aB(["method",a.a,"args",a.b],t.N,t.z))}, -hL(a){var s,r,q,p=null,o=B.a4.fJ(a) -if(!t.f.b(o))throw A.c(A.c5("Expected method call Map, got "+A.e(o),p,p)) -s=J.ax(o) -r=s.h(o,"method") -q=s.h(o,"args") -if(typeof r=="string")return new A.hc(r,q) -throw A.c(A.c5("Invalid method call: "+A.e(o),p,p))}} -A.a8H.prototype={ -ca(a){var s=A.all() -this.dO(0,s,!0) -return s.kt()}, -fJ(a){var s,r -if(a==null)return null -s=new A.JS(a) -r=this.hu(0,s) -if(s.b=b.a.byteLength)throw A.c(B.aG) -return this.jG(b.mo(0),b)}, -jG(a,b){var s,r,q,p,o,n,m,l,k=this -switch(a){case 0:s=null -break -case 1:s=!0 -break -case 2:s=!1 -break -case 3:r=b.a.getInt32(b.b,B.ad===$.dd()) -b.b+=4 -s=r -break -case 4:s=b.wN(0) -break -case 5:q=k.er(b) -s=A.fJ(B.cN.cS(b.mp(q)),16) -break -case 6:b.jX(8) -r=b.a.getFloat64(b.b,B.ad===$.dd()) -b.b+=8 -s=r -break -case 7:q=k.er(b) -s=B.cN.cS(b.mp(q)) -break -case 8:s=b.mp(k.er(b)) -break -case 9:q=k.er(b) -b.jX(4) -p=b.a -o=A.apW(p.buffer,p.byteOffset+b.b,q) -b.b=b.b+4*q -s=o -break -case 10:s=b.wO(k.er(b)) -break -case 11:q=k.er(b) -b.jX(8) -p=b.a -o=A.apU(p.buffer,p.byteOffset+b.b,q) -b.b=b.b+8*q -s=o -break -case 12:q=k.er(b) -s=[] -for(p=b.a,n=0;n=p.byteLength)A.K(B.aG) -b.b=m+1 -s.push(k.jG(p.getUint8(m),b))}break -case 13:q=k.er(b) -p=t.z -s=A.z(p,p) -for(p=b.a,n=0;n=p.byteLength)A.K(B.aG) -b.b=m+1 -m=k.jG(p.getUint8(m),b) -l=b.b -if(l>=p.byteLength)A.K(B.aG) -b.b=l+1 -s.n(0,m,k.jG(p.getUint8(l),b))}break -default:throw A.c(B.aG)}return s}, -fs(a,b){var s,r,q -if(b<254)a.b.dS(0,b) -else{s=a.b -r=a.c -q=a.d -if(b<=65535){s.dS(0,254) -r.setUint16(0,b,B.ad===$.dd()) -s.uv(0,q,0,2)}else{s.dS(0,255) -r.setUint32(0,b,B.ad===$.dd()) -s.uv(0,q,0,4)}}}, -er(a){var s=a.mo(0) -switch(s){case 254:s=a.a.getUint16(a.b,B.ad===$.dd()) -a.b+=2 -return s -case 255:s=a.a.getUint32(a.b,B.ad===$.dd()) -a.b+=4 -return s -default:return s}}} -A.a8K.prototype={ -$2(a,b){var s=this.a,r=this.b -s.dO(0,r,a) -s.dO(0,r,b)}, -$S:31} -A.a8L.prototype={ -hL(a){var s,r,q -a.toString -s=new A.JS(a) -r=B.bs.hu(0,s) -q=B.bs.hu(0,s) -if(typeof r=="string"&&s.b>=a.byteLength)return new A.hc(r,q) -else throw A.c(B.nb)}, -qg(a){var s=A.all() -s.b.dS(0,0) -B.bs.dO(0,s,a) -return s.kt()}, -lN(a,b,c){var s=A.all() -s.b.dS(0,1) -B.bs.dO(0,s,a) -B.bs.dO(0,s,c) -B.bs.dO(0,s,b) -return s.kt()}} -A.aaD.prototype={ -jX(a){var s,r,q=this.b,p=B.f.bE(q.b,a) -if(p!==0)for(s=a-p,r=0;r0)b=c -else{f=$.bW().w -if(f==null){a=window.devicePixelRatio -f=a===0?1:a}b=1/f}f=A.cm(d) -e=B.h.X(s,"text-stroke") -s.setProperty(e,A.e(b)+"px "+A.e(f),"")}else if(d!=null){f=A.cm(d) -s.color=f==null?"":f}f=g.cx -a0=f==null?b1:f.gad(f) -if(a0!=null){f=A.cm(a0) -s.backgroundColor=f==null?"":f}a1=g.at -if(a1!=null){f=B.e.eG(a1) -s.fontSize=""+f+"px"}f=g.f -if(f!=null){f=A.ats(f) -s.fontWeight=f==null?"":f}f=A.aiA(g.y) -s.fontFamily=f==null?"":f -f=g.ax -if(f!=null)s.letterSpacing=A.e(f)+"px" -f=g.ay -if(f!=null)s.wordSpacing=A.e(f)+"px" -f=g.b -e=f!=null -a2=e&&!0 -a3=g.db -if(a3!=null){a4=A.aGI(a3) -a5=B.h.X(s,"text-shadow") -s.setProperty(a5,a4,"")}if(a2)if(e){e=g.d -f=f.a -a5=(f|1)===f?l:"" -if((f|2)===f)a5+="overline " -f=(f|4)===f?a5+"line-through ":a5 -if(e!=null)f+=A.e(A.aFI(e)) -a6=f.length===0?b1:f.charCodeAt(0)==0?f:f -if(a6!=null){f=$.bU() -if(f===B.N){f=h.style -e=B.h.X(f,"-webkit-text-decoration") -f.setProperty(e,a6,"")}else s.textDecoration=a6 -a7=g.c -if(a7!=null){g=A.cm(a7) -g.toString -f=B.h.X(s,"text-decoration-color") -s.setProperty(f,g,"")}}}g=i.a.a -f=i.b -e=i.CP(o,g,f.a,!0) -a5=e.a -a8=e.b -a9=h.style -a9.position=b2 -a9.top=A.e(a8)+"px" -a9.left=A.e(a5)+"px" -a9.width=A.e(e.c-a5)+"px" -a9.lineHeight=A.e(e.d-a8)+"px" -g=B.b.N(i.r.a.c,g,f.b) -h.appendChild(b3.createTextNode(g)) -b4.appendChild(h) -m.a+=g -q=h}else{if(!(i instanceof A.of))throw A.c(A.c_("Unknown box type: "+A.C(i).i(0))) -q=b1}}b0=o.b -if(b0!=null){l=q==null?b4:q -l.appendChild(b3.createTextNode(b0))}}return b4}, -rE(){return this.gdT().rE()}, -mi(a,b,c,d){return this.gdT().Q0(a,b,c,d)}, -wJ(a,b,c){return this.mi(a,b,c,B.bL)}, -fV(a){return this.gdT().fV(a)}, -ft(a,b){var s=this.c,r=b.a -return new A.cx(A.arv(B.T7,s,r+1),A.arv(B.T6,s,r))}, -Eu(a){var s,r,q,p=a.a,o=this.gdT().z -for(s=o.length-1,r=0;r=q.c&&p") -m=A.k8(new A.b3(n,r),new A.afk(n),r.j("p.E"),o).bB(0," ") -l=i.createElement("style") -l.type="text/css" -B.vp.F3(l,"@font-face { "+m+" }") -i.head.appendChild(l) -if(B.b.A(a.toLowerCase(),"icon")){B.tY.bw(h) -return}p.b=new A.df(Date.now(),!1) -new A.afj(h,q,new A.aI(g,t.h),p,a).$0() -this.a.push(g)}} -A.afj.prototype={ -$0(){var s=this,r=s.a -if(B.e.aI(r.offsetWidth)!==s.b){B.tY.bw(r) -s.c.eg(0)}else if(A.bR(0,Date.now()-s.d.bm().a,0).a>2e6){s.c.eg(0) -throw A.c(A.cv("Timed out trying to load font: "+s.e))}else A.bN(B.cZ,s)}, -$S:0} -A.afk.prototype={ -$1(a){return a+": "+A.e(this.a.h(0,a))+";"}, -$S:41} -A.a9M.prototype={ -wc(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=a2.a,a4=a3.a,a5=a4.length,a6=a2.c=a7.a -a2.d=0 -a2.e=null -a2.r=a2.f=0 -a2.y=!1 -s=a2.z -B.c.sp(s,0) -if(a5===0)return -r=new A.a8z(a3,a2.b) -q=A.akC(a3,r,0,0,a6,B.nr) -for(p=a3.b,o=p.e,n=p.z,m=n!=null,l=o==null,k=0;!0;){if(k===a5){if(q.a.length!==0||q.x.d!==B.bX){q.ac3() -s.push(q.bq(0))}break}j=a4[k] -if(j instanceof A.ri){if(q.z+j.a<=a6)q.B0(0,j) -else{if(q.a.length!==0){s.push(q.bq(0)) -q=q.qX()}q.B0(0,j)}++k}else if(j instanceof A.no){r.snl(j) -i=q.Ne() -h=i.a -g=q.PY(h) -if(q.y+g<=a6){q.jo(i) -if(h.d===B.d4){s.push(q.bq(0)) -q=q.qX()}}else if((m&&l||s.length+1===o)&&m){q.Nl(i,!0,n) -s.push(q.LM(0,n)) -break}else if(!q.at){q.acy(i,!1) -s.push(q.bq(0)) -q=q.qX()}else{q.agh() -f=B.c.gR(q.a).a -for(;j!==f;){--k -j=a4[k]}s.push(q.bq(0)) -q=q.qX()}if(q.x.a>=j.gaO(j)){q.BB();++k}}else throw A.c(A.c_("Unknown span type: "+A.C(j).i(0))) -if(s.length===o)break}for(o=s.length,e=0;e=j.c)++k}else a0=!1 -a1=B.c.gR(q.a).d -if(a2.f=b;--r){p=o[r] -A.c9(p.c,"startOffset") -p.c=e+q -A.c9(p.d,"lineWidth") -p.d=s -if(p instanceof A.fd&&p.y&&!p.z)p.Q+=d -q+=p.gaQ(p)}return q}, -Zd(a){var s=this.c,r=a.r-a.w -if(r>0)return(s-a.at)/r -return 0}, -rE(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a="startOffset",a0="lineWidth",a1=A.b([],t.Lx) -for(s=this.z,r=s.length,q=0;q=b||a<0||b<0)return A.b([],t.Lx) -s=this.a.c.length -if(a>s||b>s)return A.b([],t.Lx) -r=A.b([],t.Lx) -for(q=this.z,p=q.length,o=0;o=j+l.ax)return new A.b9(l.e,B.ar) -s=k-j -for(k=l.f,j=k.length,r=0;r=l)q=0 -else{r=n.r -r.snl(n.w) -q=r.k8(c,l)}l=n.x -if(l===B.q){p=n.giF(n)+s -o=n.grm(n)-q}else{p=n.giF(n)+q -o=n.grm(n)-s}if(d&&n.z)if(n.e===B.q)o=p -else p=o -r=a.ay -return new A.ih(r+p,m,r+o,m+n.as,l)}, -EA(a){var s,r,q,p,o=this,n=o.r -n.snl(o.w) -a=o.x!==B.q?o.grm(o)-a:a-o.giF(o) -s=o.a.a -r=o.b.b -q=n.Cs(s,r,!0,a) -if(q===r)return new A.b9(q,B.ar) -p=q+1 -if(a-n.k8(s,q)=0 -if(!(s&&n[r].d===0))break -q+=n[r].e;--r}if(s){n=n[r] -q+=n.e-n.d}o.y-=q}}if(o.gyI().a>m.b.a){p=o.b.pop() -o.CW=o.CW-p.gaQ(p) -if(p instanceof A.fd&&p.y)--o.ax}return m}, -Nl(a,b,c){var s,r,q,p,o,n=this -if(c==null){s=n.z -r=a.a.c -q=n.e.Cs(n.x.a,r,b,n.c-s) -if(q===r)n.jo(a) -else n.jo(new A.lm(new A.dv(q,q,q,B.bx),a.b,a.c)) -return}s=n.e -p=n.c-A.amk(s.b,c,0,c.length,null) -o=n.yG(a.a) -r=n.a -while(!0){if(!(r.length!==0&&n.z>p))break -o=n.Jj()}s.snl(t.xb.a(o.a)) -q=s.Cs(o.b.a,o.c.a,b,p-n.z) -s=n.b -while(!0){if(!(s.length!==0&&B.c.gR(s).b.a>q))break -s.pop()}n.CW=n.z -n.jo(new A.lm(new A.dv(q,q,q,B.bx),a.b,a.c))}, -acy(a,b){return this.Nl(a,b,null)}, -agh(){for(;this.x.d===B.bx;)this.Jj()}, -gyI(){var s=this.b -if(s.length===0)return this.f -return B.c.gR(s).b}, -Mi(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.gyI(),h=j.x -if(i.a===h.a)return -s=j.e -r=j.z -q=j.CW -p=j.d.b.b -if(p==null)p=B.q -o=j.gtq() -n=j.gH5() -m=s.e -m.toString -l=s.d -l=l.gbk(l) -k=s.d -j.b.push(new A.fd(s,m,n,a,r-q,l,k.gko(k),i,h,p,o)) -if(a)++j.ax -j.CW=j.z}, -BB(){return this.Mi(!1)}, -LM(a,b){var s,r,q,p,o,n,m,l,k,j,i=this -i.BB() -s=b==null?0:A.amk(i.e.b,b,0,b.length,null) -r=i.f.a -q=i.x -p=Math.max(r,q.b) -if(q.d!==B.bX&&i.ga4b())o=!1 -else{q=i.x.d -o=q===B.d4||q===B.bX}i.a5W() -q=i.x -n=i.y -m=i.z -l=i.ga9n() -k=i.Q -j=i.as -return new A.qo(b,r,q.a,p,i.b,i.ax,i.cx,o,k,j,k+j,n+s,m+s,l,i.w+k,i.r)}, -bq(a){return this.LM(a,null)}, -a5W(){var s,r,q,p -this.cx=0 -for(s=this.b,r=s.length-1,q=0;r>=0;--r){p=s[r] -if(!(p instanceof A.fd&&p.y))break -p.z=!0;++q -this.cx=q}}, -Ne(){var s,r=this,q=r.cy,p=r.d.c -if(q==null||r.x.a>=q.a){s=r.e.e.c -q=r.cy=A.aIo(p,r.x.a,s)}return A.aHU(p,r.x,q)}, -qX(){var s=this,r=s.x -return A.akC(s.d,s.e,s.w+(s.Q+s.as),s.r+1,s.c,r)}} -A.a8z.prototype={ -snl(a){var s,r,q,p,o,n,m=this -if(a===m.e)return -m.e=a -s=a.a -r=s.dy -if(r===$){q=s.gMN() -p=s.at -if(p==null)p=14 -A.ba(s.dy,"heightStyle") -r=s.dy=new A.Ar(q,p,s.ch,null,null)}o=$.aqW.h(0,r) -if(o==null){q=$.auP() -p=document.createElement("flt-paragraph") -o=new A.LM(r,q,new A.a9i(p)) -$.aqW.n(0,r,o)}m.d=o -n=s.gMn() -if(m.c!==n){m.c=n -m.b.font=n}}, -Cs(a,b,c,d){var s,r,q,p -this.e.toString -if(d<=0)return c?a:a+1 -s=b -r=a -do{q=B.f.bC(r+s,2) -p=this.k8(a,q) -if(pd?r:q -s=q}}while(s-r>1) -return r===a&&!c?r+1:r}, -k8(a,b){return A.amk(this.b,this.a.c,a,b,this.e.a.ax)}} -A.be.prototype={ -i(a){return"LineCharProperty."+this.b}} -A.nY.prototype={ -i(a){return"LineBreakType."+this.b}} -A.dv.prototype={ -gv(a){var s=this -return A.ct(s.a,s.b,s.c,s.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.dv&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -i(a){var s=this.bY(0) -return s}} -A.Kw.prototype={ -m(a){J.ca(this.a)}} -A.a9N.prototype={ -aH(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this.a.gdT().z,g=h.length -if(g===0)return -for(s=t.aE,r=0;rthis.b)return B.SV -return B.SU}} -A.kF.prototype={ -qv(a,b,c){var s=A.Tv(b,c) -return s==null?this.b:this.qw(s)}, -qw(a){var s,r,q,p,o=this -if(a==null)return o.b -s=o.c -r=s.h(0,a) -if(r!=null)return r -q=o.YO(a) -p=q===-1?o.b:o.a[q].c -s.n(0,a,p) -return p}, -YO(a){var s,r,q=this.a,p=q.length -for(s=0;s")).Y(0,new A.Ye(this,r)) -return r}} -A.Yg.prototype={ -$1(a){a.preventDefault()}, -$S:8} -A.Ye.prototype={ -$1(a){var s=this.a,r=s.b.h(0,a) -r.toString -this.b.push(A.bz(r,"input",new A.Yf(s,a,r),!1,t.TV.c))}, -$S:33} -A.Yf.prototype={ -$1(a){var s,r=this.a.c,q=this.b -if(r.h(0,q)==null)throw A.c(A.X("AutofillInfo must have a valid uniqueIdentifier.")) -else{r=r.h(0,q) -r.toString -s=A.akh(this.c) -$.aL().hW("flutter/textinput",B.aB.hO(new A.hc(u.l,[0,A.aB([r.b,s.PC()],t.ob,t.z)])),A.Tm())}}, -$S:4} -A.Fb.prototype={ -LE(a,b){var s,r="password",q=this.d,p=this.e -if(t.Zb.b(a)){if(p!=null)a.placeholder=p -s=q==null -if(!s){a.name=q -a.id=q -if(B.b.A(q,r))a.type=r -else a.type="text"}a.autocomplete=s?"on":q}else if(t.S0.b(a)){if(p!=null)a.placeholder=p -s=q==null -if(!s){a.name=q -a.id=q}a.setAttribute("autocomplete",s?"on":q)}}, -eC(a){return this.LE(a,!1)}} -A.tv.prototype={} -A.ql.prototype={ -PC(){return A.aB(["text",this.a,"selectionBase",this.b,"selectionExtent",this.c],t.N,t.z)}, -gv(a){return A.ct(this.a,this.b,this.c,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(A.C(s)!==J.W(b))return!1 -return b instanceof A.ql&&b.a==s.a&&b.b===s.b&&b.c===s.c}, -i(a){var s=this.bY(0) -return s}, -eC(a){var s,r=this -if(t.Zb.b(a)){a.value=r.a -a.setSelectionRange(r.b,r.c)}else if(t.S0.b(a)){a.value=r.a -a.setSelectionRange(r.b,r.c)}else{s=a==null?null:a.tagName -throw A.c(A.N("Unsupported DOM element type: <"+A.e(s)+"> ("+J.W(a).i(0)+")"))}}} -A.a0v.prototype={} -A.HA.prototype={ -hZ(){var s,r=this,q=r.w -if(q!=null){s=r.c -s.toString -q.eC(s)}if(A.a(r.d,"inputConfiguration").w!=null){r.r8() -q=r.e -if(q!=null)q.eC(r.c) -r.gNk().focus() -r.c.focus()}}} -A.a5U.prototype={ -hZ(){var s,r=this,q=r.w -if(q!=null){s=r.c -s.toString -q.eC(s)}if(A.a(r.d,"inputConfiguration").w!=null){r.r8() -r.gNk().focus() -r.c.focus() -q=r.e -if(q!=null){s=r.c -s.toString -q.eC(s)}}}, -vK(){if(this.w!=null)this.hZ() -this.c.focus()}} -A.wc.prototype={ -ghN(){var s=null,r=this.f -if(r==null){r=this.e.a -r.toString -r=this.f=new A.tv(r,"",-1,-1,s,s,s,s)}return r}, -gNk(){var s=A.a(this.d,"inputConfiguration").w -return s==null?null:s.a}, -nF(a,b,c){var s,r,q,p=this,o="transparent",n="none" -p.c=a.a.BD() -p.B8(a) -s=p.c -s.classList.add("flt-text-editing") -r=s.style -r.whiteSpace="pre-wrap" -B.h.an(r,B.h.X(r,"align-content"),"center","") -r.position="absolute" -r.top="0" -r.left="0" -r.padding="0" -B.h.an(r,B.h.X(r,"opacity"),"1","") -r.color=o -r.backgroundColor=o -r.background=o -r.outline=n -r.border=n -B.h.an(r,B.h.X(r,"resize"),n,"") -B.h.an(r,B.h.X(r,"text-shadow"),o,"") -r.overflow="hidden" -B.h.an(r,B.h.X(r,"transform-origin"),"0 0 0","") -q=$.bU() -if(q!==B.b9)if(q!==B.ch)q=q===B.N -else q=!0 -else q=!0 -if(q)s.classList.add("transparentTextEditing") -B.h.an(r,B.h.X(r,"caret-color"),o,null) -s=p.r -if(s!=null){q=p.c -q.toString -s.eC(q)}if(A.a(p.d,"inputConfiguration").w==null){s=$.ht.z -s.toString -q=p.c -q.toString -s.kp(0,q) -p.Q=!1}p.vK() -p.b=!0 -p.x=c -p.y=b}, -B8(a){var s,r,q,p=this,o="readonly" -p.d=a -s=p.c -if(a.c)s.setAttribute(o,o) -else s.removeAttribute(o) -if(a.d)p.c.setAttribute("type","password") -if(a.a===B.mj)p.c.setAttribute("inputmode","none") -r=a.r -s=p.c -if(r!=null){s.toString -r.LE(s,!0)}else s.setAttribute("autocomplete","off") -q=a.e?"on":"off" -p.c.setAttribute("autocorrect",q)}, -vK(){this.hZ()}, -pA(){var s,r,q,p,o=this,n="inputConfiguration" -if(A.a(o.d,n).w!=null)B.c.P(o.z,A.a(o.d,n).w.pC()) -s=o.z -r=o.c -r.toString -q=o.gqz() -p=t.TV.c -s.push(A.bz(r,"input",q,!1,p)) -r=o.c -r.toString -s.push(A.bz(r,"keydown",o.gqT(),!1,t.hG.c)) -s.push(A.bz(document,"selectionchange",q,!1,t.I3)) -q=o.c -q.toString -J.iA(q,"beforeinput",o.gvu()) -q=o.c -q.toString -J.iA(q,"compositionupdate",o.gvv()) -q=o.c -q.toString -s.push(A.bz(q,"blur",new A.Wy(o),!1,p)) -o.DB()}, -E9(a){this.w=a -if(this.b)this.hZ()}, -Ea(a){var s -this.r=a -if(this.b){s=this.c -s.toString -a.eC(s)}}, -ir(a){var s,r,q=this,p="inputConfiguration",o=q.b=!1 -q.w=q.r=q.f=q.e=null -for(s=q.z,r=0;r=0&&a.c>=0) -else s=!0 -if(s)return -a.eC(this.c)}, -hZ(){this.c.focus()}, -r8(){var s,r=A.a(this.d,"inputConfiguration").w -r.toString -s=this.c -s.toString -r=r.a -r.appendChild(s) -$.ht.z.kp(0,r) -this.Q=!0}, -Nq(a){var s,r,q=this,p=q.c -p.toString -s=A.akh(p) -r=A.a(q.d,"inputConfiguration").f?A.aDK(s,q.e,q.ghN()):null -if(!s.k(0,q.e)){q.e=s -q.f=r -q.x.$2(s,r) -q.f=null}}, -acC(a){var s=this,r=A.bH(a.data),q=A.bH(a.inputType) -if(q!=null)if(B.b.A(q,"delete")){s.ghN().b="" -s.ghN().d=s.e.c}else if(q==="insertLineBreak"){s.ghN().b="\n" -s.ghN().c=s.e.c -s.ghN().d=s.e.c}else if(r!=null){s.ghN().b=r -s.ghN().c=s.e.c -s.ghN().d=s.e.c}}, -acD(a){var s,r=this.c -r.toString -s=A.akh(r) -this.ghN().r=s.b -this.ghN().w=s.c}, -ael(a){var s,r="inputConfiguration" -if(t.JG.b(a))if(A.a(this.d,r).a.gFn()&&a.keyCode===13){a.preventDefault() -s=this.y -s.toString -s.$1(A.a(this.d,r).b)}}, -C9(a,b,c,d){var s,r=this -r.nF(b,c,d) -r.pA() -s=r.e -if(s!=null)r.x7(s) -r.c.focus()}, -DB(){var s,r=this,q=r.z,p=r.c -p.toString -s=t.dP.c -q.push(A.bz(p,"mousedown",new A.Wz(),!1,s)) -p=r.c -p.toString -q.push(A.bz(p,"mouseup",new A.WA(),!1,s)) -p=r.c -p.toString -q.push(A.bz(p,"mousemove",new A.WB(),!1,s))}} -A.Wy.prototype={ -$1(a){this.a.c.focus()}, -$S:4} -A.Wz.prototype={ -$1(a){a.preventDefault()}, -$S:62} -A.WA.prototype={ -$1(a){a.preventDefault()}, -$S:62} -A.WB.prototype={ -$1(a){a.preventDefault()}, -$S:62} -A.a01.prototype={ -nF(a,b,c){var s,r=this -r.xz(a,b,c) -s=r.c -s.toString -a.a.M2(s) -if(A.a(r.d,"inputConfiguration").w!=null)r.r8() -s=r.c -s.toString -a.x.EU(s)}, -vK(){var s=this.c.style -B.h.an(s,B.h.X(s,"transform"),"translate(-9999px, -9999px)","") -this.fy=!1}, -pA(){var s,r,q,p,o,n=this,m="inputConfiguration" -if(A.a(n.d,m).w!=null)B.c.P(n.z,A.a(n.d,m).w.pC()) -s=n.z -r=n.c -r.toString -q=n.gqz() -p=t.TV.c -s.push(A.bz(r,"input",q,!1,p)) -r=n.c -r.toString -s.push(A.bz(r,"keydown",n.gqT(),!1,t.hG.c)) -s.push(A.bz(document,"selectionchange",q,!1,t.I3)) -q=n.c -q.toString -J.iA(q,"beforeinput",n.gvu()) -q=n.c -q.toString -J.iA(q,"compositionupdate",n.gvv()) -q=n.c -q.toString -s.push(A.bz(q,"focus",new A.a04(n),!1,p)) -n.Yy() -o=new A.Ad() -$.TH() -o.oD(0) -q=n.c -q.toString -s.push(A.bz(q,"blur",new A.a05(n,o),!1,p))}, -E9(a){var s=this -s.w=a -if(s.b&&s.fy)s.hZ()}, -ir(a){var s -this.Sn(0) -s=this.fx -if(s!=null)s.aA(0) -this.fx=null}, -Yy(){var s=this.c -s.toString -this.z.push(A.bz(s,"click",new A.a02(this),!1,t.dP.c))}, -JH(){var s=this.fx -if(s!=null)s.aA(0) -this.fx=A.bN(B.an,new A.a03(this))}, -hZ(){var s,r -this.c.focus() -s=this.w -if(s!=null){r=this.c -r.toString -s.eC(r)}}} -A.a04.prototype={ -$1(a){this.a.JH()}, -$S:4} -A.a05.prototype={ -$1(a){var s=A.bR(this.b.gMO(),0,0).a<2e5,r=document.hasFocus()&&s,q=this.a -if(r)q.c.focus() -else q.a.x4()}, -$S:4} -A.a02.prototype={ -$1(a){var s,r=this.a -if(r.fy){s=r.c.style -B.h.an(s,B.h.X(s,"transform"),"translate(-9999px, -9999px)","") -r.fy=!1 -r.JH()}}, -$S:62} -A.a03.prototype={ -$0(){var s=this.a -s.fy=!0 -s.hZ()}, -$S:0} -A.Ug.prototype={ -nF(a,b,c){var s,r,q=this -q.xz(a,b,c) -s=q.c -s.toString -a.a.M2(s) -if(A.a(q.d,"inputConfiguration").w!=null)q.r8() -else{s=$.ht.z -s.toString -r=q.c -r.toString -s.kp(0,r)}s=q.c -s.toString -a.x.EU(s)}, -pA(){var s,r,q,p,o=this,n="inputConfiguration" -if(A.a(o.d,n).w!=null)B.c.P(o.z,A.a(o.d,n).w.pC()) -s=o.z -r=o.c -r.toString -q=o.gqz() -p=t.TV.c -s.push(A.bz(r,"input",q,!1,p)) -r=o.c -r.toString -s.push(A.bz(r,"keydown",o.gqT(),!1,t.hG.c)) -s.push(A.bz(document,"selectionchange",q,!1,t.I3)) -q=o.c -q.toString -J.iA(q,"beforeinput",o.gvu()) -q=o.c -q.toString -J.iA(q,"compositionupdate",o.gvv()) -q=o.c -q.toString -s.push(A.bz(q,"blur",new A.Uh(o),!1,p))}, -hZ(){var s,r -this.c.focus() -s=this.w -if(s!=null){r=this.c -r.toString -s.eC(r)}}} -A.Uh.prototype={ -$1(a){var s=this.a -if(document.hasFocus())s.c.focus() -else s.a.x4()}, -$S:4} -A.YV.prototype={ -nF(a,b,c){this.xz(a,b,c) -if(A.a(this.d,"inputConfiguration").w!=null)this.r8()}, -pA(){var s,r,q,p,o,n=this,m="inputConfiguration" -if(A.a(n.d,m).w!=null)B.c.P(n.z,A.a(n.d,m).w.pC()) -s=n.z -r=n.c -r.toString -q=n.gqz() -p=t.TV.c -s.push(A.bz(r,"input",q,!1,p)) -r=n.c -r.toString -o=t.hG.c -s.push(A.bz(r,"keydown",n.gqT(),!1,o)) -r=n.c -r.toString -J.iA(r,"beforeinput",n.gvu()) -r=n.c -r.toString -J.iA(r,"compositionupdate",n.gvv()) -r=n.c -r.toString -s.push(A.bz(r,"keyup",new A.YX(n),!1,o)) -o=n.c -o.toString -s.push(A.bz(o,"select",q,!1,p)) -q=n.c -q.toString -s.push(A.bz(q,"blur",new A.YY(n),!1,p)) -n.DB()}, -a5T(){A.bN(B.r,new A.YW(this))}, -hZ(){var s,r,q=this -q.c.focus() -s=q.w -if(s!=null){r=q.c -r.toString -s.eC(r)}s=q.e -if(s!=null){r=q.c -r.toString -s.eC(r)}}} -A.YX.prototype={ -$1(a){this.a.Nq(a)}, -$S:202} -A.YY.prototype={ -$1(a){this.a.a5T()}, -$S:4} -A.YW.prototype={ -$0(){this.a.c.focus()}, -$S:0} -A.a9r.prototype={} -A.a9z.prototype={ -f_(a){var s=a.b -if(s!=null&&s!==this.a&&a.c){a.c=!1 -a.gj0().ir(0)}a.b=this.a -a.d=this.b}} -A.a9G.prototype={ -f_(a){var s=a.gj0(),r=a.d -r.toString -s.B8(r)}} -A.a9B.prototype={ -f_(a){a.gj0().x7(this.a)}} -A.a9E.prototype={ -f_(a){if(!a.c)a.a7B()}} -A.a9A.prototype={ -f_(a){a.gj0().E9(this.a)}} -A.a9D.prototype={ -f_(a){a.gj0().Ea(this.a)}} -A.a9q.prototype={ -f_(a){if(a.c){a.c=!1 -a.gj0().ir(0)}}} -A.a9w.prototype={ -f_(a){if(a.c){a.c=!1 -a.gj0().ir(0)}}} -A.a9C.prototype={ -f_(a){}} -A.a9y.prototype={ -f_(a){}} -A.a9x.prototype={ -f_(a){}} -A.a9v.prototype={ -f_(a){a.x4() -if(this.a)A.aIz() -A.aHf()}} -A.ajn.prototype={ -$2(a,b){t.Zb.a(J.v8(b.getElementsByClassName("submitBtn"))).click()}, -$S:207} -A.a9j.prototype={ -ad4(a,b){var s,r,q,p,o,n,m,l,k=B.aB.hL(a) -switch(k.a){case"TextInput.setClient":s=k.b -r=J.ax(s) -q=new A.a9z(A.eg(r.h(s,0)),A.apu(t.a.a(r.h(s,1)))) -break -case"TextInput.updateConfig":this.a.d=A.apu(t.a.a(k.b)) -q=B.xu -break -case"TextInput.setEditingState":q=new A.a9B(A.aoZ(t.a.a(k.b))) -break -case"TextInput.show":q=B.xs -break -case"TextInput.setEditableSizeAndTransform":s=t.a.a(k.b) -r=J.ax(s) -p=A.ft(t.j.a(r.h(s,"transform")),!0,t.i) -q=new A.a9A(new A.XF(A.pw(r.h(s,"width")),A.pw(r.h(s,"height")),new Float32Array(A.kZ(p)))) -break -case"TextInput.setStyle":s=t.a.a(k.b) -r=J.ax(s) -o=A.eg(r.h(s,"textAlignIndex")) -n=A.eg(r.h(s,"textDirectionIndex")) -m=A.hs(r.h(s,"fontWeightIndex")) -l=m!=null?A.atr(m):"normal" -q=new A.a9D(new A.Y3(A.aFn(r.h(s,"fontSize")),l,A.bH(r.h(s,"fontFamily")),B.EX[o],B.Eo[n])) -break -case"TextInput.clearClient":q=B.xn -break -case"TextInput.hide":q=B.xo -break -case"TextInput.requestAutofill":q=B.xp -break -case"TextInput.finishAutofillContext":q=new A.a9v(A.pu(k.b)) -break -case"TextInput.setMarkedTextRect":q=B.xr -break -case"TextInput.setCaretRect":q=B.xq -break -default:$.aL().fm(b,null) -return}q.f_(this.a) -new A.a9k(b).$0()}} -A.a9k.prototype={ -$0(){$.aL().fm(this.a,B.a4.ca([!0]))}, -$S:0} -A.a_Z.prototype={ -gpQ(a){var s=this.a -if(s===$){A.ba(s,"channel") -s=this.a=new A.a9j(this)}return s}, -gj0(){var s,r,q,p,o,n=this,m=n.f -if(m===$){s=$.e0 -if((s==null?$.e0=A.lo():s).w){s=A.aD9(n) -r=s}else{s=$.bU() -q=s===B.N -if(q){p=$.ej() -p=p===B.aJ}else p=!1 -if(p)o=new A.a01(n,A.b([],t.Iu)) -else if(q)o=new A.a5U(n,A.b([],t.Iu)) -else{if(s===B.b9){q=$.ej() -q=q===B.hB}else q=!1 -if(q)o=new A.Ug(n,A.b([],t.Iu)) -else{q=t.Iu -o=s===B.bM?new A.YV(n,A.b([],q)):new A.HA(n,A.b([],q))}}r=o}A.ba(n.f,"strategy") -m=n.f=r}return m}, -a7B(){var s,r,q=this -q.c=!0 -s=q.gj0() -r=q.d -r.toString -s.C9(0,r,new A.a0_(q),new A.a00(q))}, -x4(){var s,r=this -if(r.c){r.c=!1 -r.gj0().ir(0) -r.gpQ(r) -s=r.b -$.aL().hW("flutter/textinput",B.aB.hO(new A.hc("TextInputClient.onConnectionClosed",[s])),A.Tm())}}} -A.a00.prototype={ -$2(a,b){var s,r,q="flutter/textinput",p=this.a -if(p.d.f){p.gpQ(p) -p=p.b -s=t.N -r=t.z -$.aL().hW(q,B.aB.hO(new A.hc(u.s,[p,A.aB(["deltas",A.b([A.aB(["oldText",b.a,"deltaText",b.b,"deltaStart",b.c,"deltaEnd",b.d,"selectionBase",b.e,"selectionExtent",b.f],s,r)],t.H7)],s,r)])),A.Tm())}else{p.gpQ(p) -p=p.b -$.aL().hW(q,B.aB.hO(new A.hc("TextInputClient.updateEditingState",[p,a.PC()])),A.Tm())}}, -$S:257} -A.a0_.prototype={ -$1(a){var s=this.a -s.gpQ(s) -s=s.b -$.aL().hW("flutter/textinput",B.aB.hO(new A.hc("TextInputClient.performAction",[s,a])),A.Tm())}, -$S:213} -A.Y3.prototype={ -eC(a){var s=this,r=a.style,q=A.aIN(s.d,s.e) -r.textAlign=q==null?"":q -q=A.aiA(s.c) -r.font=s.b+" "+A.e(s.a)+"px "+A.e(q)}} -A.XF.prototype={ -eC(a){var s=A.hw(this.c),r=a.style -r.width=A.e(this.a)+"px" -r.height=A.e(this.b)+"px" -B.h.an(r,B.h.X(r,"transform"),s,"")}} -A.tE.prototype={ -i(a){return"TransformKind."+this.b}} -A.aiz.prototype={ -$1(a){return"0x"+B.b.m2(B.f.iV(a,16),2,"0")}, -$S:103} -A.bJ.prototype={ -by(a){var s=a.a,r=this.a -r[15]=s[15] -r[14]=s[14] -r[13]=s[13] -r[12]=s[12] -r[11]=s[11] -r[10]=s[10] -r[9]=s[9] -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -h(a,b){return this.a[b]}, -E2(a,b,a0,a1){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15] -s[12]=r*b+q*a0+p*a1+o -s[13]=n*b+m*a0+l*a1+k -s[14]=j*b+i*a0+h*a1+g -s[15]=f*b+e*a0+d*a1+c}, -aC(a,b,c){return this.E2(a,b,c,0)}, -cP(a,b,c){var s=c==null?b:c,r=this.a -r[15]=r[15] -r[0]=r[0]*b -r[1]=r[1]*b -r[2]=r[2]*b -r[3]=r[3]*b -r[4]=r[4]*s -r[5]=r[5]*s -r[6]=r[6]*s -r[7]=r[7]*s -r[8]=r[8]*b -r[9]=r[9]*b -r[10]=r[10]*b -r[11]=r[11]*b -r[12]=r[12] -r[13]=r[13] -r[14]=r[14]}, -bd(a,b){return this.cP(a,b,null)}, -qJ(a){var s=this.a -return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, -O1(){var s=this.a -return s[15]===1&&s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0}, -Pt(b1,b2,b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=Math.sqrt(b2.gae2()),c=b2.a,b=c[0]/d,a=c[1]/d,a0=c[2]/d,a1=Math.cos(b3),a2=Math.sin(b3),a3=1-a1,a4=b*b*a3+a1,a5=a0*a2,a6=b*a*a3-a5,a7=a*a2,a8=b*a0*a3+a7,a9=a*b*a3+a5,b0=a*a*a3+a1 -a5=b*a2 -s=a*a0*a3-a5 -r=a0*b*a3-a7 -q=a0*a*a3+a5 -p=a0*a0*a3+a1 -a5=this.a -a7=a5[0] -o=a5[4] -n=a5[8] -m=a5[1] -l=a5[5] -k=a5[9] -j=a5[2] -i=a5[6] -h=a5[10] -g=a5[3] -f=a5[7] -e=a5[11] -a5[0]=a7*a4+o*a9+n*r -a5[1]=m*a4+l*a9+k*r -a5[2]=j*a4+i*a9+h*r -a5[3]=g*a4+f*a9+e*r -a5[4]=a7*a6+o*b0+n*q -a5[5]=m*a6+l*b0+k*q -a5[6]=j*a6+i*b0+h*q -a5[7]=g*a6+f*b0+e*q -a5[8]=a7*a8+o*s+n*p -a5[9]=m*a8+l*s+k*p -a5[10]=j*a8+i*s+h*p -a5[11]=g*a8+f*s+e*p}, -mw(a,b,c){var s=this.a -s[14]=c -s[13]=b -s[12]=a}, -kr(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 -if(b4===0){this.by(b5) -return 0}s=1/b4 -r=this.a -r[0]=(i*b3-h*b2+g*b1)*s -r[1]=(-m*b3+l*b2-k*b1)*s -r[2]=(a*a7-a0*a6+a1*a5)*s -r[3]=(-e*a7+d*a6-c*a5)*s -q=-j -r[4]=(q*b3+h*b0-g*a9)*s -r[5]=(n*b3-l*b0+k*a9)*s -p=-b -r[6]=(p*a7+a0*a4-a1*a3)*s -r[7]=(f*a7-d*a4+c*a3)*s -r[8]=(j*b2-i*b0+g*a8)*s -r[9]=(-n*b2+m*b0-k*a8)*s -r[10]=(b*a6-a*a4+a1*a2)*s -r[11]=(-f*a6+e*a4-c*a2)*s -r[12]=(q*b1+i*a9-h*a8)*s -r[13]=(n*b1-m*a9+l*a8)*s -r[14]=(p*a5+a*a3-a0*a2)*s -r[15]=(f*a5-e*a3+d*a2)*s -return b4}, -cg(b5,b6){var s=this.a,r=s[15],q=s[0],p=s[4],o=s[8],n=s[12],m=s[1],l=s[5],k=s[9],j=s[13],i=s[2],h=s[6],g=s[10],f=s[14],e=s[3],d=s[7],c=s[11],b=b6.a,a=b[15],a0=b[0],a1=b[4],a2=b[8],a3=b[12],a4=b[1],a5=b[5],a6=b[9],a7=b[13],a8=b[2],a9=b[6],b0=b[10],b1=b[14],b2=b[3],b3=b[7],b4=b[11] -s[0]=q*a0+p*a4+o*a8+n*b2 -s[4]=q*a1+p*a5+o*a9+n*b3 -s[8]=q*a2+p*a6+o*b0+n*b4 -s[12]=q*a3+p*a7+o*b1+n*a -s[1]=m*a0+l*a4+k*a8+j*b2 -s[5]=m*a1+l*a5+k*a9+j*b3 -s[9]=m*a2+l*a6+k*b0+j*b4 -s[13]=m*a3+l*a7+k*b1+j*a -s[2]=i*a0+h*a4+g*a8+f*b2 -s[6]=i*a1+h*a5+g*a9+f*b3 -s[10]=i*a2+h*a6+g*b0+f*b4 -s[14]=i*a3+h*a7+g*b1+f*a -s[3]=e*a0+d*a4+c*a8+r*b2 -s[7]=e*a1+d*a5+c*a9+r*b3 -s[11]=e*a2+d*a6+c*b0+r*b4 -s[15]=e*a3+d*a7+c*b1+r*a}, -w6(a){var s=new A.bJ(new Float32Array(16)) -s.by(this) -s.cg(0,a) -return s}, -PG(a){var s=a[0],r=a[1],q=this.a -a[0]=q[0]*s+q[4]*r+q[12] -a[1]=q[1]*s+q[5]*r+q[13]}, -i(a){var s=this.bY(0) -return s}} -A.aax.prototype={ -h(a,b){return this.a[b]}, -gp(a){var s=this.a,r=s[0],q=s[1] -s=s[2] -return Math.sqrt(r*r+q*q+s*s)}, -gae2(){var s=this.a,r=s[0],q=s[1] -s=s[2] -return r*r+q*q+s*s}} -A.GW.prototype={ -We(a,b){var s=this,r=s.b,q=s.a -r.d.n(0,q,s) -r.e.n(0,q,B.ml) -if($.py)s.c=A.aiG($.Tk) -$.hu.push(new A.Yi(s))}, -guG(){var s,r=this.c -if(r==null){if($.py)s=$.Tk -else s=B.fi -$.py=!0 -r=this.c=A.aiG(s)}return r}, -pw(){var s=0,r=A.S(t.H),q,p=this,o,n,m -var $async$pw=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:m=p.c -if(m==null){if($.py)o=$.Tk -else o=B.fi -$.py=!0 -m=p.c=A.aiG(o)}if(m instanceof A.zU){s=1 -break}n=m.gkY() -m=p.c -s=3 -return A.U(m==null?null:m.iT(),$async$pw) -case 3:p.c=A.aqL(n) -case 1:return A.Q(q,r)}}) -return A.R($async$pw,r)}, -uq(){var s=0,r=A.S(t.H),q,p=this,o,n,m -var $async$uq=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:m=p.c -if(m==null){if($.py)o=$.Tk -else o=B.fi -$.py=!0 -m=p.c=A.aiG(o)}if(m instanceof A.y3){s=1 -break}n=m.gkY() -m=p.c -s=3 -return A.U(m==null?null:m.iT(),$async$uq) -case 3:p.c=A.apR(n) -case 1:return A.Q(q,r)}}) -return A.R($async$uq,r)}, -px(a){return this.a8X(a)}, -a8X(a){var s=0,r=A.S(t.y),q,p=2,o,n=[],m=this,l,k,j -var $async$px=A.T(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:k=m.d -j=new A.aI(new A.a4($.a5,t.U),t.h) -m.d=j.a -s=3 -return A.U(k,$async$px) -case 3:l=!1 -p=4 -s=7 -return A.U(a.$0(),$async$px) -case 7:l=c -n.push(6) -s=5 -break -case 4:n=[2] -case 5:p=2 -J.awP(j) -s=n.pop() -break -case 6:q=l -s=1 -break -case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$px,r)}, -Cy(a){return this.acS(a)}, -acS(a){var s=0,r=A.S(t.y),q,p=this -var $async$Cy=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:q=p.px(new A.Yj(p,a)) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Cy,r)}, -gmf(){var s=this.b.e.h(0,this.a) -return s==null?B.ml:s}, -gkO(){if(this.f==null)this.M0() -var s=this.f -s.toString -return s}, -M0(){var s,r,q,p,o,n,m=this,l=window.visualViewport -if(l!=null){s=$.ej() -r=m.w -if(s===B.aJ){s=document.documentElement -q=s.clientWidth -p=s.clientHeight -o=q*(r==null?A.aX():r) -s=m.w -n=p*(s==null?A.aX():s)}else{s=l.width -s.toString -o=s*(r==null?A.aX():r) -s=l.height -s.toString -r=m.w -n=s*(r==null?A.aX():r)}}else{s=window.innerWidth -s.toString -r=m.w -o=s*(r==null?A.aX():r) -s=window.innerHeight -s.toString -r=m.w -n=s*(r==null?A.aX():r)}m.f=new A.L(o,n)}, -M_(a){var s,r,q,p=this,o=window.visualViewport -if(o!=null){s=$.ej() -s=s===B.aJ&&!a -r=p.w -if(s){s=document.documentElement.clientHeight -q=s*(r==null?A.aX():r)}else{s=o.height -s.toString -q=s*(r==null?A.aX():r)}}else{s=window.innerHeight -s.toString -r=p.w -q=s*(r==null?A.aX():r)}p.e=new A.Mi(0,0,0,p.f.b-q)}, -adU(){var s,r,q=this,p=window.visualViewport,o=q.w -if(p!=null){p=window.visualViewport.height -p.toString -s=p*(o==null?A.aX():o) -p=window.visualViewport.width -p.toString -o=q.w -r=p*(o==null?A.aX():o)}else{p=window.innerHeight -p.toString -s=p*(o==null?A.aX():o) -p=window.innerWidth -p.toString -o=q.w -r=p*(o==null?A.aX():o)}p=q.f -if(p!=null){o=p.b -if(o!==s&&p.a!==r){p=p.a -if(!(o>p&&so&&r").az(b).j("cu<1,2>"))}, -E(a,b){if(!!a.fixed$length)A.K(A.N("add")) -a.push(b)}, -eW(a,b){if(!!a.fixed$length)A.K(A.N("removeAt")) -if(b<0||b>=a.length)throw A.c(A.a49(b,null)) -return a.splice(b,1)[0]}, -kE(a,b,c){if(!!a.fixed$length)A.K(A.N("insert")) -if(b<0||b>a.length)throw A.c(A.a49(b,null)) -a.splice(b,0,c)}, -qH(a,b,c){var s,r -if(!!a.fixed$length)A.K(A.N("insertAll")) -A.akW(b,0,a.length,"index") -if(!t.Ee.b(c))c=J.azr(c) -s=J.bP(c) -a.length=a.length+s -r=b+s -this.bh(a,r,a.length,a,b) -this.d6(a,b,r,c)}, -eX(a){if(!!a.fixed$length)A.K(A.N("removeLast")) -if(a.length===0)throw A.c(A.pE(a,-1)) -return a.pop()}, -B(a,b){var s -if(!!a.fixed$length)A.K(A.N("remove")) -for(s=0;s").az(c).j("az<1,2>"))}, -bB(a,b){var s,r=A.b7(a.length,"",!1,t.N) -for(s=0;s=0;--s){r=a[s] -if(b.$1(r))return r -if(q!==a.length)throw A.c(A.bw(a))}if(c!=null)return c.$0() -throw A.c(A.bB())}, -ae_(a,b){return this.nM(a,b,null)}, -aY(a,b){return a[b]}, -bG(a,b,c){if(b<0||b>a.length)throw A.c(A.bt(b,0,a.length,"start",null)) -if(c==null)c=a.length -else if(ca.length)throw A.c(A.bt(c,b,a.length,"end",null)) -if(b===c)return A.b([],A.af(a)) -return A.b(a.slice(b,c),A.af(a))}, -ey(a,b){return this.bG(a,b,null)}, -mm(a,b,c){A.er(b,c,a.length,null,null) -return A.eP(a,b,c,A.af(a).c)}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.bB())}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.bB())}, -gbX(a){var s=a.length -if(s===1)return a[0] -if(s===0)throw A.c(A.bB()) -throw A.c(A.apx())}, -DN(a,b,c){if(!!a.fixed$length)A.K(A.N("removeRange")) -A.er(b,c,a.length,null,null) -a.splice(b,c-b)}, -bh(a,b,c,d,e){var s,r,q,p,o -if(!!a.immutable$list)A.K(A.N("setRange")) -A.er(b,c,a.length,null,null) -s=c-b -if(s===0)return -A.cZ(e,"skipCount") -if(t.j.b(d)){r=d -q=e}else{r=J.U4(d,e).dL(0,!1) -q=0}p=J.ax(r) -if(q+s>p.gp(r))throw A.c(A.apw()) -if(q=0;--o)a[b+o]=p.h(r,q+o) -else for(o=0;o=r)return-1 -for(s=0;s=0;--s)if(J.f(a[s],b))return s -return-1}, -A(a,b){var s -for(s=0;sa.length)A.af(a).c.a(null) -a.length=b}, -h(a,b){if(!(b>=0&&b=0&&b=a.length)return-1 -for(s=0;s=p){r.d=null -return!1}r.d=q[s] -r.c=s+1 -return!0}} -J.lA.prototype={ -aW(a,b){var s -if(ab)return 1 -else if(a===b){if(a===0){s=this.gvP(b) -if(this.gvP(a)===s)return 0 -if(this.gvP(a))return-1 -return 1}return 0}else if(isNaN(a)){if(isNaN(b))return 0 -return 1}else return-1}, -gvP(a){return a===0?1/a<0:a<0}, -gFg(a){var s -if(a>0)s=1 -else s=a<0?-1:a -return s}, -e6(a){var s -if(a>=-2147483648&&a<=2147483647)return a|0 -if(isFinite(a)){s=a<0?Math.ceil(a):Math.floor(a) -return s+0}throw A.c(A.N(""+a+".toInt()"))}, -dV(a){var s,r -if(a>=0){if(a<=2147483647){s=a|0 -return a===s?s:s+1}}else if(a>=-2147483648)return a|0 -r=Math.ceil(a) -if(isFinite(r))return r -throw A.c(A.N(""+a+".ceil()"))}, -eG(a){var s,r -if(a>=0){if(a<=2147483647)return a|0}else if(a>=-2147483648){s=a|0 -return a===s?s:s-1}r=Math.floor(a) -if(isFinite(r))return r -throw A.c(A.N(""+a+".floor()"))}, -aI(a){if(a>0){if(a!==1/0)return Math.round(a)}else if(a>-1/0)return 0-Math.round(0-a) -throw A.c(A.N(""+a+".round()"))}, -wr(a){if(a<0)return-Math.round(-a) -else return Math.round(a)}, -G(a,b,c){if(this.aW(b,c)>0)throw A.c(A.l3(b)) -if(this.aW(a,b)<0)return b -if(this.aW(a,c)>0)return c -return a}, -V(a,b){var s -if(b>20)throw A.c(A.bt(b,0,20,"fractionDigits",null)) -s=a.toFixed(b) -if(a===0&&this.gvP(a))return"-"+s -return s}, -iV(a,b){var s,r,q,p -if(b<2||b>36)throw A.c(A.bt(b,2,36,"radix",null)) -s=a.toString(b) -if(B.b.ak(s,s.length-1)!==41)return s -r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) -if(r==null)A.K(A.N("Unexpected toString result: "+s)) -s=r[1] -q=+r[3] -p=r[2] -if(p!=null){s+=p -q-=p.length}return s+B.b.W("0",q)}, -i(a){if(a===0&&1/a<0)return"-0.0" -else return""+a}, -gv(a){var s,r,q,p,o=a|0 -if(a===o)return o&536870911 -s=Math.abs(a) -r=Math.log(s)/0.6931471805599453|0 -q=Math.pow(2,r) -p=s<1?s/q:q/s -return((p*9007199254740992|0)+(p*3542243181176521|0))*599197+r*1259&536870911}, -Z(a,b){return a+b}, -a9(a,b){return a-b}, -W(a,b){return a*b}, -bE(a,b){var s=a%b -if(s===0)return 0 -if(s>0)return s -if(b<0)return s-b -else return s+b}, -lg(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 -return this.Kk(a,b)}, -bC(a,b){return(a|0)===a?a/b|0:this.Kk(a,b)}, -Kk(a,b){var s=a/b -if(s>=-2147483648&&s<=2147483647)return s|0 -if(s>0){if(s!==1/0)return Math.floor(s)}else if(s>-1/0)return Math.ceil(s) -throw A.c(A.N("Result of truncating division is "+A.e(s)+": "+A.e(a)+" ~/ "+A.e(b)))}, -xe(a,b){if(b<0)throw A.c(A.l3(b)) -return b>31?0:a<>>0}, -JW(a,b){return b>31?0:a<>>0}, -Rl(a,b){var s -if(b<0)throw A.c(A.l3(b)) -if(a>0)s=this.ke(a,b) -else{s=b>31?31:b -s=a>>s>>>0}return s}, -h9(a,b){var s -if(a>0)s=this.ke(a,b) -else{s=b>31?31:b -s=a>>s>>>0}return s}, -Ab(a,b){if(0>b)throw A.c(A.l3(b)) -return this.ke(a,b)}, -ke(a,b){return b>31?0:a>>>b}, -gdA(a){return B.Sf}, -$ibh:1, -$iJ:1, -$ibr:1} -J.qV.prototype={ -gFg(a){var s -if(a>0)s=1 -else s=a<0?-1:a -return s}, -gdA(a){return B.Sb}, -$iq:1} -J.xj.prototype={ -gdA(a){return B.S9}} -J.k1.prototype={ -ak(a,b){if(b<0)throw A.c(A.pE(a,b)) -if(b>=a.length)A.K(A.pE(a,b)) -return a.charCodeAt(b)}, -ac(a,b){if(b>=a.length)throw A.c(A.pE(a,b)) -return a.charCodeAt(b)}, -uC(a,b,c){var s=b.length -if(c>s)throw A.c(A.bt(c,0,s,null,null)) -return new A.Rl(b,a,c)}, -n5(a,b){return this.uC(a,b,0)}, -nO(a,b,c){var s,r,q=null -if(c<0||c>b.length)throw A.c(A.bt(c,0,b.length,q,q)) -s=a.length -if(c+s>b.length)return q -for(r=0;rr)return!1 -return b===this.bU(a,r-s)}, -Ph(a,b,c){A.akW(0,0,a.length,"startIndex") -return A.aII(a,b,c,0)}, -t4(a,b){var s=A.b(a.split(b),t.s) -return s}, -iR(a,b,c,d){var s=A.er(b,c,a.length,null,null) -return A.amw(a,b,s,d)}, -cQ(a,b,c){var s -if(c<0||c>a.length)throw A.c(A.bt(c,0,a.length,null,null)) -if(typeof b=="string"){s=c+b.length -if(s>a.length)return!1 -return b===a.substring(c,s)}return J.anW(b,a,c)!=null}, -bl(a,b){return this.cQ(a,b,0)}, -N(a,b,c){return a.substring(b,A.er(b,c,a.length,null,null))}, -bU(a,b){return this.N(a,b,null)}, -DW(a){return a.toLowerCase()}, -jM(a){var s,r,q,p=a.trim(),o=p.length -if(o===0)return p -if(this.ac(p,0)===133){s=J.aku(p,1) -if(s===o)return""}else s=0 -r=o-1 -q=this.ak(p,r)===133?J.akv(p,r):o -if(s===0&&q===o)return p -return p.substring(s,q)}, -agO(a){var s,r -if(typeof a.trimLeft!="undefined"){s=a.trimLeft() -if(s.length===0)return s -r=this.ac(s,0)===133?J.aku(s,1):0}else{r=J.aku(a,0) -s=a}if(r===0)return s -if(r===s.length)return"" -return s.substring(r)}, -E3(a){var s,r,q -if(typeof a.trimRight!="undefined"){s=a.trimRight() -r=s.length -if(r===0)return s -q=r-1 -if(this.ak(s,q)===133)r=J.akv(s,q)}else{r=J.akv(a,a.length) -s=a}if(r===s.length)return s -if(r===0)return"" -return s.substring(0,r)}, -W(a,b){var s,r -if(0>=b)return"" -if(b===1||a.length===0)return a -if(b!==b>>>0)throw A.c(B.x9) -for(s=a,r="";!0;){if((b&1)===1)r=s+r -b=b>>>1 -if(b===0)break -s+=s}return r}, -m2(a,b,c){var s=b-a.length -if(s<=0)return a -return this.W(c,s)+a}, -afe(a,b){var s=b-a.length -if(s<=0)return a -return a+this.W(" ",s)}, -iA(a,b,c){var s -if(c<0||c>a.length)throw A.c(A.bt(c,0,a.length,null,null)) -s=a.indexOf(b,c) -return s}, -eJ(a,b){return this.iA(a,b,0)}, -vS(a,b,c){var s,r -if(c==null)c=a.length -else if(c<0||c>a.length)throw A.c(A.bt(c,0,a.length,null,null)) -s=b.length -r=a.length -if(c+s>r)c=r-s -return a.lastIndexOf(b,c)}, -nL(a,b){return this.vS(a,b,null)}, -lG(a,b,c){var s=a.length -if(c>s)throw A.c(A.bt(c,0,s,null,null)) -return A.amv(a,b,c)}, -A(a,b){return this.lG(a,b,0)}, -aW(a,b){var s -if(a===b)s=0 -else s=a>6}r=r+((r&67108863)<<3)&536870911 -r^=r>>11 -return r+((r&16383)<<15)&536870911}, -gdA(a){return B.dB}, -gp(a){return a.length}, -h(a,b){if(!(b>=0&&b").az(s.z[1]).j("FE<1,2>"))}, -gp(a){return J.bP(this.gha())}, -gS(a){return J.hy(this.gha())}, -gbZ(a){return J.EU(this.gha())}, -fu(a,b){var s=A.n(this) -return A.n4(J.U4(this.gha(),b),s.c,s.z[1])}, -i_(a,b){var s=A.n(this) -return A.n4(J.aob(this.gha(),b),s.c,s.z[1])}, -aY(a,b){return A.n(this).z[1].a(J.pN(this.gha(),b))}, -gJ(a){return A.n(this).z[1].a(J.v8(this.gha()))}, -gR(a){return A.n(this).z[1].a(J.v9(this.gha()))}, -A(a,b){return J.TS(this.gha(),b)}, -i(a){return J.bX(this.gha())}} -A.FE.prototype={ -t(){return this.a.t()}, -gH(a){var s=this.a -return this.$ti.z[1].a(s.gH(s))}} -A.n3.prototype={ -gha(){return this.a}} -A.Bv.prototype={$iV:1} -A.Ba.prototype={ -h(a,b){return this.$ti.z[1].a(J.ag(this.a,b))}, -n(a,b,c){J.cR(this.a,b,this.$ti.c.a(c))}, -sp(a,b){J.ao7(this.a,b)}, -E(a,b){J.fN(this.a,this.$ti.c.a(b))}, -dk(a,b){var s=b==null?null:new A.abO(this,b) -J.ajS(this.a,s)}, -B(a,b){return J.l7(this.a,b)}, -eX(a){return this.$ti.z[1].a(J.ao_(this.a))}, -mm(a,b,c){var s=this.$ti -return A.n4(J.ayQ(this.a,b,c),s.c,s.z[1])}, -bh(a,b,c,d,e){var s=this.$ti -J.azi(this.a,b,c,A.n4(d,s.z[1],s.c),e)}, -d6(a,b,c,d){return this.bh(a,b,c,d,0)}, -$iV:1, -$ix:1} -A.abO.prototype={ -$2(a,b){var s=this.a.$ti.z[1] -return this.b.$2(s.a(a),s.a(b))}, -$S(){return this.a.$ti.j("q(1,1)")}} -A.cu.prototype={ -uN(a,b){return new A.cu(this.a,this.$ti.j("@<1>").az(b).j("cu<1,2>"))}, -gha(){return this.a}} -A.n5.prototype={ -ik(a,b,c){var s=this.$ti -return new A.n5(this.a,s.j("@<1>").az(s.z[1]).az(b).az(c).j("n5<1,2,3,4>"))}, -ap(a,b){return J.eD(this.a,b)}, -h(a,b){return this.$ti.j("4?").a(J.ag(this.a,b))}, -n(a,b,c){var s=this.$ti -J.cR(this.a,s.c.a(b),s.z[1].a(c))}, -bs(a,b,c){var s=this.$ti -return s.z[3].a(J.EV(this.a,s.c.a(b),new A.Vw(this,c)))}, -B(a,b){return this.$ti.j("4?").a(J.l7(this.a,b))}, -Y(a,b){J.eE(this.a,new A.Vv(this,b))}, -gba(a){var s=this.$ti -return A.n4(J.U0(this.a),s.c,s.z[2])}, -gb2(a){var s=this.$ti -return A.n4(J.ayE(this.a),s.z[1],s.z[3])}, -gp(a){return J.bP(this.a)}, -gS(a){return J.hy(this.a)}, -gbZ(a){return J.EU(this.a)}, -geP(a){var s=J.ayw(this.a) -return s.iH(s,new A.Vu(this),this.$ti.j("aw<3,4>"))}} -A.Vw.prototype={ -$0(){return this.a.$ti.z[1].a(this.b.$0())}, -$S(){return this.a.$ti.j("2()")}} -A.Vv.prototype={ -$2(a,b){var s=this.a.$ti -this.b.$2(s.z[2].a(a),s.z[3].a(b))}, -$S(){return this.a.$ti.j("~(1,2)")}} -A.Vu.prototype={ -$1(a){var s=this.a.$ti,r=s.z[3] -return new A.aw(s.z[2].a(a.gcG(a)),r.a(a.gl(a)),s.j("@<3>").az(r).j("aw<1,2>"))}, -$S(){return this.a.$ti.j("aw<3,4>(aw<1,2>)")}} -A.j_.prototype={ -i(a){return"LateInitializationError: "+this.a}} -A.fn.prototype={ -gp(a){return this.a.length}, -h(a,b){return B.b.ak(this.a,b)}} -A.ajf.prototype={ -$0(){return A.cU(null,t.P)}, -$S:92} -A.a72.prototype={} -A.V.prototype={} -A.bl.prototype={ -ga1(a){return new A.cL(this,this.gp(this))}, -Y(a,b){var s,r=this,q=r.gp(r) -for(s=0;s").az(c).j("az<1,2>"))}, -o8(a,b){var s,r,q=this,p=q.gp(q) -if(p===0)throw A.c(A.bB()) -s=q.aY(0,0) -for(r=1;rs)throw A.c(A.bt(r,0,s,"start",null))}}, -ga_N(){var s=J.bP(this.a),r=this.c -if(r==null||r>s)return s -return r}, -ga7D(){var s=J.bP(this.a),r=this.b -if(r>s)return s -return r}, -gp(a){var s,r=J.bP(this.a),q=this.b -if(q>=r)return 0 -s=this.c -if(s==null||s>=r)return r-q -return s-q}, -aY(a,b){var s=this,r=s.ga7D()+b -if(b<0||r>=s.ga_N())throw A.c(A.bY(b,s,"index",null,null)) -return J.pN(s.a,r)}, -fu(a,b){var s,r,q=this -A.cZ(b,"count") -s=q.b+b -r=q.c -if(r!=null&&s>=r)return new A.jS(q.$ti.j("jS<1>")) -return A.eP(q.a,s,r,q.$ti.c)}, -i_(a,b){var s,r,q,p=this -A.cZ(b,"count") -s=p.c -r=p.b -q=r+b -if(s==null)return A.eP(p.a,r,q,p.$ti.c) -else{if(s=o){r.d=null -return!1}r.d=p.aY(q,s);++r.c -return!0}} -A.d3.prototype={ -ga1(a){return new A.eq(J.av(this.a),this.b)}, -gp(a){return J.bP(this.a)}, -gS(a){return J.hy(this.a)}, -gJ(a){return this.b.$1(J.v8(this.a))}, -gR(a){return this.b.$1(J.v9(this.a))}, -aY(a,b){return this.b.$1(J.pN(this.a,b))}} -A.nj.prototype={$iV:1} -A.eq.prototype={ -t(){var s=this,r=s.b -if(r.t()){s.a=s.c.$1(r.gH(r)) -return!0}s.a=null -return!1}, -gH(a){var s=this.a -return s==null?A.n(this).z[1].a(s):s}} -A.az.prototype={ -gp(a){return J.bP(this.a)}, -aY(a,b){return this.b.$1(J.pN(this.a,b))}} -A.au.prototype={ -ga1(a){return new A.p2(J.av(this.a),this.b)}, -iH(a,b,c){return new A.d3(this,b,this.$ti.j("@<1>").az(c).j("d3<1,2>"))}} -A.p2.prototype={ -t(){var s,r -for(s=this.a,r=this.b;s.t();)if(r.$1(s.gH(s)))return!0 -return!1}, -gH(a){var s=this.a -return s.gH(s)}} -A.hH.prototype={ -ga1(a){return new A.qq(J.av(this.a),this.b,B.cS)}} -A.qq.prototype={ -gH(a){var s=this.d -return s==null?A.n(this).z[1].a(s):s}, -t(){var s,r,q=this,p=q.c -if(p==null)return!1 -for(s=q.a,r=q.b;!p.t();){q.d=null -if(s.t()){q.c=null -p=J.av(r.$1(s.gH(s))) -q.c=p}else return!1}p=q.c -q.d=p.gH(p) -return!0}} -A.oO.prototype={ -ga1(a){return new A.LC(J.av(this.a),this.b)}} -A.ww.prototype={ -gp(a){var s=J.bP(this.a),r=this.b -if(s>r)return r -return s}, -$iV:1} -A.LC.prototype={ -t(){if(--this.b>=0)return this.a.t() -this.b=-1 -return!1}, -gH(a){var s -if(this.b<0){A.n(this).c.a(null) -return null}s=this.a -return s.gH(s)}} -A.ku.prototype={ -fu(a,b){A.fS(b,"count") -A.cZ(b,"count") -return new A.ku(this.a,this.b+b,A.n(this).j("ku<1>"))}, -ga1(a){return new A.L4(J.av(this.a),this.b)}} -A.qm.prototype={ -gp(a){var s=J.bP(this.a)-this.b -if(s>=0)return s -return 0}, -fu(a,b){A.fS(b,"count") -A.cZ(b,"count") -return new A.qm(this.a,this.b+b,this.$ti)}, -$iV:1} -A.L4.prototype={ -t(){var s,r -for(s=this.a,r=0;r"))}, -fu(a,b){A.cZ(b,"count") -return this}, -i_(a,b){A.cZ(b,"count") -return this}, -dL(a,b){var s=this.$ti.c -return b?J.qU(0,s):J.HV(0,s)}, -dK(a){return this.dL(a,!0)}, -iW(a){return A.j0(this.$ti.c)}} -A.GU.prototype={ -t(){return!1}, -gH(a){throw A.c(A.bB())}} -A.nx.prototype={ -ga1(a){return new A.Hq(J.av(this.a),this.b)}, -gp(a){var s=this.b -return J.bP(this.a)+s.gp(s)}, -gS(a){var s -if(J.hy(this.a)){s=this.b -s=!s.ga1(s).t()}else s=!1 -return s}, -gbZ(a){var s -if(!J.EU(this.a)){s=this.b -s=!s.gS(s)}else s=!0 -return s}, -A(a,b){return J.TS(this.a,b)||this.b.A(0,b)}, -gJ(a){var s,r=J.av(this.a) -if(r.t())return r.gH(r) -s=this.b -return s.gJ(s)}, -gR(a){var s,r=this.b,q=new A.qq(J.av(r.a),r.b,B.cS) -if(q.t()){s=q.d -if(s==null)s=A.n(q).z[1].a(s) -for(r=A.n(q).z[1];q.t();){s=q.d -if(s==null)s=r.a(s)}return s}return J.v9(this.a)}} -A.Hq.prototype={ -t(){var s,r=this -if(r.a.t())return!0 -s=r.b -if(s!=null){s=new A.qq(J.av(s.a),s.b,B.cS) -r.a=s -r.b=null -return s.t()}return!1}, -gH(a){var s=this.a -return s.gH(s)}} -A.fI.prototype={ -ga1(a){return new A.tK(J.av(this.a),this.$ti.j("tK<1>"))}} -A.tK.prototype={ -t(){var s,r -for(s=this.a,r=this.$ti.c;s.t();)if(r.b(s.gH(s)))return!0 -return!1}, -gH(a){var s=this.a -return this.$ti.c.a(s.gH(s))}} -A.wH.prototype={ -sp(a,b){throw A.c(A.N("Cannot change the length of a fixed-length list"))}, -E(a,b){throw A.c(A.N("Cannot add to a fixed-length list"))}, -B(a,b){throw A.c(A.N("Cannot remove from a fixed-length list"))}, -eX(a){throw A.c(A.N("Cannot remove from a fixed-length list"))}} -A.M5.prototype={ -n(a,b,c){throw A.c(A.N("Cannot modify an unmodifiable list"))}, -sp(a,b){throw A.c(A.N("Cannot change the length of an unmodifiable list"))}, -E(a,b){throw A.c(A.N("Cannot add to an unmodifiable list"))}, -B(a,b){throw A.c(A.N("Cannot remove from an unmodifiable list"))}, -dk(a,b){throw A.c(A.N("Cannot modify an unmodifiable list"))}, -eX(a){throw A.c(A.N("Cannot remove from an unmodifiable list"))}, -bh(a,b,c,d,e){throw A.c(A.N("Cannot modify an unmodifiable list"))}, -d6(a,b,c,d){return this.bh(a,b,c,d,0)}} -A.tH.prototype={} -A.ch.prototype={ -gp(a){return J.bP(this.a)}, -aY(a,b){var s=this.a,r=J.ax(s) -return r.aY(s,r.gp(s)-1-b)}} -A.tm.prototype={ -gv(a){var s=this._hashCode -if(s!=null)return s -s=664597*J.r(this.a)&536870911 -this._hashCode=s -return s}, -i(a){return'Symbol("'+A.e(this.a)+'")'}, -k(a,b){if(b==null)return!1 -return b instanceof A.tm&&this.a==b.a}, -$ioN:1} -A.E5.prototype={} -A.nc.prototype={} -A.q9.prototype={ -ik(a,b,c){var s=A.n(this) -return A.akF(this,s.c,s.z[1],b,c)}, -gS(a){return this.gp(this)===0}, -gbZ(a){return this.gp(this)!==0}, -i(a){return A.a1G(this)}, -n(a,b,c){A.aka()}, -bs(a,b,c){A.aka()}, -B(a,b){A.aka()}, -geP(a){return this.abV(0,A.n(this).j("aw<1,2>"))}, -abV(a,b){var s=this -return A.asM(function(){var r=a -var q=0,p=1,o,n,m,l -return function $async$geP(c,d){if(c===1){o=d -q=p}while(true)switch(q){case 0:n=s.gba(s),n=n.ga1(n),m=A.n(s),m=m.j("@<1>").az(m.z[1]).j("aw<1,2>") -case 2:if(!n.t()){q=3 -break}l=n.gH(n) -q=4 -return new A.aw(l,s.h(0,l),m) -case 4:q=2 -break -case 3:return A.arI() -case 1:return A.arJ(o)}}},b)}, -jB(a,b,c,d){var s=A.z(c,d) -this.Y(0,new A.W7(this,b,s)) -return s}, -$iay:1} -A.W7.prototype={ -$2(a,b){var s=this.b.$2(a,b) -this.c.n(0,s.gcG(s),s.gl(s))}, -$S(){return A.n(this.a).j("~(1,2)")}} -A.bd.prototype={ -gp(a){return this.a}, -ap(a,b){if(typeof b!="string")return!1 -if("__proto__"===b)return!1 -return this.b.hasOwnProperty(b)}, -h(a,b){if(!this.ap(0,b))return null -return this.b[b]}, -Y(a,b){var s,r,q,p,o=this.c -for(s=o.length,r=this.b,q=0;q"))}, -gb2(a){var s=this.$ti -return A.k8(this.c,new A.W8(this),s.c,s.z[1])}} -A.W8.prototype={ -$1(a){return this.a.b[a]}, -$S(){return this.a.$ti.j("2(1)")}} -A.Bf.prototype={ -ga1(a){var s=this.a.c -return new J.fl(s,s.length)}, -gp(a){return this.a.c.length}} -A.bI.prototype={ -mM(){var s,r,q,p=this,o=p.$map -if(o==null){s=p.$ti -r=s.c -q=A.aBp(r) -o=A.hQ(null,A.aGp(),q,r,s.z[1]) -A.atq(p.a,o) -p.$map=o}return o}, -ap(a,b){return this.mM().ap(0,b)}, -h(a,b){return this.mM().h(0,b)}, -Y(a,b){this.mM().Y(0,b)}, -gba(a){var s=this.mM() -return new A.b3(s,A.n(s).j("b3<1>"))}, -gb2(a){var s=this.mM() -return s.gb2(s)}, -gp(a){return this.mM().a}} -A.ZR.prototype={ -$1(a){return this.a.b(a)}, -$S:21} -A.xc.prototype={ -k(a,b){if(b==null)return!1 -return b instanceof A.xc&&this.a.k(0,b.a)&&A.C(this)===A.C(b)}, -gv(a){return A.a3(this.a,A.C(this),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=B.c.bB([A.b1(this.$ti.c)],", ") -return this.a.i(0)+" with "+("<"+s+">")}} -A.nQ.prototype={ -$1(a){return this.a.$1$1(a,this.$ti.z[0])}, -$2(a,b){return this.a.$1$2(a,b,this.$ti.z[0])}, -$S(){return A.aI8(A.db(this.a),this.$ti)}} -A.a0D.prototype={ -gOk(){var s=this.a -return s}, -gOK(){var s,r,q,p,o=this -if(o.c===1)return B.nF -s=o.d -r=s.length-o.e.length-o.f -if(r===0)return B.nF -q=[] -for(p=0;p>>0}, -i(a){return"Closure '"+this.$_name+"' of "+("Instance of '"+A.a40(this.a)+"'")}} -A.Kx.prototype={ -i(a){return"RuntimeError: "+this.a}} -A.afO.prototype={} -A.dh.prototype={ -gp(a){return this.a}, -gS(a){return this.a===0}, -gbZ(a){return this.a!==0}, -gba(a){return new A.b3(this,A.n(this).j("b3<1>"))}, -gb2(a){var s=A.n(this) -return A.k8(new A.b3(this,s.j("b3<1>")),new A.a0N(this),s.c,s.z[1])}, -ap(a,b){var s,r -if(typeof b=="string"){s=this.b -if(s==null)return!1 -return s[b]!=null}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=this.c -if(r==null)return!1 -return r[b]!=null}else return this.NS(b)}, -NS(a){var s=this.d -if(s==null)return!1 -return this.nH(s[this.nG(a)],a)>=0}, -aaw(a,b){return new A.b3(this,A.n(this).j("b3<1>")).fD(0,new A.a0M(this,b))}, -P(a,b){J.eE(b,new A.a0L(this))}, -h(a,b){var s,r,q,p,o=null -if(typeof b=="string"){s=this.b -if(s==null)return o -r=s[b] -q=r==null?o:r.b -return q}else if(typeof b=="number"&&(b&0x3fffffff)===b){p=this.c -if(p==null)return o -r=p[b] -q=r==null?o:r.b -return q}else return this.NT(b)}, -NT(a){var s,r,q=this.d -if(q==null)return null -s=q[this.nG(a)] -r=this.nH(s,a) -if(r<0)return null -return s[r].b}, -n(a,b,c){var s,r,q=this -if(typeof b=="string"){s=q.b -q.G7(s==null?q.b=q.zI():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c -q.G7(r==null?q.c=q.zI():r,b,c)}else q.NV(b,c)}, -NV(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=p.zI() -s=p.nG(a) -r=o[s] -if(r==null)o[s]=[p.zJ(a,b)] -else{q=p.nH(r,a) -if(q>=0)r[q].b=b -else r.push(p.zJ(a,b))}}, -bs(a,b,c){var s,r,q=this -if(q.ap(0,b)){s=q.h(0,b) -return s==null?A.n(q).z[1].a(s):s}r=c.$0() -q.n(0,b,r) -return r}, -B(a,b){var s=this -if(typeof b=="string")return s.Js(s.b,b) -else if(typeof b=="number"&&(b&0x3fffffff)===b)return s.Js(s.c,b) -else return s.NU(b)}, -NU(a){var s,r,q,p,o=this,n=o.d -if(n==null)return null -s=o.nG(a) -r=n[s] -q=o.nH(r,a) -if(q<0)return null -p=r.splice(q,1)[0] -o.KC(p) -if(r.length===0)delete n[s] -return p.b}, -aG(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=s.f=null -s.a=0 -s.zH()}}, -Y(a,b){var s=this,r=s.e,q=s.r -for(;r!=null;){b.$2(r.a,r.b) -if(q!==s.r)throw A.c(A.bw(s)) -r=r.c}}, -G7(a,b,c){var s=a[b] -if(s==null)a[b]=this.zJ(b,c) -else s.b=c}, -Js(a,b){var s -if(a==null)return null -s=a[b] -if(s==null)return null -this.KC(s) -delete a[b] -return s.b}, -zH(){this.r=this.r+1&1073741823}, -zJ(a,b){var s,r=this,q=new A.a1n(a,b) -if(r.e==null)r.e=r.f=q -else{s=r.f -s.toString -q.d=s -r.f=s.c=q}++r.a -r.zH() -return q}, -KC(a){var s=this,r=a.d,q=a.c -if(r==null)s.e=q -else r.c=q -if(q==null)s.f=r -else q.d=r;--s.a -s.zH()}, -nG(a){return J.r(a)&0x3fffffff}, -nH(a,b){var s,r -if(a==null)return-1 -s=a.length -for(r=0;r"]=s -delete s[""] -return s}} -A.a0N.prototype={ -$1(a){var s=this.a,r=s.h(0,a) -return r==null?A.n(s).z[1].a(r):r}, -$S(){return A.n(this.a).j("2(1)")}} -A.a0M.prototype={ -$1(a){return J.f(this.a.h(0,a),this.b)}, -$S(){return A.n(this.a).j("y(1)")}} -A.a0L.prototype={ -$2(a,b){this.a.n(0,a,b)}, -$S(){return A.n(this.a).j("~(1,2)")}} -A.a1n.prototype={} -A.b3.prototype={ -gp(a){return this.a.a}, -gS(a){return this.a.a===0}, -ga1(a){var s=this.a,r=new A.xx(s,s.r) -r.c=s.e -return r}, -A(a,b){return this.a.ap(0,b)}, -Y(a,b){var s=this.a,r=s.e,q=s.r -for(;r!=null;){b.$1(r.a) -if(q!==s.r)throw A.c(A.bw(s)) -r=r.c}}} -A.xx.prototype={ -gH(a){return this.d}, -t(){var s,r=this,q=r.a -if(r.b!==q.r)throw A.c(A.bw(q)) -s=r.c -if(s==null){r.d=null -return!1}else{r.d=s.a -r.c=s.c -return!0}}} -A.aiY.prototype={ -$1(a){return this.a(a)}, -$S:32} -A.aiZ.prototype={ -$2(a,b){return this.a(a,b)}, -$S:235} -A.aj_.prototype={ -$1(a){return this.a(a)}, -$S:236} -A.nT.prototype={ -i(a){return"RegExp/"+this.a+"/"+this.b.flags}, -gIW(){var s=this,r=s.c -if(r!=null)return r -r=s.b -return s.c=A.akw(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, -ga4M(){var s=this,r=s.d -if(r!=null)return r -r=s.b -return s.d=A.akw(s.a+"|()",r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, -vq(a){var s=this.b.exec(a) -if(s==null)return null -return new A.uq(s)}, -RB(a){var s=this.vq(a) -if(s!=null)return s.b[0] -return null}, -uC(a,b,c){var s=b.length -if(c>s)throw A.c(A.bt(c,0,s,null,null)) -return new A.Mq(this,b,c)}, -n5(a,b){return this.uC(a,b,0)}, -HC(a,b){var s,r=this.gIW() -r.lastIndex=b -s=r.exec(a) -if(s==null)return null -return new A.uq(s)}, -a0_(a,b){var s,r=this.ga4M() -r.lastIndex=b -s=r.exec(a) -if(s==null)return null -if(s.pop()!=null)return null -return new A.uq(s)}, -nO(a,b,c){if(c<0||c>b.length)throw A.c(A.bt(c,0,b.length,null,null)) -return this.a0_(b,c)}, -$iaqv:1} -A.uq.prototype={ -gb8(a){return this.b.index}, -gaO(a){var s=this.b -return s.index+s[0].length}, -h(a,b){return this.b[b]}, -$io2:1, -$iJW:1} -A.Mq.prototype={ -ga1(a){return new A.B_(this.a,this.b,this.c)}} -A.B_.prototype={ -gH(a){var s=this.d -return s==null?t.Qz.a(s):s}, -t(){var s,r,q,p,o,n=this,m=n.b -if(m==null)return!1 -s=n.c -r=m.length -if(s<=r){q=n.a -p=q.HC(m,s) -if(p!=null){n.d=p -o=p.gaO(p) -if(p.b.index===o){if(q.b.unicode){s=n.c -q=s+1 -if(q=55296&&s<=56319){s=B.b.ak(m,q) -s=s>=56320&&s<=57343}else s=!1}else s=!1}else s=!1 -o=(s?o+1:o)+1}n.c=o -return!0}}n.b=n.d=null -return!1}} -A.tg.prototype={ -gaO(a){return this.a+this.c.length}, -h(a,b){if(b!==0)A.K(A.a49(b,null)) -return this.c}, -$io2:1, -gb8(a){return this.a}} -A.Rl.prototype={ -ga1(a){return new A.Rm(this.a,this.b,this.c)}, -gJ(a){var s=this.b,r=this.a.indexOf(s,this.c) -if(r>=0)return new A.tg(r,s) -throw A.c(A.bB())}} -A.Rm.prototype={ -t(){var s,r,q=this,p=q.c,o=q.b,n=o.length,m=q.a,l=m.length -if(p+n>l){q.d=null -return!1}s=m.indexOf(o,p) -if(s<0){q.c=l+1 -q.d=null -return!1}r=s+n -q.d=new A.tg(s,o) -q.c=r===q.c?r+1:r -return!0}, -gH(a){var s=this.d -s.toString -return s}} -A.abP.prototype={ -bm(){var s=this.b -if(s===this)throw A.c(new A.j_("Local '"+this.a+"' has not been initialized.")) -return s}, -bi(){var s=this.b -if(s===this)throw A.c(A.apE(this.a)) -return s}, -sdH(a){var s=this -if(s.b!==s)throw A.c(new A.j_("Local '"+s.a+"' has already been initialized.")) -s.b=a}} -A.o6.prototype={ -gdA(a){return B.Ro}, -LG(a,b,c){throw A.c(A.N("Int64List not supported by dart2js."))}, -$io6:1, -$ipZ:1} -A.dj.prototype={ -a49(a,b,c,d){var s=A.bt(b,0,c,d,null) -throw A.c(s)}, -GE(a,b,c,d){if(b>>>0!==b||b>c)this.a49(a,b,c,d)}, -$idj:1, -$icG:1} -A.y6.prototype={ -gdA(a){return B.Rp}, -Es(a,b,c){throw A.c(A.N("Int64 accessor not supported by dart2js."))}, -F4(a,b,c,d){throw A.c(A.N("Int64 accessor not supported by dart2js."))}, -$ic1:1} -A.r9.prototype={ -gp(a){return a.length}, -JS(a,b,c,d,e){var s,r,q=a.length -this.GE(a,b,q,"start") -this.GE(a,c,q,"end") -if(b>c)throw A.c(A.bt(b,0,c,null,null)) -s=c-b -if(e<0)throw A.c(A.b5(e,null)) -r=d.length -if(r-e0){s=Date.now()-r.c -if(s>(p+1)*o)p=B.f.lg(s,o)}q.c=p -r.d.$1(q)}, -$S:6} -A.ME.prototype={ -c3(a,b){var s,r=this -if(b==null)r.$ti.c.a(b) -if(!r.b)r.a.oV(b) -else{s=r.a -if(r.$ti.j("a7<1>").b(b))s.Gz(b) -else s.p_(b)}}, -fG(a,b){var s=this.a -if(this.b)s.f7(a,b) -else s.oW(a,b)}} -A.ahA.prototype={ -$1(a){return this.a.$2(0,a)}, -$S:15} -A.ahB.prototype={ -$2(a,b){this.a.$2(1,new A.wF(a,b))}, -$S:240} -A.ait.prototype={ -$2(a,b){this.a(a,b)}, -$S:244} -A.uk.prototype={ -i(a){return"IterationMarker("+this.b+", "+A.e(this.a)+")"}} -A.pr.prototype={ -gH(a){var s=this.c -if(s==null)return this.b -return s.gH(s)}, -t(){var s,r,q,p,o,n=this -for(;!0;){s=n.c -if(s!=null)if(s.t())return!0 -else n.c=null -r=function(a,b,c){var m,l=b -while(true)try{return a(l,m)}catch(k){m=k -l=c}}(n.a,0,1) -if(r instanceof A.uk){q=r.b -if(q===2){p=n.d -if(p==null||p.length===0){n.b=null -return!1}n.a=p.pop() -continue}else{s=r.a -if(q===3)throw s -else{o=J.av(s) -if(o instanceof A.pr){s=n.d -if(s==null)s=n.d=[] -s.push(n.a) -n.a=o.a -continue}else{n.c=o -continue}}}}else{n.b=r -return!0}}return!1}} -A.Dw.prototype={ -ga1(a){return new A.pr(this.a())}} -A.F9.prototype={ -i(a){return A.e(this.a)}, -$ibA:1, -gmC(){return this.b}} -A.ZK.prototype={ -$0(){var s,r,q -try{this.a.li(this.b.$0())}catch(q){s=A.ab(q) -r=A.aA(q) -A.asn(this.a,s,r)}}, -$S:0} -A.ZJ.prototype={ -$0(){this.c.a(null) -this.b.li(null)}, -$S:0} -A.ZQ.prototype={ -$2(a,b){var s=this,r=s.a,q=--r.b -if(r.a!=null){r.a=null -if(r.b===0||s.c)s.d.f7(a,b) -else{s.e.b=a -s.f.b=b}}else if(q===0&&!s.c)s.d.f7(s.e.bm(),s.f.bm())}, -$S:40} -A.ZP.prototype={ -$1(a){var s,r=this,q=r.a;--q.b -s=q.a -if(s!=null){J.cR(s,r.b,a) -if(q.b===0)r.c.p_(A.ft(s,!0,r.w))}else if(q.b===0&&!r.e)r.c.f7(r.f.bm(),r.r.bm())}, -$S(){return this.w.j("aG(0)")}} -A.ZM.prototype={ -$1(a){var s=this.a -if((s.a.a&30)===0)s.c3(0,a)}, -$S(){return this.b.j("~(0)")}} -A.ZL.prototype={ -$2(a,b){var s=this.a -if((s.a.a&30)===0)s.fG(a,b)}, -$S:40} -A.ZO.prototype={ -$0(){var s,r,q=this.a -if(!q.t())return!1 -s=q.d -q=s==null?A.n(q).c.a(s):s -r=this.b.$1(q) -if(t.L0.b(r))return r.aV(0,A.aH1(),t.y) -return!0}, -$S:247} -A.ZN.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k=this -for(p=t.wF,o=k.a;a;){s=null -try{s=o.$0()}catch(n){r=A.ab(n) -q=A.aA(n) -p=r -m=q -q=m==null?A.vv(p):m -k.b.oW(p,q) -return}if(p.b(s)){p=s -o=k.c -l=o.b -if(l===o)A.K(A.e2(o.a)) -J.aoc(p,l,k.b.gyv(),t.H) -return}a=A.pu(s)}k.b.li(null)}, -$S:5} -A.ZH.prototype={ -$2(a,b){return this.a.$2(this.b.a(a),b)}, -$S(){return this.c.j("0/(D,c7)")}} -A.ZI.prototype={ -$1(a){var s -if(this.a.b(a))s=!0 -else s=!1 -return s}, -$S:248} -A.tU.prototype={ -fG(a,b){A.eC(a,"error",t.K) -if((this.a.a&30)!==0)throw A.c(A.X("Future already completed")) -if(b==null)b=A.vv(a) -this.f7(a,b)}, -jf(a){return this.fG(a,null)}} -A.aI.prototype={ -c3(a,b){var s=this.a -if((s.a&30)!==0)throw A.c(A.X("Future already completed")) -s.oV(b)}, -eg(a){return this.c3(a,null)}, -f7(a,b){this.a.oW(a,b)}} -A.Dv.prototype={ -c3(a,b){var s=this.a -if((s.a&30)!==0)throw A.c(A.X("Future already completed")) -s.li(b)}, -f7(a,b){this.a.f7(a,b)}} -A.jA.prototype={ -aeg(a){if((this.c&15)!==6)return!0 -return this.b.b.DQ(this.d,a.a)}, -acF(a){var s,r=this.e,q=null,p=a.a,o=this.b.b -if(t.Hg.b(r))q=o.agm(r,p,a.b) -else q=o.DQ(r,p) -try{p=q -return p}catch(s){if(t.ns.b(A.ab(s))){if((this.c&1)!==0)throw A.c(A.b5("The error handler of Future.then must return a value of the returned future's type","onError")) -throw A.c(A.b5("The error handler of Future.catchError must return a value of the future's type","onError"))}else throw s}}} -A.a4.prototype={ -fp(a,b,c,d){var s,r,q=$.a5 -if(q===B.ae){if(c!=null&&!t.Hg.b(c)&&!t.C_.b(c))throw A.c(A.fR(c,"onError",u.w))}else if(c!=null)c=A.asR(c,q) -s=new A.a4(q,d.j("a4<0>")) -r=c==null?1:3 -this.oS(new A.jA(s,r,b,c,this.$ti.j("@<1>").az(d).j("jA<1,2>"))) -return s}, -aV(a,b,c){return this.fp(a,b,null,c)}, -Kq(a,b,c){var s=new A.a4($.a5,c.j("a4<0>")) -this.oS(new A.jA(s,3,a,b,this.$ti.j("@<1>").az(c).j("jA<1,2>"))) -return s}, -lB(a,b){var s=this.$ti,r=$.a5,q=new A.a4(r,s) -if(r!==B.ae)a=A.asR(a,r) -r=b==null?2:6 -this.oS(new A.jA(q,r,b,a,s.j("@<1>").az(s.c).j("jA<1,2>"))) -return q}, -hI(a){return this.lB(a,null)}, -fU(a){var s=this.$ti,r=new A.a4($.a5,s) -this.oS(new A.jA(r,8,a,null,s.j("@<1>").az(s.c).j("jA<1,2>"))) -return r}, -a76(a){this.a=this.a&1|16 -this.c=a}, -yo(a){this.a=a.a&30|this.a&1 -this.c=a.c}, -oS(a){var s=this,r=s.a -if(r<=3){a.a=s.c -s.c=a}else{if((r&4)!==0){r=s.c -if((r.a&24)===0){r.oS(a) -return}s.yo(r)}A.uV(null,null,s.b,new A.acR(s,a))}}, -Jk(a){var s,r,q,p,o,n=this,m={} -m.a=a -if(a==null)return -s=n.a -if(s<=3){r=n.c -n.c=a -if(r!=null){q=a.a -for(p=a;q!=null;p=q,q=o)o=q.a -p.a=r}}else{if((s&4)!==0){s=n.c -if((s.a&24)===0){s.Jk(a) -return}n.yo(s)}m.a=n.u8(a) -A.uV(null,null,n.b,new A.acZ(m,n))}}, -u6(){var s=this.c -this.c=null -return this.u8(s)}, -u8(a){var s,r,q -for(s=a,r=null;s!=null;r=s,s=q){q=s.a -s.a=r}return r}, -yg(a){var s,r,q,p=this -p.a^=2 -try{a.fp(0,new A.acV(p),new A.acW(p),t.P)}catch(q){s=A.ab(q) -r=A.aA(q) -A.fk(new A.acX(p,s,r))}}, -li(a){var s,r=this,q=r.$ti -if(q.j("a7<1>").b(a))if(q.b(a))A.acU(a,r) -else r.yg(a) -else{s=r.u6() -r.a=8 -r.c=a -A.uc(r,s)}}, -p_(a){var s=this,r=s.u6() -s.a=8 -s.c=a -A.uc(s,r)}, -f7(a,b){var s=this.u6() -this.a76(A.UH(a,b)) -A.uc(this,s)}, -oV(a){if(this.$ti.j("a7<1>").b(a)){this.Gz(a) -return}this.YL(a)}, -YL(a){this.a^=2 -A.uV(null,null,this.b,new A.acT(this,a))}, -Gz(a){var s=this -if(s.$ti.b(a)){if((a.a&16)!==0){s.a^=2 -A.uV(null,null,s.b,new A.acY(s,a))}else A.acU(a,s) -return}s.yg(a)}, -oW(a,b){this.a^=2 -A.uV(null,null,this.b,new A.acS(this,a,b))}, -$ia7:1} -A.acR.prototype={ -$0(){A.uc(this.a,this.b)}, -$S:0} -A.acZ.prototype={ -$0(){A.uc(this.b,this.a.a)}, -$S:0} -A.acV.prototype={ -$1(a){var s,r,q,p=this.a -p.a^=2 -try{p.p_(p.$ti.c.a(a))}catch(q){s=A.ab(q) -r=A.aA(q) -p.f7(s,r)}}, -$S:7} -A.acW.prototype={ -$2(a,b){this.a.f7(a,b)}, -$S:70} -A.acX.prototype={ -$0(){this.a.f7(this.b,this.c)}, -$S:0} -A.acT.prototype={ -$0(){this.a.p_(this.b)}, -$S:0} -A.acY.prototype={ -$0(){A.acU(this.b,this.a)}, -$S:0} -A.acS.prototype={ -$0(){this.a.f7(this.b,this.c)}, -$S:0} -A.ad1.prototype={ -$0(){var s,r,q,p,o,n,m=this,l=null -try{q=m.a.a -l=q.b.b.f_(q.d)}catch(p){s=A.ab(p) -r=A.aA(p) -q=m.c&&m.b.a.c.a===s -o=m.a -if(q)o.c=m.b.a.c -else o.c=A.UH(s,r) -o.b=!0 -return}if(l instanceof A.a4&&(l.a&24)!==0){if((l.a&16)!==0){q=m.a -q.c=l.c -q.b=!0}return}if(t.L0.b(l)){n=m.b.a -q=m.a -q.c=J.ajT(l,new A.ad2(n),t.z) -q.b=!1}}, -$S:0} -A.ad2.prototype={ -$1(a){return this.a}, -$S:260} -A.ad0.prototype={ -$0(){var s,r,q,p,o -try{q=this.a -p=q.a -q.c=p.b.b.DQ(p.d,this.b)}catch(o){s=A.ab(o) -r=A.aA(o) -q=this.a -q.c=A.UH(s,r) -q.b=!0}}, -$S:0} -A.ad_.prototype={ -$0(){var s,r,q,p,o,n,m=this -try{s=m.a.a.c -p=m.b -if(p.a.aeg(s)&&p.a.e!=null){p.c=p.a.acF(s) -p.b=!1}}catch(o){r=A.ab(o) -q=A.aA(o) -p=m.a.a.c -n=m.b -if(p.a===r)n.c=p -else n.c=A.UH(r,q) -n.b=!0}}, -$S:0} -A.MF.prototype={} -A.d_.prototype={ -gp(a){var s={},r=new A.a4($.a5,t.wJ) -s.a=0 -this.iG(new A.a8S(s,this),!0,new A.a8T(s,r),r.gyv()) -return r}, -gJ(a){var s=new A.a4($.a5,A.n(this).j("a4")),r=this.iG(null,!0,new A.a8Q(s),s.gyv()) -r.Ou(new A.a8R(this,r,s)) -return s}} -A.a8P.prototype={ -$0(){var s=this.a -return new A.BX(new J.fl(s,s.length))}, -$S(){return this.b.j("BX<0>()")}} -A.a8S.prototype={ -$1(a){++this.a.a}, -$S(){return A.n(this.b).j("~(d_.T)")}} -A.a8T.prototype={ -$0(){this.b.li(this.a.a)}, -$S:0} -A.a8Q.prototype={ -$0(){var s,r,q,p -try{q=A.bB() -throw A.c(q)}catch(p){s=A.ab(p) -r=A.aA(p) -A.asn(this.a,s,r)}}, -$S:0} -A.a8R.prototype={ -$1(a){A.aFv(this.b,this.c,a)}, -$S(){return A.n(this.a).j("~(d_.T)")}} -A.ky.prototype={} -A.ie.prototype={} -A.uL.prototype={ -ga5t(){if((this.b&8)===0)return this.a -return this.a.gEf()}, -yX(){var s,r=this -if((r.b&8)===0){s=r.a -return s==null?r.a=new A.Dr():s}s=r.a.gEf() -return s}, -gAl(){var s=this.a -return(this.b&8)!==0?s.gEf():s}, -yb(){if((this.b&4)!==0)return new A.kx("Cannot add event after closing") -return new A.kx("Cannot add event while adding a stream")}, -Hy(){var s=this.c -if(s==null)s=this.c=(this.b&2)!==0?$.EL():new A.a4($.a5,t.U) -return s}, -E(a,b){if(this.b>=4)throw A.c(this.yb()) -this.tk(0,b)}, -n4(a,b){var s,r=this -A.eC(a,"error",t.K) -s=r.b -if(s>=4)throw A.c(r.yb()) -if((s&1)!==0)r.ps(a,b) -else if((s&3)===0)r.yX().E(0,new A.Bk(a,b))}, -a9d(a){return this.n4(a,null)}, -eD(a){var s=this,r=s.b -if((r&4)!==0)return s.Hy() -if(r>=4)throw A.c(s.yb()) -s.GR() -return s.Hy()}, -GR(){var s=this.b|=4 -if((s&1)!==0)this.pr() -else if((s&3)===0)this.yX().E(0,B.fm)}, -tk(a,b){var s=this.b -if((s&1)!==0)this.pq(b) -else if((s&3)===0)this.yX().E(0,new A.u_(b))}, -a7K(a,b,c,d){var s,r,q,p,o,n,m,l,k=this -if((k.b&3)!==0)throw A.c(A.X("Stream has already been listened to.")) -s=$.a5 -r=d?1:0 -q=A.abi(s,a) -p=A.aln(s,b) -o=c==null?A.at5():c -n=new A.tW(k,q,p,o,s,r,A.n(k).j("tW<1>")) -m=k.ga5t() -r=k.b|=1 -if((r&8)!==0){l=k.a -l.sEf(n) -l.wo(0)}else k.a=n -n.JR(m) -n.zd(new A.ago(k)) -return n}, -a66(a){var s,r,q,p,o,n,m,l=this,k=null -if((l.b&8)!==0)k=l.a.aA(0) -l.a=null -l.b=l.b&4294967286|2 -s=l.r -if(s!=null)if(k==null)try{r=s.$0() -if(t.uz.b(r))k=r}catch(o){q=A.ab(o) -p=A.aA(o) -n=new A.a4($.a5,t.U) -n.oW(q,p) -k=n}else k=k.fU(s) -m=new A.agn(l) -if(k!=null)k=k.fU(m) -else m.$0() -return k}, -$iiP:1} -A.ago.prototype={ -$0(){A.am0(this.a.d)}, -$S:0} -A.agn.prototype={ -$0(){var s=this.a.c -if(s!=null&&(s.a&30)===0)s.oV(null)}, -$S:0} -A.MG.prototype={ -pq(a){this.gAl().mH(new A.u_(a))}, -ps(a,b){this.gAl().mH(new A.Bk(a,b))}, -pr(){this.gAl().mH(B.fm)}} -A.mt.prototype={} -A.jz.prototype={ -yH(a,b,c,d){return this.a.a7K(a,b,c,d)}, -gv(a){return(A.e5(this.a)^892482866)>>>0}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.jz&&b.a===this.a}} -A.tW.prototype={ -zM(){return this.w.a66(this)}, -mS(){var s=this.w -if((s.b&8)!==0)s.a.Dy(0) -A.am0(s.e)}, -mT(){var s=this.w -if((s.b&8)!==0)s.a.wo(0) -A.am0(s.f)}} -A.jy.prototype={ -JR(a){var s=this -if(a==null)return -s.r=a -if(!a.gS(a)){s.e=(s.e|64)>>>0 -a.rS(s)}}, -Ou(a){this.a=A.abi(this.d,a)}, -Dz(a,b){var s,r,q=this,p=q.e -if((p&8)!==0)return -s=(p+128|4)>>>0 -q.e=s -if(p<128){r=q.r -if(r!=null)if(r.a===1)r.a=3}if((p&4)===0&&(s&32)===0)q.zd(q.gzN())}, -Dy(a){return this.Dz(a,null)}, -wo(a){var s=this,r=s.e -if((r&8)!==0)return -if(r>=128){r=s.e=r-128 -if(r<128){if((r&64)!==0){r=s.r -r=!r.gS(r)}else r=!1 -if(r)s.r.rS(s) -else{r=(s.e&4294967291)>>>0 -s.e=r -if((r&32)===0)s.zd(s.gzP())}}}}, -aA(a){var s=this,r=(s.e&4294967279)>>>0 -s.e=r -if((r&8)===0)s.y7() -r=s.f -return r==null?$.EL():r}, -y7(){var s,r=this,q=r.e=(r.e|8)>>>0 -if((q&64)!==0){s=r.r -if(s.a===1)s.a=3}if((q&32)===0)r.r=null -r.f=r.zM()}, -tk(a,b){var s=this.e -if((s&8)!==0)return -if(s<32)this.pq(b) -else this.mH(new A.u_(b))}, -Yp(a,b){var s=this.e -if((s&8)!==0)return -if(s<32)this.ps(a,b) -else this.mH(new A.Bk(a,b))}, -YK(){var s=this,r=s.e -if((r&8)!==0)return -r=(r|2)>>>0 -s.e=r -if(r<32)s.pr() -else s.mH(B.fm)}, -mS(){}, -mT(){}, -zM(){return null}, -mH(a){var s,r=this,q=r.r -if(q==null)q=new A.Dr() -r.r=q -q.E(0,a) -s=r.e -if((s&64)===0){s=(s|64)>>>0 -r.e=s -if(s<128)q.rS(r)}}, -pq(a){var s=this,r=s.e -s.e=(r|32)>>>0 -s.d.ro(s.a,a) -s.e=(s.e&4294967263)>>>0 -s.yk((r&4)!==0)}, -ps(a,b){var s,r=this,q=r.e,p=new A.abk(r,a,b) -if((q&1)!==0){r.e=(q|16)>>>0 -r.y7() -s=r.f -if(s!=null&&s!==$.EL())s.fU(p) -else p.$0()}else{p.$0() -r.yk((q&4)!==0)}}, -pr(){var s,r=this,q=new A.abj(r) -r.y7() -r.e=(r.e|16)>>>0 -s=r.f -if(s!=null&&s!==$.EL())s.fU(q) -else q.$0()}, -zd(a){var s=this,r=s.e -s.e=(r|32)>>>0 -a.$0() -s.e=(s.e&4294967263)>>>0 -s.yk((r&4)!==0)}, -yk(a){var s,r,q=this -if((q.e&64)!==0){s=q.r -s=s.gS(s)}else s=!1 -if(s){s=q.e=(q.e&4294967231)>>>0 -if((s&4)!==0)if(s<128){s=q.r -s=s==null?null:s.gS(s) -s=s!==!1}else s=!1 -else s=!1 -if(s)q.e=(q.e&4294967291)>>>0}for(;!0;a=r){s=q.e -if((s&8)!==0){q.r=null -return}r=(s&4)!==0 -if(a===r)break -q.e=(s^32)>>>0 -if(r)q.mS() -else q.mT() -q.e=(q.e&4294967263)>>>0}s=q.e -if((s&64)!==0&&s<128)q.r.rS(q)}, -$iky:1} -A.abk.prototype={ -$0(){var s,r,q=this.a,p=q.e -if((p&8)!==0&&(p&16)===0)return -q.e=(p|32)>>>0 -s=q.b -p=this.b -r=q.d -if(t.hK.b(s))r.Pv(s,p,this.c) -else r.ro(s,p) -q.e=(q.e&4294967263)>>>0}, -$S:0} -A.abj.prototype={ -$0(){var s=this.a,r=s.e -if((r&16)===0)return -s.e=(r|42)>>>0 -s.d.rn(s.c) -s.e=(s.e&4294967263)>>>0}, -$S:0} -A.uM.prototype={ -iG(a,b,c,d){return this.yH(a,d,c,b===!0)}, -ae6(a){return this.iG(a,null,null,null)}, -vV(a,b,c){return this.iG(a,null,b,c)}, -yH(a,b,c,d){return A.ary(a,b,c,d,A.n(this).c)}} -A.BH.prototype={ -yH(a,b,c,d){var s,r=this -if(r.b)throw A.c(A.X("Stream has already been listened to.")) -r.b=!0 -s=A.ary(a,b,c,d,r.$ti.c) -s.JR(r.a.$0()) -return s}} -A.BX.prototype={ -gS(a){return this.b==null}, -Nt(a){var s,r,q,p,o=this.b -if(o==null)throw A.c(A.X("No events pending.")) -s=!1 -try{if(o.t()){s=!0 -a.pq(J.ays(o))}else{this.b=null -a.pr()}}catch(p){r=A.ab(p) -q=A.aA(p) -if(!s)this.b=B.cS -a.ps(r,q)}}} -A.NB.prototype={ -gqW(a){return this.a}, -sqW(a,b){return this.a=b}} -A.u_.prototype={ -DA(a){a.pq(this.b)}} -A.Bk.prototype={ -DA(a){a.ps(this.b,this.c)}} -A.acq.prototype={ -DA(a){a.pr()}, -gqW(a){return null}, -sqW(a,b){throw A.c(A.X("No events after a done."))}} -A.Pv.prototype={ -rS(a){var s=this,r=s.a -if(r===1)return -if(r>=1){s.a=1 -return}A.fk(new A.afa(s,a)) -s.a=1}} -A.afa.prototype={ -$0(){var s=this.a,r=s.a -s.a=0 -if(r===3)return -s.Nt(this.b)}, -$S:0} -A.Dr.prototype={ -gS(a){return this.c==null}, -E(a,b){var s=this,r=s.c -if(r==null)s.b=s.c=b -else{r.sqW(0,b) -s.c=b}}, -Nt(a){var s=this.b,r=s.gqW(s) -this.b=r -if(r==null)this.c=null -s.DA(a)}} -A.Rk.prototype={} -A.ahD.prototype={ -$0(){return this.a.li(this.b)}, -$S:0} -A.By.prototype={ -E(a,b){var s=this.a -if((s.e&2)!==0)A.K(A.X("Stream is already closed")) -s.td(0,b)}, -n4(a,b){var s=this.a,r=b==null?A.vv(a):b -if((s.e&2)!==0)A.K(A.X("Stream is already closed")) -s.oN(a,r)}, -eD(a){var s=this.a -if((s.e&2)!==0)A.K(A.X("Stream is already closed")) -s.FT()}, -$iiP:1} -A.uJ.prototype={ -mS(){var s=this.x -if(s!=null)s.Dy(0)}, -mT(){var s=this.x -if(s!=null)s.wo(0)}, -zM(){var s=this.x -if(s!=null){this.x=null -return s.aA(0)}return null}, -a1t(a){var s,r,q -try{A.a(this.w,"_transformerSink").E(0,a)}catch(q){s=A.ab(q) -r=A.aA(q) -if((this.e&2)!==0)A.K(A.X("Stream is already closed")) -this.oN(s,r)}}, -a1V(a,b){var s,r,q,p=this,o="Stream is already closed" -try{A.a(p.w,"_transformerSink").n4(a,b)}catch(q){s=A.ab(q) -r=A.aA(q) -if(s===a){if((p.e&2)!==0)A.K(A.X(o)) -p.oN(a,b)}else{if((p.e&2)!==0)A.K(A.X(o)) -p.oN(s,r)}}}, -a1B(){var s,r,q,p=this -try{p.x=null -A.a(p.w,"_transformerSink").eD(0)}catch(q){s=A.ab(q) -r=A.aA(q) -if((p.e&2)!==0)A.K(A.X("Stream is already closed")) -p.oN(s,r)}}} -A.uN.prototype={ -a9H(a){var s=this.$ti -return new A.B8(this.a,a,s.j("@<1>").az(s.z[1]).j("B8<1,2>"))}} -A.B8.prototype={ -iG(a,b,c,d){var s=this.$ti,r=$.a5,q=b===!0?1:0,p=A.abi(r,a),o=A.aln(r,d),n=new A.uJ(p,o,c,r,q,s.j("@<1>").az(s.z[1]).j("uJ<1,2>")) -n.w=this.a.$1(new A.By(n)) -n.x=this.b.vV(n.ga1s(),n.ga1A(),n.ga1U()) -return n}, -vV(a,b,c){return this.iG(a,null,b,c)}} -A.ue.prototype={ -E(a,b){var s=this.d -if(s==null)throw A.c(A.X("Sink is closed")) -this.a.$2(b,s)}, -n4(a,b){var s -A.eC(a,"error",t.K) -s=this.d -if(s==null)throw A.c(A.X("Sink is closed")) -s.n4(a,b)}, -eD(a){var s,r=this.d -if(r==null)return -this.d=null -s=r.a -if((s.e&2)!==0)A.K(A.X("Stream is already closed")) -s.FT()}, -$iiP:1} -A.Dq.prototype={} -A.agp.prototype={ -$1(a){var s=this -return new A.ue(s.a,s.b,s.c,a,s.e.j("@<0>").az(s.d).j("ue<1,2>"))}, -$S(){return this.e.j("@<0>").az(this.d).j("ue<1,2>(iP<2>)")}} -A.aho.prototype={} -A.ain.prototype={ -$0(){var s=this.a,r=this.b -A.eC(s,"error",t.K) -A.eC(r,"stackTrace",t.Km) -A.aB0(s,r)}, -$S:0} -A.afT.prototype={ -rn(a){var s,r,q -try{if(B.ae===$.a5){a.$0() -return}A.asS(null,null,this,a)}catch(q){s=A.ab(q) -r=A.aA(q) -A.uU(s,r)}}, -agq(a,b){var s,r,q -try{if(B.ae===$.a5){a.$1(b) -return}A.asU(null,null,this,a,b)}catch(q){s=A.ab(q) -r=A.aA(q) -A.uU(s,r)}}, -ro(a,b){return this.agq(a,b,t.z)}, -ago(a,b,c){var s,r,q -try{if(B.ae===$.a5){a.$2(b,c) -return}A.asT(null,null,this,a,b,c)}catch(q){s=A.ab(q) -r=A.aA(q) -A.uU(s,r)}}, -Pv(a,b,c){return this.ago(a,b,c,t.z,t.z)}, -Bg(a){return new A.afV(this,a)}, -Bh(a,b){return new A.afW(this,a,b)}, -a9I(a,b,c){return new A.afU(this,a,b,c)}, -h(a,b){return null}, -agl(a){if($.a5===B.ae)return a.$0() -return A.asS(null,null,this,a)}, -f_(a){return this.agl(a,t.z)}, -agp(a,b){if($.a5===B.ae)return a.$1(b) -return A.asU(null,null,this,a,b)}, -DQ(a,b){return this.agp(a,b,t.z,t.z)}, -agn(a,b,c){if($.a5===B.ae)return a.$2(b,c) -return A.asT(null,null,this,a,b,c)}, -agm(a,b,c){return this.agn(a,b,c,t.z,t.z,t.z)}, -afL(a){return a}, -DK(a){return this.afL(a,t.z,t.z,t.z)}} -A.afV.prototype={ -$0(){return this.a.rn(this.b)}, -$S:0} -A.afW.prototype={ -$1(a){return this.a.ro(this.b,a)}, -$S(){return this.c.j("~(0)")}} -A.afU.prototype={ -$2(a,b){return this.a.Pv(this.b,a,b)}, -$S(){return this.c.j("@<0>").az(this.d).j("~(1,2)")}} -A.pc.prototype={ -gp(a){return this.a}, -gS(a){return this.a===0}, -gbZ(a){return this.a!==0}, -gba(a){return new A.pd(this,A.n(this).j("pd<1>"))}, -gb2(a){var s=A.n(this) -return A.k8(new A.pd(this,s.j("pd<1>")),new A.ad7(this),s.c,s.z[1])}, -ap(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -return r==null?!1:r[b]!=null}else return this.p5(b)}, -p5(a){var s=this.d -if(s==null)return!1 -return this.fz(this.HN(s,a),a)>=0}, -P(a,b){b.Y(0,new A.ad6(this))}, -h(a,b){var s,r,q -if(typeof b=="string"&&b!=="__proto__"){s=this.b -r=s==null?null:A.alp(s,b) -return r}else if(typeof b=="number"&&(b&1073741823)===b){q=this.c -r=q==null?null:A.alp(q,b) -return r}else return this.a0A(0,b)}, -a0A(a,b){var s,r,q=this.d -if(q==null)return null -s=this.HN(q,b) -r=this.fz(s,b) -return r<0?null:s[r+1]}, -n(a,b,c){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -q.GS(s==null?q.b=A.alq():s,b,c)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -q.GS(r==null?q.c=A.alq():r,b,c)}else q.a74(b,c)}, -a74(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=A.alq() -s=p.h3(a) -r=o[s] -if(r==null){A.alr(o,s,[a,b]);++p.a -p.e=null}else{q=p.fz(r,a) -if(q>=0)r[q+1]=b -else{r.push(a,b);++p.a -p.e=null}}}, -bs(a,b,c){var s,r,q=this -if(q.ap(0,b)){s=q.h(0,b) -return s==null?A.n(q).z[1].a(s):s}r=c.$0() -q.n(0,b,r) -return r}, -B(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.jY(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.jY(s.c,b) -else return s.ka(0,b)}, -ka(a,b){var s,r,q,p,o=this,n=o.d -if(n==null)return null -s=o.h3(b) -r=n[s] -q=o.fz(r,b) -if(q<0)return null;--o.a -o.e=null -p=r.splice(q,2)[1] -if(0===r.length)delete n[s] -return p}, -Y(a,b){var s,r,q,p,o,n=this,m=n.yx() -for(s=m.length,r=A.n(n).z[1],q=0;q=r.length){s.d=null -return!1}else{s.d=r[q] -s.c=q+1 -return!0}}} -A.C6.prototype={ -nG(a){return A.mL(a)&1073741823}, -nH(a,b){var s,r,q -if(a==null)return-1 -s=a.length -for(r=0;r"))}, -ga1(a){return new A.pe(this,this.tm())}, -gp(a){return this.a}, -gS(a){return this.a===0}, -gbZ(a){return this.a!==0}, -A(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -return r==null?!1:r[b]!=null}else return this.yA(b)}, -yA(a){var s=this.d -if(s==null)return!1 -return this.fz(s[this.h3(a)],a)>=0}, -E(a,b){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.oZ(s==null?q.b=A.als():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.oZ(r==null?q.c=A.als():r,b)}else return q.eM(0,b)}, -eM(a,b){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.als() -s=q.h3(b) -r=p[s] -if(r==null)p[s]=[b] -else{if(q.fz(r,b)>=0)return!1 -r.push(b)}++q.a -q.e=null -return!0}, -P(a,b){var s -for(s=J.av(b);s.t();)this.E(0,s.gH(s))}, -B(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.jY(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.jY(s.c,b) -else return s.ka(0,b)}, -ka(a,b){var s,r,q,p=this,o=p.d -if(o==null)return!1 -s=p.h3(b) -r=o[s] -q=p.fz(r,b) -if(q<0)return!1;--p.a -p.e=null -r.splice(q,1) -if(0===r.length)delete o[s] -return!0}, -aG(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=null -s.a=0}}, -tm(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e -if(h!=null)return h -h=A.b7(i.a,null,!1,t.z) -s=i.b -if(s!=null){r=Object.getOwnPropertyNames(s) -q=r.length -for(p=0,o=0;o=r.length){s.d=null -return!1}else{s.d=r[q] -s.c=q+1 -return!0}}} -A.hq.prototype={ -pj(){return new A.hq(A.n(this).j("hq<1>"))}, -ga1(a){var s=new A.kP(this,this.r) -s.c=this.e -return s}, -gp(a){return this.a}, -gS(a){return this.a===0}, -gbZ(a){return this.a!==0}, -A(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -if(s==null)return!1 -return s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -if(r==null)return!1 -return r[b]!=null}else return this.yA(b)}, -yA(a){var s=this.d -if(s==null)return!1 -return this.fz(s[this.h3(a)],a)>=0}, -Y(a,b){var s=this,r=s.e,q=s.r -for(;r!=null;){b.$1(r.a) -if(q!==s.r)throw A.c(A.bw(s)) -r=r.b}}, -gJ(a){var s=this.e -if(s==null)throw A.c(A.X("No elements")) -return s.a}, -gR(a){var s=this.f -if(s==null)throw A.c(A.X("No elements")) -return s.a}, -E(a,b){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.oZ(s==null?q.b=A.alt():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.oZ(r==null?q.c=A.alt():r,b)}else return q.eM(0,b)}, -eM(a,b){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.alt() -s=q.h3(b) -r=p[s] -if(r==null)p[s]=[q.yr(b)] -else{if(q.fz(r,b)>=0)return!1 -r.push(q.yr(b))}return!0}, -B(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.jY(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.jY(s.c,b) -else return s.ka(0,b)}, -ka(a,b){var s,r,q,p,o=this,n=o.d -if(n==null)return!1 -s=o.h3(b) -r=n[s] -q=o.fz(r,b) -if(q<0)return!1 -p=r.splice(q,1)[0] -if(0===r.length)delete n[s] -o.GT(p) -return!0}, -a0a(a,b){var s,r,q,p,o=this,n=o.e -for(;n!=null;n=r){s=n.a -r=n.b -q=o.r -p=a.$1(s) -if(q!==o.r)throw A.c(A.bw(o)) -if(!0===p)o.B(0,s)}}, -aG(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=s.f=null -s.a=0 -s.yq()}}, -oZ(a,b){if(a[b]!=null)return!1 -a[b]=this.yr(b) -return!0}, -jY(a,b){var s -if(a==null)return!1 -s=a[b] -if(s==null)return!1 -this.GT(s) -delete a[b] -return!0}, -yq(){this.r=this.r+1&1073741823}, -yr(a){var s,r=this,q=new A.adX(a) -if(r.e==null)r.e=r.f=q -else{s=r.f -s.toString -q.c=s -r.f=s.b=q}++r.a -r.yq() -return q}, -GT(a){var s=this,r=a.c,q=a.b -if(r==null)s.e=q -else r.b=q -if(q==null)s.f=r -else q.c=r;--s.a -s.yq()}, -h3(a){return J.r(a)&1073741823}, -fz(a,b){var s,r -if(a==null)return-1 -s=a.length -for(r=0;r>")),this.c,s.j("@<1>").az(s.j("cl<1>")).j("d9<1,2>"));s.t();)if(J.f(s.gH(s),b))return!0 -return!1}, -dL(a,b){return A.ft(this,!0,this.$ti.c)}, -dK(a){return this.dL(a,!0)}, -iW(a){return A.k7(this,this.$ti.c)}, -gp(a){var s,r=this.$ti,q=new A.d9(this,A.b([],r.j("o>")),this.c,r.j("@<1>").az(r.j("cl<1>")).j("d9<1,2>")) -for(s=0;q.t();)++s -return s}, -gS(a){var s=this.$ti -return!new A.d9(this,A.b([],s.j("o>")),this.c,s.j("@<1>").az(s.j("cl<1>")).j("d9<1,2>")).t()}, -gbZ(a){return this.d!=null}, -i_(a,b){return A.a9a(this,b,this.$ti.c)}, -fu(a,b){return A.a8n(this,b,this.$ti.c)}, -gJ(a){var s=this.$ti,r=new A.d9(this,A.b([],s.j("o>")),this.c,s.j("@<1>").az(s.j("cl<1>")).j("d9<1,2>")) -if(!r.t())throw A.c(A.bB()) -return r.gH(r)}, -gR(a){var s,r=this.$ti,q=new A.d9(this,A.b([],r.j("o>")),this.c,r.j("@<1>").az(r.j("cl<1>")).j("d9<1,2>")) -if(!q.t())throw A.c(A.bB()) -do s=q.gH(q) -while(q.t()) -return s}, -aY(a,b){var s,r,q,p=this,o="index" -A.eC(b,o,t.S) -A.cZ(b,o) -for(s=p.$ti,s=new A.d9(p,A.b([],s.j("o>")),p.c,s.j("@<1>").az(s.j("cl<1>")).j("d9<1,2>")),r=0;s.t();){q=s.gH(s) -if(b===r)return q;++r}throw A.c(A.bY(b,p,o,null,r))}, -i(a){return A.akr(this,"(",")")}} -A.xd.prototype={} -A.a1o.prototype={ -$2(a,b){this.a.n(0,this.b.a(a),this.c.a(b))}, -$S:31} -A.xy.prototype={ -A(a,b){return b instanceof A.nZ&&this===b.a}, -ga1(a){return new A.C7(this,this.a,this.c)}, -gp(a){return this.b}, -gJ(a){var s -if(this.b===0)throw A.c(A.X("No such element")) -s=this.c -s.toString -return s}, -gR(a){var s -if(this.b===0)throw A.c(A.X("No such element")) -s=this.c.c -s.toString -return s}, -gS(a){return this.b===0}, -a43(a,b,c){var s,r,q=this -if(b.a!=null)throw A.c(A.X("LinkedListEntry is already in a LinkedList"));++q.a -b.a=q -s=q.b -if(s===0){b.b=b -q.c=b.c=b -q.b=s+1 -return}r=a.c -r.toString -b.c=r -b.b=a -a.c=r.b=b -q.b=s+1}} -A.C7.prototype={ -gH(a){var s=this.c -return s==null?A.n(this).c.a(s):s}, -t(){var s=this,r=s.a -if(s.b!==r.a)throw A.c(A.bw(s)) -if(r.b!==0)r=s.e&&s.d===r.gJ(r) -else r=!0 -if(r){s.c=null -return!1}s.e=!0 -r=s.d -s.c=r -s.d=r.b -return!0}} -A.nZ.prototype={} -A.xz.prototype={$iV:1,$ip:1,$ix:1} -A.O.prototype={ -ga1(a){return new A.cL(a,this.gp(a))}, -aY(a,b){return this.h(a,b)}, -Y(a,b){var s,r=this.gp(a) -for(s=0;s=0;--s){r=this.h(a,s) -if(b.$1(r))return r -if(q!==this.gp(a))throw A.c(A.bw(a))}if(c!=null)return c.$0() -throw A.c(A.bB())}, -bB(a,b){var s -if(this.gp(a)===0)return"" -s=A.Ls("",a,b) -return s.charCodeAt(0)==0?s:s}, -D_(a){return this.bB(a,"")}, -iH(a,b,c){return new A.az(a,b,A.aV(a).j("@").az(c).j("az<1,2>"))}, -fu(a,b){return A.eP(a,b,null,A.aV(a).j("O.E"))}, -i_(a,b){return A.eP(a,0,A.eC(b,"count",t.S),A.aV(a).j("O.E"))}, -dL(a,b){var s,r,q,p,o=this -if(o.gS(a)){s=A.aV(a).j("O.E") -return b?J.qU(0,s):J.HV(0,s)}r=o.h(a,0) -q=A.b7(o.gp(a),r,b,A.aV(a).j("O.E")) -for(p=1;p").az(b).j("cu<1,2>"))}, -eX(a){var s,r=this -if(r.gp(a)===0)throw A.c(A.bB()) -s=r.h(a,r.gp(a)-1) -r.sp(a,r.gp(a)-1) -return s}, -dk(a,b){A.aqV(a,b==null?A.aHg():b)}, -Z(a,b){var s=A.ap(a,!0,A.aV(a).j("O.E")) -B.c.P(s,b) -return s}, -bG(a,b,c){var s=this.gp(a) -if(c==null)c=s -A.er(b,c,s,null,null) -return A.ft(this.mm(a,b,c),!0,A.aV(a).j("O.E"))}, -ey(a,b){return this.bG(a,b,null)}, -mm(a,b,c){A.er(b,c,this.gp(a),null,null) -return A.eP(a,b,c,A.aV(a).j("O.E"))}, -acb(a,b,c,d){var s -A.er(b,c,this.gp(a),null,null) -for(s=b;s").b(d)){r=e -q=d}else{p=J.U4(d,e) -q=p.dL(p,!1) -r=0}p=J.ax(q) -if(r+s>p.gp(q))throw A.c(A.apw()) -if(r=0;--o)this.n(a,b+o,p.h(q,r+o)) -else for(o=0;o"))}, -jB(a,b,c,d){var s,r,q,p,o,n=A.z(c,d) -for(s=J.av(this.gba(a)),r=A.aV(a).j("aq.V");s.t();){q=s.gH(s) -p=this.h(a,q) -o=b.$2(q,p==null?r.a(p):p) -n.n(0,o.gcG(o),o.gl(o))}return n}, -AX(a,b){var s,r -for(s=J.av(b);s.t();){r=s.gH(s) -this.n(a,r.gcG(r),r.gl(r))}}, -afZ(a,b){var s,r,q,p,o=A.aV(a),n=A.b([],o.j("o")) -for(s=J.av(this.gba(a)),o=o.j("aq.V");s.t();){r=s.gH(s) -q=this.h(a,r) -if(b.$2(r,q==null?o.a(q):q))n.push(r)}for(o=n.length,p=0;p").az(s.j("aq.V")).j("Cc<1,2>"))}, -i(a){return A.a1G(a)}, -$iay:1} -A.a1I.prototype={ -$1(a){var s=this.a,r=J.ag(s,a) -if(r==null)r=A.aV(s).j("aq.V").a(r) -s=A.aV(s) -return new A.aw(a,r,s.j("@").az(s.j("aq.V")).j("aw<1,2>"))}, -$S(){return A.aV(this.a).j("aw(aq.K)")}} -A.Cc.prototype={ -gp(a){return J.bP(this.a)}, -gS(a){return J.hy(this.a)}, -gbZ(a){return J.EU(this.a)}, -gJ(a){var s=this.a,r=J.j(s) -s=r.h(s,J.v8(r.gba(s))) -return s==null?this.$ti.z[1].a(s):s}, -gR(a){var s=this.a,r=J.j(s) -s=r.h(s,J.v9(r.gba(s))) -return s==null?this.$ti.z[1].a(s):s}, -ga1(a){var s=this.a -return new A.OW(J.av(J.U0(s)),s)}} -A.OW.prototype={ -t(){var s=this,r=s.a -if(r.t()){s.c=J.ag(s.b,r.gH(r)) -return!0}s.c=null -return!1}, -gH(a){var s=this.c -return s==null?A.n(this).z[1].a(s):s}} -A.DN.prototype={ -n(a,b,c){throw A.c(A.N("Cannot modify unmodifiable map"))}, -B(a,b){throw A.c(A.N("Cannot modify unmodifiable map"))}, -bs(a,b,c){throw A.c(A.N("Cannot modify unmodifiable map"))}} -A.r6.prototype={ -ik(a,b,c){var s=this.a -return s.ik(s,b,c)}, -h(a,b){return this.a.h(0,b)}, -n(a,b,c){this.a.n(0,b,c)}, -bs(a,b,c){return this.a.bs(0,b,c)}, -ap(a,b){return this.a.ap(0,b)}, -Y(a,b){this.a.Y(0,b)}, -gS(a){var s=this.a -return s.gS(s)}, -gbZ(a){var s=this.a -return s.gbZ(s)}, -gp(a){var s=this.a -return s.gp(s)}, -gba(a){var s=this.a -return s.gba(s)}, -B(a,b){return this.a.B(0,b)}, -i(a){var s=this.a -return s.i(s)}, -gb2(a){var s=this.a -return s.gb2(s)}, -geP(a){var s=this.a -return s.geP(s)}, -jB(a,b,c,d){var s=this.a -return s.jB(s,b,c,d)}, -$iay:1} -A.kG.prototype={ -ik(a,b,c){var s=this.a -return new A.kG(s.ik(s,b,c),b.j("@<0>").az(c).j("kG<1,2>"))}} -A.Bo.prototype={ -a4q(a,b){var s=this -s.b=b -s.a=a -if(a!=null)a.b=s -if(b!=null)b.a=s}, -a8p(){var s,r=this,q=r.a -if(q!=null)q.b=r.b -s=r.b -if(s!=null)s.a=q -r.a=r.b=null}} -A.Bn.prototype={ -zV(a){var s,r,q=this -q.c=null -s=q.a -if(s!=null)s.b=q.b -r=q.b -if(r!=null)r.a=s -q.a=q.b=null -return q.d}, -bw(a){var s=this,r=s.c -if(r!=null)--r.b -s.c=null -s.a8p() -return s.d}, -oU(){return this}, -$iakg:1, -gC8(){return this.d}} -A.Bp.prototype={ -oU(){return null}, -zV(a){throw A.c(A.bB())}, -gC8(){throw A.c(A.bB())}} -A.wp.prototype={ -gp(a){return this.b}, -pB(a){var s=this.a -new A.Bn(this,a,s.$ti.j("Bn<1>")).a4q(s,s.b);++this.b}, -gJ(a){return this.a.b.gC8()}, -gR(a){return this.a.a.gC8()}, -gS(a){var s=this.a -return s.b===s}, -ga1(a){return new A.NN(this,this.a.b)}, -i(a){return A.xe(this,"{","}")}, -$iV:1} -A.NN.prototype={ -t(){var s=this,r=s.b,q=r==null?null:r.oU() -if(q==null){s.a=s.b=s.c=null -return!1}r=s.a -if(r!=q.c)throw A.c(A.bw(r)) -s.c=q.d -s.b=q.b -return!0}, -gH(a){var s=this.c -return s==null?A.n(this).c.a(s):s}} -A.xB.prototype={ -ga1(a){var s=this -return new A.C9(s,s.c,s.d,s.b)}, -gS(a){return this.b===this.c}, -gp(a){return(this.c-this.b&this.a.length-1)>>>0}, -gJ(a){var s=this,r=s.b -if(r===s.c)throw A.c(A.bB()) -r=s.a[r] -return r==null?s.$ti.c.a(r):r}, -gR(a){var s=this,r=s.b,q=s.c -if(r===q)throw A.c(A.bB()) -r=s.a -r=r[(q-1&r.length-1)>>>0] -return r==null?s.$ti.c.a(r):r}, -aY(a,b){var s,r=this -A.aqt(b,r,null,null) -s=r.a -s=s[(r.b+b&s.length-1)>>>0] -return s==null?r.$ti.c.a(s):s}, -dL(a,b){var s,r,q,p,o,n,m=this,l=m.a.length-1,k=(m.c-m.b&l)>>>0 -if(k===0){s=m.$ti.c -return b?J.qU(0,s):J.HV(0,s)}s=m.$ti.c -r=A.b7(k,m.gJ(m),b,s) -for(q=m.a,p=m.b,o=0;o>>0] -r[o]=n==null?s.a(n):n}return r}, -dK(a){return this.dL(a,!0)}, -P(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.$ti -if(j.j("x<1>").b(b)){s=b.length -r=k.gp(k) -q=r+s -p=k.a -o=p.length -if(q>=o){n=A.b7(A.apH(q+(q>>>1)),null,!1,j.j("1?")) -k.c=k.a96(n) -k.a=n -k.b=0 -B.c.bh(n,r,q,b,0) -k.c+=s}else{j=k.c -m=o-j -if(s>>0)s[p]=null -q.b=q.c=0;++q.d}}, -i(a){return A.xe(this,"{","}")}, -pB(a){var s=this,r=s.b,q=s.a -r=s.b=(r-1&q.length-1)>>>0 -q[r]=a -if(r===s.c)s.I3();++s.d}, -oc(){var s,r,q=this,p=q.b -if(p===q.c)throw A.c(A.bB());++q.d -s=q.a -r=s[p] -if(r==null)r=q.$ti.c.a(r) -s[p]=null -q.b=(p+1&s.length-1)>>>0 -return r}, -eX(a){var s,r=this,q=r.b,p=r.c -if(q===p)throw A.c(A.bB());++r.d -q=r.a -p=r.c=(p-1&q.length-1)>>>0 -s=q[p] -if(s==null)s=r.$ti.c.a(s) -q[p]=null -return s}, -eM(a,b){var s=this,r=s.a,q=s.c -r[q]=b -r=(q+1&r.length-1)>>>0 -s.c=r -if(s.b===r)s.I3();++s.d}, -I3(){var s=this,r=A.b7(s.a.length*2,null,!1,s.$ti.j("1?")),q=s.a,p=s.b,o=q.length-p -B.c.bh(r,0,o,q,p) -B.c.bh(r,o,o+s.b,s.a,0) -s.b=0 -s.c=s.a.length -s.a=r}, -a96(a){var s,r,q=this,p=q.b,o=q.c,n=q.a -if(p<=o){s=o-p -B.c.bh(a,0,s,n,p) -return s}else{r=n.length-p -B.c.bh(a,0,r,n,p) -B.c.bh(a,r,r+q.c,q.a,0) -return q.c+r}}} -A.C9.prototype={ -gH(a){var s=this.e -return s==null?A.n(this).c.a(s):s}, -t(){var s,r=this,q=r.a -if(r.c!==q.d)A.K(A.bw(q)) -s=r.d -if(s===r.b){r.e=null -return!1}q=q.a -r.e=q[s] -r.d=(s+1&q.length-1)>>>0 -return!0}} -A.cF.prototype={ -gS(a){return this.gp(this)===0}, -gbZ(a){return this.gp(this)!==0}, -P(a,b){var s -for(s=J.av(b);s.t();)this.E(0,s.gH(s))}, -P7(a){var s,r -for(s=a.length,r=0;r").az(c).j("nj<1,2>"))}, -i(a){return A.xe(this,"{","}")}, -fD(a,b){var s -for(s=this.ga1(this);s.t();)if(b.$1(s.gH(s)))return!0 -return!1}, -i_(a,b){return A.a9a(this,b,A.n(this).j("cF.E"))}, -fu(a,b){return A.a8n(this,b,A.n(this).j("cF.E"))}, -gJ(a){var s=this.ga1(this) -if(!s.t())throw A.c(A.bB()) -return s.gH(s)}, -gR(a){var s,r=this.ga1(this) -if(!r.t())throw A.c(A.bB()) -do s=r.gH(r) -while(r.t()) -return s}, -aY(a,b){var s,r,q,p="index" -A.eC(b,p,t.S) -A.cZ(b,p) -for(s=this.ga1(this),r=0;s.t();){q=s.gH(s) -if(b===r)return q;++r}throw A.c(A.bY(b,this,p,null,r))}} -A.pm.prototype={ -ns(a){var s,r,q=this.pj() -for(s=this.ga1(this);s.t();){r=s.gH(s) -if(!a.A(0,r))q.E(0,r)}return q}, -CQ(a,b){var s,r,q=this.pj() -for(s=this.ga1(this);s.t();){r=s.gH(s) -if(b.A(0,r))q.E(0,r)}return q}, -iW(a){var s=this.pj() -s.P(0,this) -return s}, -$iV:1, -$ip:1, -$ib0:1} -A.Sg.prototype={ -E(a,b){return A.as3()}, -B(a,b){return A.as3()}} -A.dU.prototype={ -pj(){return A.j0(this.$ti.c)}, -A(a,b){return J.eD(this.a,b)}, -ga1(a){return J.av(J.U0(this.a))}, -gp(a){return J.bP(this.a)}} -A.Rg.prototype={ -gcG(a){return this.a}} -A.cl.prototype={} -A.ef.prototype={ -a6o(a){var s=this,r=s.$ti -r=new A.ef(a,s.a,r.j("@<1>").az(r.z[1]).j("ef<1,2>")) -r.b=s.b -r.c=s.c -return r}, -i(a){return"MapEntry("+A.e(this.a)+": "+A.e(this.d)+")"}, -$iaw:1, -gl(a){return this.d}} -A.Rf.prototype={ -hE(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.gd8() -if(f==null){h.yu(a,a) -return-1}s=h.gyt() -for(r=g,q=f,p=r,o=p,n=o,m=n;!0;){r=s.$2(q.a,a) -if(r>0){l=q.b -if(l==null)break -r=s.$2(l.a,a) -if(r>0){q.b=l.c -l.c=q -k=l.b -if(k==null){q=l -break}q=l -l=k}if(m==null)n=q -else m.b=q -m=q -q=l}else{if(r<0){j=q.c -if(j==null)break -r=s.$2(j.a,a) -if(r<0){q.c=j.b -j.b=q -i=j.c -if(i==null){q=j -break}q=j -j=i}if(o==null)p=q -else o.c=q}else break -o=q -q=j}}if(o!=null){o.c=q.b -q.b=p}if(m!=null){m.b=q.c -q.c=n}if(h.gd8()!==q){h.sd8(q);++h.c}return r}, -a7z(a){var s,r,q=a.b -for(s=a;q!=null;s=q,q=r){s.b=q.c -q.c=s -r=q.b}return s}, -K6(a){var s,r,q=a.c -for(s=a;q!=null;s=q,q=r){s.c=q.b -q.b=s -r=q.c}return s}, -ka(a,b){var s,r,q,p,o=this -if(o.gd8()==null)return null -if(o.hE(b)!==0)return null -s=o.gd8() -r=s.b;--o.a -q=s.c -if(r==null)o.sd8(q) -else{p=o.K6(r) -p.c=q -o.sd8(p)}++o.b -return s}, -xV(a,b){var s,r=this;++r.a;++r.b -s=r.gd8() -if(s==null){r.sd8(a) -return}if(b<0){a.b=s -a.c=s.c -s.c=null}else{a.c=s -a.b=s.b -s.b=null}r.sd8(a)}, -gHH(){var s=this,r=s.gd8() -if(r==null)return null -s.sd8(s.a7z(r)) -return s.gd8()}, -gID(){var s=this,r=s.gd8() -if(r==null)return null -s.sd8(s.K6(r)) -return s.gd8()}, -p5(a){return this.AN(a)&&this.hE(a)===0}, -yu(a,b){return this.gyt().$2(a,b)}, -AN(a){return this.gahp().$1(a)}} -A.A7.prototype={ -h(a,b){var s=this -if(!s.f.$1(b))return null -if(s.d!=null)if(s.hE(b)===0)return s.d.d -return null}, -B(a,b){var s -if(!this.f.$1(b))return null -s=this.ka(0,b) -if(s!=null)return s.d -return null}, -n(a,b,c){var s,r=this,q=r.hE(b) -if(q===0){r.d=r.d.a6o(c);++r.c -return}s=r.$ti -r.xV(new A.ef(c,b,s.j("@<1>").az(s.z[1]).j("ef<1,2>")),q)}, -bs(a,b,c){var s,r,q,p,o=this,n=o.hE(b) -if(n===0)return o.d.d -s=o.b -r=o.c -q=c.$0() -if(s!==o.b)throw A.c(A.bw(o)) -if(r!==o.c)n=o.hE(b) -p=o.$ti -o.xV(new A.ef(q,b,p.j("@<1>").az(p.z[1]).j("ef<1,2>")),n) -return q}, -gS(a){return this.d==null}, -gbZ(a){return this.d!=null}, -Y(a,b){var s,r,q=this.$ti -q=q.j("@<1>").az(q.z[1]) -s=new A.po(this,A.b([],q.j("o>")),this.c,q.j("po<1,2>")) -for(;s.t();){r=s.gH(s) -b.$2(r.gcG(r),r.gl(r))}}, -gp(a){return this.a}, -ap(a,b){return this.p5(b)}, -gba(a){var s=this.$ti -return new A.kT(this,s.j("@<1>").az(s.j("ef<1,2>")).j("kT<1,2>"))}, -gb2(a){var s=this.$ti -return new A.pp(this,s.j("@<1>").az(s.z[1]).j("pp<1,2>"))}, -geP(a){var s=this.$ti -return new A.Di(this,s.j("@<1>").az(s.z[1]).j("Di<1,2>"))}, -acj(){if(this.d==null)return null -return this.gHH().a}, -Ob(){if(this.d==null)return null -return this.gID().a}, -adZ(a){var s,r,q,p=this -if(p.d==null)return null -if(p.hE(a)<0)return p.d.a -s=p.d.b -if(s==null)return null -r=s.c -for(;r!=null;s=r,r=q)q=r.c -return s.a}, -ack(a){var s,r,q,p=this -if(p.d==null)return null -if(p.hE(a)>0)return p.d.a -s=p.d.c -if(s==null)return null -r=s.b -for(;r!=null;s=r,r=q)q=r.b -return s.a}, -$iay:1, -yu(a,b){return this.e.$2(a,b)}, -AN(a){return this.f.$1(a)}, -gd8(){return this.d}, -gyt(){return this.e}, -sd8(a){return this.d=a}} -A.a8B.prototype={ -$1(a){return this.a.b(a)}, -$S:51} -A.jD.prototype={ -gH(a){var s=this.b -if(s.length===0){A.n(this).j("jD.T").a(null) -return null}return this.zb(B.c.gR(s))}, -t(){var s,r,q=this,p=q.c,o=q.a,n=o.b -if(p!==n){if(p==null){q.c=n -s=o.gd8() -for(p=q.b;s!=null;){p.push(s) -s=s.b}return p.length!==0}throw A.c(A.bw(o))}p=q.b -if(p.length===0)return!1 -if(q.d!==o.c){n=B.c.gR(p) -B.c.sp(p,0) -o.hE(n.a) -n=o.gd8() -n.toString -p.push(n) -q.d=o.c}s=B.c.gR(p) -r=s.c -if(r!=null){for(;r!=null;){p.push(r) -r=r.b}return!0}p.pop() -while(!0){if(!(p.length!==0&&B.c.gR(p).c===s))break -s=p.pop()}return p.length!==0}} -A.kT.prototype={ -gp(a){return this.a.a}, -gS(a){return this.a.a===0}, -ga1(a){var s=this.a,r=this.$ti -return new A.d9(s,A.b([],r.j("o<2>")),s.c,r.j("@<1>").az(r.z[1]).j("d9<1,2>"))}, -A(a,b){return this.a.p5(b)}, -iW(a){var s=this.a,r=this.$ti,q=A.al5(s.e,s.f,r.c) -q.a=s.a -q.d=q.H1(s.d,r.z[1]) -return q}} -A.pp.prototype={ -gp(a){return this.a.a}, -gS(a){return this.a.a===0}, -ga1(a){var s=this.a,r=this.$ti -r=r.j("@<1>").az(r.z[1]) -return new A.Dm(s,A.b([],r.j("o>")),s.c,r.j("Dm<1,2>"))}} -A.Di.prototype={ -gp(a){return this.a.a}, -gS(a){return this.a.a===0}, -ga1(a){var s=this.a,r=this.$ti -r=r.j("@<1>").az(r.z[1]) -return new A.po(s,A.b([],r.j("o>")),s.c,r.j("po<1,2>"))}} -A.d9.prototype={ -zb(a){return a.a}} -A.Dm.prototype={ -zb(a){return a.d}} -A.po.prototype={ -zb(a){return a}} -A.td.prototype={ -ga1(a){var s=this.$ti -return new A.d9(this,A.b([],s.j("o>")),this.c,s.j("@<1>").az(s.j("cl<1>")).j("d9<1,2>"))}, -gp(a){return this.a}, -gS(a){return this.d==null}, -gbZ(a){return this.d!=null}, -gJ(a){if(this.a===0)throw A.c(A.bB()) -return this.gHH().a}, -gR(a){if(this.a===0)throw A.c(A.bB()) -return this.gID().a}, -A(a,b){return this.f.$1(b)&&this.hE(this.$ti.c.a(b))===0}, -E(a,b){return this.eM(0,b)}, -eM(a,b){var s=this.hE(b) -if(s===0)return!1 -this.xV(new A.cl(b,this.$ti.j("cl<1>")),s) -return!0}, -B(a,b){if(!this.f.$1(b))return!1 -return this.ka(0,this.$ti.c.a(b))!=null}, -CQ(a,b){var s,r=this,q=r.$ti,p=A.al5(r.e,r.f,q.c) -for(q=new A.d9(r,A.b([],q.j("o>")),r.c,q.j("@<1>").az(q.j("cl<1>")).j("d9<1,2>"));q.t();){s=q.gH(q) -if(b.A(0,s))p.eM(0,s)}return p}, -H1(a,b){var s -if(a==null)return null -s=new A.cl(a.a,this.$ti.j("cl<1>")) -new A.a8C(this,b).$2(a,s) -return s}, -iW(a){var s=this,r=s.$ti,q=A.al5(s.e,s.f,r.c) -q.a=s.a -q.d=s.H1(s.d,r.j("cl<1>")) -return q}, -i(a){return A.xe(this,"{","}")}, -$iV:1, -$ip:1, -$ib0:1, -yu(a,b){return this.e.$2(a,b)}, -AN(a){return this.f.$1(a)}, -gd8(){return this.d}, -gyt(){return this.e}, -sd8(a){return this.d=a}} -A.a8D.prototype={ -$1(a){return this.a.b(a)}, -$S:51} -A.a8C.prototype={ -$2(a,b){var s,r,q,p,o,n=this.a.$ti.j("cl<1>") -do{s=a.b -r=a.c -if(s!=null){q=new A.cl(s.a,n) -b.b=q -this.$2(s,q)}p=r!=null -if(p){o=new A.cl(r.a,n) -b.c=o -b=o -a=r}}while(p)}, -$S(){return this.a.$ti.az(this.b).j("~(1,cl<2>)")}} -A.C8.prototype={} -A.Dj.prototype={} -A.Dk.prototype={} -A.Dl.prototype={} -A.DO.prototype={} -A.Eo.prototype={} -A.Es.prototype={} -A.OD.prototype={ -h(a,b){var s,r=this.b -if(r==null)return this.c.h(0,b) -else if(typeof b!="string")return null -else{s=r[b] -return typeof s=="undefined"?this.a5V(b):s}}, -gp(a){return this.b==null?this.c.a:this.mJ().length}, -gS(a){return this.gp(this)===0}, -gbZ(a){return this.gp(this)>0}, -gba(a){var s -if(this.b==null){s=this.c -return new A.b3(s,A.n(s).j("b3<1>"))}return new A.OE(this)}, -gb2(a){var s,r=this -if(r.b==null){s=r.c -return s.gb2(s)}return A.k8(r.mJ(),new A.adC(r),t.N,t.z)}, -n(a,b,c){var s,r,q=this -if(q.b==null)q.c.n(0,b,c) -else if(q.ap(0,b)){s=q.b -s[b]=c -r=q.a -if(r==null?s!=null:r!==s)r[b]=null}else q.La().n(0,b,c)}, -ap(a,b){if(this.b==null)return this.c.ap(0,b) -if(typeof b!="string")return!1 -return Object.prototype.hasOwnProperty.call(this.a,b)}, -bs(a,b,c){var s -if(this.ap(0,b))return this.h(0,b) -s=c.$0() -this.n(0,b,s) -return s}, -B(a,b){if(this.b!=null&&!this.ap(0,b))return null -return this.La().B(0,b)}, -Y(a,b){var s,r,q,p,o=this -if(o.b==null)return o.c.Y(0,b) -s=o.mJ() -for(r=0;r=0){i=B.b.ak("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h) -if(i===k)continue -k=i}else{if(h===-1){if(o<0){g=p==null?c:p.a.length -if(g==null)g=0 -o=g+(r-q) -n=r}++m -if(k===61)continue}k=i}if(h!==-2){if(p==null){p=new A.by("") -g=p}else g=p -f=g.a+=B.b.N(a0,q,r) -g.a=f+A.fb(k) -q=l -continue}}throw A.c(A.c5("Invalid base64 data",a0,r))}if(p!=null){g=p.a+=B.b.N(a0,q,a2) -f=g.length -if(o>=0)A.aol(a0,n,a2,o,m,f) -else{e=B.f.bE(f-1,4)+1 -if(e===1)throw A.c(A.c5(b,a0,a2)) -for(;e<4;){g+="=" -p.a=g;++e}}g=p.a -return B.b.iR(a0,a1,a2,g.charCodeAt(0)==0?g:g)}d=a2-a1 -if(o>=0)A.aol(a0,n,a2,o,m,d) -else{e=B.f.bE(d,4) -if(e===1)throw A.c(A.c5(b,a0,a2)) -if(e>1)a0=B.b.iR(a0,a2,a2,e===2?"==":"=")}return a0}} -A.Fh.prototype={} -A.Vc.prototype={} -A.Vd.prototype={} -A.MX.prototype={ -E(a,b){var s,r,q=this,p=q.b,o=q.c,n=J.ax(b) -if(n.gp(b)>p.length-o){p=q.b -s=n.gp(b)+p.length-1 -s|=B.f.h9(s,1) -s|=s>>>2 -s|=s>>>4 -s|=s>>>8 -r=new Uint8Array((((s|s>>>16)>>>0)+1)*2) -p=q.b -B.R.d6(r,0,p.length,p) -q.b=r}p=q.b -o=q.c -B.R.d6(p,o,o+n.gp(b),b) -q.c=q.c+n.gp(b)}, -eD(a){this.a.$1(B.R.bG(this.b,0,this.c))}} -A.FG.prototype={} -A.na.prototype={} -A.jO.prototype={} -A.nk.prototype={} -A.xk.prototype={ -i(a){var s=A.nl(this.a) -return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} -A.HY.prototype={ -i(a){return"Cyclic error in JSON stringify"}} -A.HX.prototype={ -Mu(a,b,c){var s=A.aGE(b,this.gabc().a) -return s}, -dr(a,b){return this.Mu(a,b,null)}, -abK(a,b){var s -if(b==null)b=null -if(b==null){s=this.giu() -return A.um(a,s.b,s.a)}return A.um(a,b,null)}, -lM(a){return this.abK(a,null)}, -giu(){return B.C8}, -gabc(){return B.C7}} -A.I_.prototype={} -A.HZ.prototype={} -A.adG.prototype={ -Ei(a){var s,r,q,p,o,n=this,m=a.length -for(s=0,r=0;r92){if(q>=55296){p=q&64512 -if(p===55296){o=r+1 -o=!(o=0&&(B.b.ak(a,p)&64512)===55296)}else p=!1 -else p=!0 -if(p){if(r>s)n.wH(a,s,r) -s=r+1 -n.dh(92) -n.dh(117) -n.dh(100) -p=q>>>8&15 -n.dh(p<10?48+p:87+p) -p=q>>>4&15 -n.dh(p<10?48+p:87+p) -p=q&15 -n.dh(p<10?48+p:87+p)}}continue}if(q<32){if(r>s)n.wH(a,s,r) -s=r+1 -n.dh(92) -switch(q){case 8:n.dh(98) -break -case 9:n.dh(116) -break -case 10:n.dh(110) -break -case 12:n.dh(102) -break -case 13:n.dh(114) -break -default:n.dh(117) -n.dh(48) -n.dh(48) -p=q>>>4&15 -n.dh(p<10?48+p:87+p) -p=q&15 -n.dh(p<10?48+p:87+p) -break}}else if(q===34||q===92){if(r>s)n.wH(a,s,r) -s=r+1 -n.dh(92) -n.dh(q)}}if(s===0)n.cC(a) -else if(s>>18|240 -q=o.b=p+1 -r[p]=s>>>12&63|128 -p=o.b=q+1 -r[q]=s>>>6&63|128 -o.b=p+1 -r[p]=s&63|128 -return!0}else{o.AS() -return!1}}, -a09(a,b,c){var s,r,q,p,o,n,m,l=this -if(b!==c&&(B.b.ak(a,c-1)&64512)===55296)--c -for(s=l.c,r=s.length,q=b;q=r)break -l.b=o+1 -s[o]=p}else{o=p&64512 -if(o===55296){if(l.b+4>r)break -n=q+1 -if(l.a95(p,B.b.ac(a,n)))q=n}else if(o===56320){if(l.b+3>r)break -l.AS()}else if(p<=2047){o=l.b -m=o+1 -if(m>=r)break -l.b=m -s[o]=p>>>6|192 -l.b=m+1 -s[m]=p&63|128}else{o=l.b -if(o+2>=r)break -m=l.b=o+1 -s[o]=p>>>12|224 -o=l.b=m+1 -s[m]=p>>>6&63|128 -l.b=o+1 -s[o]=p&63|128}}}return q}} -A.AT.prototype={ -cS(a){var s=this.a,r=A.aE7(s,a,0,null) -if(r!=null)return r -return new A.aha(s).aaA(a,0,null,!0)}} -A.aha.prototype={ -aaA(a,b,c,d){var s,r,q,p,o,n=this,m=A.er(b,c,J.bP(a),null,null) -if(b===m)return"" -if(t.H3.b(a)){s=a -r=0}else{s=A.aFi(a,b,m) -m-=b -r=b -b=0}q=n.yB(s,b,m,d) -p=n.b -if((p&1)!==0){o=A.aFj(p) -n.b=0 -throw A.c(A.c5(o,a,r+n.c))}return q}, -yB(a,b,c,d){var s,r,q=this -if(c-b>1000){s=B.f.bC(b+c,2) -r=q.yB(a,b,s,!1) -if((q.b&1)!==0)return r -return r+q.yB(a,s,c,d)}return q.abb(a,b,c,d)}, -abb(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.by(""),g=b+1,f=a[b] -$label0$0:for(s=l.a;!0;){for(;!0;g=p){r=B.b.ac("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE",f)&31 -i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 -j=B.b.ac(" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA",j+r) -if(j===0){h.a+=A.fb(i) -if(g===c)break $label0$0 -break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:h.a+=A.fb(k) -break -case 65:h.a+=A.fb(k);--g -break -default:q=h.a+=A.fb(k) -h.a=q+A.fb(k) -break}else{l.b=j -l.c=g-1 -return""}j=0}if(g===c)break $label0$0 -p=g+1 -f=a[g]}p=g+1 -f=a[g] -if(f<128){while(!0){if(!(p=128){o=n-1 -p=n -break}p=n}if(o-g<20)for(m=g;m32)if(s)h.a+=A.fb(k) -else{l.b=77 -l.c=c -return""}l.b=j -l.c=i -s=h.a -return s.charCodeAt(0)==0?s:s}} -A.SF.prototype={} -A.a2E.prototype={ -$2(a,b){var s=this.b,r=this.a,q=s.a+=r.a -q+=a.a -s.a=q -s.a=q+": " -s.a+=A.nl(b) -r.a=", "}, -$S:268} -A.bh.prototype={} -A.df.prototype={ -gagv(){if(this.b)return"UTC" -return A.aCI(this)}, -goi(){if(this.b)return A.bR(0,0,0) -return A.bR(0,0,0-A.dO(this).getTimezoneOffset())}, -E(a,b){return A.aAs(this.a+B.f.bC(b.a,1000),this.b)}, -k(a,b){if(b==null)return!1 -return b instanceof A.df&&this.a===b.a&&this.b===b.b}, -aW(a,b){return B.f.aW(this.a,b.a)}, -gv(a){var s=this.a -return(s^B.f.h9(s,30))&1073741823}, -i(a){var s=this,r=A.aAt(A.yM(s)),q=A.Gz(A.yL(s)),p=A.Gz(A.JC(s)),o=A.Gz(A.oo(s)),n=A.Gz(A.JD(s)),m=A.Gz(A.JE(s)),l=A.aAu(A.a3Z(s)),k=r+"-"+q -if(s.b)return k+"-"+p+" "+o+":"+n+":"+m+"."+l+"Z" -else return k+"-"+p+" "+o+":"+n+":"+m+"."+l}, -$ibh:1} -A.aP.prototype={ -Z(a,b){return new A.aP(this.a+b.a)}, -a9(a,b){return new A.aP(this.a-b.a)}, -W(a,b){return new A.aP(B.e.aI(this.a*b))}, -k(a,b){if(b==null)return!1 -return b instanceof A.aP&&this.a===b.a}, -gv(a){return B.f.gv(this.a)}, -aW(a,b){return B.f.aW(this.a,b.a)}, -i(a){var s,r,q,p,o=this.a,n=B.f.bC(o,36e8) -o%=36e8 -if(o<0)o=-o -s=B.f.bC(o,6e7) -o%=6e7 -r=s<10?"0":"" -q=B.f.bC(o,1e6) -p=q<10?"0":"" -return""+n+":"+r+s+":"+p+q+"."+B.b.m2(B.f.i(o%1e6),6,"0")}, -$ibh:1} -A.NX.prototype={$iI:1} -A.bA.prototype={ -gmC(){return A.aA(this.$thrownJsError)}} -A.mU.prototype={ -i(a){var s=this.a -if(s!=null)return"Assertion failed: "+A.nl(s) -return"Assertion failed"}, -gkJ(a){return this.a}} -A.ms.prototype={} -A.IH.prototype={ -i(a){return"Throw of null."}} -A.fQ.prototype={ -gyZ(){return"Invalid argument"+(!this.a?"(s)":"")}, -gyY(){return""}, -i(a){var s=this,r=s.c,q=r==null?"":" ("+r+")",p=s.d,o=p==null?"":": "+A.e(p),n=s.gyZ()+q+o -if(!s.a)return n -return n+s.gyY()+": "+A.nl(s.b)}, -gaN(a){return this.c}} -A.rp.prototype={ -gyZ(){return"RangeError"}, -gyY(){var s,r=this.e,q=this.f -if(r==null)s=q!=null?": Not less than or equal to "+A.e(q):"" -else if(q==null)s=": Not greater than or equal to "+A.e(r) -else if(q>r)s=": Not in inclusive range "+A.e(r)+".."+A.e(q) -else s=qe.length -else s=!1 -if(s)f=null -if(f==null){if(e.length>78)e=B.b.N(e,0,75)+"..." -return g+"\n"+e}for(r=1,q=0,p=!1,o=0;o1?g+(" (at line "+r+", character "+(f-q+1)+")\n"):g+(" (at character "+(f+1)+")\n") -m=e.length -for(o=f;o78)if(f-q<75){l=q+75 -k=q -j="" -i="..."}else{if(m-f<75){k=m-75 -l=m -i=""}else{k=f-36 -l=f+36 -i="..."}j="..."}else{l=m -k=q -j="" -i=""}return g+j+B.b.N(e,k,l)+i+"\n"+B.b.W(" ",f-k+j.length)+"^\n"}else return f!=null?g+(" (at offset "+A.e(f)+")"):g}, -$ice:1, -gkJ(a){return this.a}, -gxk(a){return this.b}, -gbJ(a){return this.c}} -A.p.prototype={ -uN(a,b){return A.n4(this,A.n(this).j("p.E"),b)}, -acu(a,b){var s=this,r=A.n(s) -if(r.j("V").b(s))return A.aBd(s,b,r.j("p.E")) -return new A.nx(s,b,r.j("nx"))}, -iH(a,b,c){return A.k8(this,b,A.n(this).j("p.E"),c)}, -ol(a,b){return new A.au(this,b,A.n(this).j("au"))}, -A(a,b){var s -for(s=this.ga1(this);s.t();)if(J.f(s.gH(s),b))return!0 -return!1}, -Y(a,b){var s -for(s=this.ga1(this);s.t();)b.$1(s.gH(s))}, -bB(a,b){var s,r=this.ga1(this) -if(!r.t())return"" -if(b===""){s="" -do s+=A.e(J.bX(r.gH(r))) -while(r.t())}else{s=""+A.e(J.bX(r.gH(r))) -for(;r.t();)s=s+b+A.e(J.bX(r.gH(r)))}return s.charCodeAt(0)==0?s:s}, -D_(a){return this.bB(a,"")}, -fD(a,b){var s -for(s=this.ga1(this);s.t();)if(b.$1(s.gH(s)))return!0 -return!1}, -dL(a,b){return A.ap(this,b,A.n(this).j("p.E"))}, -dK(a){return this.dL(a,!0)}, -iW(a){return A.j1(this,A.n(this).j("p.E"))}, -gp(a){var s,r=this.ga1(this) -for(s=0;r.t();)++s -return s}, -gS(a){return!this.ga1(this).t()}, -gbZ(a){return!this.gS(this)}, -i_(a,b){return A.a9a(this,b,A.n(this).j("p.E"))}, -fu(a,b){return A.a8n(this,b,A.n(this).j("p.E"))}, -gJ(a){var s=this.ga1(this) -if(!s.t())throw A.c(A.bB()) -return s.gH(s)}, -gR(a){var s,r=this.ga1(this) -if(!r.t())throw A.c(A.bB()) -do s=r.gH(r) -while(r.t()) -return s}, -gbX(a){var s,r=this.ga1(this) -if(!r.t())throw A.c(A.bB()) -s=r.gH(r) -if(r.t())throw A.c(A.apx()) -return s}, -nC(a,b,c){var s,r -for(s=this.ga1(this);s.t();){r=s.gH(s) -if(b.$1(r))return r}return c.$0()}, -aY(a,b){var s,r,q -A.cZ(b,"index") -for(s=this.ga1(this),r=0;s.t();){q=s.gH(s) -if(b===r)return q;++r}throw A.c(A.bY(b,this,"index",null,r))}, -i(a){return A.akr(this,"(",")")}} -A.Fj.prototype={} -A.HU.prototype={} -A.aw.prototype={ -i(a){return"MapEntry("+A.e(this.a)+": "+A.e(this.b)+")"}, -gcG(a){return this.a}, -gl(a){return this.b}} -A.aG.prototype={ -gv(a){return A.D.prototype.gv.call(this,this)}, -i(a){return"null"}} -A.D.prototype={$iD:1, -k(a,b){return this===b}, -gv(a){return A.e5(this)}, -i(a){return"Instance of '"+A.a40(this)+"'"}, -Oo(a,b){throw A.c(A.aq_(this,b.gOk(),b.gOK(),b.gOn()))}, -gdA(a){return A.C(this)}, -toString(){return this.i(this)}} -A.Rp.prototype={ -i(a){return""}, -$ic7:1} -A.Ad.prototype={ -gMO(){var s,r=this.b -if(r==null)r=$.JF.$0() -s=r-this.a -if($.TH()===1e6)return s -return s*1000}, -oD(a){var s=this,r=s.b -if(r!=null){s.a=s.a+($.JF.$0()-r) -s.b=null}}, -eY(a){var s=this.b -this.a=s==null?$.JF.$0():s}} -A.a5T.prototype={ -gH(a){return this.d}, -t(){var s,r,q,p=this,o=p.b=p.c,n=p.a,m=n.length -if(o===m){p.d=-1 -return!1}s=B.b.ac(n,o) -r=o+1 -if((s&64512)===55296&&r4)this.a.$2("an IPv6 part can only contain a maximum of 4 hex digits",a) -s=A.fJ(B.b.N(this.b,a,b),16) -if(s<0||s>65535)this.a.$2("each part must be in the range of `0x0..0xFFFF`",a) -return s}, -$S:288} -A.DR.prototype={ -gKl(){var s,r,q,p,o=this,n=o.w -if(n===$){s=o.a -r=s.length!==0?""+s+":":"" -q=o.c -p=q==null -if(!p||s==="file"){s=r+"//" -r=o.b -if(r.length!==0)s=s+r+"@" -if(!p)s+=q -r=o.d -if(r!=null)s=s+":"+A.e(r)}else s=r -s+=o.e -r=o.f -if(r!=null)s=s+"?"+r -r=o.r -if(r!=null)s=s+"#"+r -A.ba(n,"_text") -n=o.w=s.charCodeAt(0)==0?s:s}return n}, -gkN(){var s,r,q=this,p=q.x -if(p===$){s=q.e -if(s.length!==0&&B.b.ac(s,0)===47)s=B.b.bU(s,1) -r=s.length===0?B.bZ:A.apK(new A.az(A.b(s.split("/"),t.s),A.aHq(),t.cj),t.N) -A.ba(q.x,"pathSegments") -p=q.x=r}return p}, -gv(a){var s,r=this,q=r.y -if(q===$){s=B.b.gv(r.gKl()) -A.ba(r.y,"hashCode") -r.y=s -q=s}return q}, -grA(){return this.b}, -giz(a){var s=this.c -if(s==null)return"" -if(B.b.bl(s,"["))return B.b.N(s,1,s.length-1) -return s}, -go7(a){var s=this.d -return s==null?A.as6(this.a):s}, -gm8(a){var s=this.f -return s==null?"":s}, -gvs(){var s=this.r -return s==null?"":s}, -CY(a){var s=this.a -if(a.length!==s.length)return!1 -return A.asm(a,s,0)>=0}, -ag4(a,b,c){var s,r,q,p,o=this,n=o.a,m=n==="file",l=o.b,k=o.d,j=o.c -if(!(j!=null))j=l.length!==0||k!=null||m?"":null -s=j!=null -r=b==null -if(!r||!1)b=A.alD(b,0,r?0:b.length,null,n,s) -else{q=o.e -if(!m)r=s&&q.length!==0 -else r=!0 -if(r&&!B.b.bl(q,"/"))q="/"+q -b=q}if(c!=null)p=A.alF(null,0,0,c) -else p=o.f -return A.Sh(n,l,j,k,b,p,o.r)}, -ag3(a,b){return this.ag4(a,b,null)}, -Or(){var s=this,r=s.e,q=A.ase(r,s.a,s.c!=null) -if(q===r)return s -return s.ag3(0,q)}, -IU(a,b){var s,r,q,p,o,n -for(s=0,r=0;B.b.cQ(b,"../",r);){r+=3;++s}q=B.b.nL(a,"/") -while(!0){if(!(q>0&&s>0))break -p=B.b.vS(a,"/",q-1) -if(p<0)break -o=q-p -n=o!==2 -if(!n||o===3)if(B.b.ak(a,p+1)===46)n=!n||B.b.ak(a,p+2)===46 -else n=!1 -else n=!1 -if(n)break;--s -q=p}return B.b.iR(a,q+1,null,B.b.bU(b,r-3*s))}, -O(a){return this.rl(A.p_(a,0,null))}, -rl(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null -if(a.gdP().length!==0){s=a.gdP() -if(a.gnD()){r=a.grA() -q=a.giz(a) -p=a.gqD()?a.go7(a):h}else{p=h -q=p -r=""}o=A.kV(a.ge4(a)) -n=a.glU()?a.gm8(a):h}else{s=i.a -if(a.gnD()){r=a.grA() -q=a.giz(a) -p=A.alE(a.gqD()?a.go7(a):h,s) -o=A.kV(a.ge4(a)) -n=a.glU()?a.gm8(a):h}else{r=i.b -q=i.c -p=i.d -o=i.e -if(a.ge4(a)==="")n=a.glU()?a.gm8(a):i.f -else{m=A.aFh(i,o) -if(m>0){l=B.b.N(o,0,m) -o=a.gvD()?l+A.kV(a.ge4(a)):l+A.kV(i.IU(B.b.bU(o,l.length),a.ge4(a)))}else if(a.gvD())o=A.kV(a.ge4(a)) -else if(o.length===0)if(q==null)o=s.length===0?a.ge4(a):A.kV(a.ge4(a)) -else o=A.kV("/"+a.ge4(a)) -else{k=i.IU(o,a.ge4(a)) -j=s.length===0 -if(!j||q!=null||B.b.bl(o,"/"))o=A.kV(k) -else o=A.alH(k,!j||q!=null)}n=a.glU()?a.gm8(a):h}}}return A.Sh(s,r,q,p,o,n,a.gvE()?a.gvs():h)}, -gNB(){return this.a.length!==0}, -gnD(){return this.c!=null}, -gqD(){return this.d!=null}, -glU(){return this.f!=null}, -gvE(){return this.r!=null}, -gvD(){return B.b.bl(this.e,"/")}, -gr3(a){var s,r,q=this,p=q.a -if(p==="")throw A.c(A.X("Cannot use origin without a scheme: "+q.i(0))) -if(p!=="http"&&p!=="https")throw A.c(A.X("Origin is only applicable schemes http and https: "+q.i(0))) -s=q.c -if(s==null||s==="")throw A.c(A.X("A "+p+u.I+q.i(0))) -r=q.d -if(r==null)return p+"://"+A.e(s) -return p+"://"+A.e(s)+":"+A.e(r)}, -DV(){var s,r=this,q=r.a -if(q!==""&&q!=="file")throw A.c(A.N("Cannot extract a file path from a "+q+" URI")) -q=r.f -if((q==null?"":q)!=="")throw A.c(A.N(u.z)) -q=r.r -if((q==null?"":q)!=="")throw A.c(A.N(u.U)) -q=$.amQ() -if(q)q=A.asg(r) -else{if(r.c!=null&&r.giz(r)!=="")A.K(A.N(u.Q)) -s=r.gkN() -A.aFb(s,!1) -q=A.Ls(B.b.bl(r.e,"/")?""+"/":"",s,"/") -q=q.charCodeAt(0)==0?q:q}return q}, -gbN(a){return this.a==="data"?A.aE3(this):null}, -i(a){return this.gKl()}, -k(a,b){var s,r,q=this -if(b==null)return!1 -if(q===b)return!0 -if(t.Xu.b(b))if(q.a===b.gdP())if(q.c!=null===b.gnD())if(q.b===b.grA())if(q.giz(q)===b.giz(b))if(q.go7(q)===b.go7(b))if(q.e===b.ge4(b)){s=q.f -r=s==null -if(!r===b.glU()){if(r)s="" -if(s===b.gm8(b)){s=q.r -r=s==null -if(!r===b.gvE()){if(r)s="" -s=s===b.gvs()}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -$iM7:1, -gdP(){return this.a}, -ge4(a){return this.e}} -A.ah3.prototype={ -$2(a,b){var s=this.b,r=this.a -s.a+=r.a -r.a="&" -r=s.a+=A.mG(B.cv,a,B.z,!0) -if(b!=null&&b.length!==0){s.a=r+"=" -s.a+=A.mG(B.cv,b,B.z,!0)}}, -$S:291} -A.ah2.prototype={ -$2(a,b){var s,r -if(b==null||typeof b=="string")this.a.$2(a,b) -else for(s=J.av(b),r=this.a;s.t();)r.$2(a,s.gH(s))}, -$S:13} -A.aaj.prototype={ -grz(){var s,r,q,p,o=this,n=null,m=o.c -if(m==null){m=o.a -s=o.b[0]+1 -r=B.b.iA(m,"?",s) -q=m.length -if(r>=0){p=A.DS(m,r+1,q,B.ej,!1) -q=r}else p=n -m=o.c=new A.Nu(o,"data","",n,n,A.DS(m,s,q,B.nL,!1),p,n)}return m}, -i(a){var s=this.a -return this.b[0]===-1?"data:"+s:s}} -A.ahM.prototype={ -$2(a,b){var s=this.a[a] -B.R.acb(s,0,96,b) -return s}, -$S:295} -A.ahN.prototype={ -$3(a,b,c){var s,r -for(s=b.length,r=0;r>>0]=c}, -$S:162} -A.hr.prototype={ -gNB(){return this.b>0}, -gnD(){return this.c>0}, -gqD(){return this.c>0&&this.d+1=0}, -gdP(){var s=this.w -return s==null?this.w=this.ZK():s}, -ZK(){var s,r=this,q=r.b -if(q<=0)return"" -s=q===4 -if(s&&B.b.bl(r.a,"http"))return"http" -if(q===5&&B.b.bl(r.a,"https"))return"https" -if(s&&B.b.bl(r.a,"file"))return"file" -if(q===7&&B.b.bl(r.a,"package"))return"package" -return B.b.N(r.a,0,q)}, -grA(){var s=this.c,r=this.b+3 -return s>r?B.b.N(this.a,r,s-1):""}, -giz(a){var s=this.c -return s>0?B.b.N(this.a,s,this.d):""}, -go7(a){var s,r=this -if(r.gqD())return A.fJ(B.b.N(r.a,r.d+1,r.e),null) -s=r.b -if(s===4&&B.b.bl(r.a,"http"))return 80 -if(s===5&&B.b.bl(r.a,"https"))return 443 -return 0}, -ge4(a){return B.b.N(this.a,this.e,this.f)}, -gm8(a){var s=this.f,r=this.r -return s=q.length)return s -return new A.hr(B.b.N(q,0,r),s.b,s.c,s.d,s.e,s.f,r,s.w)}, -O(a){return this.rl(A.p_(a,0,null))}, -rl(a){if(a instanceof A.hr)return this.a7k(this,a) -return this.Ku().rl(a)}, -a7k(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=b.b -if(c>0)return b -s=b.c -if(s>0){r=a.b -if(r<=0)return b -q=r===4 -if(q&&B.b.bl(a.a,"file"))p=b.e!==b.f -else if(q&&B.b.bl(a.a,"http"))p=!b.IB("80") -else p=!(r===5&&B.b.bl(a.a,"https"))||!b.IB("443") -if(p){o=r+1 -return new A.hr(B.b.N(a.a,0,o)+B.b.bU(b.a,c+1),r,s+o,b.d+o,b.e+o,b.f+o,b.r+o,a.w)}else return this.Ku().rl(b)}n=b.e -c=b.f -if(n===c){s=b.r -if(c0?l:m -o=k-n -return new A.hr(B.b.N(a.a,0,k)+B.b.bU(s,n),a.b,a.c,a.d,m,c+o,b.r+o,a.w)}j=a.e -i=a.f -if(j===i&&a.c>0){for(;B.b.cQ(s,"../",n);)n+=3 -o=j-n+1 -return new A.hr(B.b.N(a.a,0,j)+"/"+B.b.bU(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}h=a.a -l=A.arX(this) -if(l>=0)g=l -else for(g=j;B.b.cQ(h,"../",g);)g+=3 -f=0 -while(!0){e=n+3 -if(!(e<=c&&B.b.cQ(s,"../",n)))break;++f -n=e}for(d="";i>g;){--i -if(B.b.ak(h,i)===47){if(f===0){d="/" -break}--f -d="/"}}if(i===g&&a.b<=0&&!B.b.cQ(h,"/",j)){n-=f*3 -d=""}o=i-n+d.length -return new A.hr(B.b.N(h,0,i)+d+B.b.bU(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}, -DV(){var s,r,q=this,p=q.b -if(p>=0){s=!(p===4&&B.b.bl(q.a,"file")) -p=s}else p=!1 -if(p)throw A.c(A.N("Cannot extract a file path from a "+q.gdP()+" URI")) -p=q.f -s=q.a -if(p0?s.giz(s):r,n=s.gqD()?s.go7(s):r,m=s.a,l=s.f,k=B.b.N(m,s.e,l),j=s.r -l=l>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.wo.prototype={ -i(a){var s,r=a.left -r.toString -s=a.top -s.toString -return"Rectangle ("+A.e(r)+", "+A.e(s)+") "+A.e(this.gaQ(a))+" x "+A.e(this.gbk(a))}, -k(a,b){var s,r -if(b==null)return!1 -if(t.Bb.b(b)){s=a.left -s.toString -r=J.j(b) -if(s===r.giF(b)){s=a.top -s.toString -s=s===r.gwy(b)&&this.gaQ(a)===r.gaQ(b)&&this.gbk(a)===r.gbk(b)}else s=!1}else s=!1 -return s}, -gv(a){var s,r=a.left -r.toString -s=a.top -s.toString -return A.a3(r,s,this.gaQ(a),this.gbk(a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -gIo(a){return a.height}, -gbk(a){var s=this.gIo(a) -s.toString -return s}, -giF(a){var s=a.left -s.toString -return s}, -gwy(a){var s=a.top -s.toString -return s}, -gLi(a){return a.width}, -gaQ(a){var s=this.gLi(a) -s.toString -return s}, -$ijf:1} -A.GQ.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.Xw.prototype={ -gp(a){return a.length}} -A.N2.prototype={ -A(a,b){return J.TS(this.b,b)}, -gS(a){return this.a.firstElementChild==null}, -gp(a){return this.b.length}, -h(a,b){return t.Q.a(this.b[b])}, -n(a,b,c){this.a.replaceChild(c,this.b[b])}, -sp(a,b){throw A.c(A.N("Cannot resize element lists"))}, -E(a,b){this.a.appendChild(b) -return b}, -ga1(a){var s=this.dK(this) -return new J.fl(s,s.length)}, -P(a,b){A.aEm(this.a,b)}, -dk(a,b){throw A.c(A.N("Cannot sort element lists"))}, -bh(a,b,c,d,e){throw A.c(A.c_(null))}, -d6(a,b,c,d){return this.bh(a,b,c,d,0)}, -B(a,b){return A.aEo(this.a,b)}, -kE(a,b,c){var s,r=this,q=r.b,p=q.length -if(b>p)throw A.c(A.bt(b,0,r.gp(r),null,null)) -s=r.a -if(b===p)s.appendChild(c) -else s.insertBefore(c,t.Q.a(q[b]))}, -eX(a){var s=this.gR(this) -this.a.removeChild(s) -return s}, -gJ(a){return A.aEn(this.a)}, -gR(a){var s=this.a.lastElementChild -if(s==null)throw A.c(A.X("No elements")) -return s}} -A.ub.prototype={ -gp(a){return this.a.length}, -h(a,b){return this.$ti.c.a(this.a[b])}, -n(a,b,c){throw A.c(A.N("Cannot modify list"))}, -sp(a,b){throw A.c(A.N("Cannot modify list"))}, -dk(a,b){throw A.c(A.N("Cannot sort list"))}, -gJ(a){return this.$ti.c.a(B.tR.gJ(this.a))}, -gR(a){return this.$ti.c.a(B.tR.gR(this.a))}} -A.am.prototype={ -gBc(a){return new A.Bw(a)}, -sBc(a,b){var s,r,q -new A.Bw(a).aG(0) -for(s=A.lE(b,b.r);s.t();){r=s.d -q=b.h(0,r) -q.toString -a.setAttribute(r,q)}}, -ghj(a){return new A.N2(a,a.children)}, -El(a){return window.getComputedStyle(a,"")}, -i(a){return a.localName}, -iq(a,b,c,d){var s,r,q,p -if(c==null){s=$.ap0 -if(s==null){s=A.b([],t.qF) -r=new A.yf(s) -s.push(A.arH(null)) -s.push(A.arZ()) -$.ap0=r -d=r}else d=s -s=$.ap_ -if(s==null){s=new A.Si(d) -$.ap_=s -c=s}else{s.a=d -c=s}}if($.ln==null){s=document -r=s.implementation.createHTMLDocument("") -$.ln=r -$.aki=r.createRange() -r=$.ln.createElement("base") -t.N2.a(r) -s=s.baseURI -s.toString -r.href=s -$.ln.head.appendChild(r)}s=$.ln -if(s.body==null){r=s.createElement("body") -s.body=t.C4.a(r)}s=$.ln -if(t.C4.b(a)){s=s.body -s.toString -q=s}else{s.toString -q=s.createElement(a.tagName) -$.ln.body.appendChild(q)}if("createContextualFragment" in window.Range.prototype&&!B.c.A(B.Ez,a.tagName)){$.aki.selectNodeContents(q) -s=$.aki -p=s.createContextualFragment(b)}else{q.innerHTML=b -p=$.ln.createDocumentFragment() -for(;s=q.firstChild,s!=null;)p.appendChild(s)}if(q!==$.ln.body)J.ca(q) -c.EF(p) -document.adoptNode(p) -return p}, -ab0(a,b,c){return this.iq(a,b,c,null)}, -F3(a,b){a.textContent=null -a.appendChild(this.iq(a,b,null,null))}, -Nj(a){return a.focus()}, -gPw(a){return a.tagName}, -$iam:1} -A.Y6.prototype={ -$1(a){return t.Q.b(a)}, -$S:102} -A.GT.prototype={ -gaN(a){return a.name}} -A.hG.prototype={ -gaN(a){return a.name}, -a3U(a,b,c){return a.remove(A.fj(b,0),A.fj(c,1))}, -bw(a){var s=new A.a4($.a5,t.LR),r=new A.aI(s,t.zh) -this.a3U(a,new A.YE(r),new A.YF(r)) -return s}} -A.YE.prototype={ -$0(){this.a.eg(0)}, -$S:0} -A.YF.prototype={ -$1(a){this.a.jf(a)}, -$S:304} -A.ah.prototype={ -gPx(a){return A.ahJ(a.target)}, -$iah:1} -A.a2.prototype={ -kk(a,b,c,d){if(c!=null)this.Yq(a,b,c,d)}, -kj(a,b,c){return this.kk(a,b,c,null)}, -ob(a,b,c,d){if(c!=null)this.a6h(a,b,c,d)}, -wk(a,b,c){return this.ob(a,b,c,null)}, -Yq(a,b,c,d){return a.addEventListener(b,A.fj(c,1),d)}, -a6h(a,b,c,d){return a.removeEventListener(b,A.fj(c,1),d)}} -A.dK.prototype={} -A.H6.prototype={ -gbN(a){return a.data}} -A.YO.prototype={ -gaN(a){return a.name}} -A.H9.prototype={ -gaN(a){return a.name}} -A.fq.prototype={ -gaN(a){return a.name}, -$ifq:1} -A.qw.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1, -$iqw:1} -A.qx.prototype={ -gaN(a){return a.name}} -A.YQ.prototype={ -gp(a){return a.length}} -A.ny.prototype={$iny:1} -A.jW.prototype={ -gp(a){return a.length}, -gaN(a){return a.name}, -$ijW:1} -A.hJ.prototype={$ihJ:1} -A.a_L.prototype={ -gp(a){return a.length}} -A.nF.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.wZ.prototype={} -A.lt.prototype={ -gage(a){var s,r,q,p,o,n,m=t.N,l=A.z(m,m),k=a.getAllResponseHeaders(),j=k.split("\r\n") -for(m=j.length,s=0;s=200&&o<300 -r=o>307&&o<400 -o=s||o===0||o===304||r -q=this.b -if(o)q.c3(0,p) -else q.jf(a)}, -$S:90} -A.x0.prototype={} -A.HH.prototype={ -gaN(a){return a.name}} -A.x7.prototype={ -gbN(a){return a.data}, -$ix7:1} -A.nK.prototype={$inK:1} -A.nP.prototype={ -gaN(a){return a.name}, -$inP:1} -A.k4.prototype={$ik4:1} -A.xr.prototype={} -A.xw.prototype={} -A.a1r.prototype={ -i(a){return String(a)}} -A.Ig.prototype={ -gaN(a){return a.name}} -A.a1S.prototype={ -bw(a){return A.fL(a.remove(),t.z)}} -A.a1T.prototype={ -gp(a){return a.length}} -A.Ik.prototype={ -a2(a,b){return a.addListener(A.fj(b,1))}, -K(a,b){return a.removeListener(A.fj(b,1))}} -A.r8.prototype={$ir8:1} -A.Im.prototype={ -gbN(a){return new A.im([],[]).jg(a.data,!0)}} -A.y_.prototype={ -kk(a,b,c,d){if(b==="message")a.start() -this.Sw(a,b,c,!1)}, -$iy_:1} -A.lK.prototype={ -gaN(a){return a.name}, -$ilK:1} -A.In.prototype={ -ap(a,b){return A.hv(a.get(b))!=null}, -h(a,b){return A.hv(a.get(b))}, -Y(a,b){var s,r=a.entries() -for(;!0;){s=r.next() -if(s.done)return -b.$2(s.value[0],A.hv(s.value[1]))}}, -gba(a){var s=A.b([],t.s) -this.Y(a,new A.a21(s)) -return s}, -gb2(a){var s=A.b([],t.n4) -this.Y(a,new A.a22(s)) -return s}, -gp(a){return a.size}, -gS(a){return a.size===0}, -gbZ(a){return a.size!==0}, -n(a,b,c){throw A.c(A.N("Not supported"))}, -bs(a,b,c){throw A.c(A.N("Not supported"))}, -B(a,b){throw A.c(A.N("Not supported"))}, -$iay:1} -A.a21.prototype={ -$2(a,b){return this.a.push(a)}, -$S:13} -A.a22.prototype={ -$2(a,b){return this.a.push(b)}, -$S:13} -A.Io.prototype={ -gbN(a){return a.data}} -A.Ip.prototype={ -ap(a,b){return A.hv(a.get(b))!=null}, -h(a,b){return A.hv(a.get(b))}, -Y(a,b){var s,r=a.entries() -for(;!0;){s=r.next() -if(s.done)return -b.$2(s.value[0],A.hv(s.value[1]))}}, -gba(a){var s=A.b([],t.s) -this.Y(a,new A.a23(s)) -return s}, -gb2(a){var s=A.b([],t.n4) -this.Y(a,new A.a24(s)) -return s}, -gp(a){return a.size}, -gS(a){return a.size===0}, -gbZ(a){return a.size!==0}, -n(a,b,c){throw A.c(A.N("Not supported"))}, -bs(a,b,c){throw A.c(A.N("Not supported"))}, -B(a,b){throw A.c(A.N("Not supported"))}, -$iay:1} -A.a23.prototype={ -$2(a,b){return this.a.push(a)}, -$S:13} -A.a24.prototype={ -$2(a,b){return this.a.push(b)}, -$S:13} -A.y0.prototype={ -gaN(a){return a.name}} -A.hT.prototype={$ihT:1} -A.Iq.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.eK.prototype={ -gbJ(a){var s,r,q,p,o,n,m -if(!!a.offsetX)return new A.fx(a.offsetX,a.offsetY,t.i6) -else{s=a.target -r=t.Q -if(!r.b(A.ahJ(s)))throw A.c(A.N("offsetX is only supported on elements")) -q=r.a(A.ahJ(s)) -s=a.clientX -r=a.clientY -p=t.i6 -o=q.getBoundingClientRect() -n=o.left -n.toString -o=o.top -o.toString -m=new A.fx(s,r,p).a9(0,new A.fx(n,o,p)) -return new A.fx(B.e.e6(m.a),B.e.e6(m.b),p)}}, -$ieK:1} -A.kc.prototype={ -aev(a,b,c,d){var s=null,r={},q=new A.a2p(r) -q.$2("childList",s) -q.$2("attributes",!0) -q.$2("characterData",s) -q.$2("subtree",s) -q.$2("attributeOldValue",s) -q.$2("characterDataOldValue",s) -q.$2("attributeFilter",c) -a.observe(b,r)}, -$ikc:1} -A.a2p.prototype={ -$2(a,b){if(b!=null)this.a[a]=b}, -$S:106} -A.y4.prototype={$iy4:1} -A.a2B.prototype={ -gaN(a){return a.name}} -A.dE.prototype={ -gJ(a){var s=this.a.firstChild -if(s==null)throw A.c(A.X("No elements")) -return s}, -gR(a){var s=this.a.lastChild -if(s==null)throw A.c(A.X("No elements")) -return s}, -gbX(a){var s=this.a,r=s.childNodes.length -if(r===0)throw A.c(A.X("No elements")) -if(r>1)throw A.c(A.X("More than one element")) -s=s.firstChild -s.toString -return s}, -E(a,b){this.a.appendChild(b)}, -P(a,b){var s,r,q,p,o -if(b instanceof A.dE){s=b.a -r=this.a -if(s!==r)for(q=s.childNodes.length,p=0;p>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.a2K.prototype={ -gbN(a){return a.data}} -A.IK.prototype={ -gbN(a){return a.data}, -gaN(a){return a.name}} -A.IL.prototype={ -rH(a,b,c){var s=a.getContext(b,A.Ts(c)) -return s}} -A.IS.prototype={ -gaN(a){return a.name}} -A.a2X.prototype={ -gaN(a){return a.name}} -A.yw.prototype={} -A.Jd.prototype={ -gaN(a){return a.name}} -A.a3h.prototype={ -gaN(a){return a.name}} -A.Jg.prototype={ -Of(a,b){return a.mark(b)}, -aem(a,b,c,d){var s=a.measure(b,c,d) -return s}} -A.j8.prototype={ -gaN(a){return a.name}} -A.a3m.prototype={ -gaN(a){return a.name}} -A.i_.prototype={ -gp(a){return a.length}, -gaN(a){return a.name}, -$ii_:1} -A.Jw.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.kj.prototype={$ikj:1} -A.fy.prototype={$ify:1} -A.JI.prototype={ -gbN(a){return a.data}} -A.Kv.prototype={ -ap(a,b){return A.hv(a.get(b))!=null}, -h(a,b){return A.hv(a.get(b))}, -Y(a,b){var s,r=a.entries() -for(;!0;){s=r.next() -if(s.done)return -b.$2(s.value[0],A.hv(s.value[1]))}}, -gba(a){var s=A.b([],t.s) -this.Y(a,new A.a5R(s)) -return s}, -gb2(a){var s=A.b([],t.n4) -this.Y(a,new A.a5S(s)) -return s}, -gp(a){return a.size}, -gS(a){return a.size===0}, -gbZ(a){return a.size!==0}, -n(a,b,c){throw A.c(A.N("Not supported"))}, -bs(a,b,c){throw A.c(A.N("Not supported"))}, -B(a,b){throw A.c(A.N("Not supported"))}, -$iay:1} -A.a5R.prototype={ -$2(a,b){return this.a.push(a)}, -$S:13} -A.a5S.prototype={ -$2(a,b){return this.a.push(b)}, -$S:13} -A.a6d.prototype={ -agQ(a){return a.unlock()}} -A.zD.prototype={} -A.KK.prototype={ -gp(a){return a.length}, -gaN(a){return a.name}} -A.KS.prototype={ -gaN(a){return a.name}} -A.Le.prototype={ -gaN(a){return a.name}} -A.i9.prototype={$ii9:1} -A.Li.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.ib.prototype={$iib:1} -A.Lo.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.ic.prototype={ -gp(a){return a.length}, -$iic:1} -A.Lp.prototype={ -gaN(a){return a.name}} -A.a8A.prototype={ -gaN(a){return a.name}} -A.Ae.prototype={ -ap(a,b){return a.getItem(A.bk(b))!=null}, -h(a,b){return a.getItem(A.bk(b))}, -n(a,b,c){a.setItem(b,c)}, -bs(a,b,c){var s -if(a.getItem(b)==null)a.setItem(b,c.$0()) -s=a.getItem(b) -return s==null?A.bk(s):s}, -B(a,b){var s -A.bk(b) -s=a.getItem(b) -a.removeItem(b) -return s}, -Y(a,b){var s,r,q -for(s=0;!0;++s){r=a.key(s) -if(r==null)return -q=a.getItem(r) -q.toString -b.$2(r,q)}}, -gba(a){var s=A.b([],t.s) -this.Y(a,new A.a8N(s)) -return s}, -gb2(a){var s=A.b([],t.s) -this.Y(a,new A.a8O(s)) -return s}, -gp(a){return a.length}, -gS(a){return a.key(0)==null}, -gbZ(a){return a.key(0)!=null}, -$iay:1} -A.a8N.prototype={ -$2(a,b){return this.a.push(a)}, -$S:89} -A.a8O.prototype={ -$2(a,b){return this.a.push(b)}, -$S:89} -A.Ag.prototype={} -A.fE.prototype={$ifE:1} -A.Am.prototype={ -iq(a,b,c,d){var s,r -if("createContextualFragment" in window.Range.prototype)return this.xA(a,b,c,d) -s=A.aAQ(""+b+"
",c,d) -r=document.createDocumentFragment() -new A.dE(r).P(0,new A.dE(s)) -return r}} -A.LA.prototype={ -iq(a,b,c,d){var s,r -if("createContextualFragment" in window.Range.prototype)return this.xA(a,b,c,d) -s=document -r=s.createDocumentFragment() -s=new A.dE(B.vq.iq(s.createElement("table"),b,c,d)) -s=new A.dE(s.gbX(s)) -new A.dE(r).P(0,new A.dE(s.gbX(s))) -return r}} -A.LB.prototype={ -iq(a,b,c,d){var s,r -if("createContextualFragment" in window.Range.prototype)return this.xA(a,b,c,d) -s=document -r=s.createDocumentFragment() -s=new A.dE(B.vq.iq(s.createElement("table"),b,c,d)) -new A.dE(r).P(0,new A.dE(s.gbX(s))) -return r}} -A.tq.prototype={$itq:1} -A.ts.prototype={ -gaN(a){return a.name}, -QJ(a){return a.select()}, -$its:1} -A.LK.prototype={ -gbN(a){return a.data}} -A.ii.prototype={$iii:1} -A.fG.prototype={$ifG:1} -A.LR.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.LS.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.a9V.prototype={ -gp(a){return a.length}} -A.ij.prototype={$iij:1} -A.mr.prototype={$imr:1} -A.AM.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.aa6.prototype={ -gp(a){return a.length}} -A.oY.prototype={} -A.aao.prototype={ -i(a){return String(a)}} -A.aaA.prototype={ -gp(a){return a.length}} -A.p1.prototype={ -gabk(a){var s=a.deltaY -if(s!=null)return s -throw A.c(A.N("deltaY is not supported"))}, -gabj(a){var s=a.deltaX -if(s!=null)return s -throw A.c(A.N("deltaX is not supported"))}, -gabi(a){if(!!a.deltaMode)return a.deltaMode -return 0}, -$ip1:1} -A.p3.prototype={ -Pk(a,b){var s -this.a_T(a) -s=A.am4(b,t.Jy) -s.toString -return this.a6q(a,s)}, -a6q(a,b){return a.requestAnimationFrame(A.fj(b,1))}, -a_T(a){if(!!(a.requestAnimationFrame&&a.cancelAnimationFrame))return;(function(b){var s=["ms","moz","webkit","o"] -for(var r=0;r>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.Bm.prototype={ -i(a){var s,r,q,p=a.left -p.toString -s=a.top -s.toString -r=a.width -r.toString -q=a.height -q.toString -return"Rectangle ("+A.e(p)+", "+A.e(s)+") "+A.e(r)+" x "+A.e(q)}, -k(a,b){var s,r -if(b==null)return!1 -if(t.Bb.b(b)){s=a.left -s.toString -r=J.j(b) -if(s===r.giF(b)){s=a.top -s.toString -if(s===r.gwy(b)){s=a.width -s.toString -if(s===r.gaQ(b)){s=a.height -s.toString -r=s===r.gbk(b) -s=r}else s=!1}else s=!1}else s=!1}else s=!1 -return s}, -gv(a){var s,r,q,p=a.left -p.toString -s=a.top -s.toString -r=a.width -r.toString -q=a.height -q.toString -return A.a3(p,s,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -gIo(a){return a.height}, -gbk(a){var s=a.height -s.toString -return s}, -gLi(a){return a.width}, -gaQ(a){var s=a.width -s.toString -return s}} -A.Oi.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.Cm.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.Re.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.Rs.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a[b]}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return a[b]}, -$iaY:1, -$iV:1, -$ib6:1, -$ip:1, -$ix:1} -A.MH.prototype={ -ik(a,b,c){var s=t.N -return A.akF(this,s,s,b,c)}, -bs(a,b,c){var s=this.a,r=s.hasAttribute(b) -if(!r)s.setAttribute(b,c.$0()) -s=s.getAttribute(b) -return s==null?A.bk(s):s}, -aG(a){var s,r,q,p,o -for(s=this.gba(this),r=s.length,q=this.a,p=0;p") -return}if(!l.a.n6(a)){l.po(a,b) -window -s=A.e(b) -if(typeof console!="undefined")window.console.warn("Removing disallowed element <"+e+"> from "+s) -return}if(g!=null)if(!l.a.kn(a,"is",g)){l.po(a,b) -window -if(typeof console!="undefined")window.console.warn("Removing disallowed type extension <"+e+' is="'+g+'">') -return}s=f.gba(f) -r=A.b(s.slice(0),A.af(s)) -for(q=f.gba(f).length-1,s=f.a,p="Removing disallowed attribute <"+e+" ";q>=0;--q){o=r[q] -n=l.a -m=J.azs(o) -A.bk(o) -if(!n.kn(a,m,s.getAttribute(o))){window -n=s.getAttribute(o) -if(typeof console!="undefined")window.console.warn(p+o+'="'+A.e(n)+'">') -s.removeAttribute(o)}}if(t.aW.b(a)){s=a.content -s.toString -l.EF(s)}}} -A.ahd.prototype={ -$2(a,b){var s,r,q,p,o,n=this.a -switch(a.nodeType){case 1:n.a6O(a,b) -break -case 8:case 11:case 3:case 4:break -default:n.po(a,b)}s=a.lastChild -for(;s!=null;){r=null -try{r=s.previousSibling -if(r!=null){q=r.nextSibling -p=s -p=q==null?p!=null:q!==p -q=p}else q=!1 -if(q){q=A.X("Corrupt HTML") -throw A.c(q)}}catch(o){q=s;++n.b -p=q.parentNode -if(a!==p){if(p!=null)p.removeChild(q)}else a.removeChild(q) -s=null -r=a.lastChild}if(s!=null)this.$2(s,a) -s=r}}, -$S:313} -A.Nk.prototype={} -A.NJ.prototype={} -A.NK.prototype={} -A.NL.prototype={} -A.NM.prototype={} -A.O2.prototype={} -A.O3.prototype={} -A.Oo.prototype={} -A.Op.prototype={} -A.P2.prototype={} -A.P3.prototype={} -A.P4.prototype={} -A.P5.prototype={} -A.Pg.prototype={} -A.Ph.prototype={} -A.Pz.prototype={} -A.PA.prototype={} -A.QF.prototype={} -A.Dg.prototype={} -A.Dh.prototype={} -A.Rc.prototype={} -A.Rd.prototype={} -A.Rj.prototype={} -A.RK.prototype={} -A.RL.prototype={} -A.DD.prototype={} -A.DE.prototype={} -A.RW.prototype={} -A.RX.prototype={} -A.Ss.prototype={} -A.St.prototype={} -A.SC.prototype={} -A.SD.prototype={} -A.SM.prototype={} -A.SN.prototype={} -A.T_.prototype={} -A.T0.prototype={} -A.T1.prototype={} -A.T2.prototype={} -A.agr.prototype={ -nB(a){var s,r=this.a,q=r.length -for(s=0;s")),new A.YS(),r.j("d3"))}, -Y(a,b){B.c.Y(A.ft(this.gi7(),!1,t.Q),b)}, -n(a,b,c){var s=this.gi7() -J.azc(s.b.$1(J.pN(s.a,b)),c)}, -sp(a,b){var s=J.bP(this.gi7().a) -if(b>=s)return -else if(b<0)throw A.c(A.b5("Invalid list length",null)) -this.DN(0,b,s)}, -E(a,b){this.b.a.appendChild(b)}, -P(a,b){var s,r -for(s=J.av(b),r=this.b.a;s.t();)r.appendChild(s.gH(s))}, -A(a,b){if(!t.Q.b(b))return!1 -return b.parentNode===this.a}, -dk(a,b){throw A.c(A.N("Cannot sort filtered list"))}, -bh(a,b,c,d,e){throw A.c(A.N("Cannot setRange on filtered list"))}, -d6(a,b,c,d){return this.bh(a,b,c,d,0)}, -DN(a,b,c){var s=this.gi7() -s=A.a8n(s,b,s.$ti.j("p.E")) -B.c.Y(A.ft(A.a9a(s,c-b,A.n(s).j("p.E")),!0,t.z),new A.YT())}, -eX(a){var s=this.gi7(),r=s.b.$1(J.v9(s.a)) -J.ca(r) -return r}, -kE(a,b,c){var s,r -if(b===J.bP(this.gi7().a))this.b.a.appendChild(c) -else{s=this.gi7() -r=s.b.$1(J.pN(s.a,b)) -r.parentNode.insertBefore(c,r)}}, -B(a,b){return!1}, -gp(a){return J.bP(this.gi7().a)}, -h(a,b){var s=this.gi7() -return s.b.$1(J.pN(s.a,b))}, -ga1(a){var s=A.ft(this.gi7(),!1,t.Q) -return new J.fl(s,s.length)}} -A.YR.prototype={ -$1(a){return t.Q.b(a)}, -$S:102} -A.YS.prototype={ -$1(a){return t.Q.a(a)}, -$S:317} -A.YT.prototype={ -$1(a){return J.ca(a)}, -$S:15} -A.Wt.prototype={ -gaN(a){return a.name}} -A.a0r.prototype={ -gaN(a){return a.name}} -A.xo.prototype={$ixo:1} -A.a2R.prototype={ -gaN(a){return a.name}} -A.Md.prototype={ -gPx(a){return a.target}} -A.a0O.prototype={ -$1(a){var s,r,q,p,o=this.a -if(o.ap(0,a))return o.h(0,a) -if(t.f.b(a)){s={} -o.n(0,a,s) -for(o=J.j(a),r=J.av(o.gba(a));r.t();){q=r.gH(r) -s[q]=this.$1(o.h(a,q))}return s}else if(t.JY.b(a)){p=[] -o.n(0,a,p) -B.c.P(p,J.mO(a,this,t.z)) -return p}else return A.Tj(a)}, -$S:161} -A.ahK.prototype={ -$1(a){var s=function(b,c,d){return function(){return b(c,d,this,Array.prototype.slice.apply(arguments))}}(A.aFs,a,!1) -A.alP(s,$.TF(),a) -return s}, -$S:32} -A.ahL.prototype={ -$1(a){return new this.a(a)}, -$S:32} -A.aiv.prototype={ -$1(a){return new A.qW(a)}, -$S:318} -A.aiw.prototype={ -$1(a){return new A.nU(a,t.sW)}, -$S:323} -A.aix.prototype={ -$1(a){return new A.k2(a)}, -$S:327} -A.k2.prototype={ -h(a,b){if(typeof b!="string"&&typeof b!="number")throw A.c(A.b5("property is not a String or num",null)) -return A.alM(this.a[b])}, -n(a,b,c){if(typeof b!="string"&&typeof b!="number")throw A.c(A.b5("property is not a String or num",null)) -this.a[b]=A.Tj(c)}, -k(a,b){if(b==null)return!1 -return b instanceof A.k2&&this.a===b.a}, -i(a){var s,r -try{s=String(this.a) -return s}catch(r){s=this.bY(0) -return s}}, -lA(a,b){var s=this.a,r=b==null?null:A.ft(new A.az(b,A.aIh(),A.af(b).j("az<1,@>")),!0,t.z) -return A.alM(s[a].apply(s,r))}, -a9U(a){return this.lA(a,null)}, -gv(a){return 0}} -A.qW.prototype={} -A.nU.prototype={ -GC(a){var s=this,r=a<0||a>=s.gp(s) -if(r)throw A.c(A.bt(a,0,s.gp(s),null,null))}, -h(a,b){if(A.l_(b))this.GC(b) -return this.SJ(0,b)}, -n(a,b,c){if(A.l_(b))this.GC(b) -this.FV(0,b,c)}, -gp(a){var s=this.a.length -if(typeof s==="number"&&s>>>0===s)return s -throw A.c(A.X("Bad JsArray length"))}, -sp(a,b){this.FV(0,"length",b)}, -E(a,b){this.lA("push",[b])}, -eX(a){if(this.gp(this)===0)throw A.c(A.dx(-1)) -return this.a9U("pop")}, -bh(a,b,c,d,e){var s,r -A.aBE(b,c,this.gp(this)) -s=c-b -if(s===0)return -r=[b,s] -B.c.P(r,J.U4(d,e).i_(0,s)) -this.lA("splice",r)}, -d6(a,b,c,d){return this.bh(a,b,c,d,0)}, -dk(a,b){this.lA("sort",b==null?[]:[b])}, -$iV:1, -$ip:1, -$ix:1} -A.ul.prototype={ -n(a,b,c){return this.SK(0,b,c)}} -A.IG.prototype={ -i(a){return"Promise was rejected with a value of `"+(this.a?"undefined":"null")+"`."}, -$ice:1} -A.ajl.prototype={ -$1(a){return this.a.c3(0,a)}, -$S:15} -A.ajm.prototype={ -$1(a){if(a==null)return this.a.jf(new A.IG(a===undefined)) -return this.a.jf(a)}, -$S:15} -A.adA.prototype={ -aer(a){if(a<=0||a>4294967296)throw A.c(A.dx("max must be in range 0 < max \u2264 2^32, was "+a)) -return Math.random()*a>>>0}} -A.fx.prototype={ -i(a){return"Point("+A.e(this.a)+", "+A.e(this.b)+")"}, -k(a,b){if(b==null)return!1 -return b instanceof A.fx&&this.a===b.a&&this.b===b.b}, -gv(a){return A.ar3(B.e.gv(this.a),B.e.gv(this.b),0)}, -Z(a,b){var s=this.$ti,r=s.c -return new A.fx(r.a(this.a+b.a),r.a(this.b+b.b),s)}, -a9(a,b){var s=this.$ti,r=s.c -return new A.fx(r.a(this.a-b.a),r.a(this.b-b.b),s)}, -W(a,b){var s=this.$ti,r=s.c -return new A.fx(r.a(this.a*b),r.a(this.b*b),s)}} -A.q4.prototype={$iq4:1} -A.qg.prototype={$iqg:1} -A.qs.prototype={$iqs:1} -A.qt.prototype={$iqt:1} -A.qu.prototype={$iqu:1} -A.qv.prototype={$iqv:1} -A.qy.prototype={$iqy:1} -A.h1.prototype={} -A.e1.prototype={} -A.k6.prototype={$ik6:1} -A.I9.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a.getItem(b)}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return this.h(a,b)}, -$iV:1, -$ip:1, -$ix:1} -A.kf.prototype={$ikf:1} -A.IJ.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a.getItem(b)}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return this.h(a,b)}, -$iV:1, -$ip:1, -$ix:1} -A.rg.prototype={$irg:1} -A.a3H.prototype={ -gp(a){return a.length}} -A.rB.prototype={$irB:1} -A.Lu.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a.getItem(b)}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return this.h(a,b)}, -$iV:1, -$ip:1, -$ix:1} -A.aH.prototype={ -ghj(a){return new A.Hb(a,new A.dE(a))}, -iq(a,b,c,d){var s,r,q,p,o=A.b([],t.qF) -o.push(A.arH(null)) -o.push(A.arZ()) -o.push(new A.Rt()) -c=new A.Si(new A.yf(o)) -o=document -s=o.body -s.toString -r=B.m5.ab0(s,''+b+"",c) -q=o.createDocumentFragment() -o=new A.dE(r) -p=o.gbX(o) -for(;o=p.firstChild,o!=null;)q.appendChild(o) -return q}, -Nj(a){return a.focus()}, -$iaH:1} -A.oM.prototype={$ioM:1} -A.kC.prototype={$ikC:1} -A.M1.prototype={ -gp(a){return a.length}, -h(a,b){if(b>>>0!==b||b>=a.length)throw A.c(A.bY(b,a,null,null,null)) -return a.getItem(b)}, -n(a,b,c){throw A.c(A.N("Cannot assign element of immutable List."))}, -sp(a,b){throw A.c(A.N("Cannot resize immutable List."))}, -gJ(a){if(a.length>0)return a[0] -throw A.c(A.X("No elements"))}, -gR(a){var s=a.length -if(s>0)return a[s-1] -throw A.c(A.X("No elements"))}, -aY(a,b){return this.h(a,b)}, -$iV:1, -$ip:1, -$ix:1} -A.OL.prototype={} -A.OM.prototype={} -A.Pn.prototype={} -A.Po.prototype={} -A.Rn.prototype={} -A.Ro.prototype={} -A.S0.prototype={} -A.S1.prototype={} -A.GV.prototype={} -A.vY.prototype={ -i(a){return"ClipOp."+this.b}} -A.yy.prototype={ -i(a){return"PathFillType."+this.b}} -A.abQ.prototype={ -d3(a,b){A.aI9(this.a,this.b,a,b)}} -A.Dp.prototype={ -cM(a){A.Tx(this.b,this.c,a)}, -gbN(a){return this.a}} -A.kL.prototype={ -gp(a){var s=this.a -return s.gp(s)}, -kP(a){var s,r,q=this -if(!q.d&&q.e!=null){q.e.d3(a.a,a.gNW()) -return!1}s=q.c -if(s<=0)return!0 -r=q.Ho(s-1) -q.a.eM(0,a) -return r}, -Ho(a){var s,r,q -for(s=this.a,r=!1;(s.c-s.b&s.a.length-1)>>>0>a;r=!0){q=s.oc() -A.Tx(q.b,q.c,null)}return r}, -a_A(){var s=this,r=s.a -if(!r.gS(r)&&s.e!=null){r=r.oc() -s.e.d3(r.a,r.gNW()) -A.fk(s.gHm())}else s.d=!1}} -A.Vy.prototype={ -OR(a,b,c){this.a.bs(0,a,new A.Vz()).kP(new A.Dp(b,c,$.a5))}, -QZ(a,b){var s=this.a.bs(0,a,new A.VA()),r=s.e -s.e=new A.abQ(b,$.a5) -if(r==null&&!s.d){s.d=!0 -A.fk(s.gHm())}}, -Pm(a,b,c){var s=this.a,r=s.h(0,b) -if(r==null)s.n(0,b,new A.kL(A.j2(c,t.S8),c)) -else{r.c=c -r.Ho(c)}}} -A.Vz.prototype={ -$0(){return new A.kL(A.j2(1,t.S8),1)}, -$S:100} -A.VA.prototype={ -$0(){return new A.kL(A.j2(1,t.S8),1)}, -$S:100} -A.IM.prototype={ -k(a,b){if(b==null)return!1 -return b instanceof A.IM&&b.a===this.a&&b.b===this.b}, -gv(a){return A.ct(this.a,this.b,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"OffsetBase("+B.e.V(this.a,1)+", "+B.e.V(this.b,1)+")"}} -A.m.prototype={ -gcE(){var s=this.a,r=this.b -return Math.sqrt(s*s+r*r)}, -gvg(){var s=this.a,r=this.b -return s*s+r*r}, -a9(a,b){return new A.m(this.a-b.a,this.b-b.b)}, -Z(a,b){return new A.m(this.a+b.a,this.b+b.b)}, -W(a,b){return new A.m(this.a*b,this.b*b)}, -eu(a,b){return new A.m(this.a/b,this.b/b)}, -k(a,b){if(b==null)return!1 -return b instanceof A.m&&b.a===this.a&&b.b===this.b}, -gv(a){return A.ct(this.a,this.b,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"Offset("+B.e.V(this.a,1)+", "+B.e.V(this.b,1)+")"}} -A.L.prototype={ -gS(a){return this.a<=0||this.b<=0}, -a9(a,b){var s=this -if(b instanceof A.L)return new A.m(s.a-b.a,s.b-b.b) -if(b instanceof A.m)return new A.L(s.a-b.a,s.b-b.b) -throw A.c(A.b5(b,null))}, -Z(a,b){return new A.L(this.a+b.a,this.b+b.b)}, -W(a,b){return new A.L(this.a*b,this.b*b)}, -eu(a,b){return new A.L(this.a/b,this.b/b)}, -gdR(){return Math.min(Math.abs(this.a),Math.abs(this.b))}, -gOe(){return Math.max(Math.abs(this.a),Math.abs(this.b))}, -il(a){return new A.m(a.a+this.a/2,a.b+this.b/2)}, -LL(a,b){return new A.m(b.a+this.a,b.b+this.b)}, -A(a,b){var s=b.a -if(s>=0)if(s=0&&s=s.c||s.b>=s.d}, -c8(a){var s=this,r=a.a,q=a.b -return new A.w(s.a+r,s.b+q,s.c+r,s.d+q)}, -aC(a,b,c){var s=this -return new A.w(s.a+b,s.b+c,s.c+b,s.d+c)}, -hp(a){var s=this -return new A.w(s.a-a,s.b-a,s.c+a,s.d+a)}, -e2(a){var s=this -return new A.w(Math.max(s.a,a.a),Math.max(s.b,a.b),Math.min(s.c,a.c),Math.min(s.d,a.d))}, -kw(a){var s=this -return new A.w(Math.min(s.a,a.a),Math.min(s.b,a.b),Math.max(s.c,a.c),Math.max(s.d,a.d))}, -r4(a){var s=this -if(s.c<=a.a||a.c<=s.a)return!1 -if(s.d<=a.b||a.d<=s.b)return!1 -return!0}, -gdR(){var s=this -return Math.min(Math.abs(s.c-s.a),Math.abs(s.d-s.b))}, -ga9Y(){var s=this.b -return new A.m(this.a,s+(this.d-s)/2)}, -gaT(){var s=this,r=s.a,q=s.b -return new A.m(r+(s.c-r)/2,q+(s.d-q)/2)}, -A(a,b){var s=this,r=b.a -if(r>=s.a)if(r=s.b&&rd&&s!==0)return Math.min(a,d/s) -return a}, -rR(){var s=this,r=s.c,q=s.a,p=Math.abs(r-q),o=s.d,n=s.b,m=Math.abs(o-n),l=s.Q,k=s.f,j=s.e,i=s.r,h=s.w,g=s.y,f=s.x,e=s.z,d=s.tF(s.tF(s.tF(s.tF(1,l,k,m),j,i,p),h,g,m),f,e,p) -if(d<1)return new A.i2(q,n,r,o,j*d,k*d,i*d,h*d,f*d,g*d,e*d,l*d,!1) -return new A.i2(q,n,r,o,j,k,i,h,f,g,e,l,!1)}, -A(a,b){var s,r,q,p,o,n,m=this,l=b.a,k=m.a -if(!(l=m.c)){s=b.b -s=s=m.d}else s=!0 -else s=!0 -if(s)return!1 -r=m.rR() -q=r.e -if(ls-q&&b.bs-q&&b.b>m.d-r.y){p=l-s+q -o=r.y -n=b.b-m.d+o}else{q=r.z -if(lm.d-r.Q){p=l-k-q -o=r.Q -n=b.b-m.d+o}else return!0}}}p/=q -n/=o -if(p*p+n*n>1)return!1 -return!0}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(A.C(s)!==J.W(b))return!1 -return b instanceof A.i2&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.z===s.z&&b.Q===s.Q&&b.x===s.x&&b.y===s.y}, -gv(a){var s=this -return A.ct(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.z,s.Q,s.x,s.y,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){var s,r,q=this,p=B.e.V(q.a,1)+", "+B.e.V(q.b,1)+", "+B.e.V(q.c,1)+", "+B.e.V(q.d,1),o=q.e,n=q.f,m=q.r,l=q.w -if(new A.bD(o,n).k(0,new A.bD(m,l))){s=q.x -r=q.y -s=new A.bD(m,l).k(0,new A.bD(s,r))&&new A.bD(s,r).k(0,new A.bD(q.z,q.Q))}else s=!1 -if(s){if(o===n)return"RRect.fromLTRBR("+p+", "+B.e.V(o,1)+")" -return"RRect.fromLTRBXY("+p+", "+B.e.V(o,1)+", "+B.e.V(n,1)+")"}return"RRect.fromLTRBAndCorners("+p+", topLeft: "+new A.bD(o,n).i(0)+", topRight: "+new A.bD(m,l).i(0)+", bottomRight: "+new A.bD(q.x,q.y).i(0)+", bottomLeft: "+new A.bD(q.z,q.Q).i(0)+")"}} -A.ad5.prototype={} -A.ajw.prototype={ -$0(){var s=0,r=A.S(t.P) -var $async$$0=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=2 -return A.U(A.uY(),$async$$0) -case 2:return A.Q(null,r)}}) -return A.R($async$$0,r)}, -$S:92} -A.ajx.prototype={ -$0(){var s=0,r=A.S(t.P),q=this -var $async$$0=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:q.a.$0() -s=2 -return A.U(A.amg(),$async$$0) -case 2:q.b.$0() -return A.Q(null,r)}}) -return A.R($async$$0,r)}, -$S:92} -A.a3F.prototype={} -A.r_.prototype={ -i(a){return"KeyEventType."+this.b}} -A.h7.prototype={ -a4u(){var s=this.d -return"0x"+B.f.iV(s,16)+new A.a0V(B.e.eG(s/4294967296)).$0()}, -a_V(){var s=this.e -if(s==null)return"" -switch(s){case"\n":return'"\\n"' -case"\t":return'"\\t"' -case"\r":return'"\\r"' -case"\b":return'"\\b"' -case"\f":return'"\\f"' -default:return'"'+s+'"'}}, -a61(){var s=this.e -if(s==null)return"" -return" (0x"+new A.az(new A.fn(s),new A.a0W(),t.Hz.j("az")).bB(0," ")+")"}, -i(a){var s=this,r=A.aBJ(s.b),q=B.f.iV(s.c,16),p=s.a4u(),o=s.a_V(),n=s.a61(),m=s.f?", synthesized":"" -return"KeyData(type: "+A.e(r)+", physical: 0x"+q+", logical: "+p+", character: "+o+n+m+")"}} -A.a0V.prototype={ -$0(){switch(this.a){case 0:return" (Unicode)" -case 1:return" (Unprintable)" -case 2:return" (Flutter)" -case 23:return" (Web)"}return""}, -$S:66} -A.a0W.prototype={ -$1(a){return B.b.m2(B.f.iV(a,16),2,"0")}, -$S:103} -A.E.prototype={ -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.E&&b.gl(b)===s.gl(s)}, -gv(a){return B.f.gv(this.gl(this))}, -i(a){return"Color(0x"+B.b.m2(B.f.iV(this.gl(this),16),8,"0")+")"}, -gl(a){return this.a}} -A.Af.prototype={ -i(a){return"StrokeCap."+this.b}} -A.Lw.prototype={ -i(a){return"StrokeJoin."+this.b}} -A.yv.prototype={ -i(a){return"PaintingStyle."+this.b}} -A.mW.prototype={ -i(a){return"BlendMode."+this.b}} -A.n8.prototype={ -i(a){return"Clip."+this.b}} -A.Fn.prototype={ -i(a){return"BlurStyle."+this.b}} -A.xO.prototype={ -k(a,b){if(b==null)return!1 -return b instanceof A.xO&&b.a===this.a&&b.b===this.b}, -gv(a){return A.ct(this.a,this.b,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"MaskFilter.blur("+this.a.i(0)+", "+B.e.V(this.b,1)+")"}} -A.nm.prototype={ -i(a){return"FilterQuality."+this.b}} -A.x4.prototype={ -i(a){return"ImageByteFormat."+this.b}} -A.m8.prototype={ -bd(a,b){return new A.m8(this.a,this.b.W(0,b),this.c*b)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.m8&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c===s.c}, -gv(a){return A.ct(this.a,this.b,this.c,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"TextShadow("+this.a.i(0)+", "+this.b.i(0)+", "+A.e(this.c)+")"}} -A.a3x.prototype={} -A.Jv.prototype={ -v_(a,b,c,d){var s=this,r=c==null?s.c:c,q=b==null?s.d:b,p=d==null?s.e:d,o=a==null?s.f:a -return new A.Jv(s.a,!1,r,q,p,o,s.r,s.w)}, -M9(a){return this.v_(a,null,null,null)}, -uZ(a){return this.v_(null,null,null,a)}, -aaH(a){return this.v_(null,a,null,null)}, -aaJ(a){return this.v_(null,null,a,null)}} -A.Mf.prototype={ -i(a){return A.C(this).i(0)+"[window: null, geometry: "+B.F.i(0)+"]"}} -A.lq.prototype={ -i(a){var s,r=A.C(this).i(0),q=this.a,p=A.bR(q[2],0,0),o=q[1],n=A.bR(o,0,0),m=q[4],l=A.bR(m,0,0),k=A.bR(q[3],0,0) -o=A.bR(o,0,0) -s=q[0] -return r+"(buildDuration: "+(A.e((p.a-n.a)*0.001)+"ms")+", rasterDuration: "+(A.e((l.a-k.a)*0.001)+"ms")+", vsyncOverhead: "+(A.e((o.a-A.bR(s,0,0).a)*0.001)+"ms")+", totalSpan: "+(A.e((A.bR(m,0,0).a-A.bR(s,0,0).a)*0.001)+"ms")+", layerCacheCount: "+q[6]+", layerCacheBytes: "+q[7]+", pictureCacheCount: "+q[8]+", pictureCacheBytes: "+q[9]+", frameNumber: "+B.c.gR(q)+")"}} -A.mT.prototype={ -i(a){return"AppLifecycleState."+this.b}} -A.lF.prototype={ -gnK(a){var s=this.a,r=B.b4.h(0,s) -return r==null?s:r}, -gv0(){var s=this.c,r=B.be.h(0,s) -return r==null?s:r}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(b instanceof A.lF)if(b.gnK(b)===r.gnK(r))s=b.gv0()==r.gv0() -else s=!1 -else s=!1 -return s}, -gv(a){return A.ct(this.gnK(this),null,this.gv0(),B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return this.a62("_")}, -a62(a){var s=this,r=s.gnK(s) -if(s.c!=null)r+=a+A.e(s.gv0()) -return r.charCodeAt(0)==0?r:r}} -A.ja.prototype={ -i(a){return"PointerChange."+this.b}} -A.i0.prototype={ -i(a){return"PointerDeviceKind."+this.b}} -A.rj.prototype={ -i(a){return"PointerSignalKind."+this.b}} -A.jb.prototype={ -i(a){return"PointerData(x: "+A.e(this.w)+", y: "+A.e(this.x)+")"}} -A.yI.prototype={ -gbN(a){return this.a}} -A.cr.prototype={ -i(a){switch(this.a){case 1:return"SemanticsAction.tap" -case 2:return"SemanticsAction.longPress" -case 4:return"SemanticsAction.scrollLeft" -case 8:return"SemanticsAction.scrollRight" -case 16:return"SemanticsAction.scrollUp" -case 32:return"SemanticsAction.scrollDown" -case 64:return"SemanticsAction.increase" -case 128:return"SemanticsAction.decrease" -case 256:return"SemanticsAction.showOnScreen" -case 512:return"SemanticsAction.moveCursorForwardByCharacter" -case 1024:return"SemanticsAction.moveCursorBackwardByCharacter" -case 2048:return"SemanticsAction.setSelection" -case 4096:return"SemanticsAction.copy" -case 8192:return"SemanticsAction.cut" -case 16384:return"SemanticsAction.paste" -case 32768:return"SemanticsAction.didGainAccessibilityFocus" -case 65536:return"SemanticsAction.didLoseAccessibilityFocus" -case 131072:return"SemanticsAction.customAction" -case 262144:return"SemanticsAction.dismiss" -case 524288:return"SemanticsAction.moveCursorForwardByWord" -case 1048576:return"SemanticsAction.moveCursorBackwardByWord" -case 2097152:return"SemanticsAction.setText"}return""}} -A.ci.prototype={ -i(a){switch(this.a){case 1:return"SemanticsFlag.hasCheckedState" -case 2:return"SemanticsFlag.isChecked" -case 4:return"SemanticsFlag.isSelected" -case 8:return"SemanticsFlag.isButton" -case 16:return"SemanticsFlag.isTextField" -case 32:return"SemanticsFlag.isFocused" -case 64:return"SemanticsFlag.hasEnabledState" -case 128:return"SemanticsFlag.isEnabled" -case 256:return"SemanticsFlag.isInMutuallyExclusiveGroup" -case 512:return"SemanticsFlag.isHeader" -case 1024:return"SemanticsFlag.isObscured" -case 2048:return"SemanticsFlag.scopesRoute" -case 4096:return"SemanticsFlag.namesRoute" -case 8192:return"SemanticsFlag.isHidden" -case 16384:return"SemanticsFlag.isImage" -case 32768:return"SemanticsFlag.isLiveRegion" -case 65536:return"SemanticsFlag.hasToggledState" -case 131072:return"SemanticsFlag.isToggled" -case 262144:return"SemanticsFlag.hasImplicitScrolling" -case 524288:return"SemanticsFlag.isMultiline" -case 1048576:return"SemanticsFlag.isReadOnly" -case 2097152:return"SemanticsFlag.isFocusable" -case 4194304:return"SemanticsFlag.isLink" -case 8388608:return"SemanticsFlag.isSlider" -case 16777216:return"SemanticsFlag.isKeyboardKey"}return""}} -A.a71.prototype={} -A.Jt.prototype={ -i(a){return"PlaceholderAlignment."+this.b}} -A.h_.prototype={ -i(a){var s=B.JC.h(0,this.a) -s.toString -return s}} -A.jp.prototype={ -i(a){return"TextAlign."+this.b}} -A.tt.prototype={ -i(a){return"TextBaseline."+this.b}} -A.Ap.prototype={ -k(a,b){if(b==null)return!1 -return b instanceof A.Ap&&b.a===this.a}, -gv(a){return B.f.gv(this.a)}, -i(a){var s,r=this.a -if(r===0)return"TextDecoration.none" -s=A.b([],t.s) -if((r&1)!==0)s.push("underline") -if((r&2)!==0)s.push("overline") -if((r&4)!==0)s.push("lineThrough") -if(s.length===1)return"TextDecoration."+s[0] -return"TextDecoration.combine(["+B.c.bB(s,", ")+"])"}} -A.LG.prototype={ -i(a){return"TextDecorationStyle."+this.b}} -A.At.prototype={ -i(a){return"TextLeadingDistribution."+this.b}} -A.LL.prototype={ -k(a,b){var s -if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -if(b instanceof A.LL)s=b.c===this.c -else s=!1 -return s}, -gv(a){return A.ct(!0,!0,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: "+this.c.i(0)+")"}} -A.kA.prototype={ -i(a){return"TextDirection."+this.b}} -A.ih.prototype={ -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.ih&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gv(a){var s=this -return A.ct(s.a,s.b,s.c,s.d,s.e,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){var s=this -return"TextBox.fromLTRBD("+B.e.V(s.a,1)+", "+B.e.V(s.b,1)+", "+B.e.V(s.c,1)+", "+B.e.V(s.d,1)+", "+s.e.i(0)+")"}} -A.tr.prototype={ -i(a){return"TextAffinity."+this.b}} -A.b9.prototype={ -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.b9&&b.a===this.a&&b.b===this.b}, -gv(a){return A.ct(this.a,this.b,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return A.C(this).i(0)+"(offset: "+this.a+", affinity: "+this.b.i(0)+")"}} -A.cx.prototype={ -gbv(){return this.a>=0&&this.b>=0}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.cx&&b.a===this.a&&b.b===this.b}, -gv(a){return A.ct(B.f.gv(this.a),B.f.gv(this.b),B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"TextRange(start: "+this.a+", end: "+this.b+")"}} -A.lR.prototype={ -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.lR&&b.a===this.a}, -gv(a){return B.e.gv(this.a)}, -i(a){return A.C(this).i(0)+"(width: "+A.e(this.a)+")"}} -A.vH.prototype={ -i(a){return"BoxHeightStyle."+this.b}} -A.Fv.prototype={ -i(a){return"BoxWidthStyle."+this.b}} -A.AB.prototype={ -i(a){return"TileMode."+this.b}} -A.Z8.prototype={} -A.ns.prototype={} -A.KV.prototype={} -A.EX.prototype={ -i(a){var s=A.b([],t.s) -return"AccessibilityFeatures"+A.e(s)}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.EX&&!0}, -gv(a){return B.f.gv(0)}} -A.vJ.prototype={ -i(a){return"Brightness."+this.b}} -A.Vg.prototype={ -k(a,b){if(b==null)return!1 -return this===b}, -gv(a){return A.D.prototype.gv.call(this,this)}} -A.Hx.prototype={ -k(a,b){var s -if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -if(b instanceof A.Hx)s=!0 -else s=!1 -return s}, -gv(a){return A.ct(null,null,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, -i(a){return"GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"}} -A.UI.prototype={ -gp(a){return a.length}} -A.Fa.prototype={ -ap(a,b){return A.hv(a.get(b))!=null}, -h(a,b){return A.hv(a.get(b))}, -Y(a,b){var s,r=a.entries() -for(;!0;){s=r.next() -if(s.done)return -b.$2(s.value[0],A.hv(s.value[1]))}}, -gba(a){var s=A.b([],t.s) -this.Y(a,new A.UJ(s)) -return s}, -gb2(a){var s=A.b([],t.n4) -this.Y(a,new A.UK(s)) -return s}, -gp(a){return a.size}, -gS(a){return a.size===0}, -gbZ(a){return a.size!==0}, -n(a,b,c){throw A.c(A.N("Not supported"))}, -bs(a,b,c){throw A.c(A.N("Not supported"))}, -B(a,b){throw A.c(A.N("Not supported"))}, -$iay:1} -A.UJ.prototype={ -$2(a,b){return this.a.push(a)}, -$S:13} -A.UK.prototype={ -$2(a,b){return this.a.push(b)}, -$S:13} -A.UL.prototype={ -gp(a){return a.length}} -A.pT.prototype={} -A.a2T.prototype={ -gp(a){return a.length}} -A.MI.prototype={} -A.Uf.prototype={ -gaN(a){return a.name}} -A.e9.prototype={ -ga1(a){return new A.Lt(this.a,0,0)}, -gJ(a){var s=this.a,r=s.length -return r===0?A.K(A.X("No element")):B.b.N(s,0,new A.hB(s,r,0,176).hs())}, -gR(a){var s=this.a,r=s.length -return r===0?A.K(A.X("No element")):B.b.bU(s,new A.Fc(s,0,r,176).hs())}, -gS(a){return this.a.length===0}, -gbZ(a){return this.a.length!==0}, -gp(a){var s,r,q=this.a,p=q.length -if(p===0)return 0 -s=new A.hB(q,p,0,176) -for(r=0;s.hs()>=0;)++r -return r}, -aY(a,b){var s,r,q,p,o,n -A.cZ(b,"index") -s=this.a -r=s.length -if(r!==0){q=new A.hB(s,r,0,176) -for(p=0,o=0;n=q.hs(),n>=0;o=n){if(p===b)return B.b.N(s,o,n);++p}}else p=0 -throw A.c(A.bY(b,this,"index",null,p))}, -A(a,b){var s -if(typeof b!="string")return!1 -s=b.length -if(s===0)return!1 -if(new A.hB(b,s,0,176).hs()!==s)return!1 -s=this.a -return A.aGc(s,b,0,s.length)>=0}, -ud(a,b,c){var s,r -if(a===0||b===this.a.length)return b -if(c==null){s=this.a -c=new A.hB(s,s.length,b,176)}do{r=c.hs() -if(r<0)break -if(--a,a>0){b=r -continue}else{b=r -break}}while(!0) -return b}, -fu(a,b){A.cZ(b,"count") -return this.a7n(b)}, -a7n(a){var s=this.ud(a,0,null),r=this.a -if(s===r.length)return B.b5 -return new A.e9(B.b.bU(r,s))}, -i_(a,b){A.cZ(b,"count") -return this.Kh(b)}, -Kh(a){var s=this.ud(a,0,null),r=this.a -if(s===r.length)return this -return new A.e9(B.b.N(r,0,s))}, -mm(a,b,c){var s,r,q,p,o=this -A.cZ(b,"start") -if(c0;){--a -s=n.hs() -if(s<0)throw A.c(A.X(q))}r=n.hs() -if(r<0)throw A.c(A.X(q)) -if(s===0&&r===o)return this -return new A.e9(B.b.N(p,s,r))}, -Z(a,b){return new A.e9(this.a+b.a)}, -DW(a){return new A.e9(this.a.toLowerCase())}, -k(a,b){if(b==null)return!1 -return t.mV.b(b)&&this.a===b.a}, -gv(a){return B.b.gv(this.a)}, -i(a){return this.a}, -$iaoz:1} -A.Lt.prototype={ -gH(a){var s=this,r=s.d -return r==null?s.d=B.b.N(s.a,s.b,s.c):r}, -t(){return this.YD(1,this.c)}, -YD(a,b){var s,r,q,p,o,n,m,l,k,j=this -if(a>0){s=j.c -for(r=j.a,q=r.length,p=176;s>>0) -if((p&1)===0){--a -k=a===0}else k=!1 -if(k){j.b=b -j.c=s -j.d=null -return!0}}j.b=b -j.c=q -j.d=null -return a===1&&p!==176}else{j.b=b -j.d=null -return!0}}} -A.hB.prototype={ -hs(){var s,r,q,p,o,n,m,l=this,k=u.S -for(s=l.b,r=l.a;q=l.c,q>>0) -l.d=p -if((p&1)===0)return q}s=B.b.ac(k,l.d&240|15) -l.d=s -if((s&1)===0)return q -return-1}} -A.Fc.prototype={ -hs(){var s,r,q,p,o,n,m,l,k=this,j=u.q -for(s=k.b,r=k.a;q=k.c,q>s;){p=k.c=q-1 -o=B.b.ak(r,p) -if((o&64512)!==56320){p=k.d=B.b.ac(j,k.d&240|A.pH(o)) -if(((p>=208?k.d=A.aj8(r,s,k.c,p):p)&1)===0)return q -continue}if(p>=s){n=B.b.ak(r,p-1) -if((n&64512)===55296){m=A.jI(n,o) -p=--k.c}else m=2}else m=2 -l=k.d=B.b.ac(j,(k.d&240|m)>>>0) -if(((l>=208?k.d=A.aj8(r,s,p,l):l)&1)===0)return q}p=k.d=B.b.ac(j,k.d&240|15) -if(((p>=208?k.d=A.aj8(r,s,q,p):p)&1)===0)return k.c -return-1}} -A.bc.prototype={ -h(a,b){var s,r=this -if(!r.tP(b))return null -s=r.c.h(0,r.a.$1(r.$ti.j("bc.K").a(b))) -return s==null?null:s.gl(s)}, -n(a,b,c){var s,r=this -if(!r.tP(b))return -s=r.$ti -r.c.n(0,r.a.$1(b),new A.aw(b,c,s.j("@").az(s.j("bc.V")).j("aw<1,2>")))}, -P(a,b){b.Y(0,new A.Vh(this))}, -ik(a,b,c){var s=this.c -return s.ik(s,b,c)}, -ap(a,b){var s=this -if(!s.tP(b))return!1 -return s.c.ap(0,s.a.$1(s.$ti.j("bc.K").a(b)))}, -geP(a){var s=this.c -return s.geP(s).iH(0,new A.Vi(this),this.$ti.j("aw"))}, -Y(a,b){this.c.Y(0,new A.Vj(this,b))}, -gS(a){return this.c.a===0}, -gbZ(a){return this.c.a!==0}, -gba(a){var s=this.c -s=s.gb2(s) -return A.k8(s,new A.Vk(this),A.n(s).j("p.E"),this.$ti.j("bc.K"))}, -gp(a){return this.c.a}, -jB(a,b,c,d){var s=this.c -return s.jB(s,new A.Vl(this,b,c,d),c,d)}, -bs(a,b,c){return J.U1(this.c.bs(0,this.a.$1(b),new A.Vm(this,b,c)))}, -B(a,b){var s,r=this -if(!r.tP(b))return null -s=r.c.B(0,r.a.$1(r.$ti.j("bc.K").a(b))) -return s==null?null:s.gl(s)}, -gb2(a){var s=this.c -s=s.gb2(s) -return A.k8(s,new A.Vn(this),A.n(s).j("p.E"),this.$ti.j("bc.V"))}, -i(a){return A.a1G(this)}, -tP(a){var s -if(this.$ti.j("bc.K").b(a))s=!0 -else s=!1 -return s}, -$iay:1} -A.Vh.prototype={ -$2(a,b){this.a.n(0,a,b) -return b}, -$S(){return this.a.$ti.j("~(bc.K,bc.V)")}} -A.Vi.prototype={ -$1(a){var s=this.a.$ti -return new A.aw(J.ayz(a.gl(a)),J.U1(a.gl(a)),s.j("@").az(s.j("bc.V")).j("aw<1,2>"))}, -$S(){return this.a.$ti.j("aw(aw>)")}} -A.Vj.prototype={ -$2(a,b){return this.b.$2(b.gcG(b),b.gl(b))}, -$S(){return this.a.$ti.j("~(bc.C,aw)")}} -A.Vk.prototype={ -$1(a){return a.gcG(a)}, -$S(){return this.a.$ti.j("bc.K(aw)")}} -A.Vl.prototype={ -$2(a,b){return this.b.$2(b.gcG(b),b.gl(b))}, -$S(){return this.a.$ti.az(this.c).az(this.d).j("aw<1,2>(bc.C,aw)")}} -A.Vm.prototype={ -$0(){var s=this.a.$ti -return new A.aw(this.b,this.c.$0(),s.j("@").az(s.j("bc.V")).j("aw<1,2>"))}, -$S(){return this.a.$ti.j("aw()")}} -A.Vn.prototype={ -$1(a){return a.gl(a)}, -$S(){return this.a.$ti.j("bc.V(aw)")}} -A.HC.prototype={ -tv(a){var s=this.b[a] -if(s==null){this.$ti.c.a(null) -s=null}return s}, -gp(a){return this.c}, -i(a){var s=this.b -return A.akr(A.eP(s,0,A.eC(this.c,"count",t.S),A.af(s).c),"(",")")}, -YT(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=b*2+2 -for(s=j.a,r=j.$ti.c;q=j.c,i0){B.c.n(j.b,b,k) -b=p}}B.c.n(j.b,b,a)}} -A.YD.prototype={} -A.rx.prototype={} -A.V_.prototype={ -vk(a,b,c,d){return this.ac4(0,b,c,d)}, -ac4(a,b,c,d){var s=0,r=A.S(t.Ol),q,p=this,o,n,m,l,k,j,i,h,g,f,e -var $async$vk=A.T(function(a0,a1){if(a0===1)return A.P(a1,r) -while(true)switch(s){case 0:g={} -f=new XMLHttpRequest() -p.a.E(0,f) -B.fR.afb(f,A.a(b.a,"method"),b.grz().i(0)) -f.responseType="arraybuffer" -o=J.ag(A.a(b.x,"extra"),"withCredentials") -if(o!=null)f.withCredentials=J.f(o,!0) -else f.withCredentials=!1 -J.l7(A.a(b.b,"_headers"),"content-length") -J.eE(A.a(b.b,"_headers"),new A.V1(f)) -if(A.a(b.jr$,"connectTimeout")>0&&A.a(b.d,"receiveTimeout")>0)f.timeout=A.a(b.jr$,"connectTimeout")+A.a(b.d,"receiveTimeout") -n=new A.a4($.a5,t.A5) -m=new A.aI(n,t.rM) -l=t.fg -k=new A.mv(f,"load",!1,l) -j=t.P -k.gJ(k).aV(0,new A.V2(f,m),j) -g.a=!1 -if(A.a(b.jr$,"connectTimeout")>0)A.Hv(A.bR(0,A.a(b.jr$,"connectTimeout"),0),t.z).aV(0,new A.V3(g,m,b,f),j) -g.b=0 -k=t._p -A.bz(f.upload,"progress",new A.V4(g,b,m,f),!1,k) -g.c=0 -A.bz(f,"progress",new A.V5(g,b,m,f),!1,k) -l=new A.mv(f,"error",!1,l) -l.gJ(l).aV(0,new A.V6(m,b),j) -s=c!=null?3:5 -break -case 3:g=new A.a4($.a5,t.Qy) -i=new A.aI(g,t.gI) -h=new A.MX(new A.V7(i),new Uint8Array(1024)) -c.iG(h.gn3(h),!0,h.gLV(h),i.gLZ()) -e=f -s=6 -return A.U(g,$async$vk) -case 6:e.send(a1) -s=4 -break -case 5:f.send() -case 4:q=n.fU(new A.V8(p,f)) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$vk,r)}} -A.V1.prototype={ -$2(a,b){return this.a.setRequestHeader(a,A.e(b))}, -$S:13} -A.V2.prototype={ -$1(a){var s,r,q,p=null,o=this.a,n=A.cX(t.pI.a(A.asr(o.response)),0,p),m=o.status,l=B.fR.gage(o),k=t.N -l=l.jB(l,new A.V0(),k,t.yp) -s=o.statusText -o=o.status -o=o===302||o===301 -r=t.Jd -q=new A.mt(p,p,p,p,r) -q.tk(0,new Uint8Array(A.kZ(n))) -q.GR() -this.b.c3(0,new A.rx(new A.jz(q,r.j("jz<1>")),l,m,s,o,A.z(k,t.z)))}, -$S:117} -A.V0.prototype={ -$2(a,b){return new A.aw(a,A.b(b.split(","),t.s),t.Kc)}, -$S:338} -A.V3.prototype={ -$1(a){var s,r=this -if(!r.a.a){s=r.c -r.b.fG(new A.e_(s,null,B.AL,"Connecting timed out ["+A.e(A.a(s.jr$,"connectTimeout"))+"ms]"),A.Ac()) -r.d.abort()}}, -$S:7} -A.V4.prototype={ -$1(a){var s,r,q=this,p="sendTimeout",o=q.a -o.a=!0 -s=q.b -if(A.a(s.c,p)>0){if(o.b===0)o.b=Date.now() -r=Date.now() -A.fK(r-o.b) -if(r-o.b>A.a(s.c,p)){q.c.fG(new A.e_(s,null,B.AM,"Sending timed out ["+A.e(A.a(s.c,p))+"ms]"),A.Ac()) -q.d.abort()}}}, -$S:90} -A.V5.prototype={ -$1(a){var s,r=this,q="receiveTimeout",p=r.b -if(A.a(p.d,q)>0){s=r.a -if(s.c===0)s.c=Date.now() -if(Date.now()-s.c>A.a(p.d,q)){r.c.fG(new A.e_(p,null,B.AN,"Receiving timed out ["+A.e(A.a(p.d,q))+"ms]"),A.Ac()) -r.d.abort()}}}, -$S:90} -A.V6.prototype={ -$1(a){this.a.fG(new A.e_(this.b,null,B.mQ,"XMLHttpRequest error."),A.Ac())}, -$S:117} -A.V7.prototype={ -$1(a){return this.a.c3(0,new Uint8Array(A.kZ(a)))}, -$S:339} -A.V8.prototype={ -$0(){this.a.a.B(0,this.b)}, -$S:6} -A.ll.prototype={ -i(a){return"DioErrorType."+this.b}} -A.e_.prototype={ -gkJ(a){var s=this.d -s=s==null?null:J.bX(s) -return s==null?"":s}, -i(a){var s=this,r="DioError ["+s.c.i(0)+"]: "+s.gkJ(s),q=s.d -if(t.Lt.b(q))r+="\n"+A.e(q.gmC()) -q=s.e -return q!=null?r+("\nSource stack:\n"+q.i(0)):r}, -$ice:1} -A.WP.prototype={ -Ek(a,b,c,d){return this.ag8(0,b,null,null,A.aoR("GET",null),c,d)}, -Ej(a,b,c){return this.Ek(a,b,null,c)}, -OL(a,b,c,d,e){return this.wn(0,a,null,b,null,null,A.aoR("POST",c),d,e)}, -afq(a,b,c,d){return this.OL(a,b,c,null,d)}, -wn(a,b,c,d,e,f,g,h,i){return this.ag9(0,b,c,d,e,f,g,h,i,i.j("cN<0>"))}, -ag8(a,b,c,d,e,f,g){return this.wn(a,b,c,null,d,null,e,f,g)}, -ag9(a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var s=0,r=A.S(b3),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 -var $async$wn=A.T(function(b4,b5){if(b4===1)return A.P(b5,r) -while(true)switch(s){case 0:a0=A.a(p.Cg$,"options") -a1=t.N -a2=t.z -a3=A.z(a1,a2) -a3.P(0,A.a(a0.nx$,"queryParameters")) -if(b1!=null)a3.P(0,b1) -o=A.aiB(A.a(a0.b,"_headers"),a2) -o.B(0,"content-type") -n=b0.b -if(n!=null){o.P(0,n) -m=A.bH(o.h(0,"content-type"))}else m=null -l=A.apG(A.a(a0.x,"extra"),a1,a2) -a1=b0.a -if(a1==null)a1=A.a(a0.a,"method") -k=a1.toUpperCase() -a1=A.a(a0.nw$,"baseUrl") -a2=A.a(a0.jr$,"connectTimeout") -n=A.a(a0.c,"sendTimeout") -n=n -j=A.a(a0.d,"receiveTimeout") -j=j -i=A.a(a0.f,"responseType") -i=i -h=b0.r -if(h==null)h=A.a(a0.r,"validateStatus") -g=A.a(a0.w,"receiveDataWhenStatusError") -g=g -f=b0.y -if(f==null)f=A.a(a0.y,"followRedirects") -e=A.a(a0.z,"maxRedirects") -e=e -d=a0.Q -c=a0.as -b=A.a(a0.at,"listFormat") -a=A.aD_(a1,a2,a7,l,f,o,b,e,k,a5,a3,g,j,d,c,i,n,h) -a.CW=a8 -a.cx=a9 -a.ch=a6 -a1=m==null?null:m -a.suX(0,a1==null?a0.aax(k):a1) -a.CW=a8 -a.cx=a9 -a.ch=a6 -q=p.Cd(0,a,b2) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$wn,r)}, -Cd(a,b,c){return this.ac5(0,b,c,c.j("cN<0>"))}, -ac5(a,b,c,d){var s=0,r=A.S(d),q,p=this,o,n,m,l,k -var $async$Cd=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:k={} -k.a=b -o=A.Ac() -if(A.b1(c)!==B.vP)n=!(A.a(b.f,"responseType")===B.l6||A.a(b.f,"responseType")===B.l5) -else n=!1 -if(n)if(A.b1(c)===B.dB)b.f=B.KH -else b.f=B.eF -n=new A.WY(k,p) -m=t.z -k.b=A.Hu(new A.X5(k),m) -l=p.ny$ -l.Y(l,new A.X6(k,n)) -k.b=k.b.aV(0,n.$1(new A.X7(k,p)),m) -l.Y(l,new A.X8(k,new A.X1(k,p))) -l.Y(l,new A.X9(k,new A.WU(k,p))) -q=k.b.aV(0,new A.Xa(k,c),c.j("cN<0>")).hI(new A.Xb(k,o,c)) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$Cd,r)}, -ll(a,b){return this.a_o(a,b,b.j("cN<0>"))}, -a_o(a6,a7,a8){var s=0,r=A.S(a8),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 -var $async$ll=A.T(function(a9,b0){if(a9===1){o=b0 -s=p}while(true)switch(s){case 0:a1=a6.ch -a2=null -p=4 -s=7 -return A.U(m.ul(a6),$async$ll) -case 7:l=b0 -e=A.a(m.N3$,"httpClientAdapter") -d=a1 -d=d==null?null:d.gahM() -s=8 -return A.U(e.vk(0,a6,l,d),$async$ll) -case 8:a2=b0 -a2.b=A.a(a2.b,"headers") -k=A.aBr(A.a(a2.b,"headers")) -a2.toString -e=A.b([],t.Bw) -d=a2.e -c=a2.c -b=a2.d -j=A.akZ(null,a2.r,k,d,e,a6,c,b,a7) -i=a6.ah3(a2.c) -s=i||A.a(a6.w,"receiveDataWhenStatusError")?9:11 -break -case 9:if(!(A.b1(a7)===B.vP||A.b1(a7)===B.dB))a=!(A.a(a6.f,"responseType")===B.l6||A.a(a6.f,"responseType")===B.l5) -else a=!1 -h=a -g=null -if(h){g=J.azz(k,"content-type") -J.ao8(k,"content-type","application/json; charset=utf-8")}a4=j -a5=a7.j("0?") -s=12 -return A.U(m.N4$.wz(a6,a2),$async$ll) -case 12:a4.a=a5.a(b0) -if(h)J.ao8(k,"content-type",g) -s=10 -break -case 11:s=13 -return A.U(a2.a.ae6(null).aA(0),$async$ll) -case 13:case 10:if(i){e=A.WR(m.ny$.c,new A.WQ(j,a7),a7.j("cN<0>")) -q=e -s=1 -break}else{e=A.aAA("Http status error ["+A.e(a2.c)+"]",a6,j,B.mQ) -throw A.c(e)}p=2 -s=6 -break -case 4:p=3 -a3=o -f=A.ab(a3) -e=A.akd(f,a6,null) -throw A.c(e) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$ll,r)}, -ul(a){return this.a8m(a)}, -a8m(a){var s=0,r=A.S(t.Dt),q,p=this,o,n,m,l,k,j,i,h,g,f -var $async$ul=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:g={} -f=a.ax -s=f!=null&&B.c.A(B.nD,A.a(a.a,"method"))?3:4 -break -case 3:g.a=null -s=f instanceof A.qD?5:7 -break -case 5:J.cR(A.a(a.b,"_headers"),"content-type","multipart/form-data; boundary="+A.a(f.a,"_boundary")) -o=f.Nb() -n=f.gp(f) -g.a=n -J.cR(A.a(a.b,"_headers"),"content-length",B.f.i(n)) -s=6 -break -case 7:s=8 -return A.U(p.N4$.E0(a),$async$ul) -case 8:m=c -l=B.z.giu().cS(m) -n=g.a=l.length -J.cR(A.a(a.b,"_headers"),"content-length",B.f.i(n)) -k=A.b([],t.R_) -j=B.e.dV(n/1024) -for(i=0;i(@)")}} -A.Xb.prototype={ -$2(a,b){var s,r=this,q=a instanceof A.dg -if(q)if(a.b===B.BU)return A.aoQ(a.a,r.a.a,r.c) -s=q?a.a:a -throw A.c(A.akd(s,r.a.a,r.b))}, -$S(){return this.c.j("cN<0>(@,@)")}} -A.WQ.prototype={ -$0(){return this.a}, -$S(){return this.b.j("cN<0>()")}} -A.xE.prototype={} -A.nR.prototype={ -i(a){return"InterceptorResultType."+this.b}} -A.dg.prototype={ -gbN(a){return this.a}} -A.abf.prototype={} -A.ot.prototype={ -eq(a,b){this.a.c3(0,new A.dg(b,B.bw))}} -A.kp.prototype={ -eq(a,b){this.a.c3(0,new A.dg(b,B.bw))}} -A.jT.prototype={ -eq(a,b){this.a.fG(new A.dg(b,B.bw),b.e)}} -A.HR.prototype={ -h(a,b){return this.a[b]}, -n(a,b,c){var s=this.a -if(s.length===b)s.push(c) -else s[b]=c}, -gp(a){return this.e}, -sp(a,b){return this.e=b}} -A.WO.prototype={} -A.NE.prototype={} -A.qD.prototype={ -Wp(a,b){this.a="--dio-boundary-"+B.b.m2(B.f.i(B.xB.aer(4294967296)),10,"0") -A.atn(a,new A.Zs(this),!1,b)}, -Im(a,b){var s='content-disposition: form-data; name="'+A.e(this.yc(a))+'"',r=$.avr().b -return(!r.test(b)?s+"\r\ncontent-type: text/plain; charset=utf-8\r\ncontent-transfer-encoding: binary":s)+"\r\n\r\n"}, -In(a){var s={},r=a.gl(a),q='content-disposition: form-data; name="'+A.e(this.yc(a.gcG(a)))+'"' -s.a=q -r.gaca(r) -q=q+'; filename="'+A.e(this.yc(r.gaca(r)))+'"' -s.a=q -s.a=q+"\r\ncontent-type: "+A.e(r.guX(r)) -r.gad9(r) -r.gad9(r).Y(0,new A.Zu(s)) -return s.a+"\r\n\r\n"}, -yc(a){var s=A.fM(a,this.b,"%0D%0A") -return A.fM(s,'"',"%22")}, -gp(a){var s,r,q,p,o,n=this,m={},l=m.a=0 -B.c.Y(n.c,new A.ZC(m,n)) -for(s=n.d,r=s.length;l"))}} -A.Zs.prototype={ -$2(a,b){var s -if(b==null)return null -s=J.bX(b) -this.a.c.push(new A.aw(a,s,t.mT)) -return null}, -$S:388} -A.Zu.prototype={ -$2(a,b){b.Y(0,new A.Zt(this.a,a))}, -$S:131} -A.Zt.prototype={ -$1(a){var s=this.a -s.a=s.a+"\r\n"+A.e(this.b)+": "+a}, -$S:33} -A.ZC.prototype={ -$1(a){var s,r=this.a,q=r.a,p=this.b.Im(a.gcG(a),a.gl(a)) -p=B.z.giu().cS(p) -s=a.gl(a) -r.a=q+(29+p.length+B.z.giu().cS(s).length+2)}, -$S:132} -A.Zz.prototype={ -$1(a){this.a.E(0,B.z.giu().cS(a))}, -$S:33} -A.ZB.prototype={ -$1(a){return this.a.E(0,B.z.giu().cS(a))}, -$S:33} -A.ZA.prototype={ -$0(){return this.a.E(0,A.b([13,10],t.t))}, -$S:0} -A.Zw.prototype={ -$1(a){var s=this,r=s.b,q=s.a -r.$1("--"+A.a(q.a,"_boundary")+"\r\n") -r.$1(q.Im(a.gcG(a),a.gl(a))) -s.c.$1(a.gl(a)) -s.d.$0()}, -$S:132} -A.Zx.prototype={ -$1(a){var s=this,r=s.b,q=s.a -r.$1("--"+A.a(q.a,"_boundary")+"\r\n") -r.$1(q.In(a)) -return A.aIW(a.gl(a).Nb(),s.c).aV(0,new A.Zv(s.d),t.z)}, -$S:391} -A.Zv.prototype={ -$1(a){return this.a.$0()}, -$S:15} -A.Zy.prototype={ -$1(a){this.b.$1("--"+A.a(this.a.a,"_boundary")+"--\r\n") -this.c.eD(0)}, -$S:7} -A.HB.prototype={ -h(a,b){return this.a.h(0,B.b.jM(b).toLowerCase())}, -PM(a,b){var s,r=this.a.h(0,B.b.jM(b).toLowerCase()) -if(r==null)return null -s=J.ax(r) -if(s.gp(r)===1)return s.gJ(r) -throw A.c(A.cv('"'+b+'" header has more than one value, please use Headers[name]'))}, -QQ(a,b,c){if(c==null)return -this.a.n(0,B.b.jM(b).toLowerCase(),A.b([B.b.jM(c)],t.s))}, -i(a){var s,r=new A.by("") -this.a.Y(0,new A.a_k(r)) -s=r.a -return s.charCodeAt(0)==0?s:s}} -A.a_i.prototype={ -$2(a,b){return new A.aw(B.b.jM(a).toLowerCase(),b,t.Kc)}, -$S:392} -A.a_k.prototype={ -$2(a,b){J.eE(b,new A.a_j(this.a,a))}, -$S:131} -A.a_j.prototype={ -$1(a){this.a.a+=this.b+": "+a+"\n" -return null}, -$S:33} -A.ou.prototype={ -i(a){return"ResponseType."+this.b}} -A.xA.prototype={ -i(a){return"ListFormat."+this.b}} -A.UN.prototype={ -aax(a){return B.c.A(B.nD,a)?A.bH(J.ag(A.a(this.b,"_headers"),"content-type")):null}} -A.IQ.prototype={} -A.a2W.prototype={} -A.jg.prototype={ -grz(){var s,r,q,p,o=this,n=o.ay -if(!B.b.bl(n,A.bZ("https?:",!0))){n=A.a(o.nw$,"baseUrl")+n -s=n.split(":/") -if(s.length===2){r=J.an6(s[0],":/") -q=s[1] -n=r+A.fM(q,"//","/")}}p=A.ari(A.a(o.nx$,"queryParameters"),A.a(o.at,"listFormat")) -if(p.length!==0)n+=(B.b.A(n,"?")?"&":"?")+p -return A.p_(n,0,null).Or()}, -gbN(a){return this.ax}} -A.afM.prototype={ -G3(a,b,c,d,e,f,g,h,i,j,k,l,m,a0){var s,r=this,q="_headers",p="content-type",o=t.z,n=A.aiB(d,o) -r.b=n -if(r.e!=null&&!J.eD(A.a(n,q),p))J.cR(A.a(r.b,q),p,r.e) -s=J.eD(A.a(r.b,q),p) -r.a=g==null?"GET":g -r.c=m==null?0:m -r.d=i==null?0:i -r.at=e==null?B.ei:e -r.x=b==null?A.z(t.N,o):b -r.y=c!==!1 -r.z=f==null?5:f -r.w=h!==!1 -r.r=a0==null?new A.afN():a0 -r.f=l==null?B.eF:l -if(!s)r.suX(0,a==null?"application/json; charset=utf-8":a)}, -suX(a,b){var s,r,q=this,p="_headers",o="content-type" -if(b!=null){s=A.a(q.b,p) -r=B.b.jM(b) -q.e=r -J.cR(s,o,r)}else{q.e=null -J.l7(A.a(q.b,p),o)}}, -gah2(){return A.a(this.r,"validateStatus")}, -ah3(a){return this.gah2().$1(a)}} -A.afN.prototype={ -$1(a){return a!=null&&a>=200&&a<300}, -$S:151} -A.ML.prototype={} -A.Qx.prototype={} -A.air.prototype={ -$2(a,b){var s,r="Stream is already closed",q=b.a -if(t.H3.b(a)){if((q.e&2)!==0)A.K(A.X(r)) -q.td(0,a)}else{s=new Uint8Array(A.kZ(a)) -if((q.e&2)!==0)A.K(A.X(r)) -q.td(0,s)}}, -$S(){return this.b.j("~(0,iP)")}} -A.cN.prototype={ -i(a){var s=this.a -if(t.f.b(s))return B.at.lM(s) -return J.bX(s)}, -gbN(a){return this.a}} -A.aa7.prototype={} -A.aa8.prototype={ -$2(a,b){if(b==null)return a -return a+"="+A.mG(B.cv,J.bX(b),B.z,!0)}, -$S:394} -A.WD.prototype={ -E0(a){return this.agK(a)}, -agK(a){var s=0,r=A.S(t.N),q,p,o,n -var $async$E0=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:o=a.ax -n=o==null?"":o -if(typeof n!="string")if(A.arh(A.bH(J.ag(A.a(a.b,"_headers"),"content-type")))){q=B.at.lM(o) -s=1 -break}else if(t.f.b(n)){p=A.bH(J.ag(A.a(a.b,"_headers"),"content-type")) -a.suX(0,p==null?"application/x-www-form-urlencoded;charset=utf-8":p) -q=A.ari(n,B.ei) -s=1 -break}q=J.bX(n) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$E0,r)}, -wz(a,b){return this.agL(a,b)}, -agL(a,b){var s=0,r=A.S(t.z),q,p,o,n,m,l,k,j,i,h,g,f,e -var $async$wz=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:e={} -if(A.a(a.f,"responseType")===B.l5){q=b -s=1 -break}e.a=e.b=0 -p=new A.a4($.a5,t.LR) -o=new A.aI(p,t.zh) -n=b.a -m=t.H3 -l=A.arY(new A.WE(e,!1,a),m,m).FX(n) -k=A.b([],t.XE) -e.c=0 -l.iG(new A.WF(e,k),!0,new A.WG(o),new A.WH(o)) -s=3 -return A.U(p,$async$wz) -case 3:p=e.c -j=new Uint8Array(p) -for(p=k.length,i=0,h=0;h>>16&255,s.gl(s)>>>8&255,s.gl(s)&255) -o.a.toString -t.Nw.a(null) -r=A.eI(n,A.cc(n,A.jM(A.bu("http log",n,n,n,n,A.ck(n,n,B.m,n,B.i,n,n,n,n,n,n,14,n,B.v,n,n,!0,n,n,n,n,n,n,n,n),B.lq,n),n,n),s,n,n,66,n,n,66),B.V,!1,n,n,n,n,n,n,n,n,n,n,n,o.ga_y(),new A.acw(b),n,n,n,n,n,n) -o.a.toString -k=A.lc(33) -q=o.d -if(q<1)q=o.d=1 -p=A.a(o.f,m) -o.a.toString -if(q>p-66){q=A.a(o.f,m) -o.a.toString -o.d=q-66}q=o.e -if(q<1)q=o.e=1 -p=A.a(o.r,l) -o.a.toString -if(q>p-66){q=A.a(o.r,l) -o.a.toString -o.e=q-66}return A.cc(B.cf,new A.Ge(k,r,n),n,n,n,n,new A.as(o.d,o.e,0,0),n,n)}, -a_z(a){var s=this,r=a.b -s.d=s.d+r.a -s.e=s.e+r.b -s.a4(new A.acu())}} -A.acw.prototype={ -$0(){A.hW(this.a,!1).kP(A.akG(new A.acv(),null,t.z))}, -$S:6} -A.acv.prototype={ -$1(a){return new A.nG(null)}, -$S:478} -A.acu.prototype={ -$0(){}, -$S:0} -A.xF.prototype={ -am(){return new A.OR(null,B.k)}} -A.OR.prototype={ -I(a,b){var s,r=null -this.mD(0,b) -s=this.a.c.c -s=s==null?r:s.b -return A.cc(r,A.jM(A.bu(s==null?"no error":s,r,r,r,r,r,r,r),r,r),r,r,r,1/0,r,r,r)}, -gjQ(){return!0}} -A.SG.prototype={ -aB(){this.aS() -this.k0()}, -dc(){var s=this.cV$ -if(s!=null){s.ab() -this.cV$=null}this.j5()}} -A.xH.prototype={ -am(){return new A.OT(null,B.k)}} -A.OT.prototype={ -aB(){var s=this,r=$.b4() -s.d=new A.jq(B.bn,r) -s.e=new A.jq(B.bn,r) -s.f=new A.jq(B.bn,r) -s.r=new A.jq(B.bn,r) -s.Vj()}, -m(a){var s=this,r=A.a(s.r,"_bodyController"),q=r.y2$=$.b4() -r.y1$=0 -r=A.a(s.f,"_paramController") -r.y2$=q -r.y1$=0 -r=A.a(s.d,"_urlController") -r.y2$=q -r.y1$=0 -r=A.a(s.e,"_cookieController") -r.y2$=q -r.y1$=0 -s.aR(0)}, -I(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null -h.mD(0,b) -s=h.a.c -r=s.a -q=s.b -s=r.e -s.toString -p=A.atC(s) -s=q==null -o=s?g:q.d -if(o==null){o=r.e -o.toString}n=A.atC(o) -o=A.bu(u.A,g,g,g,g,A.ck(g,g,B.cA,g,g,g,g,g,g,g,g,10,g,g,g,g,!0,g,g,g,g,g,g,g,g),g,g) -m=A.ap1(A.bu("copy all",g,g,g,g,g,g,g),new A.ae7(h,b,r,p,n,q)) -l=h.ph("url",r.b) -k=h.ph("method",r.c) -j=h.ph("requestTime",p) -i=h.ph("responseTime",n) -s=s?g:q.e -return new A.cq(B.bS,A.a7d(A.el(A.b([o,m,l,k,j,i,h.ph("duration",""+(s==null?0:s)+"ms"),h.Z6(r.r),h.zC("params",r.f),h.zC("header",r.w)],t.p),B.aC,B.E,B.Q),g,B.a2),g)}, -zC(a,b){var s=null -return A.el(A.b([A.bu(a+":",s,s,s,s,A.ck(s,s,s,s,s,s,s,s,s,s,s,15,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s),new A.qY(b,!1,14,s)],t.p),B.aC,B.E,B.Q)}, -ph(a,b){var s,r,q=null -if(typeof b=="string")s=b -else{s=b==null?q:b -if(s==null)s=q}r=A.eI(B.aQ,new A.cq(new A.as(0,2,0,2),A.bu(a+":"+A.e(s),q,q,q,q,A.ck(q,q,q,q,q,q,q,q,q,q,q,15,q,q,q,q,!0,q,q,q,q,q,q,q,q),q,q),q),B.V,!1,q,q,q,q,q,q,q,new A.ae6(this,b),q,q,q,q,q,q,q,q,q,q,q) -return r}, -gjQ(){return!0}, -Z6(a){var s,r=null -if(t.f.b(a))return this.zC("body",a) -else if(a instanceof A.qD){s=new A.dh(t.C9) -s.AX(s,a.c) -s.AX(s,a.d) -this.x=s -return A.bu("formData:"+A.atR(s),r,r,r,r,A.ck(r,r,r,r,r,r,r,r,r,r,r,15,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r)}else{s=A.dz(r,r,r) -return s}}, -ab8(a){if(a instanceof A.qD)return"formData:"+A.atR(this.x) -else return"body:"+A.um(a,null," ")}} -A.ae7.prototype={ -$0(){var s=this,r=s.c,q=r.b,p=r.c,o=s.f -o=o==null?null:o.e -if(o==null)o=0 -A.Tt(s.b,"url:"+A.e(q)+"\nmethod:"+A.e(p)+"\nrequestTime:"+s.d+"\nresponseTime:"+s.e+"\nduration:"+o+"ms\n"+s.a.ab8(r.r)+"\nparams:"+A.um(r.f,null," ")+"\nheader:"+A.e(r.w))}, -$S:0} -A.ae6.prototype={ -$0(){var s=this.a.c -s.toString -A.Tt(s,this.b)}, -$S:0} -A.Ee.prototype={ -aB(){this.aS() -this.k0()}, -dc(){var s=this.cV$ -if(s!=null){s.ab() -this.cV$=null}this.j5()}} -A.xI.prototype={ -am(){return new A.OU(null,B.k)}} -A.OU.prototype={ -I(a,b){var s,r,q,p,o,n,m=this,l=null -m.mD(0,b) -s=m.a.c.b -r=s==null -q=r?l:s.b -if(q==null)q="no response" -p=A.dz(l,l,10) -o=m.d -n=t.p -o=A.fB(A.b([p,A.bu(o?"shrink all":"expand all",l,l,l,l,l,l,l),new A.Ly(o,new A.aeb(m),l),A.qr(new A.A_(m.e,new A.aec(m),1,30,l),1)],n),B.af,B.E,B.Q) -p=A.bu(u.A,l,l,l,l,A.ck(l,l,B.cA,l,l,l,l,l,l,l,l,10,l,l,l,l,!0,l,l,l,l,l,l,l,l),l,l) -return A.a7d(A.el(A.b([o,p,m.Gp("headers:",r?l:s.f),m.Gp("response.data:",q)],n),B.af,B.E,B.Q),l,B.a2)}, -Gp(a,b){var s=this,r=null -return A.el(A.b([A.ap1(A.bu("copy json",r,r,r,r,r,r,r),new A.ae8(s,b)),A.bu(a,r,r,r,r,A.ck(r,r,r,r,r,r,r,r,r,r,r,s.e,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r),new A.qY(b,s.d,s.e,r)],t.p),B.aC,B.E,B.Q)}, -gjQ(){return!0}} -A.aeb.prototype={ -$1(a){var s=this.a -s.d=a -s.a4(new A.aea())}, -$S:5} -A.aea.prototype={ -$0(){}, -$S:0} -A.aec.prototype={ -$1(a){var s=this.a -s.e=a -s.a4(new A.ae9())}, -$S:53} -A.ae9.prototype={ -$0(){}, -$S:0} -A.ae8.prototype={ -$0(){var s=this.a.c -s.toString -A.Tt(s,A.um(this.b,null," "))}, -$S:0} -A.SH.prototype={ -aB(){this.aS() -this.k0()}, -dc(){var s=this.cV$ -if(s!=null){s.ab() -this.cV$=null}this.j5()}} -A.o0.prototype={ -am(){return new A.Cb(A.b([A.ar4("request"),A.ar4("response")],t.vT),null,null,B.k)}} -A.Cb.prototype={ -aB(){this.e=A.aq1(0) -this.aS()}, -m(a){this.e.m(0) -this.Vk(0)}, -I(a,b){var s,r=this,q=null,p=A.ae(b),o=r.a.c.a.b -o.toString -o=A.F5(q,p.db,q,1,p.rx,A.bu(o,q,q,q,q,A.ck(q,q,q,q,q,q,q,q,q,q,q,11,q,q,q,q,!0,q,q,q,q,q,q,q,q),q,q)) -s=r.e -if(s==null)s=$.avv() -return A.rz(o,new A.ys(s,r.ga52(),new A.L7(new A.aee(r),3,!0,!0,!0,q),q),A.aom(r.f,A.b([A.UU(A.HI(B.BB,q),"Request"),A.UU(A.HI(B.BA,q),"Response"),A.UU(A.HI(B.Bw,q),"Error")],t.ur),r.gYP(),q))}, -a53(a){if(this.c!=null)this.a4(new A.aed(this,a))}, -YQ(a){var s=this.e -s.toString -s.a9t(a,B.au,A.bR(0,300,0))}} -A.aee.prototype={ -$2(a,b){var s -if(b===0)return new A.xH(this.a.a.c,null) -else{s=this.a.a -if(b===1)return new A.xI(s.c,null) -else return new A.xF(s.c,null)}}, -$S:484} -A.aed.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.Ef.prototype={ -m(a){var s=this,r=s.cz$ -if(r!=null)r.K(0,s.gkh()) -s.cz$=null -s.aR(0)}, -bL(){this.cw() -this.ck() -this.ki()}} -A.ajd.prototype={ -$2(a,b){this.a.a+=A.e(a)+":"+A.e(b)+"\n" -return null}, -$S:31} -A.a1u.prototype={ -aeF(a,b){var s,r=J.bX(b.a) -if(A.a(this.a,"logMap").ap(0,r)){s=A.a(this.a,"logMap") -s.kX(s,r,new A.a1w(b))}}, -aeP(a){var s,r=this,q="logMap",p="keys" -if(A.a(r.a,q).a>=50){A.a(r.a,q).B(0,J.v9(A.a(r.b,p))) -J.ao_(A.a(r.b,p))}s=J.bX(a.a) -J.ayW(A.a(r.b,p),0,s) -A.a(r.a,q).bs(0,s,new A.a1x(a))}, -aeQ(a){var s,r=J.bX(a.a) -if(A.a(this.a,"logMap").ap(0,r)){s=A.a(this.a,"logMap") -s.kX(s,r,new A.a1y(a))}}} -A.a1v.prototype={ -$1(a){var s -if(a.c==null){s=a.b -s=(s==null?null:s.c)==null}else s=!0 -return s}, -$S:485} -A.a1w.prototype={ -$1(a){a.c=this.a -return a}, -$S:156} -A.a1x.prototype={ -$0(){return new A.he(this.a)}, -$S:489} -A.a1y.prototype={ -$1(a){var s=this.a -s.e=s.d.a-a.a.e.a -a.b=s -return a}, -$S:156} -A.qY.prototype={ -am(){return new A.OG(new A.dh(t.IN),B.k)}} -A.OG.prototype={ -b4(a){var s -this.bu(a) -s=this.a.d -if(a.d!==s)this.HI(s)}, -I(a,b){var s,r,q,p=this,o=null -p.e=0 -s=p.wS(p.a.c) -if(s===B.e2)r=p.Gr(p.a.c) -else{q=p.a -if(s===B.fV)r=p.Gm(t.kc.a(q.c),"") -else return A.bu(A.um(q.c,o," "),o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,p.a.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)}return r}, -Gs(a,b){var s,r,q,p=this,o=null,n=t.p,m=A.b([],n) -if(p.mP(++p.e)){s=b==null?"{":b+":{" -r=A.bu(s,o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,p.a.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)}else{s=b==null?"{...}":b+":{...}" -r=A.bu(s,o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,p.a.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)}m.push(p.Lk(p.e,r)) -if(p.mP(p.e)){q=A.b([],n) -a.toString -J.eE(a,new A.adL(p,q)) -q.push(A.bu("},",o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,p.a.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)) -m.push(new A.cq(new A.as(16,0,0,0),A.el(q,B.aC,B.E,B.Q),o))}return A.el(m,B.aC,B.E,B.Q)}, -Gr(a){return this.Gs(a,null)}, -Gm(a,b){var s,r,q,p=this,o=null,n=t.p,m=A.b([],n),l=++p.e -if(b.length===0)s=A.bu("[",o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,p.a.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o) -else{l=p.mP(l) -r=p.a -s=l?A.bu(b+":[",o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,r.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o):A.bu(b+":[...]",o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,r.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)}m.push(A.eI(B.aQ,p.Lk(p.e,s),B.V,!1,o,o,o,o,o,o,o,new A.adI(p,a),o,o,o,o,o,o,o,o,o,o,o)) -if(p.mP(p.e)){q=A.b([],n) -a.toString -J.eE(a,new A.adJ(p,q)) -q.push(A.bu("]",o,o,o,o,A.ck(o,o,o,o,o,o,o,o,o,o,o,p.a.e,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)) -m.push(new A.cq(new A.as(16,0,0,0),A.el(q,B.aC,B.E,B.Q),o))}return A.el(m,B.aC,B.E,B.Q)}, -Lk(a,b){var s=null,r=this.mP(a)?0:4.71 -return A.eI(B.aQ,A.fB(A.b([A.M_(B.M,r,A.HI(B.Bx,12),s),b],t.p),B.af,B.E,B.Q),B.V,!1,s,s,s,s,s,s,s,s,s,s,s,s,new A.adQ(this,a),s,s,s,s,s,s)}, -Gq(a,b){var s,r,q=null,p=b==null,o=p?"":b -if(typeof a=="string")s='"'+a+'"' -else{s=a==null?q:J.bX(a) -if(s==null)s=q}r=A.bu(o+":"+A.e(s)+",",q,q,q,q,A.ck(q,q,q,q,q,q,q,q,q,q,q,this.a.e,q,q,q,q,!0,q,q,q,q,q,q,q,q),q,q) -return!p?A.eI(B.aQ,r,B.V,!1,q,q,q,q,q,q,q,new A.adK(this,a),q,q,q,q,q,q,q,q,q,q,q):r}, -YX(a){return this.Gq(a,null)}, -mP(a){var s -if(a===1)return!0 -s=this.d -if(this.a.d){s=s.h(0,B.f.i(a)) -return s==null?!0:s}else{s=s.h(0,B.f.i(a)) -return s==null?!1:s}}, -a0m(a){var s,r=this.d -r.bs(0,a,new A.adN()) -s=r.h(0,a) -s.toString -r.n(0,a,!s) -this.a4(new A.adO())}, -HI(a){this.d.Y(0,new A.adM(this,a))}, -wS(a){if(t.j.b(a))return B.fV -else if(t.a.b(a))return B.e2 -else return B.C9}} -A.adL.prototype={ -$2(a,b){var s,r=this.a,q=r.wS(b) -if(q===B.e2)s=r.Gs(b,a) -else s=q===B.fV?r.Gm(t.j.a(b),a):r.Gq(b,a) -this.b.push(s)}, -$S:13} -A.adI.prototype={ -$0(){var s=J.bX(this.b),r=this.a.c -r.toString -A.Tt(r,s)}, -$S:0} -A.adJ.prototype={ -$1(a){var s=this.a,r=s.wS(a)===B.e2?s.Gr(a):s.YX(a) -this.b.push(r)}, -$S:15} -A.adQ.prototype={ -$0(){var s,r=this.b -if(r===0){s=this.a -s.HI(!s.mP(r)) -s.a4(new A.adP())}this.a.a0m(B.f.i(r))}, -$S:0} -A.adP.prototype={ -$0(){}, -$S:0} -A.adK.prototype={ -$0(){var s=this.a.c -s.toString -A.Tt(s,this.b)}, -$S:0} -A.adN.prototype={ -$0(){return!1}, -$S:47} -A.adO.prototype={ -$0(){}, -$S:0} -A.adM.prototype={ -$2(a,b){this.a.d.n(0,a,this.b)}, -$S:167} -A.qX.prototype={ -i(a){return"JsonType."+this.b}} -A.eW.prototype={ -i(a){return"AnimationStatus."+this.b}} -A.bv.prototype={ -i(a){return"#"+A.bF(this)+"("+A.e(this.wx())+")"}, -wx(){switch(this.gaZ(this)){case B.b8:return"\u25b6" -case B.aM:return"\u25c0" -case B.H:return"\u23ed" -case B.w:return"\u23ee"}}} -A.p5.prototype={ -i(a){return"_AnimationDirection."+this.b}} -A.vl.prototype={ -i(a){return"AnimationBehavior."+this.b}} -A.l8.prototype={ -gl(a){return A.a(this.x,"_value")}, -sl(a,b){var s=this -s.ex(0) -s.zt(b) -s.ab() -s.oY()}, -gf0(){var s=this.r -if(!(s!=null&&s.a!=null))return 0 -s=this.w -s.toString -return s.hn(0,this.y.a/1e6)}, -zt(a){var s=this,r=s.a,q=s.b,p=B.e.G(a,r,q) -s.x=p -if(A.a(p,"_value")===r)s.Q=B.w -else if(A.a(s.x,"_value")===q)s.Q=B.H -else s.Q=s.z===B.X?B.b8:B.aM}, -gaZ(a){return A.a(this.Q,"_status")}, -lS(a,b){var s=this -s.z=B.X -if(b!=null)s.sl(0,b) -return s.Gg(s.b)}, -bp(a){return this.lS(a,null)}, -Ps(a,b){this.z=B.eT -return this.Gg(this.a)}, -cd(a){return this.Ps(a,null)}, -h_(a,b,c){var s,r,q,p,o,n=this,m="_value" -A.a($.zP.qo$,"_accessibilityFeatures") -if(c==null){s=n.b-n.a -r=isFinite(s)?Math.abs(a-A.a(n.x,m))/s:1 -if(n.z===B.eT&&n.f!=null){q=n.f -q.toString -p=q}else{q=n.e -q.toString -p=q}o=new A.aP(B.e.aI(p.a*r))}else o=a===A.a(n.x,m)?B.r:c -n.ex(0) -q=o.a -if(q===B.r.a){if(A.a(n.x,m)!==a){n.x=B.e.G(a,n.a,n.b) -n.ab()}n.Q=n.z===B.X?B.H:B.w -n.oY() -return A.ald()}return n.ug(new A.adz(q/1e6,A.a(n.x,m),a,b,B.bK))}, -Gg(a){return this.h_(a,B.a9,null)}, -Pg(a){var s,r,q=this,p=q.a,o=q.b,n=q.e -q.ex(0) -s=A.a(q.x,"_value") -r=n.a/1e6 -s=o===p?0:s/(o-p)*r -return q.ug(new A.afL(p,o,!1,q.ga_g(),r,s,B.bK))}, -a_h(a){this.z=a -this.Q=a===B.X?B.b8:B.aM -this.oY()}, -Ng(a){var s,r,q=this,p=$.avD(),o=a<0 -q.z=o?B.eT:B.X -s=o?q.a-0.01:q.b+0.01 -A.a($.zP.qo$,"_accessibilityFeatures") -r=new A.A8(s,A.uK(p,A.a(q.x,"_value")-s,a),B.bK) -r.a=B.Rb -q.ex(0) -return q.ug(r)}, -ug(a){var s,r=this -r.w=a -r.y=B.r -r.x=B.e.G(a.es(0,0),r.a,r.b) -s=r.r.oD(0) -r.Q=r.z===B.X?B.b8:B.aM -r.oY() -return s}, -oE(a,b){this.y=this.w=null -this.r.oE(0,b)}, -ex(a){return this.oE(a,!0)}, -m(a){var s=this -s.r.m(0) -s.r=null -s.d2$.aG(0) -s.bj$.aG(0) -s.lc(0)}, -oY(){var s=this,r=A.a(s.Q,"_status") -if(s.as!==r){s.as=r -s.r_(r)}}, -YE(a){var s,r=this -r.y=a -s=a.a/1e6 -r.x=B.e.G(r.w.es(0,s),r.a,r.b) -if(r.w.kH(s)){r.Q=r.z===B.X?B.H:B.w -r.oE(0,!1)}r.ab() -r.oY()}, -wx(){var s,r,q=this,p=q.r,o=p==null,n=!o&&p.a!=null?"":"; paused" -if(o)s="; DISPOSED" -else s=p.b?"; silenced":"" -p=q.c -r=p==null?"":"; for "+p -return A.e(q.xw())+" "+B.e.V(A.a(q.x,"_value"),3)+n+s+r}} -A.adz.prototype={ -es(a,b){var s,r,q=this,p=B.e.G(b/q.b,0,1) -if(p===0)return q.c -else{s=q.d -if(p===1)return s -else{r=q.c -return r+(s-r)*q.e.T(0,p)}}}, -hn(a,b){return(this.es(0,b+0.001)-this.es(0,b-0.001))/0.002}, -kH(a){return a>this.b}} -A.afL.prototype={ -es(a,b){var s=this,r=b+s.r,q=s.f,p=B.e.bE(r/q,1) -B.e.lg(r,q) -s.e.$1(B.X) -q=A.Z(s.b,s.c,p) -q.toString -return q}, -hn(a,b){return(this.c-this.b)/this.f}, -kH(a){return!1}} -A.My.prototype={} -A.Mz.prototype={} -A.MA.prototype={} -A.Mr.prototype={ -a2(a,b){}, -K(a,b){}, -c1(a){}, -e5(a){}, -gaZ(a){return B.H}, -gl(a){return 1}, -i(a){return"kAlwaysCompleteAnimation"}} -A.Ms.prototype={ -a2(a,b){}, -K(a,b){}, -c1(a){}, -e5(a){}, -gaZ(a){return B.w}, -gl(a){return 0}, -i(a){return"kAlwaysDismissedAnimation"}} -A.vp.prototype={ -a2(a,b){return this.ga3(this).a2(0,b)}, -K(a,b){return this.ga3(this).K(0,b)}, -c1(a){return this.ga3(this).c1(a)}, -e5(a){return this.ga3(this).e5(a)}, -gaZ(a){var s=this.ga3(this) -return s.gaZ(s)}} -A.yO.prototype={ -sa3(a,b){var s,r=this,q=r.c -if(b==q)return -if(q!=null){r.a=q.gaZ(q) -q=r.c -r.b=q.gl(q) -if(r.jq$>0)r.vb()}r.c=b -if(b!=null){if(r.jq$>0)r.va() -q=r.b -s=r.c -s=s.gl(s) -if(q==null?s!=null:q!==s)r.ab() -q=r.a -s=r.c -if(q!=s.gaZ(s)){q=r.c -r.r_(q.gaZ(q))}r.b=r.a=null}}, -va(){var s=this,r=s.c -if(r!=null){r.a2(0,s.gcY()) -s.c.c1(s.gOt())}}, -vb(){var s=this,r=s.c -if(r!=null){r.K(0,s.gcY()) -s.c.e5(s.gOt())}}, -gaZ(a){var s=this.c -if(s!=null)s=s.gaZ(s) -else{s=this.a -s.toString}return s}, -gl(a){var s=this.c -if(s!=null)s=s.gl(s) -else{s=this.b -s.toString}return s}, -i(a){var s=this,r=s.c -if(r==null)return"ProxyAnimation(null; "+A.e(s.xw())+" "+B.e.V(s.gl(s),3)+")" -return r.i(0)+"\u27a9ProxyAnimation"}} -A.i4.prototype={ -a2(a,b){this.cf() -this.a.a2(0,b)}, -K(a,b){this.a.K(0,b) -this.ve()}, -va(){this.a.c1(this.gmZ())}, -vb(){this.a.e5(this.gmZ())}, -uh(a){this.r_(this.JE(a))}, -gaZ(a){var s=this.a -return this.JE(s.gaZ(s))}, -gl(a){var s=this.a -return 1-s.gl(s)}, -JE(a){switch(a.a){case 1:return B.aM -case 2:return B.b8 -case 3:return B.w -case 0:return B.H}}, -i(a){return this.a.i(0)+"\u27aaReverseAnimation"}} -A.nd.prototype={ -AA(a){var s=this -switch(a.a){case 0:case 3:s.d=null -break -case 1:if(s.d==null)s.d=B.b8 -break -case 2:if(s.d==null)s.d=B.aM -break}}, -gLc(){if(this.c!=null){var s=this.d -if(s==null){s=this.a -s=s.gaZ(s)}s=s!==B.aM}else s=!0 -return s}, -m(a){this.a.e5(this.gAz())}, -gl(a){var s=this,r=s.gLc()?s.b:s.c,q=s.a,p=q.gl(q) -if(r==null)return p -if(p===0||p===1)return p -return r.T(0,p)}, -i(a){var s=this -if(s.c==null)return s.a.i(0)+"\u27a9"+s.b.i(0) -if(s.gLc())return s.a.i(0)+"\u27a9"+s.b.i(0)+"\u2092\u2099/"+A.e(s.c) -return s.a.i(0)+"\u27a9"+s.b.i(0)+"/"+A.e(s.c)+"\u2092\u2099"}, -ga3(a){return this.a}} -A.DH.prototype={ -i(a){return"_TrainHoppingMode."+this.b}} -A.oW.prototype={ -uh(a){if(a!==this.e){this.ab() -this.e=a}}, -gaZ(a){var s=this.a -return s.gaZ(s)}, -a8U(){var s,r,q=this,p=q.b -if(p!=null){switch(q.c.a){case 0:p=p.gl(p) -s=q.a -r=p<=s.gl(s) -break -case 1:p=p.gl(p) -s=q.a -r=p>=s.gl(s) -break -default:r=!1}if(r){p=q.a -s=q.gmZ() -p.e5(s) -p.K(0,q.gAO()) -p=q.b -q.a=p -q.b=null -p.c1(s) -s=q.a -q.uh(s.gaZ(s))}}else r=!1 -p=q.a -p=p.gl(p) -if(p!==q.f){q.ab() -q.f=p}if(r&&q.d!=null)q.d.$0()}, -gl(a){var s=this.a -return s.gl(s)}, -m(a){var s,r,q=this -q.a.e5(q.gmZ()) -s=q.gAO() -q.a.K(0,s) -q.a=null -r=q.b -if(r!=null)r.K(0,s) -q.b=null -q.bj$.aG(0) -q.d2$.aG(0) -q.lc(0)}, -i(a){var s=this -if(s.b!=null)return A.e(s.a)+"\u27a9TrainHoppingAnimation(next: "+A.e(s.b)+")" -return A.e(s.a)+"\u27a9TrainHoppingAnimation(no next)"}} -A.q8.prototype={ -va(){var s,r=this,q=r.a,p=r.gIS() -q.a2(0,p) -s=r.gIT() -q.c1(s) -q=r.b -q.a2(0,p) -q.c1(s)}, -vb(){var s,r=this,q=r.a,p=r.gIS() -q.K(0,p) -s=r.gIT() -q.e5(s) -q=r.b -q.K(0,p) -q.e5(s)}, -gaZ(a){var s=this.b -if(s.gaZ(s)===B.b8||s.gaZ(s)===B.aM)return s.gaZ(s) -s=this.a -return s.gaZ(s)}, -i(a){return"CompoundAnimation("+this.a.i(0)+", "+this.b.i(0)+")"}, -a4E(a){var s=this -if(s.gaZ(s)!=s.c){s.c=s.gaZ(s) -s.r_(s.gaZ(s))}}, -a4D(){var s=this -if(!J.f(s.gl(s),s.d)){s.d=s.gl(s) -s.ab()}}} -A.vo.prototype={ -gl(a){var s,r=this.a -r=r.gl(r) -s=this.b -s=s.gl(s) -return Math.min(A.da(r),A.da(s))}} -A.Bc.prototype={} -A.Bd.prototype={} -A.Be.prototype={} -A.Ns.prototype={} -A.Q_.prototype={} -A.Q0.prototype={} -A.Q1.prototype={} -A.QB.prototype={} -A.QC.prototype={} -A.RY.prototype={} -A.RZ.prototype={} -A.S_.prototype={} -A.yx.prototype={ -T(a,b){return this.kW(b)}, -kW(a){throw A.c(A.c_(null))}, -i(a){return"ParametricCurve"}} -A.fV.prototype={ -T(a,b){if(b===0||b===1)return b -return this.T_(0,b)}} -A.C5.prototype={ -kW(a){return a}} -A.zy.prototype={ -kW(a){a*=this.a -return a-(a<0?Math.ceil(a):Math.floor(a))}, -i(a){return"SawTooth("+this.a+")"}} -A.ep.prototype={ -kW(a){var s=this.a -a=B.e.G((a-s)/(this.b-s),0,1) -if(a===0||a===1)return a -return this.c.T(0,a)}, -i(a){var s=this,r=s.c -if(!(r instanceof A.C5))return"Interval("+A.e(s.a)+"\u22ef"+A.e(s.b)+")\u27a9"+r.i(0) -return"Interval("+A.e(s.a)+"\u22ef"+A.e(s.b)+")"}} -A.Az.prototype={ -kW(a){return a"))}} -A.aC.prototype={ -gl(a){var s=this.a -return this.b.T(0,s.gl(s))}, -i(a){var s=this.a,r=this.b -return s.i(0)+"\u27a9"+r.i(0)+"\u27a9"+A.e(r.T(0,s.gl(s)))}, -wx(){return A.e(this.xw())+" "+this.b.i(0)}, -ga3(a){return this.a}} -A.eT.prototype={ -T(a,b){return this.b.T(0,this.a.T(0,b))}, -i(a){return this.a.i(0)+"\u27a9"+this.b.i(0)}} -A.ar.prototype={ -en(a){var s=this.a -return A.n(this).j("ar.T").a(J.an6(s,J.awl(J.awm(this.b,s),a)))}, -T(a,b){var s,r=this -if(b===0){s=r.a -return s==null?A.n(r).j("ar.T").a(s):s}if(b===1){s=r.b -return s==null?A.n(r).j("ar.T").a(s):s}return r.en(b)}, -i(a){return"Animatable("+A.e(this.a)+" \u2192 "+A.e(this.b)+")"}, -sBf(a){return this.a=a}, -saO(a,b){return this.b=b}} -A.zv.prototype={ -en(a){return this.c.en(1-a)}} -A.de.prototype={ -en(a){return A.A(this.a,this.b,a)}} -A.z2.prototype={ -en(a){return A.aCU(this.a,this.b,a)}} -A.ly.prototype={ -en(a){var s,r=this.a -r.toString -s=this.b -s.toString -return B.e.aI(r+(s-r)*a)}} -A.fW.prototype={ -T(a,b){if(b===0||b===1)return b -return this.a.T(0,b)}, -i(a){return"CurveTween(curve: "+this.a.i(0)+")"}} -A.E1.prototype={} -A.AO.prototype={ -XZ(a,b){var s,r,q,p,o,n,m,l=this.a -B.c.P(l,a) -for(s=l.length,r=0,q=0;q=n&&b"}} -A.dZ.prototype={ -gl(a){return this.b.a}, -gpf(){var s=this -return!s.e.k(0,s.f)||!s.x.k(0,s.y)||!s.r.k(0,s.w)||!s.z.k(0,s.Q)}, -gpd(){var s=this -return!s.e.k(0,s.r)||!s.f.k(0,s.w)||!s.x.k(0,s.z)||!s.y.k(0,s.Q)}, -gpe(){var s=this -return!s.e.k(0,s.x)||!s.f.k(0,s.y)||!s.r.k(0,s.z)||!s.w.k(0,s.Q)}, -eZ(a){var s,r,q,p,o,n=this,m=null -if(n.gpf()){s=a.L(t.WD) -r=s==null?m:s.f.c.guF() -if(r==null){r=A.e4(a) -r=r==null?m:r.d -q=r}else q=r -if(q==null)q=B.ac}else q=B.ac -if(n.gpd()){r=A.e4(a) -r=r==null?m:r.Q -p=r===!0}else p=!1 -if(n.gpe())A.aAr(a) -switch(q.a){case 1:switch(0){case 0:o=p?n.r:n.e -break}break -case 0:switch(0){case 0:o=p?n.w:n.f -break}break -default:o=m}return new A.dZ(o,n.c,m,n.e,n.f,n.r,n.w,n.x,n.y,n.z,n.Q,0)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.dZ&&b.b.a===s.b.a&&b.e.k(0,s.e)&&b.f.k(0,s.f)&&b.r.k(0,s.r)&&b.w.k(0,s.w)&&b.x.k(0,s.x)&&b.y.k(0,s.y)&&b.z.k(0,s.z)&&b.Q.k(0,s.Q)}, -gv(a){var s=this -return A.a3(s.b.a,s.e,s.f,s.r,s.x,s.y,s.w,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=this,r=new A.Wl(s),q=A.b([r.$2("color",s.e)],t.s) -if(s.gpf())q.push(r.$2("darkColor",s.f)) -if(s.gpd())q.push(r.$2("highContrastColor",s.r)) -if(s.gpf()&&s.gpd())q.push(r.$2("darkHighContrastColor",s.w)) -if(s.gpe())q.push(r.$2("elevatedColor",s.x)) -if(s.gpf()&&s.gpe())q.push(r.$2("darkElevatedColor",s.y)) -if(s.gpd()&&s.gpe())q.push(r.$2("highContrastElevatedColor",s.z)) -if(s.gpf()&&s.gpd()&&s.gpe())q.push(r.$2("darkHighContrastElevatedColor",s.Q)) -r=s.c -if(r==null)r="CupertinoDynamicColor" -q=B.c.bB(q,", ") -return r+"("+q+", resolved by: UNRESOLVED)"}} -A.Wl.prototype={ -$2(a,b){var s=b.k(0,this.a.b)?"*":"" -return s+a+" = "+b.i(0)+s}, -$S:165} -A.Nl.prototype={} -A.ac1.prototype={ -l_(a){return B.o}, -uI(a,b,c,d){return B.cL}, -om(a,b){return B.j}} -A.w5.prototype={ -O(a){var s=this.a,r=A.Wk(s,a) -return J.f(r,s)?this:this.fI(r)}, -q_(a,b,c,d){var s=this,r=a==null?s.a:a,q=b==null?s.gdJ(s):b,p=d==null?s.c:d -return new A.w5(r,q,p,c==null?s.d:c)}, -fI(a){return this.q_(a,null,null,null)}} -A.Nm.prototype={} -A.Nn.prototype={ -CZ(a){return a.gnK(a)==="en"}, -dI(a,b){return new A.d0(B.wS,t.u4)}, -xh(a){return!1}, -i(a){return"DefaultCupertinoLocalizations.delegate(en_US)"}} -A.GF.prototype={$iWm:1} -A.Wn.prototype={ -$0(){return A.aAn(this.a)}, -$S:47} -A.Wo.prototype={ -$0(){var s=this.a,r=s.a -r.toString -s=s.as -s.toString -r.abq() -return new A.Bi(s,r)}, -$S(){return this.b.j("Bi<0>()")}} -A.Gt.prototype={ -I(a,b){var s,r=this,q=b.L(t.I) -q.toString -s=q.f -q=r.e -return A.al3(A.al3(new A.GC(q,r.f,q,null),r.c,s,!0),r.d,s,!1)}} -A.tY.prototype={ -am(){return new A.tZ(B.k,this.$ti.j("tZ<1>"))}, -abJ(){return this.d.$0()}, -af4(){return this.e.$0()}} -A.tZ.prototype={ -aB(){var s,r=this -r.aS() -s=A.a_N(r,null) -s.at=r.ga6C() -s.ax=r.ga6E() -s.ay=r.ga6A() -s.ch=r.ga1E() -r.e=s}, -m(a){var s=A.a(this.e,"_recognizer") -s.k1.aG(0) -s.oJ(0) -this.aR(0)}, -a6D(a){this.d=this.a.af4()}, -a6F(a){var s,r,q=this.d -q.toString -s=a.c -s.toString -r=this.c -r=this.H_(s/r.gjT(r).a) -q=q.a -q.sl(0,A.a(q.x,"_value")-r)}, -a6B(a){var s,r=this,q=r.d -q.toString -s=r.c -q.MK(r.H_(a.a.a.a/s.gjT(s).a)) -r.d=null}, -a1F(){var s=this.d -if(s!=null)s.MK(0) -this.d=null}, -a6H(a){if(this.a.abJ())A.a(this.e,"_recognizer").B1(a)}, -H_(a){var s=this.c.L(t.I) -s.toString -switch(s.f.a){case 0:return-a -case 1:return a}}, -I(a,b){var s,r,q=null,p=b.L(t.I) -p.toString -s=t.w -r=p.f===B.q?b.L(s).f.f.a:b.L(s).f.f.c -r=Math.max(r,20) -return A.oL(B.b7,A.b([this.a.c,new A.Jz(0,0,0,r,A.a1q(B.aQ,q,q,this.ga6G(),q,q),q)],t.p),B.Mx,q,q)}} -A.Bi.prototype={ -MK(a){var s,r,q,p=this,o="_value" -if(Math.abs(a)>=1?a<=0:A.a(p.a.x,o)>0.5){s=p.a -r=A.Z(800,0,A.a(s.x,o)) -r.toString -r=A.bR(0,Math.min(B.e.eG(r),300),0) -s.z=B.X -s.h_(1,B.mI,r)}else{p.b.dg(0) -s=p.a -r=s.r -if(r!=null&&r.a!=null){r=A.Z(0,800,A.a(s.x,o)) -r.toString -r=A.bR(0,B.e.eG(r),0) -s.z=B.eT -s.h_(0,B.mI,r)}}r=s.r -if(r!=null&&r.a!=null){q=A.bx("animationStatusCallback") -q.b=new A.ac0(p,q) -s.c1(q.bm())}else p.b.vd()}} -A.ac0.prototype={ -$1(a){var s=this.a -s.b.vd() -s.a.e5(this.b.bm())}, -$S:3} -A.ip.prototype={ -du(a,b){var s -if(a instanceof A.ip){s=A.ac2(a,this,b) -s.toString -return s}s=A.ac2(null,this,b) -s.toString -return s}, -dv(a,b){var s -if(a instanceof A.ip){s=A.ac2(this,a,b) -s.toString -return s}s=A.ac2(this,null,b) -s.toString -return s}, -Mj(a){return new A.ac5(this,a)}, -k(a,b){var s,r -if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -if(b instanceof A.ip){s=b.a -r=this.a -r=s==null?r==null:s===r -s=r}else s=!1 -return s}, -gv(a){return J.r(this.a)}} -A.ac3.prototype={ -$1(a){var s=A.A(null,a,this.a) -s.toString -return s}, -$S:78} -A.ac4.prototype={ -$1(a){var s=A.A(null,a,1-this.a) -s.toString -return s}, -$S:78} -A.ac5.prototype={ -jE(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this.b.a -if(h==null)return -s=c.e -r=s.a -q=0.05*r -p=s.b -o=q/(h.length-1) -switch(c.d.a){case 0:n=b.a+r -m=1 -break -case 1:n=b.a -m=-1 -break -default:n=null -m=null}for(s=b.b,r=s+p,l=0,k=0;k0)A.wW() -break -case 0:if(Math.abs(b.a.a)<10&&Math.abs(a.a-s.CW)>0)A.wW() -break}}, -m(a){A.a(this.ch,"_thicknessAnimationController").m(0) -this.FK(0)}} -A.ac7.prototype={ -$0(){this.a.rw()}, -$S:0} -A.ac6.prototype={ -$1(a){return A.wW()}, -$S:178} -A.RF.prototype={ -aH(a,b){var s,r,q,p=$.aJ()?A.aT():new A.aO(new A.aQ()) -p.sad(0,this.b) -s=A.lY(B.K4,6) -r=A.akX(B.K5,new A.m(7,b.b)) -q=A.d4() -q.pD(0,s) -q.kl(0,r) -a.cp(0,q,p)}, -ew(a){return!this.b.k(0,a.b)}} -A.Wp.prototype={ -l_(a){return new A.L(12,a+12-1.5)}, -uI(a,b,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=null,c=A.iK(d,d,d,new A.RF(A.akb(a).giO(),d),B.o) -switch(b.a){case 0:return A.aqO(c,new A.L(12,a0+12-1.5)) -case 1:s=a0+12-1.5 -r=A.aqO(c,new A.L(12,s)) -q=new Float64Array(16) -p=new A.bb(q) -p.dC() -p.aC(0,6,s/2) -o=Math.cos(3.141592653589793) -n=Math.sin(3.141592653589793) -m=q[0] -l=q[4] -k=q[1] -j=q[5] -i=q[2] -h=q[6] -g=q[3] -f=q[7] -e=-n -q[0]=m*o+l*n -q[1]=k*o+j*n -q[2]=i*o+h*n -q[3]=g*o+f*n -q[4]=m*e+l*o -q[5]=k*e+j*o -q[6]=i*e+h*o -q[7]=g*e+f*o -p.aC(0,-6,-s/2) -return A.LZ(d,r,p,!0) -case 2:return B.c8}}, -om(a,b){switch(a.a){case 0:return new A.m(6,b+12-1.5) -case 1:return new A.m(6,b+12-1.5-12+1.5) -case 2:return new A.m(6,b+(b+12-1.5-b)/2)}}} -A.Gv.prototype={ -eZ(a){var s=this,r=s.a,q=r.a,p=q instanceof A.dZ?q.eZ(a):q,o=r.b -if(o instanceof A.dZ)o=o.eZ(a) -r=p.k(0,q)&&o.k(0,B.dY)?r:new A.RI(p,o) -return new A.Gv(r,A.Wk(s.b,a),A.pB(s.c,a),A.pB(s.d,a),A.pB(s.e,a),A.pB(s.f,a),A.pB(s.r,a),A.pB(s.w,a),A.pB(s.x,a),A.pB(s.y,a))}} -A.RI.prototype={} -A.No.prototype={} -A.Gw.prototype={ -I(a,b){var s=null -return new A.BP(this,A.HK(this.d,new A.w5(this.c.giO(),s,s,s),s),s)}, -gbN(a){return this.c}} -A.BP.prototype={ -cZ(a){return this.f.c!==a.f.c}} -A.w6.prototype={ -giO(){var s=this.b -return s==null?this.r.b:s}, -gDC(){var s=this.c -return s==null?this.r.c:s}, -gPz(){var s=null,r=this.d -if(r==null){r=this.r.f -r=new A.acd(r.a,r.b,B.TV,this.giO(),s,s,s,s,s,s,s,s)}return r}, -gLJ(){var s=this.e -return s==null?this.r.d:s}, -gwW(){var s=this.f -return s==null?this.r.e:s}, -eZ(a){var s=this,r=new A.Wq(a),q=s.guF(),p=r.$1(s.b),o=r.$1(s.c),n=s.d -n=n==null?null:n.eZ(a) -return A.aAp(q,p,o,n,r.$1(s.e),r.$1(s.f),s.r.agc(a,s.d==null))}} -A.Wq.prototype={ -$1(a){return A.Wk(a,this.a)}, -$S:112} -A.ye.prototype={ -eZ(a){var s=this,r=new A.a2D(a),q=s.guF(),p=r.$1(s.giO()),o=r.$1(s.gDC()),n=s.gPz() -n=n==null?null:n.eZ(a) -return new A.ye(q,p,o,n,r.$1(s.gLJ()),r.$1(s.gwW()))}, -guF(){return this.a}, -giO(){return this.b}, -gDC(){return this.c}, -gPz(){return this.d}, -gLJ(){return this.e}, -gwW(){return this.f}} -A.a2D.prototype={ -$1(a){return A.Wk(a,this.a)}, -$S:112} -A.Nr.prototype={ -agc(a,b){var s,r,q=this,p=new A.ac8(a),o=p.$1(q.b),n=p.$1(q.c),m=p.$1(q.d) -p=p.$1(q.e) -s=q.f -if(b){r=s.a -if(r instanceof A.dZ)r=r.eZ(a) -s=s.b -s=new A.Np(r,s instanceof A.dZ?s.eZ(a):s)}return new A.Nr(q.a,o,n,m,p,s)}} -A.ac8.prototype={ -$1(a){return a instanceof A.dZ?a.eZ(this.a):a}, -$S:78} -A.Np.prototype={} -A.acd.prototype={} -A.Nq.prototype={} -A.aio.prototype={ -$0(){return null}, -$S:180} -A.ahC.prototype={ -$0(){var s=window.navigator.platform,r=s==null?null:s.toLowerCase() -if(r==null)r="" -if(B.b.bl(r,"mac"))return B.aY -if(B.b.bl(r,"win"))return B.bI -if(B.b.A(r,"iphone")||B.b.A(r,"ipad")||B.b.A(r,"ipod"))return B.av -if(B.b.A(r,"android"))return B.aX -if(window.matchMedia("only screen and (pointer: fine)").matches)return B.bH -return B.aX}, -$S:181} -A.mu.prototype={} -A.qp.prototype={} -A.H0.prototype={} -A.H_.prototype={} -A.bs.prototype={ -abY(){var s,r,q,p,o,n,m,l=this.a -if(t.vp.b(l)){s=l.gkJ(l) -r=l.i(0) -if(typeof s=="string"&&s!==r){q=r.length -p=J.ax(s) -if(q>p.gp(s)){o=B.b.nL(r,s) -if(o===q-p.gp(s)&&o>2&&B.b.N(r,o-2,o)===": "){n=B.b.N(r,0,o-2) -m=B.b.eJ(n," Failed assertion:") -if(m>=0)n=B.b.N(n,0,m)+"\n"+B.b.bU(n,m+1) -l=p.E3(s)+"\n"+n}else l=null}else l=null}else l=null -if(l==null)l=r}else if(!(typeof l=="string")){q=t.Lt.b(l)||t.VI.b(l) -p=J.ix(l) -l=q?p.i(l):" "+A.e(p.i(l))}l=J.azx(l) -return l.length===0?" ":l}, -gRD(){var s=A.aAy(new A.Z4(this).$0(),!0,B.mP) -return s}, -cv(){return"Exception caught by "+this.c}, -i(a){A.aEt(null,B.AJ,this) -return""}} -A.Z4.prototype={ -$0(){return J.azw(this.a.abY().split("\n")[0])}, -$S:66} -A.nr.prototype={ -gkJ(a){return this.i(0)}, -cv(){return"FlutterError"}, -i(a){var s,r,q=new A.fI(this.a,t.ow) -if(!q.gS(q)){s=q.gJ(q) -r=J.j(s) -s=A.hD.prototype.gl.call(r,s) -s.toString -s=J.ayZ(s)}else s="FlutterError" -return s}, -$imU:1} -A.Z5.prototype={ -$1(a){return A.bi(a)}, -$S:182} -A.Z6.prototype={ -$1(a){return a+1}, -$S:55} -A.Z7.prototype={ -$1(a){return a+1}, -$S:55} -A.aiI.prototype={ -$1(a){return B.b.A(a,"StackTrace.current")||B.b.A(a,"dart-sdk/lib/_internal")||B.b.A(a,"dart:sdk_internal")}, -$S:19} -A.O7.prototype={} -A.O9.prototype={} -A.O8.prototype={} -A.Fk.prototype={ -VJ(){var s,r,q,p,o,n,m,l,k=this,j=null -A.alh("Framework initialization",j,j) -k.V5() -$.F=k -s=t.u -r=A.cf(s) -q=A.b([],t.Li) -p=t.S -o=A.hQ(j,j,j,t.Su,p) -n=A.Zf(!0,"Root Focus Scope",!1) -m=A.b([],t.SW) -l=$.b4() -o=n.w=new A.wP(new A.wX(o,t.op),n,A.aK(t.mx),m,l) -A.a($.e7.cW$,"_keyEventManager").a=o.gId() -$.eH.k4$.b.n(0,o.gHJ(),j) -s=new A.Va(new A.Ou(r),q,o,A.z(t.yi,s)) -k.D$=s -s.a=k.ga1j() -$.aL().dy=k.gacM() -B.hC.mv(k.ga2C()) -s=new A.GH(A.z(p,t.Dy),B.tX) -B.tX.mv(s.ga4F()) -k.b6$=s -k.jw() -s=t.N -A.aIt("Flutter.FrameworkInitialization",A.z(s,s)) -A.alg()}, -fQ(){}, -jw(){}, -aec(a){var s,r=new A.LV(null,0,A.b([],t._x)) -r.xl(0,"Lock events");++this.b -s=a.$0() -s.fU(new A.UR(this,r)) -return s}, -E6(){}, -i(a){return""}} -A.UR.prototype={ -$0(){var s=this.a -if(--s.b<=0){this.b.vp(0) -s.UY() -if(s.z$.c!==0)s.Hz()}}, -$S:6} -A.at.prototype={} -A.jN.prototype={ -a2(a,b){var s,r,q=this,p=q.y1$,o=q.y2$,n=o.length -if(p===n){o=t.Nw -if(p===0){p=A.b7(1,null,!1,o) -q.y2$=p}else{s=A.b7(n*2,null,!1,o) -for(p=q.y1$,o=q.y2$,r=0;r0){r.y2$[s]=null;++r.a6$}else r.a6f(s) -break}}, -m(a){this.y2$=$.b4() -this.y1$=0}, -ab(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.y1$ -if(e===0)return;++f.ao$ -for(s=0;s0){l=f.y1$-f.a6$ -e=f.y2$ -if(l*2<=e.length){k=A.b7(l,null,!1,t.Nw) -for(e=f.y1$,p=f.y2$,j=0,s=0;s#"+A.bF(this)+"("+A.e(this.a)+")"}} -A.qh.prototype={ -i(a){return"DiagnosticLevel."+this.b}} -A.iN.prototype={ -i(a){return"DiagnosticsTreeStyle."+this.b}} -A.aeZ.prototype={} -A.em.prototype={ -DZ(a,b){return this.bY(0)}, -i(a){return this.DZ(a,B.aO)}, -gaN(a){return this.a}} -A.hD.prototype={ -gl(a){this.a4C() -return this.at}, -a4C(){return}} -A.we.prototype={} -A.GL.prototype={} -A.ai.prototype={ -cv(){return"#"+A.bF(this)}, -DZ(a,b){var s=this.cv() -return s}, -i(a){return this.DZ(a,B.aO)}} -A.WM.prototype={ -cv(){return"#"+A.bF(this)}} -A.iM.prototype={ -i(a){return this.PB(B.mP).bY(0)}, -cv(){return"#"+A.bF(this)}, -agx(a,b){return A.akc(a,b,this)}, -PB(a){return this.agx(null,a)}} -A.NC.prototype={} -A.f5.prototype={} -A.Ie.prototype={} -A.oZ.prototype={ -i(a){return"[#"+A.bF(this)+"]"}} -A.ed.prototype={ -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return A.n(this).j("ed").b(b)&&J.f(b.a,this.a)}, -gv(a){return A.a3(A.C(this),this.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=A.n(this),r=s.j("ed.T"),q=this.a,p=A.b1(r)===B.dB?"<'"+A.e(q)+"'>":"<"+A.e(q)+">" -if(A.C(this)===A.b1(s.j("ed")))return"["+p+"]" -return"["+A.b1(r).i(0)+" "+p+"]"}} -A.aly.prototype={} -A.h9.prototype={} -A.xu.prototype={} -A.H.prototype={ -ri(a){var s=a.a,r=this.a -if(s<=r){a.a=r+1 -a.iP()}}, -iP(){}, -gcc(){return this.b}, -aj(a){this.b=a}, -aa(a){this.b=null}, -ga3(a){return this.c}, -hf(a){var s -a.c=this -s=this.b -if(s!=null)a.aj(s) -this.ri(a)}, -jm(a){a.c=null -if(this.b!=null)a.aa(0)}} -A.aM.prototype={ -gu0(){var s,r=this,q=r.c -if(q===$){s=A.cf(r.$ti.c) -A.ba(r.c,"_set") -r.c=s -q=s}return q}, -B(a,b){this.b=!0 -this.gu0().aG(0) -return B.c.B(this.a,b)}, -aG(a){this.b=!1 -B.c.sp(this.a,0) -this.gu0().aG(0)}, -A(a,b){var s=this,r=s.a -if(r.length<3)return B.c.A(r,b) -if(s.b){s.gu0().P(0,r) -s.b=!1}return s.gu0().A(0,b)}, -ga1(a){var s=this.a -return new J.fl(s,s.length)}, -gS(a){return this.a.length===0}, -gbZ(a){return this.a.length!==0}} -A.wX.prototype={ -E(a,b){var s=this.a,r=s.h(0,b) -s.n(0,b,(r==null?0:r)+1)}, -B(a,b){var s=this.a,r=s.h(0,b) -if(r==null)return!1 -if(r===1)s.B(0,b) -else s.n(0,b,r-1) -return!0}, -A(a,b){return this.a.ap(0,b)}, -ga1(a){var s=this.a -return A.lE(s,s.r)}, -gS(a){return this.a.a===0}, -gbZ(a){return this.a.a!==0}} -A.dn.prototype={ -i(a){return"TargetPlatform."+this.b}} -A.aaC.prototype={ -ee(a,b){var s,r,q=this -if(q.b===q.a.length)q.a6s() -s=q.a -r=q.b -s[r]=b -q.b=r+1}, -oT(a){var s=this,r=a.length,q=s.b+r -if(q>=s.a.length)s.A0(q) -B.R.d6(s.a,s.b,q,a) -s.b+=r}, -oQ(a,b,c){var s=this,r=c==null?s.e.length:c,q=s.b+(r-b) -if(q>=s.a.length)s.A0(q) -B.R.d6(s.a,s.b,q,a) -s.b=q}, -Yk(a){return this.oQ(a,0,null)}, -A0(a){var s=this.a,r=s.length,q=a==null?0:a,p=Math.max(q,r*2),o=new Uint8Array(p) -B.R.d6(o,0,r,s) -this.a=o}, -a6s(){return this.A0(null)}, -i6(a){var s=B.f.bE(this.b,a) -if(s!==0)this.oQ($.av7(),0,a-s)}, -kt(){var s,r=this -if(r.c)throw A.c(A.X("done() must not be called more than once on the same "+A.C(r).i(0)+".")) -s=A.kd(r.a.buffer,0,r.b) -r.a=new Uint8Array(0) -r.c=!0 -return s}} -A.z1.prototype={ -mo(a){return this.a.getUint8(this.b++)}, -wN(a){var s=this.b,r=$.dd() -B.ez.Es(this.a,s,r)}, -mp(a){var s=this.a,r=A.cX(s.buffer,s.byteOffset+this.b,a) -this.b+=a -return r}, -wO(a){var s -this.i6(8) -s=this.a -B.tQ.LG(s.buffer,s.byteOffset+this.b,a)}, -i6(a){var s=this.b,r=B.f.bE(s,a) -if(r!==0)this.b=s+(a-r)}, -gbN(a){return this.a}} -A.id.prototype={ -gv(a){var s=this -return A.a3(s.b,s.d,s.f,s.r,s.w,s.x,s.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.id&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.a===s.a}, -i(a){var s=this -return"StackFrame(#"+s.b+", "+s.c+":"+s.d+"/"+s.e+":"+s.f+":"+s.r+", className: "+s.w+", method: "+s.x+")"}} -A.a8F.prototype={ -$1(a){return a.length!==0}, -$S:19} -A.d0.prototype={ -lB(a,b){return new A.a4($.a5,this.$ti.j("a4<1>"))}, -hI(a){return this.lB(a,null)}, -fp(a,b,c,d){var s=b.$1(this.a) -if(d.j("a7<0>").b(s))return s -return new A.d0(d.a(s),d.j("d0<0>"))}, -aV(a,b,c){return this.fp(a,b,null,c)}, -fU(a){var s,r,q,p,o,n=this -try{s=a.$0() -if(t.L0.b(s)){p=J.ajT(s,new A.a95(n),n.$ti.c) -return p}return n}catch(o){r=A.ab(o) -q=A.aA(o) -p=A.ako(r,q,n.$ti.c) -return p}}, -$ia7:1} -A.a95.prototype={ -$1(a){return this.a.a}, -$S(){return this.a.$ti.j("1(@)")}} -A.wU.prototype={ -i(a){return"GestureDisposition."+this.b}} -A.cV.prototype={} -A.qE.prototype={ -O(a){this.a.mU(this.b,this.c,a)}} -A.ud.prototype={ -i(a){var s=this,r=s.a -r=r.length===0?""+"":""+new A.az(r,new A.ad3(s),A.af(r).j("az<1,k>")).bB(0,", ") -if(s.b)r+=" [open]" -if(s.c)r+=" [held]" -if(s.d)r+=" [hasPendingSweep]" -return r.charCodeAt(0)==0?r:r}} -A.ad3.prototype={ -$1(a){if(a===this.a.e)return a.i(0)+" (eager winner)" -return a.i(0)}, -$S:186} -A.ZS.prototype={ -pz(a,b,c){this.a.bs(0,b,new A.ZU(this,b)).a.push(c) -return new A.qE(this,b,c)}, -aah(a,b){var s=this.a.h(0,b) -if(s==null)return -s.b=!1 -this.KA(b,s)}, -FY(a){var s,r=this.a,q=r.h(0,a) -if(q==null)return -if(q.c){q.d=!0 -return}r.B(0,a) -r=q.a -if(r.length!==0){B.c.gJ(r).hd(a) -for(s=1;s0.4){r.db=B.eW -r.O(B.bU)}else if(a.gq3().gvg()>A.EB(a.gd4(a),r.b))r.O(B.aj) -if(s>0.4&&r.db===B.vZ){r.db=B.eW -if(r.Q!=null)r.e3("onStart",new A.Zr(r,s))}}r.Fl(a)}, -hd(a){var s=this,r=s.db -if(r===B.eV)r=s.db=B.vZ -if(s.Q!=null&&r===B.eW)s.e3("onStart",new A.Zp(s))}, -vc(a){var s=this,r=s.db,q=r===B.eW||r===B.Tc -if(r===B.eV){s.O(B.aj) -return}if(q&&s.ax!=null)if(s.ax!=null)s.e3("onEnd",new A.Zq(s)) -s.db=B.lL}, -fS(a){this.i4(a) -this.vc(a)}} -A.Zr.prototype={ -$0(){var s,r="_lastPosition",q=this.a,p=q.Q -p.toString -s=A.a(q.cx,r).b -A.a(q.cx,r) -return p.$1(new A.nz(s))}, -$S:0} -A.Zp.prototype={ -$0(){var s,r="_lastPosition",q=this.a,p=q.Q -p.toString -A.a(q.cy,"_lastPressure") -s=A.a(q.cx,r).b -A.a(q.cx,r) -return p.$1(new A.nz(s))}, -$S:0} -A.Zq.prototype={ -$0(){var s,r="_lastPosition",q=this.a,p=q.ax -p.toString -s=A.a(q.cx,r).b -A.a(q.cx,r) -return p.$1(new A.nz(s))}, -$S:0} -A.wd.prototype={ -gv(a){return A.a3(this.a,23,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.wd&&b.a==this.a}, -i(a){return"DeviceGestureSettings(touchSlop: "+A.e(this.a)+")"}} -A.fs.prototype={ -i(a){return"#"+A.bF(this)+"("+this.a.i(0)+")"}} -A.uQ.prototype={} -A.Ci.prototype={ -cg(a,b){return this.a.w6(b)}} -A.uw.prototype={ -cg(a,b){var s,r,q,p,o=new Float64Array(16),n=new A.bb(o) -n.by(b) -s=this.a -r=s.a -q=s.b -s=o[0] -p=o[3] -o[0]=s+r*p -o[1]=o[1]+q*p -o[2]=o[2]+0*p -o[3]=p -p=o[4] -s=o[7] -o[4]=p+r*s -o[5]=o[5]+q*s -o[6]=o[6]+0*s -o[7]=s -s=o[8] -p=o[11] -o[8]=s+r*p -o[9]=o[9]+q*p -o[10]=o[10]+0*p -o[11]=p -p=o[12] -s=o[15] -o[12]=p+r*s -o[13]=o[13]+q*s -o[14]=o[14]+0*s -o[15]=s -return n}} -A.hK.prototype={ -a17(){var s,r,q,p,o=this.c -if(o.length===0)return -s=this.b -r=B.c.gR(s) -for(q=o.length,p=0;p":B.c.bB(s,", "))+")"}} -A.r5.prototype={} -A.xJ.prototype={} -A.r4.prototype={} -A.f7.prototype={ -hr(a){var s,r=this -switch(a.gdn(a)){case 1:s=r.ok==null&&r.k4==null&&r.p1==null&&r.p3==null&&!0 -if(s)return!1 -break -case 2:return!1 -case 4:return!1 -default:return!1}return r.oG(a)}, -BT(){var s,r=this -r.O(B.bU) -r.go=!0 -s=r.ay -s.toString -r.FJ(s) -r.Zu()}, -Nu(a){var s,r=this -if(!a.goO()){if(t.c.b(a)){s=new A.jw(a.gd4(a),A.b7(20,null,!1,t.av)) -r.b5=s -s.uy(a.gjK(a),a.geo())}if(t.n2.b(a)){s=r.b5 -s.toString -s.uy(a.gjK(a),a.geo())}}if(t.oN.b(a)){if(r.go)r.Zs(a) -else r.O(B.aj) -r.A_()}else if(t.Ko.b(a)){r.GD() -r.A_()}else if(t.c.b(a)){r.id=new A.hf(a.geo(),a.gbS(a)) -r.k1=a.gdn(a) -r.Zr(a)}else if(t.n2.b(a))if(a.gdn(a)!==r.k1){r.O(B.aj) -s=r.ay -s.toString -r.i4(s)}else if(r.go)r.Zt(a)}, -Zr(a){this.id.toString -this.d.h(0,a.gcu()).toString -switch(this.k1){case 1:break -case 2:break -case 4:break}}, -GD(){if(this.ax===B.e1)switch(this.k1){case 1:break -case 2:break -case 4:break}}, -Zu(){var s,r,q=this -switch(q.k1){case 1:if(q.ok!=null){s=q.id -r=s.b -s=s.a -q.e3("onLongPressStart",new A.a1D(q,new A.r5(r,s)))}s=q.k4 -if(s!=null)q.e3("onLongPress",s) -break -case 2:break -case 4:break}}, -Zt(a){var s=this,r=a.gbS(a),q=a.geo(),p=a.gbS(a).a9(0,s.id.b) -a.geo().a9(0,s.id.a) -switch(s.k1){case 1:if(s.p1!=null)s.e3("onLongPressMoveUpdate",new A.a1C(s,new A.xJ(r,q,p))) -break -case 2:break -case 4:break}}, -Zs(a){var s,r=this,q=r.b5.wT(),p=q==null?B.ca:new A.jv(q.a) -a.gbS(a) -s=a.geo() -r.b5=null -switch(r.k1){case 1:if(r.p3!=null)r.e3("onLongPressEnd",new A.a1B(r,new A.r4(s,p))) -break -case 2:break -case 4:break}}, -A_(){var s=this -s.go=!1 -s.b5=s.k1=s.id=null}, -O(a){var s=this -if(a===B.aj)if(s.go)s.A_() -else s.GD() -s.FD(a)}, -hd(a){}} -A.a1D.prototype={ -$0(){return this.a.ok.$1(this.b)}, -$S:0} -A.a1C.prototype={ -$0(){return this.a.p1.$1(this.b)}, -$S:0} -A.a1B.prototype={ -$0(){return this.a.p3.$1(this.b)}, -$S:0} -A.kW.prototype={ -h(a,b){return this.c[b+this.a]}, -W(a,b){var s,r,q,p,o,n,m -for(s=this.b,r=this.c,q=this.a,p=b.c,o=b.a,n=0,m=0;ma5)return null -s=a6+1 -r=new A.a3R(new Float64Array(s)) -q=s*a5 -p=new Float64Array(q) -for(o=this.c,n=0*a5,m=0;m=0;--c){p[c]=new A.kW(c*a5,a5,q).W(0,d) -for(i=c*s,k=l;k>c;--k)p[c]=p[c]-n[i+k]*p[k] -p[c]=p[c]/n[i+c]}for(b=0,m=0;mr&&Math.abs(a.d.b)>s}, -zn(a,b){return Math.abs(A.a(this.id,"_globalDistanceMoved"))>A.EB(a,this.b)}, -pa(a){return new A.m(0,a.b)}, -mO(a){return a.b}} -A.hL.prototype={ -CV(a,b){var s,r=this.cx -if(r==null)r=50 -s=this.CW -if(s==null)s=A.EB(b,this.b) -return Math.abs(a.a.a)>r&&Math.abs(a.d.a)>s}, -zn(a,b){return Math.abs(A.a(this.id,"_globalDistanceMoved"))>A.EB(a,this.b)}, -pa(a){return new A.m(a.a,0)}, -mO(a){return a.a}} -A.hZ.prototype={ -CV(a,b){var s,r=this.cx -if(r==null)r=50 -s=this.CW -if(s==null)s=A.EB(b,this.b) -return a.a.gvg()>r*r&&a.d.gvg()>s*s}, -zn(a,b){return Math.abs(A.a(this.id,"_globalDistanceMoved"))>A.aHm(a,this.b)}, -pa(a){return a}, -mO(a){return null}} -A.Ni.prototype={ -a5a(){this.a=!0}} -A.uO.prototype={ -i4(a){if(this.r){this.r=!1 -$.eH.k4$.Pa(this.b,a)}}, -Oa(a,b){return a.gbS(a).a9(0,this.d).gcE()<=b}} -A.hE.prototype={ -hr(a){var s -if(this.x==null)switch(a.gdn(a)){case 1:s=this.f==null&&!0 -if(s)return!1 -break -default:return!1}return this.oG(a)}, -ie(a){var s=this,r=s.x -if(r!=null)if(!r.Oa(a,100))return -else{r=s.x -if(!r.f.a||a.gdn(a)!==r.e){s.mR() -return s.Kz(a)}}s.Kz(a)}, -Kz(a){var s,r,q,p,o,n,m=this -m.Kc() -s=$.eH.ok$.pz(0,a.gcu(),m) -r=a.gcu() -q=a.gbS(a) -p=a.gdn(a) -o=new A.Ni() -A.bN(B.B3,o.ga59()) -n=new A.uO(r,s,q,p,o) -m.y.n(0,a.gcu(),n) -o=a.gce(a) -if(!n.r){n.r=!0 -$.eH.k4$.Lx(r,m.gu_(),o)}}, -a4K(a){var s,r=this,q=r.y,p=q.h(0,a.gcu()) -p.toString -if(t.oN.b(a)){s=r.x -if(s==null){if(r.w==null)r.w=A.bN(B.cn,r.ga4L()) -s=p.b -$.eH.ok$.ado(s) -p.i4(r.gu_()) -q.B(0,s) -r.GO() -r.x=p}else{s=s.c -s.a.mU(s.b,s.c,B.bU) -s=p.c -s.a.mU(s.b,s.c,B.bU) -p.i4(r.gu_()) -q.B(0,p.b) -q=r.f -if(q!=null)r.e3("onDoubleTap",q) -r.mR()}}else if(t.n2.b(a)){if(!p.Oa(a,18))r.pn(p)}else if(t.Ko.b(a))r.pn(p)}, -hd(a){}, -fS(a){var s,r=this,q=r.y.h(0,a) -if(q==null){s=r.x -s=s!=null&&s.b===a}else s=!1 -if(s)q=r.x -if(q!=null)r.pn(q)}, -pn(a){var s,r=this,q=r.y -q.B(0,a.b) -s=a.c -s.a.mU(s.b,s.c,B.aj) -a.i4(r.gu_()) -s=r.x -if(s!=null)if(a===s)r.mR() -else{r.GA() -if(q.a===0)r.mR()}}, -m(a){this.mR() -this.Fy(0)}, -mR(){var s,r=this -r.Kc() -if(r.x!=null){if(r.y.a!==0)r.GA() -s=r.x -s.toString -r.x=null -r.pn(s) -$.eH.ok$.afS(0,s.b)}r.GO()}, -GO(){var s=this.y -s=s.gb2(s) -B.c.Y(A.ap(s,!0,A.n(s).j("p.E")),this.ga6c())}, -Kc(){var s=this.w -if(s!=null){s.aA(0) -this.w=null}}, -GA(){}} -A.a3M.prototype={ -Lx(a,b,c){J.cR(this.a.bs(0,a,new A.a3O()),b,c)}, -Pa(a,b){var s,r=this.a,q=r.h(0,a) -q.toString -s=J.bO(q) -s.B(q,b) -if(s.gS(q))r.B(0,a)}, -a_m(a,b,c){var s,r,q,p -try{b.$1(a.bT(c))}catch(q){s=A.ab(q) -r=A.aA(q) -p=A.bi("while routing a pointer event") -A.cS(new A.bs(s,r,"gesture library",p,null,!1))}}, -Pu(a){var s=this,r=s.a.h(0,a.gcu()),q=s.b,p=t.Ld,o=t.iD,n=A.a1p(q,p,o) -if(r!=null)s.Hi(a,r,A.a1p(r,p,o)) -s.Hi(a,q,n)}, -Hi(a,b,c){c.Y(0,new A.a3N(this,b,a))}} -A.a3O.prototype={ -$0(){return A.z(t.Ld,t.iD)}, -$S:193} -A.a3N.prototype={ -$2(a,b){if(J.eD(this.b,a))this.a.a_m(this.c,a,b)}, -$S:194} -A.a3P.prototype={ -o9(a,b,c){if(this.a!=null)return -this.b=b -this.a=c}, -O(a){var s,r,q,p,o=this,n=o.a -if(n==null)return -try{q=o.b -q.toString -n.$1(q)}catch(p){s=A.ab(p) -r=A.aA(p) -n=A.bi("while resolving a PointerSignalEvent") -A.cS(new A.bs(s,r,"gesture library",n,null,!1))}o.b=o.a=null}} -A.wr.prototype={ -i(a){return"DragStartBehavior."+this.b}} -A.cJ.prototype={ -B1(a){var s=this -s.d.n(0,a.gcu(),a.gd4(a)) -if(s.hr(a))s.ie(a) -else s.qC(a)}, -ie(a){}, -qC(a){}, -hr(a){var s=this.c -return s==null||s.A(0,a.gd4(a))}, -m(a){}, -NY(a,b,c){var s,r,q,p,o=null -try{o=b.$0()}catch(q){s=A.ab(q) -r=A.aA(q) -p=A.bi("while handling a gesture") -A.cS(new A.bs(s,r,"gesture",p,null,!1))}return o}, -e3(a,b){return this.NY(a,b,null,t.z)}, -adH(a,b,c){return this.NY(a,b,c,t.z)}} -A.yl.prototype={ -ie(a){this.xp(a.gcu(),a.gce(a))}, -qC(a){this.O(B.aj)}, -hd(a){}, -fS(a){}, -O(a){var s,r=this.e,q=A.ap(r.gb2(r),!0,t.G) -r.aG(0) -for(r=q.length,s=0;s18 -else s=!1 -if(p.CW){r=p.at -q=r!=null&&p.HQ(a)>r}else q=!1 -if(t.n2.b(a))r=s||q -else r=!1 -if(r){p.O(B.aj) -r=p.ay -r.toString -p.i4(r)}else p.Nu(a)}p.Fl(a)}, -BT(){}, -hd(a){if(a===this.ay){this.n_() -this.CW=!0}}, -fS(a){var s=this -if(a===s.ay&&s.ax===B.e1){s.n_() -s.ax=B.Bt}}, -vc(a){var s=this -s.n_() -s.ax=B.bv -s.ch=null -s.CW=!1}, -m(a){this.n_() -this.oJ(0)}, -n_(){var s=this.cx -if(s!=null){s.aA(0) -this.cx=null}}, -HQ(a){return a.gbS(a).a9(0,this.ch.b).gcE()}} -A.a3X.prototype={ -$0(){this.a.BT() -return null}, -$S:0} -A.hf.prototype={ -Z(a,b){return new A.hf(this.a.Z(0,b.a),this.b.Z(0,b.b))}, -a9(a,b){return new A.hf(this.a.a9(0,b.a),this.b.a9(0,b.b))}, -i(a){return"OffsetPair(local: "+this.a.i(0)+", global: "+this.b.i(0)+")"}} -A.Oj.prototype={} -A.to.prototype={} -A.mm.prototype={} -A.Fi.prototype={ -ie(a){var s=this -if(s.ax===B.bv){if(s.k1!=null&&s.k2!=null)s.pv() -s.k1=a}if(s.k1!=null)s.T2(a)}, -xp(a,b){this.SW(a,b)}, -Nu(a){var s,r,q=this -if(t.oN.b(a)){q.k2=a -q.GF()}else if(t.Ko.b(a)){q.O(B.aj) -if(q.go){s=q.k1 -s.toString -q.vz(a,s,"")}q.pv()}else{s=a.gdn(a) -r=q.k1 -if(s!==r.gdn(r)){q.O(B.aj) -s=q.ay -s.toString -q.i4(s)}}}, -O(a){var s,r=this -if(r.id&&a===B.aj){s=r.k1 -s.toString -r.vz(null,s,"spontaneous") -r.pv()}r.FD(a)}, -BT(){this.Ki()}, -hd(a){var s=this -s.FJ(a) -if(a===s.ay){s.Ki() -s.id=!0 -s.GF()}}, -fS(a){var s,r=this -r.T3(a) -if(a===r.ay){if(r.go){s=r.k1 -s.toString -r.vz(null,s,"forced")}r.pv()}}, -Ki(){var s,r=this -if(r.go)return -s=r.k1 -s.toString -r.Nv(s) -r.go=!0}, -GF(){var s,r,q=this -if(!q.id||q.k2==null)return -s=q.k1 -s.toString -r=q.k2 -r.toString -q.Nw(s,r) -q.pv()}, -pv(){var s=this -s.id=s.go=!1 -s.k1=s.k2=null}} -A.fe.prototype={ -hr(a){var s,r=this -switch(a.gdn(a)){case 1:if(r.y1==null&&r.ao==null&&r.y2==null&&r.a6==null)return!1 -break -case 2:if(r.aq==null)if(r.b5==null)s=!0 -else s=!1 -else s=!1 -if(s)return!1 -break -case 4:return!1 -default:return!1}return r.oG(a)}, -Nv(a){var s,r=this,q=a.gbS(a),p=a.geo(),o=r.d.h(0,a.gcu()) -o.toString -s=new A.to(q,o,p) -switch(a.gdn(a)){case 1:if(r.y1!=null)r.e3("onTapDown",new A.a9c(r,s)) -break -case 2:if(r.b5!=null)r.e3("onSecondaryTapDown",new A.a9d(r,s)) -break -case 4:break}}, -Nw(a,b){var s=this,r=b.gd4(b),q=b.gbS(b) -b.geo() -switch(a.gdn(a)){case 1:if(s.y2!=null)s.e3("onTapUp",new A.a9e(s,new A.mm(q,r))) -r=s.ao -if(r!=null)s.e3("onTap",r) -break -case 2:if(s.aq!=null)s.e3("onSecondaryTap",new A.a9f(s)) -break -case 4:break}}, -vz(a,b,c){var s,r=c===""?c:c+" " -switch(b.gdn(b)){case 1:s=this.a6 -if(s!=null)this.e3(r+"onTapCancel",s) -break -case 2:break -case 4:break}}} -A.a9c.prototype={ -$0(){return this.a.y1.$1(this.b)}, -$S:0} -A.a9d.prototype={ -$0(){return this.a.b5.$1(this.b)}, -$S:0} -A.a9e.prototype={ -$0(){return this.a.y2.$1(this.b)}, -$S:0} -A.a9f.prototype={ -$0(){return this.a.aq.$0()}, -$S:0} -A.N5.prototype={ -O(a){this.a.a7V(this.b,a)}, -$iqE:1} -A.p7.prototype={ -hd(a){var s,r,q,p,o=this -o.GP() -if(o.e==null){s=o.b[0] -o.e=s}for(s=o.b,r=s.length,q=0;qb*b)return new A.jv(s.eu(0,s.gcE()).W(0,b)) -if(r100||Math.abs(m-p.a.a)/1000>40)break -k=n.b -f.push(k.a) -e.push(k.b) -d.push(1) -c.push(-l) -b=(b===0?20:b)-1;++o -if(o<20){q=n -p=q -continue}else{q=n -break}}while(!0) -if(o>=3){j=new A.I8(c,f,d).Fj(2) -if(j!=null){i=new A.I8(c,e,d).Fj(2) -if(i!=null)return new A.tI(new A.m(j.a[1]*1000,i.a[1]*1000),A.a(j.b,h)*A.a(i.b,h),new A.aP(r-q.a.a),s.b.a9(0,q.b))}}return new A.tI(B.j,1,new A.aP(r-q.a.a),s.b.a9(0,q.b))}} -A.qJ.prototype={ -uy(a,b){var s=(this.c+1)%20 -this.c=s -this.d[s]=new A.CD(a,b)}, -zS(a){var s,r,q=this.c+a,p=B.f.bE(q,20),o=B.f.bE(q-1,20) -q=this.d -s=q[p] -r=q[o] -if(s==null||r==null)return B.j -q=s.a.a-r.a.a -return q>0?s.b.a9(0,r.b).W(0,1000).eu(0,q/1000):B.j}, -wT(){var s,r,q=this,p=q.zS(-2).W(0,0.6).Z(0,q.zS(-1).W(0,0.35)).Z(0,q.zS(0).W(0,0.05)),o=q.d,n=q.c,m=o[n] -for(s=null,r=1;r<=20;++r){s=o[B.f.bE(n+r,20)] -if(s!=null)break}if(s==null||m==null)return B.SJ -else return new A.tI(p,1,new A.aP(m.a.a-s.a.a),m.b.a9(0,s.b))}} -A.LU.prototype={ -i(a){return"ThemeMode."+this.b}} -A.xQ.prototype={ -am(){return new A.Cd(B.k)}} -A.a1J.prototype={ -$2(a,b){return new A.r7(a,b)}, -$S:196} -A.a1M.prototype={ -ml(a){return A.ae(a).w}, -uK(a,b,c){switch(A.bn(c.a)){case B.as:return b -case B.a2:switch(A.ae(a).w.a){case 3:case 4:case 5:return A.aqJ(b,c.b) -case 0:case 1:case 2:return b}break}}, -uJ(a,b,c){var s,r,q,p=null,o=A.bx("indicator") -A.ae(a) -A.ae(a) -o.sdH(B.m3) -switch(A.ae(a).w.a){case 2:case 3:case 4:case 5:s=1 -break -case 0:s=2 -break -case 1:s=3 -break -default:s=p -break}if(s)c$0:for(r=o.a;!0;)switch(s){case 1:return b -case 2:q=o.b -if(q===o)A.K(A.e2(r)) -switch(q){case B.w7:s=1 -break -case B.m3:s=2 -break -default:s=p -break}if(s)c$1:for(;!0;)switch(s){case 1:return new A.tf(c.a,b,p) -case 2:s=3 -continue c$0}break c$0 -case 3:return new A.qH(c.a,A.ae(a).as.f,b,p)}}} -A.Cd.prototype={ -aB(){this.aS() -this.d=A.aBV()}, -ga4t(){var s=A.b([],t.a9) -this.a.toString -s.push(B.xC) -s.push(B.xw) -return s}, -a47(a,b){return new A.Hf(B.BE,b,B.Ta,null)}, -a4y(a,b){var s,r,q,p,o,n=this,m=null -n.a.toString -s=A.e4(a) -r=s==null?m:s.d -if(r==null)r=B.ac -q=r===B.a3 -s=A.e4(a) -s=s==null?m:s.Q -p=s===!0 -if(q)if(p)n.a.toString -if(q)n.a.toString -if(p)n.a.toString -n.a.toString -o=A.alc(B.ac) -n.a.toString -s=b==null?B.cL:b -return new A.zB(new A.vj(o,s,B.a9,B.D,m,m),m)}, -Z9(a){var s,r=this,q=null,p=r.a,o=p.f,n=p.r -p=p.ch -s=r.ga4t() -r.a.toString -return new A.AV(q,q,q,new A.aej(),q,q,q,q,q,o,q,n,B.EI,r.ga4x(),p,q,B.PS,B.de,q,s,q,q,B.nC,!1,!1,!1,!1,r.ga46(),!0,q,q,q,!1,new A.ls(r,t.bT))}, -I(a,b){var s=null,r=A.wO(!1,!1,this.Z9(b),s,s,s,s,!0,s,s,new A.aek(),s,s) -this.a.toString -return new A.zF(B.x5,new A.nD(A.a(this.d,"_heroController"),r,s),s)}} -A.aej.prototype={ -$1$2(a,b,c){return A.akG(b,a,c)}, -$2(a,b){return this.$1$2(a,b,t.z)}, -$S:199} -A.aek.prototype={ -$2(a,b){if(!(b instanceof A.kn)||!b.c.gvW().k(0,B.eo))return B.d2 -return A.aDW()?B.fW:B.d2}, -$S:122} -A.agQ.prototype={ -Em(a){return a.wu(this.b)}, -l3(a){return new A.L(a.b,this.b)}, -Ez(a,b){return new A.m(0,a.b-b.b)}, -oz(a){return this.b!==a.b}} -A.PY.prototype={} -A.vt.prototype={ -a0L(a){var s=this.db -if(s==null)s=a.to.Q -return s==null?new A.Ut(this,a).$0():s}, -am(){return new A.B2(B.k)}} -A.Ut.prototype={ -$0(){switch(this.b.w.a){case 0:case 1:case 3:case 5:return!1 -case 2:case 4:return this.a.f==null||!1}}, -$S:47} -A.B2.prototype={ -bH(){var s,r=this -r.e9() -s=r.d -if(s!=null)s.K(0,r.gy5()) -s=r.c.L(t.yd) -s=s==null?null:s.f -r.d=s -if(s!=null){s=s.d -s.a43(s.c,new A.my(r.gy5()),!1)}}, -m(a){var s=this,r=s.d -if(r!=null){r.K(0,s.gy5()) -s.d=null}s.aR(0)}, -a1R(){var s,r,q,p=this.c -p.toString -p=A.a66(p) -s=p.e -if(s.ga5()!=null){r=p.w -q=r.x -r=q==null?A.n(r).j("dQ.T").a(q):q}else r=!1 -if(r)s.ga5().eD(0) -p=p.d.ga5() -if(p!=null)p.afa(0)}, -a1T(){var s,r,q,p=this.c -p.toString -p=A.a66(p) -s=p.d -if(s.ga5()!=null){r=p.r -q=r.x -r=q==null?A.n(r).j("dQ.T").a(q):q}else r=!1 -if(r)s.ga5().eD(0) -p=p.e.ga5() -if(p!=null)p.afa(0)}, -YG(a){var s,r -if(a instanceof A.fc){s=this.e -if(a.e0$===0){r=a.a -r=Math.max(r.gct()-r.geU(),0)>0&&A.bn(r.e)===B.a2}else r=!1 -this.e=r -if(r!==s)this.a4(new A.aaX())}}, -I(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null,a5="Open navigation menu",a6=A.ae(b2),a7=A.ae(b2).to,a8=new A.acn(b2,a4,a4,a4,4,a4,B.n,a4,a4,a4,a4,a4,a4,16,56,a4,a4,a4,a4),a9=b2.ju(t.Np),b0=A.Is(b2,t.X) -b2.L(t.N8) -s=A.aK(t.R) -r=a3.e -if(r)s.E(0,B.tH) -r=a9==null -if(r)q=a4 -else{a9.a.toString -q=!1}if(r)a9=a4 -else{a9.a.toString -a9=!1}p=a9===!0 -if(b0==null)a9=a4 -else if(!b0.gNz()){a9=b0.eh$ -a9=a9!=null&&a9.length!==0}else a9=!0 -o=a9===!0 -a9=a3.a -a9.toString -n=a7.at -if(n==null)n=56 -r=a8.gcD(a8) -m=t.MH -a9=A.di(a9.at,s,m) -if(a9==null)a9=A.di(a7.b,s,m) -l=a9==null?A.di(r,s,t.n8):a9 -a3.a.toString -k=a7.c -if(k==null)k=a8.geI(a8) -a9=a3.a.x -j=a9==null?a7.d:a9 -if(j==null){a9=a8.d -a9.toString -j=a9}if(s.A(0,B.tH)){a3.a.toString -a9=a7.e -if(a9==null)a9=a8.e -i=a9==null?j:a9}else i=j -a9=a3.a.ch -if(a9==null)a9=a7.x -h=a9==null?a8.gqF().fI(k):a9 -a9=a3.a -a9.toString -s=a7.y -a9=s==null?a9.ch:s -if(a9==null)a9=a7.x -if(a9==null){a9=a8.y -a9=a9==null?a4:a9.fI(k) -g=a9}else g=a9 -if(g==null)g=h -a3.a.toString -a9=a7.ax -if(a9==null){a9=a8.gru() -a9=a9==null?a4:a9.fI(k) -f=a9}else f=a9 -a3.a.toString -a9=a7.ay -if(a9==null){a9=a8.giU() -a9=a9==null?a4:a9.fI(k) -e=a9}else e=a9 -a3.a.toString -if(q===!0){a9=h.c -if(a9==null)a9=24 -A.lG(b2,B.bp,t.c4).toString -d=A.akq(a4,B.ng,a9,a3.ga1Q(),a5)}else if(!p&&o)d=B.wh -else d=a4 -if(d!=null){a3.a.toString -d=new A.eZ(A.n1(a4,56),d,a4)}c=a3.a.e -switch(a6.w.a){case 0:case 1:case 3:case 5:b=!0 -break -case 2:case 4:b=a4 -break -default:b=a4}c=A.bq(a4,new A.MD(c,a4),!1,a4,a4,!1,a4,a4,!0,a4,a4,a4,a4,b,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4) -e.toString -c=A.jQ(c,a4,a4,B.aL,!1,e,a4,a4,B.aA) -a=b2.L(t.w).f -c=new A.hb(a.uZ(Math.min(a.c,1.34)),c,a4) -a9=a3.a.f -if(a9!=null&&!0){a9.toString -a0=A.fB(a9,B.dW,B.E,B.bz)}else if(p){a9=h.c -if(a9==null)a9=24 -A.lG(b2,B.bp,t.c4).toString -a0=A.akq(a4,B.ng,a9,a3.ga1S(),a5)}else a0=a4 -if(a0!=null)a0=A.x2(a0,g) -a9=a3.a.a0L(a6) -a3.a.toString -s=a7.as -if(s==null)s=16 -f.toString -a1=A.VS(new A.w9(new A.agQ(n),A.x2(A.jQ(new A.ID(d,c,a0,a9,s,a4),a4,a4,B.bJ,!0,f,a4,a4,B.aA),h),a4),B.ai,a4) -a1=A.al_(!1,a1,!0) -a9=A.LT(l) -a9=a9===B.a3?B.N9:B.Na -a2=a9 -a3.a.toString -a9=a7.f -if(a9==null)a9=a8.f -s=a7.r -if(s==null)s=a8.r -r=a7.w -if(r==null)r=a8.w -return A.bq(a4,new A.vq(a2,A.hS(B.D,!0,a4,A.bq(a4,new A.dr(B.fc,a4,a4,a1,a4),!1,a4,a4,!0,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4),B.u,l,i,a4,a9,r,s,a4,B.bA),a4,t.ph),!0,a4,a4,!1,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4)}} -A.aaX.prototype={ -$0(){}, -$S:0} -A.MD.prototype={ -aJ(a){var s=a.L(t.I) -s.toString -s=new A.Qe(B.M,s.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){var s=a.L(t.I) -s.toString -b.sbx(0,s.f)}} -A.Qe.prototype={ -c4(a){var s=a.Ma(1/0) -return a.bo(this.q$.hy(s))}, -bK(){var s,r=this,q=t.k,p=q.a(A.u.prototype.ga_.call(r)).Ma(1/0) -r.q$.cH(0,p,!0) -q=q.a(A.u.prototype.ga_.call(r)) -s=r.q$.k1 -s.toString -r.k1=q.bo(s) -r.B3()}} -A.acn.prototype={ -gui(){var s,r=this,q=r.cy -if(q===$){s=A.ae(r.cx) -A.ba(r.cy,"_theme") -r.cy=s -q=s}return q}, -gmI(){var s,r=this,q=r.db -if(q===$){s=r.gui() -A.ba(r.db,"_colors") -q=r.db=s.as}return q}, -gcD(a){return this.gmI().a===B.a3?this.gmI().cy:this.gmI().b}, -geI(a){return this.gmI().a===B.a3?this.gmI().db:this.gmI().c}, -gqF(){return this.gui().rx}, -gru(){return this.gui().R8.z}, -giU(){return this.gui().R8.r}} -A.pR.prototype={ -gv(a){var s=this -return A.a3(s.a,s.gcD(s),s.geI(s),s.d,s.e,s.f,s.gfZ(),s.w,s.gqF(),s.gAV(),s.z,s.Q,s.as,s.at,s.gru(),s.giU(),s.ch,s.CW,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.pR)if(J.f(b.gcD(b),r.gcD(r)))if(J.f(b.geI(b),r.geI(r)))if(b.d==r.d)if(b.e==r.e)if(J.f(b.f,r.f))if(J.f(b.gfZ(),r.gfZ()))if(J.f(b.w,r.w))if(J.f(b.gqF(),r.gqF()))if(J.f(b.gAV(),r.gAV()))if(J.f(b.z,r.z))if(b.as==r.as)if(b.at==r.at)if(J.f(b.gru(),r.gru()))if(J.f(b.giU(),r.giU()))s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gcD(a){return this.b}, -geI(a){return this.c}, -gfZ(){return this.r}, -gqF(){return this.x}, -gAV(){return this.y}, -gru(){return this.ax}, -giU(){return this.ay}} -A.MC.prototype={} -A.xT.prototype={ -j6(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a -f.toString -s=g.b -s.toString -r=s.a9(0,f) -q=Math.abs(r.a) -p=Math.abs(r.b) -o=r.gcE() -n=s.a -m=f.b -l=new A.m(n,m) -k=new A.a1K(g,o) -if(q>2&&p>2){j=o*o -i=f.a -h=s.b -if(q0){n.b=n.c=n.d=n.e=null -n.a=0}o=p.bj$ -o.b=!1 -B.c.sp(o.a,0) -n=o.c -if(n===$){m=A.cf(o.$ti.c) -A.ba(o.c,g) -o.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}p.lc(0)}for(s=h.f,r=A.arL(s),o=A.n(r).c;r.t();){l=r.e -l=A.a((l==null?o.a(l):l).d,"controller") -l.r.m(0) -l.r=null -k=l.d2$ -k.b=!1 -B.c.sp(k.a,0) -n=k.c -if(n===$){m=A.cf(k.$ti.c) -A.ba(k.c,g) -k.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}k=l.bj$ -k.b=!1 -B.c.sp(k.a,0) -n=k.c -if(n===$){m=A.cf(k.$ti.c) -A.ba(k.c,g) -k.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}l.lc(0)}s.aG(0) -h.a.toString -j=J.aks(3,t.A_) -for(s=h.gYR(),i=0;i<3;++i){r=A.bo(null,B.D,null,null,h) -r.cf() -o=r.bj$ -o.b=!0 -o.a.push(s) -j[i]=r}h.d=j -h.a.toString -j=J.aks(3,t.FJ) -for(i=0;i<3;++i){s=h.d[i] -r=new A.nd(s,B.P,new A.qz(B.P)) -r.AA(s.gaZ(s)) -s.cf() -s=s.d2$ -s.b=!0 -s.a.push(r.gAz()) -j[i]=r}h.e=j -h.d[h.a.e].sl(0,1) -h.a.toString -h.r=null}, -gp9(){var s=this.a.r -if(s==null){s=this.c -s.toString -s=A.ak2(s).z}if(s==null){this.a.toString -s=B.m8}return s}, -ga_d(){switch(this.gp9().a){case 1:return!1 -case 0:return!0}}, -aB(){this.aS() -this.a6r()}, -YS(){this.a4(new A.abh())}, -m(a){var s,r,q,p,o,n,m,l,k="_set" -for(s=this.d,r=s.length,q=0;q0){n.b=n.c=n.d=n.e=null -n.a=0}o=p.bj$ -o.b=!1 -B.c.sp(o.a,0) -n=o.c -if(n===$){m=A.cf(o.$ti.c) -A.ba(o.c,k) -o.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}p.lc(0)}for(s=A.arL(this.f),r=A.n(s).c;s.t();){o=s.e -o=A.a((o==null?r.a(o):o).d,"controller") -o.r.m(0) -o.r=null -l=o.d2$ -l.b=!1 -B.c.sp(l.a,0) -n=l.c -if(n===$){m=A.cf(l.$ti.c) -A.ba(l.c,k) -l.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}l=o.bj$ -l.b=!1 -B.c.sp(l.a,0) -n=l.c -if(n===$){m=A.cf(l.$ti.c) -A.ba(l.c,k) -l.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}o.lc(0)}this.V8(0)}, -a_Z(a){return $.amI().T(0,a.gl(a))}, -a5Y(a){this.a.toString}, -b4(a){var s,r,q=this -q.bu(a) -s=q.a -r=a.e -if(s.e!==r){switch(q.gp9().a){case 0:break -case 1:q.a5Y(q.a.e) -break}q.d[r].cd(0) -q.d[q.a.e].bp(0)}}, -a_5(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2="_animations",a3=a0.c -a3.toString -A.lG(a3,B.bp,t.c4).toString -a3=a0.c -a3.toString -s=A.ae(a3) -a3=a0.c -a3.toString -r=A.ak2(a3) -a0.a.toString -q=A.arx(r.r,14) -a0.a.toString -p=A.arx(r.w,12) -a3=s.as -switch(a3.a.a){case 1:o=a3.b -break -case 0:o=a3.f -break -default:o=a1}switch(a0.gp9().a){case 0:a3=a0.a -a3.toString -n=r.f -if(n==null)n=s.id -a3=a3.y -m=r.e -a3=m==null?a3:m -l=new A.de(n,a3==null?o:a3) -break -case 1:a0.a.toString -n=r.f -if(n==null)n=a3.cy -m=r.e -l=new A.de(n,m==null?a3.cy:m) -break -default:l=a1}k=A.b([],t.p) -a3=r.d -n=r.c -m=t.WV -j=t.R -i=0 -while(!0){h=a0.a -h.toString -if(!(i<3))break -g=A.aK(j) -if(i===h.e)g.E(0,B.bf) -a0.a.toString -h=A.di(a1,g,m) -if(h==null)f=a1 -else f=h -if(f==null)f=B.dI.O(g) -h=a0.gp9() -g=a0.a.c[i] -e=J.ag(A.a(a0.e,a2),i) -a0.a.toString -d=J.ag(A.a(a0.e,a2),i) -d=$.amI().T(0,d.gl(d)) -c=a0.a.e -b=a0.ga_d() -a=i+1 -a0.a.toString -k.push(new A.MQ(h,g,e,24,new A.abg(a0,i),l,d,i===c,n,a3,q,p,"Tab "+a+" of 3",!0,b,f,!0,a4,a1)) -i=a}return k}, -I(a,b){var s,r,q,p,o,n=this,m=null,l=A.ak2(b) -n.a.toString -s=b.L(t.w).f.f.d -switch(n.gp9().a){case 0:n.a.toString -r=l.a -break -case 1:r=n.r -break -default:r=m}n.a.toString -q=l.b -if(q==null)q=8 -p=n.f.dK(0) -o=b.L(t.I) -o.toString -return A.bq(m,new A.MK(new A.eZ(new A.aF(0,1/0,56+s,1/0),A.iK(A.hS(B.D,!0,m,new A.cq(new A.as(0,0,0,s),A.apP(A.aoM(A.fB(n.a_5(B.m7),B.af,B.tz,B.Q),B.aL,m),b,!0,!1,!1,!1),m),B.u,m,0,m,m,m,m,m,B.df),m,m,new A.Q4(p,o.f,m),B.o),m),B.m7,q,r,m),!1,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)}} -A.abh.prototype={ -$0(){}, -$S:0} -A.abg.prototype={ -$0(){this.a.a.d.$1(this.b)}, -$S:0} -A.MK.prototype={ -I(a,b){var s=this,r=null,q=b.L(t.w).f,p=s.c -if(q.go6(q)===B.hE&&s.d===B.wr)p=new A.dr(B.dK,r,1,A.dz(p,r,q.a.b),r) -return A.hS(B.D,!0,r,p,B.u,s.f,s.e,r,r,r,r,r,B.bA)}} -A.alo.prototype={ -$1(a){return new A.az(a,this.a.a.ga_Y(),A.af(a).j("az<1,J>")).qx(0,0,new A.abR())}, -$S:205} -A.abR.prototype={ -$2(a,b){return a+b}, -$S:206} -A.Q4.prototype={ -ew(a){var s,r,q -if(this.c!==a.c)return!0 -s=this.b -r=a.b -if(s===r)return!1 -if(s.length!==r.length)return!0 -for(q=0;q>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.br),s,r.c)}if(s==null){q=p.a -return A.aE(p,new A.ds(A.ak(0,q.gl(q)>>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.br),r.c)}return A.aE(p,s,r.c)}, -$iaU:1} -A.ON.prototype={ -O(a){var s,r=this.a,q=r==null?null:r.O(a) -r=this.b -s=r==null?null:r.O(a) -return t.KX.a(A.e8(q,s,this.c))}, -$iaU:1} -A.MV.prototype={} -A.vL.prototype={ -am(){return new A.MU(null,null,A.aK(t.R),B.k)}} -A.MU.prototype={ -aB(){this.aS() -this.a.toString -this.m9(B.ag)}, -m(a){var s=this.d -if(s!=null)s.m(0) -this.V9(0)}, -b4(a){var s,r=this -r.bu(a) -r.a.toString -r.m9(B.ag) -s=r.iv$ -if(s.A(0,B.ag)&&s.A(0,B.aI))r.m9(B.aI)}, -I(c2,c3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5=this,b6=null,b7=b5.a,b8=new A.abJ(b7.r,b7.agt(c3),b5.a.abh(c3)),b9=new A.abK(b5,b8),c0=b9.$1$1(new A.abo(),t.PM),c1=b9.$1$1(new A.abp(),t.p8) -b7=t.MH -s=b9.$1$1(new A.abq(),b7) -r=b9.$1$1(new A.abB(),b7) -q=b9.$1$1(new A.abC(),b7) -p=b9.$1$1(new A.abD(),b7) -o=b9.$1$1(new A.abE(),t.pc) -b7=t.tW -n=b9.$1$1(new A.abF(),b7) -m=b9.$1$1(new A.abG(),b7) -l=b9.$1$1(new A.abH(),b7) -k=b9.$1$1(new A.abI(),t.oI) -j=b9.$1$1(new A.abr(),t.KX) -i=b8.$1$1(new A.abs(),t.X3) -h=b8.$1$1(new A.abt(),t.Oc) -g=b8.$1$1(new A.abu(),t.Tu) -f=b8.$1$1(new A.abv(),t.y) -e=b8.$1$1(new A.abw(),t.pC) -d=new A.m(i.a,i.b).W(0,4) -c=b8.$1$1(new A.abx(),t.Ya) -b7=n.a -b=n.b -a=i.C7(new A.aF(b7,l.a,b,l.b)) -if(m!=null){a0=a.bo(m) -b7=a0.a -if(isFinite(b7))a=a.Bz(b7,b7) -b7=a0.b -if(isFinite(b7))a=a.aaQ(b7,b7)}a1=d.b -b7=d.a -a2=Math.max(0,b7) -a3=o.E(0,new A.as(a2,a1,a2,a1)).G(0,B.aP,B.lN) -if(g.a>0){b=b5.e -if(b!=null){a4=b5.f -if(a4!=null)if(b!==c0)if(a4.gl(a4)!==s.gl(s)){b=b5.f -b=(b.gl(b)>>>24&255)/255===1&&(s.gl(s)>>>24&255)/255<1&&c0===0}else b=!1 -else b=!1 -else b=!1}else b=!1}else b=!1 -if(b){b=b5.d -if(!J.f(b==null?b6:b.e,g)){b=b5.d -if(b!=null)b.m(0) -b=A.bo(b6,g,b6,b6,b5) -b.c1(new A.aby(b5)) -b5.d=b}s=b5.f -b5.d.sl(0,0) -b5.d.bp(0)}b5.e=c0 -b5.f=s -c0.toString -b=c1==null?b6:c1.fI(r) -a4=j.ni(k) -a5=s==null?B.df:B.hy -a6=b5.a -a7=a6.w -a8=a6.c -a6=a6.d -a9=b5.Eb(B.aI) -b0=b5.wC(B.ap,b5.a.e) -b1=b5.a -b2=b1.x -b1=b5.wC(B.aD,b1.f) -b3=b5.a -b3.toString -e.toString -a5=A.hS(g,!0,b6,A.iV(!1,!0,A.x2(new A.cq(a3,new A.dr(e,1,1,b3.z,b6),b6),new A.cK(r,b6,b6,b6)),j,f,b6,b2,B.a5,b6,new A.P8(new A.abz(b8)),b6,b1,a9,b0,a6,a8,new A.ee(new A.abA(b8),t._s),b6,c),a7,s,c0,b6,q,a4,p,b,a5) -switch(h.a){case 0:b4=new A.L(48+b7,48+a1) -break -case 1:b4=B.o -break -default:b4=b6}return A.bq(!0,new A.Oz(b4,new A.eZ(a,a5,b6),b6),!0,b6,!0,!1,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6)}} -A.abJ.prototype={ -$1$1(a,b){var s=a.$1(this.a),r=a.$1(this.b),q=a.$1(this.c),p=s==null?r:s -return p==null?q:p}, -$1(a){return this.$1$1(a,t.z)}, -$S:209} -A.abK.prototype={ -$1$1(a,b){return this.b.$1$1(new A.abL(this.a,a,b),b)}, -$1(a){return this.$1$1(a,t.z)}, -$S:210} -A.abL.prototype={ -$1(a){var s=this.b.$1(a) -return s==null?null:s.O(this.a.iv$)}, -$S(){return this.c.j("0?(bp?)")}} -A.abo.prototype={ -$1(a){return a==null?null:a.gfc(a)}, -$S:211} -A.abp.prototype={ -$1(a){return a==null?null:a.gwt(a)}, -$S:212} -A.abq.prototype={ -$1(a){return a==null?null:a.gcD(a)}, -$S:61} -A.abB.prototype={ -$1(a){return a==null?null:a.geI(a)}, -$S:61} -A.abC.prototype={ -$1(a){return a==null?null:a.gev(a)}, -$S:61} -A.abD.prototype={ -$1(a){return a==null?null:a.gfZ()}, -$S:61} -A.abE.prototype={ -$1(a){return a==null?null:a.gdw(a)}, -$S:214} -A.abF.prototype={ -$1(a){return a==null?null:a.gw3()}, -$S:77} -A.abG.prototype={ -$1(a){return a==null?null:a.y}, -$S:77} -A.abH.prototype={ -$1(a){return a==null?null:a.gw1()}, -$S:77} -A.abI.prototype={ -$1(a){return a==null?null:a.Q}, -$S:216} -A.abr.prototype={ -$1(a){return a==null?null:a.gdQ(a)}, -$S:217} -A.abz.prototype={ -$1(a){return this.a.$1$1(new A.abm(a),t.Pb)}, -$S:218} -A.abm.prototype={ -$1(a){var s -if(a==null)s=null -else{s=a.gw4() -s=s==null?null:s.O(this.a)}return s}, -$S:219} -A.abA.prototype={ -$1(a){return this.a.$1$1(new A.abl(a),t.n8)}, -$S:74} -A.abl.prototype={ -$1(a){var s -if(a==null)s=null -else{s=a.gw8() -s=s==null?null:s.O(this.a)}return s}, -$S:221} -A.abs.prototype={ -$1(a){return a==null?null:a.gwG()}, -$S:222} -A.abt.prototype={ -$1(a){return a==null?null:a.gws()}, -$S:223} -A.abu.prototype={ -$1(a){return a==null?null:a.ch}, -$S:224} -A.abv.prototype={ -$1(a){return a==null?null:a.CW}, -$S:225} -A.abw.prototype={ -$1(a){return a==null?null:a.cx}, -$S:226} -A.abx.prototype={ -$1(a){return a==null?null:a.gt3()}, -$S:227} -A.aby.prototype={ -$1(a){if(a===B.H)this.a.a4(new A.abn())}, -$S:3} -A.abn.prototype={ -$0(){}, -$S:0} -A.P8.prototype={ -O(a){var s=this.a.$1(a) -s.toString -return s}, -gv4(){return"ButtonStyleButton_MouseCursor"}} -A.Oz.prototype={ -aJ(a){var s=new A.CP(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sDf(this.e)}} -A.CP.prototype={ -sDf(a){if(this.u.k(0,a))return -this.u=a -this.a0()}, -b1(a){var s=this.q$ -if(s!=null)return Math.max(s.av(B.U,a,s.gb9()),this.u.a) -return 0}, -aX(a){var s=this.q$ -if(s!=null)return Math.max(s.av(B.ah,a,s.gbn()),this.u.b) -return 0}, -aU(a){var s=this.q$ -if(s!=null)return Math.max(s.av(B.a8,a,s.gbf()),this.u.a) -return 0}, -b0(a){var s=this.q$ -if(s!=null)return Math.max(s.av(B.b_,a,s.gbM()),this.u.b) -return 0}, -Gw(a,b){var s,r,q=this.q$ -if(q!=null){s=b.$2(q,a) -q=s.a -r=this.u -return a.bo(new A.L(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.o}, -c4(a){return this.Gw(a,A.EG())}, -bK(){var s,r,q=this,p=q.Gw(t.k.a(A.u.prototype.ga_.call(q)),A.EH()) -q.k1=p -s=q.q$ -if(s!=null){r=s.e -r.toString -t.x.a(r) -s=s.k1 -s.toString -r.a=B.M.lv(t.EP.a(p.a9(0,s)))}}, -bD(a,b){var s -if(this.i5(a,b))return!0 -s=this.q$.k1.il(B.j) -return a.B2(new A.afz(this,s),s,A.apN(s))}} -A.afz.prototype={ -$2(a,b){return this.a.q$.bD(a,this.b)}, -$S:11} -A.Sr.prototype={} -A.E4.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.Fx.prototype={ -i(a){return"ButtonTextTheme."+this.b}} -A.Fy.prototype={ -gdw(a){switch(0){case 0:case 1:return B.fF}}, -gdQ(a){switch(0){case 0:case 1:return B.KJ}}, -k(a,b){var s,r=this -if(b==null)return!1 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.Fy)if(J.f(b.gdw(b),r.gdw(r)))if(J.f(b.gdQ(b),r.gdQ(r)))if(J.f(b.w,r.w))if(J.f(b.y,r.y))if(J.f(b.z,r.z))s=J.f(b.at,r.at)&&b.ax==r.ax -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this -return A.a3(B.wH,88,36,s.gdw(s),s.gdQ(s),!1,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.MW.prototype={} -A.FD.prototype={ -I(a,b){var s,r,q,p,o,n,m,l,k=null,j=A.ae(b).a6 -A.ae(b) -s=new A.aco(b,B.u,k,k,k,1,B.n0,B.eG) -r=this.y -q=j.b -if(q==null)q=s.gad(s) -p=j.c -if(p==null)p=s.gev(s) -o=j.d -if(o==null)o=s.d -n=this.f -m=j.r -if(m==null)m=B.eG -l=j.a -if(l==null)l=B.u -return A.bq(k,A.cc(k,A.hS(B.D,!0,k,A.bq(k,this.Q,!1,k,k,!1,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),l,q,n,k,p,m,o,k,B.hx),k,k,k,k,r,k,k),!0,k,k,!1,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k)}} -A.aco.prototype={ -gad(a){return A.ae(this.w).dy}, -gev(a){return A.ae(this.w).cx}} -A.q_.prototype={ -gv(a){var s=this -return A.a3(s.a,s.gad(s),s.gev(s),s.gfZ(),s.e,s.f,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.q_&&b.a==s.a&&J.f(b.gad(b),s.gad(s))&&J.f(b.gev(b),s.gev(s))&&J.f(b.gfZ(),s.gfZ())&&b.e==s.e&&J.f(b.f,s.f)&&J.f(b.r,s.r)}, -gad(a){return this.b}, -gev(a){return this.c}, -gfZ(){return this.d}} -A.N_.prototype={} -A.vP.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.vP)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)s=J.f(b.w,r.w)&&J.f(b.x,r.x) -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.C3.prototype={ -O(a){var s,r=this,q=r.a,p=q==null?null:q.O(a) -q=r.b -s=q==null?null:q.O(a) -return r.d.$3(p,s,r.c)}, -$iaU:1} -A.N0.prototype={} -A.vQ.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.vQ&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)&&J.f(b.d,s.d)&&J.f(b.e,s.e)&&J.f(b.f,s.f)&&J.f(b.r,s.r)&&J.f(b.x,s.x)&&J.f(b.y,s.y)&&J.f(b.z,s.z)&&J.f(b.Q,s.Q)&&J.f(b.as,s.as)&&J.f(b.at,s.at)&&J.f(b.ax,s.ax)&&b.ay==s.ay&&b.ch==s.ch&&b.CW==s.CW}} -A.N3.prototype={} -A.Gl.prototype={ -k(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this -if(a0==null)return!1 -if(b===a0)return!0 -if(J.W(a0)!==A.C(b))return!1 -if(a0 instanceof A.Gl)if(a0.a===b.a){s=a0.b -r=b.b -if(s.k(0,r)){q=a0.c -p=b.c -if(q.k(0,p)){o=a0.d -if(o==null)o=s -n=b.d -if(o.k(0,n==null?r:n)){o=a0.e -if(o==null)o=q -n=b.e -if(o.k(0,n==null?p:n)){o=a0.f -n=b.f -if(o.k(0,n)){m=a0.r -l=b.r -if(m.k(0,l)){k=a0.w -if(k==null)k=o -j=b.w -if(k.k(0,j==null?n:j)){k=a0.x -if(k==null)k=m -j=b.x -if(k.k(0,j==null?l:j)){k=a0.y -j=k==null -i=j?o:k -h=b.y -g=h==null -if(i.k(0,g?n:h)){i=a0.z -f=i==null -e=f?m:i -d=b.z -c=d==null -if(e.k(0,c?l:d)){e=a0.Q -if(e==null){if(j)k=o}else k=e -j=b.Q -if(j==null)j=g?n:h -if(k.k(0,j)){k=a0.as -if(k==null)m=f?m:i -else m=k -k=b.as -if(k==null)l=c?l:d -else l=k -if(m.k(0,l)){m=a0.at -l=b.at -if(m.k(0,l)){k=a0.ax -j=b.ax -if(k.k(0,j)){i=a0.ay -m=i==null?m:i -i=b.ay -if(m.k(0,i==null?l:i)){m=a0.ch -if(m==null)m=k -l=b.ch -if(m.k(0,l==null?j:l))if(a0.CW.k(0,b.CW)){m=a0.cx -l=b.cx -if(m.k(0,l)){k=a0.cy -j=b.cy -if(k.k(0,j)){i=a0.db -h=b.db -if(i.k(0,h)){g=a0.dx -if(g==null)g=k -f=b.dx -if(g.k(0,f==null?j:f)){g=a0.dy -if(g==null)g=i -f=b.dy -if(g.k(0,f==null?h:f)){g=a0.fr -m=g==null?m:g -g=b.fr -if(m.k(0,g==null?l:g)){m=a0.fx -if(m==null)m=B.n -l=b.fx -if(m.k(0,l==null?B.n:l)){m=a0.fy -if(m==null)m=i -l=b.fy -if(m.k(0,l==null?h:l)){m=a0.go -if(m==null)m=k -l=b.go -if(m.k(0,l==null?j:l)){m=a0.id -q=m==null?q:m -m=b.id -if(q.k(0,m==null?p:m)){q=a0.k2 -if(q==null)q=s -p=b.k2 -if(q.k(0,p==null?r:p)){q=a0.k3 -if(q==null)q=o -p=b.k3 -if(q.k(0,p==null?n:p)){q=a0.k1 -s=q==null?s:q -q=b.k1 -s=s.k(0,q==null?r:q)}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1 -return s}, -gv(b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=a7.b,a9=a7.c,b0=a7.d -if(b0==null)b0=a8 -s=a7.e -if(s==null)s=a9 -r=a7.f -q=a7.r -p=a7.w -if(p==null)p=r -o=a7.x -if(o==null)o=q -n=a7.y -m=n==null -l=m?r:n -k=a7.z -j=k==null -i=j?q:k -h=a7.Q -if(h==null){if(m)n=r}else n=h -m=a7.as -if(m==null)m=j?q:k -k=a7.at -j=a7.ax -h=a7.ay -if(h==null)h=k -g=a7.ch -if(g==null)g=j -f=a7.cx -e=a7.cy -d=a7.db -c=a7.dx -if(c==null)c=e -b=a7.dy -if(b==null)b=d -a=a7.fr -if(a==null)a=f -a0=a7.fx -if(a0==null)a0=B.n -a1=a7.fy -if(a1==null)a1=d -a2=a7.go -if(a2==null)a2=e -a3=a7.id -if(a3==null)a3=a9 -a4=a7.k2 -if(a4==null)a4=a8 -a5=a7.k3 -if(a5==null)a5=r -a6=a7.k1 -return A.a3(a7.a,a8,a9,b0,s,r,q,p,o,l,i,n,m,k,j,h,g,a7.CW,f,A.a3(e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6==null?a8:a6,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}} -A.N4.prototype={} -A.lH.prototype={} -A.wa.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.wa&&J.f(b.a,s.a)&&b.b==s.b&&b.c==s.c&&J.f(b.d,s.d)&&b.e==s.e&&b.f==s.f&&J.f(b.r,s.r)&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z}} -A.C2.prototype={ -O(a){var s,r=this,q=r.a,p=q==null?null:q.O(a) -q=r.b -s=q==null?null:q.O(a) -return r.d.$3(p,s,r.c)}, -$iaU:1} -A.Nt.prototype={} -A.acr.prototype={ -l_(a){return B.o}, -uI(a,b,c,d){return B.cL}, -om(a,b){return B.j}} -A.GM.prototype={ -I(a,b){var s,r,q,p,o,n,m,l,k=null -A.ae(b) -s=A.ae(b).bQ -r=A.arA(b) -q=t.w -p=b.L(q).f -o=p.e.Z(0,this.r) -p=s.d -if(p==null){p=r.d -p.toString}n=s.a -if(n==null)n=A.ae(b).k4 -m=s.b -if(m==null){m=r.b -m.toString}l=s.c -if(l==null){l=r.c -l.toString}l=A.hS(B.D,!0,k,this.z,this.w,n,m,k,k,l,k,k,B.hx) -return new A.vh(o,new A.hb(b.L(q).f.Pe(!0,!0,!0,!0),new A.dr(p,k,k,new A.eZ(B.wy,l,k),k),k),B.dN,B.an,k,k)}} -A.pP.prototype={ -I(a,b){var s,r,q,p,o,n,m,l=null,k=A.ae(b),j=A.ae(b).bQ,i=A.arA(b),h=k.w -switch(h.a){case 2:case 4:s=l -break -case 0:case 1:case 3:case 5:A.lG(b,B.bp,t.c4).toString -s="Alert" -break -default:s=l}r=A.Z(1,0.3333333333333333,B.e.G(b.L(t.w).f.c,1,2)-1) -r.toString -A.en(b) -q=24*r -p=j.e -if(p==null){p=i.giU() -p.toString}h=s==null&&h!==B.av -o=new A.cq(new A.as(q,q,q,0),A.jQ(A.bq(l,this.c,!0,l,l,!1,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),l,l,B.bJ,!0,p,l,l,B.aA),l) -h=24*r -r=j.f -if(r==null){r=i.guW() -r.toString}n=new A.cq(new A.as(h,20,h,24),A.jQ(A.bq(l,this.f,!0,l,l,!1,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),l,l,B.bJ,!0,r,l,l,B.aA),l) -h=A.b([],t.p) -h.push(o) -h.push(new A.wL(1,B.Bl,n,l)) -m=new A.HT(A.el(h,B.dW,B.E,B.bz),l) -return new A.GM(l,l,B.Be,B.u,l,l,s!=null?A.bq(l,m,!1,l,l,!0,l,l,l,l,s,l,l,!0,l,l,l,l,l,l,l,!0,l,l,l,l,l,l,l):m,l)}} -A.wf.prototype={} -A.WN.prototype={ -$3(a,b,c){var s=new A.MZ(this.b.a,new A.jL(this.a,null),null) -s=A.al_(!0,s,!0) -return s}, -$C:"$3", -$R:3, -$S:228} -A.acp.prototype={ -gcD(a){return A.ae(this.r).k4}, -giU(){return this.w.r}, -guW(){return this.w.w}} -A.qi.prototype={ -gv(a){return J.r(this.c)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.qi&&J.f(b.gcD(b),s.gcD(s))&&b.b==s.b&&J.f(b.c,s.c)&&J.f(b.d,s.d)&&J.f(b.giU(),s.giU())&&J.f(b.guW(),s.guW())}, -gcD(a){return this.a}, -giU(){return this.e}, -guW(){return this.f}} -A.ND.prototype={} -A.ng.prototype={ -I(a,b){var s,r,q,p=null,o=A.aoV(b),n=this.c,m=n==null?o.b:n -if(m==null)m=16 -s=o.c -if(s==null)s=0 -n=this.e -r=n==null?o.d:n -if(r==null)r=0 -q=o.e -if(q==null)q=0 -return A.dz(A.jM(A.cc(p,p,p,p,new A.dX(p,p,new A.dJ(B.t,B.t,A.aAI(b,p,s),B.t),p,p,p,B.aF),s,new A.f2(r,0,q,0),p,p),p,p),m,p)}} -A.wk.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.wk&&J.f(b.a,s.a)&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e}} -A.NH.prototype={} -A.wu.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.wu&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&b.c==s.c&&J.f(b.d,s.d)&&b.e==s.e}} -A.NO.prototype={} -A.GS.prototype={ -abh(a){var s,r,q,p,o=A.ae(a),n=o.as -A.ae(a) -s=n.c -r=n.db -q=A.aGG(a) -p=t.yG -s=A.aoy(B.M,B.D,new A.NR(n.b,r),new A.NS(2),!0,null,new A.NT(s,r),new A.fh(B.Mi,p),new A.fh(B.Mh,p),new A.NU(B.lo,B.eK),new A.NV(s),new A.fh(q,t.Fx),new A.fh(o.cx,t.GJ),new A.fh(B.eG,t.w2),null,B.xz,null,o.f,new A.fh(o.R8.as,t.EN),o.z) -return s}, -agt(a){var s -a.L(t.dq) -s=A.ae(a) -return s.af.a}} -A.NR.prototype={ -O(a){var s -if(a.A(0,B.ag)){s=this.b -if(s==null)s=null -else{s=s.a -s=A.ak(31,s>>>16&255,s>>>8&255,s&255)}return s}return this.a}} -A.NT.prototype={ -O(a){var s -if(a.A(0,B.ag)){s=this.b -if(s==null)s=null -else{s=s.a -s=A.ak(97,s>>>16&255,s>>>8&255,s&255)}return s}return this.a}} -A.NV.prototype={ -O(a){var s -if(a.A(0,B.ap)){s=this.a -return A.ak(20,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}if(a.A(0,B.aD)||a.A(0,B.aI)){s=this.a -return A.ak(61,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}return null}} -A.NS.prototype={ -O(a){var s=this -if(a.A(0,B.ag))return 0 -if(a.A(0,B.ap))return s.a+2 -if(a.A(0,B.aD))return s.a+2 -if(a.A(0,B.aI))return s.a+6 -return s.a}} -A.NU.prototype={ -O(a){if(a.A(0,B.ag))return this.b -return this.a}} -A.Sv.prototype={} -A.Sw.prototype={} -A.Sx.prototype={} -A.Sy.prototype={} -A.Sz.prototype={} -A.wy.prototype={ -gv(a){return J.r(this.a)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.wy&&J.f(b.a,this.a)}} -A.NW.prototype={} -A.wG.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.wG&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)&&J.f(b.d,s.d)&&J.f(b.e,s.e)&&J.f(b.f,s.f)&&J.f(b.r,s.r)&&J.f(b.w,s.w)&&J.f(b.x,s.x)}} -A.O_.prototype={} -A.wM.prototype={ -cZ(a){var s=this -return s.f!==a.f||s.r!==a.r||s.w!==a.w||s.x!==a.x||!1}} -A.ace.prototype={ -i(a){return""}} -A.u6.prototype={ -i(a){return"_FloatingActionButtonType."+this.b}} -A.Hf.prototype={ -I(a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=null,a=A.ae(a5),a0=a.a7,a1=this.k1,a2=new A.aei(a1,!0,A.ae(a5),A.ae(a5).as,b,b,b,b,b,6,6,8,b,12,b,!0,b,B.ma,B.m9,B.mb,B.md,8,b,b),a3=a0.a -if(a3==null)a3=a2.geI(a2) -s=a0.b -if(s==null)s=a2.gcD(a2) -r=a0.c -if(r==null)r=a2.glQ() -q=a0.d -if(q==null)q=a2.glV() -p=a0.e -if(p==null)p=a2.goC() -o=a0.f -if(o==null)o=6 -n=a0.r -if(n==null)n=6 -m=a0.w -if(m==null)m=8 -l=a0.x -k=l==null?b:l -if(k==null)k=o -j=a0.y -if(j==null)j=12 -i=a0.as -if(i==null)i=a2.gqE() -l=a0.cy -h=(l==null?a2.gqm():l).fI(a3) -g=a0.z -if(g==null)g=a2.gdQ(a2) -l=this.c -f=A.x2(l,new A.cK(b,b,i,b)) -switch(a1.a){case 0:e=a0.at -if(e==null)e=B.ma -break -case 1:e=a0.ax -if(e==null)e=B.m9 -break -case 2:e=a0.ay -if(e==null)e=B.mb -break -case 3:e=a0.ch -if(e==null)e=B.md -d=a0.cx -if(d==null)d=a2.gql() -a1=A.b([],t.p) -a1.push(l) -f=new A.N1(new A.cq(d,A.fB(a1,B.af,B.E,B.bz),b),b) -break -default:e=b}c=A.apl(new A.z0(this.z,b,h,s,r,q,p,o,m,n,j,k,e,g,f,a.f,b,!1,B.u,a0.Q!==!1,b),B.xy) -return new A.Il(c,b)}} -A.N1.prototype={ -aJ(a){var s=a.L(t.I) -s.toString -s=new A.CG(B.M,s.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){var s=a.L(t.I) -s.toString -b.sbx(0,s.f)}} -A.CG.prototype={ -b1(a){return 0}, -aX(a){return 0}, -c4(a){var s,r=this.q$,q=a.a,p=a.b,o=a.c,n=a.d -if(r!=null){s=r.hy(B.cQ) -return new A.L(Math.max(q,Math.min(p,s.a)),Math.max(o,Math.min(n,s.b)))}else return new A.L(B.f.G(1/0,q,p),B.f.G(1/0,o,n))}, -bK(){var s=this,r=t.k.a(A.u.prototype.ga_.call(s)),q=s.q$,p=r.a,o=r.b,n=r.c,m=r.d -if(q!=null){q.cH(0,B.cQ,!0) -q=s.q$.k1 -s.k1=new A.L(Math.max(p,Math.min(o,q.a)),Math.max(n,Math.min(m,q.b))) -s.B3()}else s.k1=new A.L(B.f.G(1/0,p,o),B.f.G(1/0,n,m))}} -A.aei.prototype={ -geI(a){return this.fr.r}, -gcD(a){return this.fr.f}, -glQ(){return this.dy.ch}, -glV(){return this.dy.CW}, -goC(){return this.dy.fy}, -gdQ(a){return this.db===B.vY?B.MA:B.mp}, -gqE(){return this.db===B.Tb?36:24}, -gql(){return new A.f2(this.dx&&this.db===B.vY?16:20,0,20,0)}, -gqm(){return this.dy.R8.as.aaG(1.2)}} -A.Z1.prototype={ -i(a){return"FloatingActionButtonLocation"}} -A.a8G.prototype={ -l0(a){var s=this.Qk(a,0),r=a.c,q=a.b.b,p=a.a.b,o=a.w.b,n=r-p-Math.max(16,a.f.d-(a.r.b-r)+16) -if(o>0)n=Math.min(n,r-o-p-16) -return new A.m(s,(q>0?Math.min(n,r-q-p/2):n)+0)}} -A.YM.prototype={} -A.YL.prototype={ -Qk(a,b){switch(a.y.a){case 0:return 16+a.e.a-b -case 1:return a.r.a-16-a.e.c-a.a.a+b}}} -A.acy.prototype={ -i(a){return"FloatingActionButtonLocation.endFloat"}} -A.Z0.prototype={ -i(a){return"FloatingActionButtonAnimator"}} -A.ag3.prototype={ -Qj(a,b,c){if(c<0.5)return a -else return b}} -A.B1.prototype={ -gl(a){var s,r=this -if(A.a(r.w.x,"_value")>>16&255,o.gl(o)>>>8&255,o.gl(o)&255)) -s=A.akH(b) -o=q.at -if(o!=null)r=o.$0() -else{o=q.b.k1 -r=new A.w(0,0,0+o.a,0+o.b)}if(s==null){a.bF(0) -a.T(0,b.a) -q.J3(a,r,p) -a.bt(0)}else q.J3(a,r.c8(s),p)}} -A.ahV.prototype={ -$0(){var s=this.a.k1 -return new A.w(0,0,0+s.a,0+s.b)}, -$S:134} -A.adv.prototype={ -Mh(a,b,c,d,e,f,g,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h=null -if(a1==null){if(a2!=null){s=a2.$0() -r=new A.L(s.c-s.a,s.d-s.b)}else{s=a3.k1 -s.toString -r=s}s=Math.max(r.LL(0,B.j).gcE(),new A.m(0+r.a,0).a9(0,new A.m(0,0+r.b)).gcE())/2}else s=a1 -q=new A.x9(a0,B.b0,f,s,A.aG5(a3,d,a2),a4,c,e,a3,g) -p=e.u -o=A.bo(h,B.e_,h,h,p) -n=e.gd5() -o.cf() -m=o.bj$ -m.b=!0 -m.a.push(n) -o.bp(0) -q.cx=o -o=A.a(o,"_fadeInController") -m=c.gl(c) -l=t.m -k=t.gD -q.CW=new A.aC(l.a(o),new A.ly(0,m>>>24&255),k.j("aC")) -m=A.bo(h,B.dZ,h,h,p) -m.cf() -o=m.bj$ -o.b=!0 -o.a.push(n) -m.bp(0) -q.ch=m -m=A.a(m,"_radiusController") -o=t.Y -j=$.aux() -i=o.j("eT") -q.ay=new A.aC(l.a(m),new A.eT(j,new A.ar(s*0.3,s+5,o),i),i.j("aC")) -p=A.bo(h,B.mW,h,h,p) -p.cf() -i=p.bj$ -i.b=!0 -i.a.push(n) -p.c1(q.ga3Z()) -q.db=p -p=A.a(p,"_fadeOutController") -n=c.gl(c) -i=$.auy() -k=k.j("eT") -q.cy=new A.aC(l.a(p),new A.eT(i,new A.ly(n>>>24&255,0),k),k.j("aC")) -e.B_(q) -return q}} -A.x9.prototype={ -uU(a){var s=A.a(this.ch,"_radiusController") -s.e=B.B_ -s.bp(0) -A.a(this.cx,"_fadeInController").bp(0) -s=A.a(this.db,"_fadeOutController") -s.z=B.X -s.h_(1,B.a9,B.mW)}, -aA(a){var s,r,q=this,p="_fadeInController",o="_fadeOutController" -A.a(q.cx,p).ex(0) -s=1-A.a(A.a(q.cx,p).x,"_value") -A.a(q.db,o).sl(0,s) -if(s<1){r=A.a(q.db,o) -r.z=B.X -r.h_(1,B.a9,B.e_)}}, -a4_(a){if(a===B.H)this.m(0)}, -m(a){var s=this -A.a(s.ch,"_radiusController").m(0) -A.a(s.cx,"_fadeInController").m(0) -A.a(s.db,"_fadeOutController").m(0) -s.oH(0)}, -Dv(a,b){var s,r,q,p,o=this,n=A.a(o.cx,"_fadeInController").r -if(n!=null&&n.a!=null){n=A.a(o.CW,"_fadeIn") -s=n.b -n=n.a -r=s.T(0,n.gl(n))}else{n=A.a(o.cy,"_fadeOut") -s=n.b -n=n.a -r=s.T(0,n.gl(n))}q=$.aJ()?A.aT():new A.aO(new A.aQ()) -n=o.e -q.sad(0,A.ak(r,n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255)) -n=A.yj(o.y,o.b.k1.il(B.j),B.au.T(0,A.a(A.a(o.ch,"_radiusController").x,"_value"))) -n.toString -s=A.a(o.ay,"_radius") -p=s.b -s=s.a -o.OE(o.z,a,n,o.at,o.Q,q,p.T(0,s.gl(s)),o.ax,b)}} -A.ahU.prototype={ -$0(){var s=this.a.k1 -return new A.w(0,0,0+s.a,0+s.b)}, -$S:134} -A.adw.prototype={ -Mh(a,b,c,d,e,f,g,h,i,j,k,a0){var s,r,q=null,p=i==null?A.aGa(k,d,j,h):i,o=new A.xa(h,B.b0,f,p,A.aG4(k,d,j),!d,a0,c,e,k,g),n=e.u,m=A.bo(q,B.dZ,q,q,n),l=e.gd5() -m.cf() -s=m.bj$ -s.b=!0 -s.a.push(l) -m.bp(0) -o.CW=m -s=t.Y -r=t.m -o.ch=new A.aC(r.a(A.a(m,"_radiusController")),new A.ar(0,p,s),s.j("aC")) -n=A.bo(q,B.D,q,q,n) -n.cf() -s=n.bj$ -s.b=!0 -s.a.push(l) -n.c1(o.ga40()) -o.cy=n -l=c.gl(c) -o.cx=new A.aC(r.a(n),new A.ly(l>>>24&255,0),t.gD.j("aC")) -e.B_(o) -return o}} -A.xa.prototype={ -uU(a){var s=B.e.eG(this.as/1),r=A.a(this.CW,"_radiusController") -r.e=A.bR(0,s,0) -r.bp(0) -this.cy.bp(0)}, -aA(a){var s=this.cy -if(s!=null)s.bp(0)}, -a41(a){if(a===B.H)this.m(0)}, -m(a){var s=this -A.a(s.CW,"_radiusController").m(0) -s.cy.m(0) -s.cy=null -s.oH(0)}, -Dv(a,b){var s,r=this,q=$.aJ()?A.aT():new A.aO(new A.aQ()),p=r.e,o=A.a(r.cx,"_alpha"),n=o.b -o=o.a -q.sad(0,A.ak(n.T(0,o.gl(o)),p.gl(p)>>>16&255,p.gl(p)>>>8&255,p.gl(p)&255)) -s=r.y -if(r.ax)s=A.yj(s,r.b.k1.il(B.j),A.a(A.a(r.CW,"_radiusController").x,"_value")) -s.toString -p=A.a(r.ch,"_radius") -o=p.b -p=p.a -r.OE(r.z,a,s,r.at,r.Q,q,o.T(0,p.gl(p)),r.ay,b)}} -A.lz.prototype={ -uU(a){}, -aA(a){}, -sad(a,b){if(b.k(0,this.e))return -this.e=b -this.a.aF()}, -OE(a,b,c,d,e,f,g,h,i){var s,r=A.akH(i) -b.bF(0) -if(r==null)b.T(0,i.a) -else b.aC(0,r.a,r.b) -if(d!=null){s=d.$0() -if(e!=null)b.fF(0,e.f1(s,h)) -else if(!a.k(0,B.b0))b.lD(0,A.a48(s,a.c,a.d,a.a,a.b)) -else b.je(0,s)}b.dZ(0,c,g,f) -b.bt(0)}} -A.qS.prototype={} -A.CB.prototype={ -cZ(a){return this.f!==a.f}} -A.qQ.prototype={ -Qr(a){return null}, -I(a,b){var s=this,r=b.L(t.sZ),q=r==null?null:r.f -return new A.BS(s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,!1,s.fy,!1,s.id,s.k1,q,s.gQq(),s.gab9(),null)}, -aba(a){return!0}} -A.BS.prototype={ -am(){return new A.BR(A.z(t.R9,t.Pr),new A.aM(A.b([],t.ML),t.yw),null,B.k)}} -A.pf.prototype={ -i(a){return"_HighlightType."+this.b}} -A.BR.prototype={ -gadf(){var s=this.r -s=s.gb2(s) -s=new A.au(s,new A.adt(),A.n(s).j("au")) -return!s.gS(s)}, -D8(a,b){var s,r=this.x,q=r.a,p=q.length -if(b){r.b=!0 -q.push(a)}else r.B(0,a) -s=q.length!==0 -if(s!==(p!==0)){r=this.a.k2 -if(r!=null)r.D8(this,s)}}, -K2(a){var s=this.c -s.toString -this.a7F(s) -this.Ij()}, -a7l(){return this.K2(null)}, -aB(){this.Vh() -$.F.D$.f.d.E(0,this.gIw())}, -b4(a){var s,r=this -r.bu(a) -s=r.a -s.toString -if(r.h7(s)!==r.h7(a)){s=r.a -s.toString -if(r.h7(s))r.PJ(B.lM,!1,r.f) -r.AB()}}, -m(a){$.F.D$.f.d.B(0,this.gIw()) -this.aR(0)}, -gjQ(){if(!this.gadf()){var s=this.d -s=s!=null&&s.a!==0}else s=!0 -return s}, -Er(a){var s,r=this,q=r.c -q.toString -s=A.ae(q) -switch(a.a){case 0:q=r.a.db -q=q==null?null:q.a.$1(B.lh) -if(q==null)q=r.a.cy -return q==null?s.fx:q -case 2:q=r.a.db -q=q==null?null:q.a.$1(B.Lq) -if(q==null)q=r.a.CW -return q==null?s.ch:q -case 1:q=r.a.db -q=q==null?null:q.a.$1(B.Lp) -if(q==null)q=r.a.cx -return q==null?s.CW:q}}, -Q4(a){switch(a.a){case 0:return B.D -case 1:case 2:return B.cZ}}, -PJ(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i="_alphaController",h=j.r,g=h.h(0,a) -if(a===B.eZ){s=j.a.k2 -if(s!=null)s.D8(j,c)}s=g==null -if(c===(!s&&g.CW))return -if(c)if(s){s=j.c.gF() -s.toString -t.r.a(s) -r=j.c.Cn(t.zd) -r.toString -q=j.Er(a) -p=j.a -o=p.at -n=p.ax -m=p.ch -p=p.k3.$1(s) -l=j.c.L(t.I) -l.toString -k=j.Q4(a) -s=new A.lw(o,n,B.b0,m,p,l.f,q,r,s,new A.adu(j,a)) -k=A.bo(null,k,null,null,r.u) -k.cf() -p=k.bj$ -p.b=!0 -p.a.push(r.gd5()) -k.c1(s.ga19()) -k.bp(0) -s.ch=k -k=A.a(k,i) -q=q.gl(q) -s.ay=new A.aC(t.m.a(k),new A.ly(0,q>>>24&255),t.gD.j("aC")) -r.B_(s) -h.n(0,a,s) -j.me()}else{g.CW=!0 -A.a(g.ch,i).bp(0)}else{g.CW=!1 -A.a(g.ch,i).cd(0)}switch(a.a){case 0:h=j.a.y -if(h!=null)h.$1(c) -break -case 1:if(b){h=j.a.z -if(h!=null)h.$1(c)}break -case 2:break}}, -oj(a,b){return this.PJ(a,!0,b)}, -a__(a){var s,r,q,p,o,n,m,l,k,j,i=this,h={},g=i.c.Cn(t.zd) -g.toString -s=i.c.gF() -s.toString -t.r.a(s) -r=s.i1(a) -q=i.a.db -q=q==null?null:q.a.$1(B.lh) -p=q==null?i.a.dx:q -if(p==null){q=i.c -q.toString -p=A.ae(q).fy}q=i.a -o=q.as?q.k3.$1(s):null -q=i.a -n=q.ay -m=q.ch -h.a=null -q=q.dy -if(q==null){q=i.c -q.toString -q=A.ae(q).y}l=i.a -k=l.as -l=l.ax -j=i.c.L(t.I) -j.toString -return h.a=q.Mh(0,n,p,k,g,m,new A.adr(h,i),r,l,o,s,j.f)}, -a42(a){if(this.c==null)return -this.a4(new A.ads(this))}, -ga7g(){var s,r=this,q=r.c -q.toString -q=A.e4(q) -s=q==null?null:q.ax -switch((s==null?B.bB:s).a){case 0:q=r.a -q.toString -return r.h7(q)&&r.y -case 1:return r.y}}, -AB(){var s,r=$.F.D$.f.b -switch((r==null?A.wQ():r).a){case 0:s=!1 -break -case 1:s=this.ga7g() -break -default:s=null}this.oj(B.Te,s)}, -a25(a){var s -this.y=a -this.AB() -s=this.a.fy -if(s!=null)s.$1(a)}, -a3A(a){if(this.x.a.length!==0)return -this.a7G(a) -this.a.toString}, -a3E(a){this.a.toString}, -Kb(a,b){var s,r,q,p,o=this -if(a!=null){s=a.gF() -s.toString -t.r.a(s) -r=s.k1 -r=new A.w(0,0,0+r.a,0+r.b).gaT() -q=A.ha(s.dj(0,null),r)}else q=b.a -p=o.a__(q) -s=o.d;(s==null?o.d=A.cf(t.nQ):s).E(0,p) -o.e=p -o.me() -o.oj(B.eZ,!0)}, -a7G(a){return this.Kb(null,a)}, -a7F(a){return this.Kb(a,null)}, -Ij(){var s=this,r=s.e -if(r!=null)r.uU(0) -s.e=null -s.oj(B.eZ,!1) -r=s.a -if(r.d!=null){if(r.fr){r=s.c -r.toString -A.YP(r)}r=s.a.d -if(r!=null)r.$0()}}, -a3y(){var s=this,r=s.e -if(r!=null)r.aA(0) -s.e=null -s.a.toString -s.oj(B.eZ,!1)}, -a1D(){var s=this.e -if(s!=null)s.uU(0) -this.e=null -s=this.a.w -if(s!=null)s.$0()}, -dc(){var s,r,q,p,o,n,m,l=this,k=l.d -if(k!=null){l.d=null -for(k=new A.pe(k,k.tm()),s=A.n(k).c;k.t();){r=k.d;(r==null?s.a(r):r).m(0)}l.e=null}for(k=l.r,s=A.lE(k,k.r);s.t();){r=s.d -q=k.h(0,r) -if(q!=null){p=A.a(q.ch,"_alphaController") -p.r.m(0) -p.r=null -o=p.d2$ -o.b=!1 -B.c.sp(o.a,0) -n=o.c -if(n===$){m=A.cf(o.$ti.c) -A.ba(o.c,"_set") -o.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}o=p.bj$ -o.b=!1 -B.c.sp(o.a,0) -n=o.c -if(n===$){m=A.cf(o.$ti.c) -A.ba(o.c,"_set") -o.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}p.lc(0) -q.oH(0)}k.n(0,r,null)}k=l.a.k2 -if(k!=null)k.D8(l,!1) -l.Vg()}, -h7(a){var s -if(a.d==null)if(a.w==null)s=!1 -else s=!0 -else s=!0 -return s}, -a2q(a){var s,r=this -r.f=!0 -s=r.a -s.toString -if(r.h7(s))r.oj(B.lM,r.f)}, -a2s(a){this.f=!1 -this.oj(B.lM,!1)}, -gZj(){var s,r=this,q=r.c -q.toString -q=A.e4(q) -s=q==null?null:q.ax -switch((s==null?B.bB:s).a){case 0:q=r.a -q.toString -return r.h7(q)&&r.a.k1 -case 1:return!0}}, -I(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null -g.mD(0,b) -for(s=g.r,r=A.lE(s,s.r);r.t();){q=r.d -p=s.h(0,q) -if(p!=null)p.sad(0,g.Er(q))}s=g.e -if(s!=null){r=g.a.db -r=r==null?f:r.a.$1(B.lh) -if(r==null)r=g.a.dx -s.sad(0,r==null?A.ae(b).fy:r)}s=g.a -r=s.Q -if(r==null)r=B.dI -q=A.aK(t.R) -if(!g.h7(s))q.E(0,B.ag) -if(g.f){s=g.a -s.toString -s=g.h7(s)}else s=!1 -if(s)q.E(0,B.ap) -if(g.y)q.E(0,B.aD) -o=A.di(r,q,t.Pb) -n=g.w -if(n===$){s=g.gK1() -r=t.e -q=t._ -m=A.aB([B.vM,new A.c2(s,new A.aM(A.b([],r),q),t.wY),B.Rn,new A.c2(s,new A.aM(A.b([],r),q),t.nz)],t.n,t.od) -A.ba(g.w,"_actionMap") -g.w=m -n=m}s=g.a.id -r=g.gZj() -q=g.a -p=q.d -p=p==null?f:g.gK1() -q=g.h7(q)?g.ga3z():f -l=g.a -l.toString -l=g.h7(l)?g.ga3D():f -k=g.a -k.toString -k=g.h7(k)?g.ga3w():f -j=g.a -j.toString -j=g.h7(j)?g.ga3x():f -i=g.a -h=i.w!=null?g.ga1C():f -return new A.CB(g,A.va(n,A.wO(!1,r,A.o5(A.bq(f,A.eI(B.ao,i.c,B.V,!0,f,h,f,f,f,f,f,f,f,f,f,f,k,j,q,l,f,f,f),!1,f,f,!1,f,f,f,f,f,f,f,f,f,f,f,f,f,f,p,f,f,f,f,f,f,f,f),o,f,g.ga2p(),g.ga2r(),f),f,f,f,s,!0,f,g.ga24(),f,f,f)),f)}, -$ialv:1} -A.adt.prototype={ -$1(a){return a!=null}, -$S:238} -A.adu.prototype={ -$0(){var s=this.a -s.r.n(0,this.b,null) -s.me()}, -$S:0} -A.adr.prototype={ -$0(){var s,r=this.b,q=r.d -if(q!=null){s=this.a -q.B(0,s.a) -if(r.e==s.a)r.e=null -r.me()}}, -$S:0} -A.ads.prototype={ -$0(){this.a.AB()}, -$S:0} -A.qR.prototype={} -A.Ec.prototype={ -aB(){this.aS() -if(this.gjQ())this.k0()}, -dc(){var s=this.cV$ -if(s!=null){s.ab() -this.cV$=null}this.j5()}} -A.h6.prototype={} -A.js.prototype={ -gqL(){return!1}, -aaC(a){return new A.js(this.b,a)}, -ghk(){return new A.as(0,0,0,this.a.b)}, -bd(a,b){return new A.js(B.m6,this.a.bd(0,b))}, -f1(a,b){var s=A.d4() -s.fB(0,this.b.dM(a)) -return s}, -du(a,b){var s,r -if(a instanceof A.js){s=A.aE(a.a,this.a,b) -r=A.n0(a.b,this.b,b) -r.toString -return new A.js(r,s)}return this.j3(a,b)}, -dv(a,b){var s,r -if(a instanceof A.js){s=A.aE(this.a,a.a,b) -r=A.n0(this.b,a.b,b) -r.toString -return new A.js(r,s)}return this.j4(a,b)}, -OD(a,b,c,d,e,f){var s=this.b -if(!s.c.k(0,B.K)||!s.d.k(0,B.K))a.fF(0,this.f1(b,f)) -s=b.d -a.is(0,new A.m(b.a,s),new A.m(b.c,s),this.a.jL())}, -hY(a,b,c){return this.OD(a,b,0,0,null,c)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.h6&&b.a.k(0,this.a)}, -gv(a){var s=this.a -return A.a3(s.a,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.BT.prototype={ -sb8(a,b){if(b!=this.a){this.a=b -this.ab()}}, -sdd(a){if(a!==this.b){this.b=a -this.ab()}}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.BT&&b.a==s.a&&b.b===s.b}, -gv(a){return A.a3(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"#"+A.bF(this)}} -A.BU.prototype={ -en(a){var s=A.e8(this.a,this.b,a) -s.toString -return t.U1.a(s)}} -A.Ow.prototype={ -aH(a,b){var s,r,q=this,p=q.b,o=q.c.T(0,p.gl(p)),n=new A.w(0,0,0+b.a,0+b.b) -p=q.x -p=q.w.T(0,p.gl(p)) -p.toString -s=A.q6(p,q.r) -if((s.gl(s)>>>24&255)>0){p=o.f1(n,q.f) -r=$.aJ()?A.aT():new A.aO(new A.aQ()) -r.sad(0,s) -r.scj(0,B.aq) -a.cp(0,p,r)}p=q.e -r=p.a -o.OD(a,n,p.b,A.a(q.d.x,"_value"),r,q.f)}, -ew(a){var s=this -return s.b!==a.b||s.x!==a.x||s.d!==a.d||s.c!==a.c||!s.e.k(0,a.e)||s.f!==a.f}, -i(a){return"#"+A.bF(this)}} -A.B6.prototype={ -am(){return new A.MN(null,null,B.k)}} -A.MN.prototype={ -aB(){var s,r=this,q=null -r.aS() -r.e=A.bo(q,B.AX,q,r.a.w?1:0,r) -s=A.bo(q,B.D,q,q,r) -r.d=s -r.f=A.cn(B.P,A.a(s,"_controller"),q) -s=r.a.c -r.r=new A.BU(s,s) -r.w=A.cn(B.a9,A.a(r.e,"_hoverColorController"),q) -r.x=new A.de(B.a5,r.a.r)}, -m(a){A.a(this.d,"_controller").m(0) -A.a(this.e,"_hoverColorController").m(0) -this.V7(0)}, -b4(a){var s,r,q=this,p="_hoverColorController" -q.bu(a) -s=a.c -if(!q.a.c.k(0,s)){q.r=new A.BU(s,q.a.c) -s=A.a(q.d,"_controller") -s.sl(0,0) -s.bp(0)}if(!q.a.r.k(0,a.r))q.x=new A.de(B.a5,q.a.r) -s=q.a.w -if(s!==a.w){r=q.e -if(s)A.a(r,p).bp(0) -else A.a(r,p).cd(0)}}, -I(a,b){var s,r=this,q="_borderAnimation",p=A.b([A.a(r.f,q),r.a.d,A.a(r.e,"_hoverColorController")],t.Eo),o=A.a(r.f,q),n=A.a(r.r,"_border"),m=r.a,l=m.e -m=m.d -s=b.L(t.I) -s.toString -return A.iK(null,new A.Ow(o,n,l,m,s.f,r.a.f,A.a(r.x,"_hoverColorTween"),A.a(r.w,"_hoverAnimation"),new A.pi(p)),null,null,B.o)}} -A.QU.prototype={ -gagM(){var s=t.m.a(this.c),r=s.gl(s) -if(r<=0.25)return-r*4 -else if(r<0.75)return(r-0.5)*4 -else return(1-r)*4*4}, -I(a,b){return A.LZ(null,this.e,A.o4(this.gagM(),0,0),!0)}} -A.BL.prototype={ -am(){return new A.BM(null,null,B.k)}} -A.BM.prototype={ -aB(){var s,r=this,q="_controller" -r.aS() -r.d=A.bo(null,B.D,null,null,r) -if(r.a.r!=null){r.f=r.oX() -A.a(r.d,q).sl(0,1)}s=A.a(r.d,q) -s.cf() -s=s.bj$ -s.b=!0 -s.a.push(r.gzq())}, -m(a){A.a(this.d,"_controller").m(0) -this.Vf(0)}, -zr(){this.a4(new A.ad8())}, -b4(a){var s,r=this,q="_controller" -r.bu(a) -s=r.a.r!=null -if(s!==(a.r!=null)||!1)if(s){r.f=r.oX() -A.a(r.d,q).bp(0)}else{s=A.a(r.d,q) -s.cd(0)}}, -oX(){var s,r,q,p,o=null,n="_controller",m=A.a(this.d,n),l=A.a(this.d,n) -l=new A.ar(B.K7,B.j,t.Ni).T(0,l.gl(l)) -s=this.a -r=s.r -r.toString -q=s.w -p=s.c -return A.bq(o,A.iQ(!1,A.api(A.bu(r,s.x,B.aL,o,o,q,p,o),!0,l),m),!0,o,o,!1,o,o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)}, -I(a,b){var s,r=this,q="_controller",p=A.a(r.d,q) -if(p.gaZ(p)===B.w){r.f=null -r.a.toString -r.e=null -return B.c8}p=A.a(r.d,q) -if(p.gaZ(p)===B.H){r.e=null -if(r.a.r!=null)return r.f=r.oX() -else{r.f=null -return B.c8}}if(r.e==null&&r.a.r!=null)return r.oX() -if(r.f==null)r.a.toString -if(r.a.r!=null){p=t.Y -s=A.a(r.d,q) -return A.oL(B.b7,A.b([A.iQ(!1,r.e,new A.aC(s,new A.ar(1,0,p),p.j("aC"))),r.oX()],t.p),B.bl,null,null)}return B.c8}} -A.ad8.prototype={ -$0(){}, -$S:0} -A.qC.prototype={ -i(a){return"FloatingLabelBehavior."+this.b}} -A.Hg.prototype={ -gv(a){return B.f.gv(-1)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.Hg&&!0}, -i(a){return A.aB5(-1)}} -A.dF.prototype={ -i(a){return"_DecorationSlot."+this.b}} -A.Nw.prototype={ -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.Nw)if(b.a.k(0,r.a))if(b.c===r.c)if(b.d===r.d)if(b.e.k(0,r.e))if(b.f.k(0,r.f))if(b.r.k(0,r.r))s=b.x==r.x&&b.y.k(0,r.y)&&J.f(b.z,r.z)&&J.f(b.Q,r.Q)&&J.f(b.as,r.as)&&J.f(b.at,r.at)&&J.f(b.ax,r.ax)&&J.f(b.ay,r.ay)&&J.f(b.ch,r.ch)&&J.f(b.CW,r.CW)&&b.cx.oI(0,r.cx)&&J.f(b.cy,r.cy)&&b.db.oI(0,r.db) -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this -return A.a3(s.a,s.c,s.d,s.e,s.f,s.r,!1,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db)}} -A.aft.prototype={} -A.CJ.prototype={ -ghj(a){var s,r=A.b([],t.Ik),q=this.hT$ -if(q.h(0,B.O)!=null){s=q.h(0,B.O) -s.toString -r.push(s)}if(q.h(0,B.Y)!=null){s=q.h(0,B.Y) -s.toString -r.push(s)}if(q.h(0,B.a0)!=null){s=q.h(0,B.a0) -s.toString -r.push(s)}if(q.h(0,B.a1)!=null){s=q.h(0,B.a1) -s.toString -r.push(s)}if(q.h(0,B.Z)!=null){s=q.h(0,B.Z) -s.toString -r.push(s)}if(q.h(0,B.a_)!=null){s=q.h(0,B.a_) -s.toString -r.push(s)}if(q.h(0,B.G)!=null){s=q.h(0,B.G) -s.toString -r.push(s)}if(q.h(0,B.a6)!=null){s=q.h(0,B.a6) -s.toString -r.push(s)}if(q.h(0,B.ab)!=null){s=q.h(0,B.ab) -s.toString -r.push(s)}if(q.h(0,B.W)!=null){s=q.h(0,B.W) -s.toString -r.push(s)}if(q.h(0,B.aE)!=null){q=q.h(0,B.aE) -q.toString -r.push(q)}return r}, -sah(a,b){if(this.C.k(0,b))return -this.C=b -this.a0()}, -sbx(a,b){if(this.M===b)return -this.M=b -this.a0()}, -sPy(a,b){if(this.af===b)return -this.af=b -this.a0()}, -sags(a){return}, -sCX(a){if(this.q===a)return -this.q=a -this.ai()}, -sCc(a){return}, -gzv(){this.C.f.gqL() -return!1}, -fq(a){var s,r=this.hT$ -if(r.h(0,B.O)!=null){s=r.h(0,B.O) -s.toString -a.$1(s)}if(r.h(0,B.Z)!=null){s=r.h(0,B.Z) -s.toString -a.$1(s)}if(r.h(0,B.a0)!=null){s=r.h(0,B.a0) -s.toString -a.$1(s)}if(r.h(0,B.G)!=null){s=r.h(0,B.G) -s.toString -a.$1(s)}if(r.h(0,B.a6)!=null)if(this.q){s=r.h(0,B.a6) -s.toString -a.$1(s)}else if(r.h(0,B.G)==null){s=r.h(0,B.a6) -s.toString -a.$1(s)}if(r.h(0,B.Y)!=null){s=r.h(0,B.Y) -s.toString -a.$1(s)}if(r.h(0,B.a1)!=null){s=r.h(0,B.a1) -s.toString -a.$1(s)}if(r.h(0,B.a_)!=null){s=r.h(0,B.a_) -s.toString -a.$1(s)}if(r.h(0,B.aE)!=null){s=r.h(0,B.aE) -s.toString -a.$1(s)}if(r.h(0,B.ab)!=null){s=r.h(0,B.ab) -s.toString -a.$1(s)}if(r.h(0,B.W)!=null){r=r.h(0,B.W) -r.toString -a.$1(r)}}, -ghz(){return!1}, -i8(a,b){var s -if(a==null)return 0 -a.cH(0,b,!0) -s=a.wL(B.y) -s.toString -return s}, -a48(a,b,c,d){var s=d.a -if(s<=0){if(a>=b)return b -return a+(b-a)*(s+1)}if(b>=c)return b -return b+(c-b)*s}, -b1(a){var s,r,q,p,o,n=this.hT$,m=n.h(0,B.O) -m=m==null?0:m.av(B.U,a,m.gb9()) -s=this.C -r=n.h(0,B.a0) -r=r==null?0:r.av(B.U,a,r.gb9()) -q=n.h(0,B.Z) -q=q==null?0:q.av(B.U,a,q.gb9()) -p=n.h(0,B.Y) -p=p==null?0:p.av(B.U,a,p.gb9()) -o=n.h(0,B.a6) -o=o==null?0:o.av(B.U,a,o.gb9()) -o=Math.max(p,o) -p=n.h(0,B.a_) -p=p==null?0:p.av(B.U,a,p.gb9()) -n=n.h(0,B.a1) -n=n==null?0:n.av(B.U,a,n.gb9()) -return m+s.a.a+r+q+o+p+n+this.C.a.c}, -aU(a){var s,r,q,p,o,n=this.hT$,m=n.h(0,B.O) -m=m==null?0:m.av(B.a8,a,m.gbf()) -s=this.C -r=n.h(0,B.a0) -r=r==null?0:r.av(B.a8,a,r.gbf()) -q=n.h(0,B.Z) -q=q==null?0:q.av(B.a8,a,q.gbf()) -p=n.h(0,B.Y) -p=p==null?0:p.av(B.a8,a,p.gbf()) -o=n.h(0,B.a6) -o=o==null?0:o.av(B.a8,a,o.gbf()) -o=Math.max(p,o) -p=n.h(0,B.a_) -p=p==null?0:p.av(B.a8,a,p.gbf()) -n=n.h(0,B.a1) -n=n==null?0:n.av(B.a8,a,n.gbf()) -return m+s.a.a+r+q+o+p+n+this.C.a.c}, -a4n(a,b,c){var s,r,q,p -for(s=0,r=0;r<2;++r){q=c[r] -if(q==null)continue -p=q.av(B.ah,b,q.gbn()) -s=Math.max(p,s)}return s}, -aX(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.hT$,a0=a.h(0,B.O),a1=a0==null?0:a0.av(B.ah,a2,a0.gbn()) -a0=a.h(0,B.O) -a2=Math.max(a2-(a0==null?0:a0.av(B.U,a1,a0.gb9())),0) -a0=a.h(0,B.a0) -s=a0==null?0:a0.av(B.ah,a2,a0.gbn()) -a0=a.h(0,B.a0) -r=a0==null?0:a0.av(B.U,s,a0.gb9()) -a0=a.h(0,B.a1) -q=a0==null?0:a0.av(B.ah,a2,a0.gbn()) -a0=a.h(0,B.a1) -p=a0==null?0:a0.av(B.U,q,a0.gb9()) -a2=Math.max(a2-b.C.a.giy(),0) -a0=a.h(0,B.W) -o=a0==null?0:a0.av(B.ah,a2,a0.gbn()) -a0=a.h(0,B.W) -n=Math.max(a2-(a0==null?0:a0.av(B.U,o,a0.gb9())),0) -a0=a.h(0,B.ab) -m=a0==null?0:a0.av(B.ah,n,a0.gbn()) -l=Math.max(o,m) -if(l>0)l+=8 -a0=a.h(0,B.Z) -k=a0==null?0:a0.av(B.ah,a2,a0.gbn()) -a0=a.h(0,B.Z) -j=a0==null?0:a0.av(B.U,k,a0.gb9()) -a0=a.h(0,B.a_) -i=a0==null?0:a0.av(B.ah,a2,a0.gbn()) -a0=a.h(0,B.a_) -h=a0==null?0:a0.av(B.U,i,a0.gb9()) -a0=t.V -g=B.c.o8(A.b([b.a4n(0,Math.max(a2-j-h-r-p,0),A.b([a.h(0,B.Y),a.h(0,B.a6)],t.Rs)),k,i],a0),B.dL) -f=b.C.y -e=new A.m(f.a,f.b).W(0,4) -f=b.C -a=a.h(0,B.G)==null?0:b.C.c -d=B.c.o8(A.b([a1,f.a.b+a+g+b.C.a.d+e.b,s,q],a0),B.dL) -a=b.C.x -a.toString -c=a||!1?0:48 -return Math.max(d,c)+l}, -b0(a){return this.aX(a)}, -dW(a){var s=this.hT$,r=s.h(0,B.Y).e -r.toString -r=t.x.a(r).a -s=s.h(0,B.Y).dW(a) -s.toString -return r.b+s}, -c4(a){return B.o}, -bK(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2=this,e3=null,e4={},e5=t.k,e6=e5.a(A.u.prototype.ga_.call(e2)) -e2.b6=null -s=A.z(t.Qv,t.i) -r=e6.b -q=e6.d -p=new A.aF(0,r,0,q) -o=e2.hT$ -s.n(0,o.h(0,B.O),e2.i8(o.h(0,B.O),p)) -n=o.h(0,B.O) -if(n==null)n=B.o -else{n=n.k1 -n.toString}m=p.pX(r-n.a) -s.n(0,o.h(0,B.a0),e2.i8(o.h(0,B.a0),m)) -s.n(0,o.h(0,B.a1),e2.i8(o.h(0,B.a1),m)) -l=m.pX(m.b-e2.C.a.giy()) -s.n(0,o.h(0,B.Z),e2.i8(o.h(0,B.Z),l)) -s.n(0,o.h(0,B.a_),e2.i8(o.h(0,B.a_),l)) -n=e5.a(A.u.prototype.ga_.call(e2)) -k=o.h(0,B.O) -if(k==null)k=B.o -else{k=k.k1 -k.toString}j=e2.C -i=o.h(0,B.a0) -if(i==null)i=B.o -else{i=i.k1 -i.toString}h=o.h(0,B.Z) -if(h==null)h=B.o -else{h=h.k1 -h.toString}g=o.h(0,B.a_) -if(g==null)g=B.o -else{g=g.k1 -g.toString}f=o.h(0,B.a1) -if(f==null)f=B.o -else{f=f.k1 -f.toString}e=e2.C -d=Math.max(0,n.b-(k.a+j.a.a+i.a+h.a+g.a+f.a+e.a.c)) -e=A.Z(1,1.3333333333333333,e.d) -e.toString -f=o.h(0,B.a1) -if(f==null)n=B.o -else{n=f.k1 -n.toString}e2.C.f.gqL() -e5=e5.a(A.u.prototype.ga_.call(e2)) -k=o.h(0,B.O) -if(k==null)k=B.o -else{k=k.k1 -k.toString}j=e2.C -i=o.h(0,B.a0) -if(i==null)i=B.o -else{i=i.k1 -i.toString}c=Math.max(0,e5.b-(k.a+j.a.a+i.a+n.a+e2.C.a.c)) -s.n(0,o.h(0,B.G),e2.i8(o.h(0,B.G),p.pX(c*e))) -s.n(0,o.h(0,B.a6),e2.i8(o.h(0,B.a6),p.Bz(d,d))) -s.n(0,o.h(0,B.W),e2.i8(o.h(0,B.W),l)) -e=o.h(0,B.ab) -n=o.h(0,B.ab) -i=o.h(0,B.W) -if(i==null)e5=B.o -else{e5=i.k1 -e5.toString}s.n(0,e,e2.i8(n,l.pX(Math.max(0,l.b-e5.a)))) -b=o.h(0,B.G)==null?0:e2.C.c -e2.C.f.gqL() -if(o.h(0,B.W)==null)a=0 -else{e5=s.h(0,o.h(0,B.W)) -e5.toString -a=e5+8}e5=o.h(0,B.ab) -if(e5==null)e5=e3 -else{e5=e5.k1 -e5.toString}a0=e5!=null&&o.h(0,B.ab).k1.b>0 -a1=!a0?0:o.h(0,B.ab).k1.b+8 -a2=Math.max(a,a1) -e5=e2.C.y -a3=new A.m(e5.a,e5.b).W(0,4) -e5=o.h(0,B.Y) -n=o.h(0,B.Y) -k=e2.C.a -j=a3.b -i=j/2 -s.n(0,e5,e2.i8(n,p.BL(new A.as(0,k.b+b+i,0,k.d+a2+i)).Bz(d,d))) -a4=o.h(0,B.a6)==null?0:o.h(0,B.a6).k1.b -a5=o.h(0,B.Y)==null?0:o.h(0,B.Y).k1.b -a6=Math.max(a4,a5) -e5=s.h(0,o.h(0,B.Y)) -e5.toString -n=s.h(0,o.h(0,B.a6)) -n.toString -a7=Math.max(A.da(e5),A.da(n)) -n=o.h(0,B.Z) -a8=n==null?e3:n.k1.b -if(a8==null)a8=0 -e5=o.h(0,B.a_) -a9=e5==null?e3:e5.k1.b -if(a9==null)a9=0 -e5=s.h(0,o.h(0,B.Z)) -e5.toString -n=s.h(0,o.h(0,B.a_)) -n.toString -b0=Math.max(0,Math.max(A.da(e5),A.da(n))-a7) -n=s.h(0,o.h(0,B.Z)) -n.toString -e5=s.h(0,o.h(0,B.a_)) -e5.toString -b1=Math.max(0,Math.max(a8-n,a9-e5)-(a6-a7)) -b2=o.h(0,B.a0)==null?0:o.h(0,B.a0).k1.b -b3=o.h(0,B.a1)==null?0:o.h(0,B.a1).k1.b -b4=Math.max(b2,b3) -e5=e2.C -n=e5.a -b5=Math.max(b4,b+n.b+b0+a6+b1+n.d+j) -e5=e5.x -e5.toString -if(!e5)e5=!1 -else e5=!0 -b6=e5?0:48 -b7=q-a2 -b8=Math.min(Math.max(b5,b6),b7) -b9=b6>b5?(b6-b5)/2:0 -c0=Math.max(0,b5-b7) -e5=e2.gzv()?B.vs:B.vt -c1=(e5.a+1)/2 -c2=b0-c0*(1-c1) -e5=e2.C.a -q=e5.b -c3=q+b+a7+c2+b9 -c4=b8-q-b-e5.d-(b0+a6+b1) -c5=c3+c4*c1+i -e5=e2.gzv()?B.vs:B.vt -c6=e2.a48(c3,a7+c2/2+(b8-(2+a6))/2,c3+c4,e5) -if(o.h(0,B.W)!=null){e5=s.h(0,o.h(0,B.W)) -e5.toString -c7=b8+8+e5 -c8=o.h(0,B.W).k1.b+8}else{c7=0 -c8=0}if(a0){e5=s.h(0,o.h(0,B.ab)) -e5.toString -c9=b8+8+e5 -d0=a1}else{c9=0 -d0=0}d1=Math.max(c7,c9) -d2=Math.max(c8,d0) -if(o.h(0,B.aE)!=null){e5=o.h(0,B.O) -if(e5==null)e5=B.o -else{e5=e5.k1 -e5.toString}m=A.n1(b8,r-e5.a) -o.h(0,B.aE).cH(0,m,!0) -switch(e2.M.a){case 0:d3=0 -break -case 1:e5=o.h(0,B.O) -if(e5==null)e5=B.o -else{e5=e5.k1 -e5.toString}d3=e5.a -break -default:d3=e3}e5=o.h(0,B.aE).e -e5.toString -t.x.a(e5).a=new A.m(d3,0)}e4.a=null -d4=new A.afx(e4) -e4.b=null -d5=new A.afw(e4,new A.aft(s,c5,c6,d1,b8,d2)) -e5=e2.C.a -d6=e5.a -d7=r-e5.c -e4.a=b8 -e4.b=e2.gzv()?c6:c5 -if(o.h(0,B.O)!=null){switch(e2.M.a){case 0:d3=r-o.h(0,B.O).k1.a -break -case 1:d3=0 -break -default:d3=e3}e5=o.h(0,B.O) -e5.toString -d4.$2(e5,d3)}switch(e2.M.a){case 0:e5=o.h(0,B.O) -if(e5==null)e5=B.o -else{e5=e5.k1 -e5.toString}d8=d7-e5.a -if(o.h(0,B.a0)!=null){d8+=e2.C.a.a -e5=o.h(0,B.a0) -e5.toString -d8-=d4.$2(e5,d8-o.h(0,B.a0).k1.a)}if(o.h(0,B.G)!=null){e5=o.h(0,B.G) -e5.toString -d4.$2(e5,d8-o.h(0,B.G).k1.a)}if(o.h(0,B.Z)!=null){e5=o.h(0,B.Z) -e5.toString -d8-=d5.$2(e5,d8-o.h(0,B.Z).k1.a)}if(o.h(0,B.Y)!=null){e5=o.h(0,B.Y) -e5.toString -d5.$2(e5,d8-o.h(0,B.Y).k1.a)}if(o.h(0,B.a6)!=null){e5=o.h(0,B.a6) -e5.toString -d5.$2(e5,d8-o.h(0,B.a6).k1.a)}if(o.h(0,B.a1)!=null){d9=d6-e2.C.a.a -e5=o.h(0,B.a1) -e5.toString -d9+=d4.$2(e5,d9)}else d9=d6 -if(o.h(0,B.a_)!=null){e5=o.h(0,B.a_) -e5.toString -d5.$2(e5,d9)}break -case 1:e5=o.h(0,B.O) -if(e5==null)e5=B.o -else{e5=e5.k1 -e5.toString}d8=d6+e5.a -if(o.h(0,B.a0)!=null){d8-=e2.C.a.a -e5=o.h(0,B.a0) -e5.toString -d8+=d4.$2(e5,d8)}if(o.h(0,B.G)!=null){e5=o.h(0,B.G) -e5.toString -d4.$2(e5,d8)}if(o.h(0,B.Z)!=null){e5=o.h(0,B.Z) -e5.toString -d8+=d5.$2(e5,d8)}if(o.h(0,B.Y)!=null){e5=o.h(0,B.Y) -e5.toString -d5.$2(e5,d8)}if(o.h(0,B.a6)!=null){e5=o.h(0,B.a6) -e5.toString -d5.$2(e5,d8)}if(o.h(0,B.a1)!=null){d9=d7+e2.C.a.c -e5=o.h(0,B.a1) -e5.toString -d9-=d4.$2(e5,d9-o.h(0,B.a1).k1.a)}else d9=d7 -if(o.h(0,B.a_)!=null){e5=o.h(0,B.a_) -e5.toString -d5.$2(e5,d9-o.h(0,B.a_).k1.a)}break}if(o.h(0,B.ab)!=null||o.h(0,B.W)!=null){e4.a=d2 -e4.b=d1 -switch(e2.M.a){case 0:if(o.h(0,B.ab)!=null){e5=o.h(0,B.ab) -e5.toString -q=o.h(0,B.ab).k1.a -n=o.h(0,B.O) -if(n==null)n=B.o -else{n=n.k1 -n.toString}d5.$2(e5,d7-q-n.a)}if(o.h(0,B.W)!=null){e5=o.h(0,B.W) -e5.toString -d5.$2(e5,d6)}break -case 1:if(o.h(0,B.ab)!=null){e5=o.h(0,B.ab) -e5.toString -q=o.h(0,B.O) -if(q==null)q=B.o -else{q=q.k1 -q.toString}d5.$2(e5,d6+q.a)}if(o.h(0,B.W)!=null){e5=o.h(0,B.W) -e5.toString -d5.$2(e5,d7-o.h(0,B.W).k1.a)}break}}if(o.h(0,B.G)!=null){e5=o.h(0,B.G).e -e5.toString -e0=t.x.a(e5).a.a -e5=o.h(0,B.G) -if(e5==null)e5=B.o -else{e5=e5.k1 -e5.toString}e1=e5.a*0.75 -switch(e2.M.a){case 0:e5=e2.C -q=o.h(0,B.G) -if(q==null)q=B.o -else{q=q.k1 -q.toString}n=o.h(0,B.aE) -if(n==null)n=B.o -else{n=n.k1 -n.toString}e5.r.sb8(0,A.Z(e0+q.a,n.a/2+e1/2,0)) -break -case 1:e5=e2.C -q=o.h(0,B.O) -if(q==null)q=B.o -else{q=q.k1 -q.toString}n=o.h(0,B.aE) -if(n==null)n=B.o -else{n=n.k1 -n.toString}e5.r.sb8(0,A.Z(e0-q.a,n.a/2-e1/2,0)) -break}e2.C.r.sdd(o.h(0,B.G).k1.a*0.75)}else{e2.C.r.sb8(0,e3) -e2.C.r.sdd(0)}e2.k1=e6.bo(new A.L(r,b8+d2))}, -a5j(a,b){var s=this.hT$.h(0,B.G) -s.toString -a.df(s,b)}, -aH(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=new A.afv(a,b),h=j.hT$ -i.$1(h.h(0,B.aE)) -if(h.h(0,B.G)!=null){s=h.h(0,B.G).e -s.toString -r=t.x -q=r.a(s).a -s=h.h(0,B.G) -if(s!=null)s.k1.toString -s=h.h(0,B.G) -if(s==null)s=B.o -else{s=s.k1 -s.toString}p=s.a -s=j.C -o=s.d -s.f.gqL() -s=j.C -n=A.Z(1,0.75,o) -n.toString -m=h.h(0,B.aE).e -m.toString -m=r.a(m).a -r=h.h(0,B.aE) -if(r==null)r=B.o -else{r=r.k1 -r.toString}switch(j.M.a){case 0:l=q.a+p*(1-n) -break -case 1:l=q.a -break -default:l=null}r=A.Z(l,m.a+r.a/2-p*0.75/2,0) -r.toString -r=A.Z(l,r,o) -r.toString -m=q.b -s=A.Z(0,s.a.b-m,o) -s.toString -k=new A.bb(new Float64Array(16)) -k.dC() -k.aC(0,r,m+s) -k.bd(0,n) -j.b6=k -k=A.a(j.CW,"_needsCompositing") -n=j.b6 -n.toString -s=j.ay -s.saL(0,a.DE(k,b,n,j.ga5i(),t.zV.a(s.a)))}else j.ay.saL(0,null) -i.$1(h.h(0,B.O)) -i.$1(h.h(0,B.Z)) -i.$1(h.h(0,B.a_)) -i.$1(h.h(0,B.a0)) -i.$1(h.h(0,B.a1)) -i.$1(h.h(0,B.a6)) -i.$1(h.h(0,B.Y)) -i.$1(h.h(0,B.ab)) -i.$1(h.h(0,B.W))}, -hV(a){return!0}, -cL(a,b){var s,r,q,p,o,n,m -for(s=this.ghj(this),r=s.length,q=t.x,p=0;p>>16&255,s>>>8&255,s&255) -if(q.a.w){q.gah(q).toString -s=!0}else s=!1 -if(s){q.gah(q).toString -s=a.CW.a -return A.q6(A.ak(31,s>>>16&255,s>>>8&255,s&255),r)}return r}, -a0N(a){var s=this -if(s.gah(s).p4!==!0)return B.a5 -s.gah(s).toString -switch(a.as.a.a){case 0:s.gah(s).toString -return B.mH -case 1:s.gah(s).toString -return B.zt}}, -a0S(a){var s=this -if(s.gah(s).p4!=null)s.gah(s).p4.toString -return B.a5}, -ga3O(){var s=this,r=s.a -if(r.y)r=r.r&&!0 -else r=!0 -if(!r){if(s.gah(s).d==null){s.gah(s).toString -r=!1}else r=!0 -r=r&&s.gah(s).ch!==B.fO}else r=!1 -return r}, -a0O(a){var s=this,r=t.p8,q=A.di(s.gah(s).f,s.gjC(),r) -if(q==null)q=A.di(null,s.gjC(),r) -r=a.R8.w -r.toString -return r.bg(s.a.d).M8(1).bg(new A.adx(s,a).$0()).bg(q)}, -HR(a){var s=this -s.gah(s).toString -return a.R8.Q.fI(a.p1).bg(A.di(s.gah(s).w,s.gjC(),t.p8))}, -gjC(){var s,r=this,q=A.aK(t.R) -r.gah(r).toString -if(r.a.r)q.E(0,B.aD) -if(r.a.w){r.gah(r).toString -s=!0}else s=!1 -if(s)q.E(0,B.ap) -if(r.gah(r).at!=null)q.E(0,B.tI) -return q}, -a0G(a){var s,r,q=this,p=A.di(q.gah(q).y1,q.gjC(),t.Ef) -if(p==null)p=B.Sj -q.gah(q).toString -if(p.a.k(0,B.t))return p -q.gah(q).toString -s=q.gah(q).at==null?q.a0H(a):a.p2 -q.gah(q).toString -q.gah(q) -q.gah(q).toString -r=q.a.r?2:1 -return p.aaC(new A.ds(s,r,B.br))}, -I(b6,b7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2=this,b3=null,b4="_floatingLabelController",b5=A.ae(b7) -b2.gah(b2).toString -s=b5.p1 -r=A.ck(b3,b3,s,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,!0,b3,b3,b3,b3,b3,b3,b3,b3) -q=t.p8 -p=A.di(b2.gah(b2).e,b2.gjC(),q) -if(p==null)p=A.di(b3,b2.gjC(),q) -o=b5.R8 -n=o.w -n.toString -m=n.bg(b2.a.d).bg(r).bg(p).M8(1) -l=m.Q -l.toString -b2.gah(b2).toString -r=A.ck(b3,b3,s,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,!0,b3,b3,b3,b3,b3,b3,b3,b3) -p=A.di(b2.gah(b2).z,b2.gjC(),q) -if(p==null)p=A.di(b3,b2.gjC(),q) -n.bg(b2.a.d).bg(r).bg(p) -b2.gah(b2).toString -k=b2.gah(b2).at!=null -b2.gah(b2).toString -if(b2.a.r)if(k)b2.gah(b2).toString -else b2.gah(b2).toString -else if(k)b2.gah(b2).toString -else b2.gah(b2).toString -j=b2.a0G(b5) -s=b2.f -n=A.a(b2.d,b4) -i=b2.a0N(b5) -h=b2.a0S(b5) -if(b2.a.w){b2.gah(b2).toString -g=!0}else g=!1 -if(b2.gah(b2).d==null){b2.gah(b2).toString -f=!0}else f=!1 -if(f)e=b3 -else{f=A.a(b2.e,"_shakingLabelController") -d=b2.ga3O()||b2.gah(b2).ch!==B.fN?1:0 -c=b2.a -if(c.y)c=c.r&&!0 -else c=!0 -c=c?b2.a0O(b5):m -b2.gah(b2).toString -b=b2.gah(b2).d -b.toString -b=A.bu(b,b3,B.aL,b3,b3,b3,b2.a.e,b3) -e=new A.QU(A.azD(!1,A.aoi(b,B.P,B.D,c),B.P,B.D,d),f,b3)}b2.gah(b2).toString -b2.gah(b2).toString -b2.gah(b2).toString -b2.gah(b2).toString -f=b2.gah(b2).cx -a=f===!0 -b2.gah(b2).toString -b2.gah(b2).toString -b2.gah(b2).toString -f=b2.a.e -d=b2.gah(b2).r -c=b2.HR(b5) -b=b2.gah(b2).x -a0=b2.gah(b2).at -b2.gah(b2).toString -o=o.Q.fI(b5.p2).bg(b2.gah(b2).ax) -a1=b2.gah(b2).ay -if(b2.gah(b2).p2!=null)a2=b2.gah(b2).p2 -else if(b2.gah(b2).p1!=null&&b2.gah(b2).p1!==""){a3=b2.a.r -a4=b2.gah(b2).p1 -a4.toString -q=b2.HR(b5).bg(A.di(b2.gah(b2).p3,b2.gjC(),q)) -a2=A.bq(b3,A.bu(a4,b3,B.aL,b2.gah(b2).ao,b3,q,b3,b3),!0,b3,b3,!1,b3,b3,b3,b3,b3,a3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3)}else a2=b3 -q=b7.L(t.I) -q.toString -b2.gah(b2).toString -b2.gah(b2).toString -j.gqL() -a3=m.r -a3.toString -a5=(4+0.75*a3)*A.akK(b7) -a3=b2.gah(b2).p4 -if(a3===!0)a6=a?B.B9:B.mZ -else a6=a?B.B8:B.B6 -b2.gah(b2).toString -a3=b2.gah(b2).CW -a3.toString -a4=A.a(A.a(b2.d,b4).x,"_value") -a7=b2.gah(b2).a6 -a8=b2.gah(b2).cx -a9=b2.a -b0=a9.z -b1=a9.f -a9=a9.r -b2.gah(b2).toString -return new A.Ny(new A.Nw(a6,!1,a5,a4,a3,j,s,a7===!0,a8,b5.z,b3,b0,e,b3,b3,b3,b3,b3,new A.BL(f,d,c,b,a0,o,a1,b3),a2,new A.B6(j,s,n,i,h,g,b3)),q.f,l,b1,a9,!1,b3)}} -A.ady.prototype={ -$0(){}, -$S:0} -A.adx.prototype={ -$0(){var s,r,q=null,p=this.a -if(p.gah(p).at!=null){p.gah(p).toString -s=this.b.p2}else s=p.a0B(this.b) -p.gah(p).toString -r=A.ck(q,q,s,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q) -p.gah(p).toString -p=p.gah(p).e -return r.bg(p)}, -$S:242} -A.lx.prototype={ -Me(a,b,c,d,e,f,g,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5){var s=this,r=b7==null?s.as:b7,q=a6==null?s.at:a6,p=b0==null?s.ch:b0,o=a9==null?s.CW:a9,n=c1==null?s.cx:c1,m=e==null?s.p2:e,l=g==null?s.p1:g,k=f==null?s.p3:f,j=a8==null?s.p4:a8,i=c4==null?s.ao:c4,h=a==null?s.a6:a -return new A.lx(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,r,q,s.ax,s.ay,p,o,n,s.cy,c0===!0,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,l,m,k,j,s.R8,s.RG,s.rx,s.ry,s.to,s.x1,s.x2,s.xr,s.y1,a1!==!1,i,h,s.aq)}, -aaU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){return this.Me(a,b,c,d,null,e,null,f,null,g,h,i,j,null,k,l,m,n,o,p,q,r,s,a0,null,a1,a2,a3,a4,a5,a6,null,a7)}, -aaO(a,b){return this.Me(null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,b,null,null,null,null,null,null,null,null)}, -LC(a){var s,r,q=this,p=null,o=q.ch -if(o==null)o=B.n8 -s=q.CW -if(s==null)s=B.dM -r=q.p3 -if(r==null)r=p -return q.aaU(q.a6===!0,p,p,p,r,p,p,p,p,p,p,q.p4===!0,s,o,p,p,p,p,p,p,p,p,!1,q.cx===!0,p,p,p)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.lx)if(b.d==r.d)if(b.as==r.as)if(b.at==r.at)if(b.ch==r.ch)if(J.f(b.CW,r.CW))if(b.cx==r.cx)if(J.f(b.p2,r.p2))if(b.p1==r.p1)if(J.f(b.p3,r.p3))if(b.p4==r.p4)s=b.ao==r.ao&&b.a6==r.a6&&!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this -return A.f9([s.a,s.b,s.c,s.d,s.f,s.e,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,!1,s.p4,s.R8,s.RG,s.rx,s.dx,s.go,s.fr,s.fx,s.fy,s.dy,s.id,s.k4,s.k1,s.k2,s.k3,s.ok,s.p2,s.p1,s.p3,s.ry,s.to,s.x1,s.x2,s.xr,s.y1,!0,s.ao,s.a6,s.aq])}, -i(a){var s=this,r=A.b([],t.s),q=s.d -if(q!=null)r.push('labelText: "'+q+'"') -q=s.as -if(q!=null)r.push('hintMaxLines: "'+A.e(q)+'"') -q=s.at -if(q!=null)r.push('errorText: "'+q+'"') -q=s.ch -if(q!=null)r.push("floatingLabelBehavior: "+q.i(0)) -q=s.CW -if(q!=null)r.push("floatingLabelAlignment: "+q.i(0)) -q=s.cx -if(q===!0)r.push("isDense: "+A.e(q)) -q=s.p2 -if(q!=null)r.push("counter: "+q.i(0)) -q=s.p1 -if(q!=null)r.push("counterText: "+q) -q=s.p3 -if(q!=null)r.push("counterStyle: "+q.i(0)) -if(s.p4===!0)r.push("filled: true") -q=s.ao -if(q!=null)r.push("semanticCounterText: "+q) -q=s.a6 -if(q!=null)r.push("alignLabelWithHint: "+A.e(q)) -return"InputDecoration("+B.c.bB(r,", ")+")"}} -A.HQ.prototype={ -gv(a){var s=null -return A.a3(s,s,s,s,s,s,s,B.n8,B.dM,!1,s,!1,s,s,s,s,s,s,!1,A.a3(s,s,s,s,s,s,s,s,s,!1,s,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, -k(a,b){var s -if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -if(b instanceof A.HQ)if(B.dM.k(0,B.dM))s=!0 -else s=!1 -else s=!1 -return s}} -A.Ox.prototype={} -A.E2.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.Su.prototype={ -aM(a,b){return this.Tj(a,b)}} -A.Eb.prototype={ -m(a){var s=this,r=s.cz$ -if(r!=null)r.K(0,s.gkh()) -s.cz$=null -s.aR(0)}, -bL(){this.cw() -this.ck() -this.ki()}} -A.Ed.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.ST.prototype={ -aj(a){var s,r,q -this.dE(a) -for(s=this.ghj(this),r=s.length,q=0;q0;o=n){n=o-1 -l[o].dm(l[n],p)}this.Dv(a,p)}, -i(a){return"#"+A.bF(this)}} -A.oF.prototype={ -en(a){return A.e8(this.a,this.b,a)}} -A.Ce.prototype={ -am(){return new A.OY(null,null,B.k)}} -A.OY.prototype={ -lR(a){var s,r=this -r.CW=t.ir.a(a.$3(r.CW,r.a.z,new A.ael())) -s=r.a.as -r.cy=s!=null?t.YJ.a(a.$3(r.cy,s,new A.aem())):null -s=r.a.at -r.cx=s!=null?t.YJ.a(a.$3(r.cx,s,new A.aen())):null -r.db=t.TZ.a(a.$3(r.db,r.a.w,new A.aeo()))}, -I(a,b){var s,r,q,p,o,n,m=this,l=null,k=m.db -k.toString -s=m.gfv() -s=k.T(0,s.gl(s)) -s.toString -k=m.CW -k.toString -r=m.gfv() -q=k.T(0,r.gl(r)) -A.ae(b) -p=A.ap2(b,m.a.Q,q) -o=m.a.as!=null?q:0 -k=m.cy -if(k==null)n=l -else{r=m.gfv() -r=k.T(0,r.gl(r)) -n=r}if(n==null)n=B.a5 -k=A.en(b) -r=m.a -return new A.Jo(new A.oE(s,k,l),r.y,o,p,n,new A.Db(r.r,s,!0,l),l)}} -A.ael.prototype={ -$1(a){return new A.ar(A.pw(a),null,t.Y)}, -$S:99} -A.aem.prototype={ -$1(a){return new A.de(t.n8.a(a),null)}, -$S:56} -A.aen.prototype={ -$1(a){return new A.de(t.n8.a(a),null)}, -$S:56} -A.aeo.prototype={ -$1(a){return new A.oF(t.RY.a(a),null)}, -$S:246} -A.Db.prototype={ -I(a,b){var s=A.en(b) -return A.iK(this.c,new A.QV(this.d,s,null),null,null,B.o)}} -A.QV.prototype={ -aH(a,b){this.b.hY(a,new A.w(0,0,0+b.a,0+b.b),this.c)}, -ew(a){return!a.b.k(0,this.b)}} -A.SI.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.OZ.prototype={ -CZ(a){return a.gnK(a)==="en"}, -dI(a,b){return new A.d0(B.wT,t.az)}, -xh(a){return!1}, -i(a){return"DefaultMaterialLocalizations.delegate(en_US)"}} -A.GG.prototype={$ixS:1} -A.cp.prototype={ -i(a){return"MaterialState."+this.b}} -A.Ii.prototype={ -v2(a){return this.O(A.aK(t.R)).v2(a)}, -$iaU:1} -A.Bx.prototype={ -O(a){if(a.A(0,B.ag))return B.eK -return this.a}, -gv4(){return"MaterialStateMouseCursor("+this.c+")"}, -gaN(a){return this.c}} -A.aU.prototype={} -A.ee.prototype={ -O(a){return this.a.$1(a)}, -$iaU:1} -A.fh.prototype={ -O(a){return this.a}, -i(a){return"MaterialStateProperty.all("+A.e(this.a)+")"}, -$iaU:1} -A.xV.prototype={ -wC(a,b){return new A.a1P(this,a,b)}, -Eb(a){return this.wC(a,null)}, -a9e(a){if(this.iv$.E(0,a))this.a4(new A.a1N())}, -m9(a){if(this.iv$.B(0,a))this.a4(new A.a1O())}} -A.a1P.prototype={ -$1(a){var s=this.a,r=this.b -if(s.iv$.A(0,r)===a)return -if(a)s.a9e(r) -else s.m9(r)}, -$S:5} -A.a1N.prototype={ -$0(){}, -$S:0} -A.a1O.prototype={ -$0(){}, -$S:0} -A.yb.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.yb&&b.a==s.a&&J.f(b.b,s.b)&&b.c==s.c&&J.f(b.d,s.d)&&J.f(b.e,s.e)&&b.f==s.f&&b.r==s.r&&!0}} -A.C1.prototype={ -O(a){var s,r=this,q=r.a,p=q==null?null:q.O(a) -q=r.b -s=q==null?null:q.O(a) -return r.d.$3(p,s,r.c)}, -$iaU:1} -A.Pe.prototype={} -A.yc.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.yc)if(J.f(b.a,r.a))if(b.b==r.b)if(J.f(b.c,r.c))if(J.f(b.d,r.d))if(J.f(b.e,r.e))if(J.f(b.f,r.f))if(b.r==r.r)s=J.f(b.y,r.y)&&b.z==r.z&&b.Q==r.Q -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.Pf.prototype={} -A.yp.prototype={ -gv(a){return J.r(this.a)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.yp&&J.f(b.a,this.a)}} -A.Pr.prototype={} -A.o3.prototype={ -gnn(){return A.dC.prototype.gnn.call(this)+"("+A.e(this.b.a)+")"}, -gqQ(){return!0}} -A.xU.prototype={ -gE1(a){return B.cn}, -gpK(){return null}, -gBd(){return null}, -Bl(a){var s -if(!(t.Le.b(a)&&!0))s=!1 -else s=!0 -return s}, -LO(a,b,c){var s=null -return A.bq(s,this.c5.$1(a),!1,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s)}, -Bj(a,b,c,d){var s,r -A.ae(a) -s=A.ae(a).w -r=B.ey.h(0,this.a.CW.a?B.av:s) -if(r==null)r=B.mm -return r.LP(this,a,b,c,d,this.$ti.c)}} -A.Cf.prototype={} -A.Sp.prototype={ -I(a,b){return new A.qj(this.c,new A.ahq(),new A.ahr(),new A.qj(new A.i4(this.d,new A.aM(A.b([],t.W),t.jc),0),new A.ahs(),new A.aht(),this.e,null),null)}} -A.ahq.prototype={ -$3(a,b,c){return new A.ps(b,c,!1,null)}, -$C:"$3", -$R:3, -$S:163} -A.ahr.prototype={ -$3(a,b,c){return new A.pt(b,!0,c,null)}, -$C:"$3", -$R:3, -$S:101} -A.ahs.prototype={ -$3(a,b,c){return new A.ps(b,c,!0,null)}, -$C:"$3", -$R:3, -$S:163} -A.aht.prototype={ -$3(a,b,c){return new A.pt(b,!1,c,null)}, -$C:"$3", -$R:3, -$S:101} -A.ps.prototype={ -I(a,b){var s,r,q,p=this,o={} -o.a=0 -s=p.e -if(!s){r=p.c -r=r.gaZ(r)!==B.H}else r=!1 -if(r){r=p.c -r=$.avm().T(0,r.gl(r)) -r.toString -o.a=r}if(s)q=B.cT -else{r=$.avj() -q=new A.aC(p.c,r,A.n(r).j("aC"))}s=s?$.avk():$.avl() -r=p.c -return A.fP(r,new A.ahp(o),A.iQ(!1,A.KC(p.d,new A.aC(r,s,A.n(s).j("aC"))),q))}} -A.ahp.prototype={ -$2(a,b){return new A.lg(A.ak(B.e.aI(255*this.a.a),0,0,0),b,null)}, -$S:249} -A.pt.prototype={ -I(a,b){var s,r,q=this,p=q.d -if(p){s=$.avn() -r=new A.aC(q.c,s,A.n(s).j("aC"))}else r=B.cT -p=p?$.avo():$.avp() -return A.iQ(!1,A.KC(q.e,new A.aC(q.c,p,A.n(p).j("aC"))),r)}} -A.kg.prototype={} -A.Mk.prototype={ -LP(a,b,c,d,e){return new A.Sp(c,d,e,null)}} -A.Gu.prototype={ -LP(a,b,c,d,e,f){return A.aAo(a,b,c,d,e,f)}} -A.IV.prototype={ -y3(a){var s=t.Tr -return A.ap(new A.az(B.Dn,new A.a37(a),s),!0,s.j("bl.E"))}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -s=b instanceof A.IV -if(s&&!0)return!0 -return s&&A.dV(r.y3(B.ey),r.y3(B.ey))}, -gv(a){return A.f9(this.y3(B.ey))}} -A.a37.prototype={ -$1(a){return this.a.h(0,a)}, -$S:250} -A.Pt.prototype={} -A.yJ.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.yJ)if(b.c==r.c)if(J.f(b.a,r.a))if(J.f(b.b,r.b))if(J.f(b.d,r.d))s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.PX.prototype={} -A.Mo.prototype={ -i(a){return"_ActivityIndicatorType."+this.b}} -A.JH.prototype={ -I1(a){var s,r=this.f -if(r==null)r=null -else{s=r.b -r=r.a -r=s.T(0,r.gl(r))}if(r==null)r=this.e -if(r==null)r=A.akV(a).a -return r==null?A.ae(a).as.b:r}, -Gt(a,b){var s=null,r=this.w,q=this.c -if(q!=null)r=""+B.e.aI(q*100)+"%" -return A.bq(s,a,!1,s,s,!1,s,s,s,s,this.r,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,r)}} -A.tQ.prototype={ -aH(a,b){var s,r,q,p=this,o=$.aJ(),n=o?A.aT():new A.aO(new A.aQ()) -n.sad(0,p.c) -s=p.x -n.sf5(s) -n.scj(0,B.T) -r=p.b -if(r!=null){q=o?A.aT():new A.aO(new A.aQ()) -q.sad(0,r) -q.sf5(s) -q.scj(0,B.T) -a.jl(0,new A.w(0,0,0+b.a,0+b.b),0,6.282185307179586,!1,q)}if(p.d==null)n.sFm(B.MC) -a.jl(0,new A.w(0,0,0+b.a,0+b.b),p.y,p.z,!1,n)}, -ew(a){var s=this -return!J.f(a.b,s.b)||!a.c.k(0,s.c)||a.d!=s.d||a.e!==s.e||a.f!==s.f||a.r!==s.r||a.w!==s.w||a.x!==s.x}} -A.ld.prototype={ -gcD(a){return this.d}, -am(){return new A.Bb(null,null,B.k)}} -A.Bb.prototype={ -aB(){var s,r=this -r.aS() -s=A.bo(null,B.B0,null,null,r) -r.d=s -if(r.a.c==null)A.a(s,"_controller").Pg(0)}, -b4(a){var s,r=this,q="_controller" -r.bu(a) -if(r.a.c==null){s=A.a(r.d,q).r -s=!(s!=null&&s.a!=null)}else s=!1 -if(s)A.a(r.d,q).Pg(0) -else{if(r.a.c!=null){s=A.a(r.d,q).r -s=s!=null&&s.a!=null}else s=!1 -if(s)A.a(r.d,q).ex(0)}}, -m(a){A.a(this.d,"_controller").m(0) -this.Va(0)}, -tl(a,b,c,d,e){var s,r,q,p,o=null,n=this.a -n.gcD(n) -n=A.akV(a) -s=this.a -r=s.I1(a) -q=this.a -p=q.c -return s.Gt(A.cc(o,A.iK(o,o,o,A.aEp(n.d,b,d,e,q.z,c,p,r),B.o),o,B.wx,o,o,o,o,o),a)}, -yd(){return A.fP(A.a(this.d,"_controller"),new A.abS(this),null)}, -I(a,b){var s=this.a -s.toString -switch(0){case 0:if(s.c!=null)return this.tl(b,0,0,0,0) -return this.yd()}}} -A.abS.prototype={ -$2(a,b){var s,r,q,p="_controller",o=this.a,n=$.amL(),m=A.a(o.d,p) -m=n.T(0,m.gl(m)) -n=$.amM() -s=A.a(o.d,p) -s=n.T(0,s.gl(s)) -n=$.amJ() -r=A.a(o.d,p) -r=n.T(0,r.gl(r)) -n=$.amK() -q=A.a(o.d,p) -return o.tl(a,m,s,r,n.T(0,q.gl(q)))}, -$S:58} -A.Qa.prototype={ -aH(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this -h.U5(a,b) -s=h.as -if(s>0){r=h.y+h.z -q=Math.cos(r) -p=Math.sin(r) -o=b.a/2 -n=h.x -m=n*2*s -l=o-m -k=o+m -j=A.d4() -j.ep(0,o+q*l,o+p*l) -j.cO(0,o+q*k,o+p*k) -j.cO(0,o+q*o+-p*n*2*s,o+p*o+q*n*2*s) -j.eD(0) -i=$.aJ()?A.aT():new A.aO(new A.aQ()) -i.sad(0,h.c) -i.sf5(n) -i.scj(0,B.aq) -a.cp(0,j,i)}}} -A.rs.prototype={ -gcD(a){return A.ld.prototype.gcD.call(this,this)}, -am(){return new A.Qb(null,null,B.k)}} -A.Qb.prototype={ -I(a,b){var s,r,q=this,p=q.a.c -if(p!=null){q.Q=p -s=A.a(q.d,"_controller") -r=q.y -if(r===$){A.ba(r,"_convertTween") -r=q.y=new A.fW(B.nl)}s.sl(0,r.T(0,p)*0.000225022502250225)}return q.yd()}, -yd(){return A.fP(A.a(this.d,"_controller"),new A.afs(this),null)}, -tl(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.a.c,g=h==null,f=g?0:B.nl.T(0,h) -if(g&&j.Q==null)s=0 -else{r=j.z -if(r===$){q=t.Y -p=t.Ml -o=A.arj(A.b([new A.kD(new A.ar(-0.1,-0.2,q),0.33,p),new A.kD(new A.ar(-0.2,1.35,q),0.6699999999999999,p)],t.j7),t.i) -A.ba(j.z,"_additionalRotationTween") -j.z=o -r=o}if(g){g=j.Q -g.toString}else g=h -s=3.141592653589793*r.T(0,g)}n=j.a.I1(a) -g=n.gl(n) -n=A.ak(255,n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255) -q=j.a -q.gcD(q) -m=A.akV(a).e -if(m==null)m=A.ae(a).cy -q=j.a -p=q.z -l=c*3/2*3.141592653589793 -k=Math.max(b*3/2*3.141592653589793-l,0.001) -return q.Gt(A.cc(i,A.hS(B.D,!0,i,new A.cq(B.mZ,A.aCi(!1,A.M_(B.M,s,A.iK(i,i,i,new A.Qa(f,i,n,i,b,c,d,e,p,-1.5707963267948966+l+e*3.141592653589793*2+d*0.5*3.141592653589793,k,i),B.o),i),(g>>>24&255)/255),i),B.u,m,2,i,i,i,i,i,B.tJ),i,i,i,41,B.n0,i,41),a)}} -A.afs.prototype={ -$2(a,b){var s,r,q,p="_controller",o=this.a,n=$.amL(),m=A.a(o.d,p) -m=n.T(0,m.gl(m)) -n=$.amM() -s=A.a(o.d,p) -s=n.T(0,s.gl(s)) -n=$.amJ() -r=A.a(o.d,p) -r=n.T(0,r.gl(r)) -n=$.amK() -q=A.a(o.d,p) -return o.tl(a,1.05*m,s,r,n.T(0,q.gl(q)))}, -$S:58} -A.E6.prototype={ -m(a){var s=this,r=s.cz$ -if(r!=null)r.K(0,s.gkh()) -s.cz$=null -s.aR(0)}, -bL(){this.cw() -this.ck() -this.ki()}} -A.yN.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.yN&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&b.c==s.c&&J.f(b.d,s.d)&&J.f(b.e,s.e)}} -A.PZ.prototype={} -A.yW.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.yW)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.C0.prototype={ -O(a){var s,r=this,q=r.a,p=q==null?null:q.O(a) -q=r.b -s=q==null?null:q.O(a) -return r.d.$3(p,s,r.c)}, -$iaU:1} -A.Q5.prototype={} -A.kQ.prototype={ -i(a){return"_RefreshIndicatorMode."+this.b}} -A.JV.prototype={ -i(a){return"RefreshIndicatorTriggerMode."+this.b}} -A.z3.prototype={ -am(){return new A.z4(null,null,B.k)}, -kL(){return this.f.$0()}, -kK(a){return A.EJ().$1(a)}} -A.z4.prototype={ -aB(){var s,r,q,p=this,o=null,n="_positionController" -p.aS() -s=A.bo(o,o,o,o,p) -p.d=s -s=A.a(s,n) -r=$.auD() -q=t.m -p.f=new A.aC(q.a(s),r,r.$ti.j("aC")) -r=A.a(p.d,n) -s=$.auF() -p.w=new A.aC(q.a(r),s,s.$ti.j("aC")) -s=A.bo(o,o,o,o,p) -p.e=s -s=A.a(s,"_scaleController") -r=$.auE() -p.r=new A.aC(q.a(s),r,r.$ti.j("aC"))}, -bH(){var s,r,q,p,o=this,n=o.c -n.toString -s=A.ae(n) -n=A.a(o.d,"_positionController") -o.a.toString -r=s.as.b -q=A.ak(0,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -o.a.toString -r=A.ak(255,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -p=t.IC.j("eT") -o.x=new A.aC(t.m.a(n),new A.eT(new A.fW(B.BY),new A.de(q,r),p),p.j("aC")) -o.e9()}, -b4(a){this.bu(a) -this.a.toString}, -m(a){A.a(this.d,"_positionController").m(0) -A.a(this.e,"_scaleController").m(0) -this.Ui(0)}, -a6a(a){var s,r,q,p,o,n=this -if(!n.a.kK(a))return!1 -if(!(a instanceof A.rF&&a.d!=null)){if(a instanceof A.fc)if(a.d!=null)n.a.toString -s=!1}else s=!0 -if(s){s=a.a -r=s.e -if(!(r===B.I&&Math.max(s.gfi()-s.gct(),0)===0))s=r===B.J&&Math.max(s.gct()-s.geU(),0)===0 -else s=!0 -s=s&&n.y==null&&n.a6b(0,r)}else s=!1 -if(s){n.a4(new A.a4z(n)) -return!1}s=a.a -r=s.e -switch(r.a){case 2:case 0:q=!0 -break -case 3:case 1:q=null -break -default:q=null}if(q!=n.Q){s=n.y -if(s===B.cc||s===B.cd)n.j7(B.f0)}else if(a instanceof A.fc){p=n.y -if(p===B.cc||p===B.cd){p=r===B.J -if(!(p&&Math.max(s.gct()-s.geU(),0)>0))o=r===B.I&&Math.max(s.gfi()-s.gct(),0)>0 -else o=!0 -if(o)n.j7(B.f0) -else{if(p){r=n.as -r.toString -p=a.e -p.toString -n.as=r-p}else if(r===B.I){r=n.as -r.toString -p=a.e -p.toString -n.as=r+p}s=s.d -s.toString -n.GB(s)}}if(n.y===B.cd&&a.d==null)n.JZ()}else if(a instanceof A.hY){p=n.y -if(p===B.cc||p===B.cd){if(r===B.J){r=n.as -r.toString -n.as=r-a.e}else if(r===B.I){r=n.as -r.toString -n.as=r+a.e}s=s.d -s.toString -n.GB(s)}}else if(a instanceof A.kq)switch(n.y){case B.cd:n.JZ() -break -case B.cc:n.j7(B.f0) -break -case B.f0:case B.lP:case B.f_:case B.lO:case null:break}return!1}, -a27(a){if(a.e0$!==0||!a.a)return!1 -if(this.y===B.cc){a.c=!1 -return!0}return!1}, -a6b(a,b){var s=this -switch(b.a){case 2:case 0:s.Q=!0 -break -case 3:case 1:s.Q=null -return!1}s.as=0 -A.a(s.e,"_scaleController").sl(0,0) -A.a(s.d,"_positionController").sl(0,0) -return!0}, -GB(a){var s,r,q=this,p=q.as -p.toString -s=p/(a*0.25) -if(q.y===B.cd)s=Math.max(s,0.6666666666666666) -A.a(q.d,"_positionController").sl(0,B.e.G(s,0,1)) -if(q.y===B.cc){p=A.a(q.x,"_valueColor") -r=p.b -p=p.a -p=r.T(0,p.gl(p)) -p.toString -p=(J.U1(p)>>>24&255)===255}else p=!1 -if(p)q.y=B.cd}, -j7(a){return this.a_i(a)}, -a_i(a){var s=0,r=A.S(t.H),q=this,p -var $async$j7=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=2 -return A.U(A.cU(null,t.H),$async$j7) -case 2:q.a4(new A.a4x(q,a)) -case 3:switch(q.y.a){case 4:s=5 -break -case 5:s=6 -break -case 1:s=7 -break -case 0:s=8 -break -case 3:s=9 -break -case 2:s=10 -break -default:s=4 -break}break -case 5:p=A.a(q.e,"_scaleController") -p.z=B.X -s=11 -return A.U(p.h_(1,B.a9,B.D),$async$j7) -case 11:s=4 -break -case 6:p=A.a(q.d,"_positionController") -p.z=B.X -s=12 -return A.U(p.h_(0,B.a9,B.D),$async$j7) -case 12:s=4 -break -case 7:case 8:case 9:case 10:s=4 -break -case 4:if(q.c!=null&&q.y===a){q.Q=q.as=null -q.a4(new A.a4y(q))}return A.Q(null,r)}}) -return A.R($async$j7,r)}, -JZ(){var s,r=$.a5 -this.y=B.lO -s=A.a(this.d,"_positionController") -s.z=B.X -s.h_(0.6666666666666666,B.a9,B.cY).aV(0,new A.a4C(this,new A.aI(new A.a4(r,t.U),t.h)),t.H)}, -I(a,b){var s,r,q=this,p=null,o=q.a.c,n=q.y,m=n===B.f_||n===B.lP -o=A.b([new A.cY(q.ga69(),new A.cY(q.ga26(),o,p,t.eq),p,t.WA)],t.p) -if(q.y!=null){n=q.Q -n.toString -q.a.toString -n=!n?0:p -s=A.a(q.f,"_positionFactor") -q.Q.toString -q.a.toString -r=A.a(q.r,"_scaleFactor") -o.push(A.Jy(n,A.aqN(B.a2,1,A.cc(B.fc,A.KC(A.fP(A.a(q.d,"_positionController"),new A.a4D(q,m),p),r),p,p,p,p,p,new A.as(0,40,0,0),p),s),p,p,0,0,0,p))}return A.oL(B.b7,o,B.bl,p,p)}} -A.a4z.prototype={ -$0(){this.a.y=B.cc}, -$S:0} -A.a4x.prototype={ -$0(){this.a.y=this.b}, -$S:0} -A.a4y.prototype={ -$0(){this.a.y=null}, -$S:0} -A.a4C.prototype={ -$1(a){var s,r=this.a -if(r.c!=null&&r.y===B.lO){r.a4(new A.a4A(r)) -s=r.a.kL() -s.fU(new A.a4B(r,this.b))}}, -$S:20} -A.a4A.prototype={ -$0(){this.a.y=B.f_}, -$S:0} -A.a4B.prototype={ -$0(){var s=this.a -if(s.c!=null&&s.y===B.f_){this.b.eg(0) -s.j7(B.lP)}}, -$S:6} -A.a4D.prototype={ -$2(a,b){var s,r,q=null,p=this.a -p.a.toString -A.lG(a,B.bp,t.c4).toString -p.a.toString -if(this.b)s=q -else{s=A.a(p.w,"_value") -r=s.b -s=s.a -s=r.T(0,s.gl(s))}r=A.a(p.x,"_valueColor") -p.a.toString -return new A.rs(2.5,s,q,q,r,"Refresh",q,q)}, -$S:253} -A.CF.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.eU.prototype={ -i(a){return"_ScaffoldSlot."+this.b}} -A.zB.prototype={ -am(){var s=null -return new A.zC(A.j0(t.Np),A.j2(s,t.nY),A.j2(s,t.BL),s,s,B.k)}} -A.zC.prototype={ -bH(){var s=this,r=s.c.L(t.w).f,q=s.y -if(q===!0)if(!r.y){q=s.x -q=q!=null&&q.b==null}else q=!1 -else q=!1 -if(q)s.nE(B.lm) -s.y=r.y -s.e9()}, -AI(){var s,r,q,p,o,n -for(s=this.d,r=A.ir(s,s.r),q=t.Np,p=A.n(r).c;r.t();){o=r.d -if(o==null)o=p.a(o) -n=o.c.ju(q) -if(n==null||!s.A(0,n)){o.L6() -o.KU()}}}, -a4e(a){var s=a.c.ju(t.Np) -return s==null||!this.d.A(0,s)}, -Ri(a){var s,r,q,p=this,o=p.w -if(o==null){o=A.bo("SnackBar",B.fD,null,null,p) -o.c1(p.ga3r()) -p.w=o}s=p.r -if(s.b===s.c)o.bp(0) -r=A.bx("controller") -o=p.w -o.toString -s=new A.oZ() -q=a.a -s=q==null?s:q -r.b=new A.zA(A.aqU(a.z,o,a.d,a.y,a.ay,a.c,a.ax,a.Q,a.e,s,a.f,a.at,a.r,a.x,a.w),new A.aI(new A.a4($.a5,t.dH),t.fO),new A.a6_(p,r),t.BL) -p.a4(new A.a60(p,r)) -p.AI() -return r.bm()}, -a3s(a){var s,r=this -switch(a.a){case 0:r.a4(new A.a5W(r)) -r.AI() -s=r.r -if(!s.gS(s))r.w.bp(0) -break -case 3:r.a4(new A.a5X(r)) -r.AI() -break -case 1:break -case 2:break}}, -wj(a){var s,r=this,q=r.r -if(q.b===q.c)return -s=q.gJ(q).b -if((s.a.a&30)===0)s.c3(0,a) -q=r.x -if(q!=null)q.aA(0) -r.x=null -r.w.sl(0,0)}, -nE(a){var s,r,q=this,p=q.r -if(p.b===p.c||A.a(q.w.Q,"_status")===B.w)return -s=p.gJ(p).b -p=q.y -p.toString -r=q.w -if(p){r.sl(0,0) -s.c3(0,a)}else r.cd(0).aV(0,new A.a5Z(q,s,a),t.H) -p=q.x -if(p!=null)p.aA(0) -q.x=null}, -adb(){return this.nE(B.Ms)}, -I(a,b){var s,r,q,p,o=this -o.y=b.L(t.w).f.y -s=o.r -if(!s.gS(s)){r=A.Is(b,t.X) -if(r==null||r.gkG()){q=o.w -if(q.gaZ(q)===B.H&&o.x==null){p=s.gJ(s).a -o.x=A.bN(p.Q,new A.a5Y(o,b,p))}}}return new A.D_(o,o.a.c,null)}, -m(a){var s=this,r=s.w -if(r!=null)r.m(0) -r=s.x -if(r!=null)r.aA(0) -s.x=null -s.UK(0)}} -A.a6_.prototype={ -$0(){this.a.adb()}, -$S:0} -A.a60.prototype={ -$0(){this.a.r.eM(0,this.b.bm())}, -$S:0} -A.a5W.prototype={ -$0(){this.a.r.oc()}, -$S:0} -A.a5X.prototype={ -$0(){}, -$S:0} -A.a5Z.prototype={ -$1(a){var s=this.b -if((s.a.a&30)===0)s.c3(0,this.c)}, -$S:20} -A.a5Y.prototype={ -$0(){this.b.L(t.w).toString -this.a.nE(B.lm)}, -$S:0} -A.D_.prototype={ -cZ(a){return this.f!==a.f}} -A.a61.prototype={} -A.KA.prototype={ -aaM(a,b){var s=a==null?this.a:a -return new A.KA(s,b==null?this.b:b)}} -A.QJ.prototype={ -L9(a,b,c){var s=this -s.b=c==null?s.b:c -s.c=s.c.aaM(a,b) -s.ab()}, -L8(a){return this.L9(null,null,a)}, -a8Q(a,b){return this.L9(a,b,null)}} -A.B5.prototype={ -k(a,b){var s=this -if(b==null)return!1 -if(!s.RN(0,b))return!1 -return b instanceof A.B5&&b.r===s.r&&b.e===s.e&&b.f===s.f}, -gv(a){var s=this -return A.a3(A.aF.prototype.gv.call(s,s),s.r,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.MM.prototype={ -I(a,b){return this.c}} -A.ag1.prototype={ -wc(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=A.ak3(a3),a0=a3.a,a1=a.wv(a0),a2=a3.b -if(b.b.h(0,B.f2)!=null){s=b.eK(B.f2,a1).b -b.eV(B.f2,B.j) -r=s}else{r=0 -s=0}if(b.b.h(0,B.f7)!=null){q=0+b.eK(B.f7,a1).b -p=Math.max(0,a2-q) -b.eV(B.f7,new A.m(0,p))}else{q=0 -p=null}if(b.b.h(0,B.lV)!=null){q+=b.eK(B.lV,new A.aF(0,a1.b,0,Math.max(0,a2-q-r))).b -b.eV(B.lV,new A.m(0,Math.max(0,a2-q)))}if(b.b.h(0,B.f6)!=null){o=b.eK(B.f6,a1) -b.eV(B.f6,new A.m(0,s)) -if(!b.ay)r+=o.b}else o=B.o -n=b.f -m=Math.max(0,a2-Math.max(n.d,q)) -if(b.b.h(0,B.f1)!=null){l=Math.max(0,m-r) -k=b.d -if(k)l=B.e.G(l+q,0,a.d-r) -k=k?q:0 -b.eK(B.f1,new A.B5(k,s,o.b,0,a1.b,0,l)) -b.eV(B.f1,new A.m(0,r))}if(b.b.h(0,B.f4)!=null){b.eK(B.f4,new A.aF(0,a1.b,0,m)) -b.eV(B.f4,B.j)}j=b.b.h(0,B.ce)!=null&&!b.at?b.eK(B.ce,a1):B.o -if(b.b.h(0,B.f5)!=null){i=b.eK(B.f5,new A.aF(0,a1.b,0,Math.max(0,m-r))) -b.eV(B.f5,new A.m((a0-i.a)/2,m-i.b))}else i=B.o -h=A.bx("floatingActionButtonRect") -if(b.b.h(0,B.f8)!=null){g=b.eK(B.f8,a) -f=new A.a61(g,i,m,n,b.r,a3,j,b.w) -e=b.z.l0(f) -d=b.as.Qj(b.y.l0(f),e,b.Q) -b.eV(B.f8,d) -a0=d.a -k=d.b -h.b=new A.w(a0,k,a0+g.a,k+g.b)}if(b.b.h(0,B.ce)!=null){if(j.k(0,B.o))j=b.eK(B.ce,a1) -a0=h.bm() -if(!new A.L(a0.c-a0.a,a0.d-a0.b).k(0,B.o)&&b.at)c=h.bm().b -else c=b.at?Math.min(m,a2-b.r.d):m -b.eV(B.ce,new A.m(0,c-j.b))}if(b.b.h(0,B.f3)!=null){b.eK(B.f3,a1.wu(n.b)) -b.eV(B.f3,B.j)}if(b.b.h(0,B.lW)!=null){b.eK(B.lW,A.vF(a3)) -b.eV(B.lW,B.j)}if(b.b.h(0,B.lU)!=null){b.eK(B.lU,A.vF(a3)) -b.eV(B.lU,B.j)}b.x.a8Q(p,h.bm())}, -oz(a){var s=this -return!a.f.k(0,s.f)||a.w!==s.w||a.Q!==s.Q||a.y!==s.y||a.z!==s.z||a.d!==s.d||!1}} -A.BB.prototype={ -am(){return new A.BC(null,null,B.k)}} -A.BC.prototype={ -aB(){var s,r=this -r.aS() -s=A.bo(null,B.D,null,null,r) -s.c1(r.ga2V()) -r.d=s -r.a6P() -r.a.f.L8(0)}, -m(a){A.a(this.d,"_previousController").m(0) -this.Vd(0)}, -b4(a){this.bu(a) -this.a.toString -return}, -a6P(){var s,r,q,p,o,n,m,l,k=this,j=null,i="_previousController",h="_currentScaleAnimation",g=A.cn(B.cm,A.a(k.d,i),j),f=t.Y,e=A.cn(B.cm,A.a(k.d,i),j),d=A.cn(B.cm,k.a.r,j),c=k.a,b=c.r,a=$.ava(),a0=t.m -a0.a(b) -c=c.d -a0.a(c) -s=t.HY.j("aC") -r=t.W -q=t.jc -p=t.i -o=A.arw(new A.i4(new A.aC(c,new A.fW(new A.qz(B.nm)),s),new A.aM(A.b([],r),q),0),new A.aC(c,new A.fW(B.nm),s),c,0.5,p) -c=k.a.d -n=$.avf() -a0.a(c) -m=$.avg() -l=A.arw(new A.aC(c,n,n.$ti.j("aC")),new A.i4(new A.aC(c,m,A.n(m).j("aC")),new A.aM(A.b([],r),q),0),c,0.5,p) -k.e=A.aok(o,g,p) -p=A.aok(o,d,p) -k.r=p -k.w=new A.aC(a0.a(A.a(p,h)),new A.fW(B.BZ),s) -k.f=A.alj(new A.aC(e,new A.ar(1,1,f),f.j("aC")),l,j) -k.x=A.alj(new A.aC(b,a,a.$ti.j("aC")),l,j) -a=A.a(k.r,h) -b=k.ga55() -a.cf() -a=a.bj$ -a.b=!0 -a.a.push(b) -a=A.a(k.e,"_previousScaleAnimation") -a.cf() -a=a.bj$ -a.b=!0 -a.a.push(b)}, -a2W(a){this.a4(new A.acD(this,a))}, -I(a,b){var s,r,q=this,p=A.b([],t.p) -if(A.a(A.a(q.d,"_previousController").Q,"_status")!==B.w){s=A.a(q.e,"_previousScaleAnimation") -r=A.a(q.f,"_previousRotationAnimation") -p.push(A.KC(A.aqD(q.y,r),s))}q.a.toString -s=A.a(q.r,"_currentScaleAnimation") -r=A.a(q.x,"_currentRotationAnimation") -p.push(A.KC(A.aqD(q.a.c,r),s)) -return A.oL(B.w6,p,B.bl,null,null)}, -a56(){var s,r=A.a(this.e,"_previousScaleAnimation"),q=r.a -q=q.gl(q) -r=r.b -r=r.gl(r) -r=Math.min(A.da(q),A.da(r)) -q=A.a(this.r,"_currentScaleAnimation") -s=q.a -s=s.gl(s) -q=q.b -q=q.gl(q) -q=Math.max(r,Math.min(A.da(s),A.da(q))) -this.a.f.L8(q)}} -A.acD.prototype={ -$0(){if(this.b===B.w)this.a.a.toString}, -$S:0} -A.zz.prototype={ -am(){var s=null,r=t.bR,q=$.b4() -return new A.rA(new A.bC(s,r),new A.bC(s,r),new A.zs(!1,q),new A.zs(!1,q),A.j2(s,t.BL),A.b([],t.Z4),new A.bC(s,t.A),B.n,s,A.z(t.yb,t.T),s,!0,s,s,s,B.k)}} -A.rA.prototype={ -gfn(){this.a.toString -return null}, -jJ(a,b){var s=this -s.oa(s.r,"drawer_open") -s.oa(s.w,"end_drawer_open")}, -wj(a){var s,r,q=this -if(q.at!=null){q.x.wj(a) -return}s=q.z -if(s.b===s.c)return -r=s.gJ(s).b -if((r.a.a&30)===0)r.c3(0,a) -s=q.as -if(s!=null)s.aA(0) -q.as=null -null.sl(0,0)}, -nE(a){var s,r,q,p,o=this,n=null -if(o.at!=null){o.x.nE(a) -return}s=o.z -if(s.b!==s.c){n.gaZ(n) -r=!1}else r=!0 -if(r)return -q=o.c.L(t.w).f -p=s.gJ(s).b -if(q.y){n.sl(0,0) -p.c3(0,a)}else n.cd(0).aV(0,new A.a65(o,p,a),t.H) -s=o.as -if(s!=null)s.aA(0) -o.as=null}, -L6(){var s,r=this,q=r.x.r -if(!q.gS(q)){q=r.x.r -s=q.gJ(q)}else s=null -if(r.at!=s)r.a4(new A.a63(r,s))}, -KU(){var s,r=this,q=r.x.e -if(!q.gS(q)){q=r.x.e -s=q.gJ(q)}else s=null -if(r.ax!=s)r.a4(new A.a62(r,s))}, -a4B(){this.a.toString}, -a3u(){var s,r=this.c -r.toString -s=A.jd(r) -if(s!=null&&s.d.length!==0)s.ig(0,B.Au,B.dZ)}, -gkb(){this.a.toString -return!0}, -aB(){var s,r=this,q=null -r.aS() -s=r.c -s.toString -r.fr=new A.QJ(s,B.KN,$.b4()) -r.a.toString -r.dx=B.mn -r.cy=B.xD -r.db=B.mn -r.cx=A.bo(q,new A.aP(4e5),q,1,r) -r.dy=A.bo(q,B.D,q,q,r)}, -b4(a){this.UN(a) -this.a.toString}, -bH(){var s,r,q=this,p=q.c.L(t.Pu),o=p==null?null:p.f,n=q.x,m=n==null -if(!m)s=o==null||n!==o -else s=!1 -if(s)if(!m)n.d.B(0,q) -q.x=o -if(o!=null){o.d.E(0,q) -if(o.a4e(q)){n=o.r -if(!n.gS(n))q.L6() -n=o.e -if(!n.gS(n))q.KU()}}r=q.c.L(t.w).f -n=q.y -if(n===!0)if(!r.y){n=q.as -n=n!=null&&n.b==null}else n=!1 -else n=!1 -if(n)q.nE(B.lm) -q.y=r.y -q.a4B() -q.UM()}, -m(a){var s=this,r=s.as -if(r!=null)r.aA(0) -s.as=null -r=A.a(s.fr,"_geometryNotifier") -r.y2$=$.b4() -r.y1$=0 -A.a(s.cx,"_floatingActionButtonMoveController").m(0) -A.a(s.dy,u.Z).m(0) -r=s.x -if(r!=null)r.d.B(0,s) -s.UO(0)}, -xT(a,b,c,d,e,f,g,h,i){var s=this.c.L(t.w).f.P9(f,g,h,i) -if(e)s=s.afY(!0) -if(d&&s.e.d!==0)s=s.Mb(s.f.uY(s.r.d)) -if(b!=null)a.push(A.a1k(new A.hb(s,b,null),c))}, -Ys(a,b,c,d,e,f,g,h){return this.xT(a,b,c,!1,d,e,f,g,h)}, -oR(a,b,c,d,e,f,g){return this.xT(a,b,c,!1,!1,d,e,f,g)}, -th(a,b,c,d,e,f,g,h){return this.xT(a,b,c,d,!1,e,f,g,h)}, -Go(a,b){this.a.toString}, -Gn(a,b){this.a.toString}, -I(a,a0){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g="_floatingActionButtonMoveController",f="_geometryNotifier",e={},d=a0.L(t.w).f,c=A.ae(a0),b=a0.L(t.I) -b.toString -s=b.f -i.y=d.y -b=i.z -if(!b.gS(b)){r=A.Is(a0,t.X) -if(r==null||r.gkG())h.gahB() -else{q=i.as -if(q!=null)q.aA(0) -i.as=null}}p=A.b([],t.s9) -q=i.a -o=q.f -n=q.e -q=q.ch!=null||!1 -i.gkb() -i.Ys(p,new A.MM(o,!1,!1,h),B.f1,!0,q,!1,!1,n!=null) -if(i.fx)i.oR(p,A.akL(!0,i.fy,!1,h),B.f4,!0,!0,!0,!0) -q=i.a.e -if(q!=null){q=i.f=A.azF(a0,q.fy)+d.f.b -o=i.a.e -o.toString -i.oR(p,new A.eZ(new A.aF(0,1/0,0,q),new A.wM(1,q,q,q,h,o,h),h),B.f2,!0,!1,!1,!1)}e.a=!1 -e.b=null -if(i.ch!=null||i.ay.length!==0){q=A.ap(i.ay,!0,t.l7) -o=i.ch -if(o!=null)q.push(o.a) -m=A.oL(B.dK,q,B.bl,h,h) -i.gkb() -i.oR(p,m,B.f5,!0,!1,!1,!0)}q=i.at -if(q!=null){e.a=!1 -q=q.a -e.b=q.w -o=i.a.ch!=null||!1 -i.gkb() -i.th(p,q,B.ce,!1,o,!1,!1,!0)}if(!b.gS(b)){b.gJ(b).toString -e.a=!1 -e.b=b.gJ(b).a.w -b=b.gJ(b).a -q=i.a.ch!=null||!1 -i.gkb() -i.th(p,b,B.ce,!1,q,!1,!1,!0)}e.c=!1 -if(i.ax!=null){a0.L(t.iB) -b=A.ae(a0) -q=i.ax -if(q!=null){q=q.a -q.gfc(q)}l=b.x1.c -e.c=(l==null?0:l)!==0 -b=i.ax -b=b==null?h:b.a -q=i.a.e -i.gkb() -i.th(p,b,B.f6,!1,!0,!1,!1,q!=null)}b=i.a -b=b.ch -if(b!=null){i.gkb() -i.th(p,b,B.f7,!1,!1,!1,!1,!0)}b=A.a(i.cx,g) -q=A.a(i.cy,"_floatingActionButtonAnimator") -o=A.a(i.fr,f) -n=A.a(i.dy,u.Z) -i.a.toString -i.oR(p,new A.BB(h,b,q,o,n,h),B.f8,!0,!0,!0,!0) -switch(c.w.a){case 2:case 4:i.oR(p,A.eI(B.ao,h,B.V,!0,h,h,h,h,h,h,h,h,h,h,h,h,i.ga3t(),h,h,h,h,h,h),B.f3,!0,!1,!1,!0) -break -case 0:case 1:case 3:case 5:break}b=i.w -q=b.x -if(q==null?A.n(b).j("dQ.T").a(q):q){i.Gn(p,s) -i.Go(p,s)}else{i.Go(p,s) -i.Gn(p,s)}i.gkb() -b=d.e.d -k=d.f.uY(b) -i.gkb() -b=b!==0?0:h -j=d.r.uY(b) -if(k.d<=0)i.a.toString -i.a.toString -A.a(i.fr,f) -i.a.toString -return new A.QK(!1,new A.zH(A.hS(B.D,!0,h,A.fP(A.a(i.cx,g),new A.a64(e,i,!1,k,j,s,p),h),B.u,c.db,0,h,h,h,h,h,B.bA),h),h)}} -A.a65.prototype={ -$1(a){var s=this.b -if((s.a.a&30)===0)s.c3(0,this.c)}, -$S:20} -A.a63.prototype={ -$0(){this.a.at=this.b}, -$S:0} -A.a62.prototype={ -$0(){this.a.ax=this.b}, -$S:0} -A.a64.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l=this,k=l.b -k.a.toString -s=k.dx -s.toString -r=A.a(A.a(k.cx,"_floatingActionButtonMoveController").x,"_value") -q=A.a(k.cy,"_floatingActionButtonAnimator") -p=A.a(k.fr,"_geometryNotifier") -k=k.db -k.toString -o=l.a -n=o.a -m=o.c -return new A.ne(new A.ag1(l.c,!1,l.d,l.e,l.f,p,k,s,r,q,n,o.b,m),l.r,null)}, -$S:254} -A.zA.prototype={} -A.QK.prototype={ -cZ(a){return this.f!==a.f}} -A.ag2.prototype={ -$2(a,b){if(!a.a)a.K(0,b)}, -$S:43} -A.D0.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.D1.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.D2.prototype={ -b4(a){this.bu(a) -this.qd()}, -bH(){var s,r,q,p,o=this -o.e9() -s=o.br$ -r=o.goe() -q=o.c -q.toString -q=A.ry(q) -o.cF$=q -p=o.n2(q,r) -if(r){o.jJ(s,o.d0$) -o.d0$=!1}if(p)if(s!=null)s.m(0)}, -m(a){var s,r=this -r.em$.Y(0,new A.ag2()) -s=r.br$ -if(s!=null)s.m(0) -r.br$=null -r.UL(0)}} -A.E9.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.KI.prototype={ -I(a,b){var s=this,r=null -if(A.ae(b).w===B.av)return new A.qe(8,B.c7,s.c,s.d,!1,B.KE,3,r,B.fD,B.AV,B.an,A.EJ(),r,r,r) -return new A.ur(r,r,s.c,s.d,r,r,r,r,B.cn,B.d0,B.r,A.EJ(),r,r,r)}} -A.ur.prototype={ -am(){return new A.P_(new A.bC(null,t.A),null,null,B.k)}} -A.P_.prototype={ -gmA(){var s=this,r="_scrollbarTheme",q=s.a.e -if(q==null){q=A.a(s.db,r).a -q=q==null?null:q.O(s.gpu())}if(q==null)q=A.a(s.db,r).e -return q==null?!1:q}, -glL(){this.a.toString -var s=A.a(this.db,"_scrollbarTheme") -s=s.f -return s==null?!A.a(this.dx,"_useAndroidScrollbar"):s}, -guk(){return new A.ee(new A.aet(this),t.Lf)}, -gpu(){var s=A.aK(t.R) -if(this.CW)s.E(0,B.hw) -if(this.cx)s.E(0,B.ap) -return s}, -ga86(){var s,r,q,p=this,o="_colorScheme",n="_useAndroidScrollbar",m=A.a(p.cy,o).db,l=A.a(p.cy,o).a,k=A.bx("dragColor"),j=A.bx("hoverColor"),i=A.bx("idleColor") -switch(l.a){case 1:s=m.a -r=s>>>16&255 -q=s>>>8&255 -s&=255 -k.b=A.ak(153,r,q,s) -j.b=A.ak(B.e.aI(127.5),r,q,s) -if(A.a(p.dx,n)){s=p.c -s.toString -s=A.ae(s).fx.a -s=A.ak(255,s>>>16&255,s>>>8&255,s&255)}else s=A.ak(B.e.aI(25.5),r,q,s) -i.b=s -break -case 0:s=m.a -r=s>>>16&255 -q=s>>>8&255 -s&=255 -k.b=A.ak(191,r,q,s) -j.b=A.ak(166,r,q,s) -if(A.a(p.dx,n)){s=p.c -s.toString -s=A.ae(s).fx.a -s=A.ak(255,s>>>16&255,s>>>8&255,s&255)}else s=A.ak(B.e.aI(76.5),r,q,s) -i.b=s -break}return new A.ee(new A.aeq(p,k,j,i),t.h2)}, -ga8l(){var s="_colorScheme",r=A.a(this.cy,s).db -return new A.ee(new A.aes(this,A.a(this.cy,s).a,r),t.h2)}, -ga8k(){var s="_colorScheme",r=A.a(this.cy,s).db -return new A.ee(new A.aer(this,A.a(this.cy,s).a,r),t.h2)}, -ga83(){return new A.ee(new A.aep(this),t.pj)}, -aB(){var s,r=this -r.FN() -s=A.bo(null,B.D,null,null,r) -r.ch=s -s=A.a(s,"_hoverAnimationController") -s.cf() -s=s.bj$ -s.b=!0 -s.a.push(new A.aez(r))}, -bH(){var s,r=this,q=r.c -q.toString -s=A.ae(q) -r.cy=s.as -r.db=s.x -switch(s.w.a){case 0:r.dx=!0 -break -case 2:case 3:case 1:case 4:case 5:r.dx=!1 -break}r.T7()}, -rw(){var s,r=this,q="_scrollbarTheme",p="_useAndroidScrollbar",o=A.a(r.z,"scrollbarPainter") -o.sad(0,r.ga86().a.$1(r.gpu())) -o.sPF(r.ga8l().a.$1(r.gpu())) -o.sPE(r.ga8k().a.$1(r.gpu())) -s=r.c.L(t.I) -s.toString -o.sbx(0,s.f) -o.sDS(r.ga83().a.$1(r.gpu())) -s=r.a.w -if(s==null)s=A.a(r.db,q).r -if(s==null)s=A.a(r.dx,p)?null:B.KD -o.srf(s) -s=A.a(r.db,q).z -if(s==null)s=A.a(r.dx,p)?0:2 -o.sBF(s) -s=A.a(r.db,q).Q -o.sD6(s==null?0:s) -s=A.a(r.db,q).as -o.sDe(0,s==null?48:s) -o.sdw(0,r.c.L(t.w).f.f) -o.sx_(r.a.dx) -o.sNJ(!r.glL())}, -vC(a){this.FM(a) -this.a4(new A.aey(this))}, -vB(a,b){this.FL(a,b) -this.a4(new A.aex(this))}, -Cu(a){var s=this,r="_hoverAnimationController" -s.T8(a) -if(s.O3(a.gbS(a),a.gd4(a),!0)){s.a4(new A.aev(s)) -A.a(s.ch,r).bp(0)}else if(s.cx){s.a4(new A.aew(s)) -A.a(s.ch,r).cd(0)}}, -Cv(a){var s=this -s.T9(a) -s.a4(new A.aeu(s)) -A.a(s.ch,"_hoverAnimationController").cd(0)}, -m(a){A.a(this.ch,"_hoverAnimationController").m(0) -this.FK(0)}} -A.aet.prototype={ -$1(a){var s,r="_scrollbarTheme" -if(a.A(0,B.ap)){s=this.a -s.a.toString -s=A.a(s.db,r) -s=s.d -s=s===!0}else s=!1 -if(s)return!0 -s=this.a -s.a.toString -s=A.a(s.db,r) -s=s.c -s=s==null?null:s.O(a) -return s==null?!1:s}, -$S:256} -A.aeq.prototype={ -$1(a){var s,r,q,p=this,o=null,n="_scrollbarTheme" -if(a.A(0,B.hw)){s=A.a(p.a.db,n).w -s=s==null?o:s.O(a) -return s==null?p.b.bm():s}s=p.a -if(s.guk().a.$1(a)){s=A.a(s.db,n).w -s=s==null?o:s.O(a) -return s==null?p.c.bm():s}r=A.a(s.db,n).w -r=r==null?o:r.O(a) -if(r==null)r=p.d.bm() -q=A.a(s.db,n).w -q=q==null?o:q.O(a) -if(q==null)q=p.c.bm() -s=A.A(r,q,A.a(A.a(s.ch,"_hoverAnimationController").x,"_value")) -s.toString -return s}, -$S:50} -A.aes.prototype={ -$1(a){var s=this.a -if(s.gmA()&&s.guk().a.$1(a)){s=A.a(s.db,"_scrollbarTheme").x -s=s==null?null:s.O(a) -if(s==null){s=this.c.a -s=this.b===B.ac?A.ak(8,s>>>16&255,s>>>8&255,s&255):A.ak(13,s>>>16&255,s>>>8&255,s&255)}return s}return B.a5}, -$S:50} -A.aer.prototype={ -$1(a){var s=this.a -if(s.gmA()&&s.guk().a.$1(a)){s=A.a(s.db,"_scrollbarTheme").y -s=s==null?null:s.O(a) -if(s==null){s=this.c.a -s=this.b===B.ac?A.ak(B.e.aI(25.5),s>>>16&255,s>>>8&255,s&255):A.ak(64,s>>>16&255,s>>>8&255,s&255)}return s}return B.a5}, -$S:50} -A.aep.prototype={ -$1(a){var s,r,q="_scrollbarTheme" -if(a.A(0,B.ap)&&this.a.guk().a.$1(a)){s=this.a -s.a.toString -s=A.a(s.db,q) -s=s.b -s=s==null?null:s.O(a) -return s==null?12:s}s=this.a -r=s.a.x -if(r==null){r=A.a(s.db,q).b -r=r==null?null:r.O(a)}if(r==null){r=8/(A.a(s.dx,"_useAndroidScrollbar")?2:1) -s=r}else s=r -return s}, -$S:258} -A.aez.prototype={ -$0(){this.a.rw()}, -$S:0} -A.aey.prototype={ -$0(){this.a.CW=!0}, -$S:0} -A.aex.prototype={ -$0(){this.a.CW=!1}, -$S:0} -A.aev.prototype={ -$0(){this.a.cx=!0}, -$S:0} -A.aew.prototype={ -$0(){this.a.cx=!1}, -$S:0} -A.aeu.prototype={ -$0(){this.a.cx=!1}, -$S:0} -A.zN.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.zN&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&b.f==s.f&&J.f(b.r,s.r)&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z&&b.Q==s.Q&&b.as==s.as}} -A.C4.prototype={ -O(a){var s,r=this,q=r.a,p=q==null?null:q.O(a) -q=r.b -s=q==null?null:q.O(a) -return r.d.$3(p,s,r.c)}, -$iaU:1} -A.QO.prototype={} -A.R4.prototype={ -i(a){return"_SliderType."+this.b}} -A.A_.prototype={ -am(){return new A.De(new A.bC(null,t.A),new A.r2(),null,null,B.k)}} -A.De.prototype={ -gc0(a){var s -this.a.toString -s=this.at -s.toString -return s}, -aB(){var s,r=this,q=null -r.aS() -r.d=A.bo(q,B.an,q,q,r) -r.e=A.bo(q,B.an,q,q,r) -r.f=A.bo(q,B.e_,q,q,r) -r.r=A.bo(q,B.r,q,q,r) -s=A.a(r.f,"enableController") -r.a.toString -s.sl(0,1) -A.a(r.r,"positionController").sl(0,r.KB(r.a.c)) -r.z=A.aB([B.S3,new A.c2(r.gYc(),new A.aM(A.b([],t.e),t._),t.f6)],t.n,t.od) -r.a.toString -if(r.at==null)r.at=A.Zd(!0,q,!0,!0,q,q,!1)}, -m(a){var s=this,r=s.w -if(r!=null)r.aA(0) -A.a(s.d,"overlayController").m(0) -A.a(s.e,"valueIndicatorController").m(0) -A.a(s.f,"enableController").m(0) -A.a(s.r,"positionController").m(0) -r=s.CW -if(r!=null){r.bw(0) -s.CW=null}r=s.at -if(r!=null)r.m(0) -s.Vu(0)}, -a1p(a){var s=this.a4m(a),r=this.a -if(s!==r.c)r.d.$1(s)}, -Ag(a){this.as=!0 -this.a.toString}, -Ae(a){this.as=!1 -this.a.toString}, -Yd(a){var s,r=this.x,q=$.F.D$.z.h(0,r).gF() -q.toString -t.Sq.a(q) -r=$.F.D$.z.h(0,r).L(t.I) -r.toString -s=r.f -switch(a.a.a){case 0:switch(s.a){case 0:q.v5() -break -case 1:q.vI() -break}break -case 1:switch(s.a){case 0:q.vI() -break -case 1:q.v5() -break}break -case 2:q.vI() -break -case 3:q.v5() -break}}, -a22(a){if(a!==this.ax)this.a4(new A.agh(this,a))}, -a29(a){if(a!==this.ay)this.a4(new A.agi(this,a))}, -a4m(a){var s=this.a,r=s.w -s=s.r -return a*(r-s)+s}, -KB(a){var s=this.a,r=s.w -s=s.r -return r>s?(a-s)/(r-s):0}, -I(a,b){this.a.toString -switch(0){case 0:return this.YZ(b)}}, -YZ(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=null,a6=A.ae(a7) -a7.L(t.Dj) -s=A.ae(a7).dF -r=s.cx -if(r==null)r=B.xh -q=s.at -if(q==null){p=a6.as -o=p.db.a -p=p.cy.a -q=A.q6(A.ak(153,o>>>16&255,o>>>8&255,o&255),A.ak(B.e.aI(229.5),p>>>16&255,p>>>8&255,p&255))}p=s.a -if(p==null)p=4 -a4.a.toString -o=s.b -if(o==null)o=a6.as.b -n=s.c -if(n==null){n=a6.as.b -n=A.ak(61,n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255)}m=s.d -if(m==null){m=a6.as.db.a -m=A.ak(82,m>>>16&255,m>>>8&255,m&255)}l=s.e -if(l==null){l=a6.as.db.a -l=A.ak(31,l>>>16&255,l>>>8&255,l&255)}a4.a.toString -k=s.f -if(k==null){k=a6.as.c -k=A.ak(138,k.gl(k)>>>16&255,k.gl(k)>>>8&255,k.gl(k)&255)}a4.a.toString -j=s.r -if(j==null){j=a6.as.b -j=A.ak(138,j.gl(j)>>>16&255,j.gl(j)>>>8&255,j.gl(j)&255)}i=s.w -if(i==null){i=a6.as.c -i=A.ak(31,i.gl(i)>>>16&255,i.gl(i)>>>8&255,i.gl(i)&255)}h=s.x -if(h==null){h=a6.as.db.a -h=A.ak(31,h>>>16&255,h>>>8&255,h&255)}a4.a.toString -g=s.y -if(g==null)g=a6.as.b -f=s.Q -if(f==null){f=a6.as -e=f.db.a -f=A.q6(A.ak(97,e>>>16&255,e>>>8&255,e&255),f.cy)}a4.a.toString -e=s.as -if(e==null){e=a6.as.b -e=A.ak(31,e.gl(e)>>>16&255,e.gl(e)>>>8&255,e.gl(e)&255)}d=s.CW -if(d==null)d=B.xl -c=s.ay -if(c==null)c=B.xk -b=s.ch -if(b==null)b=B.xj -a=s.ax -if(a==null)a=B.xi -a0=s.fr -if(a0==null)a0=B.Lu -a1=s.fx -if(a1==null)a1=a6.R8.y.fI(a6.as.c) -s=A.aqS(k,o,i,m,h,l,f,j,n,s.fy,s.id,s.z,e,a,s.db,s.cy,s.dx,s.dy,a0,g,s.go,b,c,p,d,q,r,a1) -p=A.aK(t.R) -a4.a.toString -if(a4.ay)p.E(0,B.ap) -if(a4.ax)p.E(0,B.aD) -if(a4.as)p.E(0,B.hw) -a4.a.toString -o=A.di(a5,p,t.WV) -if(o==null)a2=a5 -else a2=o -if(a2==null)a2=B.dI.O(p) -switch(a6.w.a){case 0:case 1:case 2:case 3:case 4:a3=a5 -break -case 5:a3=new A.agg(a4) -break -default:a3=a5}p=A.a(a4.z,"_actionMap") -o=a4.gc0(a4) -n=a4.KB(a4.a.c) -a4.a.toString -m=a7.L(t.w).f -l=new A.agf(a7).$0() -k=a4.a -j=k.w -k=k.r -k=j>k?a4.ga1o():a5 -return A.bq(a5,A.apf(p,!1,new A.nb(a4.ch,new A.R2(n,a5,a5,s,m.c,l,k,a4.gAf(),a4.gAd(),a5,a4,a4.ax,a4.ay,a4.x),a5),!0,o,a2,a4.ga21(),a4.ga28(),B.Jh),!0,a5,a5,!1,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a3,a5,a5,a5,a5,a5,a5,!0,a5,a5,a5,a5,a5)}, -Rj(){var s,r,q=this -if(q.CW==null){q.CW=A.rb(new A.agj(q),!1) -s=q.c.ju(t.N1) -s.toString -r=q.CW -r.toString -s.qG(0,r)}}} -A.agh.prototype={ -$0(){this.a.ax=this.b}, -$S:0} -A.agi.prototype={ -$0(){this.a.ay=this.b}, -$S:0} -A.agf.prototype={ -$0(){return this.a.L(t.w).f.a}, -$S:104} -A.agg.prototype={ -$0(){var s=this.a -if(!s.gc0(s).gbR()&&s.gc0(s).gcl())s.gc0(s).jI()}, -$S:0} -A.agj.prototype={ -$1(a){var s=this.a -return A.aoD(new A.Sj(s,null),s.ch,B.j,!0)}, -$S:261} -A.R2.prototype={ -aJ(a){var s,r=this,q=a.L(t.I) -q.toString -s=A.ae(a) -return A.aEP(r.e,a.L(t.w).f.ay,r.ax,r.ay,r.f,r.Q,r.z,r.y,s.w,r.x,r.as,r.r,r.at,q.f,r.w,r.d)}, -aM(a,b){var s,r=this -b.sabw(r.e) -b.sl(0,r.d) -b.sD2(0,r.f) -b.sRn(r.r) -b.skV(r.w) -b.sQF(r.x) -b.sfk(r.y) -b.cX=r.z -b.co=r.Q -s=a.L(t.I) -s.toString -b.sbx(0,s.f) -b.sQM(r.as) -b.safn(0,A.ae(a).w) -b.sbR(r.ax) -b.sadq(r.ay) -s=a.L(t.w).f.ay -A.a(b.D,"_drag").b=s -A.a(b.b6,"_tap").b=s}} -A.uE.prototype={ -Y7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,a0,a1){var s,r,q,p=this,o=null -p.um() -s=new A.ZV(A.z(t.S,t.EG)) -r=A.a_N(o,o) -r.r=s -r.at=p.gAf() -r.ax=p.ga7p() -r.ay=p.gAd() -r.ch=p.ga_O() -r.b=b -p.D=r -r=A.a9b(o) -r.r=s -r.y1=p.ga7r() -r.y2=p.ga7t() -r.b=b -p.b6=r -r=p.C -p.M=A.cn(B.P,A.a(r.d,"overlayController"),o) -q=A.cn(B.P,A.a(r.e,"valueIndicatorController"),o) -q.a.c1(new A.afF(p)) -p.af=q -p.a7=A.cn(B.fw,A.a(r.f,"enableController"),o)}, -gzE(){var s=this.gK3() -return new A.az(s,new A.afD(),A.af(s).j("az<1,J>")).o8(0,B.dL)}, -gzD(){var s=this.gK3() -return new A.az(s,new A.afC(),A.af(s).j("az<1,J>")).o8(0,B.dL)}, -gK3(){var s,r=this.cs -r.ax.toString -r.ch.toString -s=this.cb!=null -s -return A.b([new A.L(48,48),new A.L(20,20),r.ay.Qo(s,r)],t.X4)}, -gAv(){var s=this.cs -return s.CW.Qm(!1,this,s)}, -sl(a,b){var s,r=this -if(b===r.bI)return -r.bI=b -s=A.a(r.C.r,"positionController") -s.sl(0,b) -r.ai()}, -safn(a,b){if(this.cK===b)return -this.cK=b -this.ai()}, -sQM(a){return}, -sabw(a){return}, -sD2(a,b){return}, -sRn(a){if(a.k(0,this.cs))return -this.cs=a -this.aF()}, -skV(a){if(a===this.eR)return -this.eR=a -this.um()}, -sQF(a){if(a.k(0,this.dt))return -this.dt=a -this.aF()}, -sfk(a){var s,r,q=this,p="enableController" -if(J.f(a,q.cb))return -s=q.cb -q.cb=a -r=a!=null -if(s!=null!==r){s=q.C.f -if(r)A.a(s,p).bp(0) -else A.a(s,p).cd(0) -q.aF() -q.ai()}}, -sbx(a,b){if(b===this.c5)return -this.c5=b -this.um()}, -sbR(a){var s=this -if(a===s.e1)return -s.e1=a -s.KQ(a) -s.ai()}, -sadq(a){if(a===this.al)return -this.al=a -this.KQ(a)}, -KQ(a){var s="overlayController",r="valueIndicatorController",q=this.C,p=q.d -if(a){A.a(p,s).bp(0) -if(this.gt2())A.a(q.e,r).bp(0)}else{A.a(p,s).cd(0) -if(this.gt2())A.a(q.e,r).cd(0)}}, -gt2(){switch(this.cs.fr.a){case 0:return!1 -case 1:return!0 -case 2:return!0 -case 3:return!1}}, -gYC(){switch(this.cK.a){case 2:case 4:return 0.1 -case 0:case 1:case 3:case 5:return 0.05}}, -um(){this.q.sc7(0,null) -this.a0()}, -jV(){this.xG() -this.q.a0() -this.um()}, -aj(a){var s,r,q=this -q.Vp(a) -s=A.a(q.M,"_overlayAnimation") -r=q.gd5() -s.ga3(s).a2(0,r) -s=A.a(q.af,"_valueIndicatorAnimation") -s.ga3(s).a2(0,r) -s=A.a(q.a7,"_enableAnimation") -s.ga3(s).a2(0,r) -s=A.a(q.C.r,"positionController") -s.cf() -s=s.bj$ -s.b=!0 -s.a.push(r)}, -aa(a){var s=this,r=A.a(s.M,"_overlayAnimation"),q=s.gd5() -r.ga3(r).K(0,q) -r=A.a(s.af,"_valueIndicatorAnimation") -r.ga3(r).K(0,q) -r=A.a(s.a7,"_enableAnimation") -r.ga3(r).K(0,q) -A.a(s.C.r,"positionController").K(0,q) -s.Vq(0)}, -a15(a){switch(this.c5.a){case 0:return 1-a -case 1:return a}}, -ts(a){var s=B.e.G(a,0,1) -return s}, -K9(a){var s,r,q,p=this,o=p.C -o.Rj() -if(!p.au&&p.cb!=null){p.au=!0 -p.cX.$1(p.ts(p.bI)) -s=p.i1(a) -r=p.gAv() -q=p.gAv() -q=p.a15((s.a-r.a)/(q.c-q.a)) -p.bA=q -r=p.cb -r.toString -r.$1(p.ts(q)) -A.a(o.d,"overlayController").bp(0) -if(p.gt2()){A.a(o.e,"valueIndicatorController").bp(0) -s=o.w -if(s!=null)s.aA(0) -o.w=A.bN(new A.aP(B.e.aI(5e5*$.am1)),new A.afE(p))}}}, -yW(){var s,r=this,q=r.C -if(q.c==null)return -if(r.au&&!0){r.co.$1(r.ts(r.bA)) -s=r.au=!1 -r.bA=0 -A.a(q.d,"overlayController").cd(0) -if(r.gt2()?q.w==null:s)A.a(q.e,"valueIndicatorController").cd(0)}}, -Ag(a){this.K9(a.b)}, -a7q(a){var s,r,q,p=this -if(p.C.c==null)return -if(p.cb!=null){s=a.c -s.toString -r=p.gAv() -q=s/(r.c-r.a) -switch(p.c5.a){case 0:p.bA=p.bA-q -break -case 1:p.bA=p.bA+q -break}s=p.cb -s.toString -s.$1(p.ts(p.bA))}}, -Ae(a){this.yW()}, -a7s(a){this.K9(a.a)}, -a7u(a){this.yW()}, -hV(a){return!0}, -hU(a,b){if(t.c.b(a)&&this.cb!=null){A.a(this.D,"_drag").B1(a) -A.a(this.b6,"_tap").B1(a)}}, -b1(a){return 144+this.gzE()}, -aU(a){return 144+this.gzE()}, -aX(a){var s=this.cs.a -s.toString -return Math.max(s,this.gzD())}, -b0(a){var s=this.cs.a -s.toString -return Math.max(s,this.gzD())}, -ghz(){return!0}, -c4(a){var s,r=a.b -r=r<1/0?r:144+this.gzE() -s=a.d -if(!(s<1/0)){s=this.cs.a -s.toString -s=Math.max(s,this.gzD())}return new A.L(r,s)}, -aH(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h="_enableAnimation",g="_overlayAnimation",f=A.a(A.a(i.C.r,"positionController").x,"_value") -switch(i.c5.a){case 0:f=1-f -break -case 1:break -default:f=null}s=i.cs -r=s.CW.Qn(!1,b,i,s) -s=r.a -q=new A.m(s+f*(r.c-s),r.gaT().b) -s=i.cs -p=s.CW -p.toString -o=A.a(i.a7,h) -n=i.c5 -p.afh(a,b,o,!1,i.cb!=null,i,s,n,q) -s=A.a(i.M,g) -if(s.gaZ(s)!==B.w){i.cs.ax.toString -s=A.a(i.M,g) -A.a(i.a7,h) -p=i.cs -o=i.dt -if(o.gS(o))i.k1.toString -m=a.gc2(a) -s=new A.ar(0,24,t.Y).T(0,s.gl(s)) -o=$.aJ()?A.aT():new A.aO(new A.aQ()) -p=p.as -p.toString -o.sad(0,p) -m.dZ(0,q,s,o)}i.cb!=null -i.cs.ch.toString -s=A.a(i.M,g) -p=A.a(i.a7,h) -o=i.cs -n=i.dt -if(n.gS(n))i.k1.toString -m=a.gc2(a) -n=t.Y -o=new A.de(o.Q,o.y).T(0,p.gl(p)) -o.toString -l=new A.ar(10,10,n).T(0,p.gl(p)) -k=new A.ar(1,6,n).T(0,s.gl(s)) -j=A.d4() -s=2*l -j.uw(0,A.aqu(q,s,s),0,6.283185307179586) -m.it(0,j,B.n,k,!0) -s=$.aJ()?A.aT():new A.aO(new A.aQ()) -s.sad(0,o) -m.dZ(0,q,l,s)}, -eO(a){var s,r=this -r.fY(a) -a.a=!1 -s=r.cb -a.b3(B.lf,!0) -a.b3(B.ld,s!=null) -a.xr=r.c5 -a.d=!0 -if(r.cb!=null){a.snV(r.gadw()) -a.snS(r.gabd())}a.p4=new A.bQ("",B.S) -a.d=!0 -s=r.bI -a.R8=new A.bQ(""+B.e.aI(s*100)+"%",B.S) -a.RG=new A.bQ(""+B.e.aI(B.e.G(s+r.gua(),0,1)*100)+"%",B.S) -a.d=!0 -a.rx=new A.bQ(""+B.e.aI(B.e.G(r.bI-r.gua(),0,1)*100)+"%",B.S) -a.d=!0}, -gua(){var s=this.gYC() -return s}, -vI(){var s=this.cb -if(s!=null)s.$1(B.e.G(this.bI+this.gua(),0,1))}, -v5(){var s=this.cb -if(s!=null)s.$1(B.e.G(this.bI-this.gua(),0,1))}} -A.afF.prototype={ -$1(a){var s -if(a===B.w&&this.a.C.CW!=null){s=this.a.C -s.CW.bw(0) -s.CW=null}}, -$S:3} -A.afD.prototype={ -$1(a){return a.a}, -$S:105} -A.afC.prototype={ -$1(a){return a.b}, -$S:105} -A.afE.prototype={ -$0(){var s="valueIndicatorController",r=this.a,q=r.C -q.w=null -if(!r.au&&A.a(A.a(q.e,s).Q,"_status")===B.H)A.a(q.e,s).cd(0)}, -$S:0} -A.io.prototype={} -A.pn.prototype={ -i(a){return"_SliderAdjustmentType."+this.b}} -A.Sj.prototype={ -aJ(a){var s=new A.Qv(this.d,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.C=A.cn(B.P,A.a(s.M.e,"valueIndicatorController"),null) -return s}, -aM(a,b){b.M=this.d}} -A.Qv.prototype={ -ghz(){return!0}, -aj(a){var s,r,q=this -q.Vr(a) -s=A.a(q.C,"_valueIndicatorAnimation") -r=q.gd5() -s.ga3(s).a2(0,r) -s=A.a(q.M.r,"positionController") -s.cf() -s=s.bj$ -s.b=!0 -s.a.push(r)}, -aa(a){var s=this,r=A.a(s.C,"_valueIndicatorAnimation"),q=s.gd5() -r.ga3(r).K(0,q) -A.a(s.M.r,"positionController").K(0,q) -s.Vs(0)}, -aH(a,b){var s=this.M.Q -if(s!=null)s.$2(a,b)}, -c4(a){return new A.L(B.f.G(0,a.a,a.b),B.f.G(0,a.c,a.d))}} -A.El.prototype={ -aj(a){this.dE(a) -$.fa.eQ$.a.E(0,this.ghA())}, -aa(a){$.fa.eQ$.a.B(0,this.ghA()) -this.d7(0)}} -A.Em.prototype={ -aj(a){this.dE(a) -$.fa.eQ$.a.E(0,this.ghA())}, -aa(a){$.fa.eQ$.a.B(0,this.ghA()) -this.d7(0)}} -A.Ep.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.KT.prototype={ -i(a){return"ShowValueIndicator."+this.b}} -A.A0.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,A.a3(s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.A0)if(b.a==r.a)if(J.f(b.b,r.b))if(J.f(b.c,r.c))if(J.f(b.d,r.d))if(J.f(b.e,r.e))if(J.f(b.f,r.f))if(J.f(b.r,r.r))if(J.f(b.w,r.w))if(J.f(b.x,r.x))if(J.f(b.y,r.y))if(J.f(b.z,r.z))if(J.f(b.Q,r.Q))if(J.f(b.as,r.as))if(J.f(b.at,r.at))if(b.ax==r.ax)if(b.ay==r.ay)if(b.ch==r.ch)if(b.CW==r.CW)if(b.cx==r.cx)if(b.fr==r.fr)if(J.f(b.fx,r.fx))if(b.fy==r.fy)s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.a8o.prototype={} -A.a8p.prototype={} -A.a8q.prototype={} -A.UO.prototype={ -wQ(a,b,c,d,e){var s,r,q,p,o -e.ch.toString -b -e.ax.toString -s=e.a -s.toString -r=c.a+Math.max(24,10) -q=d.k1 -p=c.b+(q.b-s)/2 -o=r+q.a-Math.max(20,48) -return new A.w(Math.min(r,o),p,Math.max(r,o),p+s)}, -Qm(a,b,c){return this.wQ(a,!1,B.j,b,c)}, -Qn(a,b,c,d){return this.wQ(a,!1,b,c,d)}} -A.a5G.prototype={ -afh(a,b,c,d,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=a2.a -if(e==null||e<=0)return -e=$.aJ() -s=e?A.aT():new A.aO(new A.aQ()) -r=new A.de(a2.d,a2.b).T(0,c.gl(c)) -r.toString -s.sad(0,r) -q=e?A.aT():new A.aO(new A.aQ()) -e=new A.de(a2.e,a2.c).T(0,c.gl(c)) -e.toString -q.sad(0,e) -switch(a3.a){case 1:p=q -o=s -break -case 0:p=s -o=q -break -default:o=null -p=null}n=this.wQ(d,a0,b,a1,a2) -e=n.d -r=n.b -m=e-r -l=m/2 -k=new A.bD(l,l) -m=(m+2)/2 -j=new A.bD(m,m) -m=a.gc2(a) -l=a3===B.q -i=l?r-1:r -h=a4.a -g=l?e+1:e -f=l?j:k -l=l?j:k -m.cm(0,A.aqr(n.a,i,h,g,l,B.K,f,B.K),o) -f=a.gc2(a) -m=a3===B.aa -if(m)--r -if(m)++e -l=m?j:k -m=m?j:k -f.cm(0,A.aqr(h,r,n.c,e,B.K,m,B.K,l),p)}} -A.a5F.prototype={ -Qo(a,b){var s=b.a -s.toString -s=s/4*2 -return new A.L(s,s)}} -A.a5E.prototype={} -A.a5D.prototype={} -A.a4v.prototype={} -A.QE.prototype={} -A.R3.prototype={} -A.i8.prototype={ -i(a){return"SnackBarClosedReason."+this.b}} -A.tb.prototype={ -am(){return new A.Df(B.k)}} -A.Df.prototype={ -aB(){this.aS() -this.a.as.c1(this.gzL())}, -b4(a){var s,r,q=this -q.bu(a) -s=a.as -if(q.a.as!=s){r=q.gzL() -s.e5(r) -q.a.as.c1(r)}}, -m(a){this.a.as.e5(this.gzL()) -this.aR(0)}, -a4T(a){switch(a.a){case 0:case 1:case 2:break -case 3:this.a.toString -this.d=!0 -break}}, -I(a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=a5.L(t.w).f,c=A.ae(a5),b=c.as,a=c.ei,a0=b.a===B.a3,a1=a0?b.b:b.f,a2=a0?B.ac:B.a3,a3=b.db -if(a0)s=a3 -else{r=a3.a -s=A.q6(A.ak(204,r>>>16&255,r>>>8&255,r&255),b.cy)}r=b.c -q=c.aaD(A.W0(s,a2,b.ax,e,e,e,b.CW,b.at,e,e,b.b,e,b.f,e,b.cy,e,e,e,e,r,e,r,a1,e,b.r,e,a3,e,e,e,e)) -p=a.d -if(p==null)p=A.alc(a2).R8.w -r=f.a -o=new A.f2(24,0,24,0) -r=r.as -r.toString -n=A.cn(B.P,r,e) -r=f.a.as -r.toString -A.cn(B.C1,r,e) -r=f.a.as -r.toString -m=A.cn(B.C_,r,B.R4) -r=f.a -r.toString -p.toString -r=A.b([A.qr(A.cc(e,A.jQ(r.c,e,e,B.bJ,!0,p,e,e,B.aA),e,e,e,e,e,B.B7,e),1)],t.p) -l=f.a -l.toString -k=A.al_(!0,new A.cq(o,A.fB(r,B.af,B.E,B.Q),e),!1) -j=a.e -if(j==null)j=6 -i=a.a -if(i==null)i=q.as.CW -h=a.f -if(h==null)h=e -r=d.y -k=A.hS(B.D,!0,e,new A.tz(q,r?k:A.iQ(!1,k,m),e),B.u,i,j,e,e,h,e,e,B.bA) -k=A.bq(e,new A.wi(k,new A.agk(a5),l.ax,e,B.SI),!0,e,e,!1,e,e,e,e,e,!0,e,e,e,e,e,new A.agl(a5),e,e,e,e,e,e,e,e,e,e,e) -if(r)g=k -else g=A.fP(n,new A.agm(n),k) -r=l.c.i(0) -return A.apl(A.VS(g,f.a.ay,e),"")}} -A.agl.prototype={ -$0(){A.a66(this.a).wj(B.Mq)}, -$S:0} -A.agk.prototype={ -$1(a){A.a66(this.a).wj(B.Mr)}, -$S:263} -A.agm.prototype={ -$2(a,b){var s=this.a -return new A.dr(B.b7,null,s.gl(s),b,null)}, -$S:264} -A.A5.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.A5&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)&&J.f(b.d,s.d)&&b.e==s.e&&J.f(b.f,s.f)&&!0}} -A.Rb.prototype={} -A.Rv.prototype={ -i(a){return"_SwitchType."+this.b}} -A.Ly.prototype={ -a13(a){var s=A.ae(a) -A.ar2(a) -switch(s.f.a){case 0:return B.Mg -case 1:return B.Mf}}, -Z_(a){var s=null -return new A.Cg(this.c,this.d,s,s,s,s,s,s,s,s,s,s,B.V,s,s,s,s,s,s,!1,this.a13(a),s)}, -I(a,b){switch(0){case 0:return this.Z_(b)}}} -A.Cg.prototype={ -am(){return new A.Ch(new A.Du($.b4()),$,$,$,$,$,$,$,$,$,null,!1,!1,null,null,B.k)}} -A.Ch.prototype={ -b4(a){var s,r=this,q="_position" -r.bu(a) -if(a.c!==r.a.c){s=A.a(r.lP$,q) -if(s.gl(s)!==0){s=A.a(r.lP$,q) -s=s.gl(s)===1}else s=!0 -if(s){s=A.a(r.lP$,q) -s.b=B.cm -s.c=B.dX}r.B5()}}, -m(a){this.d.m(0) -this.Vm(0)}, -gfk(){this.a.toString -return this.ga7M()}, -gAQ(){return new A.ee(new A.aeE(this),t._s)}, -gyO(){var s,r=this.c -r.toString -s=A.ae(r) -return new A.ee(new A.aeB(s.as.a===B.a3,s),t.h2)}, -gLh(){return new A.ee(new A.aeF(this),t._s)}, -gH9(){var s=this.c -s.toString -return new A.ee(new A.aeC(this,A.ae(s).as.a===B.a3),t.h2)}, -a7R(a){if(this.gfk()!=null)A.a(this.nz$,"_reactionController").bp(0)}, -a7T(a){var s,r,q=this,p="_positionController" -if(q.gfk()!=null){s=A.a(q.lP$,"_position") -s.b=B.a9 -s.c=null -s=a.c -s.toString -r=s/(q.a.fr.a-40) -s=q.c.L(t.I) -s.toString -switch(s.f.a){case 0:s=A.a(q.qq$,p) -s.sl(0,A.a(s.x,"_value")-r) -break -case 1:s=A.a(q.qq$,p) -s.sl(0,A.a(s.x,"_value")+r) -break}}}, -a7P(a){var s,r,q=this,p=A.a(q.lP$,"_position") -p=p.gl(p) -s=q.a -r=s.c -if(p>=0.5!==r){s.d.$1(!r) -q.a4(new A.aeD(q))}else q.B5() -A.a(q.nz$,"_reactionController").cd(0)}, -a7N(a){var s=this.a.d -a.toString -s.$1(a)}, -I(a9,b0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=null -if(a7.e){a7.e=!1 -a7.B5()}s=A.ae(b0) -r=A.ar2(b0) -q=a7.glb() -q.E(0,B.bf) -p=a7.glb() -p.B(0,B.bf) -a7.a.toString -o=a7.gAQ().a.$1(q) -if(o==null){o=r.a -o=o==null?a8:o.O(q) -n=o}else n=o -if(n==null)n=a7.gyO().a.$1(q) -a7.a.toString -o=a7.gAQ().a.$1(p) -if(o==null){o=r.a -o=o==null?a8:o.O(p) -m=o}else m=o -if(m==null)m=a7.gyO().a.$1(p) -a7.a.toString -o=a7.gLh().a.$1(q) -if(o==null){o=r.b -o=o==null?a8:o.O(q) -l=o}else l=o -if(l==null)l=a7.gH9().a.$1(q) -a7.a.toString -o=a7.gLh().a.$1(p) -if(o==null){o=r.b -o=o==null?a8:o.O(p) -k=o}else k=o -if(k==null)k=a7.gH9().a.$1(p) -j=a7.glb() -j.E(0,B.aD) -a7.a.toString -o=r.e -i=o==null?a8:o.O(j) -h=i -if(h==null)h=s.ch -g=a7.glb() -g.E(0,B.ap) -a7.a.toString -i=o==null?a8:o.O(g) -f=i -if(f==null)f=s.CW -q.E(0,B.aI) -a7.a.toString -i=o==null?a8:o.O(q) -e=i -if(e==null)e=A.ak(31,n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255) -p.E(0,B.aI) -a7.a.toString -o=o==null?a8:o.O(p) -d=o -if(d==null)d=A.ak(31,n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255) -o=a7.a -i=o.c -c=o.ay -b=o.dx -o=o.fr -a=a7.d -a.sbS(0,A.a(a7.lP$,"_position")) -a.safB(A.a(a7.N5$,"_reaction")) -a.safD(A.a(a7.N7$,"_reactionFocusFade")) -a.safE(A.a(a7.N6$,"_reactionHoverFade")) -a.sadt(d) -a.safC(e) -a.slV(f) -a.slQ(h) -a7.a.toString -a0=r.f -a.sRs(a0==null?20:a0) -a.saby(a7.vn$) -a.sCX(a7.glb().A(0,B.aD)) -a.sadO(a7.glb().A(0,B.ap)) -a.sa99(n) -a.sads(m) -a.sa9a(a7.a.x) -a.saew(a7.a.y) -a.sadu(a7.a.z) -a.saeN(a7.a.Q) -a.sa9b(l) -a.sadv(k) -a.spW(A.aiH(b0,a8)) -a.sadQ(a7.gfk()!=null) -a.sagF(a7.a.fr.a-40) -a0=b0.L(t.I) -a0.toString -a.sbx(0,a0.f) -a.sVz(s.as.cy) -a1=a7.Cj$ -if(a1===$){a2=A.aB([B.vM,new A.c2(a7.gKv(),new A.aM(A.b([],t.e),t._),t.wY)],t.n,t.od) -A.ba(a7.Cj$,"_actionMap") -a7.Cj$=a2 -a1=a2}a0=a7.gfk() -a3=new A.aeG(a7,r).$1(a7.glb()) -a4=a7.gfk() -a5=a7.ga3B() -a6=a7.gfk() -return A.bq(a8,A.eI(a8,A.apf(a1,!1,A.eI(a8,A.bq(a8,A.iK(a8,a8,a8,a,o),!1,a8,a6!=null,!1,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8),B.V,a4==null,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a7.gKv(),a5,a7.ga8g(),a5,a8,a8,a8),a0!=null,b,a3,a7.ga8b(),a7.ga8d(),a8),c,!0,a8,a8,a8,a8,a7.ga7O(),a7.ga7Q(),a7.ga7S(),a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8),!1,a8,a8,!1,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,i,a8)}} -A.aeE.prototype={ -$1(a){if(a.A(0,B.ag))return this.a.a.r -if(a.A(0,B.bf))return this.a.a.e -return this.a.a.r}, -$S:74} -A.aeB.prototype={ -$1(a){if(a.A(0,B.ag))return this.a?B.dT:B.mD -if(a.A(0,B.bf))return this.b.p3 -return this.a?B.mD:B.mG}, -$S:50} -A.aeF.prototype={ -$1(a){if(a.A(0,B.ag))return this.a.a.w -if(a.A(0,B.bf))return this.a.a.f -return this.a.a.w}, -$S:74} -A.aeC.prototype={ -$1(a){var s,r -if(a.A(0,B.ag))return this.b?B.mH:B.ft -if(a.A(0,B.bf)){a.E(0,B.bf) -s=this.a -r=s.gAQ().a.$1(a) -if(r==null)r=s.gyO().a.$1(a) -return A.ak(128,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)}return this.b?B.zo:B.zq}, -$S:50} -A.aeD.prototype={ -$0(){this.a.e=!0}, -$S:0} -A.aeG.prototype={ -$1(a){var s=A.di(this.a.a.ch,a,t.WV) -if(s==null)s=null -return s==null?A.di(B.dI,a,t.Pb):s}, -$S:266} -A.Du.prototype={ -sa9a(a){return}, -saew(a){return}, -sadu(a){return}, -saeN(a){return}, -sa9b(a){if(a.k(0,this.fr))return -this.fr=a -this.ab()}, -sadv(a){if(a.k(0,this.fx))return -this.fx=a -this.ab()}, -spW(a){if(a.k(0,this.fy))return -this.fy=a -this.ab()}, -sbx(a,b){if(this.go===b)return -this.go=b -this.ab()}, -sVz(a){if(a.k(0,this.id))return -this.id=a -this.ab()}, -sadQ(a){if(a===this.k1)return -this.k1=a -this.ab()}, -sagF(a){if(a===this.k2)return -this.k2=a -this.ab()}, -a1v(){if(!this.p2)this.ab()}, -aH(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.k1 -c.toString -s=d.a -r=s.gl(s) -switch(d.go.a){case 0:q=1-r -break -case 1:q=r -break -default:q=null}s=d.fx -s.toString -p=d.fr -p.toString -p=A.A(s,p,r) -p.toString -s=d.f -s.toString -o=d.e -o.toString -o=A.A(s,o,r) -o.toString -s=d.id -s.toString -n=A.q6(o,s) -if(c)m=r<0.5?d.dx:d.cy -else m=d.dx -if(c)l=r<0.5?d.dy:d.db -else l=d.dy -c=$.aJ() -k=c?A.aT():new A.aO(new A.aQ()) -k.sad(0,p) -j=(b.a-33)/2 -s=b.b -i=(s-14)/2 -p=d.k2 -p.toString -h=j-3+q*p -g=new A.m(h+10,s/2) -a.cm(0,A.yV(new A.w(j,i,j+33,i+14),B.KC),k) -s=d.b -if(s.gaZ(s)===B.w){s=d.c -if(s.gaZ(s)===B.w){s=d.d -s=s.gaZ(s)!==B.w}else s=!0}else s=!0 -if(s){f=c?A.aT():new A.aO(new A.aQ()) -c=d.r -c.toString -s=d.w -s.toString -p=d.a -p=A.A(c,s,p.gl(p)) -s=d.x -s.toString -c=d.d -c=A.A(p,s,c.gl(c)) -s=d.y -s.toString -p=d.c -p=A.A(c,s,p.gl(p)) -p.toString -f.sad(0,p) -p=d.Q -c=p==null?g:p -s=d.b -s=A.yj(c,g,s.gl(s)) -s.toString -c=d.z -c.toString -p=d.as -p.toString -if(!p){p=d.at -p.toString}else p=!0 -if(p)e=c -else{p=d.b -e=new A.ar(0,c,t.Y).T(0,p.gl(p))}if(e>0)a.dZ(0,s.Z(0,B.j),e,f)}d.a5n(new A.m(h,i-3),a,r,n,m,l)}, -a5n(a,b,c,d,e,f){var s,r,q,p,o=this,n=null -try{o.p2=!0 -if(o.p1!=null)if(d.k(0,o.k3))p=!1 -else p=!0 -else p=!0 -if(p){o.k3=d -o.k4=e -o.ok=f -p=o.p1 -if(p!=null)p.m(0) -o.p1=new A.MS(new A.dX(d,n,n,n,B.Ep,n,B.fg),o.ga1u())}p=o.p1 -p.toString -s=p -r=1-Math.abs(c-0.5)*2 -q=10-r -p=q*2 -s.jE(b,a.Z(0,new A.m(0,r)),o.fy.Mc(new A.L(p,p)))}finally{o.p2=!1}}, -m(a){var s=this,r=s.p1 -if(r!=null)r.m(0) -s.ok=s.k4=s.k3=s.p1=null -s.TZ(0)}} -A.Eg.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.Eh.prototype={ -aB(){var s,r=this,q=null -r.aS() -s=A.bo(q,B.D,q,!r.a.c?0:1,r) -r.qq$=s -r.lP$=A.cn(B.cm,A.a(s,"_positionController"),B.dX) -s=A.bo(q,B.an,q,q,r) -r.nz$=s -r.N5$=A.cn(B.P,A.a(s,"_reactionController"),q) -s=A.bo(q,B.cZ,q,r.qs$||r.qr$?1:0,r) -r.Ch$=s -r.N6$=A.cn(B.P,A.a(s,"_reactionHoverFadeController"),q) -s=A.bo(q,B.cZ,q,r.qs$||r.qr$?1:0,r) -r.Ci$=s -r.N7$=A.cn(B.P,A.a(s,"_reactionFocusFadeController"),q)}, -m(a){var s=this -A.a(s.qq$,"_positionController").m(0) -A.a(s.nz$,"_reactionController").m(0) -A.a(s.Ch$,"_reactionHoverFadeController").m(0) -A.a(s.Ci$,"_reactionFocusFadeController").m(0) -s.Vl(0)}} -A.Ai.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.Ai)if(b.a==r.a)if(b.b==r.b)s=b.e==r.e&&b.f==r.f -else s=!1 -else s=!1 -else s=!1 -return s}} -A.C_.prototype={ -O(a){var s,r=this,q=r.a,p=q==null?null:q.O(a) -q=r.b -s=q==null?null:q.O(a) -return r.d.$3(p,s,r.c)}, -$iaU:1} -A.Ru.prototype={} -A.Al.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.Al)if(J.f(b.a,r.a))if(J.f(b.c,r.c))if(J.f(b.d,r.d))if(J.f(b.e,r.e))if(J.f(b.f,r.f))if(J.f(b.r,r.r))if(J.f(b.w,r.w))s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.BY.prototype={ -O(a){var s,r=this.a,q=r==null?null:r.O(a) -r=this.b -s=r==null?null:r.O(a) -return A.A(q,s,this.c)}, -gv(a){return A.a3(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.BY&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&b.c===s.c}, -$iaU:1} -A.Rz.prototype={} -A.Ak.prototype={ -YY(){var s=null,r=A.bu(this.c,s,B.Ns,s,!1,s,s,s) -return r}, -I(a,b){var s=this.YY() -return A.dz(A.jM(s,null,1),46,null)}} -A.An.prototype={ -gv(a){return J.r(this.a)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.An&&J.f(b.a,this.a)}} -A.RC.prototype={} -A.RD.prototype={ -Do(a){var s -this.TX(a) -s=this.a -if(s.a.x1&&this.b){s=s.y.ga5() -s.toString -s.mB()}}, -aeI(a){}, -aeZ(a){var s,r=this.a -if(r.a.x1){s=this.f.c -s.toString -switch(A.ae(s).w.a){case 2:case 4:r=r.y.ga5() -r.toString -r=$.F.D$.z.h(0,r.r).gF() -r.toString -t.E.a(r).l5(B.bk,a.a) -break -case 0:case 1:case 3:case 5:r=r.y.ga5() -r.toString -r=$.F.D$.z.h(0,r.r).gF() -r.toString -s=a.a -t.E.a(r).EQ(B.bk,s.a9(0,a.c),s) -break}}}, -Ds(a){var s=this.a.y.ga5() -s.toString -s.jv() -this.TY(a) -s=this.f -s.Jw() -s.a.toString}, -af0(a){var s,r,q=this.a -if(q.a.x1){s=this.f -r=s.c -r.toString -switch(A.ae(r).w.a){case 2:case 4:q=q.y.ga5() -q.toString -q=$.F.D$.z.h(0,q.r).gF() -q.toString -t.E.a(q).l5(B.bk,a.a) -break -case 0:case 1:case 3:case 5:q=q.y.ga5() -q.toString -q=$.F.D$.z.h(0,q.r).gF() -q.toString -t.E.a(q) -r=q.cF -r.toString -q.ot(B.bk,r) -s=s.c -s.toString -A.apa(s) -break}}}} -A.Aq.prototype={ -am(){var s=null -return new A.DA(new A.bC(s,t.NE),s,A.z(t.yb,t.T),s,!0,s,B.k)}} -A.DA.prototype={ -gj8(){var s=this.a.c -return s}, -gfw(){this.a.toString -var s=this.e -if(s==null){s=A.Zd(!0,null,!0,!0,null,null,!1) -this.e=s}return s}, -ga_K(){this.a.toString -var s=this.c -s.toString -s=A.aBM(A.ae(s).w) -return s}, -glo(){this.a.toString -return!0}, -ga3P(){this.a.toString -return!1}, -a0M(){var s,r,q,p=this,o=p.c -o.toString -A.lG(o,B.bp,t.c4).toString -o=p.c -o.toString -s=A.ae(o) -o=p.a.e -o=o.LC(s.e) -p.glo() -r=p.a.e.as -q=o.aaO(!0,r==null?1:r) -o=q.p2==null -if(!o||q.p1!=null)return q -r=p.gj8().a.a -r=r.length===0?B.b5:new A.e9(r) -r.gp(r) -if(o)if(q.p1==null)p.a.toString -p.a.toString -return q}, -aB(){var s,r=this -r.aS() -r.w=new A.RD(r,r) -r.a.toString -s=r.gfw() -r.glo() -s.scl(!0) -r.gfw().a2(0,r.gKo())}, -gKn(){var s,r=this.c -r.toString -r=A.e4(r) -s=r==null?null:r.ax -switch((s==null?B.bB:s).a){case 0:this.glo() -return!0 -case 1:return!0}}, -bH(){this.Vw() -this.gfw().scl(this.gKn())}, -b4(a){var s=this -s.Vx(a) -s.a.toString -s.gfw().scl(s.gKn()) -if(s.gfw().gbR())s.a.toString}, -jJ(a,b){var s=this.d -if(s!=null)this.oa(s,"controller")}, -gfn(){this.a.toString -return null}, -m(a){var s,r=this -r.gfw().K(0,r.gKo()) -s=r.e -if(s!=null)s.m(0) -s=r.d -if(s!=null){s.ahl() -s.ahj(0)}r.Vy(0)}, -Jw(){var s=this.y.ga5() -if(s!=null)s.DP()}, -a7h(a){var s=this -if(!A.a(s.w,"_selectionGestureDetectorBuilder").b)return!1 -if(a===B.L)return!1 -s.a.toString -s.glo() -if(a===B.bk||a===B.eI)return!0 -if(s.gj8().a.a.length!==0)return!0 -return!1}, -a7W(){this.a4(new A.agw())}, -a34(a,b){var s,r=this,q=r.a7h(b) -if(q!==r.r)r.a4(new A.agy(r,q)) -s=r.c -s.toString -switch(A.ae(s).w.a){case 2:case 4:if(b===B.bk||b===B.aK){s=r.y.ga5() -if(s!=null)s.ii(a.gdd())}return -case 3:case 5:case 1:case 0:if(b===B.aK){s=r.y.ga5() -if(s!=null)s.ii(a.gdd())}return}}, -a3a(){var s=this.gj8().a.b -if(s.a===s.b){s=this.y.ga5() -if(A.a(s.y.d,"_selectionOverlay").go!=null)s.jv() -else s.mB()}}, -Ib(a){if(a!==this.f)this.a4(new A.agx(this,a))}, -gkU(){var s,r,q,p,o,n,m=this -m.a.toString -s=J.xg(B.bZ.slice(0),t.N) -r=m.y -q=r.ga5() -q.toString -q=A.e5(q) -p=m.gj8().a -o=m.a.e -n=new A.vw(!0,"EditableText-"+q,s,p,o.y) -r=r.ga5().gkU() -return A.ar6(!0,n,!1,!0,r.x,!0,r.z,r.a,r.as,r.c,r.b,r.f,r.r,r.Q)}, -I(b4,b5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=null,a9="forcePressEnabled",b0={},b1=A.ae(b5),b2=A.ar9(b5),b3=b1.R8.w -b3.toString -a7.a.toString -s=b3.bg(a8) -a7.a.toString -b3=b1.as -r=a7.gj8() -q=a7.gfw() -p=t.VS -o=A.b([],p) -a7.a.toString -b0.a=null -switch(b1.w.a){case 2:n=A.akb(b5) -a7.x=!0 -m=$.awd() -l=b2.a -if(l==null)l=n.giO() -k=b2.b -if(k==null){j=n.giO() -k=A.ak(102,j.gl(j)>>>16&255,j.gl(j)>>>8&255,j.gl(j)&255)}i=new A.m(-2/b5.L(t.w).f.b,0) -h=k -g=!0 -f=!0 -e=B.cH -break -case 4:n=A.akb(b5) -a7.x=!1 -m=$.awc() -l=b2.a -if(l==null)l=n.giO() -k=b2.b -if(k==null){j=n.giO() -k=A.ak(102,j.gl(j)>>>16&255,j.gl(j)>>>8&255,j.gl(j)&255)}i=new A.m(-2/b5.L(t.w).f.b,0) -b0.a=new A.agA(a7) -h=a8 -g=!0 -f=!0 -e=B.cH -break -case 0:case 1:a7.x=!1 -m=$.awe() -l=b2.a -if(l==null)l=b3.b -k=b2.b -if(k==null){j=b3.b -k=A.ak(102,j.gl(j)>>>16&255,j.gl(j)>>>8&255,j.gl(j)&255)}e=a8 -h=e -i=h -g=!1 -f=!1 -break -case 3:a7.x=!1 -m=$.an1() -l=b2.a -if(l==null)l=b3.b -k=b2.b -if(k==null){j=b3.b -k=A.ak(102,j.gl(j)>>>16&255,j.gl(j)>>>8&255,j.gl(j)&255)}e=a8 -h=e -i=h -g=!1 -f=!1 -break -case 5:a7.x=!1 -m=$.an1() -l=b2.a -if(l==null)l=b3.b -k=b2.b -if(k==null){j=b3.b -k=A.ak(102,j.gl(j)>>>16&255,j.gl(j)>>>8&255,j.gl(j)&255)}b0.a=new A.agB(a7) -e=a8 -h=e -i=h -g=!1 -f=!1 -break -default:e=a8 -h=e -k=h -l=k -i=l -f=i -g=f -m=g}j=a7.br$ -a7.a.toString -a7.glo() -d=a7.a -c=d.fx -b=a7.r -a=d.f -a0=d.ay -a1=d.CW -d=d.cx -a2=q.gbR()?k:a8 -a3=a7.a.x1 -a4=a3?m:a8 -p=A.b([$.auu()],p) -B.c.P(p,o) -b3=A.aai(j,new A.wv(r,q,"\u2022",a0,!1,c,b,!0,!0,a1,d,!0,s,a8,B.bm,a8,B.Nd,l,h,B.dY,1,a8,!1,!1,a2,a4,a,a8,a8,a8,a8,a8,a7.ga33(),a7.ga39(),p,B.ck,!0,2,a8,e,f,i,g,B.cR,B.bL,b3.a,B.Bd,a3,B.V,a8,a8,!0,a7,B.ai,"editable",!0,a7.y)) -a7.a.toString -a5=A.fP(new A.pi(A.b([q,r],t.Eo)),new A.agC(a7,q,r),new A.hh(b3,a8)) -a7.a.toString -b3=A.aK(t.R) -a7.glo() -if(a7.f)b3.E(0,B.ap) -if(q.gbR())b3.E(0,B.aD) -p=a7.a.e -if(p.at!=null||a7.ga3P())b3.E(0,B.tI) -a6=A.di(B.T5,b3,t.Pb) -b0.b=null -if(a7.ga_K()!==B.JJ)a7.a.toString -a7.glo() -b3=A.a(a7.w,"_selectionGestureDetectorBuilder") -p=b3.gaf5() -o=b3.a -j=A.a(o.x,a9)?b3.gaeJ():a8 -o=A.a(o.x,a9)?b3.gaeH():a8 -return new A.Ho(q,A.o5(new A.hN(!1,a8,A.fP(r,new A.agD(b0,a7),new A.Av(p,j,o,b3.gaeS(),b3.gaeU(),b3.gaf3(),b3.gaf1(),b3.gaf_(),b3.gaeY(),b3.gaeW(),b3.gaex(),b3.gaeB(),b3.gaeD(),b3.gaez(),B.aQ,a5,a8)),a8),a6,a8,new A.agE(a7),new A.agF(a7),a8),a8)}} -A.agw.prototype={ -$0(){}, -$S:0} -A.agy.prototype={ -$0(){this.a.r=this.b}, -$S:0} -A.agx.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.agA.prototype={ -$0(){var s=this.a -if(!s.gfw().gbR()&&s.gfw().gcl())s.gfw().jI()}, -$S:0} -A.agB.prototype={ -$0(){var s=this.a -if(!s.gfw().gbR()&&s.gfw().gcl())s.gfw().jI()}, -$S:0} -A.agC.prototype={ -$2(a,b){var s,r,q,p=this.a,o=p.a0M() -p.a.toString -s=p.f -r=this.b.gbR() -q=this.c.a.a -p.a.toString -return new A.nO(o,null,B.bm,null,r,s,!1,q.length===0,b,null)}, -$S:271} -A.agE.prototype={ -$1(a){return this.a.Ib(!0)}, -$S:42} -A.agF.prototype={ -$1(a){return this.a.Ib(!1)}, -$S:37} -A.agD.prototype={ -$2(a,b){var s=null,r=this.a,q=r.b,p=this.b,o=p.gj8().a.a -o=o.length===0?B.b5:new A.e9(o) -o=o.gp(o) -p.a.toString -return A.bq(s,b,!1,o,s,!1,s,s,s,s,s,s,q,s,s,s,r.a,s,s,s,new A.agz(p),s,s,s,s,s,s,s,s)}, -$S:272} -A.agz.prototype={ -$0(){var s=this.a -if(!s.gj8().a.b.gbv())s.gj8().srV(A.mo(B.l,s.gj8().a.a.length)) -s.Jw()}, -$S:0} -A.ahv.prototype={ -$2(a,b){if(!a.a)a.K(0,b)}, -$S:43} -A.Er.prototype={ -b4(a){this.bu(a) -this.qd()}, -bH(){var s,r,q,p,o=this -o.e9() -s=o.br$ -r=o.goe() -q=o.c -q.toString -q=A.ry(q) -o.cF$=q -p=o.n2(q,r) -if(r){o.jJ(s,o.d0$) -o.d0$=!1}if(p)if(s!=null)s.m(0)}, -m(a){var s,r=this -r.em$.Y(0,new A.ahv()) -s=r.br$ -if(s!=null)s.m(0) -r.br$=null -r.aR(0)}} -A.a1Q.prototype={ -l_(a){return B.Me}, -uI(a,b,c,d){var s,r=null,q=A.ae(a),p=A.ar9(a).c -if(p==null)p=q.as.b -s=A.dz(A.iK(A.eI(B.aQ,r,B.V,!1,r,r,r,r,r,r,r,r,r,r,r,r,d,r,r,r,r,r,r),r,r,new A.RE(p,r),B.o),22,22) -switch(b.a){case 0:return A.M_(B.M,1.5707963267948966,s,r) -case 1:return s -case 2:return A.M_(B.M,0.7853981633974483,s,r)}}, -om(a,b){switch(a.a){case 0:return B.K3 -case 1:return B.j -case 2:return B.K0}}} -A.RE.prototype={ -aH(a,b){var s,r,q,p,o=$.aJ()?A.aT():new A.aO(new A.aQ()) -o.sad(0,this.b) -s=b.a/2 -r=A.lY(new A.m(s,s),s) -q=0+s -p=A.d4() -p.pD(0,r) -p.kl(0,new A.w(0,0,q,q)) -a.cp(0,p,o)}, -ew(a){return!this.b.k(0,a.b)}} -A.Ax.prototype={ -gv(a){return A.a3(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.Ax&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)}} -A.RG.prototype={} -A.eb.prototype={ -bg(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1=this,b2=null -if(b3==null)return b1 -s=b1.a -r=s==null?b2:s.bg(b3.a) -if(r==null)r=b3.a -q=b1.b -p=q==null?b2:q.bg(b3.b) -if(p==null)p=b3.b -o=b1.c -n=o==null?b2:o.bg(b3.c) -if(n==null)n=b3.c -m=b1.d -l=m==null?b2:m.bg(b3.d) -if(l==null)l=b3.d -k=b1.e -j=k==null?b2:k.bg(b3.e) -if(j==null)j=b3.e -i=b1.f -h=i==null?b2:i.bg(b3.f) -if(h==null)h=b3.f -g=b1.r -f=g==null?b2:g.bg(b3.r) -if(f==null)f=b3.r -e=b1.w -d=e==null?b2:e.bg(b3.w) -if(d==null)d=b3.w -c=b1.x -b=c==null?b2:c.bg(b3.x) -if(b==null)b=b3.x -a=b1.y -a0=a==null?b2:a.bg(b3.y) -if(a0==null)a0=b3.y -a1=b1.z -a2=a1==null?b2:a1.bg(b3.z) -if(a2==null)a2=b3.z -a3=b1.Q -a4=a3==null?b2:a3.bg(b3.Q) -if(a4==null)a4=b3.Q -a5=b1.as -a6=a5==null?b2:a5.bg(b3.as) -if(a6==null)a6=b3.as -a7=b1.at -a8=a7==null?b2:a7.bg(b3.at) -if(a8==null)a8=b3.at -a9=b1.ax -b0=a9==null?b2:a9.bg(b3.ax) -if(b0==null)b0=b3.ax -if(r==null)r=b2 -s=r==null?s:r -r=p==null?b2:p -if(r==null)r=q -q=n==null?b2:n -if(q==null)q=o -p=l==null?m:l -o=j==null?b2:j -if(o==null)o=k -n=h==null?b2:h -if(n==null)n=i -m=f==null?b2:f -if(m==null)m=g -l=d==null?b2:d -if(l==null)l=e -k=b==null?b2:b -if(k==null)k=c -j=a0==null?b2:a0 -if(j==null)j=a -i=a2==null?b2:a2 -if(i==null)i=a1 -h=a4==null?b2:a4 -if(h==null)h=a3 -g=a6==null?b2:a6 -if(g==null)g=a5 -f=a8==null?a7:a8 -e=b0==null?b2:b0 -return A.arb(j,i,h,s,r,q,p,o,n,g,f,e==null?a9:e,m,l,k)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.eb&&J.f(s.a,b.a)&&J.f(s.b,b.b)&&J.f(s.c,b.c)&&J.f(s.d,b.d)&&J.f(s.e,b.e)&&J.f(s.f,b.f)&&J.f(s.r,b.r)&&J.f(s.w,b.w)&&J.f(s.x,b.x)&&J.f(s.y,b.y)&&J.f(s.z,b.z)&&J.f(s.Q,b.Q)&&J.f(s.as,b.as)&&J.f(s.at,b.at)&&J.f(s.ax,b.ax)}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} -A.RJ.prototype={} -A.tz.prototype={ -I(a,b){var s=this.c,r=B.bQ.a,q=B.bQ.b,p=B.bQ.c,o=B.bQ.d,n=B.bQ.e,m=B.bQ.f -return new A.BQ(this,new A.Gw(new A.Ih(s,new A.ye(r,q,p,o,n,m),B.lJ,r,q,p,o,n,m),A.HK(this.d,s.rx,null),null),null)}, -gbN(a){return this.c}} -A.BQ.prototype={ -Eh(a,b,c){return new A.tz(this.w.c,c,null)}, -cZ(a){return!this.w.c.k(0,a.w.c)}} -A.oT.prototype={ -en(r6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9,h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,i0,i1,i2,i3,i4,i5,i6,i7,i8,i9,j0,j1,j2,j3,j4,j5,j6,j7,j8,j9,k0,k1,k2,k3,k4,k5,k6,k7,k8,k9,l0,l1,l2,l3,l4,l5,l6,l7,l8,l9,m0,m1,m2,m3,m4,m5,m6,m7,m8,m9,n0,n1,n2,n3,n4,n5,n6,n7,n8,n9,o0,o1,o2,o3,o4,o5,o6,o7,o8,o9,p0,p1,p2,p3,p4,p5,p6,p7,p8,p9,q0,q1,q2,q3,q4,q5,q6,q7,q8,q9,r0,r1,r2,r3,r4,r5=this.a -r5.toString -s=this.b -s.toString -r=r6<0.5 -q=r?r5.b:s.b -p=r?r5.c:s.c -o=A.aDP(r5,s,r6) -n=r?r5.e:s.e -m=r?r5.f:s.f -l=r?r5.r:s.r -k=r?r5.w:s.w -j=r5.x -i=s.x -h=t.X7 -g=A.zO(j.a,i.a,r6,A.aua(),h) -f=A.zO(j.b,i.b,r6,A.auf(),t.PM) -h=A.zO(j.c,i.c,r6,A.aua(),h) -e=j.d -d=i.d -e=r?e:d -d=j.e -c=i.e -d=r?d:c -c=j.f -b=i.f -c=r?c:b -b=A.yX(j.r,i.r,r6) -a=t.MH -a0=A.zO(j.w,i.w,r6,A.eh(),a) -a1=A.zO(j.x,i.x,r6,A.eh(),a) -a2=A.zO(j.y,i.y,r6,A.eh(),a) -a3=A.Z(j.z,i.z,r6) -a4=A.Z(j.Q,i.Q,r6) -j=A.Z(j.as,i.as,r6) -i=r?r5.y:s.y -a5=r5.z -a6=s.z -a7=A.Z(a5.a,a6.a,r6) -a7.toString -a6=A.Z(a5.b,a6.b,r6) -a6.toString -a5=r5.as -a8=s.as -a9=r?a5.a:a8.a -b0=a5.b -b1=a8.b -b2=A.A(b0,b1,r6) -b2.toString -b3=a5.c -b4=a8.c -b5=A.A(b3,b4,r6) -b5.toString -b6=a5.d -if(b6==null)b6=b0 -b7=a8.d -b6=A.A(b6,b7==null?b1:b7,r6) -b7=a5.e -if(b7==null)b7=b3 -b8=a8.e -b7=A.A(b7,b8==null?b4:b8,r6) -b8=a5.f -b9=a8.f -c0=A.A(b8,b9,r6) -c0.toString -c1=a5.r -c2=a8.r -c3=A.A(c1,c2,r6) -c3.toString -c4=a5.w -if(c4==null)c4=b8 -c5=a8.w -c4=A.A(c4,c5==null?b9:c5,r6) -c5=a5.x -if(c5==null)c5=c1 -c6=a8.x -c5=A.A(c5,c6==null?c2:c6,r6) -c6=a5.y -c7=c6==null -c8=c7?b8:c6 -c9=a8.y -d0=c9==null -c8=A.A(c8,d0?b9:c9,r6) -d1=a5.z -d2=d1==null -d3=d2?c1:d1 -d4=a8.z -d5=d4==null -d3=A.A(d3,d5?c2:d4,r6) -d6=a5.Q -if(d6==null){if(c7)c6=b8}else c6=d6 -c7=a8.Q -if(c7==null)c7=d0?b9:c9 -c7=A.A(c6,c7,r6) -c6=a5.as -if(c6==null)c1=d2?c1:d1 -else c1=c6 -c6=a8.as -if(c6==null)c2=d5?c2:d4 -else c2=c6 -c2=A.A(c1,c2,r6) -c1=a5.at -c6=a8.at -c9=A.A(c1,c6,r6) -c9.toString -d0=a5.ax -d1=a8.ax -d2=A.A(d0,d1,r6) -d2.toString -d4=a5.ay -c1=d4==null?c1:d4 -d4=a8.ay -c1=A.A(c1,d4==null?c6:d4,r6) -c6=a5.ch -if(c6==null)c6=d0 -d0=a8.ch -c6=A.A(c6,d0==null?d1:d0,r6) -d0=A.A(a5.CW,a8.CW,r6) -d0.toString -d1=a5.cx -d4=a8.cx -d5=A.A(d1,d4,r6) -d5.toString -d6=a5.cy -d7=a8.cy -d8=A.A(d6,d7,r6) -d8.toString -d9=a5.db -e0=a8.db -e1=A.A(d9,e0,r6) -e1.toString -e2=a5.dx -if(e2==null)e2=d6 -e3=a8.dx -e2=A.A(e2,e3==null?d7:e3,r6) -e3=a5.dy -if(e3==null)e3=d9 -e4=a8.dy -e3=A.A(e3,e4==null?e0:e4,r6) -e4=a5.fr -d1=e4==null?d1:e4 -e4=a8.fr -d1=A.A(d1,e4==null?d4:e4,r6) -d4=a5.fx -if(d4==null)d4=B.n -e4=a8.fx -d4=A.A(d4,e4==null?B.n:e4,r6) -e4=a5.fy -d9=e4==null?d9:e4 -e4=a8.fy -d9=A.A(d9,e4==null?e0:e4,r6) -e0=a5.go -d6=e0==null?d6:e0 -e0=a8.go -d6=A.A(d6,e0==null?d7:e0,r6) -d7=a5.id -b3=d7==null?b3:d7 -d7=a8.id -b3=A.A(b3,d7==null?b4:d7,r6) -b4=a5.k2 -if(b4==null)b4=b0 -d7=a8.k2 -b4=A.A(b4,d7==null?b1:d7,r6) -d7=a5.k3 -b8=d7==null?b8:d7 -d7=a8.k3 -b8=A.A(b8,d7==null?b9:d7,r6) -a5=a5.k1 -if(a5==null)a5=b0 -a8=a8.k1 -a5=A.W0(d0,a9,c9,c1,b3,d9,d5,d2,c6,d6,b5,b7,c3,c5,e1,e3,d3,c2,d1,b2,b6,b4,c0,c4,b8,d4,d8,A.A(a5,a8==null?b1:a8,r6),e2,c8,c7) -a8=A.A(r5.at,s.at,r6) -a8.toString -a9=A.A(r5.ax,s.ax,r6) -a9.toString -b0=A.A(r5.ay,s.ay,r6) -b0.toString -b1=A.A(r5.ch,s.ch,r6) -b1.toString -b2=A.A(r5.CW,s.CW,r6) -b2.toString -b3=A.A(r5.cx,s.cx,r6) -b3.toString -b4=A.A(r5.cy,s.cy,r6) -b4.toString -b5=A.A(r5.db,s.db,r6) -b5.toString -b6=A.A(r5.dx,s.dx,r6) -b6.toString -b7=A.A(r5.dy,s.dy,r6) -b7.toString -b8=A.A(r5.fr,s.fr,r6) -b8.toString -b9=A.A(r5.fx,s.fx,r6) -b9.toString -c0=A.A(r5.fy,s.fy,r6) -c0.toString -c1=A.A(r5.go,s.go,r6) -c1.toString -c2=A.A(r5.id,s.id,r6) -c2.toString -c3=A.A(r5.k1,s.k1,r6) -c3.toString -c4=A.A(r5.k2,s.k2,r6) -c4.toString -c5=A.A(r5.k3,s.k3,r6) -c5.toString -c6=A.A(r5.k4,s.k4,r6) -c6.toString -c7=A.A(r5.ok,s.ok,r6) -c7.toString -c8=A.A(r5.p1,s.p1,r6) -c8.toString -c9=A.A(r5.p2,s.p2,r6) -c9.toString -d0=A.A(r5.p3,s.p3,r6) -d0.toString -d1=r5.p4 -d2=s.p4 -d3=A.mq(d1.a,d2.a,r6) -d4=A.mq(d1.b,d2.b,r6) -d5=A.mq(d1.c,d2.c,r6) -d6=A.mq(d1.d,d2.d,r6) -d2=A.mq(d1.e,d2.e,r6) -d1=A.mq(r5.R8,s.R8,r6) -d7=A.mq(r5.RG,s.RG,r6) -d8=A.iU(r5.rx,s.rx,r6) -d9=A.iU(r5.ry,s.ry,r6) -e0=r5.to -e1=s.to -if(r)e2=e0.a -else e2=e1.a -e3=A.A(e0.b,e1.b,r6) -e4=A.A(e0.c,e1.c,r6) -e5=A.Z(e0.d,e1.d,r6) -e6=A.Z(e0.e,e1.e,r6) -e7=A.A(e0.f,e1.f,r6) -e8=A.A(e0.r,e1.r,r6) -e9=A.e8(e0.w,e1.w,r6) -f0=A.iU(e0.x,e1.x,r6) -f1=A.iU(e0.y,e1.y,r6) -f2=A.mq(e0.z,e1.z,r6) -if(r)f3=e0.Q -else f3=e1.Q -f4=A.Z(e0.as,e1.as,r6) -f5=A.Z(e0.at,e1.at,r6) -f6=A.bj(e0.ax,e1.ax,r6) -f7=A.bj(e0.ay,e1.ay,r6) -if(r)f8=e0.ch -else f8=e1.ch -if(r)e0=e0.CW -else e0=e1.CW -f6=A.azE(f1,e3,e0,e2,f3,e5,e4,f0,e6,e7,e9,e8,f8,f2,f4,f7,f5,f6) -f5=r5.x1 -f7=s.x1 -e0=A.A(f5.a,f7.a,r6) -e1=A.bj(f5.b,f7.b,r6) -e2=A.Z(f5.c,f7.c,r6) -e3=A.eo(f5.d,f7.d,r6) -e4=A.eo(f5.e,f7.e,r6) -e5=r5.x2 -e6=s.x2 -e7=A.A(e5.a,e6.a,r6) -e8=A.Z(e5.b,e6.b,r6) -if(r)e5=e5.c -else e5=e6.c -e6=r5.xr -e9=s.xr -f0=A.A(e6.a,e9.a,r6) -f1=A.Z(e6.b,e9.b,r6) -f2=A.iU(e6.c,e9.c,r6) -f3=A.iU(e6.d,e9.d,r6) -f4=A.A(e6.e,e9.e,r6) -f5=A.A(e6.f,e9.f,r6) -f7=A.bj(e6.r,e9.r,r6) -f8=A.bj(e6.w,e9.w,r6) -if(r)f9=e6.x -else f9=e9.x -if(r)g0=e6.y -else g0=e9.y -if(r)g1=e6.z -else g1=e9.z -if(r)g2=e6.Q -else g2=e9.Q -if(r)g3=e6.as -else g3=e9.as -if(r)e6=e6.at -else e6=e9.at -e9=A.azQ(r5.y1,s.y1,r6) -e9.toString -g4=A.azW(r5.y2,s.y2,r6) -g4.toString -g5=r?r5.ao:s.ao -g6=r5.a6 -g7=s.a6 -if(r)g8=g6.a -else g8=g7.a -g9=A.A(g6.b,g7.b,r6) -h0=A.A(g6.c,g7.c,r6) -h1=A.A(g6.d,g7.d,r6) -h2=A.Z(g6.e,g7.e,r6) -h3=A.eo(g6.f,g7.f,r6) -g6=A.e8(g6.r,g7.r,r6) -g7=r5.aq -h4=s.aq -if(r)h5=g7.a -else h5=h4.a -h6=A.ak6(g7.b,h4.b,r6,A.eh(),a) -h7=A.ak6(g7.c,h4.c,r6,A.eh(),a) -h8=A.ak6(g7.d,h4.d,r6,A.eh(),a) -h9=A.Z(g7.e,h4.e,r6) -if(r)i0=g7.f -else i0=h4.f -if(r)i1=g7.r -else i1=h4.r -i2=t.KX -i3=i2.a(A.e8(g7.w,h4.w,r6)) -g7=A.aA1(g7.x,h4.x,r6) -h4=A.aA6(r5.b5,s.b5,r6) -h4.toString -i4=r5.cW -i5=s.cW -i6=A.Wx(i4.a,i5.a,r6) -i7=A.aoI(i4.b,i5.b,r6,A.eh(),a) -i8=A.Z(i4.c,i5.c,r6) -i9=A.bj(i4.d,i5.d,r6) -j0=A.aoI(i4.e,i5.e,r6,A.eh(),a) -j1=A.Z(i4.f,i5.f,r6) -j2=A.bj(i4.r,i5.r,r6) -j3=A.Z(i4.w,i5.w,r6) -j4=A.Z(i4.x,i5.x,r6) -j5=A.Z(i4.y,i5.y,r6) -i5=A.Z(i4.z,i5.z,r6) -i4=r5.bQ -j6=s.bQ -j7=A.A(i4.a,j6.a,r6) -j8=A.Z(i4.b,j6.b,r6) -j9=A.e8(i4.c,j6.c,r6) -k0=A.ajY(i4.d,j6.d,r6) -k1=A.bj(i4.e,j6.e,r6) -i4=A.bj(i4.f,j6.f,r6) -j6=r5.C -k2=s.C -k3=A.A(j6.a,k2.a,r6) -k4=A.Z(j6.b,k2.b,r6) -k5=A.Z(j6.c,k2.c,r6) -k6=A.Z(j6.d,k2.d,r6) -j6=A.Z(j6.e,k2.e,r6) -k2=A.aAO(r5.M,s.M,r6) -k2.toString -k7=A.aAV(r5.af,s.af,r6) -k7.toString -k8=A.aB4(r5.a7,s.a7,r6) -k8.toString -k9=A.aBT(r5.q,s.q,r6) -k9.toString -l0=A.aCd(r5.D,s.D,r6) -l0.toString -l1=A.aCe(r5.b6,s.b6,r6) -l1.toString -l2=A.aCj(r5.au,s.au,r6) -l2.toString -l3=A.aCA(r5.bA,s.bA,r6) -l3.toString -l4=A.aCO(r5.bI,s.bI,r6) -l4.toString -l5=r5.cK -l6=s.cK -if(r)l7=l5.a -else l7=l6.a -l8=A.aqs(l5.b,l6.b,r6,A.eh(),a) -if(r)l9=l5.e -else l9=l6.e -m0=A.aqs(l5.c,l6.c,r6,A.eh(),a) -m1=A.Z(l5.d,l6.d,r6) -if(r)l5=l5.f -else l5=l6.f -l6=r5.dF -m2=s.dF -m3=A.Z(l6.a,m2.a,r6) -m4=A.A(l6.b,m2.b,r6) -m5=A.A(l6.c,m2.c,r6) -m6=A.A(l6.d,m2.d,r6) -m7=A.A(l6.e,m2.e,r6) -m8=A.A(l6.f,m2.f,r6) -m9=A.A(l6.r,m2.r,r6) -n0=A.A(l6.w,m2.w,r6) -n1=A.A(l6.x,m2.x,r6) -n2=A.A(l6.y,m2.y,r6) -n3=A.A(l6.z,m2.z,r6) -n4=A.A(l6.Q,m2.Q,r6) -n5=A.A(l6.as,m2.as,r6) -n6=A.A(l6.at,m2.at,r6) -n7=r?l6.ax:m2.ax -n8=r?l6.ay:m2.ay -n9=r?l6.ch:m2.ch -o0=r?l6.CW:m2.CW -o1=r?l6.cx:m2.cx -o2=r?l6.cy:m2.cy -o3=r?l6.db:m2.db -o4=r?l6.dx:m2.dx -o5=r?l6.dy:m2.dy -o6=r?l6.fr:m2.fr -o7=A.bj(l6.fx,m2.fx,r6) -o8=A.Z(l6.fy,m2.fy,r6) -o9=r?l6.go:m2.go -l6=A.aqS(m8,m4,n0,m6,n1,m7,n4,m9,m5,o8,r?l6.id:m2.id,n3,n5,n7,o3,o2,o4,o5,o6,n2,o9,n9,n8,m3,o0,n6,o1,o7) -m2=r5.ei -m3=s.ei -m4=A.A(m2.a,m3.a,r6) -m5=A.A(m2.b,m3.b,r6) -m6=A.A(m2.c,m3.c,r6) -m7=A.bj(m2.d,m3.d,r6) -m8=A.Z(m2.e,m3.e,r6) -m9=A.e8(m2.f,m3.f,r6) -if(r)m2=m2.r -else m2=m3.r -m3=r5.ej -n0=s.ej -n1=A.al8(m3.a,n0.a,r6,A.eh(),a) -n2=A.al8(m3.b,n0.b,r6,A.eh(),a) -if(r)n3=m3.c -else n3=n0.c -if(r)n4=m3.d -else n4=n0.d -a=A.al8(m3.e,n0.e,r6,A.eh(),a) -m3=A.Z(m3.f,n0.f,r6) -n0=r5.cs -n5=s.cs -n6=A.Wx(n0.a,n5.a,r6) -n7=r?n0.b:n5.b -n8=A.A(n0.c,n5.c,r6) -n9=A.eo(n0.d,n5.d,r6) -o0=A.bj(n0.e,n5.e,r6) -o1=A.A(n0.f,n5.f,r6) -o2=A.bj(n0.r,n5.r,r6) -o3=r?n0.x:n5.x -o4=r?n0.y:n5.y -o5=A.aDI(r5.eR,s.eR,r6) -o5.toString -o6=A.aDN(r5.dt,s.dt,r6) -o6.toString -o7=r5.cb -o8=s.cb -p0=o7.ay -o9=p0==null -if(o9)p1=o8.ay==null -else p1=!1 -if(p1)p0=null -else if(o9)p0=o8.ay -else{o9=o8.ay -if(!(o9==null))p0=A.aE(p0,o9,r6)}o9=A.A(o7.a,o8.a,r6) -p1=A.A(o7.b,o8.b,r6) -p2=A.A(o7.c,o8.c,r6) -p3=A.A(o7.d,o8.d,r6) -p4=A.A(o7.e,o8.e,r6) -p5=A.A(o7.f,o8.f,r6) -p6=A.A(o7.r,o8.r,r6) -p7=A.A(o7.w,o8.w,r6) -p8=A.A(o7.x,o8.x,r6) -p9=A.bj(o7.y,o8.y,r6) -q0=A.bj(o7.z,o8.z,r6) -q1=A.bj(o7.Q,o8.Q,r6) -q2=A.e8(o7.as,o8.as,r6) -q3=A.e8(o7.at,o8.at,r6) -i2=i2.a(A.e8(o7.ax,o8.ax,r6)) -if(r)o7=o7.ch -else o7=o8.ch -o8=A.aDS(r5.cX,s.cX,r6) -o8.toString -q4=A.aDV(r5.co,s.co,r6) -q4.toString -q5=A.aB2(r5.c5,s.c5,r6) -q5.toString -q6=A.A(r5.al,s.al,r6) -q6.toString -q7=A.A(r5.fK,s.fK,r6) -q7.toString -q8=A.A(r5.ho,s.ho,r6) -q8.toString -q9=A.A(r5.ek,s.ek,r6) -q9.toString -r0=r?r5.fL:s.fL -r1=A.mq(r5.fM,s.fM,r6) -r2=A.iU(r5.fN,s.fN,r6) -r3=A.A(r5.u,s.u,r6) -r3.toString -r4=r?r5.aD:s.aD -r5=r?r5.a:s.a -return A.alb(q9,r0,r2,r1,r5,f6,q,c5,new A.xR(e0,e1,e2,e3,e4),b6,new A.vB(e7,e8,e5),new A.vD(f0,f1,f2,f3,f4,f5,f7,f8,f9,g0,g1,g2,g3,e6),e9,g4,r3,g5,b4,b7,new A.q_(g8,g9,h0,h1,h2,h3,g6),new A.vP(h5,h6,h7,h8,h9,i0,i1,i3,g7),h4,a5,p,q7,new A.wa(i6,i7,i8,i9,j0,j1,j2,j3,j4,j5,i5),c6,new A.qi(j7,j8,j9,k0,k1,i4),c3,b8,new A.wk(k3,k4,k5,k6,j6),k2,k7,c9,q5,o,!0,k8,b1,b9,c8,b2,d8,c7,n,k9,m,l0,l1,l2,l,k,l3,a8,r4,b0,a9,d9,d7,l4,new A.yW(l7,l8,m0,m1,l9,l5),b5,new A.zN(g,f,h,e,d,c,b,a0,a1,a2,a3,a4,j),c4,c1,b3,l6,new A.A5(m4,m5,m6,m7,m8,m9,m2),c0,i,new A.Ai(n1,n2,n3,n4,a,m3),new A.Al(n6,n7,n8,n9,o0,o1,o2,new A.BY(n0.w,n5.w,r6),o3,o4),o5,q6,q8,o6,d1,new A.AC(o9,p1,p2,p3,p4,p5,p6,p7,p8,p9,q0,q1,q2,q3,i2,p0,o7),o8,d0,q4,new A.AP(d3,d4,d5,d6,d2),c2,!1,!0,new A.kH(a7,a6))}} -A.vj.prototype={ -am(){return new A.Mx(null,null,B.k)}, -gbN(a){return this.r}} -A.Mx.prototype={ -lR(a){var s=a.$3(this.CW,this.a.r,new A.aaW()) -s.toString -this.CW=t.ZM.a(s)}, -I(a,b){var s,r=this.CW -r.toString -s=this.gfv() -return new A.tz(r.T(0,s.gl(s)),this.a.w,null)}} -A.aaW.prototype={ -$1(a){return new A.oT(t.we.a(a),null)}, -$S:273} -A.lI.prototype={ -i(a){return"MaterialTapTargetSize."+this.b}} -A.hn.prototype={ -Mf(b2,b3,b4,b5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=b3==null?a7.as:b3,a9=a8.b,b0=a8.c,b1=a8.d -if(b1==null)b1=a9 -s=a8.e -if(s==null)s=b0 -r=a8.f -q=a8.r -p=a8.w -if(p==null)p=r -o=a8.x -if(o==null)o=q -n=a8.y -m=n==null?r:n -l=a8.z -k=l==null?q:l -j=a8.Q -if(j==null){if(n==null)n=r}else n=j -j=a8.as -if(j==null){if(l==null)l=q}else l=j -j=a8.at -i=a8.ax -h=a8.ay -if(h==null)h=j -g=a8.ch -if(g==null)g=i -f=a8.cx -e=a8.cy -d=a8.db -c=a8.dx -if(c==null)c=e -b=a8.dy -if(b==null)b=d -a=a8.fr -if(a==null)a=f -a0=a8.fx -if(a0==null)a0=B.n -a1=a8.fy -if(a1==null)a1=d -a2=a8.go -if(a2==null)a2=e -a3=a8.id -if(a3==null)a3=b0 -a4=a8.k2 -if(a4==null)a4=a9 -a5=a8.k3 -if(a5==null)a5=r -a6=a8.k1 -if(a6==null)a6=a9 -n=A.W0(a8.CW,a8.a,j,h,a3,a1,f,i,g,a2,b0,s,q,o,d,b,k,l,a,a9,b1,a4,r,p,a5,a0,e,a6,c,m,n) -a8=b5==null?a7.R8:b5 -a9=b4==null?a7.RG:b4 -b0=b2==null?a7.fM:b2 -return A.alb(a7.ek,a7.fL,a7.fN,b0,a7.a,a7.to,a7.b,a7.k3,a7.x1,a7.dx,a7.x2,a7.xr,a7.y1,a7.y2,a7.u,a7.ao,a7.cy,a7.dy,a7.a6,a7.aq,a7.b5,n,a7.c,a7.fK,a7.cW,a7.k4,a7.bQ,a7.k1,a7.fr,a7.C,a7.M,a7.af,a7.p2,a7.c5,a7.d,!0,a7.a7,a7.ch,a7.fx,a7.p1,a7.CW,a7.rx,a7.ok,a7.e,a7.q,a7.f,a7.D,a7.b6,a7.au,a7.r,a7.w,a7.bA,a7.at,a7.aD,a7.ay,a7.ax,a7.ry,a9,a7.bI,a7.cK,a7.db,a7.x,a7.k2,a7.go,a7.cx,a7.dF,a7.ei,a7.fy,a7.y,a7.ej,a7.cs,a7.eR,a7.al,a7.ho,a7.dt,a8,a7.cb,a7.cX,a7.p3,a7.co,a7.p4,a7.id,!1,!0,a7.z)}, -aaV(a,b,c){return this.Mf(a,null,b,c)}, -aaD(a){return this.Mf(null,a,null,null)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.hn)if(b.b===r.b)if(A.aje(b.d,r.d))if(b.e.k(0,r.e))if(b.f===r.f)if(b.r.k(0,r.r))if(b.w===r.w)if(b.x.k(0,r.x))if(b.y===r.y)if(b.z.k(0,r.z))if(b.as.k(0,r.as))if(b.at.k(0,r.at))if(b.ax.k(0,r.ax))if(b.ay.k(0,r.ay))if(b.ch.k(0,r.ch))if(b.CW.k(0,r.CW))if(b.cx.k(0,r.cx))if(b.cy.k(0,r.cy))if(b.db.k(0,r.db))if(b.dx.k(0,r.dx))if(b.dy.k(0,r.dy))if(b.fr.k(0,r.fr))if(b.fx.k(0,r.fx))if(b.fy.k(0,r.fy))if(b.go.k(0,r.go))if(b.id.k(0,r.id))if(b.k1.k(0,r.k1))if(b.k2.k(0,r.k2))if(b.k3.k(0,r.k3))if(b.k4.k(0,r.k4))if(b.ok.k(0,r.ok))if(b.p1.k(0,r.p1))if(b.p2.k(0,r.p2))if(b.p3.k(0,r.p3))if(b.p4.k(0,r.p4))if(b.R8.k(0,r.R8))if(b.RG.k(0,r.RG))if(b.rx.k(0,r.rx))if(b.ry.k(0,r.ry))if(b.to.k(0,r.to))if(b.x1.k(0,r.x1))if(b.x2.k(0,r.x2))if(b.xr.k(0,r.xr))if(b.y1.k(0,r.y1))if(b.y2.k(0,r.y2))if(b.ao.k(0,r.ao))if(b.a6.k(0,r.a6))if(b.aq.k(0,r.aq))if(b.b5.k(0,r.b5))if(b.cW.k(0,r.cW))if(b.bQ.k(0,r.bQ))if(b.C.k(0,r.C))if(b.M.k(0,r.M))if(b.af.k(0,r.af))if(b.a7.k(0,r.a7))if(b.q.k(0,r.q))if(b.D.k(0,r.D))if(b.b6.k(0,r.b6))if(b.au.k(0,r.au))if(b.bA.k(0,r.bA))if(b.bI.k(0,r.bI))if(b.cK.k(0,r.cK))if(b.dF.k(0,r.dF))if(b.ei.k(0,r.ei))if(b.ej.k(0,r.ej))if(b.cs.k(0,r.cs))if(b.eR.k(0,r.eR))if(b.dt.k(0,r.dt))if(b.cb.k(0,r.cb))if(b.cX.k(0,r.cX))if(b.co.k(0,r.co))if(b.c5.k(0,r.c5))if(b.al.k(0,r.al))if(b.fK.k(0,r.fK))if(b.ho.k(0,r.ho))if(b.ek.k(0,r.ek))if(b.fL===r.fL)if(b.fM.k(0,r.fM))if(b.fN.k(0,r.fN))if(b.u.k(0,r.u))s=b.aD===r.aD&&!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this,r=s.d -return A.f9([s.b,s.c,A.ED(r.gba(r)),A.ED(r.gb2(r)),s.e,s.f,s.r,s.w,s.x,s.y,s.z,!1,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,s.p4,s.R8,s.RG,s.rx,s.ry,s.to,s.x1,s.x2,s.xr,s.y1,s.y2,s.ao,s.a6,s.aq,s.b5,s.cW,s.bQ,s.C,s.M,s.af,s.a7,s.q,s.D,s.b6,s.au,s.bA,s.bI,s.cK,s.dF,s.ei,s.ej,s.cs,s.eR,s.dt,s.cb,s.cX,s.co,s.c5,!0,s.al,s.fK,s.ho,s.ek,s.fL,s.fM,s.fN,s.u,!0,s.aD,s.a])}} -A.a9T.prototype={ -$0(){var s=this.a,r=this.b,q=r.bg(s.RG) -return s.aaV(r.bg(s.fM),q,r.bg(s.R8))}, -$S:274} -A.a9R.prototype={ -$2(a,b){return new A.aw(a,b.ahC(this.a.d.h(0,a),this.b),t.sw)}, -$S:275} -A.a9S.prototype={ -$1(a){return!this.a.d.ap(0,a.gcG(a))}, -$S:276} -A.Ih.prototype={ -guF(){var s=this.ax.a -return s==null?this.at.as.a:s}, -giO(){var s=this.ax.b -return s==null?this.at.as.b:s}, -gDC(){var s=this.ax.c -return s==null?this.at.as.c:s}, -gwW(){var s=this.ax.f -return s==null?this.at.db:s}, -eZ(a){return A.aBZ(this.at,this.ax.eZ(a))}} -A.uh.prototype={ -gv(a){return(A.mL(this.a)^A.mL(this.b))>>>0}, -k(a,b){if(b==null)return!1 -return b instanceof A.uh&&b.a===this.a&&b.b===this.b}} -A.O1.prototype={ -bs(a,b,c){var s,r=this.a,q=r.h(0,b) -if(q!=null)return q -if(r.a===this.b){s=new A.b3(r,A.n(r).j("b3<1>")) -r.B(0,s.gJ(s))}s=c.$0() -r.n(0,b,s) -return s}} -A.kH.prototype={ -C7(a){var s=this.a,r=this.b,q=B.e.G(a.a+new A.m(s,r).W(0,4).a,0,a.b) -return a.aaR(B.e.G(a.c+new A.m(s,r).W(0,4).b,0,a.d),q)}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.kH&&b.a===this.a&&b.b===this.b}, -gv(a){return A.a3(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -cv(){return this.Sq()+"(h: "+A.iv(this.a)+", v: "+A.iv(this.b)+")"}} -A.RO.prototype={} -A.Sl.prototype={} -A.AC.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.AC&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)&&J.f(b.d,s.d)&&J.f(b.e,s.e)&&J.f(b.f,s.f)&&J.f(b.r,s.r)&&J.f(b.w,s.w)&&J.f(b.x,s.x)&&J.f(b.y,s.y)&&J.f(b.z,s.z)&&J.f(b.Q,s.Q)&&J.f(b.as,s.as)&&J.f(b.at,s.at)&&J.f(b.ax,s.ax)&&J.f(b.ay,s.ay)&&!0}} -A.RS.prototype={} -A.AF.prototype={ -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.y,s.x,s.z,s.Q,s.as,s.ax,s.at,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.AF&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)&&J.f(b.d,s.d)&&J.f(b.e,s.e)&&J.f(b.f,s.f)&&J.f(b.r,s.r)&&J.f(b.w,s.w)&&J.f(b.y,s.y)&&J.f(b.x,s.x)&&J.f(b.z,s.z)&&J.f(b.Q,s.Q)&&J.f(b.as,s.as)&&J.f(b.ax,s.ax)&&b.at==s.at}} -A.RT.prototype={} -A.AG.prototype={ -B5(){var s="_positionController",r=this.a.c,q=this.qq$ -if(r)A.a(q,s).bp(0) -else A.a(q,s).cd(0)}, -a8h(a){var s=this -if(s.gfk()!=null){s.a4(new A.a9Y(s,a)) -A.a(s.nz$,"_reactionController").bp(0)}}, -Kw(a){var s,r=this -if(r.gfk()==null)return -switch(r.a.c){case!1:r.gfk().$1(!0) -break -case!0:s=r.gfk() -s.$1(!1) -break -case null:r.gfk().$1(!1) -break}r.c.gF().rY(B.vr)}, -a8f(){return this.Kw(null)}, -Ik(a){var s=this -if(s.vn$!=null)s.a4(new A.a9Z(s)) -A.a(s.nz$,"_reactionController").cd(0)}, -a3C(){return this.Ik(null)}, -a8c(a){var s,r=this,q="_reactionFocusFadeController" -if(a!==r.qr$){r.a4(new A.a9W(r,a)) -s=r.Ci$ -if(a)A.a(s,q).bp(0) -else A.a(s,q).cd(0)}}, -a8e(a){var s,r=this,q="_reactionHoverFadeController" -if(a!==r.qs$){r.a4(new A.a9X(r,a)) -s=r.Ch$ -if(a)A.a(s,q).bp(0) -else A.a(s,q).cd(0)}}, -glb(){var s,r=this,q=A.aK(t.R) -if(r.gfk()==null)q.E(0,B.ag) -if(r.qs$)q.E(0,B.ap) -if(r.qr$)q.E(0,B.aD) -s=r.a.c -if(s)q.E(0,B.bf) -return q}} -A.a9Y.prototype={ -$0(){this.a.vn$=this.b.c}, -$S:0} -A.a9Z.prototype={ -$0(){this.a.vn$=null}, -$S:0} -A.a9W.prototype={ -$0(){this.a.qr$=this.b}, -$S:0} -A.a9X.prototype={ -$0(){this.a.qs$=this.b}, -$S:0} -A.tC.prototype={ -sbS(a,b){var s=this,r=s.a -if(b===r)return -if(r!=null)r.a.K(0,s.gcY()) -b.a.a2(0,s.gcY()) -s.a=b -s.ab()}, -safB(a){var s=this,r=s.b -if(a===r)return -if(r!=null)r.a.K(0,s.gcY()) -a.a.a2(0,s.gcY()) -s.b=a -s.ab()}, -safD(a){var s=this,r=s.c -if(a===r)return -if(r!=null)r.a.K(0,s.gcY()) -a.a.a2(0,s.gcY()) -s.c=a -s.ab()}, -safE(a){var s=this,r=s.d -if(a===r)return -if(r!=null)r.a.K(0,s.gcY()) -a.a.a2(0,s.gcY()) -s.d=a -s.ab()}, -sa99(a){if(J.f(this.e,a))return -this.e=a -this.ab()}, -sads(a){if(J.f(this.f,a))return -this.f=a -this.ab()}, -sadt(a){if(a.k(0,this.r))return -this.r=a -this.ab()}, -safC(a){if(a.k(0,this.w))return -this.w=a -this.ab()}, -slV(a){if(a.k(0,this.x))return -this.x=a -this.ab()}, -slQ(a){if(a.k(0,this.y))return -this.y=a -this.ab()}, -sRs(a){if(a===this.z)return -this.z=a -this.ab()}, -saby(a){if(J.f(a,this.Q))return -this.Q=a -this.ab()}, -sCX(a){if(a===this.as)return -this.as=a -this.ab()}, -sadO(a){if(a===this.at)return -this.at=a -this.ab()}, -m(a){var s=this,r=s.a -if(r!=null)r.a.K(0,s.gcY()) -r=s.b -if(r!=null)r.a.K(0,s.gcY()) -r=s.c -if(r!=null)r.a.K(0,s.gcY()) -r=s.d -if(r!=null)r.a.K(0,s.gcY()) -s.eL(0)}, -ew(a){return!0}, -vH(a){return null}, -grW(){return null}, -xg(a){return!1}, -i(a){return"#"+A.bF(this)}} -A.AJ.prototype={ -am(){return new A.oV(null,null,B.k)}} -A.oV.prototype={ -guj(){var s=this.a.c -return s==null?null.DX():s}, -aB(){var s,r=this -r.aS() -r.fr=r.dy=!1 -r.cx=$.m3.rx$.b.a!==0 -s=A.bo(null,B.cY,B.e_,null,r) -s.c1(r.ga8i()) -r.Q=s -$.m3.rx$.a2(0,r.gIe()) -$.eH.k4$.b.n(0,r.gIf(),null)}, -bH(){this.e9() -this.c.L(t.tH) -this.fx=!0}, -a0J(){var s=this.c -s.toString -switch(A.ae(s).w.a){case 4:case 3:case 5:return 24 -case 0:case 1:case 2:return 32}}, -a0I(){var s=this.c -s.toString -switch(A.ae(s).w.a){case 4:case 3:case 5:return B.n1 -case 0:case 1:case 2:return B.fF}}, -HP(){var s=this.c -s.toString -switch(A.ae(s).w.a){case 4:case 3:case 5:return 10 -case 0:case 1:case 2:return 14}}, -a2t(){var s,r=this -if(r.c==null)return -s=$.m3.rx$.b.a!==0 -if(s!==A.a(r.cx,"_mouseIsConnected"))r.a4(new A.aa3(r,s))}, -a8j(a){var s -if(a===B.w)s=A.a(this.fr,"_forceRemoval")||!A.a(this.dy,"_isConcealed") -else s=!1 -if(s)this.zW()}, -yQ(a){var s,r=this,q="_controller",p=r.ax -if(p!=null)p.aA(0) -r.ax=null -if(a){r.zW() -return}r.fr=!0 -if(r.cy){if(r.at==null){p=A.a(r.ay,"_showDuration") -s=A.a(r.Q,q) -r.at=A.bN(p,s.gPr(s))}}else if(r.at==null){p=A.a(r.ch,"_hoverShowDuration") -s=A.a(r.Q,q) -r.at=A.bN(p,s.gPr(s))}r.cy=!1}, -K_(){var s=this,r=s.at -if(r!=null)r.aA(0) -s.at=null -if(s.ax==null)s.ax=A.bN(A.a(s.CW,"_waitDuration"),s.gabT())}, -ZN(){var s,r=this -if(A.a(r.dy,"_isConcealed")||A.a(r.fr,"_forceRemoval"))return -r.dy=!0 -s=r.at -if(s!=null)s.aA(0) -r.at=null -s=r.ax -if(s!=null)s.aA(0) -r.ax=null -s=r.as -if(s!=null)s.bw(0) -A.a(r.Q,"_controller").cd(0)}, -JD(){var s,r,q=this -if(!A.a(q.dy,"_isConcealed"))return -q.dy=!1 -s=q.at -if(s!=null)s.aA(0) -q.at=null -s=q.ax -if(s!=null)s.aA(0) -q.ax=null -if(!q.as.d){s=q.c -s.toString -q.a.toString -r=s.ju(t.N1) -r.toString -s=q.as -s.toString -r.qG(0,s)}A.KP(q.guj()) -A.a(q.Q,"_controller").bp(0)}, -MW(){var s,r=this,q="_controller" -if(!A.a(r.fx,"_visible"))return!1 -s=r.ax -if(s!=null)s.aA(0) -r.ax=null -r.fr=!1 -if(A.a(r.dy,"_isConcealed")){if(A.a(r.cx,"_mouseIsConnected"))A.arf(r) -r.JD() -return!0}if(r.as!=null){s=r.at -if(s!=null)s.aA(0) -r.at=null -A.a(r.Q,q).bp(0) -return!1}r.a_0() -A.a(r.Q,q).bp(0) -return!0}, -Kx(a){if(this.c!=null)this.yQ(A.a(this.dy,"_isConcealed")||a)}, -At(){return this.Kx(!1)}, -a_0(){var s,r,q,p,o,n,m,l,k=this,j=null,i="_mouseIsConnected",h=k.c -h.toString -k.a.toString -s=h.ju(t.N1) -s.toString -h=k.c.gF() -h.toString -t.r.a(h) -r=h.k1.il(B.j) -q=A.ha(h.dj(0,s.c.gF()),r) -r=k.c.L(t.I) -r.toString -h=A.hm(j,j,k.a.c) -p=A.a(k.d,"_height") -o=A.a(k.e,"_padding") -n=A.a(k.f,"_margin") -m=A.a(k.cx,i)?new A.aa0(k):j -l=A.a(k.cx,i)?new A.aa1(k):j -r=A.rb(new A.aa2(A.aoS(new A.RU(h,p,o,n,A.a(k.r,"_decoration"),A.a(k.w,"_textStyle"),A.cn(B.P,A.a(k.Q,"_controller"),j),q,A.a(k.x,"_verticalOffset"),A.a(k.y,"_preferBelow"),m,l,j),r.f)),!1) -k.as=r -k.dy=!1 -s.qG(0,r) -A.KP(k.guj()) -if(A.a(k.cx,i))A.arf(k) -$.kB.push(k)}, -zW(){var s,r=this -B.c.B($.kB,r) -$.aDT.B(0,r) -s=r.at -if(s!=null)s.aA(0) -r.at=null -s=r.ax -if(s!=null)s.aA(0) -r.ax=null -if(!A.a(r.dy,"_isConcealed")){s=r.as -if(s!=null)s.bw(0)}r.dy=!1 -r.as=null -if(A.a(r.cx,"_mouseIsConnected"))if($.kB.length!==0)B.c.gR($.kB).JD()}, -a2O(a){if(this.as==null)return -if(t.oN.b(a)||t.Ko.b(a))this.At() -else if(t.c.b(a))this.Kx(!0)}, -dc(){var s,r=this -if(r.as!=null)r.yQ(!0) -s=r.ax -if(s!=null)s.aA(0) -r.j5()}, -m(a){var s=this -$.eH.k4$.b.B(0,s.gIf()) -$.m3.rx$.K(0,s.gIe()) -s.zW() -A.a(s.Q,"_controller").m(0) -s.UW(0)}, -a2U(){var s,r,q=this -q.cy=!0 -if(q.MW()&&A.a(q.dx,"_enableFeedback")){s=A.a(q.db,"_triggerMode") -r=q.c -if(s===B.lw){r.toString -A.apa(r)}else{r.toString -A.YP(r)}}}, -I(a,b){var s,r,q,p,o,n,m,l=this,k=null,j="_triggerMode" -if(l.guj().length===0){s=l.a.z -return s}r=A.ae(b) -b.L(t.U2) -q=A.ae(b).co -s=r.R8.z -if(r.as.a===B.a3){s.toString -p=s.By(B.n,l.HP()) -o=new A.dX(A.ak(B.e.aI(229.5),255,255,255),k,k,B.fe,k,k,B.aF)}else{s.toString -p=s.By(B.m,l.HP()) -o=new A.dX(A.ak(B.e.aI(229.5),97,97,97),k,k,B.fe,k,k,B.aF)}l.a.toString -s=q.a -l.d=s==null?l.a0J():s -l.a.toString -s=q.b -l.e=s==null?l.a0I():s -s=l.a -s.toString -n=q.c -l.f=n==null?B.aP:n -n=s.w -if(n==null)n=q.d -l.x=n==null?24:n -n=s.x -if(n==null)n=q.e -l.y=n!==!1 -s=s.y -if(s==null)s=q.f -s=s===!0 -l.z=s -n=q.r -l.r=n==null?o:n -n=q.w -l.w=n==null?p:n -l.CW=B.r -l.ay=B.AY -l.ch=B.an -l.db=B.lw -l.dx=!0 -s=A.a(s,"_excludeFromSemantics")?k:l.guj() -m=A.bq(k,l.a.z,!1,k,k,!1,k,k,k,k,s,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k) -if(A.a(l.fx,"_visible")){s=A.a(l.db,j)===B.lw?l.gIh():k -m=A.eI(B.ao,m,B.V,!0,k,k,k,k,k,k,k,s,k,k,k,k,A.a(l.db,j)===B.Rf?l.gIh():k,k,k,k,k,k,k) -if(A.a(l.cx,"_mouseIsConnected"))m=A.o5(m,B.ck,k,new A.aa4(l),new A.aa5(l),k)}return m}} -A.aa3.prototype={ -$0(){this.a.cx=this.b}, -$S:0} -A.aa0.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.K_() -return null}, -$S:42} -A.aa1.prototype={ -$1(a){return this.a.At()}, -$S:37} -A.aa2.prototype={ -$1(a){return this.a}, -$S:22} -A.aa4.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.K_() -return null}, -$S:42} -A.aa5.prototype={ -$1(a){return this.a.At()}, -$S:37} -A.agS.prototype={ -Em(a){return new A.aF(0,a.b,0,a.d)}, -Ez(a,b){return A.aIs(b,this.d,a,this.b,this.c)}, -oz(a){return!this.b.k(0,a.b)||this.c!==a.c||this.d!==a.d}} -A.RU.prototype={ -I(a,b){var s,r=this,q=null,p=A.ae(b).R8.z -p.toString -s=new A.hN(!0,q,A.iQ(!1,new A.eZ(new A.aF(0,1/0,r.d,1/0),A.jQ(A.cc(q,A.jM(new A.es(q,r.c,r.w,q,q,q,q,q,q,q),1,1),q,q,r.r,q,r.f,r.e,q),q,q,B.bJ,!0,p,q,q,B.aA),q),r.x),q) -p=r.as -if(p!=null||r.at!=null)s=A.o5(s,B.ck,q,p,r.at,q) -return A.aCB(new A.w9(new A.agS(r.y,r.z,r.Q),s,q))}} -A.DG.prototype={ -m(a){var s=this,r=s.cz$ -if(r!=null)r.K(0,s.gkh()) -s.cz$=null -s.aR(0)}, -bL(){this.cw() -this.ck() -this.ki()}} -A.AK.prototype={ -gv(a){var s=this,r=null -return A.a3(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,r,r,r,r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.AK)if(b.a==r.a)if(J.f(b.b,r.b))if(J.f(b.c,r.c))if(b.d==r.d)if(J.f(b.r,r.r))if(J.f(b.w,r.w))s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.AL.prototype={ -i(a){return"TooltipTriggerMode."+this.b}} -A.RV.prototype={} -A.KD.prototype={ -i(a){return"ScriptCategory."+this.b}} -A.AP.prototype={ -PX(a){switch(a.a){case 0:return this.c -case 1:return this.d -case 2:return this.e}}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.AP&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c.k(0,s.c)&&b.d.k(0,s.d)&&b.e.k(0,s.e)}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Sd.prototype={} -A.mQ.prototype={ -i(a){var s=this -if(s.gi9(s)===0)return A.ajZ(s.gib(),s.gic()) -if(s.gib()===0)return A.ajX(s.gi9(s),s.gic()) -return A.ajZ(s.gib(),s.gic())+" + "+A.ajX(s.gi9(s),0)}, -k(a,b){var s=this -if(b==null)return!1 -return b instanceof A.mQ&&b.gib()===s.gib()&&b.gi9(b)===s.gi9(s)&&b.gic()===s.gic()}, -gv(a){var s=this -return A.a3(s.gib(),s.gi9(s),s.gic(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.dW.prototype={ -gib(){return this.a}, -gi9(a){return 0}, -gic(){return this.b}, -a9(a,b){return new A.dW(this.a-b.a,this.b-b.b)}, -Z(a,b){return new A.dW(this.a+b.a,this.b+b.b)}, -W(a,b){return new A.dW(this.a*b,this.b*b)}, -lv(a){var s=a.a/2,r=a.b/2 -return new A.m(s+this.a*s,r+this.b*r)}, -B4(a){var s=a.a/2,r=a.b/2 -return new A.m(s+this.a*s,r+this.b*r)}, -CM(a,b){var s=b.a,r=a.a,q=(b.c-s-r)/2,p=b.b,o=a.b,n=(b.d-p-o)/2 -s=s+q+this.a*q -p=p+n+this.b*n -return new A.w(s,p,s+r,p+o)}, -O(a){return this}, -i(a){return A.ajZ(this.a,this.b)}} -A.eF.prototype={ -gib(){return 0}, -gi9(a){return this.a}, -gic(){return this.b}, -a9(a,b){return new A.eF(this.a-b.a,this.b-b.b)}, -Z(a,b){return new A.eF(this.a+b.a,this.b+b.b)}, -W(a,b){return new A.eF(this.a*b,this.b*b)}, -O(a){var s=this -switch(a.a){case 0:return new A.dW(-s.a,s.b) -case 1:return new A.dW(s.a,s.b)}}, -i(a){return A.ajX(this.a,this.b)}} -A.P6.prototype={ -W(a,b){return new A.P6(this.a*b,this.b*b,this.c*b)}, -O(a){var s=this -switch(a.a){case 0:return new A.dW(s.a-s.b,s.c) -case 1:return new A.dW(s.a+s.b,s.c)}}, -gib(){return this.a}, -gi9(a){return this.b}, -gic(){return this.c}} -A.LE.prototype={ -i(a){return"TextAlignVertical(y: "+this.a+")"}} -A.rt.prototype={ -i(a){return"RenderComparison."+this.b}} -A.vy.prototype={ -i(a){return"Axis."+this.b}} -A.AU.prototype={ -i(a){return"VerticalDirection."+this.b}} -A.mV.prototype={ -i(a){return"AxisDirection."+this.b}} -A.yu.prototype={ -NQ(a,b,c,d){return A.amh(a,!1,c,d)}, -adF(a){return this.NQ(a,!1,null,null)}, -$idR:1} -A.Rx.prototype={ -ab(){var s,r,q -for(s=this.a,s=A.ir(s,s.r),r=A.n(s).c;s.t();){q=s.d;(q==null?r.a(q):q).$0()}}, -a2(a,b){this.a.E(0,b)}, -K(a,b){this.a.B(0,b)}} -A.vz.prototype={ -xt(a){var s=this -return new A.Ck(s.gez().a9(0,a.gez()),s.ghc().a9(0,a.ghc()),s.gh1().a9(0,a.gh1()),s.ghB().a9(0,a.ghB()),s.geA().a9(0,a.geA()),s.ghb().a9(0,a.ghb()),s.ghC().a9(0,a.ghC()),s.gh0().a9(0,a.gh0()))}, -E(a,b){var s=this -return new A.Ck(s.gez().Z(0,b.gez()),s.ghc().Z(0,b.ghc()),s.gh1().Z(0,b.gh1()),s.ghB().Z(0,b.ghB()),s.geA().Z(0,b.geA()),s.ghb().Z(0,b.ghb()),s.ghC().Z(0,b.ghC()),s.gh0().Z(0,b.gh0()))}, -i(a){var s,r,q,p,o=this -if(o.gez().k(0,o.ghc())&&o.ghc().k(0,o.gh1())&&o.gh1().k(0,o.ghB()))if(!o.gez().k(0,B.K))s=o.gez().a===o.gez().b?"BorderRadius.circular("+B.e.V(o.gez().a,1)+")":"BorderRadius.all("+o.gez().i(0)+")" -else s=null -else{r=""+"BorderRadius.only(" -if(!o.gez().k(0,B.K)){r+="topLeft: "+o.gez().i(0) -q=!0}else q=!1 -if(!o.ghc().k(0,B.K)){if(q)r+=", " -r+="topRight: "+o.ghc().i(0) -q=!0}if(!o.gh1().k(0,B.K)){if(q)r+=", " -r+="bottomLeft: "+o.gh1().i(0) -q=!0}if(!o.ghB().k(0,B.K)){if(q)r+=", " -r+="bottomRight: "+o.ghB().i(0)}r+=")" -s=r.charCodeAt(0)==0?r:r}if(o.geA().k(0,o.ghb())&&o.ghb().k(0,o.gh0())&&o.gh0().k(0,o.ghC()))if(!o.geA().k(0,B.K))p=o.geA().a===o.geA().b?"BorderRadiusDirectional.circular("+B.e.V(o.geA().a,1)+")":"BorderRadiusDirectional.all("+o.geA().i(0)+")" -else p=null -else{r=""+"BorderRadiusDirectional.only(" -if(!o.geA().k(0,B.K)){r+="topStart: "+o.geA().i(0) -q=!0}else q=!1 -if(!o.ghb().k(0,B.K)){if(q)r+=", " -r+="topEnd: "+o.ghb().i(0) -q=!0}if(!o.ghC().k(0,B.K)){if(q)r+=", " -r+="bottomStart: "+o.ghC().i(0) -q=!0}if(!o.gh0().k(0,B.K)){if(q)r+=", " -r+="bottomEnd: "+o.gh0().i(0)}r+=")" -p=r.charCodeAt(0)==0?r:r}r=s!=null -if(r&&p!=null)return A.e(s)+" + "+p -if(r)return s -if(p!=null)return p -return"BorderRadius.zero"}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.vz&&b.gez().k(0,s.gez())&&b.ghc().k(0,s.ghc())&&b.gh1().k(0,s.gh1())&&b.ghB().k(0,s.ghB())&&b.geA().k(0,s.geA())&&b.ghb().k(0,s.ghb())&&b.ghC().k(0,s.ghC())&&b.gh0().k(0,s.gh0())}, -gv(a){var s=this -return A.a3(s.gez(),s.ghc(),s.gh1(),s.ghB(),s.geA(),s.ghb(),s.ghC(),s.gh0(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.cI.prototype={ -gez(){return this.a}, -ghc(){return this.b}, -gh1(){return this.c}, -ghB(){return this.d}, -geA(){return B.K}, -ghb(){return B.K}, -ghC(){return B.K}, -gh0(){return B.K}, -dM(a){var s=this -return A.a48(a,s.c,s.d,s.a,s.b)}, -xt(a){if(a instanceof A.cI)return this.a9(0,a) -return this.RM(a)}, -E(a,b){if(b instanceof A.cI)return this.Z(0,b) -return this.RL(0,b)}, -a9(a,b){var s=this -return new A.cI(s.a.a9(0,b.a),s.b.a9(0,b.b),s.c.a9(0,b.c),s.d.a9(0,b.d))}, -Z(a,b){var s=this -return new A.cI(s.a.Z(0,b.a),s.b.Z(0,b.b),s.c.Z(0,b.c),s.d.Z(0,b.d))}, -W(a,b){var s=this -return new A.cI(s.a.W(0,b),s.b.W(0,b),s.c.W(0,b),s.d.W(0,b))}, -O(a){return this}} -A.Ck.prototype={ -W(a,b){var s=this -return new A.Ck(s.a.W(0,b),s.b.W(0,b),s.c.W(0,b),s.d.W(0,b),s.e.W(0,b),s.f.W(0,b),s.r.W(0,b),s.w.W(0,b))}, -O(a){var s=this -switch(a.a){case 0:return new A.cI(s.a.Z(0,s.f),s.b.Z(0,s.e),s.c.Z(0,s.w),s.d.Z(0,s.r)) -case 1:return new A.cI(s.a.Z(0,s.e),s.b.Z(0,s.f),s.c.Z(0,s.r),s.d.Z(0,s.w))}}, -gez(){return this.a}, -ghc(){return this.b}, -gh1(){return this.c}, -ghB(){return this.d}, -geA(){return this.e}, -ghb(){return this.f}, -ghC(){return this.r}, -gh0(){return this.w}} -A.vA.prototype={ -i(a){return"BorderStyle."+this.b}} -A.ds.prototype={ -bd(a,b){var s=Math.max(0,this.b*b),r=b<=0?B.cg:this.c -return new A.ds(this.a,s,r)}, -jL(){switch(this.c.a){case 1:var s=$.aJ()?A.aT():new A.aO(new A.aQ()) -s.sad(0,this.a) -s.sf5(this.b) -s.scj(0,B.T) -return s -case 0:s=$.aJ()?A.aT():new A.aO(new A.aQ()) -s.sad(0,B.a5) -s.sf5(0) -s.scj(0,B.T) -return s}}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.ds&&b.a.k(0,s.a)&&b.b===s.b&&b.c===s.c}, -gv(a){return A.a3(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"BorderSide("+this.a.i(0)+", "+B.e.V(this.b,1)+", "+this.c.i(0)+")"}} -A.bG.prototype={ -he(a,b,c){return null}, -E(a,b){return this.he(a,b,!1)}, -Z(a,b){var s=this.E(0,b) -if(s==null)s=b.he(0,this,!0) -return s==null?new A.hp(A.b([b,this],t.N_)):s}, -du(a,b){if(a==null)return this.bd(0,b) -return null}, -dv(a,b){if(a==null)return this.bd(0,1-b) -return null}, -i(a){return"ShapeBorder()"}} -A.eM.prototype={} -A.hp.prototype={ -ghk(){return B.c.qx(this.a,B.aP,new A.abW())}, -he(a,b,c){var s,r,q,p=b instanceof A.hp -if(!p){s=this.a -r=c?B.c.gR(s):B.c.gJ(s) -q=r.he(0,b,c) -if(q==null)q=b.he(0,r,!c) -if(q!=null){p=A.ap(s,!0,t.RY) -p[c?p.length-1:0]=q -return new A.hp(p)}}s=A.b([],t.N_) -if(c)B.c.P(s,this.a) -if(p)B.c.P(s,b.a) -else s.push(b) -if(!c)B.c.P(s,this.a) -return new A.hp(s)}, -E(a,b){return this.he(a,b,!1)}, -bd(a,b){var s=this.a,r=A.af(s).j("az<1,bG>") -return new A.hp(A.ap(new A.az(s,new A.abX(b),r),!0,r.j("bl.E")))}, -du(a,b){return A.arz(a,this,b)}, -dv(a,b){return A.arz(this,a,b)}, -f1(a,b){return B.c.gJ(this.a).f1(a,b)}, -hY(a,b,c){var s,r,q,p,o -for(s=this.a,r=s.length,q=0;q") -return new A.az(new A.ch(s,r),new A.abY(),r.j("az")).bB(0," + ")}} -A.abW.prototype={ -$2(a,b){return a.E(0,b.ghk())}, -$S:279} -A.abX.prototype={ -$1(a){return a.bd(0,this.a)}, -$S:280} -A.abY.prototype={ -$1(a){return a.i(0)}, -$S:281} -A.vI.prototype={ -i(a){return"BoxShape."+this.b}} -A.Fr.prototype={ -he(a,b,c){return null}, -E(a,b){return this.he(a,b,!1)}, -f1(a,b){var s=A.d4() -s.kl(0,a) -return s}} -A.dJ.prototype={ -ghk(){var s=this -return new A.as(s.d.b,s.a.b,s.b.b,s.c.b)}, -gGU(){var s=this,r=s.a.a -return s.b.a.k(0,r)&&s.c.a.k(0,r)&&s.d.a.k(0,r)}, -gLj(){var s=this,r=s.a.b -return s.b.b===r&&s.c.b===r&&s.d.b===r}, -gKe(){var s=this,r=s.a.c -return s.b.c===r&&s.c.c===r&&s.d.c===r}, -he(a,b,c){var s=this -if(b instanceof A.dJ&&A.jK(s.a,b.a)&&A.jK(s.b,b.b)&&A.jK(s.c,b.c)&&A.jK(s.d,b.d))return new A.dJ(A.hz(s.a,b.a),A.hz(s.b,b.b),A.hz(s.c,b.c),A.hz(s.d,b.d)) -return null}, -E(a,b){return this.he(a,b,!1)}, -bd(a,b){var s=this -return new A.dJ(s.a.bd(0,b),s.b.bd(0,b),s.c.bd(0,b),s.d.bd(0,b))}, -du(a,b){if(a instanceof A.dJ)return A.ak1(a,this,b) -return this.j3(a,b)}, -dv(a,b){if(a instanceof A.dJ)return A.ak1(this,a,b) -return this.j4(a,b)}, -wa(a,b,c,d,e){var s,r=this -if(r.gGU()&&r.gLj()&&r.gKe()){s=r.a -switch(s.c.a){case 0:return -case 1:switch(d.a){case 1:A.aor(a,b,s) -break -case 0:if(c!=null){A.aos(a,b,s,c) -return}A.aot(a,b,s) -break}return}}A.atY(a,b,r.c,r.d,r.b,r.a)}, -hY(a,b,c){return this.wa(a,b,null,B.aF,c)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.dJ&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c.k(0,s.c)&&b.d.k(0,s.d)}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s,r,q=this -if(q.gGU()&&q.gLj()&&q.gKe())return"Border.all("+q.a.i(0)+")" -s=A.b([],t.s) -r=q.a -if(!r.k(0,B.t))s.push("top: "+r.i(0)) -r=q.b -if(!r.k(0,B.t))s.push("right: "+r.i(0)) -r=q.c -if(!r.k(0,B.t))s.push("bottom: "+r.i(0)) -r=q.d -if(!r.k(0,B.t))s.push("left: "+r.i(0)) -return"Border("+B.c.bB(s,", ")+")"}} -A.ek.prototype={ -ghk(){var s=this -return new A.f2(s.b.b,s.a.b,s.c.b,s.d.b)}, -gadW(){var s,r,q=this,p=q.a,o=p.a,n=q.b -if(!n.a.k(0,o)||!q.c.a.k(0,o)||!q.d.a.k(0,o))return!1 -s=p.b -if(n.b!==s||q.c.b!==s||q.d.b!==s)return!1 -r=p.c -if(n.c!==r||q.c.c!==r||q.d.c!==r)return!1 -return!0}, -he(a,b,c){var s,r,q,p=this,o=null -if(b instanceof A.ek){s=p.a -r=b.a -if(A.jK(s,r)&&A.jK(p.b,b.b)&&A.jK(p.c,b.c)&&A.jK(p.d,b.d))return new A.ek(A.hz(s,r),A.hz(p.b,b.b),A.hz(p.c,b.c),A.hz(p.d,b.d)) -return o}if(b instanceof A.dJ){s=b.a -r=p.a -if(!A.jK(s,r)||!A.jK(b.c,p.d))return o -q=p.b -if(!q.k(0,B.t)||!p.c.k(0,B.t)){if(!b.d.k(0,B.t)||!b.b.k(0,B.t))return o -return new A.ek(A.hz(s,r),q,p.c,A.hz(b.c,p.d))}return new A.dJ(A.hz(s,r),b.b,A.hz(b.c,p.d),b.d)}return o}, -E(a,b){return this.he(a,b,!1)}, -bd(a,b){var s=this -return new A.ek(s.a.bd(0,b),s.b.bd(0,b),s.c.bd(0,b),s.d.bd(0,b))}, -du(a,b){if(a instanceof A.ek)return A.ak0(a,this,b) -return this.j3(a,b)}, -dv(a,b){if(a instanceof A.ek)return A.ak0(this,a,b) -return this.j4(a,b)}, -wa(a,b,c,d,e){var s,r,q,p=this -if(p.gadW()){s=p.a -switch(s.c.a){case 0:return -case 1:switch(d.a){case 1:A.aor(a,b,s) -break -case 0:if(c!=null){A.aos(a,b,s,c) -return}A.aot(a,b,s) -break}return}}switch(e.a){case 0:r=p.c -q=p.b -break -case 1:r=p.b -q=p.c -break -default:r=null -q=null}A.atY(a,b,p.d,r,q,p.a)}, -hY(a,b,c){return this.wa(a,b,null,B.aF,c)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.ek&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c.k(0,s.c)&&b.d.k(0,s.d)}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=this,r=A.b([],t.s),q=s.a -if(!q.k(0,B.t))r.push("top: "+q.i(0)) -q=s.b -if(!q.k(0,B.t))r.push("start: "+q.i(0)) -q=s.c -if(!q.k(0,B.t))r.push("end: "+q.i(0)) -q=s.d -if(!q.k(0,B.t))r.push("bottom: "+q.i(0)) -return"BorderDirectional("+B.c.bB(r,", ")+")"}} -A.dX.prototype={ -gdw(a){var s=this.c -return s==null?null:s.ghk()}, -bd(a,b){var s=this,r=null,q=A.A(r,s.a,b),p=A.aou(r,s.c,b),o=A.mZ(r,s.d,b),n=A.aox(r,s.e,b) -return new A.dX(q,s.b,p,o,n,r,s.w)}, -gCU(){return this.e!=null}, -du(a,b){if(a==null)return this.bd(0,b) -if(a instanceof A.dX)return A.aov(a,this,b) -return this.Sl(a,b)}, -dv(a,b){if(a==null)return this.bd(0,1-b) -if(a instanceof A.dX)return A.aov(this,a,b) -return this.Sm(a,b)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.dX)if(J.f(b.a,r.a))if(J.f(b.b,r.b))if(J.f(b.c,r.c))if(J.f(b.d,r.d))if(A.dV(b.e,r.e))s=b.w===r.w -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this,r=s.e -r=r==null?null:A.f9(r) -return A.a3(s.a,s.b,s.c,s.d,r,s.f,null,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -NF(a,b,c){var s -switch(this.w.a){case 0:s=this.d -if(s!=null)return s.O(c).dM(new A.w(0,0,0+a.a,0+a.b)).A(0,b) -return!0 -case 1:return b.a9(0,a.il(B.j)).gcE()<=Math.min(a.a,a.b)/2}}, -Mj(a){return new A.MS(this,a)}} -A.MS.prototype={ -J1(a,b,c,d){var s=this.b -switch(s.w.a){case 1:a.dZ(0,b.gaT(),b.gdR()/2,c) -break -case 0:s=s.d -if(s==null)a.c9(0,b,c) -else a.cm(0,s.O(d).dM(b),c) -break}}, -a5l(a,b,c){var s,r,q,p,o,n,m=this.b.e -if(m==null)return -for(s=m.length,r=0;r0?n*0.57735+0.5:0)) -o=b.c8(q.b) -n=q.d -this.J1(a,new A.w(o.a-n,o.b-n,o.c+n,o.d+n),p,c)}}, -a5g(a,b,c){var s,r,q=this,p=q.b,o=p.b -if(o==null)return -if(q.e==null)q.e=new A.GD(o,q.a) -switch(p.w.a){case 1:s=A.lY(b.gaT(),b.gdR()/2) -r=A.d4() -r.pD(0,s) -break -case 0:p=p.d -if(p!=null){r=A.d4() -r.fB(0,p.O(c.d).dM(b))}else r=null -break -default:r=null}q.e.afg(a,b,r,c)}, -m(a){var s,r=this.e -if(r!=null){s=r.d -if(s!=null)s.a.m(0) -r.d=null}this.RO(0)}, -jE(a,b,c){var s,r,q,p=this,o=c.e,n=b.a,m=b.b,l=new A.w(n,m,n+o.a,m+o.b),k=c.d -p.a5l(a,l,k) -o=p.b -n=o.a -m=n==null -if(!m||!1){s=p.c -if(s!=null)r=!1 -else r=!0 -if(r){q=$.aJ()?A.aT():new A.aO(new A.aQ()) -if(!m)q.sad(0,n) -p.c=q -n=q}else n=s -n.toString -p.J1(a,l,n,k)}p.a5g(a,l,c) -n=o.c -if(n!=null){m=o.d -m=m==null?null:m.O(k) -n.wa(a,l,m,o.w,k)}}, -i(a){return"BoxPainter for "+this.b.i(0)}} -A.Fs.prototype={ -i(a){return"BoxFit."+this.b}} -A.Hd.prototype={} -A.fU.prototype={ -bd(a,b){var s=this -return new A.fU(s.d*b,s.e,s.a,s.b.W(0,b),s.c*b)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.fU&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=this -return"BoxShadow("+s.a.i(0)+", "+s.b.i(0)+", "+A.iv(s.c)+", "+A.iv(s.d)+"), "+s.e.i(0)}} -A.dt.prototype={ -ghk(){var s=this.a.b -return new A.as(s,s,s,s)}, -bd(a,b){return new A.dt(this.a.bd(0,b))}, -du(a,b){if(a instanceof A.dt)return new A.dt(A.aE(a.a,this.a,b)) -return this.j3(a,b)}, -dv(a,b){if(a instanceof A.dt)return new A.dt(A.aE(this.a,a.a,b)) -return this.j4(a,b)}, -f1(a,b){var s=A.d4() -s.pD(0,A.lY(a.gaT(),a.gdR()/2)) -return s}, -ni(a){return new A.dt(a==null?this.a:a)}, -hY(a,b,c){var s=this.a -switch(s.c.a){case 0:break -case 1:a.dZ(0,b.gaT(),(b.gdR()-s.b)/2,s.jL()) -break}}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.dt&&b.a.k(0,this.a)}, -gv(a){var s=this.a -return A.a3(s.a,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"CircleBorder("+this.a.i(0)+")"}} -A.VM.prototype={ -yn(a,b,c,d){var s,r=this -r.gc2(r).bF(0) -switch(b.a){case 0:break -case 1:a.$1(!1) -break -case 2:a.$1(!0) -break -case 3:a.$1(!0) -s=r.gc2(r) -s.f2(0,c,$.aJ()?A.aT():new A.aO(new A.aQ())) -break}d.$0() -if(b===B.cU)r.gc2(r).bt(0) -r.gc2(r).bt(0)}, -aac(a,b,c,d){this.yn(new A.VN(this,a),b,c,d)}, -aae(a,b,c,d){this.yn(new A.VO(this,a),b,c,d)}, -aaf(a,b,c,d){this.yn(new A.VP(this,a),b,c,d)}} -A.VN.prototype={ -$1(a){var s=this.a -return s.gc2(s).uQ(0,this.b,a)}, -$S:5} -A.VO.prototype={ -$1(a){var s=this.a -return s.gc2(s).uR(0,this.b,a)}, -$S:5} -A.VP.prototype={ -$1(a){var s=this.a -return s.gc2(s).LU(0,this.b,a)}, -$S:5} -A.lf.prototype={ -h(a,b){return this.b.h(0,b)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return s.Sc(0,b)&&A.n(s).j("lf").b(b)&&A.aje(b.b,s.b)}, -gv(a){return A.a3(A.C(this),this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"ColorSwatch(primary value: "+this.Sd(0)+")"}} -A.iL.prototype={ -cv(){return"Decoration"}, -gdw(a){return B.aP}, -gCU(){return!1}, -du(a,b){return null}, -dv(a,b){return null}, -NF(a,b,c){return!0}} -A.Ft.prototype={ -m(a){}} -A.Nx.prototype={} -A.nL.prototype={ -i(a){return"ImageRepeat."+this.b}} -A.GD.prototype={ -afg(a,b,c,d){var s,r,q=this,p=null,o=q.a,n=o.a.O(d) -n.gcG(n) -q.c=n -n.a2(0,new A.h3(q.ga2a(),p,o.b)) -if(q.d==null)return -o=c!=null -if(o){a.bF(0) -a.fF(0,c)}s=q.d -r=s.a -A.atZ(B.M,a,p,p,s.c,B.n3,p,!1,r,!1,!1,1,b,B.cr,s.b) -if(o)a.bt(0)}, -a2b(a,b){var s,r,q=this -if(J.f(q.d,a))return -s=q.d -if(s!=null)if(a.a.CT(s.a)){r=s.b -s=r===r&&a.c==s.c}else s=!1 -else s=!1 -if(s){a.a.m(0) -return}s=q.d -if(s!=null)s.a.m(0) -q.d=a -if(!b)q.b.$0()}, -i(a){return"DecorationImagePainter(stream: "+A.e(this.c)+", image: "+A.e(this.d)+") for "+this.a.i(0)}} -A.cd.prototype={ -giy(){var s=this -return s.geb(s)+s.ged(s)+s.gf8(s)+s.gf9()}, -a9p(a){var s=this -switch(a.a){case 0:return s.giy() -case 1:return s.gcJ(s)+s.gcR(s)}}, -E(a,b){var s=this -return new A.mz(s.geb(s)+b.geb(b),s.ged(s)+b.ged(b),s.gf8(s)+b.gf8(b),s.gf9()+b.gf9(),s.gcJ(s)+b.gcJ(b),s.gcR(s)+b.gcR(b))}, -G(a,b,c){var s=this -return new A.mz(B.e.G(s.geb(s),b.a,c.a),B.e.G(s.ged(s),b.c,c.b),B.e.G(s.gf8(s),0,c.c),B.e.G(s.gf9(),0,c.d),B.e.G(s.gcJ(s),b.b,c.e),B.e.G(s.gcR(s),b.d,c.f))}, -i(a){var s=this -if(s.gf8(s)===0&&s.gf9()===0){if(s.geb(s)===0&&s.ged(s)===0&&s.gcJ(s)===0&&s.gcR(s)===0)return"EdgeInsets.zero" -if(s.geb(s)===s.ged(s)&&s.ged(s)===s.gcJ(s)&&s.gcJ(s)===s.gcR(s))return"EdgeInsets.all("+B.e.V(s.geb(s),1)+")" -return"EdgeInsets("+B.e.V(s.geb(s),1)+", "+B.e.V(s.gcJ(s),1)+", "+B.e.V(s.ged(s),1)+", "+B.e.V(s.gcR(s),1)+")"}if(s.geb(s)===0&&s.ged(s)===0)return"EdgeInsetsDirectional("+B.e.V(s.gf8(s),1)+", "+B.e.V(s.gcJ(s),1)+", "+B.e.V(s.gf9(),1)+", "+B.e.V(s.gcR(s),1)+")" -return"EdgeInsets("+B.e.V(s.geb(s),1)+", "+B.e.V(s.gcJ(s),1)+", "+B.e.V(s.ged(s),1)+", "+B.e.V(s.gcR(s),1)+") + EdgeInsetsDirectional("+B.e.V(s.gf8(s),1)+", 0.0, "+B.e.V(s.gf9(),1)+", 0.0)"}, -k(a,b){var s=this -if(b==null)return!1 -return b instanceof A.cd&&b.geb(b)===s.geb(s)&&b.ged(b)===s.ged(s)&&b.gf8(b)===s.gf8(s)&&b.gf9()===s.gf9()&&b.gcJ(b)===s.gcJ(s)&&b.gcR(b)===s.gcR(s)}, -gv(a){var s=this -return A.a3(s.geb(s),s.ged(s),s.gf8(s),s.gf9(),s.gcJ(s),s.gcR(s),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.as.prototype={ -geb(a){return this.a}, -gcJ(a){return this.b}, -ged(a){return this.c}, -gcR(a){return this.d}, -gf8(a){return 0}, -gf9(){return 0}, -CL(a){var s=this -return new A.w(a.a-s.a,a.b-s.b,a.c+s.c,a.d+s.d)}, -E(a,b){if(b instanceof A.as)return this.Z(0,b) -return this.Fs(0,b)}, -G(a,b,c){var s=this -return new A.as(B.e.G(s.a,b.a,c.a),B.e.G(s.b,b.b,c.e),B.e.G(s.c,b.c,c.b),B.e.G(s.d,b.d,c.f))}, -a9(a,b){var s=this -return new A.as(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, -Z(a,b){var s=this -return new A.as(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, -W(a,b){var s=this -return new A.as(s.a*b,s.b*b,s.c*b,s.d*b)}, -O(a){return this}, -lI(a,b,c,d){var s=this,r=b==null?s.a:b,q=d==null?s.b:d,p=c==null?s.c:c -return new A.as(r,q,p,a==null?s.d:a)}, -uY(a){return this.lI(a,null,null,null)}, -aaL(a,b){return this.lI(a,null,null,b)}, -aaP(a,b){return this.lI(null,a,b,null)}} -A.f2.prototype={ -gf8(a){return this.a}, -gcJ(a){return this.b}, -gf9(){return this.c}, -gcR(a){return this.d}, -geb(a){return 0}, -ged(a){return 0}, -E(a,b){if(b instanceof A.f2)return this.Z(0,b) -return this.Fs(0,b)}, -a9(a,b){var s=this -return new A.f2(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, -Z(a,b){var s=this -return new A.f2(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, -W(a,b){var s=this -return new A.f2(s.a*b,s.b*b,s.c*b,s.d*b)}, -O(a){var s=this -switch(a.a){case 0:return new A.as(s.c,s.b,s.a,s.d) -case 1:return new A.as(s.a,s.b,s.c,s.d)}}} -A.mz.prototype={ -W(a,b){var s=this -return new A.mz(s.a*b,s.b*b,s.c*b,s.d*b,s.e*b,s.f*b)}, -O(a){var s=this -switch(a.a){case 0:return new A.as(s.d+s.a,s.e,s.c+s.b,s.f) -case 1:return new A.as(s.c+s.a,s.e,s.d+s.b,s.f)}}, -geb(a){return this.a}, -ged(a){return this.b}, -gf8(a){return this.c}, -gf9(){return this.d}, -gcJ(a){return this.e}, -gcR(a){return this.f}} -A.a07.prototype={ -aG(a){var s,r,q,p -for(s=this.b,r=s.gb2(s),r=new A.eq(J.av(r.a),r.b),q=A.n(r).z[1];r.t();){p=r.a;(p==null?q.a(p):p).m(0)}s.aG(0) -this.a.aG(0) -this.f=0}, -N1(a){var s,r,q,p=this,o=p.c.B(0,a) -if(o!=null){s=o.a -r=A.a(o.d,"_handleRemove") -if(s.w)A.K(A.X(u.V)) -B.c.B(s.x,r) -o.FU(0)}q=p.a.B(0,a) -if(q!=null){q.a.K(0,q.b) -return!0}o=p.b.B(0,a) -if(o!=null){s=p.f -r=o.b -r.toString -p.f=s-r -o.m(0) -return!0}return!1}, -Ky(a,b,c){var s,r=this,q=b.b -if(q!=null&&q<=104857600&&!0){s=r.f -q.toString -r.f=s+q -r.b.n(0,a,b) -r.Zo(c)}else b.m(0)}, -Au(a,b,c){var s=this.c.bs(0,a,new A.a09(this,b,a)) -if(s.b==null)s.b=c}, -P0(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=this,i=null,h={} -h.a=h.b=null -q=j.a -p=q.h(0,b) -o=p==null?i:p.a -h.c=o -if(o!=null)return o -p=j.b -n=p.B(0,b) -if(n!=null){h=n.a -j.Au(b,h,n.b) -p.n(0,b,n) -return h}m=j.c.h(0,b) -if(m!=null){h=m.a -q=m.b -if(h.w)A.K(A.X(u.V)) -p=new A.qM(h) -p.tf(h) -j.Ky(b,new A.B9(h,q,p),i) -return h}try{o=h.c=c.$0() -j.Au(b,o,i) -p=o}catch(l){s=A.ab(l) -r=A.aA(l) -d.$2(s,r) -return i}h.d=!1 -h.e=null -k=new A.h3(new A.a0a(h,j,b),i,i) -q.n(0,b,new A.Pw(p,k)) -h.c.a2(0,k) -return h.c}, -Zo(a){var s,r,q,p,o,n=this,m=n.b,l=A.n(m).j("b3<1>") -while(!0){if(!(n.f>104857600||m.a>1000))break -s=new A.b3(m,l) -r=s.ga1(s) -if(!r.t())A.K(A.bB()) -q=r.gH(r) -p=m.h(0,q) -s=n.f -o=p.b -o.toString -n.f=s-o -p.m(0) -m.B(0,q)}}} -A.a09.prototype={ -$0(){return A.aEG(this.b,new A.a08(this.a,this.c))}, -$S:283} -A.a08.prototype={ -$0(){this.a.c.B(0,this.b)}, -$S:0} -A.a0a.prototype={ -$2(a,b){var s,r,q,p,o,n -if(a!=null){s=a.a -r=s.gbk(s)*s.gaQ(s)*4 -s.m(0)}else r=null -s=this.a -q=s.c -if(q.w)A.K(A.X(u.V)) -p=new A.qM(q) -p.tf(q) -o=new A.B9(q,r,p) -p=this.b -q=this.c -p.Au(q,s.c,r) -if(s.e==null)p.Ky(q,o,s.a) -else o.m(0) -n=s.e -if(n==null)n=p.a.B(0,q) -if(n!=null)n.a.K(0,n.b) -s.d=!0}, -$S:284} -A.MY.prototype={ -m(a){$.bK.ch$.push(new A.abM(this))}} -A.abM.prototype={ -$1(a){var s=this.a,r=s.c -if(r!=null)r.m(0) -s.c=null}, -$S:2} -A.B9.prototype={} -A.up.prototype={ -Y6(a,b,c){var s=new A.adY(this,b) -this.d=s -s=A.a(s,"_handleRemove") -if(a.w)A.K(A.X(u.V)) -a.x.push(s)}, -i(a){return"#"+A.bF(this)}} -A.adY.prototype={ -$0(){var s,r,q -this.b.$0() -s=this.a -r=s.a -q=A.a(s.d,"_handleRemove") -if(r.w)A.K(A.X(u.V)) -B.c.B(r.x,q) -s.FU(0)}, -$S:0} -A.Pw.prototype={} -A.x6.prototype={ -Mc(a){var s=this -return new A.x6(s.a,s.b,s.c,s.d,a,s.f)}, -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.x6&&b.a==s.a&&b.b==s.b&&J.f(b.c,s.c)&&b.d==s.d&&J.f(b.e,s.e)&&b.f==s.f}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s,r=this,q=""+"ImageConfiguration(",p=r.a -if(p!=null){q+="bundle: "+p.i(0) -s=!0}else s=!1 -p=r.b -if(p!=null){if(s)q+=", " -p=q+("devicePixelRatio: "+B.e.V(p,1)) -q=p -s=!0}p=r.c -if(p!=null){if(s)q+=", " -p=q+("locale: "+p.i(0)) -q=p -s=!0}p=r.d -if(p!=null){if(s)q+=", " -p=q+("textDirection: "+p.i(0)) -q=p -s=!0}p=r.e -if(p!=null){if(s)q+=", " -p=q+("size: "+p.i(0)) -q=p -s=!0}p=r.f -if(p!=null){if(s)q+=", " -p=q+("platform: "+p.b) -q=p}q+=")" -return q.charCodeAt(0)==0?q:q}} -A.hP.prototype={ -O(a){var s=new A.a0i() -this.ZX(a,new A.a0g(this,a,s),new A.a0h(this,a,s)) -return s}, -ZX(a,b,c){var s,r,q,p,o,n={} -n.a=null -n.b=!1 -s=new A.a0d(n,c) -r=null -try{r=this.Dl(a)}catch(o){q=A.ab(o) -p=A.aA(o) -s.$2(q,p) -return}J.ajT(r,new A.a0c(n,this,b,s),t.H).hI(s)}, -rk(a,b,c,d){var s,r="_imageCache" -if(b.a!=null){A.a($.fa.kx$,r).P0(0,c,new A.a0e(b),d) -return}s=A.a($.fa.kx$,r).P0(0,c,new A.a0f(this,c),d) -if(s!=null)b.EZ(s)}, -i(a){return"ImageConfiguration()"}} -A.a0g.prototype={ -$2(a,b){this.a.rk(this.b,this.c,a,b)}, -$S(){return A.n(this.a).j("~(hP.T,~(D,c7?))")}} -A.a0h.prototype={ -$3(a,b,c){return this.PV(a,b,c)}, -PV(a,b,c){var s=0,r=A.S(t.H),q=this,p -var $async$$3=A.T(function(d,e){if(d===1)return A.P(e,r) -while(true)switch(s){case 0:s=2 -return A.U(null,$async$$3) -case 2:p=q.c -if(p.a==null)p.EZ(new A.acz(A.b([],t.XZ),A.b([],t.b))) -p=p.a -p.toString -p.wm(A.bi("while resolving an image"),b,null,!0,c) -return A.Q(null,r)}}) -return A.R($async$$3,r)}, -$S(){return A.n(this.a).j("a7<~>(hP.T?,D,c7?)")}} -A.a0d.prototype={ -PU(a,b){var s=0,r=A.S(t.H),q,p=this,o -var $async$$2=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:o=p.a -if(o.b){s=1 -break}p.b.$3(o.a,a,b) -o.b=!0 -case 1:return A.Q(q,r)}}) -return A.R($async$$2,r)}, -$2(a,b){return this.PU(a,b)}, -$S:285} -A.a0c.prototype={ -$1(a){var s,r,q,p=this -p.a.a=a -try{p.c.$2(a,p.d)}catch(q){s=A.ab(q) -r=A.aA(q) -p.d.$2(s,r)}}, -$S(){return A.n(this.b).j("aG(hP.T)")}} -A.a0e.prototype={ -$0(){var s=this.a.a -s.toString -return s}, -$S:110} -A.a0f.prototype={ -$0(){return this.a.D5(0,this.b,$.fa.gadE())}, -$S:110} -A.iC.prototype={ -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.iC&&b.a===s.a&&b.b===s.b&&b.c===s.c}, -gv(a){return A.a3(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"AssetBundleImageKey(bundle: "+this.a.i(0)+', name: "'+this.b+'", scale: '+A.e(this.c)+")"}, -gaN(a){return this.b}} -A.F8.prototype={ -D5(a,b,c){return A.aC8(this.tQ(b,c),b.b,null,b.c)}, -tQ(a,b){return this.a4s(a,b)}, -a4s(a,b){var s=0,r=A.S(t.hP),q,p=2,o,n=[],m,l,k -var $async$tQ=A.T(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:l=null -p=4 -s=7 -return A.U(a.a.dI(0,a.b),$async$tQ) -case 7:l=d -p=2 -s=6 -break -case 4:p=3 -k=o -if(A.ab(k) instanceof A.nr){A.a($.fa.kx$,"_imageCache").N1(a) -throw k}else throw k -s=6 -break -case 3:s=2 -break -case 6:if(l==null){A.a($.fa.kx$,"_imageCache").N1(a) -throw A.c(A.X("Unable to read data"))}q=b.$1(A.cX(l.buffer,0,null)) -s=1 -break -case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$tQ,r)}} -A.acz.prototype={} -A.vu.prototype={ -gnJ(){return this.a}, -Dl(a){var s,r={},q=a.a -if(q==null)q=$.TR() -r.a=r.b=null -q.aeb("AssetManifest.json",A.aI3(),t.wd).aV(0,new A.UC(r,this,a,q),t.H).hI(new A.UD(r)) -s=r.a -if(s!=null)return s -s=new A.a4($.a5,t.Lv) -r.b=new A.aI(s,t.h8) -return s}, -Zx(a,b,c){var s,r,q,p=b.b -if(p==null||c==null||J.hy(c))return a -s=A.al4(t.i,t.N) -for(r=J.av(c);r.t();){q=r.gH(r) -s.n(0,this.Jc(q),q)}p.toString -return this.a0h(s,p)}, -a0h(a,b){var s,r,q -if(a.p5(b)){s=a.h(0,b) -s.toString -return s}r=a.adZ(b) -q=a.ack(b) -if(r==null)return a.h(0,q) -if(q==null)return a.h(0,r) -if(b<2||b>(r+q)/2)return a.h(0,q) -else return a.h(0,r)}, -Jc(a){var s,r,q,p -if(a===this.a)return 1 -s=A.p_(a,0,null) -r=s.gkN().length>1?s.gkN()[s.gkN().length-2]:"" -q=$.auh().vq(r) -if(q!=null&&q.b.length-1>0){p=q.b[1] -p.toString -return A.atk(p)}return 1}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.vu&&b.gnJ()===this.gnJ()&&!0}, -gv(a){return A.a3(this.gnJ(),this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"AssetImage(bundle: "+A.e(this.b)+', name: "'+this.gnJ()+'")'}} -A.UC.prototype={ -$1(a){var s,r=this,q=r.b,p=q.gnJ(),o=a==null?null:J.ag(a,q.gnJ()) -o=q.Zx(p,r.c,o) -o.toString -s=new A.iC(r.d,o,q.Jc(o)) -q=r.a -p=q.b -if(p!=null)p.c3(0,s) -else q.a=new A.d0(s,t.WT)}, -$S:287} -A.UD.prototype={ -$2(a,b){this.a.b.fG(a,b)}, -$S:70} -A.hO.prototype={ -dq(a){return new A.hO(this.a.dq(0),this.b,this.c)}, -i(a){var s=this.c -s=s!=null?s+" ":"" -return s+this.a.i(0)+" @ "+A.iv(this.b)+"x"}, -gv(a){return A.a3(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.hO&&b.a===s.a&&b.b===s.b&&b.c==s.c}} -A.h3.prototype={ -gv(a){return A.a3(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.h3&&J.f(b.a,s.a)&&J.f(b.b,s.b)&&J.f(b.c,s.c)}, -aeM(a,b){return this.a.$2(a,b)}} -A.a0i.prototype={ -EZ(a){var s,r=this -r.a=a -s=r.b -if(s!=null){r.b=null -a.f=!0 -B.c.Y(s,a.gLr(a)) -r.a.f=!1}}, -a2(a,b){var s=this.a -if(s!=null)return s.a2(0,b) -s=this.b;(s==null?this.b=A.b([],t.XZ):s).push(b)}, -K(a,b){var s,r=this.a -if(r!=null)return r.K(0,b) -for(s=0;r=this.b,s")),n),!0,n.j("p.E")) -s=!1 -for(o=m.length,l=0;l=r.a}else{r=s -s=!0}if(s){s=p.at -p.Hw(new A.hO(s.geT(s).dq(0),p.Q,p.d)) -p.ax=a -s=p.at -p.ay=s.gvi(s) -s=p.at -s.geT(s).m(0) -p.at=null -s=p.ch -r=p.z -q=B.f.lg(s,r.glT(r)) -s=p.z -if(s.god(s)!==-1){s=p.z -s=q<=s.god(s)}else s=!0 -if(s)p.mL() -return}r.toString -p.CW=A.bN(new A.aP(B.e.aI((r.a-(a.a-A.a(p.ax,o).a))*$.am1)),new A.a2m(p))}, -mL(){var s=0,r=A.S(t.H),q,p=2,o,n=[],m=this,l,k,j,i,h -var $async$mL=A.T(function(a,b){if(a===1){o=b -s=p}while(true)switch(s){case 0:i=m.at -if(i!=null)i.geT(i).m(0) -m.at=null -p=4 -s=7 -return A.U(m.z.iX(),$async$mL) -case 7:m.at=b -p=2 -s=6 -break -case 4:p=3 -h=o -l=A.ab(h) -k=A.aA(h) -m.wm(A.bi("resolving an image frame"),l,m.as,!0,k) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:i=m.z -if(i.glT(i)===1){if(m.a.length===0){s=1 -break}i=m.at -m.Hw(new A.hO(i.geT(i).dq(0),m.Q,m.d)) -i=m.at -i.geT(i).m(0) -m.at=null -s=1 -break}m.JF() -case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$mL,r)}, -JF(){if(this.cx)return -this.cx=!0 -$.bK.EM(this.ga1e())}, -Hw(a){this.QX(a);++this.ch}, -a2(a,b){var s,r=this -if(r.a.length===0){s=r.z -if(s!=null)s=r.b==null||s.glT(s)>1 -else s=!1}else s=!1 -if(s)r.mL() -r.SA(0,b)}, -K(a,b){var s,r=this -r.SB(0,b) -if(r.a.length===0){s=r.CW -if(s!=null)s.aA(0) -r.CW=null}}, -tW(){this.Sz() -if(this.w)this.y=null}} -A.a2n.prototype={ -$2(a,b){this.a.wm(A.bi("resolving an image codec"),a,this.b,!0,b)}, -$S:70} -A.a2m.prototype={ -$0(){this.a.JF()}, -$S:0} -A.Ot.prototype={} -A.Os.prototype={} -A.EZ.prototype={} -A.k0.prototype={ -k(a,b){var s,r=this -if(b==null)return!1 -if(b instanceof A.k0)if(b.a===r.a)if(b.b==r.b)s=b.d===r.d&&A.dV(b.f,r.f) -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"InlineSpanSemanticsInformation{text: "+this.a+", semanticsLabel: "+A.e(this.b)+", recognizer: "+A.e(this.c)+"}"}} -A.f4.prototype={ -EB(a){var s={} -s.a=null -this.bb(new A.a0u(s,a,new A.EZ())) -return s.a}, -rr(a){var s,r=new A.by("") -this.Bs(r,!0,a) -s=r.a -return s.charCodeAt(0)==0?s:s}, -DX(){return this.rr(!0)}, -ak(a,b){var s={} -if(b<0)return null -s.a=null -this.bb(new A.a0t(s,b,new A.EZ())) -return s.a}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.f4&&J.f(b.a,this.a)}, -gv(a){return J.r(this.a)}} -A.a0u.prototype={ -$1(a){var s=a.EC(this.b,this.c) -this.a.a=s -return s==null}, -$S:38} -A.a0t.prototype={ -$1(a){var s=a.LW(this.b,this.c) -this.a.a=s -return s==null}, -$S:38} -A.kh.prototype={ -Bs(a,b,c){a.a+=A.fb(65532)}, -uS(a){a.push(B.BQ)}} -A.d6.prototype={ -ghk(){var s=this.a.b -return new A.as(s,s,s,s)}, -bd(a,b){var s=this.a.bd(0,b) -return new A.d6(this.b.W(0,b),s)}, -du(a,b){var s,r,q=this -if(a instanceof A.d6){s=A.aE(a.a,q.a,b) -r=A.mZ(a.b,q.b,b) -r.toString -return new A.d6(r,s)}if(a instanceof A.dt)return new A.ey(q.b,1-b,A.aE(a.a,q.a,b)) -return q.j3(a,b)}, -dv(a,b){var s,r,q=this -if(a instanceof A.d6){s=A.aE(q.a,a.a,b) -r=A.mZ(q.b,a.b,b) -r.toString -return new A.d6(r,s)}if(a instanceof A.dt)return new A.ey(q.b,b,A.aE(q.a,a.a,b)) -return q.j4(a,b)}, -ni(a){var s=a==null?this.a:a -return new A.d6(this.b,s)}, -f1(a,b){var s=A.d4() -s.fB(0,this.b.O(b).dM(a)) -return s}, -hY(a,b,c){var s,r,q,p,o,n=this.a -switch(n.c.a){case 0:break -case 1:s=n.b -r=this.b -if(s===0)a.cm(0,r.O(c).dM(b),n.jL()) -else{q=r.O(c).dM(b) -p=q.hp(-s) -o=$.aJ()?A.aT():new A.aO(new A.aQ()) -o.sad(0,n.a) -a.fb(0,q,p,o)}break}}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.d6&&b.a.k(0,this.a)&&b.b.k(0,this.b)}, -gv(a){return A.a3(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"RoundedRectangleBorder("+this.a.i(0)+", "+this.b.i(0)+")"}} -A.ey.prototype={ -ghk(){var s=this.a.b -return new A.as(s,s,s,s)}, -bd(a,b){var s=this.a.bd(0,b) -return new A.ey(this.b.W(0,b),b,s)}, -du(a,b){var s,r,q,p=this -if(a instanceof A.d6){s=A.aE(a.a,p.a,b) -r=A.mZ(a.b,p.b,b) -r.toString -return new A.ey(r,p.c*b,s)}if(a instanceof A.dt){s=p.c -return new A.ey(p.b,s+(1-s)*(1-b),A.aE(a.a,p.a,b))}if(a instanceof A.ey){s=A.aE(a.a,p.a,b) -r=A.mZ(a.b,p.b,b) -r.toString -q=A.Z(a.c,p.c,b) -q.toString -return new A.ey(r,q,s)}return p.j3(a,b)}, -dv(a,b){var s,r,q,p=this -if(a instanceof A.d6){s=A.aE(p.a,a.a,b) -r=A.mZ(p.b,a.b,b) -r.toString -return new A.ey(r,p.c*(1-b),s)}if(a instanceof A.dt){s=p.c -return new A.ey(p.b,s+(1-s)*b,A.aE(p.a,a.a,b))}if(a instanceof A.ey){s=A.aE(p.a,a.a,b) -r=A.mZ(p.b,a.b,b) -r.toString -q=A.Z(p.c,a.c,b) -q.toString -return new A.ey(r,q,s)}return p.j4(a,b)}, -y_(a){var s,r,q,p,o,n,m,l=this.c -if(l===0||a.c-a.a===a.d-a.b)return a -s=a.c -r=a.a -q=s-r -p=a.d -o=a.b -n=p-o -if(q=3)p.a0() -else if(s>=2)p.b=!0}, -smc(a,b){if(this.d===b)return -this.d=b -this.a0()}, -sbx(a,b){var s=this -if(s.e===b)return -s.e=b -s.a0() -s.ay=null}, -skV(a){var s=this -if(s.f===a)return -s.f=a -s.a0() -s.ay=null}, -sMP(a,b){if(this.r==b)return -this.r=b -this.a0()}, -slY(a,b){if(J.f(this.w,b))return -this.w=b -this.a0()}, -snP(a,b){if(this.x==b)return -this.x=b -this.a0()}, -sj1(a,b){if(J.f(this.y,b))return -this.y=b -this.a0()}, -soh(a){if(this.z===a)return -this.z=a -this.a0()}, -j_(a){if(a==null||a.length===0||A.dV(a,this.ax))return -this.ax=a -this.a0()}, -H4(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2=a0.c.a -if(a2==null)a2=a1 -else{s=a0.d -r=a0.e -if(r==null)r=a3 -q=a0.f -p=a0.x -o=a0.r -n=a0.w -m=a0.y -l=a2.at -k=l==null?a1:new A.LL(l) -j=a2.w -i=a2.x -h=a2.d -g=a2.r -if(g==null)g=14 -a2=a2.as -if(m==null)m=a1 -else{f=m.a -e=m.geH() -d=m.d -d=d==null?a1:d*q -c=m.e -b=m.x -a=m.r -b=A.aDC(f,e,d,m.w,a,!0,c,b) -m=b}r=A.akQ(o,h,g*q,i,j,a2,n,p,m,s,r,k) -a2=r}if(a2==null){a2=a0.d -s=a0.e -if(s==null)s=a3 -r=a0.f -q=a0.x -p=a0.Q -p=A.akQ(a0.r,a1,14*r,a1,a1,a1,a0.w,q,a1,a2,s,p) -a2=p}return a2}, -a_2(){return this.H4(null)}, -gdz(){var s,r,q=this,p=q.ay -if(p==null){s=A.akP(q.H4(B.aa)) -p=q.c -if(p==null)r=null -else{p=p.a -r=p==null?null:p.rP(q.f)}if(r!=null)s.kR(0,r) -s.ls(0," ") -p=s.bq(0) -p.fg(0,B.Kk) -q.ay=p}return p.gbk(p)}, -gaQ(a){var s=this.z,r=this.a -s=s===B.vI?r.gvX():r.gaQ(r) -return Math.ceil(s)}, -dW(a){var s -switch(a.a){case 0:s=this.a -return s.gko(s) -case 1:s=this.a -return s.gNI(s)}}, -H3(){var s,r,q=this,p=q.c -if(p==null)throw A.c(A.X("TextPainter.text must be set to a non-null value before using the TextPainter.")) -s=A.akP(q.a_2()) -r=q.f -p.uH(0,s,q.ax,r) -q.at=s.gOI() -q.a=s.bq(0) -q.b=!1}, -IG(a,b){var s,r,q=this -q.a.fg(0,new A.lR(b)) -if(a!==b){switch(q.z.a){case 1:s=Math.ceil(q.a.gvX()) -break -case 0:s=Math.ceil(q.a.gw0()) -break -default:s=null}s=J.anb(s,a,b) -r=q.a -if(s!==Math.ceil(r.gaQ(r)))q.a.fg(0,new A.lR(s))}}, -vT(a,b,c){var s=this,r=s.a==null -if(!r&&c===s.ch&&b===s.CW)return -if(s.b||r)s.H3() -s.ch=c -s.CW=b -s.db=s.cy=s.dx=null -s.IG(c,b) -s.as=s.a.rE()}, -ae0(a){return this.vT(a,1/0,0)}, -aH(a,b){var s,r=this,q=r.ch,p=r.CW -if(r.a==null||q==null||p==null)throw A.c(A.X("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")) -if(r.b){r.H3() -r.IG(q,p)}s=r.a -s.toString -a.hm(0,s,b)}, -Ew(a){var s=this.c.ak(0,a) -if(s==null)return null -return(s&63488)===55296?a+2:a+1}, -Ex(a){var s=a-1,r=this.c.ak(0,s) -if(r==null)return null -return(r&63488)===55296?a-2:s}, -HX(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.c.rr(!1),g=i.c -g.toString -s=g.ak(0,Math.max(0,a-1)) -if(s==null)return null -r=(s&63488)===55296||i.c.ak(0,a)===8205||s===8207||s===8206 -q=r?2:1 -p=A.b([],t.Lx) -for(g=-h.length,o=!r,n=s===10;p.length===0;){m=a-q -p=i.a.wJ(m,a,B.me) -if(p.length===0){if(o&&n)break -if(m>>0,s=!q;o.length===0;){n=a+p -o=j.a.wJ(a,n,B.me) -if(o.length===0){if(s)break -if(n>=h)break -p*=2 -continue}m=B.c.gR(o) -h=m.e -l=h===B.q?m.a:m.c -k=h===B.aa?l-(b.c-b.a):l -h=j.a -h=B.e.G(k,0,h.gaQ(h)) -s=j.a -return new A.w(h,m.b,B.e.G(k,0,s.gaQ(s)),m.d)}return null}, -gyV(){var s=this -switch(s.d.a){case 0:return B.j -case 1:return new A.m(s.gaQ(s),0) -case 2:return new A.m(s.gaQ(s)/2,0) -case 3:case 4:switch(s.e.a){case 0:return new A.m(s.gaQ(s),0) -case 1:return B.j}break -case 5:switch(s.e.a){case 0:return B.j -case 1:return new A.m(s.gaQ(s),0)}break}}, -lj(a,b){var s,r,q,p,o=this -if(a.k(0,o.cy)&&b.k(0,o.db))return -s=a.a -switch(a.b.a){case 0:r=o.HX(s,b) -if(r==null)r=o.HW(s,b) -break -case 1:r=o.HW(s,b) -if(r==null)r=o.HX(s,b) -break -default:r=null}q=r!=null -p=q?new A.m(r.a,r.b):o.gyV() -o.cx=new A.abN(p,q?r.d-r.b:null) -o.cy=a -o.db=b}, -rG(a,b,c){return this.a.mi(a.a,a.b,b,c)}, -rF(a){return this.rG(a,B.cR,B.bL)}, -pU(){var s=this.dx -return s==null?this.dx=this.a.pU():s}} -A.mp.prototype={ -gMo(a){return this.e}, -gEe(){return!0}, -hU(a,b){t.c.b(a)}, -uH(a,b,c,d){var s,r,q,p,o,n=this.a,m=n!=null -if(m)b.kR(0,n.rP(d)) -n=this.b -if(n!=null)try{b.ls(0,n)}catch(q){n=A.ab(q) -if(n instanceof A.fQ){s=n -r=A.aA(q) -A.cS(new A.bs(s,r,"painting library",A.bi("while building a TextSpan"),null,!1)) -b.ls(0,"\ufffd")}else throw q}n=this.c -if(n!=null)for(p=n.length,o=0;o0?q:B.bE -if(p===B.aV)return p}else p=B.bE -s=n.c -if(s!=null)for(r=b.c,o=0;op.a)p=q -if(p===B.aV)return p}return p}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(!r.FA(0,b))return!1 -if(b instanceof A.mp)if(b.b==r.b)s=r.e.k(0,b.e)&&A.dV(b.c,r.c) -else s=!1 -else s=!1 -return s}, -gv(a){var s=this,r=null,q=A.f4.prototype.gv.call(s,s),p=s.c -p=p==null?r:A.f9(p) -return A.a3(q,s.b,r,r,r,r,s.e,p,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -cv(){return"TextSpan"}, -$ia9:1, -$ikb:1, -gDm(){return null}, -gDn(){return null}} -A.t.prototype={ -geH(){var s=this,r=s.f!=null&&s.e!=null,q=s.e -if(r){q.toString -r=A.af(q).j("az<1,k>") -r=A.ap(new A.az(q,new A.a9Q(s),r),!0,r.j("bl.E"))}else r=q -return r}, -gn1(a){var s,r=this,q=r.f -if(q!=null&&r.d!=null){s=r.d -s.toString -return B.b.bU(s,("packages/"+A.e(q)+"/").length)}return r.d}, -lH(a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=a0.ay -if(a1==null&&b6==null)s=a4==null?a0.b:a4 -else s=null -r=a0.ch -if(r==null&&a2==null)q=a3==null?a0.c:a3 -else q=null -p=b3==null?a0.r:b3 -o=b5==null?a0.w:b5 -n=b9==null?a0.y:b9 -m=c5==null?a0.z:c5 -l=c4==null?a0.Q:c4 -k=b7==null?a0.as:b7 -j=b8==null?a0.at:b8 -a1=b6==null?a1:b6 -r=a2==null?r:a2 -i=c3==null?a0.dy:c3 -h=a6==null?a0.CW:a6 -g=a7==null?a0.cx:a7 -f=a8==null?a0.cy:a8 -e=a9==null?a0.db:a9 -d=b0==null?a0.gn1(a0):b0 -c=b1==null?a0.geH():b1 -b=c2==null?a0.f:c2 -a=c1==null?a0.fx:c1 -return A.ck(r,q,s,null,h,g,f,e,d,c,a0.fr,p,a0.x,o,a1,k,a0.a,j,n,a0.ax,a,b,i,l,m)}, -fI(a){return this.lH(null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, -aaG(a){return this.lH(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null)}, -By(a,b){return this.lH(null,null,a,null,null,null,null,null,null,null,null,b,null,null,null,null,null,null,null,null,null,null,null,null)}, -M8(a){return this.lH(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null)}, -aaF(a){return this.lH(null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null,null)}, -M7(a){return this.lH(null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null)}, -bg(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2 -if(a3==null)return this -if(!a3.a)return a3 -s=a3.b -r=a3.c -q=a3.r -p=a3.w -o=a3.x -n=a3.y -m=a3.z -l=a3.Q -k=a3.as -j=a3.at -i=a3.ax -h=a3.ay -g=a3.ch -f=a3.dy -e=a3.fr -d=a3.CW -c=a3.cx -b=a3.cy -a=a3.db -a0=a3.gn1(a3) -a1=a3.geH() -a2=a3.f -return this.lH(g,r,s,null,d,c,b,a,a0,a1,e,q,o,p,h,k,j,n,i,a3.fx,a2,f,l,m)}, -rP(a){var s,r,q=this,p=q.geH(),o=q.r -o=o==null?null:o*a -s=q.ch -if(s==null){s=q.c -if(s!=null){r=$.aJ()?A.aT():new A.aO(new A.aQ()) -r.sad(0,s) -s=r}else s=null}return A.ara(s,q.b,q.CW,q.cx,q.cy,q.db,q.d,p,q.fr,o,q.x,q.w,q.ay,q.as,q.at,q.y,q.ax,q.dy,q.Q,q.z)}, -aW(a,b){var s,r=this -if(r===b)return B.bE -if(r.a===b.a)if(r.d==b.d)if(r.r==b.r)if(r.w==b.w)if(r.y==b.y)if(r.z==b.z)if(r.Q==b.Q)if(r.as==b.as)if(r.at==b.at)s=r.ay!=b.ay||r.ch!=b.ch||!A.dV(r.dy,b.dy)||!A.dV(r.fr,b.fr)||!A.dV(r.geH(),b.geH())||r.fx!=b.fx -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -if(s)return B.aV -if(!J.f(r.b,b.b)||!J.f(r.c,b.c)||!J.f(r.CW,b.CW)||!J.f(r.cx,b.cx)||r.cy!=b.cy||r.db!=b.db)return B.KG -return B.bE}, -k(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.t)if(b.a===r.a)if(J.f(b.b,r.b))if(J.f(b.c,r.c))if(b.r==r.r)if(b.w==r.w)if(b.y==r.y)if(b.z==r.z)if(b.Q==r.Q)if(b.as==r.as)if(b.at==r.at)s=b.ay==r.ay&&b.ch==r.ch&&A.dV(b.dy,r.dy)&&A.dV(b.fr,r.fr)&&J.f(b.CW,r.CW)&&J.f(b.cx,r.cx)&&b.cy==r.cy&&b.db==r.db&&b.d==r.d&&A.dV(b.geH(),r.geH())&&b.f==r.f&&b.fx==r.fx -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s,r=this,q=r.dy -q=q==null?null:A.f9(q) -if(r.geH()==null)s=null -else{s=r.geH() -s.toString -s=A.f9(s)}return A.a3(r.a,r.b,r.c,r.r,r.w,r.x,r.y,r.z,r.Q,r.as,r.at,r.ax,r.ay,r.ch,q,null,r.CW,r.cx,r.cy,A.a3(r.db,r.d,s,r.f,r.fx,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, -cv(){return"TextStyle"}} -A.a9Q.prototype={ -$1(a){return"packages/"+A.e(this.a.f)+"/"+a}, -$S:41} -A.RH.prototype={} -A.ZG.prototype={ -es(a,b){var s=this,r=s.e,q=s.c -return s.d+r*Math.pow(s.b,b)/q-r/q}, -hn(a,b){return this.e*Math.pow(this.b,b)}, -gCm(){return this.d-this.e/this.c}, -PA(a){var s,r,q=this,p=q.d -if(a===p)return 0 -s=q.e -if(s!==0)if(s>0)r=aq.gCm() -else r=a>p||a=l&&n.c>=n.d)return new A.L(B.f.G(0,m,l),B.f.G(0,n.c,n.d)) -s=a.a -r=a.b -q=s/r -if(s>l){r=l/q -s=l}p=n.d -if(r>p){s=p*q -r=p}if(s=s.b&&s.c>=s.d}, -W(a,b){var s=this -return new A.aF(s.a*b,s.b*b,s.c*b,s.d*b)}, -eu(a,b){var s=this -return new A.aF(s.a/b,s.b/b,s.c/b,s.d/b)}, -gadT(){var s=this,r=s.a -if(r>=0)if(r<=s.b){r=s.c -r=r>=0&&r<=s.d}else r=!1 -else r=!1 -return r}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.aF&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s,r=this,q=r.gadT()?"":"; NOT NORMALIZED",p=r.a -if(p===1/0&&r.c===1/0)return"BoxConstraints(biggest"+q+")" -if(p===0&&r.b===1/0&&r.c===0&&r.d===1/0)return"BoxConstraints(unconstrained"+q+")" -s=new A.UW() -return"BoxConstraints("+s.$3(p,r.b,"w")+", "+s.$3(r.c,r.d,"h")+q+")"}} -A.UW.prototype={ -$3(a,b,c){if(a===b)return c+"="+B.e.V(a,1) -return B.e.V(a,1)+"<="+c+"<="+B.e.V(b,1)}, -$S:293} -A.iE.prototype={ -uA(a,b,c){if(c!=null){c=A.xW(A.akR(c)) -if(c==null)return!1}return this.B2(a,b,c)}, -lt(a,b,c){var s,r=b==null,q=r?c:c.a9(0,b) -r=!r -if(r)this.c.push(new A.uw(new A.m(-b.a,-b.b))) -s=a.$2(this,q) -if(r)this.we() -return s}, -B2(a,b,c){var s,r=c==null,q=r?b:A.ha(c,b) -r=!r -if(r)this.c.push(new A.Ci(c)) -s=a.$2(this,q) -if(r)this.we() -return s}, -Lz(a,b,c){var s,r=this -if(b!=null)r.c.push(new A.uw(new A.m(-b.a,-b.b))) -else{c.toString -c=A.xW(A.akR(c)) -c.toString -r.c.push(new A.Ci(c))}s=a.$1(r) -r.we() -return s}, -a9k(a,b){return this.Lz(a,null,b)}, -a9j(a,b){return this.Lz(a,b,null)}} -A.pX.prototype={ -i(a){return"#"+A.bF(this.a)+"@"+this.c.i(0)}} -A.fm.prototype={ -i(a){return"offset="+this.a.i(0)}} -A.w3.prototype={} -A.ph.prototype={ -i(a){return"_IntrinsicDimension."+this.b}} -A.BW.prototype={ -k(a,b){if(b==null)return!1 -return b instanceof A.BW&&b.a===this.a&&b.b===this.b}, -gv(a){return A.a3(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.B.prototype={ -f3(a){if(!(a.e instanceof A.fm))a.e=new A.fm(B.j)}, -av(a,b,c){var s,r=this.fy -if(r==null)r=this.fy=A.z(t.oc,t.i) -s=r.bs(0,new A.BW(a,b),new A.a4H(c,b)) -return s}, -b1(a){return 0}, -aU(a){return 0}, -aX(a){return 0}, -b0(a){return 0}, -hy(a){var s,r=this.go -if(r==null)r=this.go=A.z(t.k,t.FW) -s=r.bs(0,a,new A.a4J(this,a)) -return s}, -c4(a){return B.o}, -gl6(){var s=this.k1 -return new A.w(0,0,0+s.a,0+s.b)}, -wM(a,b){var s=this.jR(a) -if(s==null&&!b)return this.k1.b -return s}, -wL(a){return this.wM(a,!1)}, -jR(a){var s=this,r=s.k2 -if(r==null)r=s.k2=A.z(t.W7,t.PM) -r.bs(0,a,new A.a4I(s,a)) -return s.k2.h(0,a)}, -dW(a){return null}, -ga_(){return t.k.a(A.u.prototype.ga_.call(this))}, -a0(){var s,r=this,q=r.k2,p=q==null -if(!(!p&&q.a!==0)){s=r.fy -if(!(s!=null&&s.a!==0)){s=r.go -s=s!=null&&s.a!==0}else s=!0}else s=!0 -if(s){if(!p)q.aG(0) -q=r.fy -if(q!=null)q.aG(0) -q=r.go -if(q!=null)q.aG(0) -if(r.ga3(r) instanceof A.u){r.w_() -return}}r.Tf()}, -r7(){this.k1=this.c4(t.k.a(A.u.prototype.ga_.call(this)))}, -bK(){}, -bD(a,b){var s=this -if(s.k1.A(0,b))if(s.cL(a,b)||s.hV(b)){a.E(0,new A.pX(b,s)) -return!0}return!1}, -hV(a){return!1}, -cL(a,b){return!1}, -dm(a,b){var s,r=a.e -r.toString -s=t.x.a(r).a -b.aC(0,s.a,s.b)}, -i1(a){var s,r,q,p,o,n=this.dj(0,null) -if(n.kr(n)===0)return B.j -s=new A.fH(new Float64Array(3)) -s.my(0,0,1) -r=new A.fH(new Float64Array(3)) -r.my(0,0,0) -q=n.wd(r) -r=new A.fH(new Float64Array(3)) -r.my(0,0,1) -p=n.wd(r).a9(0,q) -r=new A.fH(new Float64Array(3)) -r.my(a.a,a.b,0) -o=n.wd(r) -r=o.a9(0,p.QB(s.MI(o)/s.MI(p))).a -return new A.m(r[0],r[1])}, -giM(){var s=this.k1 -return new A.w(0,0,0+s.a,0+s.b)}, -hU(a,b){this.Te(a,b)}} -A.a4H.prototype={ -$0(){return this.a.$1(this.b)}, -$S:124} -A.a4J.prototype={ -$0(){return this.a.c4(this.b)}, -$S:104} -A.a4I.prototype={ -$0(){return this.a.dW(this.b)}, -$S:294} -A.cD.prototype={ -abf(a){var s,r,q,p=this.U$ -for(s=A.n(this).j("cD.1?");p!=null;){r=s.a(p.e) -q=p.jR(a) -if(q!=null)return q+r.a.b -p=r.ae$}return null}, -Mx(a){var s,r,q,p,o=this.U$ -for(s=A.n(this).j("cD.1"),r=null;o!=null;){q=o.e -q.toString -s.a(q) -p=o.jR(a) -if(p!=null){p+=q.a.b -r=r!=null?Math.min(r,p):p}o=q.ae$}return r}, -BJ(a,b){var s,r,q={},p=q.a=this.bV$ -for(s=A.n(this).j("cD.1");p!=null;p=r){p=p.e -p.toString -s.a(p) -if(a.lt(new A.a4G(q,b,p),p.a,b))return!0 -r=p.bO$ -q.a=r}return!1}, -q2(a,b){var s,r,q,p,o,n=this.U$ -for(s=A.n(this).j("cD.1"),r=b.a,q=b.b;n!=null;){p=n.e -p.toString -s.a(p) -o=p.a -a.df(n,new A.m(o.a+r,o.b+q)) -n=p.ae$}}} -A.a4G.prototype={ -$2(a,b){return this.a.a.bD(a,b)}, -$S:11} -A.Bg.prototype={ -aa(a){this.xE(0)}} -A.hd.prototype={ -i(a){return this.t6(0)+"; id="+A.e(this.e)}} -A.a2j.prototype={ -eK(a,b){var s,r=this.b.h(0,a) -r.cH(0,b,!0) -s=r.k1 -s.toString -return s}, -eV(a,b){var s=this.b.h(0,a).e -s.toString -t.Wz.a(s).a=b}, -Zh(a,b){var s,r,q,p,o,n,m=this,l=m.b -try{m.b=A.z(t.K,t.r) -for(r=t.Wz,q=b;q!=null;q=n){p=q.e -p.toString -s=r.a(p) -p=m.b -p.toString -o=s.e -o.toString -p.n(0,o,q) -n=s.ae$}m.wc(a)}finally{m.b=l}}, -i(a){return"MultiChildLayoutDelegate"}} -A.z9.prototype={ -f3(a){if(!(a.e instanceof A.hd))a.e=new A.hd(null,null,B.j)}, -sBM(a){var s=this,r=s.C -if(r===a)return -if(A.C(a)!==A.C(r)||a.oz(r))s.a0() -s.C=a -s.b!=null}, -aj(a){this.Uj(a)}, -aa(a){this.Uk(0)}, -b1(a){var s=A.hA(a,1/0),r=s.bo(new A.L(B.f.G(1/0,s.a,s.b),B.f.G(1/0,s.c,s.d))).a -if(isFinite(r))return r -return 0}, -aU(a){var s=A.hA(a,1/0),r=s.bo(new A.L(B.f.G(1/0,s.a,s.b),B.f.G(1/0,s.c,s.d))).a -if(isFinite(r))return r -return 0}, -aX(a){var s=A.hA(1/0,a),r=s.bo(new A.L(B.f.G(1/0,s.a,s.b),B.f.G(1/0,s.c,s.d))).b -if(isFinite(r))return r -return 0}, -b0(a){var s=A.hA(1/0,a),r=s.bo(new A.L(B.f.G(1/0,s.a,s.b),B.f.G(1/0,s.c,s.d))).b -if(isFinite(r))return r -return 0}, -c4(a){return a.bo(new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d)))}, -bK(){var s=this,r=t.k.a(A.u.prototype.ga_.call(s)) -r=r.bo(new A.L(B.f.G(1/0,r.a,r.b),B.f.G(1/0,r.c,r.d))) -s.k1=r -s.C.Zh(r,s.U$)}, -aH(a,b){this.q2(a,b)}, -cL(a,b){return this.BJ(a,b)}} -A.CI.prototype={ -aj(a){var s,r,q -this.dE(a) -s=this.U$ -for(r=t.Wz;s!=null;){s.aj(a) -q=s.e -q.toString -s=r.a(q).ae$}}, -aa(a){var s,r,q -this.d7(0) -s=this.U$ -for(r=t.Wz;s!=null;){s.aa(0) -q=s.e -q.toString -s=r.a(q).ae$}}} -A.Qf.prototype={} -A.Gx.prototype={ -a2(a,b){var s=this.a -return s==null?null:s.a2(0,b)}, -K(a,b){var s=this.a -return s==null?null:s.K(0,b)}, -grW(){return null}, -xg(a){return this.ew(a)}, -vH(a){return null}, -i(a){var s=A.bF(this),r=this.a -r=r==null?null:r.i(0) -if(r==null)r="" -return"#"+s+"("+r+")"}} -A.za.prototype={ -sr5(a){var s=this.u -if(s==a)return -this.u=a -this.Hd(a,s)}, -sNm(a){var s=this.a8 -if(s==a)return -this.a8=a -this.Hd(a,s)}, -Hd(a,b){var s=this,r=a==null -if(r)s.aF() -else if(b==null||A.C(a)!==A.C(b)||a.ew(b))s.aF() -if(s.b!=null){if(b!=null)b.K(0,s.gd5()) -if(!r)a.a2(0,s.gd5())}if(r){if(s.b!=null)s.ai()}else if(b==null||A.C(a)!==A.C(b)||a.xg(b))s.ai()}, -safr(a){if(this.aD.k(0,a))return -this.aD=a -this.a0()}, -b1(a){var s -if(this.q$==null){s=this.aD.a -return isFinite(s)?s:0}return this.xO(a)}, -aU(a){var s -if(this.q$==null){s=this.aD.a -return isFinite(s)?s:0}return this.xM(a)}, -aX(a){var s -if(this.q$==null){s=this.aD.b -return isFinite(s)?s:0}return this.xN(a)}, -b0(a){var s -if(this.q$==null){s=this.aD.b -return isFinite(s)?s:0}return this.xL(a)}, -aj(a){var s,r=this -r.te(a) -s=r.u -if(s!=null)s.a2(0,r.gd5()) -s=r.a8 -if(s!=null)s.a2(0,r.gd5())}, -aa(a){var s=this,r=s.u -if(r!=null)r.K(0,s.gd5()) -r=s.a8 -if(r!=null)r.K(0,s.gd5()) -s.mG(0)}, -cL(a,b){var s=this.a8 -if(s!=null){s=s.vH(b) -s=s===!0}else s=!1 -if(s)return!0 -return this.ta(a,b)}, -hV(a){var s=this.u -if(s!=null){s=s.vH(a) -s=s!==!1}else s=!1 -return s}, -bK(){this.tb() -this.ai()}, -pV(a){return a.bo(this.aD)}, -J8(a,b,c){var s -A.bx("debugPreviousCanvasSaveCount") -a.bF(0) -if(!b.k(0,B.j))a.aC(0,b.a,b.b) -s=this.k1 -s.toString -c.aH(a,s) -a.bt(0)}, -aH(a,b){var s,r,q=this -if(q.u!=null){s=a.gc2(a) -r=q.u -r.toString -q.J8(s,b,r) -q.JT(a)}q.mF(a,b) -if(q.a8!=null){s=a.gc2(a) -r=q.a8 -r.toString -q.J8(s,b,r) -q.JT(a)}}, -JT(a){}, -eO(a){var s,r=this -r.fY(a) -s=r.u -r.el=s==null?null:s.grW() -s=r.a8 -r.nA=s==null?null:s.grW() -a.a=!1}, -na(a,b,c){var s,r,q,p,o=this -o.ff=A.aqz(o.ff,B.nH) -o.iw=A.aqz(o.iw,B.nH) -s=o.ff -r=s!=null&&!s.gS(s) -s=o.iw -q=s!=null&&!s.gS(s) -s=A.b([],t.J) -if(r){p=o.ff -p.toString -B.c.P(s,p)}B.c.P(s,c) -if(q){p=o.iw -p.toString -B.c.P(s,p)}o.FP(a,b,s)}, -ne(){this.xI() -this.iw=this.ff=null}} -A.Wu.prototype={} -A.ty.prototype={ -i(a){var s=this -switch(s.b){case B.q:return s.a.i(0)+"-ltr" -case B.aa:return s.a.i(0)+"-rtl" -case null:return s.a.i(0)}}} -A.aay.prototype={ -gbv(){var s=this -if(!s.f)return!1 -if(s.e.al.pU()!==s.d)s.f=!1 -return s.f}, -I0(a){var s,r,q,p,o=this,n=o.r,m=n.h(0,a) -if(m!=null)return m -s=o.a -r=o.d[a] -q=new A.m(s.a,r.gly(r)) -p=new A.aw(q,o.e.al.a.fV(q),t.tO) -n.n(0,a,p) -return p}, -gH(a){return this.c}, -t(){var s,r=this,q=r.b+1 -if(q>=r.d.length)return!1 -s=r.I0(q);++r.b -r.a=s.a -r.c=s.b -return!0}, -aep(){var s,r=this,q=r.b -if(q<=0)return!1 -s=r.I0(q-1);--r.b -r.a=s.a -r.c=s.b -return!0}} -A.oq.prototype={ -f3(a){if(!(a.e instanceof A.eu))a.e=new A.eu(null,null,B.j)}, -m(a){var s=this,r=s.C -if(r!=null)r.ay.saL(0,null) -s.C=null -r=s.M -if(r!=null)r.ay.saL(0,null) -s.M=null -s.ds.saL(0,null) -r=s.bA -if(r!=null){r.y2$=$.b4() -r.y1$=0}r=s.bI -if(r!=null){r.y2$=$.b4() -r.y1$=0}s.le(0)}, -KR(a){var s,r=this,q=r.gZa(),p=r.C -if(p==null){s=A.arR(q) -r.hf(s) -r.C=s}else p.sr5(q) -r.a7=a}, -Hp(a){this.af=A.b([],t.TP) -a.bb(new A.a4L(this))}, -KY(a){var s,r=this,q=r.gZb(),p=r.M -if(p==null){s=A.arR(q) -r.hf(s) -r.M=s}else p.sr5(q) -r.q=a}, -gea(){var s,r,q=this,p=q.D -if(p===$){s=$.aJ()?A.aT():new A.aO(new A.aQ()) -r=$.b4() -A.ba(q.D,"_caretPainter") -p=q.D=new A.BD(q.ga4U(),s,B.j,r)}return p}, -gZa(){var s=this,r=s.bA -if(r==null){r=A.b([],t.xT) -if(s.ff)r.push(s.gea()) -r=s.bA=new A.tV(r,$.b4())}return r}, -gZb(){var s=this,r=s.bI -if(r==null){r=A.b([s.au,s.b6],t.xT) -if(!s.ff)r.push(s.gea()) -r=s.bI=new A.tV(r,$.b4())}return r}, -a4V(a){if(!J.f(this.ei,a))this.ej.$1(a) -this.ei=a}, -srp(a,b){return}, -soh(a){var s=this.al -if(s.z===a)return -s.soh(a) -this.iI()}, -sv8(a,b){if(this.eR===b)return -this.eR=b -this.iI()}, -saeu(a){if(this.dt===a)return -this.dt=a -this.a0()}, -saet(a){if(this.cb===a)return -this.cb=a -this.ai()}, -rK(a){var s=this.al.a.Eu(a) -if(this.cb)return A.cj(B.l,0,this.gpl().length,!1) -return A.cj(B.l,s.a,s.b,!1)}, -kc(a,b){var s,r -if(a.gbv()){s=this.cX.a.c.a.a.length -a=a.pY(Math.min(a.c,s),Math.min(a.d,s))}r=this.cX.a.c.a.io(a) -this.cX.fT(r,b)}, -aF(){this.Tg() -var s=this.C -if(s!=null)s.aF() -s=this.M -if(s!=null)s.aF()}, -iI(){this.dF=this.cK=null -this.a0()}, -jV(){var s=this -s.xG() -s.al.a0() -s.dF=s.cK=null}, -gpl(){var s=this.e1 -return s==null?this.e1=this.al.c.rr(!1):s}, -sc7(a,b){var s=this,r=s.al -if(J.f(r.c,b))return -r.sc7(0,b) -s.ho=s.fK=s.e1=null -s.Hp(b) -s.iI() -s.ai()}, -smc(a,b){var s=this.al -if(s.d===b)return -s.smc(0,b) -this.iI()}, -sbx(a,b){var s=this.al -if(s.e===b)return -s.sbx(0,b) -this.iI() -this.ai()}, -slY(a,b){var s=this.al -if(J.f(s.w,b))return -s.slY(0,b) -this.iI()}, -sj1(a,b){var s=this.al -if(J.f(s.y,b))return -s.sj1(0,b) -this.iI()}, -sRf(a){var s=this,r=s.ek -if(r===a)return -if(s.b!=null)r.K(0,s.guc()) -s.ek=a -if(s.b!=null){s.gea().sxf(s.ek.a) -s.ek.a2(0,s.guc())}}, -a7j(){this.gea().sxf(this.ek.a)}, -sbR(a){if(this.fL===a)return -this.fL=a -this.ai()}, -sacz(a){if(this.fM)return -this.fM=!0 -this.a0()}, -srg(a,b){if(this.fN===b)return -this.fN=b -this.ai()}, -snP(a,b){if(this.u===b)return -this.u=b -this.iI()}, -saen(a){return}, -sCc(a){return}, -skV(a){var s=this.al -if(s.f===a)return -s.skV(a) -this.iI()}, -srV(a){var s=this -if(s.aK.k(0,a))return -s.aK=a -s.b6.svG(a) -s.aF() -s.ai()}, -sbJ(a,b){var s=this,r=s.c6 -if(r===b)return -if(s.b!=null)r.K(0,s.gd5()) -s.c6=b -if(s.b!=null)b.a2(0,s.gd5()) -s.a0()}, -sab6(a){if(this.el===a)return -this.el=a -this.a0()}, -sab5(a){return}, -safj(a){var s=this -if(s.ff===a)return -s.ff=a -s.bI=s.bA=null -s.KR(s.a7) -s.KY(s.q)}, -sRw(a){if(this.iw===a)return -this.iw=a -this.aF()}, -sabO(a){if(this.ky===a)return -this.ky=a -this.aF()}, -sabI(a){var s=this -if(s.fO===a)return -s.fO=a -s.iI() -s.ai()}, -gER(){var s=this.fO -return s}, -rF(a){var s,r -this.hD() -s=this.al.rF(a) -r=A.af(s).j("az<1,w>") -return A.ap(new A.az(s,new A.a4O(this),r),!0,r.j("bl.E"))}, -eO(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -d.fY(a) -s=d.al -r=s.c -r.toString -q=A.b([],t.O_) -r.uS(q) -d.br=q -if(B.c.fD(q,new A.a4N())&&A.dI()!==B.aY){a.b=a.a=!0 -return}r=d.fK -if(r==null)if(d.cb){r=new A.bQ(B.b.W(d.dt,d.gpl().length),B.S) -d.fK=r}else{p=new A.by("") -o=A.b([],t.oU) -for(r=d.br,n=r.length,m=0,l=0,k="";lh){d=c0[h].dx -d=d!=null&&d.A(0,new A.lT(i,b7))}else d=!1 -if(!d)break -b=c0[h] -d=s.e -d.toString -m.a(d) -c=b.w -a=c.a -a0=c.b -d=d.e -d.toString -d=new A.w(a,a0,a+(c.c-a)*d,a0+(c.d-a0)*d) -if(!c.k(0,d)){b.w=d -b.h8()}b5.push(b);++h}b7=s.e -b7.toString -s=n.a(b7).ae$;++i}else{a1=b6.a.mi(c,d,B.cR,B.bL) -if(a1.length===0)continue -d=B.c.gJ(a1) -a2=new A.w(d.a,d.b,d.c,d.d) -a3=B.c.gJ(a1).e -for(d=A.af(a1),c=new A.fF(a1,1,b4,d.j("fF<1>")),c.tg(a1,1,b4,d.c),c=new A.cL(c,c.gp(c)),d=A.n(c).c;c.t();){a=c.d -if(a==null)a=d.a(a) -a2=a2.kw(new A.w(a.a,a.b,a.c,a.d)) -a3=a.e}d=a2.a -c=Math.max(0,d) -a=a2.b -a0=Math.max(0,a) -d=Math.min(a2.c-d,o.a(A.u.prototype.ga_.call(b3)).b) -a=Math.min(a2.d-a,o.a(A.u.prototype.ga_.call(b3)).d) -a4=Math.floor(c)-4 -a5=Math.floor(a0)-4 -d=Math.ceil(c+d)+4 -a=Math.ceil(a0+a)+4 -a6=new A.w(a4,a5,d,a) -a7=A.oA() -a8=k+1 -a7.id=new A.ob(k,b4) -a7.d=!0 -a7.xr=l -a0=f.b -b7=a0==null?b7:a0 -a7.p4=new A.bQ(b7,f.f) -b7=b8.y -if(b7!=null){a9=b7.e2(a6) -if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a) -else b7=!1 -a7.b3(B.eJ,b7)}b0=A.bx("newChild") -b7=b3.em -d=b7==null?b4:b7.a!==0 -if(d===!0){b7.toString -d=new A.b3(b7,A.n(b7).j("b3<1>")) -b1=d.ga1(d) -if(!b1.t())A.K(A.bB()) -b7=b7.B(0,b1.gH(b1)) -b7.toString -if(b0.b!==b0)A.K(A.k5(b0.a)) -b0.b=b7}else{b2=new A.oZ() -b7=A.KN(b2,b3.a_4(b2)) -if(b0.b!==b0)A.K(A.k5(b0.a)) -b0.b=b7}if(b7===b0)A.K(A.e2(b0.a)) -J.aoe(b7,a7) -if(!b7.w.k(0,a6)){b7.w=a6 -b7.h8()}b7=b0.b -if(b7===b0)A.K(A.e2(b0.a)) -d=b7.d -d.toString -r.n(0,d,b7) -b7=b0.b -if(b7===b0)A.K(A.e2(b0.a)) -b5.push(b7) -k=a8 -l=a3}}b3.em=r -b8.jO(0,b5,b9)}, -a_4(a){return new A.a4K(this,a)}, -a3o(a){this.kc(a,B.L)}, -a2z(a){var s=this,r=s.al.Ew(s.aK.d) -if(r==null)return -s.kc(A.cj(B.l,!a?r:s.aK.c,r,!1),B.L)}, -a2v(a){var s=this,r=s.al.Ex(s.aK.d) -if(r==null)return -s.kc(A.cj(B.l,!a?r:s.aK.c,r,!1),B.L)}, -a2B(a){var s,r=this,q=r.aK.gdd(),p=r.HT(r.al.a.ft(0,q).b) -if(p==null)return -s=a?r.aK.c:p.a -r.kc(A.cj(B.l,s,p.a,!1),B.L)}, -a2x(a){var s,r=this,q=r.aK.gdd(),p=r.HV(r.al.a.ft(0,q).a-1) -if(p==null)return -s=a?r.aK.c:p.a -r.kc(A.cj(B.l,s,p.a,!1),B.L)}, -HT(a){var s,r,q -for(s=this.al;!0;){r=s.a.ft(0,new A.b9(a,B.l)) -q=r.a -q=!(q>=0&&r.b>=0)||q===r.b -if(q)return null -if(!this.J_(r))return r -a=r.b}}, -HV(a){var s,r,q -for(s=this.al;a>=0;){r=s.a.ft(0,new A.b9(a,B.l)) -q=r.a -q=!(q>=0&&r.b>=0)||q===r.b -if(q)return null -if(!this.J_(r))return r -a=r.a-1}return null}, -J_(a){var s,r,q,p -for(s=a.a,r=a.b,q=this.al;ss.gdz()*n.u)return s.gdz()*n.u -if(a===1/0){q=n.gpl() -for(s=q.length,p=1,o=0;o=m)return A.Au(a) -if(p.cb)return A.cj(B.l,0,p.gpl().length,!1) -else if(A.a9L(B.b.ak(p.gpl(),n))&&n>0){s=o.a -r=p.HV(s) -switch(A.dI().a){case 2:if(r==null){q=p.HT(s) -if(q==null)return A.mo(B.l,n) -return A.cj(B.l,n,q.b,!1)}return A.cj(B.l,r.a,n,!1) -case 0:if(p.fN){if(r==null)return A.cj(B.l,n,n+1,!1) -return A.cj(B.l,r.a,n,!1)}break -case 1:case 4:case 3:case 5:break}}return A.cj(B.l,o.a,m,!1)}, -IF(a,b){var s,r,q,p,o,n,m,l,k,j=this,i="_placeholderSpans",h=j.bz$ -if(h===0){h=t.tZ -j.al.j_(A.b([],h)) -return A.b([],h)}s=j.U$ -r=A.b7(h,B.dp,!1,t.jP) -q=new A.aF(0,a.b,0,1/0).eu(0,j.al.f) -for(h=A.n(j).j("ac.1"),p=!b,o=0;s!=null;){if(p){s.cH(0,q,!0) -n=s.k1 -n.toString -switch(J.ag(A.a(j.af,i),o).b.a){case 0:m=J.ag(A.a(j.af,i),o).c -m.toString -l=s.wL(m) -break -case 1:case 2:case 4:case 5:case 3:l=null -break -default:l=null}k=n}else{k=s.hy(q) -l=null}J.ag(A.a(j.af,i),o).toString -r[o]=new A.j9(k,l,J.ag(A.a(j.af,i),o).c) -n=s.e -n.toString -s=h.a(n).ae$;++o}return r}, -a4k(a){return this.IF(a,!1)}, -a77(){var s,r,q=this.U$,p=t.l,o=this.al,n=A.n(this).j("ac.1"),m=0 -while(!0){if(!(q!=null&&mr)return new A.aw(o.gvU(o),new A.m(s.a,o.gly(o)),t.DC)}n=Math.max(0,p-1) -if(p!==0){r=B.c.gR(b) -r=r.gly(r) -p=B.c.gR(b) -p=r+p.gv7(p) -r=p}else r=0 -return new A.aw(n,new A.m(s.a,r),t.DC)}, -Hq(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d="_caretPrototype",c="_caretMetrics",b={},a=a2.Z(0,e.gec()),a0=e.dG -if(!a0){a0=e.k1 -s=new A.w(0,0,0+a0.a,0+a0.b) -a0=e.al -r=e.aK -a0.lj(new A.b9(r.a,r.e),A.a(e.jp,d)) -q=A.a(a0.cx,c).a -e.co.sl(0,s.hp(0.5).A(0,q.Z(0,a))) -r=e.aK -a0.lj(new A.b9(r.b,r.e),A.a(e.jp,d)) -p=A.a(a0.cx,c).a -e.c5.sl(0,s.hp(0.5).A(0,p.Z(0,a)))}o=e.C -n=e.M -if(n!=null)a1.df(n,a2) -a0=e.al -a0.aH(a1.gc2(a1),a) -r=b.a=e.U$ -m=t.l -l=a.a -k=a.b -j=A.n(e).j("ac.1") -i=0 -while(!0){if(!(r!=null&&i0||!J.f(n.gec(),B.j))&&n.qu!==B.u -r=n.ds -if(s){s=A.a(n.CW,"_needsCompositing") -q=n.k1 -r.saL(0,a.m6(s,b,new A.w(0,0,0+q.a,0+q.b),n.ga_H(),n.qu,r.a))}else{r.saL(0,null) -n.Hq(a,b)}if(n.aK.gbv()){s=n.Eq(n.aK) -p=s[0].a -r=B.e.G(p.a,0,n.k1.a) -q=B.e.G(p.b,0,n.k1.b) -a.rb(new A.nX(n.iw,new A.m(r,q),A.aj()),A.u.prototype.gfl.call(n),B.j) -if(s.length===2){o=s[1].a -s=B.e.G(o.a,0,n.k1.a) -r=B.e.G(o.b,0,n.k1.b) -a.rb(new A.nX(n.ky,new A.m(s,r),A.aj()),A.u.prototype.gfl.call(n),B.j)}}}, -jj(a){var s -if(this.fP>0||!J.f(this.gec(),B.j)){s=this.k1 -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}} -A.a4L.prototype={ -$1(a){if(a instanceof A.kh)J.fN(A.a(this.a.af,"_placeholderSpans"),a) -return!0}, -$S:38} -A.a4O.prototype={ -$1(a){return new A.w(a.a,a.b,a.c,a.d).c8(this.a.gec())}, -$S:297} -A.a4N.prototype={ -$1(a){return!1}, -$S:114} -A.a4K.prototype={ -$0(){var s=this.a,r=s.em.h(0,this.b) -r.toString -s.l9(s,r.w)}, -$S:0} -A.a4P.prototype={ -$2(a,b){var s=a==null?null:a.kw(new A.w(b.a,b.b,b.c,b.d)) -return s==null?new A.w(b.a,b.b,b.c,b.d):s}, -$S:299} -A.a4Q.prototype={ -$2(a,b){return this.a.a.bD(a,b)}, -$S:11} -A.a4M.prototype={ -$2(a,b){var s=this.a.a -s.toString -a.df(s,b)}, -$S:12} -A.Qg.prototype={ -ga3(a){return t.CA.a(A.H.prototype.ga3.call(this,this))}, -gar(){return!0}, -ghz(){return!0}, -sr5(a){var s,r=this,q=r.C -if(a===q)return -r.C=a -s=a.ew(q) -if(s)r.aF() -if(r.b!=null){s=r.gd5() -q.K(0,s) -a.a2(0,s)}}, -aH(a,b){var s,r,q=this,p=t.CA.a(A.H.prototype.ga3.call(q,q)),o=q.C -if(p!=null){p.hD() -s=a.gc2(a) -r=q.k1 -r.toString -o.jE(s,r,p)}}, -aj(a){this.dE(a) -this.C.a2(0,this.gd5())}, -aa(a){this.C.K(0,this.gd5()) -this.d7(0)}, -c4(a){return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d))}} -A.m0.prototype={} -A.DB.prototype={ -svF(a){if(J.f(a,this.r))return -this.r=a -this.ab()}, -svG(a){if(J.f(a,this.w))return -this.w=a -this.ab()}, -sES(a){if(this.x===a)return -this.x=a -this.ab()}, -sET(a){if(this.y===a)return -this.y=a -this.ab()}, -jE(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.w,h=j.r -if(i==null||h==null||i.a===i.b)return -s=j.f -s.sad(0,h) -r=c.al -q=r.rG(A.cj(B.l,i.a,i.b,!1),j.x,j.y) -for(p=q.length,o=0;o>>16&255,o>>>8&255,o&255)}if(r||h==null||!e.f)return -r=A.yV(s.c8(a0.gec()),B.KB) -g=e.y -if(g===$){f=$.aJ()?A.aT():new A.aO(new A.aQ()) -A.ba(e.y,"floatingCursorPaint") -g=e.y=f}g.sad(0,h) -a.cm(0,r,g)}, -ew(a){var s=this -if(s===a)return!1 -return!(a instanceof A.BD)||a.f!==s.f||a.w!==s.w||!J.f(a.z,s.z)||!J.f(a.Q,s.Q)||!a.as.k(0,s.as)||!J.f(a.at,s.at)||!J.f(a.ax,s.ax)}} -A.tV.prototype={ -a2(a,b){var s,r,q -for(s=this.f,r=s.length,q=0;q328){s-=128 -r+=64}A.a(i.M,h).fg(0,new A.lR(s)) -p=i.k1.b -o=A.a(i.M,h) -if(p>96+o.gbk(o)+12)q+=96 -p=a.gc2(a) -o=A.a(i.M,h) -o.toString -p.hm(0,o,b.Z(0,new A.m(r,q)))}}catch(j){}}} -A.wK.prototype={ -i(a){return"FlexFit."+this.b}} -A.f3.prototype={ -i(a){return this.t6(0)+"; flex="+A.e(this.e)+"; fit="+A.e(this.f)}} -A.xL.prototype={ -i(a){return"MainAxisSize."+this.b}} -A.xK.prototype={ -i(a){return"MainAxisAlignment."+this.b}} -A.li.prototype={ -i(a){return"CrossAxisAlignment."+this.b}} -A.zd.prototype={ -f3(a){if(!(a.e instanceof A.f3))a.e=new A.f3(null,null,B.j)}, -tC(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=this -if(g.a7===B.fu)return 0 -s=g.C -r=g.U$ -if(s===c){for(s=t.US,q=0,p=0,o=0;r!=null;){n=r.e -n.toString -m=s.a(n).e -if(m==null)m=0 -q+=m -if(m>0){n=a.$2(r,b) -l=r.e -l.toString -l=s.a(l).e -o=Math.max(o,n/(l==null?0:l))}else p+=a.$2(r,b) -n=r.e -n.toString -r=s.a(n).ae$}return o*q+p}else{for(s=t.US,q=0,p=0,k=0;r!=null;){n=r.e -n.toString -m=s.a(n).e -if(m==null)m=0 -q+=m -j=A.bx("mainSize") -i=A.bx("crossSize") -if(m===0){switch(g.C.a){case 0:n=r.av(B.a8,1/0,r.gbf()) -if(j.b!==j)A.K(A.k5(j.a)) -j.b=n -n=a.$2(r,n) -if(i.b!==i)A.K(A.k5(i.a)) -i.b=n -break -case 1:n=r.av(B.b_,1/0,r.gbM()) -if(j.b!==j)A.K(A.k5(j.a)) -j.b=n -n=a.$2(r,n) -if(i.b!==i)A.K(A.k5(i.a)) -i.b=n -break}n=j.b -if(n===j)A.K(A.e2(j.a)) -p+=n -n=i.b -if(n===i)A.K(A.e2(i.a)) -k=Math.max(k,A.da(n))}n=r.e -n.toString -r=s.a(n).ae$}h=Math.max(0,(b-p)/q) -r=g.U$ -for(;r!=null;){n=r.e -n.toString -m=s.a(n).e -if(m==null)m=0 -if(m>0)k=Math.max(k,A.da(a.$2(r,h*m))) -n=r.e -n.toString -r=s.a(n).ae$}return k}}, -b1(a){return this.tC(new A.a4U(),a,B.as)}, -aU(a){return this.tC(new A.a4S(),a,B.as)}, -aX(a){return this.tC(new A.a4T(),a,B.a2)}, -b0(a){return this.tC(new A.a4R(),a,B.a2)}, -dW(a){if(this.C===B.as)return this.Mx(a) -return this.abf(a)}, -tB(a){switch(this.C.a){case 0:return a.b -case 1:return a.a}}, -tE(a){switch(this.C.a){case 0:return a.a -case 1:return a.b}}, -c4(a){var s -if(this.a7===B.fu)return B.o -s=this.GY(a,A.EG()) -switch(this.C.a){case 0:return a.bo(new A.L(s.a,s.b)) -case 1:return a.bo(new A.L(s.b,s.a))}}, -GY(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.C===B.as?a2.b:a2.d,a0=a<1/0,a1=c.U$ -for(s=t.US,r=a2.b,q=a2.d,p=b,o=0,n=0,m=0;a1!=null;){l=a1.e -l.toString -s.a(l) -k=l.e -if(k==null)k=0 -if(k>0){o+=k -p=a1}else{if(c.a7===B.dW)switch(c.C.a){case 0:j=A.n1(q,b) -break -case 1:j=A.n1(b,r) -break -default:j=b}else switch(c.C.a){case 0:j=new A.aF(0,1/0,0,q) -break -case 1:j=new A.aF(0,r,0,1/0) -break -default:j=b}i=a3.$2(a1,j) -m+=c.tE(i) -n=Math.max(n,A.da(c.tB(i)))}a1=l.ae$}h=Math.max(0,(a0?a:0)-m) -if(o>0){g=a0?h/o:0/0 -a1=c.U$ -for(f=0;a1!=null;){l=a1.e -l.toString -k=s.a(l).e -if(k==null)k=0 -if(k>0){if(a0)e=a1===p?h-f:g*k -else e=1/0 -d=A.bx("minChildExtent") -l=a1.e -l.toString -l=s.a(l).f -switch((l==null?B.n6:l).a){case 0:if(d.b!==d)A.K(A.k5(d.a)) -d.b=e -break -case 1:if(d.b!==d)A.K(A.k5(d.a)) -d.b=0 -break}if(c.a7===B.dW)switch(c.C.a){case 0:l=d.b -if(l===d)A.K(A.e2(d.a)) -j=new A.aF(l,e,q,q) -break -case 1:l=d.b -if(l===d)A.K(A.e2(d.a)) -j=new A.aF(r,r,l,e) -break -default:j=b}else switch(c.C.a){case 0:l=d.b -if(l===d)A.K(A.e2(d.a)) -j=new A.aF(l,e,0,q) -break -case 1:l=d.b -if(l===d)A.K(A.e2(d.a)) -j=new A.aF(0,r,l,e) -break -default:j=b}i=a3.$2(a1,j) -m+=c.tE(i) -f+=e -n=Math.max(n,A.da(c.tB(i)))}l=a1.e -l.toString -a1=s.a(l).ae$}}return new A.adU(a0&&c.af===B.Q?a:m,n,m)}, -bK(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=t.k.a(A.u.prototype.ga_.call(a)),a1=a.GY(a0,A.EH()),a2=a1.a,a3=a1.b -if(a.a7===B.fu){s=a.U$ -for(r=t.US,q=0,p=0,o=0;s!=null;){n=a.b6 -n.toString -m=s.wM(n,!0) -if(m!=null){q=Math.max(q,m) -p=Math.max(m,p) -o=Math.max(s.k1.b-m,o) -a3=Math.max(p+o,a3)}n=s.e -n.toString -s=r.a(n).ae$}}else q=0 -switch(a.C.a){case 0:r=a.k1=a0.bo(new A.L(a2,a3)) -a2=r.a -a3=r.b -break -case 1:r=a.k1=a0.bo(new A.L(a3,a2)) -a2=r.b -a3=r.a -break}l=a2-a1.c -a.au=Math.max(0,-l) -k=Math.max(0,l) -j=A.bx("leadingSpace") -i=A.bx("betweenSpace") -r=A.asZ(a.C,a.q,a.D) -h=r===!1 -switch(a.M.a){case 0:j.sdH(0) -i.sdH(0) -break -case 1:j.sdH(k) -i.sdH(0) -break -case 2:j.sdH(k/2) -i.sdH(0) -break -case 3:j.sdH(0) -r=a.bz$ -i.sdH(r>1?k/(r-1):0) -break -case 4:r=a.bz$ -i.sdH(r>0?k/r:0) -j.sdH(i.bm()/2) -break -case 5:r=a.bz$ -i.sdH(r>0?k/(r+1):0) -j.sdH(i.bm()) -break}g=h?a2-j.bm():j.bm() -s=a.U$ -for(r=t.US,n=a3/2,f=i.a;s!=null;){e=s.e -e.toString -r.a(e) -d=a.a7 -switch(d.a){case 0:case 1:if(A.asZ(A.aHL(a.C),a.q,a.D)===(d===B.aC))c=0 -else{d=s.k1 -d.toString -c=a3-a.tB(d)}break -case 2:d=s.k1 -d.toString -c=n-a.tB(d)/2 -break -case 3:c=0 -break -case 4:if(a.C===B.as){d=a.b6 -d.toString -m=s.wM(d,!0) -c=m!=null?q-m:0}else c=0 -break -default:c=null}if(h){d=s.k1 -d.toString -g-=a.tE(d)}switch(a.C.a){case 0:e.a=new A.m(g,c) -break -case 1:e.a=new A.m(c,g) -break}if(h){d=i.b -if(d===i)A.K(A.e2(f)) -g-=d}else{d=s.k1 -d.toString -d=a.tE(d) -b=i.b -if(b===i)A.K(A.e2(f)) -g+=d+b}s=e.ae$}}, -cL(a,b){return this.BJ(a,b)}, -aH(a,b){var s,r,q,p=this -if(!(p.au>1e-10)){p.q2(a,b) -return}s=p.k1 -if(s.gS(s))return -s=p.bI -if(p.bA===B.u){s.saL(0,null) -p.q2(a,b)}else{r=A.a(p.CW,"_needsCompositing") -q=p.k1 -s.saL(0,a.m6(r,b,new A.w(0,0,0+q.a,0+q.b),p.gabg(),p.bA,s.a))}}, -m(a){this.bI.saL(0,null) -this.le(0)}, -jj(a){var s -if(this.au>1e-10){s=this.k1 -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}, -cv(){var s=this.Th() -return s}} -A.a4U.prototype={ -$2(a,b){return a.av(B.U,b,a.gb9())}, -$S:36} -A.a4S.prototype={ -$2(a,b){return a.av(B.a8,b,a.gbf())}, -$S:36} -A.a4T.prototype={ -$2(a,b){return a.av(B.ah,b,a.gbn())}, -$S:36} -A.a4R.prototype={ -$2(a,b){return a.av(B.b_,b,a.gbM())}, -$S:36} -A.adU.prototype={} -A.Qi.prototype={ -aj(a){var s,r,q -this.dE(a) -s=this.U$ -for(r=t.US;s!=null;){s.aj(a) -q=s.e -q.toString -s=r.a(q).ae$}}, -aa(a){var s,r,q -this.d7(0) -s=this.U$ -for(r=t.US;s!=null;){s.aa(0) -q=s.e -q.toString -s=r.a(q).ae$}}} -A.Qj.prototype={} -A.Qk.prototype={} -A.zf.prototype={ -a3V(){var s=this -if(s.C!=null)return -s.C=s.ej -s.M=!1}, -IO(){this.M=this.C=null -this.aF()}, -seT(a,b){var s=this,r=s.af -if(b==r)return -if(b!=null&&r!=null&&b.CT(r)){b.m(0) -return}r=s.af -if(r!=null)r.m(0) -s.af=b -s.aF()}, -saQ(a,b){if(b===this.q)return -this.q=b -this.a0()}, -sbk(a,b){if(b===this.D)return -this.D=b -this.a0()}, -sQA(a,b){if(b===this.b6)return -this.b6=b -this.a0()}, -a8x(){this.au=null}, -sad(a,b){return}, -sdJ(a,b){return}, -skz(a){if(a===this.cK)return -this.cK=a -this.aF()}, -saak(a){return}, -sacn(a){return}, -sj9(a){if(a.k(0,this.ej))return -this.ej=a -this.IO()}, -sag2(a,b){if(b===this.cs)return -this.cs=b -this.aF()}, -sa9Z(a){return}, -svM(a){if(a===this.dt)return -this.dt=a -this.aF()}, -saef(a){return}, -sbx(a,b){if(this.cX==b)return -this.cX=b -this.IO()}, -sqI(a){return}, -mY(a){var s,r,q=this,p=q.q -a=A.n1(q.D,p).qh(a) -p=q.af -if(p==null)return new A.L(B.f.G(0,a.a,a.b),B.f.G(0,a.c,a.d)) -p=p.gaQ(p) -s=q.b6 -r=q.af -return a.aat(new A.L(p/s,r.gbk(r)/q.b6))}, -b1(a){return this.mY(A.hA(a,1/0)).a}, -aU(a){return this.mY(A.hA(a,1/0)).a}, -aX(a){return this.mY(A.hA(1/0,a)).b}, -b0(a){return this.mY(A.hA(1/0,a)).b}, -hV(a){return!0}, -c4(a){return this.mY(a)}, -bK(){this.k1=this.mY(t.k.a(A.u.prototype.ga_.call(this)))}, -aj(a){this.dE(a)}, -aa(a){this.d7(0)}, -aH(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -if(d.af==null)return -d.a3V() -s=a.gc2(a) -r=d.k1 -q=b.a -p=b.b -o=r.a -r=r.b -n=d.af -n.toString -m=d.a7 -l=d.b6 -k=d.au -j=d.ei -i=d.C -i.toString -h=d.eR -g=d.cs -f=d.M -f.toString -e=d.dt -A.atZ(i,s,h,k,m,d.cK,j,f,n,e,!1,1,new A.w(q,p,q+o,p+r),g,l)}, -m(a){var s=this.af -if(s!=null)s.m(0) -this.af=null -this.le(0)}} -A.vs.prototype={ -i(a){return"AnnotationEntry(annotation: "+this.a.i(0)+", localPosition: "+this.b.i(0)+")"}} -A.F3.prototype={} -A.xs.prototype={ -m(a){var s=this.w -if(s!=null)s.m(0) -this.w=null}, -de(){if(this.r)return -this.r=!0}, -glw(){return!1}, -sfd(a){var s=this,r=s.w -if(r!=null)r.m(0) -s.w=a -if(!s.glw()){r=t.Hb -if(r.a(A.H.prototype.ga3.call(s,s))!=null&&!r.a(A.H.prototype.ga3.call(s,s)).glw())r.a(A.H.prototype.ga3.call(s,s)).de()}}, -wD(){this.r=this.r||this.glw()}, -jm(a){if(!this.glw())this.de() -this.xv(a)}, -bw(a){var s,r,q=this,p=t.Hb.a(A.H.prototype.ga3.call(q,q)) -if(p!=null){s=q.y -r=q.x -if(s==null)p.ax=r -else s.x=r -r=q.x -if(r==null)p.ay=s -else r.y=s -q.x=q.y=null -p.jm(q) -q.e.saL(0,null)}}, -eF(a,b,c){return!1}, -Nd(a,b,c){var s=A.b([],c.j("o>")) -this.eF(new A.F3(s,c.j("F3<0>")),b,!0,c) -return s.length===0?null:B.c.gJ(s).a}, -Yz(a){var s,r=this -if(!r.r&&r.w!=null){s=r.w -s.toString -a.Lw(s) -return}r.fC(a) -r.r=!1}, -cv(){var s=this.Sr() -return s+(this.b==null?" DETACHED":"")}} -A.I3.prototype={ -saL(a,b){var s=this.a -if(b==null?s==null:b===s)return -if(s!=null)if(--s.f===0)J.ES(s) -this.a=b -if(b!=null)++b.f}, -i(a){var s=this.a -return"LayerHandle("+(s!=null?J.bX(s):"DISPOSED")+")"}} -A.Jq.prototype={ -sOF(a){var s -this.de() -s=this.ay -if(s!=null)s.m(0) -this.ay=a}, -m(a){this.sOF(null) -this.FB(0)}, -fC(a){var s=this.ay -s.toString -a.Lt(B.j,s,this.ch,this.CW)}, -eF(a,b,c){return!1}} -A.Ji.prototype={ -fC(a){a.Ls(this.ay,this.ax) -a.F7(this.ch) -a.EX(!1) -a.EW(!1)}, -eF(a,b,c){return!1}} -A.dY.prototype={ -a9L(a){this.wD() -this.fC(a) -this.r=!1 -return a.bq(0)}, -m(a){this.DM() -this.FB(0)}, -wD(){var s,r=this -r.SL() -s=r.ax -for(;s!=null;){s.wD() -r.r=r.r||s.r -s=s.x}}, -eF(a,b,c,d){var s,r,q -for(s=this.ay,r=a.a;s!=null;s=s.y){if(s.eF(a,b,!0,d))return!0 -q=r.length -if(q!==0)return!1}return!1}, -aj(a){var s -this.xu(a) -s=this.ax -for(;s!=null;){s.aj(a) -s=s.x}}, -aa(a){var s -this.d7(0) -s=this.ax -for(;s!=null;){s.aa(0) -s=s.x}}, -kp(a,b){var s,r=this -if(!r.glw())r.de() -r.Fo(b) -s=b.y=r.ay -if(s!=null)s.x=b -r.ay=b -if(r.ax==null)r.ax=b -b.e.saL(0,b)}, -DM(){var s,r=this,q=r.ax -for(;q!=null;q=s){s=q.x -q.x=q.y=null -if(!r.glw())r.de() -r.xv(q) -q.e.saL(0,null)}r.ay=r.ax=null}, -fC(a){this.hF(a)}, -hF(a){var s=this.ax -for(;s!=null;){s.Yz(a) -s=s.x}}, -n8(a,b){}} -A.j5.prototype={ -sbJ(a,b){if(!b.k(0,this.id))this.de() -this.id=b}, -eF(a,b,c,d){return this.j2(a,b.a9(0,this.id),!0,d)}, -n8(a,b){var s=this.id -b.cg(0,A.o4(s.a,s.b,0))}, -fC(a){var s=this,r=s.id -s.sfd(a.DD(r.a,r.b,t.Ff.a(s.w))) -s.hF(a) -a.dg(0)}} -A.w0.prototype={ -eF(a,b,c,d){if(!this.id.A(0,b))return!1 -return this.j2(a,b,!0,d)}, -fC(a){var s=this,r=s.id -r.toString -s.sfd(a.OU(r,s.k1,t.GB.a(s.w))) -s.hF(a) -a.dg(0)}} -A.w_.prototype={ -eF(a,b,c,d){if(!this.id.A(0,b))return!1 -return this.j2(a,b,!0,d)}, -fC(a){var s=this,r=s.id -r.toString -s.sfd(a.OT(r,s.k1,t.cW.a(s.w))) -s.hF(a) -a.dg(0)}} -A.vZ.prototype={ -eF(a,b,c,d){if(!this.id.A(0,b))return!1 -return this.j2(a,b,!0,d)}, -fC(a){var s=this,r=s.id -r.toString -s.sfd(a.OS(r,s.k1,t.Aw.a(s.w))) -s.hF(a) -a.dg(0)}} -A.tF.prototype={ -sce(a,b){var s=this -if(b.k(0,s.to))return -s.to=b -s.xr=!0 -s.de()}, -fC(a){var s,r,q=this -q.x1=q.to -if(!q.id.k(0,B.j)){s=q.id -s=A.o4(s.a,s.b,0) -r=q.x1 -r.toString -s.cg(0,r) -q.x1=s}q.sfd(a.re(q.x1.a,t.qf.a(q.w))) -q.hF(a) -a.dg(0)}, -Aw(a){var s,r=this -if(r.xr){s=r.to -s.toString -r.x2=A.xW(A.akR(s)) -r.xr=!1}s=r.x2 -if(s==null)return null -return A.ha(s,a)}, -eF(a,b,c,d){var s=this.Aw(b) -if(s==null)return!1 -return this.SU(a,s,!0,d)}, -n8(a,b){var s=this.x1 -if(s==null){s=this.to -s.toString -b.cg(0,s)}else b.cg(0,s)}} -A.ym.prototype={ -fC(a){var s,r,q,p=this -if(p.ax==null){p.sfd(null) -return}s=p.to -s.toString -r=p.id -q=p.w -if(s<255)p.sfd(a.OW(s,r,t.Zr.a(q))) -else p.sfd(a.DD(r.a,r.b,t.Ff.a(q))) -p.hF(a) -a.dg(0)}} -A.yG.prototype={ -sLT(a,b){if(b!==this.id){this.id=b -this.de()}}, -sim(a){if(a!==this.k1){this.k1=a -this.de()}}, -sfc(a,b){if(b!==this.k2){this.k2=b -this.de()}}, -sad(a,b){if(!b.k(0,this.k3)){this.k3=b -this.de()}}, -sev(a,b){if(!b.k(0,this.k4)){this.k4=b -this.de()}}, -eF(a,b,c,d){if(!this.id.A(0,b))return!1 -return this.j2(a,b,!0,d)}, -fC(a){var s,r,q,p=this,o=p.id -o.toString -s=p.k2 -s.toString -r=p.k3 -r.toString -q=p.k4 -p.sfd(a.OY(p.k1,r,s,t._c.a(p.w),o,q)) -p.hF(a) -a.dg(0)}} -A.r2.prototype={ -i(a){var s=A.bF(this),r=this.a!=null?"":"" -return"#"+s+"("+r+")"}} -A.nX.prototype={ -sjz(a){var s=this,r=s.id -if(r===a)return -if(s.b!=null){if(r.a===s)r.a=null -a.a=s}s.id=a}, -sbJ(a,b){if(b.k(0,this.k1))return -this.k1=b -this.de()}, -aj(a){this.Sg(a) -this.id.a=this}, -aa(a){var s=this.id -if(s.a===this)s.a=null -this.Sh(0)}, -eF(a,b,c,d){return this.j2(a,b.a9(0,this.k1),!0,d)}, -fC(a){var s,r=this -if(!r.k1.k(0,B.j)){s=r.k1 -r.sfd(a.re(A.o4(s.a,s.b,0).a,t.qf.a(r.w)))}r.hF(a) -if(!r.k1.k(0,B.j))a.dg(0)}, -n8(a,b){var s -if(!this.k1.k(0,B.j)){s=this.k1 -b.aC(0,s.a,s.b)}}} -A.wS.prototype={ -Aw(a){var s,r,q,p,o=this -if(o.p2){s=o.Et() -s.toString -o.p1=A.xW(s) -o.p2=!1}if(o.p1==null)return null -r=new A.ik(new Float64Array(4)) -r.t0(a.a,a.b,0,1) -s=o.p1.T(0,r).a -q=s[0] -p=o.k3 -return new A.m(q-p.a,s[1]-p.b)}, -eF(a,b,c,d){var s,r=this -if(r.id.a==null){if(r.k1)return r.j2(a,b.a9(0,r.k2),!0,d) -return!1}s=r.Aw(b) -if(s==null)return!1 -return r.j2(a,s,!0,d)}, -Et(){var s,r -if(this.ok==null)return null -s=this.k4 -r=A.o4(-s.a,-s.b,0) -s=this.ok -s.toString -r.cg(0,s) -return r}, -a_W(){var s,r,q,p,o,n,m=this -m.ok=null -s=m.id.a -if(s==null)return -r=t.KV -q=A.b([s],r) -p=A.b([m],r) -A.Zi(s,m,q,p) -o=A.apg(q) -s.n8(null,o) -r=m.k3 -o.aC(0,r.a,r.b) -n=A.apg(p) -if(n.kr(n)===0)return -n.cg(0,o) -m.ok=n -m.p2=!0}, -glw(){return!0}, -fC(a){var s,r,q=this -if(q.id.a==null&&!q.k1){q.k4=q.ok=null -q.p2=!0 -q.sfd(null) -return}q.a_W() -s=q.ok -r=t.qf -if(s!=null){q.k4=q.k2 -q.sfd(a.re(s.a,r.a(q.w))) -q.hF(a) -a.dg(0)}else{q.k4=null -s=q.k2 -q.sfd(a.re(A.o4(s.a,s.b,0).a,r.a(q.w))) -q.hF(a) -a.dg(0)}q.p2=!0}, -n8(a,b){var s=this.ok -if(s!=null)b.cg(0,s) -else{s=this.k2 -b.cg(0,A.o4(s.a,s.b,0))}}} -A.vr.prototype={ -eF(a,b,c,d){var s,r,q,p=this,o=p.j2(a,b,!0,d),n=a.a -if(n.length!==0&&!0)return o -s=p.k1 -if(s!=null){r=p.k2 -q=r.a -r=r.b -s=!new A.w(q,r,q+s.a,r+s.b).A(0,b)}else s=!1 -if(s)return o -if(A.b1(p.$ti.c)===A.b1(d)){o=o||!1 -n.push(new A.vs(d.a(p.id),b.a9(0,p.k2),d.j("vs<0>")))}return o}} -A.OK.prototype={} -A.Pa.prototype={ -ag5(a){var s=this.a -this.a=a -return s}, -i(a){var s="#",r=A.bF(this.b),q=this.a.a -return s+A.bF(this)+"("+("latestEvent: "+(s+r))+", "+("annotations: [list of "+q+"]")+")"}} -A.Pb.prototype={ -gjk(a){var s=this.c -return s.gjk(s)}} -A.Iu.prototype={ -Ip(a){var s,r,q,p,o,n,m=t._h,l=A.hQ(null,null,null,m,t.xV) -for(s=a.a,r=s.length,q=0;q") -this.a.acE(a.gjk(a),a.d,A.k8(new A.b3(s,r),new A.a2f(),r.j("p.E"),t.Pb))}, -ah0(a,b){var s,r,q,p,o -if(a.gd4(a)!==B.bD)return -if(t.ks.b(a))return -s=t.PB.b(a)?A.akp():b.$0() -r=a.gjk(a) -q=this.b -p=q.h(0,r) -if(!A.aC6(p,a))return -o=q.a -new A.a2i(this,p,a,r,s).$0() -if(o!==0!==(q.a!==0))this.ab()}, -agT(a){new A.a2g(this,a).$0()}} -A.a2f.prototype={ -$1(a){return a.gMo(a)}, -$S:300} -A.a2i.prototype={ -$0(){var s=this -new A.a2h(s.a,s.b,s.c,s.d,s.e).$0()}, -$S:0} -A.a2h.prototype={ -$0(){var s,r,q,p,o,n=this,m=null,l=n.b -if(l==null){s=n.c -n.a.b.n(0,n.d,new A.Pa(A.hQ(m,m,m,t._h,t.xV),s))}else{s=n.c -if(t.PB.b(s))n.a.b.B(0,s.gjk(s))}r=n.a -q=r.b.h(0,n.d) -if(q==null){l.toString -q=l}p=q.b -q.b=s -o=t.PB.b(s)?A.hQ(m,m,m,t._h,t.xV):r.Ip(n.e) -r.I7(new A.Pb(q.ag5(o),o,p,s))}, -$S:0} -A.a2g.prototype={ -$0(){var s,r,q,p,o,n,m,l -for(s=this.a,r=s.b,r=r.gb2(r),r=new A.eq(J.av(r.a),r.b),q=this.b,p=A.n(r).z[1];r.t();){o=r.a -if(o==null)o=p.a(o) -n=o.b -m=s.a0g(o,q) -l=o.a -o.a=m -s.I7(new A.Pb(l,m,n,null))}}, -$S:0} -A.a2d.prototype={ -$2(a,b){var s -if(!this.a.ap(0,a))if(a.gEe()&&a.gDn(a)!=null){s=a.gDn(a) -s.toString -s.$1(this.b.bT(this.c.h(0,a)))}}, -$S:301} -A.a2e.prototype={ -$1(a){return!this.a.ap(0,a)}, -$S:302} -A.SL.prototype={} -A.cw.prototype={ -aa(a){}, -i(a){return""}} -A.rf.prototype={ -df(a,b){var s -if(a.gar()){this.oF() -if(a.cx)A.aq4(a,null,!0) -s=a.ay.a -s.toString -t.gY.a(s) -s.sbJ(0,b) -this.B6(s)}else a.J7(this,b)}, -B6(a){a.bw(0) -this.a.kp(0,a)}, -gc2(a){var s,r=this -if(r.e==null){r.c=new A.Jq(r.b,A.aj()) -s=A.aCm() -r.d=s -r.e=A.aA_(s,null) -s=r.c -s.toString -r.a.kp(0,s)}s=r.e -s.toString -return s}, -oF(){var s,r=this -if(r.e==null)return -s=r.c -s.toString -s.sOF(r.d.vj()) -r.e=r.d=r.c=null}, -F5(){var s=this.c -if(s!=null)if(!s.ch){s.ch=!0 -s.de()}}, -kQ(a,b,c,d){var s,r=this -if(a.ax!=null)a.DM() -r.oF() -r.B6(a) -s=r.ab_(a,d==null?r.b:d) -b.$2(s,c) -s.oF()}, -rb(a,b,c){return this.kQ(a,b,c,null)}, -ab_(a,b){return new A.rf(a,b)}, -m6(a,b,c,d,e,f){var s,r=c.c8(b) -if(a){s=f==null?new A.w0(B.ai,A.aj()):f -if(!r.k(0,s.id)){s.id=r -s.de()}if(e!==s.k1){s.k1=e -s.de()}this.kQ(s,d,b,r) -return s}else{this.aaf(r,e,r,new A.a3c(this,d,b)) -return null}}, -afw(a,b,c,d,e,f,g){var s,r=c.c8(b),q=d.c8(b) -if(a){s=g==null?new A.w_(B.dO,A.aj()):g -if(!q.k(0,s.id)){s.id=q -s.de()}if(f!==s.k1){s.k1=f -s.de()}this.kQ(s,e,b,r) -return s}else{this.aae(q,f,r,new A.a3b(this,e,b)) -return null}}, -afv(a,b,c,d,e,f,g){var s,r=c.c8(b),q=d.c8(b) -if(a){s=g==null?new A.vZ(B.dO,A.aj()):g -if(q!==s.id){s.id=q -s.de()}if(f!==s.k1){s.k1=f -s.de()}this.kQ(s,e,b,r) -return s}else{this.aac(q,f,r,new A.a3a(this,e,b)) -return null}}, -DE(a,b,c,d,e){var s,r=this,q=b.a,p=b.b,o=A.o4(q,p,0) -o.cg(0,c) -o.aC(0,-q,-p) -if(a){s=e==null?A.arg(null):e -s.sce(0,o) -r.kQ(s,d,b,A.apO(o,r.b)) -return s}else{q=r.gc2(r) -q.bF(0) -q.T(0,o.a) -d.$2(r,b) -r.gc2(r).bt(0) -return null}}, -OZ(a,b,c,d){return this.DE(a,b,c,d,null)}, -OX(a,b,c,d){var s=d==null?new A.ym(B.j,A.aj()):d,r=s.to -if(b!==r){if(b===255||r===255)s.sfd(null) -s.to=b -s.de()}s.sbJ(0,a) -this.rb(s,c,B.j) -return s}, -i(a){return"PaintingContext#"+A.e5(this)+"(layer: "+this.a.i(0)+", canvas bounds: "+this.b.i(0)+")"}} -A.a3c.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.a3b.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.a3a.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.W9.prototype={} -A.a6P.prototype={ -m(a){var s=this.b -if(s!=null)this.a.z.K(0,s) -s=this.a -if(--s.Q===0){s.z.m(0) -s.z=null -s.c.$0()}}} -A.Js.prototype={ -rj(){this.a.$0()}, -sagj(a){var s=this.d -if(s===a)return -if(s!=null)s.aa(0) -this.d=a -a.aj(this)}, -acq(){var s,r,q,p,o,n,m,l -try{for(q=t.O,p=t.TT;o=this.e,o.length!==0;){s=o -this.e=A.b([],p) -o=s -n=new A.a3t() -if(!!o.immutable$list)A.K(A.N("sort")) -m=o.length-1 -if(m-0<=32)A.Lh(o,0,m,n) -else A.Lg(o,0,m,n) -n=o.length -l=0 -for(;l0;m=l){l=m-1 -r[m].dm(r[l],n)}return n}, -jj(a){return null}, -BO(a){return null}, -eO(a){}, -rY(a){var s,r=this -if(t.O.a(A.H.prototype.gcc.call(r)).z==null)return -s=r.dx -if(s!=null&&!s.as)s.QO(a) -else if(r.ga3(r)!=null){s=r.ga3(r) -s.toString -t.d.a(s).rY(a)}}, -gA6(){var s,r=this -if(r.cy==null){s=A.oA() -r.cy=s -r.eO(s)}s=r.cy -s.toString -return s}, -ne(){this.db=!0 -this.dx=null -this.bb(new A.a55())}, -ai(){var s,r,q,p,o,n,m=this -if(m.b==null||t.O.a(A.H.prototype.gcc.call(m)).z==null){m.cy=null -return}if(m.dx!=null){s=m.cy -s=s==null?null:s.a -r=s===!0}else r=!1 -m.cy=null -q=m.gA6().a&&r -s=t.d -p=m -while(!0){if(!(!q&&p.ga3(p) instanceof A.u))break -if(p!==m&&p.db)break -p.db=!0 -o=p.ga3(p) -o.toString -s.a(o) -if(o.cy==null){n=A.oA() -o.cy=n -o.eO(n)}q=o.cy.a -if(q&&o.dx==null)return -p=o}if(p!==m&&m.dx!=null&&m.db)t.O.a(A.H.prototype.gcc.call(m)).at.B(0,m) -if(!p.db){p.db=!0 -s=t.O -if(s.a(A.H.prototype.gcc.call(m))!=null){s.a(A.H.prototype.gcc.call(m)).at.E(0,p) -s.a(A.H.prototype.gcc.call(m)).rj()}}}, -a8L(){var s,r,q,p,o,n,m=this,l=null -if(m.z)return -s=m.dx -if(s==null)s=l -else{s=t.LQ.a(A.H.prototype.ga3.call(s,s)) -if(s==null)s=l -else s=s.at||s.as}r=t.pp.a(m.HZ(s===!0)) -q=A.b([],t.J) -s=m.dx -p=s==null -o=p?l:s.x -n=p?l:s.y -s=p?l:s.z -r.pT(s==null?0:s,n,o,q) -B.c.gbX(q)}, -HZ(a){var s,r,q,p,o,n,m,l,k=this,j={},i=k.gA6() -j.a=i.c -s=!i.d&&!i.a -r=t.CZ -q=A.b([],r) -p=A.aK(t.pp) -k.fq(new A.a53(j,k,a||i.p2,q,p,i,s)) -for(o=A.ir(p,p.r),n=A.n(o).c;o.t();){m=o.d;(m==null?n.a(m):m).D7()}k.db=!1 -if(!(k.ga3(k) instanceof A.u)){o=j.a -l=new A.QD(A.b([],r),A.b([k],t.TT),o)}else{o=j.a -if(s)l=new A.abZ(A.b([],r),o) -else{l=new A.Rw(a,i,A.b([],r),A.b([k],t.TT),o) -if(i.a)l.x=!0}}l.P(0,q) -return l}, -fq(a){this.bb(a)}, -na(a,b,c){a.jO(0,t.V1.a(c),b)}, -hU(a,b){}, -cv(){var s=A.bF(this) -return"#"+s}, -i(a){return this.cv()}, -dD(a,b,c,d){var s,r=this -if(r.ga3(r) instanceof A.u){s=r.ga3(r) -s.toString -t.d.a(s) -s.dD(a,b==null?r:b,c,d)}}, -oB(){return this.dD(B.au,null,B.r,null)}, -l8(a){return this.dD(B.au,null,B.r,a)}, -mz(a,b,c){return this.dD(a,null,b,c)}, -l9(a,b){return this.dD(B.au,a,B.r,b)}, -$ia9:1} -A.a52.prototype={ -$0(){var s=A.b([],t.F),r=this.a -s.push(A.akc("The following RenderObject was being processed when the exception was fired",B.AH,r)) -s.push(A.akc("RenderObject",B.AI,r)) -return s}, -$S:18} -A.a56.prototype={ -$0(){this.b.$1(this.c.a(this.a.ga_()))}, -$S:0} -A.a54.prototype={ -$1(a){a.KM() -if(A.a(a.CW,"_needsCompositing"))this.a.CW=!0}, -$S:46} -A.a55.prototype={ -$1(a){a.ne()}, -$S:46} -A.a53.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=a.HZ(f.c) -if(e.a){B.c.sp(f.d,0) -f.e.aG(0) -if(!f.f.a)f.a.a=!0}for(s=e.gNR(),r=s.length,q=f.d,p=f.e,o=f.f,n=f.b,m=f.r,l=0;l"),n=0;n1){k=new A.ag7() -k.ZM(c,b,s)}else k=g -r=h.e -q=!r -if(q){if(k==null)p=g -else{p=A.a(k.d,"_rect") -p=p.gS(p)}p=p===!0}else p=!1 -if(p)return -p=B.c.gJ(s) -if(p.dx==null)p.dx=A.KN(g,B.c.gJ(s).goA()) -j=B.c.gJ(s).dx -j.sO2(r) -j.dx=h.c -j.z=a -if(a!==0){h.Hx() -r=h.f -r.sfc(0,r.x1+a)}if(k!=null){j.sb7(0,A.a(k.d,"_rect")) -j.sce(0,A.a(k.c,"_transform")) -j.x=k.b -j.y=k.a -if(q&&k.e){h.Hx() -h.f.b3(B.eJ,!0)}}i=A.b([],t.J) -for(r=h.w,q=r.length,n=0;n0;){r=c[s];--s -q=c[s] -a=r.BO(q) -if(a!=null){m.b=a -m.a=A.arV(m.a,r.jj(q))}else m.b=A.arV(m.b,r.jj(q)) -l=$.avh() -l.dC() -A.aEU(r,q,A.a(m.c,"_transform"),l) -m.b=A.arW(m.b,l) -m.a=A.arW(m.a,l)}p=B.c.gJ(c) -l=m.b -l=l==null?p.gl6():l.e2(p.gl6()) -m.d=l -o=m.a -if(o!=null){n=o.e2(A.a(l,"_rect")) -if(n.gS(n)){l=A.a(m.d,"_rect") -l=!l.gS(l)}else l=!1 -m.e=l -if(!l)m.d=n}}} -A.Ql.prototype={} -A.eu.prototype={ -i(a){var s=A.b(["offset="+this.a.i(0)],t.s),r=this.e -if(r!=null)s.push("scale="+A.e(r)) -s.push(this.t6(0)) -return B.c.bB(s,"; ")}} -A.lT.prototype={ -k(a,b){if(b==null)return!1 -return b instanceof A.lT&&b.b===this.b}, -gv(a){return A.a3(B.RA,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.zk.prototype={ -f3(a){if(!(a.e instanceof A.eu))a.e=new A.eu(null,null,B.j)}, -sc7(a,b){var s=this,r=s.C -switch(r.c.aW(0,b).a){case 0:case 1:return -case 2:r.sc7(0,b) -s.af=s.M=null -s.z_(b) -s.aF() -s.ai() -break -case 3:r.sc7(0,b) -s.af=s.M=s.au=null -s.z_(b) -s.a0() -break}}, -z_(a){this.a7=A.b([],t.TP) -a.bb(new A.a58(this))}, -smc(a,b){var s=this.C -if(s.d===b)return -s.smc(0,b) -this.aF()}, -sbx(a,b){var s=this.C -if(s.e===b)return -s.sbx(0,b) -this.a0()}, -sRo(a){if(this.q===a)return -this.q=a -this.a0()}, -sDu(a,b){var s,r=this -if(r.D===b)return -r.D=b -s=b===B.aL?"\u2026":null -r.C.sMP(0,s) -r.a0()}, -skV(a){var s=this.C -if(s.f===a)return -s.skV(a) -this.au=null -this.a0()}, -snP(a,b){var s=this.C -if(s.x==b)return -s.snP(0,b) -this.au=null -this.a0()}, -slY(a,b){var s=this.C -if(J.f(s.w,b))return -s.slY(0,b) -this.au=null -this.a0()}, -sj1(a,b){var s=this.C -if(J.f(s.y,b))return -s.sj1(0,b) -this.au=null -this.a0()}, -soh(a){var s=this.C -if(s.z===a)return -s.soh(a) -this.au=null -this.a0()}, -srp(a,b){return}, -b1(a){var s=this -if(!s.ye())return 0 -s.ZG(a) -s.Ja() -return Math.ceil(s.C.a.gDd())}, -aU(a){var s=this -if(!s.ye())return 0 -s.ZF(a) -s.Ja() -return Math.ceil(s.C.a.gw0())}, -GV(a){var s,r=this -if(!r.ye())return 0 -r.ZE(a) -r.u2(a,a) -s=r.C.a -return Math.ceil(s.gbk(s))}, -aX(a){return this.GV(a)}, -b0(a){return this.GV(a)}, -dW(a){this.zw(t.k.a(A.u.prototype.ga_.call(this))) -return this.C.dW(B.y)}, -ye(){var s,r,q -for(s=A.a(this.a7,"_placeholderSpans"),r=s.length,q=0;qh){d=c0[h].dx -d=d!=null&&d.A(0,new A.lT(i,b7))}else d=!1 -if(!d)break -b=c0[h] -d=s.e -d.toString -d=m.a(d).e -if(d!=null){c=b.w -a=c.a -a0=c.b -d=new A.w(a,a0,a+(c.c-a)*d,a0+(c.d-a0)*d) -if(!c.k(0,d)){b.w=d -b.h8()}b5.push(b)}++h}b7=s.e -b7.toString -s=n.a(b7).ae$;++i}else{a=o.a(A.u.prototype.ga_.call(b3)) -b6.j_(b3.bA) -a0=a.b -a0=b3.q||b3.D===B.aL?a0:1/0 -b6.vT(0,a0,a.a) -a1=b6.a.mi(c,d,B.cR,B.bL) -if(a1.length===0)continue -d=B.c.gJ(a1) -a2=new A.w(d.a,d.b,d.c,d.d) -a3=B.c.gJ(a1).e -for(d=A.af(a1),c=new A.fF(a1,1,b4,d.j("fF<1>")),c.tg(a1,1,b4,d.c),c=new A.cL(c,c.gp(c)),d=A.n(c).c;c.t();){a=c.d -if(a==null)a=d.a(a) -a2=a2.kw(new A.w(a.a,a.b,a.c,a.d)) -a3=a.e}d=a2.a -c=Math.max(0,d) -a=a2.b -a0=Math.max(0,a) -d=Math.min(a2.c-d,o.a(A.u.prototype.ga_.call(b3)).b) -a=Math.min(a2.d-a,o.a(A.u.prototype.ga_.call(b3)).d) -a4=Math.floor(c)-4 -a5=Math.floor(a0)-4 -d=Math.ceil(c+d)+4 -a=Math.ceil(a0+a)+4 -a6=new A.w(a4,a5,d,a) -a7=A.oA() -a8=k+1 -a7.id=new A.ob(k,b4) -a7.d=!0 -a7.xr=l -a0=f.b -b7=a0==null?b7:a0 -a7.p4=new A.bQ(b7,f.f) -b7=b8.y -if(b7!=null){a9=b7.e2(a6) -if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a) -else b7=!1 -a7.b3(B.eJ,b7)}b0=A.bx("newChild") -b7=b3.cK -d=b7==null?b4:b7.a!==0 -if(d===!0){b7.toString -d=new A.b3(b7,A.n(b7).j("b3<1>")) -b1=d.ga1(d) -if(!b1.t())A.K(A.bB()) -b7=b7.B(0,b1.gH(b1)) -b7.toString -if(b0.b!==b0)A.K(A.k5(b0.a)) -b0.b=b7}else{b2=new A.oZ() -b7=A.KN(b2,b3.a5q(b2)) -if(b0.b!==b0)A.K(A.k5(b0.a)) -b0.b=b7}if(b7===b0)A.K(A.e2(b0.a)) -J.aoe(b7,a7) -if(!b7.w.k(0,a6)){b7.w=a6 -b7.h8()}b7=b0.b -if(b7===b0)A.K(A.e2(b0.a)) -d=b7.d -d.toString -r.n(0,d,b7) -b7=b0.b -if(b7===b0)A.K(A.e2(b0.a)) -b5.push(b7) -k=a8 -l=a3}}b3.cK=r -b8.jO(0,b5,b9)}, -a5q(a){return new A.a57(this,a)}, -ne(){this.xI() -this.cK=null}} -A.a58.prototype={ -$1(a){if(a instanceof A.kh)J.fN(A.a(this.a.a7,"_placeholderSpans"),a) -return!0}, -$S:38} -A.a5a.prototype={ -$2(a,b){return this.a.a.bD(a,b)}, -$S:11} -A.a5b.prototype={ -$2(a,b){var s=this.a.a -s.toString -a.df(s,b)}, -$S:12} -A.a59.prototype={ -$1(a){return!1}, -$S:114} -A.a57.prototype={ -$0(){var s=this.a,r=s.cK.h(0,this.b) -r.toString -s.l9(s,r.w)}, -$S:0} -A.CR.prototype={ -aj(a){var s,r,q -this.dE(a) -s=this.U$ -for(r=t.l;s!=null;){s.aj(a) -q=s.e -q.toString -s=r.a(q).ae$}}, -aa(a){var s,r,q -this.d7(0) -s=this.U$ -for(r=t.l;s!=null;){s.aa(0) -q=s.e -q.toString -s=r.a(q).ae$}}} -A.Qm.prototype={} -A.Qn.prototype={ -aj(a){this.Up(a) -$.fa.eQ$.a.E(0,this.ghA())}, -aa(a){$.fa.eQ$.a.B(0,this.ghA()) -this.Uq(0)}} -A.zl.prototype={ -safd(a){if(a===this.C)return -this.C=a -this.aF()}, -safA(a){if(a===this.M)return -this.M=a -this.aF()}, -ghz(){return!0}, -gaE(){return!0}, -b1(a){return 0}, -aU(a){return 0}, -gzu(){var s=this.C,r=(s|1)>>>0>0||(s|2)>>>0>0?80:0 -return(s|4)>>>0>0||(s|8)>>>0>0?r+80:r}, -aX(a){return this.gzu()}, -b0(a){return this.gzu()}, -c4(a){return a.bo(new A.L(1/0,this.gzu()))}, -aH(a,b){var s,r,q,p=b.a,o=b.b,n=this.k1,m=n.a -n=n.b -s=this.C -r=this.M -q=A.aj() -a.oF() -a.B6(new A.Ji(new A.w(p,o,p+m,o+n),s,r,!1,!1,q))}} -A.Ki.prototype={} -A.dP.prototype={ -f3(a){if(!(a.e instanceof A.cw))a.e=new A.cw()}, -b1(a){var s=this.q$ -if(s!=null)return s.av(B.U,a,s.gb9()) -return 0}, -aU(a){var s=this.q$ -if(s!=null)return s.av(B.a8,a,s.gbf()) -return 0}, -aX(a){var s=this.q$ -if(s!=null)return s.av(B.ah,a,s.gbn()) -return 0}, -b0(a){var s=this.q$ -if(s!=null)return s.av(B.b_,a,s.gbM()) -return 0}, -c4(a){var s=this.q$ -if(s!=null)return s.hy(a) -return this.pV(a)}, -bK(){var s=this,r=s.q$,q=t.k -if(r!=null){r.cH(0,q.a(A.u.prototype.ga_.call(s)),!0) -r=s.q$.k1 -r.toString -s.k1=r}else s.k1=s.pV(q.a(A.u.prototype.ga_.call(s)))}, -pV(a){return new A.L(B.f.G(0,a.a,a.b),B.f.G(0,a.c,a.d))}, -cL(a,b){var s=this.q$ -s=s==null?null:s.bD(a,b) -return s===!0}, -dm(a,b){}, -aH(a,b){var s=this.q$ -if(s!=null)a.df(s,b)}} -A.qI.prototype={ -i(a){return"HitTestBehavior."+this.b}} -A.zm.prototype={ -bD(a,b){var s,r=this -if(r.k1.A(0,b)){s=r.cL(a,b)||r.u===B.ao -if(s||r.u===B.aQ)a.E(0,new A.pX(b,r))}else s=!1 -return s}, -hV(a){return this.u===B.ao}} -A.z8.prototype={ -sLA(a){if(this.u.k(0,a))return -this.u=a -this.a0()}, -b1(a){var s,r=this.u,q=r.b -if(q<1/0&&r.a>=q)return r.a -s=this.xO(a) -r=this.u -q=r.a -if(!(q>=1/0))return B.e.G(s,q,r.b) -return s}, -aU(a){var s,r=this.u,q=r.b -if(q<1/0&&r.a>=q)return r.a -s=this.xM(a) -r=this.u -q=r.a -if(!(q>=1/0))return B.e.G(s,q,r.b) -return s}, -aX(a){var s,r=this.u,q=r.d -if(q<1/0&&r.c>=q)return r.c -s=this.xN(a) -r=this.u -q=r.c -if(!(q>=1/0))return B.e.G(s,q,r.d) -return s}, -b0(a){var s,r=this.u,q=r.d -if(q<1/0&&r.c>=q)return r.c -s=this.xL(a) -r=this.u -q=r.c -if(!(q>=1/0))return B.e.G(s,q,r.d) -return s}, -bK(){var s=this,r=t.k.a(A.u.prototype.ga_.call(s)),q=s.q$,p=s.u -if(q!=null){q.cH(0,p.qh(r),!0) -q=s.q$.k1 -q.toString -s.k1=q}else s.k1=p.qh(r).bo(B.o)}, -c4(a){var s=this.q$,r=this.u -if(s!=null)return s.hy(r.qh(a)) -else return r.qh(a).bo(B.o)}} -A.Ka.prototype={ -saej(a,b){if(this.u===b)return -this.u=b -this.a0()}, -saeh(a,b){if(this.a8===b)return -this.a8=b -this.a0()}, -IJ(a){var s,r,q=a.a,p=a.b -p=p<1/0?p:B.f.G(this.u,q,p) -s=a.c -r=a.d -return new A.aF(q,p,s,r<1/0?r:B.f.G(this.a8,s,r))}, -p0(a,b){var s=this.q$ -if(s!=null)return a.bo(b.$2(s,this.IJ(a))) -return this.IJ(a).bo(B.o)}, -c4(a){return this.p0(a,A.EG())}, -bK(){this.k1=this.p0(t.k.a(A.u.prototype.ga_.call(this)),A.EH())}} -A.zh.prototype={ -sRz(a){return}, -sRy(a){return}, -b1(a){return this.aU(a)}, -aU(a){var s=this.q$ -if(s==null)return 0 -return A.a4Y(s.av(B.a8,a,s.gbf()),this.u)}, -aX(a){var s,r=this -if(r.q$==null)return 0 -if(!isFinite(a))a=r.aU(1/0) -s=r.q$ -return A.a4Y(s.av(B.ah,a,s.gbn()),r.a8)}, -b0(a){var s,r=this -if(r.q$==null)return 0 -if(!isFinite(a))a=r.aU(1/0) -s=r.q$ -return A.a4Y(s.av(B.b_,a,s.gbM()),r.a8)}, -p0(a,b){var s=this.q$ -if(s!=null){if(!(a.a>=a.b))a=a.wv(A.a4Y(s.av(B.a8,a.d,s.gbf()),this.u)) -s=this.q$ -s.toString -return b.$2(s,a)}else return new A.L(B.f.G(0,a.a,a.b),B.f.G(0,a.c,a.d))}, -c4(a){return this.p0(a,A.EG())}, -bK(){this.k1=this.p0(t.k.a(A.u.prototype.ga_.call(this)),A.EH())}} -A.Kd.prototype={ -gaE(){return this.q$!=null&&this.u>0}, -sdJ(a,b){var s,r,q,p=this -if(p.a8===b)return -s=p.q$!=null&&p.u>0 -r=p.u -p.a8=b -q=B.e.aI(B.e.G(b,0,1)*255) -p.u=q -if(s!==(p.q$!=null&&q>0))p.nN() -p.aF() -if(r!==0!==(p.u!==0)&&!p.aD)p.ai()}, -suD(a){if(a===this.aD)return -this.aD=a -this.ai()}, -aH(a,b){var s,r,q=this -if(q.q$!=null){s=q.u -if(s===0){q.ay.saL(0,null) -return}r=q.ay -r.saL(0,a.OX(b,s,A.dP.prototype.gfl.call(q),t.Jq.a(r.a)))}}, -fq(a){var s,r=this.q$ -if(r!=null)s=this.u!==0||this.aD -else s=!1 -if(s){r.toString -a.$1(r)}}} -A.z6.prototype={ -gaE(){if(this.q$!=null){var s=this.vl$ -s.toString}else s=!1 -return s}, -sdJ(a,b){var s=this,r=s.nv$ -if(r===b)return -if(s.b!=null&&r!=null)r.K(0,s.gun()) -s.nv$=b -if(s.b!=null)b.a2(0,s.gun()) -s.AF()}, -suD(a){if(a===this.vm$)return -this.vm$=a -this.ai()}, -AF(){var s,r=this,q=r.hS$,p=r.nv$ -p=r.hS$=B.e.aI(B.e.G(p.gl(p),0,1)*255) -if(q!==p){s=r.vl$ -p=p>0 -r.vl$=p -if(r.q$!=null&&s!==p)r.nN() -r.aF() -if(q===0||r.hS$===0)r.ai()}}, -fq(a){var s,r=this.q$ -if(r!=null)if(this.hS$===0){s=this.vm$ -s.toString}else s=!0 -else s=!1 -if(s){r.toString -a.$1(r)}}} -A.K_.prototype={} -A.w7.prototype={ -a2(a,b){var s=this.a -return s==null?null:s.a.a2(0,b)}, -K(a,b){var s=this.a -return s==null?null:s.a.K(0,b)}, -Q_(a){return new A.w(0,0,0+a.a,0+a.b)}, -i(a){return"CustomClipper"}} -A.oE.prototype={ -Q2(a){return this.b.f1(new A.w(0,0,0+a.a,0+a.b),this.c)}, -Rd(a){if(A.C(a)!==B.RT)return!0 -t.jH.a(a) -return!a.b.k(0,this.b)||a.c!=this.c}} -A.uC.prototype={ -sng(a){var s,r=this,q=r.u -if(q==a)return -r.u=a -s=a==null -if(s||q==null||A.C(a)!==A.C(q)||a.Rd(q))r.pi() -if(r.b!=null){if(q!=null)q.K(0,r.gtT()) -if(!s)a.a2(0,r.gtT())}}, -aj(a){var s -this.te(a) -s=this.u -if(s!=null)s.a2(0,this.gtT())}, -aa(a){var s=this.u -if(s!=null)s.K(0,this.gtT()) -this.mG(0)}, -pi(){this.a8=null -this.aF() -this.ai()}, -sim(a){if(a!==this.aD){this.aD=a -this.aF()}}, -bK(){var s,r=this,q=r.k1 -q=q!=null?q:null -r.tb() -s=r.k1 -s.toString -if(!J.f(q,s))r.a8=null}, -ia(){var s,r,q=this -if(q.a8==null){s=q.u -if(s==null)s=null -else{r=q.k1 -r.toString -r=s.Q2(r) -s=r}q.a8=s==null?q.gp6():s}}, -jj(a){var s,r=this.u -if(r==null)r=null -else{s=this.k1 -s.toString -s=r.Q_(s) -r=s}if(r==null){r=this.k1 -r=new A.w(0,0,0+r.a,0+r.b)}return r}} -A.K3.prototype={ -gp6(){var s=this.k1 -return new A.w(0,0,0+s.a,0+s.b)}, -bD(a,b){var s=this -if(s.u!=null){s.ia() -if(!s.a8.A(0,b))return!1}return s.i5(a,b)}, -aH(a,b){var s,r,q=this,p=q.q$ -if(p!=null){s=q.ay -if(q.aD!==B.u){q.ia() -p=A.a(q.CW,"_needsCompositing") -r=q.a8 -r.toString -s.saL(0,a.m6(p,b,r,A.dP.prototype.gfl.call(q),q.aD,t.EM.a(s.a)))}else{a.df(p,b) -s.saL(0,null)}}else q.ay.saL(0,null)}} -A.K2.prototype={ -sBi(a,b){if(this.cn.k(0,b))return -this.cn=b -this.pi()}, -gp6(){var s=this.cn,r=this.k1 -return s.dM(new A.w(0,0,0+r.a,0+r.b))}, -bD(a,b){var s=this -if(s.u!=null){s.ia() -if(!s.a8.A(0,b))return!1}return s.i5(a,b)}, -aH(a,b){var s,r,q=this,p=q.q$ -if(p!=null){s=q.ay -if(q.aD!==B.u){q.ia() -p=A.a(q.CW,"_needsCompositing") -r=q.a8 -s.saL(0,a.afw(p,b,new A.w(r.a,r.b,r.c,r.d),r,A.dP.prototype.gfl.call(q),q.aD,t.xs.a(s.a)))}else{a.df(p,b) -s.saL(0,null)}}else q.ay.saL(0,null)}} -A.K1.prototype={ -gp6(){var s=A.d4(),r=this.k1 -s.kl(0,new A.w(0,0,0+r.a,0+r.b)) -return s}, -bD(a,b){var s=this -if(s.u!=null){s.ia() -if(!s.a8.A(0,b))return!1}return s.i5(a,b)}, -aH(a,b){var s,r,q,p,o=this,n=o.q$ -if(n!=null){s=o.ay -if(o.aD!==B.u){o.ia() -n=A.a(o.CW,"_needsCompositing") -r=o.k1 -q=r.a -r=r.b -p=o.a8 -p.toString -s.saL(0,a.afv(n,b,new A.w(0,0,0+q,0+r),p,A.dP.prototype.gfl.call(o),o.aD,t.ts.a(s.a)))}else{a.df(n,b) -s.saL(0,null)}}else o.ay.saL(0,null)}} -A.CS.prototype={ -sfc(a,b){if(this.cn===b)return -this.cn=b -this.aF()}, -sev(a,b){if(this.e_.k(0,b))return -this.e_=b -this.aF()}, -sad(a,b){if(this.hR.k(0,b))return -this.hR=b -this.aF()}, -gaE(){return!0}, -eO(a){this.fY(a) -a.sfc(0,this.cn)}} -A.Ke.prototype={ -sdQ(a,b){if(this.Ce===b)return -this.Ce=b -this.pi()}, -sBi(a,b){if(J.f(this.Cf,b))return -this.Cf=b -this.pi()}, -gp6(){var s,r,q,p,o=this -switch(o.Ce.a){case 0:s=o.Cf -if(s==null)s=B.b0 -r=o.k1 -return s.dM(new A.w(0,0,0+r.a,0+r.b)) -case 1:s=o.k1 -r=0+s.a -s=0+s.b -q=(r-0)/2 -p=(s-0)/2 -return new A.i2(0,0,r,s,q,p,q,p,q,p,q,p,q===p)}}, -bD(a,b){var s=this -if(s.u!=null){s.ia() -if(!s.a8.A(0,b))return!1}return s.i5(a,b)}, -aH(a,b){var s,r,q,p,o,n=this -if(n.q$!=null){n.ia() -s=n.a8.c8(b) -r=A.d4() -r.fB(0,s) -q=t.EA -if(q.a(A.u.prototype.gaL.call(n,n))==null)n.ay.saL(0,A.aqb()) -p=q.a(A.u.prototype.gaL.call(n,n)) -p.sLT(0,r) -p.sim(n.aD) -o=n.cn -p.sfc(0,o) -p.sad(0,n.hR) -p.sev(0,n.e_) -q=q.a(A.u.prototype.gaL.call(n,n)) -q.toString -a.kQ(q,A.dP.prototype.gfl.call(n),b,new A.w(s.a,s.b,s.c,s.d))}else n.ay.saL(0,null)}} -A.Kf.prototype={ -gp6(){var s=A.d4(),r=this.k1 -s.kl(0,new A.w(0,0,0+r.a,0+r.b)) -return s}, -bD(a,b){var s=this -if(s.u!=null){s.ia() -if(!s.a8.A(0,b))return!1}return s.i5(a,b)}, -aH(a,b){var s,r,q,p,o,n,m,l,k=this -if(k.q$!=null){k.ia() -s=k.k1 -r=b.a -q=b.b -p=s.a -s=s.b -o=k.a8.c8(b) -n=t.EA -if(n.a(A.u.prototype.gaL.call(k,k))==null)k.ay.saL(0,A.aqb()) -m=n.a(A.u.prototype.gaL.call(k,k)) -m.sLT(0,o) -m.sim(k.aD) -l=k.cn -m.sfc(0,l) -m.sad(0,k.hR) -m.sev(0,k.e_) -n=n.a(A.u.prototype.gaL.call(k,k)) -n.toString -a.kQ(n,A.dP.prototype.gfl.call(k),b,new A.w(r,q,r+p,q+s))}else k.ay.saL(0,null)}} -A.wb.prototype={ -i(a){return"DecorationPosition."+this.b}} -A.K4.prototype={ -sah(a,b){var s,r=this -if(b.k(0,r.a8))return -s=r.u -if(s!=null)s.m(0) -r.u=null -r.a8=b -r.aF()}, -sbS(a,b){if(b===this.aD)return -this.aD=b -this.aF()}, -spW(a){if(a.k(0,this.aK))return -this.aK=a -this.aF()}, -aa(a){var s=this,r=s.u -if(r!=null)r.m(0) -s.u=null -s.mG(0) -s.aF()}, -hV(a){var s=this.a8,r=this.k1 -r.toString -return s.NF(r,a,this.aK.d)}, -aH(a,b){var s,r,q,p=this -if(p.u==null)p.u=p.a8.Mj(p.gd5()) -s=p.aK -r=p.k1 -r.toString -q=s.Mc(r) -if(p.aD===B.fx){s=p.u -s.toString -s.jE(a.gc2(a),b,q) -if(p.a8.gCU())a.F5()}p.mF(a,b) -if(p.aD===B.AE){s=p.u -s.toString -s.jE(a.gc2(a),b,q) -if(p.a8.gCU())a.F5()}}} -A.Ko.prototype={ -sr3(a,b){return}, -sj9(a){var s=this -if(J.f(s.a8,a))return -s.a8=a -s.aF() -s.ai()}, -sbx(a,b){var s=this -if(s.aD==b)return -s.aD=b -s.aF() -s.ai()}, -gaE(){return!1}, -sce(a,b){var s,r=this -if(J.f(r.c6,b))return -s=new A.bb(new Float64Array(16)) -s.by(b) -r.c6=s -r.aF() -r.ai()}, -skz(a){return}, -gyU(){var s,r,q=this,p=q.a8,o=p==null?null:p.O(q.aD) -if(o==null)return q.c6 -s=new A.bb(new Float64Array(16)) -s.dC() -p=q.k1 -p.toString -r=o.B4(p) -s.aC(0,r.a,r.b) -p=q.c6 -p.toString -s.cg(0,p) -s.aC(0,-r.a,-r.b) -return s}, -bD(a,b){return this.cL(a,b)}, -cL(a,b){var s=this.aK?this.gyU():null -return a.uA(new A.a5p(this),b,s)}, -aH(a,b){var s,r,q,p,o,n,m=this -if(m.q$!=null){s=m.gyU() -s.toString -r=A.akH(s) -if(r==null){q=A.a(m.CW,"_needsCompositing") -p=A.dP.prototype.gfl.call(m) -o=m.ay -n=o.a -o.saL(0,a.DE(q,b,s,p,n instanceof A.tF?n:null))}else{m.mF(a,b.Z(0,r)) -m.ay.saL(0,null)}}}, -dm(a,b){var s=this.gyU() -s.toString -b.cg(0,s)}} -A.a5p.prototype={ -$2(a,b){return this.a.ta(a,b)}, -$S:11} -A.K7.prototype={ -sagN(a){var s=this -if(s.u.k(0,a))return -s.u=a -s.aF() -s.ai()}, -bD(a,b){return this.cL(a,b)}, -cL(a,b){var s,r,q=this -if(q.a8){s=q.u -r=q.k1 -r=new A.m(s.a*r.a,s.b*r.b) -s=r}else s=null -return a.lt(new A.a4W(q),s,b)}, -aH(a,b){var s,r,q=this -if(q.q$!=null){s=q.u -r=q.k1 -q.mF(a,new A.m(b.a+s.a*r.a,b.b+s.b*r.b))}}, -dm(a,b){var s=this.u,r=this.k1 -b.aC(0,s.a*r.a,s.b*r.b)}} -A.a4W.prototype={ -$2(a,b){return this.a.ta(a,b)}, -$S:11} -A.Kg.prototype={ -pV(a){return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d))}, -hU(a,b){var s,r=this,q=null -if(t.c.b(a)){s=r.cU -return s==null?q:s.$1(a)}if(t.n2.b(a))return q -if(t.oN.b(a)){s=r.cq -return s==null?q:s.$1(a)}if(t.XA.b(a))return q -if(t.Ko.b(a)){s=r.cn -return s==null?q:s.$1(a)}if(t.ks.b(a)){s=r.e_ -return s==null?q:s.$1(a)}}} -A.Kc.prototype={ -bD(a,b){return this.Tl(a,b)&&!0}, -hU(a,b){var s=this.cq -if(s!=null&&t.XA.b(a))return s.$1(a)}, -gMo(a){return this.cn}, -gEe(){return this.e_}, -aj(a){this.te(a) -this.e_=!0}, -aa(a){this.e_=!1 -this.mG(0)}, -pV(a){return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d))}, -$ikb:1, -gDm(a){return this.ds}, -gDn(a){return this.d1}} -A.Kj.prototype={ -gar(){return!0}} -A.ze.prototype={ -sNK(a){var s,r=this -if(a===r.u)return -r.u=a -s=r.a8 -if(s==null||!s)r.ai()}, -sCJ(a){var s=this,r=s.a8 -if(a==r)return -if(r==null)r=s.u -s.a8=a -if(r!==(a==null?s.u:a))s.ai()}, -bD(a,b){return!this.u&&this.i5(a,b)}, -fq(a){var s,r=this.q$ -if(r!=null){s=this.a8 -s=!(s==null?this.u:s)}else s=!1 -if(s){r.toString -a.$1(r)}}} -A.zi.prototype={ -sw7(a){var s=this -if(a===s.u)return -s.u=a -s.a0() -s.w_()}, -b1(a){if(this.u)return 0 -return this.xO(a)}, -aU(a){if(this.u)return 0 -return this.xM(a)}, -aX(a){if(this.u)return 0 -return this.xN(a)}, -b0(a){if(this.u)return 0 -return this.xL(a)}, -dW(a){if(this.u)return null -return this.FW(a)}, -ghz(){return this.u}, -c4(a){if(this.u)return new A.L(B.f.G(0,a.a,a.b),B.f.G(0,a.c,a.d)) -return this.Tk(a)}, -r7(){this.Tc()}, -bK(){var s,r=this -if(r.u){s=r.q$ -if(s!=null)s.fg(0,t.k.a(A.u.prototype.ga_.call(r)))}else r.tb()}, -bD(a,b){return!this.u&&this.i5(a,b)}, -aH(a,b){if(this.u)return -this.mF(a,b)}, -fq(a){if(this.u)return -this.xJ(a)}} -A.z5.prototype={ -sLo(a){if(this.u===a)return -this.u=a -this.ai()}, -sCJ(a){return}, -bD(a,b){return this.u?this.k1.A(0,b):this.i5(a,b)}, -fq(a){var s,r=this.q$ -if(r!=null){s=this.u -s=!s}else s=!1 -if(s){r.toString -a.$1(r)}}} -A.ko.prototype={ -sah1(a){if(A.amu(a,this.cU))return -this.cU=a -this.ai()}, -siL(a){var s,r=this -if(J.f(r.ds,a))return -s=r.ds -r.ds=a -if(a!=null!==(s!=null))r.ai()}, -sjD(a){var s,r=this -if(J.f(r.cq,a))return -s=r.cq -r.cq=a -if(a!=null!==(s!=null))r.ai()}, -saeL(a){var s,r=this -if(J.f(r.d1,a))return -s=r.d1 -r.d1=a -if(a!=null!==(s!=null))r.ai()}, -saf9(a){var s,r=this -if(J.f(r.cn,a))return -s=r.cn -r.cn=a -if(a!=null!==(s!=null))r.ai()}, -eO(a){var s,r=this -r.fY(a) -if(r.ds!=null){s=r.cU -s=s==null||s.A(0,B.dt)}else s=!1 -if(s)a.siL(r.ds) -if(r.cq!=null){s=r.cU -s=s==null||s.A(0,B.v3)}else s=!1 -if(s)a.sjD(r.cq) -if(r.d1!=null){s=r.cU -if(s==null||s.A(0,B.dx))a.so2(r.ga5K()) -s=r.cU -if(s==null||s.A(0,B.dw))a.so1(r.ga5I())}if(r.cn!=null){s=r.cU -if(s==null||s.A(0,B.du))a.so3(r.ga5M()) -s=r.cU -if(s==null||s.A(0,B.dv))a.so0(r.ga5G())}}, -a5J(){var s,r,q=this.d1 -if(q!=null){s=this.k1 -r=s.a*-0.8 -s=s.il(B.j) -s=A.ha(this.dj(0,null),s) -q.$1(new A.f1(null,new A.m(r,0),r,s))}}, -a5L(){var s,r,q=this.d1 -if(q!=null){s=this.k1 -r=s.a*0.8 -s=s.il(B.j) -s=A.ha(this.dj(0,null),s) -q.$1(new A.f1(null,new A.m(r,0),r,s))}}, -a5N(){var s,r,q=this.cn -if(q!=null){s=this.k1 -r=s.b*-0.8 -s=s.il(B.j) -s=A.ha(this.dj(0,null),s) -q.$1(new A.f1(null,new A.m(0,r),r,s))}}, -a5H(){var s,r,q=this.cn -if(q!=null){s=this.k1 -r=s.b*0.8 -s=s.il(B.j) -s=A.ha(this.dj(0,null),s) -q.$1(new A.f1(null,new A.m(0,r),r,s))}}} -A.zn.prototype={ -saav(a){if(this.u===a)return -this.u=a -this.ai()}, -sac2(a){if(this.a8===a)return -this.a8=a -this.ai()}, -sabZ(a){return}, -sBp(a,b){return}, -sku(a,b){if(this.c6==b)return -this.c6=b -this.ai()}, -sx0(a,b){if(this.el==b)return -this.el=b -this.ai()}, -sBk(a,b){if(this.nA==b)return -this.nA=b -this.ai()}, -sxi(a){if(this.ff==a)return -this.ff=a -this.ai()}, -sD1(a){return}, -sjz(a){return}, -sCE(a){if(this.jt==a)return -this.jt=a -this.ai()}, -sDR(a){return}, -srg(a,b){return}, -sCp(a){if(this.fO==a)return -this.fO=a -this.ai()}, -sCq(a,b){if(this.fP==b)return -this.fP=b -this.ai()}, -sCK(a){return}, -sm0(a){return}, -sDg(a,b){return}, -swY(a){if(this.hQ==a)return -this.hQ=a -this.ai()}, -sDi(a){if(this.d0==a)return -this.d0=a -this.ai()}, -sCG(a,b){return}, -seT(a,b){if(this.bO==b)return -this.bO=b}, -sD4(a){if(this.ae==a)return -this.ae=a -this.ai()}, -sqR(a){return}, -snm(a){if(this.bz==a)return -this.bz=a -this.ai()}, -sE_(a){if(this.U==a)return -this.U=a -this.ai()}, -sa9B(a){if(J.f(this.bV,a))return -this.bV=a -this.ai()}, -sa9C(a){if(J.f(this.bP,a))return -this.bP=a -this.ai()}, -sa9A(a){if(J.f(this.aw,a))return -this.aw=a -this.ai()}, -sa9y(a){if(J.f(this.eh,a))return -this.eh=a -this.ai()}, -sa9z(a){if(J.f(this.cU,a))return -this.cU=a -this.ai()}, -sadh(a){if(J.f(this.ds,a))return -this.ds=a -this.ai()}, -sbx(a,b){if(this.cq==b)return -this.cq=b -this.ai()}, -sxj(a){if(this.d1==a)return -this.d1=a -this.ai()}, -sagr(a){if(J.f(this.cn,a))return -this.ai() -this.cn=a}, -siL(a){var s,r=this -if(J.f(r.e_,a))return -s=r.e_ -r.e_=a -if(a!=null!==(s!=null))r.ai()}, -snU(a){var s,r=this -if(J.f(r.hR,a))return -s=r.hR -r.hR=a -if(a!=null!==(s!=null))r.ai()}, -sjD(a){var s,r=this -if(J.f(r.qn,a))return -s=r.qn -r.qn=a -if(a!=null!==(s!=null))r.ai()}, -so1(a){return}, -so2(a){return}, -so3(a){return}, -so0(a){return}, -snV(a){return}, -snS(a){return}, -snQ(a,b){var s,r=this -if(J.f(r.bj,b))return -s=r.bj -r.bj=b -if(b!=null!==(s!=null))r.ai()}, -snR(a,b){var s,r=this -if(J.f(r.d2,b))return -s=r.d2 -r.d2=b -if(b!=null!==(s!=null))r.ai()}, -so_(a,b){var s,r=this -if(J.f(r.hS,b))return -s=r.hS -r.hS=b -if(b!=null!==(s!=null))r.ai()}, -snY(a){return}, -snW(a){return}, -snZ(a){return}, -snX(a){return}, -so4(a){return}, -so5(a){return}, -snT(a){var s,r=this -if(J.f(r.eQ,a))return -s=r.eQ -r.eQ=a -if(a!=null!==(s!=null))r.ai()}, -sr0(a){return}, -sab7(a){return}, -fq(a){this.xJ(a)}, -eO(a){var s,r=this -r.fY(a) -a.a=r.u -a.b=r.a8 -s=r.c6 -if(s!=null){a.b3(B.lf,!0) -a.b3(B.ld,s)}s=r.U -if(s!=null){a.b3(B.vh,!0) -a.b3(B.v7,s)}s=r.el -if(s!=null)a.b3(B.vd,s) -s=r.nA -if(s!=null)a.b3(B.vi,s) -s=r.ff -if(s!=null)a.b3(B.vj,s) -s=r.jt -if(s!=null)a.b3(B.vf,s) -s=r.fO -if(s!=null)a.b3(B.vb,s) -s=r.fP -if(s!=null)a.b3(B.le,s) -s=r.bO -if(s!=null)a.b3(B.v9,s) -s=r.bV -if(s!=null){a.p4=s -a.d=!0}s=r.bP -if(s!=null){a.R8=s -a.d=!0}s=r.aw -if(s!=null){a.RG=s -a.d=!0}s=r.eh -if(s!=null){a.rx=s -a.d=!0}s=r.cU -if(s!=null){a.ry=s -a.d=!0}r.ds!=null -s=r.hQ -if(s!=null)a.b3(B.va,s) -s=r.d0 -if(s!=null)a.b3(B.ve,s) -s=r.ae -if(s!=null)a.b3(B.vc,s) -s=r.bz -if(s!=null)a.snm(s) -s=r.cq -if(s!=null){a.xr=s -a.d=!0}s=r.d1 -if(s!=null){a.id=s -a.d=!0}s=r.cn -if(s!=null)a.Ly(s) -if(r.e_!=null)a.siL(r.ga5O()) -if(r.qn!=null)a.sjD(r.ga5C()) -if(r.hR!=null)a.snU(r.ga5A()) -if(r.bj!=null)a.snQ(0,r.ga5u()) -if(r.d2!=null)a.snR(0,r.ga5w()) -if(r.hS!=null)a.so_(0,r.ga5E()) -if(r.eQ!=null)a.snT(r.ga5y())}, -a5P(){var s=this.e_ -if(s!=null)s.$0()}, -a5D(){var s=this.qn -if(s!=null)s.$0()}, -a5B(){var s=this.hR -if(s!=null)s.$0()}, -a5v(){var s=this.bj -if(s!=null)s.$0()}, -a5x(){var s=this.d2 -if(s!=null)s.$0()}, -a5F(){var s=this.hS -if(s!=null)s.$0()}, -a5z(){var s=this.eQ -if(s!=null)s.$0()}} -A.K0.prototype={ -sa9J(a){return}, -eO(a){this.fY(a) -a.c=!0}} -A.Kb.prototype={ -eO(a){this.fY(a) -a.d=a.p2=a.a=!0}} -A.K5.prototype={ -sac_(a){if(a===this.u)return -this.u=a -this.ai()}, -fq(a){if(this.u)return -this.xJ(a)}} -A.K8.prototype={ -sady(a,b){if(b===this.u)return -this.u=b -this.ai()}, -eO(a){this.fY(a) -a.k1=this.u -a.d=!0}} -A.K9.prototype={ -sjz(a){var s=this,r=s.u -if(r===a)return -r.d=null -s.u=a -r=s.a8 -if(r!=null)a.d=r -s.aF()}, -gaE(){return!0}, -bK(){var s,r=this -r.tb() -s=r.k1 -s.toString -r.a8=s -r.u.d=s}, -aH(a,b){var s=this.ay,r=s.a,q=this.u -if(r==null)s.saL(0,new A.nX(q,b,A.aj())) -else{t.rf.a(r) -r.sjz(q) -r.sbJ(0,b)}s=s.a -s.toString -a.rb(s,A.dP.prototype.gfl.call(this),B.j)}} -A.K6.prototype={ -sjz(a){if(this.u===a)return -this.u=a -this.aF()}, -sRk(a){if(this.a8===a)return -this.a8=a -this.aF()}, -sbJ(a,b){if(this.aD.k(0,b))return -this.aD=b -this.aF()}, -sae1(a){if(this.aK.k(0,a))return -this.aK=a -this.aF()}, -sacv(a){if(this.c6.k(0,a))return -this.c6=a -this.aF()}, -aa(a){this.ay.saL(0,null) -this.mG(0)}, -gaE(){return!0}, -Eo(){var s=t.RC.a(A.u.prototype.gaL.call(this,this)) -s=s==null?null:s.Et() -if(s==null){s=new A.bb(new Float64Array(16)) -s.dC()}return s}, -bD(a,b){if(this.u.a==null&&!this.a8)return!1 -return this.cL(a,b)}, -cL(a,b){return a.uA(new A.a4V(this),b,this.Eo())}, -aH(a,b){var s,r,q,p,o=this,n=o.u.d -if(n==null)s=o.aD -else{r=o.aK.B4(n) -q=o.c6 -p=o.k1 -p.toString -s=r.a9(0,q.B4(p)).Z(0,o.aD)}r=t.RC -if(r.a(A.u.prototype.gaL.call(o,o))==null)o.ay.saL(0,new A.wS(o.u,o.a8,b,s,A.aj())) -else{q=r.a(A.u.prototype.gaL.call(o,o)) -if(q!=null){q.id=o.u -q.k1=o.a8 -q.k3=s -q.k2=b}}r=r.a(A.u.prototype.gaL.call(o,o)) -r.toString -a.kQ(r,A.dP.prototype.gfl.call(o),B.j,B.KF)}, -dm(a,b){b.cg(0,this.Eo())}} -A.a4V.prototype={ -$2(a,b){return this.a.ta(a,b)}, -$S:11} -A.z7.prototype={ -sl(a,b){if(this.u.k(0,b))return -this.u=b -this.aF()}, -sRm(a){return}, -aH(a,b){var s=this,r=s.u,q=s.k1 -q.toString -a.rb(new A.vr(r,q,b,A.aj(),s.$ti.j("vr<1>")),A.dP.prototype.gfl.call(s),b)}, -gaE(){return!0}} -A.Qc.prototype={ -dW(a){var s=this.q$ -if(s!=null)return s.jR(a) -return this.FW(a)}} -A.Qd.prototype={ -aj(a){var s=this -s.te(a) -s.nv$.a2(0,s.gun()) -s.AF()}, -aa(a){this.nv$.K(0,this.gun()) -this.mG(0)}, -aH(a,b){var s,r,q=this -if(q.q$!=null){s=q.hS$ -if(s===0){q.ay.saL(0,null) -return}s.toString -r=q.ay -r.saL(0,a.OX(b,s,A.dP.prototype.gfl.call(q),t.Jq.a(r.a)))}}} -A.CT.prototype={ -aj(a){var s -this.dE(a) -s=this.q$ -if(s!=null)s.aj(a)}, -aa(a){var s -this.d7(0) -s=this.q$ -if(s!=null)s.aa(0)}} -A.CU.prototype={ -dW(a){var s=this.q$ -if(s!=null)return s.jR(a) -return this.xH(a)}} -A.zo.prototype={ -b1(a){var s=this.q$ -if(s!=null)return s.av(B.U,a,s.gb9()) -return 0}, -aU(a){var s=this.q$ -if(s!=null)return s.av(B.a8,a,s.gbf()) -return 0}, -aX(a){var s=this.q$ -if(s!=null)return s.av(B.ah,a,s.gbn()) -return 0}, -b0(a){var s=this.q$ -if(s!=null)return s.av(B.b_,a,s.gbM()) -return 0}, -dW(a){var s,r=this.q$ -if(r!=null){s=r.jR(a) -r=this.q$.e -r.toString -t.x.a(r) -if(s!=null)s+=r.a.b}else s=this.xH(a) -return s}, -aH(a,b){var s,r=this.q$ -if(r!=null){s=r.e -s.toString -a.df(r,t.x.a(s).a.Z(0,b))}}, -cL(a,b){var s=this.q$ -if(s!=null){s=s.e -s.toString -t.x.a(s) -return a.lt(new A.a5c(this,b,s),s.a,b)}return!1}} -A.a5c.prototype={ -$2(a,b){return this.a.q$.bD(a,b)}, -$S:11} -A.zj.prototype={ -kd(){var s=this -if(s.u!=null)return -s.u=s.a8.O(s.aD)}, -sdw(a,b){var s=this -if(s.a8.k(0,b))return -s.a8=b -s.u=null -s.a0()}, -sbx(a,b){var s=this -if(s.aD==b)return -s.aD=b -s.u=null -s.a0()}, -b1(a){var s,r,q,p -this.kd() -s=this.u -r=s.a+s.c -q=s.b -s=s.d -p=this.q$ -if(p!=null)return p.av(B.U,Math.max(0,a-(q+s)),p.gb9())+r -return r}, -aU(a){var s,r,q,p -this.kd() -s=this.u -r=s.a+s.c -q=s.b -s=s.d -p=this.q$ -if(p!=null)return p.av(B.a8,Math.max(0,a-(q+s)),p.gbf())+r -return r}, -aX(a){var s,r,q,p -this.kd() -s=this.u -r=s.a -q=s.c -p=s.b+s.d -s=this.q$ -if(s!=null)return s.av(B.ah,Math.max(0,a-(r+q)),s.gbn())+p -return p}, -b0(a){var s,r,q,p -this.kd() -s=this.u -r=s.a -q=s.c -p=s.b+s.d -s=this.q$ -if(s!=null)return s.av(B.b_,Math.max(0,a-(r+q)),s.gbM())+p -return p}, -c4(a){var s,r,q,p=this -p.kd() -if(p.q$==null){s=p.u -return a.bo(new A.L(s.a+s.c,s.b+s.d))}s=p.u -s.toString -r=a.BL(s) -q=p.q$.hy(r) -s=p.u -return a.bo(new A.L(s.a+q.a+s.c,s.b+q.b+s.d))}, -bK(){var s,r,q,p,o,n,m=this,l=t.k.a(A.u.prototype.ga_.call(m)) -m.kd() -if(m.q$==null){s=m.u -m.k1=l.bo(new A.L(s.a+s.c,s.b+s.d)) -return}s=m.u -s.toString -r=l.BL(s) -m.q$.cH(0,r,!0) -s=m.q$ -q=s.e -q.toString -t.x.a(q) -p=m.u -o=p.a -n=p.b -q.a=new A.m(o,n) -s=s.k1 -m.k1=l.bo(new A.L(o+s.a+p.c,n+s.b+p.d))}} -A.JZ.prototype={ -kd(){var s=this -if(s.u!=null)return -s.u=s.a8.O(s.aD)}, -sj9(a){var s=this -if(s.a8.k(0,a))return -s.a8=a -s.u=null -s.a0()}, -sbx(a,b){var s=this -if(s.aD==b)return -s.aD=b -s.u=null -s.a0()}, -B3(){var s,r,q,p,o=this -o.kd() -s=o.q$ -r=s.e -r.toString -t.x.a(r) -q=o.u -q.toString -p=o.k1 -p.toString -s=s.k1 -s.toString -r.a=q.lv(t.EP.a(p.a9(0,s)))}} -A.Kh.prototype={ -sah9(a){if(this.cq==a)return -this.cq=a -this.a0()}, -sada(a){if(this.d1==a)return -this.d1=a -this.a0()}, -c4(a){var s,r,q=this,p=q.cq!=null||a.b===1/0,o=q.d1!=null||a.d===1/0,n=q.q$ -if(n!=null){s=n.hy(new A.aF(0,a.b,0,a.d)) -if(p){n=q.cq -if(n==null)n=1 -n=s.a*n}else n=1/0 -if(o){r=q.d1 -if(r==null)r=1 -r=s.b*r}else r=1/0 -return a.bo(new A.L(n,r))}n=p?0:1/0 -return a.bo(new A.L(n,o?0:1/0))}, -bK(){var s,r,q=this,p=t.k.a(A.u.prototype.ga_.call(q)),o=q.cq!=null||p.b===1/0,n=q.d1!=null||p.d===1/0,m=q.q$ -if(m!=null){m.cH(0,new A.aF(0,p.b,0,p.d),!0) -if(o){m=q.q$.k1.a -s=q.cq -m*=s==null?1:s}else m=1/0 -if(n){s=q.q$.k1.b -r=q.d1 -s*=r==null?1:r}else s=1/0 -q.k1=p.bo(new A.L(m,s)) -q.B3()}else{m=o?0:1/0 -q.k1=p.bo(new A.L(m,n?0:1/0))}}} -A.a7c.prototype={ -l3(a){return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d))}} -A.zb.prototype={ -sBM(a){var s=this,r=s.u -if(r===a)return -if(A.C(a)!==A.C(r)||a.oz(r))s.a0() -s.u=a -s.b!=null}, -aj(a){this.Ur(a)}, -aa(a){this.Us(0)}, -b1(a){var s=A.hA(a,1/0),r=s.bo(this.u.l3(s)).a -if(isFinite(r))return r -return 0}, -aU(a){var s=A.hA(a,1/0),r=s.bo(this.u.l3(s)).a -if(isFinite(r))return r -return 0}, -aX(a){var s=A.hA(1/0,a),r=s.bo(this.u.l3(s)).b -if(isFinite(r))return r -return 0}, -b0(a){var s=A.hA(1/0,a),r=s.bo(this.u.l3(s)).b -if(isFinite(r))return r -return 0}, -c4(a){return a.bo(this.u.l3(a))}, -bK(){var s,r,q,p,o,n,m=this,l=t.k,k=l.a(A.u.prototype.ga_.call(m)) -m.k1=k.bo(m.u.l3(k)) -if(m.q$!=null){s=m.u.Em(l.a(A.u.prototype.ga_.call(m))) -l=m.q$ -l.toString -k=s.a -r=s.b -q=k>=r -l.cH(0,s,!(q&&s.c>=s.d)) -l=m.q$ -p=l.e -p.toString -t.x.a(p) -o=m.u -n=m.k1 -n.toString -if(q&&s.c>=s.d)l=new A.L(B.f.G(0,k,r),B.f.G(0,s.c,s.d)) -else{l=l.k1 -l.toString}p.a=o.Ez(n,l)}}} -A.CV.prototype={ -aj(a){var s -this.dE(a) -s=this.q$ -if(s!=null)s.aj(a)}, -aa(a){var s -this.d7(0) -s=this.q$ -if(s!=null)s.aa(0)}} -A.wV.prototype={ -i(a){return"GrowthDirection."+this.b}} -A.mh.prototype={ -gO7(){return!1}, -LF(a,b){var s=this.w -switch(A.bn(this.a).a){case 0:return new A.aF(b,a,s,s) -case 1:return new A.aF(s,s,b,a)}}, -a9v(){return this.LF(1/0,0)}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.mh))return!1 -return b.a===s.a&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.y===s.y&&b.Q===s.Q&&b.z===s.z}, -gv(a){var s=this -return A.a3(s.a,s.b,s.d,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=this,r=A.b([s.a.i(0),s.b.i(0),s.c.i(0),"scrollOffset: "+B.e.V(s.d,1),"remainingPaintExtent: "+B.e.V(s.r,1)],t.s),q=s.f -if(q!==0)r.push("overlap: "+B.e.V(q,1)) -r.push("crossAxisExtent: "+B.e.V(s.w,1)) -r.push("crossAxisDirection: "+s.x.i(0)) -r.push("viewportMainAxisExtent: "+B.e.V(s.y,1)) -r.push("remainingCacheExtent: "+B.e.V(s.Q,1)) -r.push("cacheOrigin: "+B.e.V(s.z,1)) -return"SliverConstraints("+B.c.bB(r,", ")+")"}} -A.L9.prototype={ -cv(){return"SliverGeometry"}} -A.t9.prototype={} -A.La.prototype={ -i(a){return A.C(this.a).i(0)+"@(mainAxis: "+A.e(this.c)+", crossAxis: "+A.e(this.d)+")"}} -A.A1.prototype={ -i(a){var s=this.a -return"layoutOffset="+(s==null?"None":B.e.V(s,1))}} -A.mi.prototype={ -i(a){return"paintOffset="+A.e(this.a)}} -A.kv.prototype={} -A.cg.prototype={ -ga_(){return t.q.a(A.u.prototype.ga_.call(this))}, -gl6(){return this.giM()}, -giM(){var s=this,r=t.q -switch(A.bn(r.a(A.u.prototype.ga_.call(s)).a).a){case 0:return new A.w(0,0,0+s.fy.c,0+r.a(A.u.prototype.ga_.call(s)).w) -case 1:return new A.w(0,0,0+r.a(A.u.prototype.ga_.call(s)).w,0+s.fy.c)}}, -r7(){}, -NE(a,b,c){var s=this -if(c>=0&&c=0&&b0){s=a/b -r=B.e.aI(s) -if(Math.abs(s*b-r*b)<1e-10)return r -return B.e.eG(s)}return 0}, -Ev(a,b){var s,r -if(b>0){s=a/b-1 -r=B.e.aI(s) -if(Math.abs(s*b-r*b)<1e-10)return Math.max(0,r) -return Math.max(0,B.e.dV(s))}return 0}, -Ze(a){var s,r=this.U$,q=A.n(this).j("ac.1"),p=t.D,o=0 -while(!0){if(r!=null){s=r.e -s.toString -s=p.a(s).b -s.toString -s=sa}else s=!1 -if(!s)break;++o -s=r.e -s.toString -r=q.a(s).bO$}return o}, -bK(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this,a6=null,a7=t.q.a(A.u.prototype.ga_.call(a5)),a8=a5.a6 -a8.rx=!1 -s=a5.gadX() -r=a7.d -q=r+a7.z -p=q+a7.Q -o=a7.LF(s,s) -n=a5.Qg(q,s) -m=isFinite(p)?a5.Ev(p,s):a6 -if(a5.U$!=null){l=a5.Ze(n) -a5.pS(l,m!=null?a5.Zg(m):0)}else a5.pS(0,0) -if(a5.U$==null)if(!a5.Lq(n,s*n)){k=n<=0?0:a8.guP()*s -a5.fy=A.jn(a6,!1,a6,a6,k,0,0,k,a6) -a8.q9() -return}j=a5.U$ -j.toString -j=j.e -j.toString -i=t.D -j=i.a(j).b -j.toString -h=j-1 -g=a6 -for(;h>=n;--h){f=a5.adC(o) -if(f==null){a5.fy=A.jn(a6,!1,a6,a6,0,0,0,0,h*s) -return}j=f.e -j.toString -i.a(j).a=s*h -if(g==null)g=f}if(g==null){a5.U$.fg(0,o) -g=a5.U$ -j=g.e -j.toString -i.a(j).a=s*n}j=g.e -j.toString -j=i.a(j).b -j.toString -h=j+1 -j=A.n(a5).j("ac.1") -e=m!=null -while(!0){if(!(!e||h<=m)){d=1/0 -break}c=g.e -c.toString -f=j.a(c).ae$ -if(f!=null){c=f.e -c.toString -c=i.a(c).b -c.toString -c=c!==h}else c=!0 -if(c){f=a5.adB(o,g) -if(f==null){d=h*s -break}}else f.fg(0,o) -c=f.e -c.toString -i.a(c) -b=c.b -b.toString -c.a=s*b;++h -g=f}j=a5.bV$ -j.toString -j=j.e -j.toString -j=i.a(j).b -j.toString -a=s*n -a0=s*(j+1) -d=Math.min(d,a8.MY(a7,n,j,a,a0)) -a1=a5.ij(a7,a,a0) -a2=a5.pO(a7,a,a0) -a3=r+a7.r -a4=isFinite(a3)?a5.Ev(a3,s):a6 -a5.fy=A.jn(a2,a4!=null&&j>=a4||r>0,a6,a6,d,a1,0,d,a6) -if(d===a0)a8.rx=!0 -a8.q9()}} -A.Km.prototype={ -bK(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null,a5={},a6=t.q.a(A.u.prototype.ga_.call(a3)),a7=a3.a6 -a7.rx=!1 -s=a6.d -r=s+a6.z -q=r+a6.Q -p=a6.a9v() -if(a3.U$==null)if(!a3.Lp()){a3.fy=B.vo -a7.q9() -return}a5.a=null -o=a3.U$ -n=o.e -n.toString -m=t.D -if(m.a(n).a==null){n=A.n(a3).j("ac.1") -l=0 -while(!0){if(o!=null){k=o.e -k.toString -k=m.a(k).a==null}else k=!1 -if(!k)break -k=o.e -k.toString -o=n.a(k).ae$;++l}a3.pS(l,0) -if(a3.U$==null)if(!a3.Lp()){a3.fy=B.vo -a7.q9() -return}}o=a3.U$ -n=o.e -n.toString -n=m.a(n).a -n.toString -j=n -i=a4 -for(;j>r;j=h,i=o){o=a3.CO(p,!0) -if(o==null){n=a3.U$ -k=n.e -k.toString -m.a(k).a=0 -if(r===0){n.cH(0,p,!0) -o=a3.U$ -if(a5.a==null)a5.a=o -i=o -break}else{a3.fy=A.jn(a4,!1,a4,a4,0,0,0,0,-r) -return}}n=a3.U$ -n.toString -h=j-a3.m3(n) -if(h<-1e-10){a3.fy=A.jn(a4,!1,a4,a4,0,0,0,0,-h) -a7=a3.U$.e -a7.toString -m.a(a7).a=0 -return}n=o.e -n.toString -m.a(n).a=h -if(a5.a==null)a5.a=o}if(r<1e-10)while(!0){n=a3.U$ -n.toString -n=n.e -n.toString -m.a(n) -k=n.b -k.toString -if(!(k>0))break -n=n.a -n.toString -o=a3.CO(p,!0) -k=a3.U$ -k.toString -h=n-a3.m3(k) -k=a3.U$.e -k.toString -m.a(k).a=0 -if(h<-1e-10){a3.fy=A.jn(a4,!1,a4,a4,0,0,0,0,-h) -return}}if(i==null){o.cH(0,p,!0) -a5.a=o}a5.b=!0 -a5.c=o -n=o.e -n.toString -m.a(n) -k=n.b -k.toString -a5.d=k -n=n.a -n.toString -a5.e=n+a3.m3(o) -g=new A.a5f(a5,a3,p) -for(f=0;a5.es+a6.r||s>0,a4,a4,a,a1,0,a,a4) -if(a===n)a7.rx=!0 -a7.q9()}} -A.a5f.prototype={ -$0(){var s,r,q,p=this.a,o=p.c,n=p.a -if(o==n)p.b=!1 -s=this.b -o=o.e -o.toString -r=p.c=A.n(s).j("ac.1").a(o).ae$ -o=r==null -if(o)p.b=!1 -q=++p.d -if(!p.b){if(!o){o=r.e -o.toString -o=t.D.a(o).b -o.toString -q=o!==q -o=q}else o=!0 -q=this.c -if(o){r=s.NP(q,n,!0) -p.c=r -if(r==null)return!1}else r.cH(0,q,!0) -o=p.a=p.c}else o=r -n=o.e -n.toString -t.D.a(n) -q=p.e -n.a=q -p.e=q+s.m3(o) -return!0}, -$S:47} -A.iZ.prototype={$icw:1} -A.a5j.prototype={ -f3(a){}} -A.fD.prototype={ -i(a){var s=this.b,r=this.qp$?"keepAlive; ":"" -return"index="+A.e(s)+"; "+r+this.TS(0)}} -A.m2.prototype={ -f3(a){if(!(a.e instanceof A.fD))a.e=new A.fD(!1,null,null)}, -hf(a){var s -this.FO(a) -s=a.e -s.toString -if(!t.D.a(s).c)this.a6.BP(t.r.a(a))}, -CN(a,b,c){this.xx(0,b,c)}, -w5(a,b){var s,r=this,q=a.e -q.toString -t.D.a(q) -if(!q.c){r.Sj(a,b) -r.a6.BP(a) -r.a0()}else{s=r.aq -if(s.h(0,q.b)===a)s.B(0,q.b) -r.a6.BP(a) -q=q.b -q.toString -s.n(0,q,a)}}, -B(a,b){var s=b.e -s.toString -t.D.a(s) -if(!s.c){this.Sk(0,b) -return}this.aq.B(0,s.b) -this.jm(b)}, -yF(a,b){this.CR(new A.a5g(this,a,b),t.q)}, -Ha(a){var s,r=this,q=a.e -q.toString -t.D.a(q) -if(q.qp$){r.B(0,a) -s=q.b -s.toString -r.aq.n(0,s,a) -a.e=q -r.FO(a) -q.c=!0}else r.a6.P8(a)}, -aj(a){var s,r,q -this.Ut(a) -for(s=this.aq,s=s.gb2(s),s=new A.eq(J.av(s.a),s.b),r=A.n(s).z[1];s.t();){q=s.a;(q==null?r.a(q):q).aj(a)}}, -aa(a){var s,r,q -this.Uu(0) -for(s=this.aq,s=s.gb2(s),s=new A.eq(J.av(s.a),s.b),r=A.n(s).z[1];s.t();){q=s.a;(q==null?r.a(q):q).aa(0)}}, -iP(){this.Fr() -var s=this.aq -s.gb2(s).Y(0,this.gDJ())}, -bb(a){var s -this.xy(a) -s=this.aq -s.gb2(s).Y(0,a)}, -fq(a){this.xy(a)}, -Lq(a,b){var s -this.yF(a,null) -s=this.U$ -if(s!=null){s=s.e -s.toString -t.D.a(s).a=b -return!0}this.a6.rx=!0 -return!1}, -Lp(){return this.Lq(0,0)}, -CO(a,b){var s,r,q,p=this,o=p.U$ -o.toString -o=o.e -o.toString -s=t.D -o=s.a(o).b -o.toString -r=o-1 -p.yF(r,null) -o=p.U$ -o.toString -q=o.e -q.toString -q=s.a(q).b -q.toString -if(q===r){o.cH(0,a,b) -return p.U$}p.a6.rx=!0 -return null}, -adC(a){return this.CO(a,!1)}, -NP(a,b,c){var s,r,q,p=b.e -p.toString -s=t.D -p=s.a(p).b -p.toString -r=p+1 -this.yF(r,b) -p=b.e -p.toString -q=A.n(this).j("ac.1").a(p).ae$ -if(q!=null){p=q.e -p.toString -p=s.a(p).b -p.toString -p=p===r}else p=!1 -if(p){q.cH(0,a,c) -return q}this.a6.rx=!0 -return null}, -adB(a,b){return this.NP(a,b,!1)}, -pS(a,b){var s={} -s.a=a -s.b=b -this.CR(new A.a5i(s,this),t.q)}, -m3(a){switch(A.bn(t.q.a(A.u.prototype.ga_.call(this)).a).a){case 0:return a.k1.a -case 1:return a.k1.b}}, -CI(a,b,c){var s,r,q=this.bV$,p=A.aow(a) -for(s=A.n(this).j("ac.1");q!=null;){if(this.adk(p,q,b,c))return!0 -r=q.e -r.toString -q=s.a(r).bO$}return!1}, -Bq(a){var s=a.e -s.toString -return t.D.a(s).a}, -dm(a,b){var s,r,q,p,o=this,n=a.e -n.toString -s=t.D -n=s.a(n).b -if(n==null)b.Fd() -else if(o.aq.ap(0,n))b.Fd() -else{n=t.q -r=o.HY(n.a(A.u.prototype.ga_.call(o))) -q=a.e -q.toString -q=s.a(q).a -q.toString -p=q-n.a(A.u.prototype.ga_.call(o)).d -switch(A.bn(n.a(A.u.prototype.ga_.call(o)).a).a){case 0:b.aC(0,!r?o.fy.c-a.k1.a-p:p,0) -break -case 1:b.aC(0,0,!r?o.fy.c-a.k1.b-p:p) -break}}}, -aH(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null -if(d.U$==null)return -s=t.q -switch(A.l2(s.a(A.u.prototype.ga_.call(d)).a,s.a(A.u.prototype.ga_.call(d)).b)){case B.I:r=b.Z(0,new A.m(0,d.fy.c)) -q=B.tT -p=B.cB -o=!0 -break -case B.ay:r=b -q=B.cB -p=B.c1 -o=!1 -break -case B.J:r=b -q=B.c1 -p=B.cB -o=!1 -break -case B.al:r=b.Z(0,new A.m(d.fy.c,0)) -q=B.tU -p=B.c1 -o=!0 -break -default:o=c -r=o -p=r -q=p}n=d.U$ -for(m=A.n(d).j("ac.1"),l=t.D;n!=null;){k=n.e -k.toString -k=l.a(k).a -k.toString -j=k-s.a(A.u.prototype.ga_.call(d)).d -k=r.a -i=q.a -k=k+i*j+p.a*0 -h=r.b -g=q.b -h=h+g*j+p.b*0 -f=new A.m(k,h) -if(o){e=d.m3(n) -f=new A.m(k+i*e,h+g*e)}if(j0)a.df(n,f) -k=n.e -k.toString -n=m.a(k).ae$}}} -A.a5g.prototype={ -$1(a){var s=this.a,r=s.aq,q=this.b,p=this.c -if(r.ap(0,q)){r=r.B(0,q) -r.toString -q=r.e -q.toString -t.D.a(q) -s.jm(r) -r.e=q -s.xx(0,r,p) -q.c=!1}else s.a6.aaZ(q,p)}, -$S:119} -A.a5i.prototype={ -$1(a){var s,r,q -for(s=this.a,r=this.b;s.a>0;){q=r.U$ -q.toString -r.Ha(q);--s.a}for(;s.b>0;){q=r.bV$ -q.toString -r.Ha(q);--s.b}s=r.aq -s=s.gb2(s) -q=A.n(s).j("au") -B.c.Y(A.ap(new A.au(s,new A.a5h(),q),!0,q.j("p.E")),r.a6.gafV())}, -$S:119} -A.a5h.prototype={ -$1(a){var s=a.e -s.toString -return!t.D.a(s).qp$}, -$S:309} -A.CX.prototype={ -aj(a){var s,r,q -this.dE(a) -s=this.U$ -for(r=t.D;s!=null;){s.aj(a) -q=s.e -q.toString -s=r.a(q).ae$}}, -aa(a){var s,r,q -this.d7(0) -s=this.U$ -for(r=t.D;s!=null;){s.aa(0) -q=s.e -q.toString -s=r.a(q).ae$}}} -A.Qr.prototype={} -A.Qs.prototype={} -A.R8.prototype={ -aa(a){this.xE(0)}} -A.R9.prototype={} -A.zp.prototype={ -gBe(){var s=this,r=t.q -switch(A.l2(r.a(A.u.prototype.ga_.call(s)).a,r.a(A.u.prototype.ga_.call(s)).b)){case B.I:return s.gcB().d -case B.ay:return s.gcB().a -case B.J:return s.gcB().b -case B.al:return s.gcB().c}}, -ga9m(){var s=this,r=t.q -switch(A.l2(r.a(A.u.prototype.ga_.call(s)).a,r.a(A.u.prototype.ga_.call(s)).b)){case B.I:return s.gcB().b -case B.ay:return s.gcB().c -case B.J:return s.gcB().d -case B.al:return s.gcB().a}}, -gab3(){switch(A.bn(t.q.a(A.u.prototype.ga_.call(this)).a).a){case 0:var s=this.gcB() -return s.gcJ(s)+s.gcR(s) -case 1:return this.gcB().giy()}}, -f3(a){if(!(a.e instanceof A.mi))a.e=new A.mi(B.j)}, -bK(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2=t.q,a3=a2.a(A.u.prototype.ga_.call(a0)),a4=a0.gBe() -a0.ga9m() -s=a0.gcB() -s.toString -a2=s.a9p(A.bn(a2.a(A.u.prototype.ga_.call(a0)).a)) -r=a0.gab3() -if(a0.q$==null){a0.fy=A.jn(a1,!1,a1,a1,a2,Math.min(a2,a3.r),0,a2,a1) -return}q=a0.ij(a3,0,a4) -p=a3.f -if(p>0)p=Math.max(0,p-q) -s=a0.q$ -s.toString -o=Math.max(0,a3.d-a4) -n=Math.min(0,a3.z+a4) -m=a3.r -l=a0.ij(a3,0,a4) -k=a3.Q -j=a0.pO(a3,0,a4) -i=Math.max(0,a3.w-r) -h=a3.a -g=a3.b -s.cH(0,new A.mh(h,g,a3.c,o,a4+a3.e,p,m-l,i,a3.x,a3.y,n,k-j),!0) -f=a0.q$.fy -s=f.y -if(s!=null){a0.fy=A.jn(a1,!1,a1,a1,0,0,0,0,s) -return}s=f.a -o=a4+s -n=a2+s -e=a0.ij(a3,o,n) -d=q+e -c=a0.pO(a3,0,a4) -b=a0.pO(a3,o,n) -o=f.c -l=f.d -a=Math.min(q+Math.max(o,l+e),m) -m=f.b -l=Math.min(d+l,a) -k=Math.min(b+c+f.z,k) -j=f.e -o=Math.max(d+o,q+f.r) -a0.fy=A.jn(k,f.x,o,l,a2+j,a,m,n,a1) -n=a0.q$.e -n.toString -t.jB.a(n) -switch(A.l2(h,g)){case B.I:n.a=new A.m(a0.gcB().a,a0.ij(a3,a0.gcB().d+s,a0.gcB().d+s+a0.gcB().b)) -break -case B.ay:n.a=new A.m(a0.ij(a3,0,a0.gcB().a),a0.gcB().b) -break -case B.J:n.a=new A.m(a0.gcB().a,a0.ij(a3,0,a0.gcB().b)) -break -case B.al:n.a=new A.m(a0.ij(a3,a0.gcB().c+s,a0.gcB().c+s+a0.gcB().a),a0.gcB().b) -break}}, -CI(a,b,c){var s,r,q,p,o=this,n=o.q$ -if(n!=null&&n.fy.r>0){n=n.e -n.toString -t.jB.a(n) -s=o.ij(t.q.a(A.u.prototype.ga_.call(o)),0,o.gBe()) -r=o.q$ -r.toString -r=o.aa5(r) -n=n.a -q=o.q$.gadi() -p=n!=null -if(p)a.c.push(new A.uw(new A.m(-n.a,-n.b))) -q.$3$crossAxisPosition$mainAxisPosition(a,b-r,c-s) -if(p)a.we()}return!1}, -aa5(a){var s=this,r=t.q -switch(A.l2(r.a(A.u.prototype.ga_.call(s)).a,r.a(A.u.prototype.ga_.call(s)).b)){case B.I:case B.J:return s.gcB().a -case B.al:case B.ay:return s.gcB().b}}, -Bq(a){return this.gBe()}, -dm(a,b){var s=a.e -s.toString -s=t.jB.a(s).a -b.aC(0,s.a,s.b)}, -aH(a,b){var s,r=this.q$ -if(r!=null&&r.fy.w){s=r.e -s.toString -a.df(r,b.Z(0,t.jB.a(s).a))}}} -A.Kn.prototype={ -gcB(){return this.co}, -a7w(){if(this.co!=null)return -this.co=this.c5}, -sdw(a,b){var s=this -if(s.c5.k(0,b))return -s.c5=b -s.co=null -s.a0()}, -sbx(a,b){var s=this -if(s.e1===b)return -s.e1=b -s.co=null -s.a0()}, -bK(){this.a7w() -this.FQ()}} -A.Qp.prototype={ -aj(a){var s -this.dE(a) -s=this.q$ -if(s!=null)s.aj(a)}, -aa(a){var s -this.d7(0) -s=this.q$ -if(s!=null)s.aa(0)}} -A.a4F.prototype={ -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.a4F&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){var s=this -return"RelativeRect.fromLTRB("+B.e.V(s.a,1)+", "+B.e.V(s.b,1)+", "+B.e.V(s.c,1)+", "+B.e.V(s.d,1)+")"}} -A.dl.prototype={ -gvQ(){var s=this -return s.e!=null||s.f!=null||s.r!=null||s.w!=null||s.x!=null||s.y!=null}, -i(a){var s=this,r=A.b([],t.s),q=s.e -if(q!=null)r.push("top="+A.iv(q)) -q=s.f -if(q!=null)r.push("right="+A.iv(q)) -q=s.r -if(q!=null)r.push("bottom="+A.iv(q)) -q=s.w -if(q!=null)r.push("left="+A.iv(q)) -q=s.x -if(q!=null)r.push("width="+A.iv(q)) -q=s.y -if(q!=null)r.push("height="+A.iv(q)) -if(r.length===0)r.push("not positioned") -r.push(s.t6(0)) -return B.c.bB(r,"; ")}} -A.Aa.prototype={ -i(a){return"StackFit."+this.b}} -A.ru.prototype={ -f3(a){if(!(a.e instanceof A.dl))a.e=new A.dl(null,null,B.j)}, -a7A(){var s=this -if(s.M!=null)return -s.M=s.af.O(s.a7)}, -sj9(a){var s=this -if(s.af.k(0,a))return -s.af=a -s.M=null -s.a0()}, -sbx(a,b){var s=this -if(s.a7==b)return -s.a7=b -s.M=null -s.a0()}, -b1(a){return A.os(this.U$,new A.a5n(a))}, -aU(a){return A.os(this.U$,new A.a5l(a))}, -aX(a){return A.os(this.U$,new A.a5m(a))}, -b0(a){return A.os(this.U$,new A.a5k(a))}, -dW(a){return this.Mx(a)}, -c4(a){return this.K7(a,A.EG())}, -K7(a,b){var s,r,q,p,o,n,m,l,k,j,i=this -i.a7A() -if(i.bz$===0)return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d)) -s=a.a -r=a.c -switch(i.q.a){case 0:q=new A.aF(0,a.b,0,a.d) -break -case 1:q=A.vF(new A.L(B.f.G(1/0,s,a.b),B.f.G(1/0,r,a.d))) -break -case 2:q=a -break -default:q=null}p=i.U$ -for(o=t.B,n=r,m=s,l=!1;p!=null;){k=p.e -k.toString -o.a(k) -if(!k.gvQ()){j=b.$2(p,q) -m=Math.max(m,j.a) -n=Math.max(n,j.b) -l=!0}p=k.ae$}return l?new A.L(m,n):new A.L(B.f.G(1/0,s,a.b),B.f.G(1/0,r,a.d))}, -bK(){var s,r,q,p,o,n,m,l=this,k=t.k.a(A.u.prototype.ga_.call(l)) -l.C=!1 -l.k1=l.K7(k,A.EH()) -s=l.U$ -for(r=t.B,q=t.EP;s!=null;){p=s.e -p.toString -r.a(p) -if(!p.gvQ()){o=l.M -o.toString -n=l.k1 -n.toString -m=s.k1 -m.toString -p.a=o.lv(q.a(n.a9(0,m)))}else{o=l.k1 -o.toString -n=l.M -n.toString -l.C=A.aqA(s,p,o,n)||l.C}s=p.ae$}}, -cL(a,b){return this.BJ(a,b)}, -m4(a,b){this.q2(a,b)}, -aH(a,b){var s,r=this,q=r.D!==B.u&&r.C,p=r.b6 -if(q){q=A.a(r.CW,"_needsCompositing") -s=r.k1 -p.saL(0,a.m6(q,b,new A.w(0,0,0+s.a,0+s.b),r.gwb(),r.D,p.a))}else{p.saL(0,null) -r.m4(a,b)}}, -m(a){this.b6.saL(0,null) -this.le(0)}, -jj(a){var s -if(this.C){s=this.k1 -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}} -A.a5n.prototype={ -$1(a){return a.av(B.U,this.a,a.gb9())}, -$S:27} -A.a5l.prototype={ -$1(a){return a.av(B.a8,this.a,a.gbf())}, -$S:27} -A.a5m.prototype={ -$1(a){return a.av(B.ah,this.a,a.gbn())}, -$S:27} -A.a5k.prototype={ -$1(a){return a.av(B.b_,this.a,a.gbM())}, -$S:27} -A.zg.prototype={ -fq(a){var s=this.U$ -if(s!=null)a.$1(this.yl())}, -yl(){var s,r=this.U$,q=t.B,p=this.ky,o=0 -while(!0){if(!(r!=null&&o")).Y(0,a)}, -sih(a){if(a===this.C)return -this.C=a -this.a0()}, -sab2(a){if(a===this.M)return -this.M=a -this.a0()}, -sbJ(a,b){var s=this,r=s.af -if(b===r)return -if(s.b!=null)r.K(0,s.gvZ()) -s.af=b -if(s.b!=null)b.a2(0,s.gvZ()) -s.a0()}, -sa9S(a){if(a==null)a=250 -if(a===this.a7)return -this.a7=a -this.a0()}, -sa9T(a){if(a===this.D)return -this.D=a -this.a0()}, -sim(a){var s=this -if(a!==s.b6){s.b6=a -s.aF() -s.ai()}}, -aj(a){this.Uv(a) -this.af.a2(0,this.gvZ())}, -aa(a){this.af.K(0,this.gvZ()) -this.Uw(0)}, -b1(a){return 0}, -aU(a){return 0}, -aX(a){return 0}, -b0(a){return 0}, -gar(){return!0}, -Oc(a,b,c,d,e,f,g,h,a0,a1,a2){var s,r,q,p,o,n,m,l,k=this,j=A.aGZ(k.af.k2,e),i=f+h -for(s=f,r=0;c!=null;){q=a2<=0?0:a2 -p=Math.max(b,-q) -o=b-p -c.cH(0,new A.mh(k.C,e,j,q,r,i-s,Math.max(0,a1-s+f),d,k.M,g,p,Math.max(0,a0+o)),!0) -n=c.fy -m=n.y -if(m!=null)return m -l=s+n.b -if(n.w||a2>0)k.PH(c,l,e) -else k.PH(c,-a2+f,e) -i=Math.max(l+n.c,i) -m=n.a -a2-=m -r+=m -s+=n.d -m=n.z -if(m!==0){a0-=m-o -b=Math.min(p+m,0)}k.agW(e,n) -c=a.$1(c)}return 0}, -jj(a){var s,r,q,p=this.k1,o=0+p.a,n=0+p.b -p=t.q -if(p.a(A.u.prototype.ga_.call(a)).f===0||!isFinite(p.a(A.u.prototype.ga_.call(a)).y))return new A.w(0,0,o,n) -s=p.a(A.u.prototype.ga_.call(a)).y-p.a(A.u.prototype.ga_.call(a)).r+p.a(A.u.prototype.ga_.call(a)).f -switch(A.l2(this.C,p.a(A.u.prototype.ga_.call(a)).b)){case B.J:r=0+s -q=0 -break -case B.I:n-=s -q=0 -r=0 -break -case B.ay:q=0+s -r=0 -break -case B.al:o-=s -q=0 -r=0 -break -default:q=0 -r=0}return new A.w(q,r,o,n)}, -BO(a){var s,r=this,q=r.q -if(q==null){q=r.k1 -return new A.w(0,0,0+q.a,0+q.b)}switch(A.bn(r.C).a){case 1:s=r.k1 -return new A.w(0,0-q,0+s.a,0+s.b+q) -case 0:s=r.k1 -return new A.w(0-q,0,0+s.a+q,0+s.b)}}, -aH(a,b){var s,r,q,p=this -if(p.U$==null)return -s=p.gad8()&&p.b6!==B.u -r=p.au -if(s){s=A.a(p.CW,"_needsCompositing") -q=p.k1 -r.saL(0,a.m6(s,b,new A.w(0,0,0+q.a,0+q.b),p.ga5h(),p.b6,r.a))}else{r.saL(0,null) -p.J2(a,b)}}, -m(a){this.au.saL(0,null) -this.le(0)}, -J2(a,b){var s,r,q,p,o,n,m -for(s=this.gLS(),r=s.length,q=b.a,p=b.b,o=0;o0}, -$S:312} -A.a5q.prototype={ -$1(a){var s=this,r=s.c,q=s.a,p=s.b.aaq(r,q.b) -return r.NE(s.d,q.a,p)}, -$S:118} -A.zr.prototype={ -f3(a){if(!(a.e instanceof A.kv))a.e=new A.kv(null,null,B.j)}, -sa9r(a){if(a===this.jt)return -this.jt=a -this.a0()}, -saT(a){if(a==this.dG)return -this.dG=a -this.a0()}, -ghz(){return!0}, -c4(a){return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d))}, -bK(){var s,r,q,p,o,n,m=this -switch(A.bn(m.C).a){case 1:m.af.n9(m.k1.b) -break -case 0:m.af.n9(m.k1.a) -break}if(m.dG==null){m.fO=m.eS=0 -m.fP=!1 -m.af.n7(0,0) -return}switch(A.bn(m.C).a){case 1:s=m.k1 -r=s.b -q=s.a -break -case 0:s=m.k1 -r=s.a -q=s.b -break -default:r=null -q=null}s=0 -do{p=m.af.as -p.toString -o=m.YM(r,q,p+0) -if(o!==0)m.af.aaX(o) -else if(m.af.n7(Math.min(0,A.a(m.eS,"_minScrollExtent")+r*m.jt),Math.max(0,A.a(m.fO,"_maxScrollExtent")-r*(1-m.jt))))break -n=s+1 -if(n<10){s=n -continue}else break}while(!0)}, -YM(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -e.fO=e.eS=0 -e.fP=!1 -s=a*e.jt-c -r=B.e.G(s,0,a) -q=a-s -p=B.e.G(q,0,a) -switch(e.D.a){case 0:e.q=e.a7 -break -case 1:e.q=a*e.a7 -break}o=e.q -o.toString -n=a+2*o -m=s+o -l=B.e.G(m,0,n) -k=B.e.G(n-m,0,n) -o=e.dG.e -o.toString -j=A.n(e).j("ac.1").a(o).bO$ -o=j==null -if(!o){i=Math.max(a,s) -h=e.q -h.toString -g=e.Oc(e.gaa3(),B.e.G(q,-h,0),j,b,B.ne,p,a,0,l,r,i-a) -if(g!==0)return-g}q=e.dG -i=-s -h=Math.max(0,i) -o=o?Math.min(0,i):0 -i=s>=a?s:r -f=e.q -f.toString -return e.Oc(e.gaa1(),B.e.G(s,-f,0),q,b,B.nd,i,a,o,k,p,h)}, -gad8(){return this.fP}, -agW(a,b){var s=this -switch(a.a){case 0:s.fO=A.a(s.fO,"_maxScrollExtent")+b.a -break -case 1:s.eS=A.a(s.eS,"_minScrollExtent")-b.a -break}if(b.x)s.fP=!0}, -PH(a,b,c){var s=a.e -s.toString -t.jB.a(s).a=this.aao(a,b,c)}, -afk(a){var s=a.e -s.toString -return t.jB.a(s).a}, -QI(a,b){var s,r,q,p,o=this -switch(t.q.a(A.u.prototype.ga_.call(a)).b.a){case 0:s=o.dG -for(r=A.n(o).j("ac.1"),q=0;s!==a;){q+=s.fy.a -p=s.e -p.toString -s=r.a(p).ae$}return q+b -case 1:r=o.dG.e -r.toString -p=A.n(o).j("ac.1") -s=p.a(r).bO$ -for(q=0;s!==a;){q-=s.fy.a -r=s.e -r.toString -s=p.a(r).bO$}return q-b}}, -aei(a){var s,r,q,p=this -switch(t.q.a(A.u.prototype.ga_.call(a)).b.a){case 0:s=p.dG -for(r=A.n(p).j("ac.1");s!==a;){s.fy.toString -q=s.e -q.toString -s=r.a(q).ae$}return 0 -case 1:r=p.dG.e -r.toString -q=A.n(p).j("ac.1") -s=q.a(r).bO$ -for(;s!==a;){s.fy.toString -r=s.e -r.toString -s=q.a(r).bO$}return 0}}, -dm(a,b){var s=a.e -s.toString -s=t.jB.a(s).a -b.aC(0,s.a,s.b)}, -aaq(a,b){var s,r=a.e -r.toString -t.jB.a(r) -s=t.q -switch(A.l2(s.a(A.u.prototype.ga_.call(a)).a,s.a(A.u.prototype.ga_.call(a)).b)){case B.J:return b-r.a.b -case B.ay:return b-r.a.a -case B.I:return a.fy.c-(b-r.a.b) -case B.al:return a.fy.c-(b-r.a.a)}}, -gLS(){var s,r,q=this,p=A.b([],t.Ry),o=q.U$ -if(o==null)return p -for(s=A.n(q).j("ac.1");o!=q.dG;){o.toString -p.push(o) -r=o.e -r.toString -o=s.a(r).ae$}o=q.bV$ -for(;!0;){o.toString -p.push(o) -if(o===q.dG)return p -r=o.e -r.toString -o=s.a(r).bO$}}, -gaa7(){var s,r,q,p=this,o=A.b([],t.Ry) -if(p.U$==null)return o -s=p.dG -for(r=A.n(p).j("ac.1");s!=null;){o.push(s) -q=s.e -q.toString -s=r.a(q).ae$}q=p.dG.e -q.toString -s=r.a(q).bO$ -for(;s!=null;){o.push(s) -q=s.e -q.toString -s=r.a(q).bO$}return o}} -A.jC.prototype={ -aj(a){var s,r,q -this.dE(a) -s=this.U$ -for(r=A.n(this).j("jC.0");s!=null;){s.aj(a) -q=s.e -q.toString -s=r.a(q).ae$}}, -aa(a){var s,r,q -this.d7(0) -s=this.U$ -for(r=A.n(this).j("jC.0");s!=null;){s.aa(0) -q=s.e -q.toString -s=r.a(q).ae$}}} -A.rC.prototype={ -i(a){return"ScrollDirection."+this.b}} -A.ev.prototype={ -qU(a,b,c,d){var s=d.a===B.r.a -if(s){this.iE(b) -return A.cU(null,t.H)}else return this.ig(b,c,d)}, -i(a){var s=this,r=A.b([],t.s) -s.TN(r) -r.push(A.C(s.r).i(0)) -r.push(s.f.i(0)) -r.push(A.e(s.dy)) -r.push(s.k2.i(0)) -return"#"+A.bF(s)+"("+B.c.bB(r,", ")+")"}, -cT(a){var s=this.as -if(s!=null)a.push("offset: "+B.e.V(s,1))}} -A.ua.prototype={} -A.m6.prototype={ -i(a){return"SchedulerPhase."+this.b}} -A.dR.prototype={ -a9i(a){var s=this.w$ -s.push(a) -if(s.length===1){s=$.aL() -s.ay=this.ga00() -s.ch=$.a5}}, -Pc(a){var s=this.w$ -B.c.B(s,a) -if(s.length===0){s=$.aL() -s.ay=null -s.ch=$.a5}}, -a01(a){var s,r,q,p,o,n,m,l,k=this.w$,j=A.ap(k,!0,t.xt) -for(p=j.length,o=0;o0)return!1 -if(j)A.K(A.X(l)) -s=k.tv(0) -j=s.b -if(m.y$.$2$priority$scheduler(j,m)){try{if(k.c===0)A.K(A.X(l));++k.d -k.tv(0) -p=k.c-1 -o=k.tv(p) -B.c.n(k.b,p,null) -k.c=p -if(p>0)k.YT(o,0) -s.ahJ()}catch(n){r=A.ab(n) -q=A.aA(n) -j=A.bi("during a task callback") -A.cS(new A.bs(r,q,"scheduler library",j,null,!1))}return k.c!==0}return!1}, -rT(a,b){var s,r=this -r.iZ() -s=++r.as$ -r.at$.n(0,s,new A.ua(a)) -return r.as$}, -EM(a){return this.rT(a,!1)}, -gabQ(){var s=this -if(s.CW$==null){if(s.cy$===B.cI)s.iZ() -s.CW$=new A.aI(new A.a4($.a5,t.U),t.h) -s.ch$.push(new A.a68(s))}return s.CW$.a}, -gNn(){return this.db$}, -JO(a){if(this.db$===a)return -this.db$=a -if(a)this.iZ()}, -MU(){var s=$.aL() -if(s.w==null){s.w=this.ga1h() -s.x=$.a5}if(s.y==null){s.y=this.ga1O() -s.z=$.a5}}, -Cb(){switch(this.cy$.a){case 0:case 4:this.iZ() -return -case 1:case 2:case 3:return}}, -iZ(){var s,r=this -if(!r.cx$)s=!(A.dR.prototype.gNn.call(r)&&r.ei$) -else s=!0 -if(s)return -r.MU() -$.aL().iZ() -r.cx$=!0}, -QD(){if(this.cx$)return -this.MU() -$.aL().iZ() -this.cx$=!0}, -EN(){var s,r,q=this -if(q.dx$||q.cy$!==B.cI)return -q.dx$=!0 -s=new A.LV(null,0,A.b([],t._x)) -s.xl(0,"Warm-up frame") -r=q.cx$ -A.bN(B.r,new A.a6a(q)) -A.bN(B.r,new A.a6b(q,r)) -q.aec(new A.a6c(q,s))}, -aga(){var s=this -s.fr$=s.Gc(s.fx$) -s.dy$=null}, -Gc(a){var s=this.dy$,r=s==null?B.r:new A.aP(a.a-s.a) -return A.bR(B.e.aI(r.a/$.am1)+this.fr$.a,0,0)}, -a1i(a){if(this.dx$){this.k1$=!0 -return}this.Np(a)}, -a1P(){var s=this -if(s.k1$){s.k1$=!1 -s.ch$.push(new A.a67(s)) -return}s.Nr()}, -Np(a){var s,r,q=this,p=q.k2$,o=p==null -if(!o)p.xm(0,"Frame",B.ex) -if(q.dy$==null)q.dy$=a -r=a==null -q.fy$=q.Gc(r?q.fx$:a) -if(!r)q.fx$=a -q.cx$=!1 -try{if(!o)p.xm(0,"Animate",B.ex) -q.cy$=B.KO -s=q.at$ -q.at$=A.z(t.S,t.h1) -J.eE(s,new A.a69(q)) -q.ax$.aG(0)}finally{q.cy$=B.KP}}, -Nr(){var s,r,q,p,o,n,m,l=this,k=l.k2$,j=k==null -if(!j)k.vp(0) -try{l.cy$=B.l9 -for(p=l.ay$,o=p.length,n=0;n0&&r<4){s=s.fy$ -s.toString -q.c=s}s=q.a -s.toString -return s}, -oE(a,b){var s=this,r=s.a -if(r==null)return -s.c=s.a=null -s.E7() -if(b)r.Gy(s) -else r.Ks()}, -ex(a){return this.oE(a,!1)}, -a89(a){var s,r=this -r.e=null -s=r.c -if(s==null)s=r.c=a -r.d.$1(new A.aP(a.a-s.a)) -if(!r.b&&r.a!=null&&r.e==null)r.e=$.bK.rT(r.gAr(),!0)}, -E7(){var s,r=this.e -if(r!=null){s=$.bK -s.at$.B(0,r) -s.ax$.E(0,r) -this.e=null}}, -m(a){var s=this,r=s.a -if(r!=null){s.a=null -s.E7() -r.Gy(s)}}, -agC(a,b){var s=""+"Ticker()" -return s.charCodeAt(0)==0?s:s}, -i(a){return this.agC(a,!1)}} -A.oU.prototype={ -Ks(){this.c=!0 -this.a.eg(0) -var s=this.b -if(s!=null)s.eg(0)}, -Gy(a){var s -this.c=!1 -s=this.b -if(s!=null)s.jf(new A.AA(a))}, -ah8(a){var s,r,q=this,p=new A.a9U(a) -if(q.b==null){s=q.b=new A.aI(new A.a4($.a5,t.U),t.h) -r=q.c -if(r!=null)if(r)s.eg(0) -else s.jf(B.R6)}q.b.a.fp(0,p,p,t.H)}, -lB(a,b){return this.a.a.lB(a,b)}, -hI(a){return this.lB(a,null)}, -fp(a,b,c,d){return this.a.a.fp(0,b,c,d)}, -aV(a,b,c){return this.fp(a,b,null,c)}, -fU(a){return this.a.a.fU(a)}, -i(a){var s=A.bF(this),r=this.c -if(r==null)r="active" -else r=r?"complete":"canceled" -return"#"+s+"("+r+")"}, -$ia7:1} -A.a9U.prototype={ -$1(a){this.a.$0()}, -$S:15} -A.AA.prototype={ -i(a){var s=this.a -if(s!=null)return"This ticker was canceled: "+s.i(0) -return'The ticker was canceled before the "orCancel" property was first used.'}, -$ice:1} -A.a6D.prototype={} -A.oB.prototype={ -i(a){return"SemanticsTag("+this.a+")"}, -gaN(a){return this.a}} -A.bQ.prototype={ -Z(a,b){var s,r,q,p,o,n,m,l=this.a,k=l.length -if(k===0)return b -s=b.a -if(s.length===0)return this -r=A.ap(this.b,!0,t.Vc) -q=b.b -p=q.length -if(p!==0)for(o=0;o=0;--o)r[o]=n[q-o-1].e}n=a3.dy -m=n.length -if(m!==0){l=new Int32Array(m) -for(o=0;o0?r[n-1].ok:null -if(n!==0)if(J.W(l)===J.W(o)){if(l!=null)o.toString -k=!0}else k=!1 -else k=!0 -if(!k&&p.length!==0){if(o!=null){if(!!p.immutable$list)A.K(A.N("sort")) -h=p.length-1 -if(h-0<=32)A.Lh(p,0,h,J.alW()) -else A.Lg(p,0,h,J.alW())}B.c.P(q,p) -B.c.sp(p,0)}p.push(new A.kU(m,l,n))}if(o!=null)B.c.i3(p) -B.c.P(q,p) -h=t.rB -return A.ap(new A.az(q,new A.a6R(),h),!0,h.j("bl.E"))}, -QO(a){if(this.b==null)return -B.m4.ou(0,a.PD(this.e))}, -cv(){return"SemanticsNode#"+this.e}, -agy(a,b,c){return new A.QR(a,this,b,!0,!0,null,c)}, -PB(a){return this.agy(B.AD,null,a)}} -A.a6T.prototype={ -$1(a){var s,r,q=this.a -q.a=q.a|a.dy -q.b=q.b|a.db -if(q.w==null)q.w=a.k4 -if(q.y==null)q.y=a.p1 -if(q.z==null)q.z=a.p3 -if(q.Q==null)q.Q=a.p4 -if(q.as==null)q.as=a.R8 -if(q.at==null)q.at=a.RG -if(q.ax==null)q.ax=a.rx -q.ay=a.ry -q.ch=a.to -if(q.CW==null)q.CW=a.x1 -s=q.d -if(s.a==="")q.d=a.fx -s=q.e -if(s.a==="")q.e=a.fy -s=q.f -if(s.a==="")q.f=a.go -s=a.dx -if(s!=null){r=q.x;(r==null?q.x=A.aK(t.g3):r).P(0,s)}for(s=this.b.cy,s=A.lE(s,s.r),r=this.c;s.t();)r.E(0,A.aoH(s.d)) -a.k3!=null -s=q.c -r=q.w -q.c=A.ahG(a.fr,a.k4,s,r) -r=q.r -s=q.w -q.r=A.ahG(a.id,a.k4,r,s) -q.cx=Math.max(q.cx,a.k2+a.k1) -return!0}, -$S:82} -A.a6R.prototype={ -$1(a){return a.a}, -$S:316} -A.kJ.prototype={ -aW(a,b){return B.e.aW(this.b,b.b)}, -$ibh:1} -A.it.prototype={ -aW(a,b){return B.e.aW(this.a,b.a)}, -Rr(){var s,r,q,p,o,n,m,l,k,j=A.b([],t.rF) -for(s=this.c,r=s.length,q=0;q") -return A.ap(new A.hH(n,new A.agc(),s),!0,s.j("p.E"))}, -Rq(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this.c,a4=a3.length -if(a4<=1)return a3 -s=t.S -r=A.z(s,t.bu) -q=A.z(s,s) -for(p=this.b,o=p===B.aa,p=p===B.q,n=a4,m=0;m2.356194490192345 -else a0=!1 -if(a||a0)q.n(0,l.e,f.e)}}a1=A.b([],t.t) -a2=A.b(a3.slice(0),A.af(a3)) -B.c.dk(a2,new A.ag8()) -new A.az(a2,new A.ag9(),A.af(a2).j("az<1,q>")).Y(0,new A.agb(A.aK(s),q,a1)) -a3=t.qn -a3=A.ap(new A.az(a1,new A.aga(r),a3),!0,a3.j("bl.E")) -a4=A.af(a3).j("ch<1>") -return A.ap(new A.ch(a3,a4),!0,a4.j("bl.E"))}} -A.agc.prototype={ -$1(a){return a.Rq()}, -$S:123} -A.ag8.prototype={ -$2(a,b){var s,r,q=a.w,p=A.pA(a,new A.m(q.a,q.b)) -q=b.w -s=A.pA(b,new A.m(q.a,q.b)) -r=B.e.aW(p.b,s.b) -if(r!==0)return-r -return-B.e.aW(p.a,s.a)}, -$S:83} -A.agb.prototype={ -$1(a){var s=this,r=s.a -if(r.A(0,a))return -r.E(0,a) -r=s.b -if(r.ap(0,a)){r=r.h(0,a) -r.toString -s.$1(r)}s.c.push(a)}, -$S:39} -A.ag9.prototype={ -$1(a){return a.e}, -$S:319} -A.aga.prototype={ -$1(a){var s=this.a.h(0,a) -s.toString -return s}, -$S:320} -A.ahE.prototype={ -$1(a){return a.Rr()}, -$S:123} -A.kU.prototype={ -aW(a,b){var s,r=this.b -if(r==null||b.b==null)return this.c-b.c -r.toString -s=b.b -s.toString -return r.aW(0,s)}, -$ibh:1} -A.rK.prototype={ -m(a){var s=this -s.a.aG(0) -s.b.aG(0) -s.c.aG(0) -s.eL(0)}, -QP(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.a -if(e.a===0)return -s=A.aK(t.S) -r=A.b([],t.J) -for(q=t.LQ,p=A.n(e).j("au"),o=p.j("p.E"),n=f.c;e.a!==0;){m=A.ap(new A.au(e,new A.a6W(f),p),!0,o) -e.aG(0) -n.aG(0) -l=new A.a6X() -if(!!m.immutable$list)A.K(A.N("sort")) -k=m.length-1 -if(k-0<=32)A.Lh(m,0,k,l) -else A.Lg(m,0,k,l) -B.c.P(r,m) -for(l=m.length,j=0;j#"+A.bF(this)}} -A.a6W.prototype={ -$1(a){return!this.a.c.A(0,a)}, -$S:82} -A.a6X.prototype={ -$2(a,b){return a.a-b.a}, -$S:83} -A.a6Y.prototype={ -$2(a,b){return a.a-b.a}, -$S:83} -A.a6V.prototype={ -$1(a){if(a.cx.ap(0,this.b)){this.a.a=a -return!1}return!0}, -$S:82} -A.a6E.prototype={ -lh(a,b){var s=this -s.e.n(0,a,b) -s.f=s.f|a.a -s.d=!0}, -f6(a,b){this.lh(a,new A.a6F(b))}, -siL(a){a.toString -this.f6(B.dt,a)}, -sjD(a){a.toString -this.f6(B.v3,a)}, -so1(a){this.f6(B.dw,a)}, -snU(a){this.f6(B.La,a)}, -so2(a){this.f6(B.dx,a)}, -so3(a){this.f6(B.du,a)}, -so0(a){this.f6(B.dv,a)}, -snV(a){this.f6(B.v4,a)}, -snS(a){this.f6(B.v2,a)}, -snQ(a,b){this.f6(B.Lc,b)}, -snR(a,b){this.f6(B.Lg,b)}, -so_(a,b){this.f6(B.L6,b)}, -snY(a){this.lh(B.Ld,new A.a6I(a))}, -snW(a){this.lh(B.L4,new A.a6G(a))}, -snZ(a){this.lh(B.Le,new A.a6J(a))}, -snX(a){this.lh(B.L5,new A.a6H(a))}, -so4(a){this.lh(B.L7,new A.a6K(a))}, -so5(a){this.lh(B.L8,new A.a6L(a))}, -snT(a){this.f6(B.Lb,a)}, -sr0(a){this.f6(B.Lf,a)}, -sQG(a){if(a==this.k2)return -this.k2=a -this.d=!0}, -sQH(a){if(a==this.k3)return -this.k3=a -this.d=!0}, -sqR(a){return}, -snm(a){if(a==this.p1)return -this.p1=a -this.d=!0}, -sfc(a,b){if(b===this.x1)return -this.x1=b -this.d=!0}, -Ly(a){var s=this.aq;(s==null?this.aq=A.aK(t.g3):s).E(0,a)}, -b3(a,b){var s=this,r=s.b5,q=a.a -if(b)s.b5=r|q -else s.b5=r&~q -s.d=!0}, -O_(a){var s,r=this -if(a==null||!a.d||!r.d)return!0 -if((r.f&a.f)!==0)return!1 -if((r.b5&a.b5)!==0)return!1 -if(r.p1!=null&&a.p1!=null)return!1 -if(r.R8.a.length!==0)s=a.R8.a.length!==0 -else s=!1 -if(s)return!1 -return!0}, -py(a){var s,r,q=this -if(!a.d)return -q.e.P(0,a.e) -q.p3.P(0,a.p3) -q.f=q.f|a.f -q.b5=q.b5|a.b5 -if(q.y1==null)q.y1=a.y1 -if(q.y2==null)q.y2=a.y2 -if(q.ao==null)q.ao=a.ao -if(q.a6==null)q.a6=a.a6 -if(q.to==null)q.to=a.to -if(q.k1==null)q.k1=a.k1 -if(q.k3==null)q.k3=a.k3 -if(q.k2==null)q.k2=a.k2 -q.k4=a.k4 -q.ok=a.ok -if(q.p1==null)q.p1=a.p1 -s=q.xr -if(s==null){s=q.xr=a.xr -q.d=!0}if(q.id==null)q.id=a.id -r=q.p4 -q.p4=A.ahG(a.p4,a.xr,r,s) -s=q.R8 -if(s.a==="")q.R8=a.R8 -s=q.RG -if(s.a==="")q.RG=a.RG -s=q.rx -if(s.a==="")q.rx=a.rx -s=q.ry -r=q.xr -q.ry=A.ahG(a.ry,a.xr,s,r) -q.x2=Math.max(q.x2,a.x2+a.x1) -q.d=q.d||a.d}, -Bw(a){var s=this,r=A.oA() -r.a=s.a -r.b=s.b -r.c=s.c -r.d=s.d -r.p2=s.p2 -r.xr=s.xr -r.id=s.id -r.p4=s.p4 -r.RG=s.RG -r.R8=s.R8 -r.rx=s.rx -r.ry=s.ry -r.to=s.to -r.x1=s.x1 -r.x2=s.x2 -r.b5=s.b5 -r.aq=s.aq -r.y1=s.y1 -r.y2=s.y2 -r.ao=s.ao -r.a6=s.a6 -r.f=s.f -r.k1=s.k1 -r.k3=s.k3 -r.k2=s.k2 -r.k4=s.k4 -r.ok=s.ok -r.p1=s.p1 -r.e.P(0,s.e) -r.p3.P(0,s.p3) -return r}} -A.a6F.prototype={ -$1(a){this.a.$0()}, -$S:9} -A.a6I.prototype={ -$1(a){a.toString -this.a.$1(A.pu(a))}, -$S:9} -A.a6G.prototype={ -$1(a){a.toString -this.a.$1(A.pu(a))}, -$S:9} -A.a6J.prototype={ -$1(a){a.toString -this.a.$1(A.pu(a))}, -$S:9} -A.a6H.prototype={ -$1(a){a.toString -this.a.$1(A.pu(a))}, -$S:9} -A.a6K.prototype={ -$1(a){var s,r,q -a.toString -s=J.ana(t.f.a(a),t.N,t.S) -r=s.h(0,"base") -r.toString -q=s.h(0,"extent") -q.toString -this.a.$1(A.cj(B.l,r,q,!1))}, -$S:9} -A.a6L.prototype={ -$1(a){a.toString -this.a.$1(A.bk(a))}, -$S:9} -A.GA.prototype={ -i(a){return"DebugSemanticsDumpOrder."+this.b}} -A.rL.prototype={ -aW(a,b){var s=this.abx(b) -return s}, -$ibh:1, -gaN(a){return this.a}} -A.ob.prototype={ -abx(a){var s=a.b===this.b -if(s)return 0 -return B.f.aW(this.b,a.b)}} -A.QQ.prototype={} -A.QS.prototype={} -A.QT.prototype={} -A.a6N.prototype={ -PD(a){var s=A.aB(["type",this.a,"data",this.rJ()],t.N,t.z) -if(a!=null)s.n(0,"nodeId",a) -return s}, -agA(){return this.PD(null)}, -i(a){var s,r,q=A.b([],t.s),p=this.rJ(),o=p.gba(p),n=A.ap(o,!0,A.n(o).j("p.E")) -B.c.i3(n) -for(o=n.length,s=0;s#"+A.bF(this)+"()"}} -A.Ve.prototype={ -lX(a,b){return this.RH(a,!0)}, -aeb(a,b,c){var s,r={},q=this.b -if(q.ap(0,a)){r=q.h(0,a) -r.toString -return c.j("a7<0>").a(r)}r.a=r.b=null -this.lX(a,!1).aV(0,b,c).aV(0,new A.Vf(r,this,a,c),t.H) -s=r.a -if(s!=null)return s -s=new A.a4($.a5,c.j("a4<0>")) -r.b=new A.aI(s,c.j("aI<0>")) -q.n(0,a,s) -return r.b.a}} -A.Vf.prototype={ -$1(a){var s=this,r=new A.d0(a,s.d.j("d0<0>")),q=s.a -q.a=r -s.b.b.n(0,s.c,r) -q=q.b -if(q!=null)q.c3(0,a)}, -$S(){return this.d.j("aG(0)")}} -A.a3w.prototype={ -dI(a,b){return this.ae9(0,b)}, -ae9(a,b){var s=0,r=A.S(t.V4),q,p,o -var $async$dI=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:p=B.ba.cS(A.as4(A.mG(B.ha,b,B.z,!1)).e) -s=3 -return A.U(A.a($.e7.bQ$,"_defaultBinaryMessenger").rX(0,"flutter/assets",A.kd(p.buffer,0,null)),$async$dI) -case 3:o=d -if(o==null)throw A.c(A.Hh("Unable to load asset: "+b)) -q=o -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$dI,r)}} -A.vw.prototype={ -i0(){var s,r=this -if(r.a){s=A.z(t.N,t.z) -s.n(0,"uniqueIdentifier",r.b) -s.n(0,"hints",r.c) -s.n(0,"editingValue",r.d.rq())}else s=null -return s}} -A.UQ.prototype={} -A.rM.prototype={ -qB(){var s=$.TR() -s.a.aG(0) -s.b.aG(0)}, -kC(a){return this.ad2(a)}, -ad2(a){var s=0,r=A.S(t.H),q,p=this -var $async$kC=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:switch(A.bk(J.ag(t.a.a(a),"type"))){case"memoryPressure":p.qB() -break}s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$kC,r)}, -Yu(){var s,r=A.bx("controller") -r.sdH(A.aqY(new A.a73(r),!1,t.hz)) -s=r.bm() -return new A.jz(s,A.aV(s).j("jz<1>"))}, -afF(){if(this.x$!=null)return -$.aL() -var s=A.aqK("AppLifecycleState.resumed") -if(s!=null)this.vt(s)}, -zg(a){return this.a2g(a)}, -a2g(a){var s=0,r=A.S(t.ob),q,p=this,o -var $async$zg=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:a.toString -o=A.aqK(a) -o.toString -p.vt(o) -q=null -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$zg,r)}, -zh(a){return this.a2J(a)}, -a2J(a){var s=0,r=A.S(t.H) -var $async$zh=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:t.j.a(a.b) -return A.Q(null,r)}}) -return A.R($async$zh,r)}, -$idR:1} -A.a73.prototype={ -$0(){var s=0,r=A.S(t.H),q=this,p,o,n -var $async$$0=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:o=A.bx("rawLicenses") -n=o -s=2 -return A.U($.TR().lX("NOTICES",!1),$async$$0) -case 2:n.sdH(b) -p=q.a -n=J -s=3 -return A.U(A.Tr(A.aHa(),o.bm(),"parseLicenses",t.N,t.qC),$async$$0) -case 3:n.eE(b,J.ayn(p.bm())) -s=4 -return A.U(J.ajI(p.bm()),$async$$0) -case 4:return A.Q(null,r)}}) -return A.R($async$$0,r)}, -$S:45} -A.aca.prototype={ -rX(a,b,c){var s=new A.a4($.a5,t.gg) -$.aL().a73(b,c,A.aAY(new A.acb(new A.aI(s,t.yB)))) -return s}, -xb(a,b){if(b==null){a=$.EO().a.h(0,a) -if(a!=null)a.e=null}else $.EO().QZ(a,new A.acc(b))}} -A.acb.prototype={ -$1(a){var s,r,q,p -try{this.a.c3(0,a)}catch(q){s=A.ab(q) -r=A.aA(q) -p=A.bi("during a platform message response callback") -A.cS(new A.bs(s,r,"services library",p,null,!1))}}, -$S:16} -A.acc.prototype={ -$2(a,b){return this.PW(a,b)}, -PW(a,b){var s=0,r=A.S(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h -var $async$$2=A.T(function(c,d){if(c===1){p=d -s=q}while(true)switch(s){case 0:i=null -q=3 -s=6 -return A.U(n.a.$1(a),$async$$2) -case 6:i=d -o.push(5) -s=4 -break -case 3:q=2 -h=p -m=A.ab(h) -l=A.aA(h) -j=A.bi("during a platform message callback") -A.cS(new A.bs(m,l,"services library",j,null,!1)) -o.push(5) -s=4 -break -case 2:o=[1] -case 4:q=1 -b.$1(i) -s=o.pop() -break -case 5:return A.Q(null,r) -case 1:return A.P(p,r)}}) -return A.R($async$$2,r)}, -$S:324} -A.n9.prototype={} -A.r0.prototype={} -A.lB.prototype={} -A.nW.prototype={} -A.lC.prototype={} -A.xp.prototype={} -A.a_e.prototype={ -a_n(a){var s,r,q,p,o,n,m,l,k,j -this.d=!0 -s=!1 -for(n=this.c,m=0;!1;++m){r=n[m] -try{q=r.$1(a) -s=s||q}catch(l){p=A.ab(l) -o=A.aA(l) -k=A.bi("while processing a key handler") -j=$.hx() -if(j!=null)j.$1(new A.bs(p,o,"services library",k,null,!1))}}this.d=!1 -return s}, -Ns(a){var s,r,q=this,p=a.a,o=a.b -if(a instanceof A.nW){q.a.n(0,p,o) -s=$.auz().h(0,o.a) -if(s!=null){r=q.b -if(r.A(0,s))r.B(0,s) -else r.E(0,s)}}else if(a instanceof A.lC)q.a.B(0,p) -return q.a_n(a)}} -A.xm.prototype={ -i(a){return"KeyDataTransitMode."+this.b}} -A.xn.prototype={ -i(a){return"KeyMessage("+A.e(this.a)+")"}} -A.I1.prototype={ -acK(a){var s,r=this,q=r.d -switch((q==null?r.d=B.Cb:q).a){case 0:return!1 -case 1:if(a.c===0&&a.d===0)return!1 -s=A.aBK(a) -if(a.f&&r.e.length===0){r.b.Ns(s) -r.Hj(A.b([s],t.K0),null)}else r.e.push(s) -return!1}}, -Hj(a,b){var s,r,q,p,o=this.a -if(o!=null){s=new A.xn(a,b) -try{o=o.$1(s) -return o}catch(p){r=A.ab(p) -q=A.aA(p) -o=A.bi("while processing the key message handler") -A.cS(new A.bs(r,q,"services library",o,null,!1))}}return!1}, -CB(a){var s=0,r=A.S(t.a),q,p=this,o,n,m,l,k,j -var $async$CB=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:if(p.d==null){p.d=B.Ca -p.c.a.push(p.gZS())}o=A.aCR(t.a.a(a)) -n=p.c.ad_(o) -for(m=p.e,l=m.length,k=p.b,j=0;j") -r=A.j1(new A.b3(e,s),s.j("p.E")) -q=A.b([],t.K0) -p=e.h(0,d) -o=$.e7.fx$ -n=a.a -if(n==="")n=f -if(a instanceof A.kn)if(p==null){m=new A.nW(d,c,n,o,!1) -r.E(0,d)}else m=new A.xp(d,p,n,o,!1) -else if(p==null)m=f -else{m=new A.lC(d,p,f,o,!1) -r.B(0,d)}for(s=this.c.d,l=A.n(s).j("b3<1>"),k=l.j("p.E"),j=r.ns(A.j1(new A.b3(s,l),k)),j=j.ga1(j),i=this.e;j.t();){h=j.gH(j) -if(h.k(0,d))q.push(new A.lC(h,c,f,o,!0)) -else{g=e.h(0,h) -g.toString -i.push(new A.lC(h,g,f,o,!0))}}for(e=A.j1(new A.b3(s,l),k).ns(r),e=e.ga1(e);e.t();){l=e.gH(e) -k=s.h(0,l) -k.toString -i.push(new A.nW(l,k,f,o,!0))}if(m!=null)i.push(m) -B.c.P(i,q)}} -A.OH.prototype={} -A.a1f.prototype={} -A.d.prototype={ -gv(a){return B.f.gv(this.a)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.d&&b.a===this.a}} -A.l.prototype={ -gv(a){return B.f.gv(this.a)}, -k(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.l&&b.a===this.a}} -A.OI.prototype={} -A.ka.prototype={ -i(a){return"MethodCall("+this.a+", "+A.e(this.b)+")"}} -A.yH.prototype={ -i(a){var s=this -return"PlatformException("+s.a+", "+A.e(s.b)+", "+A.e(s.c)+", "+A.e(s.d)+")"}, -$ice:1} -A.y1.prototype={ -i(a){return"MissingPluginException("+A.e(this.a)+")"}, -$ice:1} -A.a8U.prototype={ -fJ(a){if(a==null)return null -return B.cN.cS(A.cX(a.buffer,a.byteOffset,a.byteLength))}, -ca(a){if(a==null)return null -return A.kd(B.ba.cS(a).buffer,0,null)}} -A.a0F.prototype={ -ca(a){if(a==null)return null -return B.fl.ca(B.at.lM(a))}, -fJ(a){var s -if(a==null)return a -s=B.fl.fJ(a) -s.toString -return B.at.dr(0,s)}} -A.a0H.prototype={ -hO(a){var s=B.bN.ca(A.aB(["method",a.a,"args",a.b],t.N,t.X)) -s.toString -return s}, -hL(a){var s,r,q,p=null,o=B.bN.fJ(a) -if(!t.f.b(o))throw A.c(A.c5("Expected method call Map, got "+A.e(o),p,p)) -s=J.ax(o) -r=s.h(o,"method") -q=s.h(o,"args") -if(typeof r=="string")return new A.ka(r,q) -throw A.c(A.c5("Invalid method call: "+A.e(o),p,p))}, -Mv(a){var s,r,q,p=null,o=B.bN.fJ(a) -if(!t.j.b(o))throw A.c(A.c5("Expected envelope List, got "+A.e(o),p,p)) -s=J.ax(o) -if(s.gp(o)===1)return s.h(o,0) -if(s.gp(o)===3)if(typeof s.h(o,0)=="string")r=s.h(o,1)==null||typeof s.h(o,1)=="string" -else r=!1 -else r=!1 -if(r){r=A.bk(s.h(o,0)) -q=A.bH(s.h(o,1)) -throw A.c(A.a3y(r,s.h(o,2),q,p))}if(s.gp(o)===4)if(typeof s.h(o,0)=="string")if(s.h(o,1)==null||typeof s.h(o,1)=="string")r=s.h(o,3)==null||typeof s.h(o,3)=="string" -else r=!1 -else r=!1 -else r=!1 -if(r){r=A.bk(s.h(o,0)) -q=A.bH(s.h(o,1)) -throw A.c(A.a3y(r,s.h(o,2),q,A.bH(s.h(o,3))))}throw A.c(A.c5("Invalid envelope: "+A.e(o),p,p))}, -qg(a){var s=B.bN.ca([a]) -s.toString -return s}, -lN(a,b,c){var s=B.bN.ca([a,c,b]) -s.toString -return s}, -MR(a,b){return this.lN(a,null,b)}} -A.a8I.prototype={ -ca(a){var s -if(a==null)return null -s=A.aaE() -this.dO(0,s,a) -return s.kt()}, -fJ(a){var s,r -if(a==null)return null -s=new A.z1(a) -r=this.hu(0,s) -if(s.b=b.a.byteLength)throw A.c(B.aG) -return this.jG(b.mo(0),b)}, -jG(a,b){var s,r,q,p,o,n,m,l,k=this -switch(a){case 0:return null -case 1:return!0 -case 2:return!1 -case 3:s=b.b -r=$.dd() -q=b.a.getInt32(s,B.ad===r) -b.b+=4 -return q -case 4:return b.wN(0) -case 6:b.i6(8) -s=b.b -r=$.dd() -q=b.a.getFloat64(s,B.ad===r) -b.b+=8 -return q -case 5:case 7:p=k.er(b) -return B.cN.cS(b.mp(p)) -case 8:return b.mp(k.er(b)) -case 9:p=k.er(b) -b.i6(4) -s=b.a -o=A.apW(s.buffer,s.byteOffset+b.b,p) -b.b=b.b+4*p -return o -case 10:return b.wO(k.er(b)) -case 14:p=k.er(b) -b.i6(4) -s=b.a -r=s.buffer -s=s.byteOffset+b.b -A.Ti(r,s,p) -o=new Float32Array(r,s,p) -b.b=b.b+4*p -return o -case 11:p=k.er(b) -b.i6(8) -s=b.a -o=A.apU(s.buffer,s.byteOffset+b.b,p) -b.b=b.b+8*p -return o -case 12:p=k.er(b) -n=A.b7(p,null,!1,t.X) -for(s=b.a,m=0;m=s.byteLength)A.K(B.aG) -b.b=r+1 -n[m]=k.jG(s.getUint8(r),b)}return n -case 13:p=k.er(b) -s=t.X -n=A.z(s,s) -for(s=b.a,m=0;m=s.byteLength)A.K(B.aG) -b.b=r+1 -r=k.jG(s.getUint8(r),b) -l=b.b -if(l>=s.byteLength)A.K(B.aG) -b.b=l+1 -n.n(0,r,k.jG(s.getUint8(l),b))}return n -default:throw A.c(B.aG)}}, -fs(a,b){var s,r -if(b<254)a.ee(0,b) -else{s=a.d -if(b<=65535){a.ee(0,254) -r=$.dd() -s.setUint16(0,b,B.ad===r) -a.oQ(a.e,0,2)}else{a.ee(0,255) -r=$.dd() -s.setUint32(0,b,B.ad===r) -a.oQ(a.e,0,4)}}}, -er(a){var s,r,q=a.mo(0) -switch(q){case 254:s=a.b -r=$.dd() -q=a.a.getUint16(s,B.ad===r) -a.b+=2 -return q -case 255:s=a.b -r=$.dd() -q=a.a.getUint32(s,B.ad===r) -a.b+=4 -return q -default:return q}}} -A.a8J.prototype={ -$2(a,b){var s=this.a,r=this.b -s.dO(0,r,a) -s.dO(0,r,b)}, -$S:69} -A.a8M.prototype={ -hO(a){var s=A.aaE() -B.am.dO(0,s,a.a) -B.am.dO(0,s,a.b) -return s.kt()}, -hL(a){var s,r,q -a.toString -s=new A.z1(a) -r=B.am.hu(0,s) -q=B.am.hu(0,s) -if(typeof r=="string"&&s.b>=a.byteLength)return new A.ka(r,q) -else throw A.c(B.nb)}, -qg(a){var s=A.aaE() -s.ee(0,0) -B.am.dO(0,s,a) -return s.kt()}, -lN(a,b,c){var s=A.aaE() -s.ee(0,1) -B.am.dO(0,s,a) -B.am.dO(0,s,c) -B.am.dO(0,s,b) -return s.kt()}, -MR(a,b){return this.lN(a,null,b)}, -Mv(a){var s,r,q,p,o,n -if(a.byteLength===0)throw A.c(B.Br) -s=new A.z1(a) -if(s.mo(0)===0)return B.am.hu(0,s) -r=B.am.hu(0,s) -q=B.am.hu(0,s) -p=B.am.hu(0,s) -o=s.b=a.byteLength -else n=!1 -if(n)throw A.c(A.a3y(r,p,A.bH(q),o)) -else throw A.c(B.Bs)}} -A.a2c.prototype={ -acE(a,b,c){var s,r,q,p -if(t.PB.b(b)){this.b.B(0,a) -return}s=this.b -r=s.h(0,a) -q=A.aEr(c) -if(q==null)q=this.a -if(J.f(r==null?null:t.ZC.a(r.a),q))return -p=q.v2(a) -s.n(0,a,p) -B.Kc.cA("activateSystemCursor",A.aB(["device",p.b,"kind",t.ZC.a(p.a).a],t.N,t.z),t.H)}} -A.y2.prototype={} -A.cW.prototype={ -i(a){var s=this.gv4() -return s}} -A.NA.prototype={ -v2(a){throw A.c(A.c_(null))}, -gv4(){return"defer"}} -A.Ry.prototype={} -A.mk.prototype={ -gv4(){return"SystemMouseCursor("+this.a+")"}, -v2(a){return new A.Ry(this,a)}, -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.mk&&b.a===this.a}, -gv(a){return B.b.gv(this.a)}} -A.P9.prototype={} -A.lb.prototype={ -ou(a,b){return this.QN(0,b,this.$ti.j("1?"))}, -QN(a,b,c){var s=0,r=A.S(c),q,p=this,o,n,m -var $async$ou=A.T(function(d,e){if(d===1)return A.P(e,r) -while(true)switch(s){case 0:o=p.b -n=A.a($.e7.bQ$,"_defaultBinaryMessenger") -n=n -m=o -s=3 -return A.U(n.rX(0,p.a,o.ca(b)),$async$ou) -case 3:q=m.fJ(e) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$ou,r)}, -xa(a){var s=A.a($.e7.bQ$,"_defaultBinaryMessenger") -s=s -s.xb(this.a,new A.UP(this,a))}, -gaN(a){return this.a}} -A.UP.prototype={ -$1(a){return this.PT(a)}, -PT(a){var s=0,r=A.S(t.CD),q,p=this,o,n -var $async$$1=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:o=p.a.b -n=o -s=3 -return A.U(p.b.$1(o.fJ(a)),$async$$1) -case 3:q=n.ca(c) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$$1,r)}, -$S:126} -A.lL.prototype={ -k7(a,b,c,d){return this.a4a(a,b,c,d,d.j("0?"))}, -a4a(a,b,c,d,e){var s=0,r=A.S(e),q,p=this,o,n,m,l -var $async$k7=A.T(function(f,g){if(f===1)return A.P(g,r) -while(true)switch(s){case 0:l=p.c -if(l==null)l=A.a($.e7.bQ$,"_defaultBinaryMessenger") -o=p.a -n=p.b -s=3 -return A.U(l.rX(0,o,n.hO(new A.ka(a,b))),$async$k7) -case 3:m=g -if(m==null){if(c){q=null -s=1 -break}throw A.c(A.apQ("No implementation found for method "+a+" on channel "+o))}q=d.j("0?").a(n.Mv(m)) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$k7,r)}, -cA(a,b,c){return this.k7(a,b,!1,c)}, -vN(a,b,c){return this.adI(a,b,c,b.j("@<0>").az(c).j("ay<1,2>?"))}, -adI(a,b,c,d){var s=0,r=A.S(d),q,p=this,o -var $async$vN=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:s=3 -return A.U(p.cA(a,null,t.f),$async$vN) -case 3:o=f -q=o==null?null:J.ana(o,b,c) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$vN,r)}, -mv(a){var s=this.c -if(s==null)s=A.a($.e7.bQ$,"_defaultBinaryMessenger") -s.xb(this.a,new A.a20(this,a))}, -tI(a,b){return this.a1g(a,b)}, -a1g(a,b){var s=0,r=A.S(t.CD),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e,d -var $async$tI=A.T(function(c,a0){if(c===1){o=a0 -s=p}while(true)switch(s){case 0:g=m.b -f=g.hL(a) -p=4 -d=g -s=7 -return A.U(b.$1(f),$async$tI) -case 7:j=d.qg(a0) -q=j -s=1 -break -p=2 -s=6 -break -case 4:p=3 -e=o -j=A.ab(e) -if(j instanceof A.yH){l=j -j=l.a -h=l.b -q=g.lN(j,l.c,h) -s=1 -break}else if(j instanceof A.y1){q=null -s=1 -break}else{k=j -g=g.MR("error",J.bX(k)) -q=g -s=1 -break}s=6 -break -case 3:s=2 -break -case 6:case 1:return A.Q(q,r) -case 2:return A.P(o,r)}}) -return A.R($async$tI,r)}, -gaN(a){return this.a}} -A.a20.prototype={ -$1(a){return this.a.tI(a,this.b)}, -$S:126} -A.lO.prototype={ -cA(a,b,c){return this.adJ(a,b,c,c.j("0?"))}, -jx(a,b){return this.cA(a,null,b)}, -adJ(a,b,c,d){var s=0,r=A.S(d),q,p=this -var $async$cA=A.T(function(e,f){if(e===1)return A.P(f,r) -while(true)switch(s){case 0:q=p.SO(a,b,!0,c) -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$cA,r)}} -A.lD.prototype={ -i(a){return"KeyboardSide."+this.b}} -A.f8.prototype={ -i(a){return"ModifierKey."+this.b}} -A.yZ.prototype={ -gaeo(){var s,r,q,p=A.z(t.xS,t.LE) -for(s=0;s<9;++s){r=B.nx[s] -if(this.adS(r)){q=this.Qi(r) -if(q!=null)p.n(0,r,q)}}return p}, -Rb(){return!0}} -A.i3.prototype={ -gbN(a){return this.c}} -A.a4e.prototype={ -$0(){var s,r,q,p=this.b,o=J.ax(p),n=A.bH(o.h(p,"key")),m=n==null -if(!m){s=n.length -s=s!==0&&s===1}else s=!1 -if(s)this.a.a=n -s=A.bH(o.h(p,"code")) -if(s==null)s="" -m=m?"":n -r=A.hs(o.h(p,"location")) -if(r==null)r=0 -q=A.hs(o.h(p,"metaState")) -if(q==null)q=0 -p=A.hs(o.h(p,"keyCode")) -return new A.JR(s,m,r,q,p==null?0:p)}, -$S:328} -A.kn.prototype={} -A.z_.prototype={} -A.a4f.prototype={ -ad_(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(a instanceof A.kn){p=a.c -if(p.Rb()){h.d.n(0,p.gfR(),p.gvW()) -o=!0}else{h.e.E(0,p.gfR()) -o=!1}}else if(a instanceof A.z_){p=h.e -n=a.c -if(!p.A(0,n.gfR())){h.d.B(0,n.gfR()) -o=!0}else{p.B(0,n.gfR()) -o=!1}}else o=!0 -if(!o)return!0 -h.a7U(a) -for(p=h.a,n=A.ap(p,!0,t.iS),m=n.length,l=0;l")),g),b=a instanceof A.kn -if(b)c.E(0,i.gfR()) -for(s=null,r=0;r<9;++r){q=B.nx[r] -p=$.auC() -o=p.h(0,new A.cs(q,B.bb)) -if(o==null)continue -if(o.A(0,i.gfR()))s=q -if(h.h(0,q)===B.ct){e.P(0,o) -if(o.fD(0,c.ghJ(c)))continue}n=h.h(0,q)==null?A.aK(g):p.h(0,new A.cs(q,h.h(0,q))) -if(n==null)continue -for(p=new A.kP(n,n.r),p.c=n.e,m=A.n(p).c;p.t();){l=p.d -if(l==null)l=m.a(l) -k=$.auB().h(0,l) -k.toString -f.n(0,l,k)}}g=$.amD() -c=A.n(g).j("b3<1>") -new A.au(new A.b3(g,c),new A.a4g(e),c.j("au")).Y(0,d.gP6(d)) -if(!(i instanceof A.a4b)&&!(i instanceof A.a4d))d.B(0,B.dk) -d.P(0,f) -if(b&&s!=null&&!d.ap(0,i.gfR()))if(i instanceof A.a4c&&i.gfR().k(0,B.c6)){j=g.h(0,i.gfR()) -if(j!=null)d.n(0,i.gfR(),j)}}} -A.a4g.prototype={ -$1(a){return!this.a.A(0,a)}, -$S:329} -A.cs.prototype={ -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.cs&&b.a===this.a&&b.b==this.b}, -gv(a){return A.a3(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Q7.prototype={} -A.Q6.prototype={} -A.a4b.prototype={} -A.a4c.prototype={} -A.a4d.prototype={} -A.JR.prototype={ -gfR(){var s=this.a,r=B.Jd.h(0,s) -return r==null?new A.l(98784247808+B.b.gv(s)):r}, -gvW(){var s,r=this.b,q=B.Jg.h(0,r),p=q==null?null:q[this.c] -if(p!=null)return p -q=this.a -s=B.Jb.h(0,q) -if(s!=null)return s -if(r.length===1)return new A.d(B.b.ac(r.toLowerCase(),0)) -return new A.d(B.b.gv(q)+98784247808)}, -adS(a){var s=this -switch(a.a){case 0:return(s.d&4)!==0 -case 1:return(s.d&1)!==0 -case 2:return(s.d&2)!==0 -case 3:return(s.d&8)!==0 -case 5:return(s.d&16)!==0 -case 4:return(s.d&32)!==0 -case 6:return(s.d&64)!==0 -case 7:case 8:return!1}}, -Qi(a){return B.ct}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.JR&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.zu.prototype={ -gagi(){var s=this -if(s.c)return new A.d0(s.a,t.hr) -if(s.b==null){s.b=new A.aI(new A.a4($.a5,t.X6),t.EZ) -s.tH()}return s.b.a}, -tH(){var s=0,r=A.S(t.H),q,p=this,o -var $async$tH=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=3 -return A.U(B.hD.jx("get",t.pE),$async$tH) -case 3:o=b -if(p.b==null){s=1 -break}p.Jb(o) -case 1:return A.Q(q,r)}}) -return A.R($async$tH,r)}, -Jb(a){var s,r=a==null -if(!r){s=J.ag(a,"enabled") -s.toString -A.pu(s)}else s=!1 -this.ad1(r?null:t.nc.a(J.ag(a,"data")),s)}, -ad1(a,b){var s,r,q=this,p=q.c&&b -q.d=p -if(p)$.bK.ch$.push(new A.a5z(q)) -s=q.a -if(b){p=q.a_9(a) -r=t.N -if(p==null){p=t.X -p=A.z(p,p)}r=new A.cO(p,q,null,"root",A.z(r,t.z4),A.z(r,t.I1)) -p=r}else p=null -q.a=p -q.c=!0 -r=q.b -if(r!=null)r.c3(0,p) -q.b=null -if(q.a!=s){q.ab() -if(s!=null)s.m(0)}}, -zG(a){return this.a4I(a)}, -a4I(a){var s=0,r=A.S(t.H),q=this,p -var $async$zG=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:p=a.a -switch(p){case"push":q.Jb(t.pE.a(a.b)) -break -default:throw A.c(A.c_(p+" was invoked but isn't implemented by "+A.C(q).i(0)))}return A.Q(null,r)}}) -return A.R($async$zG,r)}, -a_9(a){if(a==null)return null -return t.J1.a(B.am.fJ(A.kd(a.buffer,a.byteOffset,a.byteLength)))}, -QE(a){var s=this -s.r.E(0,a) -if(!s.f){s.f=!0 -$.bK.ch$.push(new A.a5A(s))}}, -Hk(){var s,r,q,p,o,n=this -if(!n.f)return -n.f=!1 -for(s=n.r,r=A.ir(s,s.r),q=A.n(r).c;r.t();){p=r.d;(p==null?q.a(p):p).w=!1}s.aG(0) -o=B.am.ca(n.a.a) -B.hD.cA("put",A.cX(o.buffer,o.byteOffset,o.byteLength),t.H)}, -Ni(){if($.bK.cx$)return -this.Hk()}} -A.a5z.prototype={ -$1(a){this.a.d=!1}, -$S:2} -A.a5A.prototype={ -$1(a){return this.a.Hk()}, -$S:2} -A.cO.prototype={ -gpm(){var s=J.EV(this.a,"c",new A.a5w()) -s.toString -return t.pE.a(s)}, -gk9(){var s=J.EV(this.a,"v",new A.a5x()) -s.toString -return t.pE.a(s)}, -afU(a,b,c){var s=this,r=J.eD(s.gk9(),b),q=c.j("0?").a(J.l7(s.gk9(),b)) -if(J.hy(s.gk9()))J.l7(s.a,"v") -if(r)s.mQ() -return q}, -aa9(a,b){var s,r,q,p,o=this,n=o.f -if(n.ap(0,a)||!J.eD(o.gpm(),a)){n=t.N -s=new A.cO(A.z(n,t.X),null,null,a,A.z(n,t.z4),A.z(n,t.I1)) -o.hf(s) -return s}r=t.N -q=o.c -p=J.ag(o.gpm(),a) -p.toString -s=new A.cO(t.pE.a(p),q,o,a,A.z(r,t.z4),A.z(r,t.I1)) -n.n(0,a,s) -return s}, -hf(a){var s=this,r=a.d -if(r!==s){if(r!=null)r.u5(a) -a.d=s -s.G6(a) -if(a.c!=s.c)s.Jn(a)}}, -a_C(a){this.u5(a) -a.d=null -if(a.c!=null){a.A1(null) -a.Lf(this.gJm())}}, -mQ(){var s,r=this -if(!r.w){r.w=!0 -s=r.c -if(s!=null)s.QE(r)}}, -Jn(a){a.A1(this.c) -a.Lf(this.gJm())}, -A1(a){var s=this,r=s.c -if(r==a)return -if(s.w)if(r!=null)r.r.B(0,s) -s.c=a -if(s.w&&a!=null){s.w=!1 -s.mQ()}}, -u5(a){var s,r,q,p=this -if(J.f(p.f.B(0,a.e),a)){J.l7(p.gpm(),a.e) -s=p.r -r=s.h(0,a.e) -if(r!=null){q=J.bO(r) -p.HF(q.eX(r)) -if(q.gS(r))s.B(0,a.e)}if(J.hy(p.gpm()))J.l7(p.a,"c") -p.mQ() -return}s=p.r -q=s.h(0,a.e) -if(q!=null)J.l7(q,a) -q=s.h(0,a.e) -q=q==null?null:J.hy(q) -if(q===!0)s.B(0,a.e)}, -G6(a){var s=this -if(s.f.ap(0,a.e)){J.fN(s.r.bs(0,a.e,new A.a5v()),a) -s.mQ() -return}s.HF(a) -s.mQ()}, -HF(a){this.f.n(0,a.e,a) -J.cR(this.gpm(),a.e,a.a)}, -Lg(a,b){var s,r,q=this.f -q=q.gb2(q) -s=this.r -s=s.gb2(s) -r=q.acu(0,new A.hH(s,new A.a5y(),A.n(s).j("hH"))) -J.eE(b?A.ap(r,!1,A.n(r).j("p.E")):r,a)}, -Lf(a){return this.Lg(a,!1)}, -ag_(a){var s,r=this -if(a===r.e)return -s=r.d -if(s!=null)s.u5(r) -r.e=a -s=r.d -if(s!=null)s.G6(r)}, -m(a){var s,r=this -r.Lg(r.ga_B(),!0) -r.f.aG(0) -r.r.aG(0) -s=r.d -if(s!=null)s.u5(r) -r.d=null -r.A1(null) -r.x=!0}, -i(a){return"RestorationBucket(restorationId: "+this.e+", owner: "+A.e(this.b)+")"}} -A.a5w.prototype={ -$0(){var s=t.X -return A.z(s,s)}, -$S:128} -A.a5x.prototype={ -$0(){var s=t.X -return A.z(s,s)}, -$S:128} -A.a5v.prototype={ -$0(){return A.b([],t.QT)}, -$S:332} -A.a5y.prototype={ -$1(a){return a}, -$S:333} -A.UB.prototype={} -A.ml.prototype={ -Kt(){var s,r,q,p=this,o=null,n=p.a -n=n==null?o:n.a -s=p.f -s=s==null?o:"Brightness."+s.b -r=p.r -r=r==null?o:"Brightness."+r.b -q=p.c -q=q==null?o:"Brightness."+q.b -return A.aB(["systemNavigationBarColor",n,"systemNavigationBarDividerColor",null,"systemStatusBarContrastEnforced",p.w,"statusBarColor",null,"statusBarBrightness",s,"statusBarIconBrightness",r,"systemNavigationBarIconBrightness",q,"systemNavigationBarContrastEnforced",p.d],t.N,t.z)}, -i(a){return"SystemUiOverlayStyle("+this.Kt().i(0)+")"}, -gv(a){var s=this -return A.a3(s.a,s.b,s.d,s.e,s.f,s.r,s.w,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a,b){var s,r=this -if(b==null)return!1 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.ml)if(J.f(b.a,r.a))if(b.r==r.r)if(b.f==r.f)s=b.c==r.c -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.a98.prototype={ -$0(){if(!J.f($.tn,$.al9)){B.bh.cA("SystemChrome.setSystemUIOverlayStyle",$.tn.Kt(),t.H) -$.al9=$.tn}$.tn=null}, -$S:0} -A.Aj.prototype={ -i(a){return"SystemSoundType."+this.b}} -A.ea.prototype={ -gpM(){var s,r=this -if(!r.gbv()||r.c===r.d)s=r.e -else s=r.c=n&&o<=p.b)return p -s=p.c -r=p.d -q=s<=r -if(o<=n){if(b)return p.pZ(a.b,p.b,o) -n=q?o:s -return p.pY(n,q?r:o)}if(b)return p.pZ(a.b,n,o) -n=q?s:o -return p.pY(n,q?o:r)}, -jo(a){if(this.gdd().k(0,a))return this -return this.Md(a.b,a.a)}} -A.mn.prototype={} -A.LI.prototype={} -A.LH.prototype={} -A.LJ.prototype={} -A.tu.prototype={} -A.xX.prototype={ -i(a){return"MaxLengthEnforcement."+this.b}} -A.oQ.prototype={} -A.Pc.prototype={} -A.agv.prototype={} -A.Hc.prototype={ -acA(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=b.b -h=h.gbv()?new A.Pc(h.c,h.d):i -s=b.c -s=s.gbv()&&s.a!==s.b?new A.Pc(s.a,s.b):i -r=new A.agv(b,new A.by(""),h,s) -s=b.a -q=B.b.n5(j.a,s) -for(h=new A.Rm(q.a,q.b,q.c),p=i;h.t();p=o){o=h.d -o.toString -n=p==null?i:p.a+p.c.length -if(n==null)n=0 -m=o.a -j.zT(!1,n,m,r) -j.zT(!0,m,m+o.c.length,r)}h=p==null?i:p.a+p.c.length -if(h==null)h=0 -j.zT(!1,h,s.length,r) -s=r.e=!0 -l=r.c -k=r.d -h=r.b.a -s=(k!=null?k.a===k.b:s)?B.bo:new A.cx(k.a,k.b) -if(l==null)o=B.lu -else{o=r.a.b -o=A.cj(o.e,l.a,l.b,o.f)}return new A.dB(h.charCodeAt(0)==0?h:h,o,s)}, -zT(a,b,c,d){var s,r,q,p -if(a)s=b===c?"":this.c -else s=B.b.N(d.a.a,b,c) -d.b.a+=s -if(s.length===c-b)return -r=new A.YU(b,c,s) -q=d.c -p=q==null -if(!p)q.a=q.a+r.$1(d.a.b.c) -if(!p)q.b=q.b+r.$1(d.a.b.d) -q=d.d -p=q==null -if(!p)q.a=q.a+r.$1(d.a.c.a) -if(!p)q.b=q.b+r.$1(d.a.c.b)}} -A.YU.prototype={ -$1(a){var s=this,r=s.a,q=a<=r&&a>") -r=A.ap(new A.az(a,new A.a9u(),r),!0,r.j("bl.E")) -A.a(s.a,"_channel").cA("TextInput.setSelectionRects",r,t.H)}}, -xd(a,b,c,d,e,f){var s=$.ei(),r=d==null?null:d.a -r=A.aB(["fontFamily",b,"fontSize",c,"fontWeightIndex",r,"textAlignIndex",e.a,"textDirectionIndex",f.a],t.N,t.z) -A.a(s.a,"_channel").cA("TextInput.setStyle",r,t.H)}} -A.a9u.prototype={ -$1(a){var s=a.b,r=s.a,q=s.b -return A.b([r,q,s.c-r,s.d-q,a.a],t.a0)}, -$S:334} -A.LN.prototype={ -y8(a,b){A.a(this.a,"_channel").cA("TextInput.setClient",[a.f,b.i0()],t.H) -this.b=a -this.c=b}, -gZl(){return A.a(this.a,"_channel")}, -zi(a){return this.a3G(a)}, -a3G(b1){var s=0,r=A.S(t.z),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0 -var $async$zi=A.T(function(b2,b3){if(b2===1)return A.P(b3,r) -while(true)switch(s){case 0:b0=b1.a -if(b0==="TextInputClient.focusElement"){o=t.j.a(b1.b) -n=J.ax(o) -m=p.d.h(0,n.h(o,0)) -if(m!=null){l=A.ahy(n.h(o,1)) -n=A.ahy(n.h(o,2)) -m.a.d.jI() -k=m.gDO() -if(k!=null)k.l5(B.eI,new A.m(l,n)) -m.a.agX()}s=1 -break}else if(b0==="TextInputClient.requestElementsInRect"){n=J.pM(t.j.a(b1.b),t.Jy) -m=A.n(n).j("az") -l=p.d -k=A.n(l).j("b3<1>") -j=k.j("d3>") -q=A.ap(new A.d3(new A.au(new A.b3(l,k),new A.a9H(p,A.ap(new A.az(n,new A.a9I(),m),!0,m.j("bl.E"))),k.j("au")),new A.a9J(p),j),!0,j.j("p.E")) -s=1 -break}else if(b0==="TextInputClient.scribbleInteractionBegan"){p.e=!0 -s=1 -break}else if(b0==="TextInputClient.scribbleInteractionFinished"){p.e=!1 -s=1 -break}n=p.b -if(n==null){s=1 -break}if(b0==="TextInputClient.requestExistingInputState"){p.y8(n,A.a(p.c,"_currentConfiguration")) -n=p.b.r.a.c.a -m=A.a(p.a,"_channel") -m.cA("TextInput.setEditingState",n.rq(),t.H) -s=1 -break}o=t.j.a(b1.b) -if(b0===u.l){n=t.a -i=n.a(J.ag(o,1)) -for(m=J.j(i),l=J.av(m.gba(i));l.t();)A.ar5(n.a(m.h(i,l.gH(l)))) -s=1 -break}n=J.ax(o) -h=A.eg(n.h(o,0)) -m=p.b -if(h!==m.f){s=1 -break}switch(b0){case"TextInputClient.updateEditingState":m.r.agV(A.ar5(t.a.a(n.h(o,1)))) -break -case u.s:g=A.b([],t.sD) -m=t.a -for(n=J.av(J.ag(m.a(n.h(o,1)),"deltas"));n.t();)g.push(A.aDL(m.a(n.gH(n)))) -t.Je.a(p.b.r).ahL(g) -break -case"TextInputClient.performAction":m=m.r -f=A.aGQ(A.bk(n.h(o,1))) -switch(f.a){case 12:if(m.a.id===1)m.ty(f,!0) -break -case 2:case 3:case 6:case 7:case 4:case 5:m.ty(f,!0) -break -case 8:case 11:case 9:case 0:case 10:case 1:m.ty(f,!1) -break}break -case"TextInputClient.performPrivateCommand":m=t.a -e=m.a(n.h(o,1)) -n=p.b.r -l=J.ax(e) -k=A.bk(l.h(e,"action")) -l=m.a(l.h(e,"data")) -n.a.RG.$2(k,l) -break -case"TextInputClient.updateFloatingCursor":m=m.r -l=A.aGP(A.bk(n.h(o,1))) -n=t.a.a(n.h(o,2)) -if(l===B.fL){k=J.ax(n) -d=new A.m(A.pw(k.h(n,"X")),A.pw(k.h(n,"Y")))}else d=B.j -n=m.CW -if(n==null){n=A.bo(null,null,null,null,m) -n.cf() -k=n.bj$ -k.b=!0 -k.a.push(m.ga4Y()) -m.CW=n}switch(l.a){case 0:k=n.r -if(k!=null&&k.a!=null){n.ex(0) -m.IZ()}m.dy=d -n=m.r -k=$.F.D$.z.h(0,n).gF() -k.toString -j=t.E -c=new A.b9(j.a(k).aK.c,B.l) -k=$.F.D$.z.h(0,n).gF() -k.toString -k=j.a(k).oo(c) -m.db=k -k=k.gaT() -b=$.F.D$.z.h(0,n).gF() -b.toString -m.fr=k.a9(0,new A.m(0,j.a(b).al.gdz()/2)) -m.dx=c -n=$.F.D$.z.h(0,n).gF() -n.toString -j.a(n) -j=m.fr -j.toString -m=m.dx -m.toString -n.x9(l,j,m) -break -case 1:n=m.dy -n.toString -a=d.a9(0,n) -n=m.db.gaT().Z(0,a) -k=m.r -j=$.F.D$.z.h(0,k).gF() -j.toString -b=t.E -a0=n.a9(0,new A.m(0,b.a(j).al.gdz()/2)) -j=$.F.D$.z.h(0,k).gF() -j.toString -b.a(j) -n=j.al -a1=n.a -a2=Math.ceil(a1.gbk(a1))-n.gdz()+5 -a3=n.gaQ(n)+4 -n=j.U -a4=n!=null?a0.a9(0,n):B.j -if(j.bV&&a4.a>0){j.bz=new A.m(a0.a- -4,j.bz.b) -j.bV=!1}else if(j.bP&&a4.a<0){j.bz=new A.m(a0.a-a3,j.bz.b) -j.bP=!1}if(j.aw&&a4.b>0){j.bz=new A.m(j.bz.a,a0.b- -4) -j.aw=!1}else if(j.eh&&a4.b<0){j.bz=new A.m(j.bz.a,a0.b-a2) -j.eh=!1}n=j.bz -a5=a0.a-n.a -a6=a0.b-n.b -a7=Math.min(Math.max(a5,-4),a3) -a8=Math.min(Math.max(a6,-4),a2) -if(a5<-4&&a4.a<0)j.bV=!0 -else if(a5>a3&&a4.a>0)j.bP=!0 -if(a6<-4&&a4.b<0)j.aw=!0 -else if(a6>a2&&a4.b>0)j.eh=!0 -j.U=a0 -m.fr=new A.m(a7,a8) -n=$.F.D$.z.h(0,k).gF() -n.toString -b.a(n) -j=$.F.D$.z.h(0,k).gF() -j.toString -b.a(j) -a1=m.fr -a1.toString -a9=$.F.D$.z.h(0,k).gF() -a9.toString -a9=a1.Z(0,new A.m(0,b.a(a9).al.gdz()/2)) -m.dx=n.l1(A.ha(j.dj(0,null),a9)) -k=$.F.D$.z.h(0,k).gF() -k.toString -b.a(k) -b=m.fr -b.toString -m=m.dx -m.toString -k.x9(l,b,m) -break -case 2:if(m.dx!=null&&m.fr!=null){n.sl(0,0) -n=m.CW -n.z=B.X -n.h_(1,B.dN,B.AW)}break}break -case"TextInputClient.onConnectionClosed":n=m.r -if(n.gh6()){n.x.toString -n.cy=n.x=$.ei().b=null -n.ty(B.lt,!0)}break -case"TextInputClient.showAutocorrectionPromptRect":m.r.Re(A.eg(n.h(o,1)),A.eg(n.h(o,2))) -break -case"TextInputClient.showToolbar":m.r.mB() -break -case"TextInputClient.insertTextPlaceholder":m.r.adD(new A.L(A.ahy(n.h(o,1)),A.ahy(n.h(o,2)))) -break -case"TextInputClient.removeTextPlaceholder":m.r.Pb() -break -default:throw A.c(A.apQ(null))}case 1:return A.Q(q,r)}}) -return A.R($async$zi,r)}, -a6R(){if(this.f)return -this.f=!0 -A.fk(new A.a9K(this))}, -GN(){A.a(this.a,"_channel").jx("TextInput.clearClient",t.H) -this.b=null -this.a6R()}} -A.a9I.prototype={ -$1(a){return a}, -$S:336} -A.a9H.prototype={ -$1(a){var s,r,q,p=this.b,o=p[0],n=p[1],m=p[2] -p=p[3] -s=this.a.d -r=s.h(0,a) -p=r==null?null:r.adP(new A.w(o,n,o+m,n+p)) -if(p!==!0)return!1 -p=s.h(0,a) -q=p==null?null:p.gjb(p) -if(q==null)q=B.F -if(!q.k(0,B.F)){p=q.a -p=isNaN(p)||isNaN(q.b)||isNaN(q.c)||isNaN(q.d)||p>=1/0||q.b>=1/0||q.c>=1/0||q.d>=1/0}else p=!0 -return!p}, -$S:19} -A.a9J.prototype={ -$1(a){var s,r,q=this.a.d.h(0,a),p=q.gjb(q) -q=[a] -s=p.a -r=p.b -B.c.P(q,[s,r,p.c-s,p.d-r]) -return q}, -$S:337} -A.a9K.prototype={ -$0(){var s=this.a -s.f=!1 -if(s.b==null)A.a(s.a,"_channel").jx("TextInput.hide",t.H)}, -$S:0} -A.ahY.prototype={ -$1(a){this.a.sdH(a) -return!1}, -$S:49} -A.aW.prototype={} -A.b_.prototype={ -ef(a){this.b=a}, -iD(a,b){return this.ghq()}, -ghq(){return!0}, -nh(a){return!0}, -AW(a){var s=this.a -s.b=!0 -s.a.push(a) -return null}, -wi(a){return this.a.B(0,a)}, -dU(a){return A.aEH(this,a,A.n(this).j("b_.T"))}} -A.cA.prototype={ -dU(a){return A.aEI(this,a,A.n(this).j("cA.T"))}} -A.c2.prototype={ -cM(a){return this.c.$1(a)}} -A.U9.prototype={ -NX(a,b,c){if(a instanceof A.cA)return a.d3(b,c) -else return a.cM(b)}} -A.mP.prototype={ -am(){return new A.AZ(A.aK(t.od),new A.D(),B.k)}} -A.Ua.prototype={ -$1(a){var s=a.f -s.toString -t.KU.a(s) -return!1}, -$S:65} -A.Ue.prototype={ -$1(a){var s,r=this,q=a.f -q.toString -s=A.ajU(t.KU.a(q),r.b,r.d) -if(s!=null){r.c.Fu(a,null) -r.a.a=s -return!0}return!1}, -$S:65} -A.Ub.prototype={ -$1(a){var s,r=a.f -r.toString -s=A.ajU(t.KU.a(r),this.b,this.c) -if(s!=null){this.a.a=s -return!0}return!1}, -$S:65} -A.Ud.prototype={ -$1(a){var s,r,q=this,p=a.f -p.toString -s=q.b -r=A.ajU(t.KU.a(p),s,q.d) -p=r!=null -if(p&&r.iD(0,s))q.a.a=A.aoh(a).NX(r,s,q.c) -return p}, -$S:65} -A.AZ.prototype={ -aB(){this.aS() -this.KF()}, -a18(a){this.a4(new A.aaH(this))}, -KF(){var s,r,q,p,o=this,n=o.a.d -n=n.gb2(n) -s=A.j1(n,A.n(n).j("p.E")) -r=o.d.ns(s) -n=o.d -n.toString -q=s.ns(n) -for(n=r.ga1(r),p=o.gI4();n.t();)n.gH(n).wi(p) -for(n=q.ga1(q);n.t();)n.gH(n).AW(p) -o.d=s}, -b4(a){this.bu(a) -this.KF()}, -m(a){var s,r,q,p,o=this -o.aR(0) -for(s=o.d,s=A.ir(s,s.r),r=o.gI4(),q=A.n(s).c;s.t();){p=s.d;(p==null?q.a(p):p).wi(r)}o.d=null}, -I(a,b){var s=this.a -return new A.AY(null,s.d,this.e,s.e,null)}} -A.aaH.prototype={ -$0(){this.a.e=new A.D()}, -$S:0} -A.AY.prototype={ -cZ(a){var s -if(this.w===a.w)s=!A.aje(a.r,this.r) -else s=!0 -return s}} -A.nw.prototype={ -am(){return new A.BF(new A.bC(null,t.A),B.k)}} -A.BF.prototype={ -aB(){this.aS() -$.bK.ch$.push(new A.acQ(this)) -$.F.D$.f.d.E(0,this.gIa())}, -m(a){$.F.D$.f.d.B(0,this.gIa()) -this.aR(0)}, -KS(a){this.tV(new A.acO(this))}, -a23(a){if(this.c==null)return -this.KS(a)}, -Yh(a){if(!this.e)this.tV(new A.acJ(this))}, -Yj(a){if(this.e)this.tV(new A.acK(this))}, -a2_(a){var s=this -if(s.f!==a){s.tV(new A.acI(s,a)) -s.a.toString}}, -IR(a,b){var s,r,q,p,o,n,m=this,l=new A.acN(m),k=new A.acM(m,new A.acL(m)) -if(a==null){s=m.a -s.toString -r=s}else r=a -q=l.$1(r) -p=k.$1(r) -if(b!=null)b.$0() -s=m.a -s.toString -o=l.$1(s) -s=m.a -s.toString -n=k.$1(s) -if(p!==n)m.a.y.$1(n) -if(q!==o)m.a.z.$1(o)}, -tV(a){return this.IR(null,a)}, -a4A(a){return this.IR(a,null)}, -b4(a){this.bu(a) -if(this.a.c!==a.c)$.bK.ch$.push(new A.acP(this,a))}, -gYf(){var s,r=this.c -r.toString -r=A.e4(r) -s=r==null?null:r.ax -switch((s==null?B.bB:s).a){case 0:return this.a.c -case 1:return!0}}, -I(a,b){var s,r,q,p=this,o=null,n=p.a,m=n.as -n=n.d -s=p.gYf() -r=p.a -q=A.o5(A.wO(!1,s,r.at,o,!0,!0,n,!0,o,p.ga1Z(),o,o,o),m,p.r,p.gYg(),p.gYi(),o) -n=r.c -if(n)m=r.w.a!==0 -else m=!1 -if(m)q=A.va(r.w,q) -if(n){n=r.x -n=n!=null&&n.gbZ(n)}else n=!1 -if(n){n=p.a.x -n.toString -q=new A.m9(n,q,o,o)}return q}} -A.acQ.prototype={ -$1(a){var s=$.F.D$.f.b -if(s==null)s=A.wQ() -this.a.KS(s)}, -$S:2} -A.acO.prototype={ -$0(){var s=$.F.D$.f.b -switch((s==null?A.wQ():s).a){case 0:this.a.d=!1 -break -case 1:this.a.d=!0 -break}}, -$S:0} -A.acJ.prototype={ -$0(){this.a.e=!0}, -$S:0} -A.acK.prototype={ -$0(){this.a.e=!1}, -$S:0} -A.acI.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.acN.prototype={ -$1(a){var s=this.a -return s.e&&a.c&&s.d}, -$S:88} -A.acL.prototype={ -$1(a){var s,r=this.a.c -r.toString -r=A.e4(r) -s=r==null?null:r.ax -switch((s==null?B.bB:s).a){case 0:return a.c -case 1:return!0}}, -$S:88} -A.acM.prototype={ -$1(a){var s=this.a -return s.f&&s.d&&this.b.$1(a)}, -$S:88} -A.acP.prototype={ -$1(a){this.a.a4A(this.b)}, -$S:2} -A.wl.prototype={ -nh(a){return this.c}, -cM(a){}} -A.pO.prototype={} -A.pY.prototype={} -A.fY.prototype={} -A.GN.prototype={} -A.op.prototype={} -A.JG.prototype={ -iD(a,b){var s,r,q,p,o,n=$.F.D$.f.f -if(n==null||n.e==null)return!1 -for(s=t.vz,r=0;r<2;++r){q=B.CL[r] -p=n.e -p.toString -o=A.ajW(p,q,s) -if(o!=null&&o.iD(0,q)){this.c=o -this.d=q -return!0}}return!1}, -cM(a){A.a(this.c,"_selectedAction").cM(A.a(this.d,"_selectedIntent"))}} -A.uy.prototype={ -IA(a,b,c){var s -a.ef(this.gks()) -s=A.n(this).j("cA<1>").b(a)?a.d3(b,c):a.cM(b) -a.ef(null) -return s}, -d3(a,b){var s=this,r=A.ajV(s.gqP(),A.n(s).c) -return r==null?s.NZ(a,s.b,b):s.IA(r,a,b)}, -cM(a){return this.d3(a,null)}, -ghq(){var s,r,q=this,p=A.ajW(q.gqP(),null,A.n(q).c) -if(p!=null){p.ef(q.gks()) -s=p.ghq() -p.ef(null) -r=s}else r=q.gks().ghq() -return r}, -iD(a,b){var s,r=this,q=A.ajV(r.gqP(),A.n(r).c),p=q==null -if(!p)q.ef(r.gks()) -s=(p?r.gks():q).iD(0,b) -if(!p)q.ef(null) -return s}, -nh(a){var s,r=this,q=A.ajV(r.gqP(),A.n(r).c),p=q==null -if(!p)q.ef(r.gks()) -s=(p?r.gks():q).nh(a) -if(!p)q.ef(null) -return s}} -A.Cy.prototype={ -NZ(a,b,c){var s=this.e -if(b==null)return s.cM(a) -else return s.cM(a)}, -gks(){return this.e}, -gqP(){return this.f}} -A.Cz.prototype={ -IA(a,b,c){var s,r -c.toString -s=this.$ti -a.ef(new A.Bh(c,this.e,new A.aM(A.b([],t.e),t._),s.j("Bh<1>"))) -r=s.j("cA<1>").b(a)?a.d3(b,c):a.cM(b) -a.ef(null) -return r}, -NZ(a,b,c){var s=this.e -if(b==null)return s.d3(a,c) -else return s.d3(a,c)}, -gks(){return this.e}, -gqP(){return this.f}} -A.Bh.prototype={ -ef(a){this.d.ef(a)}, -iD(a,b){return this.d.iD(0,b)}, -ghq(){return this.d.ghq()}, -nh(a){return this.d.nh(a)}, -AW(a){var s -this.RE(a) -s=this.d.a -s.b=!0 -s.a.push(a)}, -wi(a){this.RF(a) -this.d.a.B(0,a)}, -cM(a){return this.d.d3(a,this.c)}} -A.Mn.prototype={} -A.Mm.prototype={} -A.OB.prototype={} -A.Ei.prototype={ -ef(a){this.Fp(a) -this.e.ef(a)}} -A.Ej.prototype={ -ef(a){this.Fp(a) -this.e.ef(a)}} -A.vq.prototype={ -aJ(a){var s=new A.z7(this.e,!0,null,A.aj(),this.$ti.j("z7<1>")) -s.gar() -s.CW=!0 -s.sb_(null) -return s}, -aM(a,b){b.sl(0,this.e) -b.sRm(!0)}} -A.AV.prototype={ -am(){return new A.DU(B.k)}} -A.DU.prototype={ -ga3X(){var s,r -$.F.toString -s=$.aL() -if(s.gBK()!=="/"){$.F.toString -s=s.gBK()}else{r=this.a.at -if(r==null){$.F.toString -s=s.gBK()}else s=r}return s}, -aB(){var s=this -s.aS() -s.a8F() -$.F.toString -s.f=s.JB($.aL().a.f,s.a.fx) -$.F.au$.push(s)}, -b4(a){this.bu(a) -this.L2(a)}, -m(a){var s -B.c.B($.F.au$,this) -s=this.d -if(s!=null){if(s.y1$>0)B.c.B($.F.au$,s) -s.eL(0)}this.aR(0)}, -L2(a){var s,r=this -r.a.toString -if(r.gLe()){s=r.d -if(s!=null){if(s.y1$>0)B.c.B($.F.au$,s) -s.eL(0)}r.d=null -if(r.e!=null){r.a.toString -a.toString -s=!1}else s=!0 -if(s){r.a.toString -r.e=new A.ls(r,t.TX)}}else{r.e=null -s=r.d -if(s!=null){if(s.y1$>0)B.c.B($.F.au$,s) -s.eL(0)}r.d=null}}, -a8F(){return this.L2(null)}, -gLe(){var s=this.a -s=s.Q -s=s==null?null:s.a!==0 -if(s!==!0)s=!1 -else s=!0 -return s}, -a5_(a){var s,r=this,q=a.a -if(q==="/")r.a.toString -s=r.a.Q.h(0,q) -if(s!=null)return r.a.f.$1$2(a,s,t.z) -r.a.toString -return null}, -a5c(a){return this.a.as.$1(a)}, -v9(){var s=0,r=A.S(t.y),q,p=this,o,n -var $async$v9=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:p.a.toString -o=p.e -n=o==null?null:o.ga5() -if(n==null){q=!1 -s=1 -break}q=n.Oj() -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$v9,r)}, -qb(a){return this.abo(a)}, -abo(a){var s=0,r=A.S(t.y),q,p=this,o,n -var $async$qb=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:p.a.toString -o=p.e -n=o==null?null:o.ga5() -if(n==null){q=!1 -s=1 -break}n.OV(a,t.X) -q=!0 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$qb,r)}, -JB(a,b){this.a.toString -return A.aH7(a,b)}, -My(a){var s=this,r=s.JB(a,s.a.fx) -if(!r.k(0,s.f))s.a4(new A.ahi(s,r))}, -I(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=null,h={} -h.a=null -j.a.toString -if(j.gLe()){s=j.e -r=j.ga3X() -q=j.a -q=q.ax -q.toString -h.a=new A.yd(r,j.ga4Z(),j.ga5b(),q,"nav",A.aIm(),!0,s)}h.b=null -s=j.a -s.toString -p=new A.jL(new A.ahh(h,j),i) -h.b=p -p=h.b=A.jQ(p,i,i,B.bJ,!0,s.cx,i,i,B.aA) -s=$.aEc -if(s)o=new A.Jh(15,!1,!1,i) -else o=i -h=o!=null?h.b=A.oL(B.b7,A.b([p,A.Jy(i,o,i,i,0,0,0,i)],t.p),B.bl,i,i):p -s=j.a -r=s.ch -s=s.cy.a -s=A.ak(255,s>>>16&255,s>>>8&255,s&255) -q=j.f -q.toString -n=t.a9 -m=A.b([],n) -B.c.P(m,j.a.dx) -m.push(B.xF) -n=A.b(m.slice(0),n) -A.e4(b) -m=j.a -m=m.p2 -l=A.aEb() -k=$.av6() -h=A.va(k,new A.wR(new A.JT(A.z(t.l5,t.UJ)),new A.Cj(new A.xD(q,n,new A.LX(r,s,h,i),i),i),i)) -return new A.zx(new A.zS(new A.m9(l,new A.GI(A.aAw(),h,"",i),"",i),i),m,i)}} -A.ahi.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.ahh.prototype={ -$1(a){return this.b.a.ay.$2(a,this.a.a)}, -$S:22} -A.Th.prototype={} -A.vx.prototype={ -am(){return new A.B4(B.k)}} -A.B4.prototype={ -aB(){this.aS() -this.KJ()}, -b4(a){this.bu(a) -this.KJ()}, -KJ(){this.e=new A.cY(this.gYn(),this.a.c,null,t.Jc)}, -m(a){var s,r,q=this.d -if(q!=null)for(q=A.lE(q,q.r);q.t();){s=q.d -r=this.d.h(0,s) -r.toString -s.K(0,r)}this.aR(0)}, -Yo(a){var s,r=this,q=a.a,p=r.d -if(p==null)p=r.d=A.z(t.I_,t.T) -p.n(0,q,r.ZV(q)) -p=r.d.h(0,q) -p.toString -q.a2(0,p) -if(!r.f){r.f=!0 -s=r.HO() -if(s!=null)r.KZ(s) -else $.bK.ch$.push(new A.ab7(r))}return!1}, -HO(){var s={},r=this.c -r.toString -s.a=null -r.bb(new A.abc(s)) -return t.xO.a(s.a)}, -KZ(a){var s,r -this.c.toString -s=this.f -r=this.e -r.toString -a.Gj(t.Fw.a(A.aBI(r,s)))}, -ZV(a){return new A.abb(this,a)}, -I(a,b){var s=this.f,r=this.e -r.toString -return new A.xl(s,r,null)}} -A.ab7.prototype={ -$1(a){var s,r=this.a -if(r.c==null)return -s=r.HO() -s.toString -r.KZ(s)}, -$S:2} -A.abc.prototype={ -$1(a){this.a.a=a}, -$S:14} -A.abb.prototype={ -$0(){var s=this.a -s.d.B(0,this.b) -if(s.d.a===0)if($.bK.cy$.a<3)s.a4(new A.ab9(s)) -else{s.f=!1 -A.fk(new A.aba(s))}}, -$S:0} -A.ab9.prototype={ -$0(){this.a.f=!1}, -$S:0} -A.aba.prototype={ -$0(){var s=this.a -if(s.c!=null&&s.d.a===0)s.a4(new A.ab8(s))}, -$S:0} -A.ab8.prototype={ -$0(){}, -$S:0} -A.qZ.prototype={} -A.I0.prototype={} -A.iD.prototype={ -k0(){var s=new A.I0($.b4()) -this.cV$=s -this.c.dY(new A.qZ(s))}, -me(){var s,r=this -if(r.gjQ()){if(r.cV$==null)r.k0()}else{s=r.cV$ -if(s!=null){s.ab() -r.cV$=null}}}, -I(a,b){if(this.gjQ()&&this.cV$==null)this.k0() -return B.TB}} -A.Pk.prototype={ -I(a,b){throw A.c(A.Hh("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass."))}} -A.fX.prototype={ -cZ(a){return this.f!==a.f}} -A.IO.prototype={ -aJ(a){var s,r=this.e -r=new A.Kd(B.e.aI(B.e.G(r,0,1)*255),r,this.f,null,A.aj()) -r.gar() -s=r.gaE() -r.CW=s -r.sb_(null) -return r}, -aM(a,b){b.sdJ(0,this.e) -b.suD(this.f)}} -A.w8.prototype={ -aJ(a){var s=new A.za(this.e,this.f,this.r,!1,!1,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sr5(this.e) -b.sNm(this.f) -b.safr(this.r) -b.c6=b.aK=!1}, -qc(a){a.sr5(null) -a.sNm(null)}} -A.q5.prototype={ -aJ(a){var s=new A.K3(this.e,this.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sng(this.e) -b.sim(this.f)}, -qc(a){a.sng(null)}} -A.Ge.prototype={ -aJ(a){var s=new A.K2(this.e,null,B.dO,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sBi(0,this.e) -b.sim(B.dO) -b.sng(null)}} -A.Gc.prototype={ -aJ(a){var s=new A.K1(this.e,this.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sng(this.e) -b.sim(this.f)}, -qc(a){a.sng(null)}} -A.Jn.prototype={ -aJ(a){var s=this,r=new A.Ke(s.e,s.r,s.w,s.y,s.x,null,s.f,null,A.aj()) -r.gar() -r.gaE() -r.CW=!0 -r.sb_(null) -return r}, -aM(a,b){var s=this -b.sdQ(0,s.e) -b.sim(s.f) -b.sBi(0,s.r) -b.sfc(0,s.w) -b.sad(0,s.x) -b.sev(0,s.y)}} -A.Jo.prototype={ -aJ(a){var s=this,r=new A.Kf(s.r,s.x,s.w,s.e,s.f,null,A.aj()) -r.gar() -r.gaE() -r.CW=!0 -r.sb_(null) -return r}, -aM(a,b){var s=this -b.sng(s.e) -b.sim(s.f) -b.sfc(0,s.r) -b.sad(0,s.w) -b.sev(0,s.x)}} -A.tD.prototype={ -aJ(a){var s,r=this,q=A.en(a),p=new A.Ko(r.w,null,A.aj()) -p.gar() -s=p.gaE() -p.CW=s -p.sb_(null) -p.sce(0,r.e) -p.sj9(r.r) -p.sbx(0,q) -p.skz(r.x) -p.sr3(0,null) -return p}, -aM(a,b){var s=this -b.sce(0,s.e) -b.sr3(0,null) -b.sj9(s.r) -b.sbx(0,A.en(a)) -b.aK=s.w -b.skz(s.x)}} -A.nb.prototype={ -aJ(a){var s=new A.K9(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!0 -s.sb_(null) -return s}, -aM(a,b){b.sjz(this.e)}} -A.q7.prototype={ -aJ(a){var s=new A.K6(this.e,this.f,this.x,B.cf,B.cf,null,A.aj()) -s.gar() -s.gaE() -s.CW=!0 -s.sb_(null) -return s}, -aM(a,b){b.sjz(this.e) -b.sRk(this.f) -b.sbJ(0,this.x) -b.sae1(B.cf) -b.sacv(B.cf)}} -A.Ht.prototype={ -aJ(a){var s=new A.K7(this.e,this.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sagN(this.e) -b.a8=this.f}} -A.cq.prototype={ -aJ(a){var s=new A.zj(this.e,A.en(a),null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sdw(0,this.e) -b.sbx(0,A.en(a))}} -A.dr.prototype={ -aJ(a){var s=new A.Kh(this.f,this.r,this.e,A.en(a),null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sj9(this.e) -b.sah9(this.f) -b.sada(this.r) -b.sbx(0,A.en(a))}} -A.n6.prototype={} -A.w9.prototype={ -aJ(a){var s=new A.zb(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sBM(this.e)}} -A.xt.prototype={ -pJ(a){var s,r,q=a.e -q.toString -t.Wz.a(q) -s=this.f -if(q.e!==s){q.e=s -r=a.ga3(a) -if(r instanceof A.u)r.a0()}}} -A.ne.prototype={ -aJ(a){var s=new A.z9(this.e,0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.P(0,null) -return s}, -aM(a,b){b.sBM(this.e)}} -A.ks.prototype={ -aJ(a){return A.aqx(A.n1(this.f,this.e))}, -aM(a,b){b.sLA(A.n1(this.f,this.e))}, -cv(){var s,r=this,q=r.e -if(q===1/0&&r.f===1/0)s="SizedBox.expand" -else s=q===0&&r.f===0?"SizedBox.shrink":"SizedBox" -q=r.a -return q==null?s:s+"-"+q.i(0)}} -A.eZ.prototype={ -aJ(a){return A.aqx(this.e)}, -aM(a,b){b.sLA(this.e)}} -A.Ia.prototype={ -aJ(a){var s=new A.Ka(this.e,this.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.saej(0,this.e) -b.saeh(0,this.f)}} -A.yk.prototype={ -aJ(a){var s=new A.zi(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sw7(this.e)}, -c_(a){return new A.Pp(this,B.a7)}} -A.Pp.prototype={} -A.HT.prototype={ -aJ(a){var s=null,r=new A.zh(s,s,s,A.aj()) -r.gar() -r.gaE() -r.CW=!1 -r.sb_(s) -return r}, -aM(a,b){b.sRz(null) -b.sRy(null)}} -A.Lc.prototype={ -aJ(a){var s=a.L(t.I) -s.toString -s=new A.Kn(this.e,s.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){var s -b.sdw(0,this.e) -s=a.L(t.I) -s.toString -b.sbx(0,s.f)}} -A.A9.prototype={ -aJ(a){var s=A.en(a) -return A.aCZ(this.e,null,B.ai,this.r,s)}, -aM(a,b){var s -b.sj9(this.e) -s=A.en(a) -b.sbx(0,s) -s=this.r -if(b.q!==s){b.q=s -b.a0()}if(B.ai!==b.D){b.D=B.ai -b.aF() -b.ai()}}} -A.HP.prototype={ -aJ(a){var s=A.en(a) -s=new A.zg(this.z,this.e,s,B.bl,B.ai,A.aj(),0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.P(0,null) -return s}, -aM(a,b){var s=this.z -if(b.ky!==s){b.ky=s -b.a0()}b.sj9(this.e) -s=A.en(a) -b.sbx(0,s)}} -A.om.prototype={ -pJ(a){var s,r,q,p=this,o=a.e -o.toString -t.B.a(o) -s=p.f -if(o.w!=s){o.w=s -r=!0}else r=!1 -s=p.r -if(o.e!=s){o.e=s -r=!0}s=p.w -if(o.f!=s){o.f=s -r=!0}s=p.x -if(o.r!=s){o.r=s -r=!0}s=p.y -if(o.x!=s){o.x=s -r=!0}s=p.z -if(o.y!=s){o.y=s -r=!0}if(r){q=a.ga3(a) -if(q instanceof A.u)q.a0()}}} -A.Jz.prototype={ -I(a,b){var s,r,q=this,p=null,o=b.L(t.I) -o.toString -s=q.c -switch(o.f.a){case 0:r=p -break -case 1:r=s -s=p -break -default:s=p -r=s}return A.Jy(q.f,q.x,p,p,r,s,q.d,q.r)}} -A.He.prototype={ -ga4N(){switch(this.e.a){case 0:return!0 -case 1:var s=this.w -return s===B.aC||s===B.As}}, -Ep(a){var s=this.ga4N()?A.en(a):null -return s}, -aJ(a){var s=this,r=null,q=new A.zd(s.e,s.f,s.r,s.w,s.Ep(a),s.y,s.z,B.u,A.aj(),A.b7(4,A.LP(r,r,r,r,r,B.bm,B.q,r,1,B.aA),!1,t.mi),!0,0,r,r,A.aj()) -q.gar() -q.gaE() -q.CW=!1 -q.P(0,r) -return q}, -aM(a,b){var s=this,r=s.e -if(b.C!==r){b.C=r -b.a0()}r=s.f -if(b.M!==r){b.M=r -b.a0()}r=s.r -if(b.af!==r){b.af=r -b.a0()}r=s.w -if(b.a7!==r){b.a7=r -b.a0()}r=s.Ep(a) -if(b.q!=r){b.q=r -b.a0()}r=s.y -if(b.D!==r){b.D=r -b.a0()}if(B.u!==b.bA){b.bA=B.u -b.aF() -b.ai()}}} -A.Ku.prototype={} -A.Gm.prototype={} -A.wL.prototype={ -pJ(a){var s,r,q,p=a.e -p.toString -t.US.a(p) -s=this.f -if(p.e!==s){p.e=s -r=!0}else r=!1 -s=this.r -if(p.f!==s){p.f=s -r=!0}if(r){q=a.ga3(a) -if(q instanceof A.u)q.a0()}}} -A.H3.prototype={} -A.Kq.prototype={ -aJ(a){var s,r,q,p=this,o=null,n=p.e,m=p.r -if(m==null){m=a.L(t.I) -m.toString -m=m.f}s=p.x -r=A.If(a) -q=s===B.aL?"\u2026":o -s=new A.zk(A.LP(q,r,p.z,p.as,n,p.f,m,p.ax,p.y,p.at),p.w,s,0,o,o,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.P(0,o) -s.z_(n) -return s}, -aM(a,b){var s,r=this -b.sc7(0,r.e) -b.smc(0,r.f) -s=r.r -if(s==null){s=a.L(t.I) -s.toString -s=s.f}b.sbx(0,s) -b.sRo(r.w) -b.sDu(0,r.x) -b.skV(r.y) -b.snP(0,r.z) -b.sj1(0,r.as) -b.soh(r.at) -b.srp(0,r.ax) -s=A.If(a) -b.slY(0,s)}} -A.a5C.prototype={ -$1(a){var s,r=null -if(a instanceof A.kI){s=this.a.a++ -this.b.push(A.bq(r,a.e,!1,r,r,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,new A.lT(s,"PlaceholderSpanIndexSemanticsTag("+s+")"),r,r,r))}return!0}, -$S:38} -A.JQ.prototype={ -aJ(a){var s=this,r=s.d -r=r==null?null:r.dq(0) -r=new A.zf(r,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.CW,!1,null,!1,A.aj()) -r.gar() -r.gaE() -r.CW=!1 -r.a8x() -return r}, -aM(a,b){var s=this,r=s.d -b.seT(0,r==null?null:r.dq(0)) -b.a7=s.e -b.saQ(0,s.f) -b.sbk(0,s.r) -b.sQA(0,s.w) -b.sad(0,s.x) -b.sdJ(0,s.y) -b.saak(s.Q) -b.sacn(s.as) -b.sj9(s.at) -b.sag2(0,s.ax) -b.sa9Z(s.ay) -b.saef(!1) -b.sbx(0,null) -b.svM(s.CW) -b.sqI(!1) -b.skz(s.z)}, -qc(a){a.seT(0,null)}} -A.Ic.prototype={ -aJ(a){var s=this,r=null,q=new A.Kg(s.e,r,s.r,r,s.x,s.y,s.z,r,A.aj()) -q.gar() -q.gaE() -q.CW=!1 -q.sb_(r) -return q}, -aM(a,b){var s=this -b.cU=s.e -b.ds=null -b.cq=s.r -b.d1=null -b.cn=s.x -b.e_=s.y -b.u=s.z}} -A.It.prototype={ -aJ(a){var s=this,r=new A.Kc(!0,s.e,s.f,s.r,s.w,B.ao,null,A.aj()) -r.gar() -r.gaE() -r.CW=!1 -r.sb_(null) -return r}, -aM(a,b){var s,r=this -b.ds=r.e -b.cq=r.f -b.d1=r.r -s=r.w -if(!b.cn.k(0,s)){b.cn=s -b.aF()}if(b.u!==B.ao){b.u=B.ao -b.aF()}}} -A.hh.prototype={ -aJ(a){var s=new A.Kj(null,A.aj()) -s.gar() -s.CW=!0 -s.sb_(null) -return s}} -A.hN.prototype={ -aJ(a){var s=new A.ze(this.e,this.f,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sNK(this.e) -b.sCJ(this.f)}} -A.EW.prototype={ -aJ(a){var s=new A.z5(!1,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sLo(!1) -b.sCJ(null)}} -A.rJ.prototype={ -gHu(){var s=this.e.fr -s=s==null?null:new A.bQ(s,B.S) -return s}, -gHv(){var s=this.e.fy -s=s==null?null:new A.bQ(s,B.S) -return s}, -gHt(){return null}, -gHr(){return null}, -gHs(){return null}, -aJ(a){var s=this,r=null,q=s.e -q=new A.zn(s.f,s.r,!1,q.b,q.a,q.d,q.e,q.x,q.y,q.f,q.r,q.w,q.z,q.Q,q.as,q.at,q.ay,q.ch,q.CW,q.cx,q.ax,q.cy,q.db,q.dx,q.dy,q.c,s.gHu(),s.gHv(),s.gHt(),s.gHr(),s.gHs(),q.p1,s.I_(a),q.p3,q.p4,q.R8,q.a7,q.RG,q.rx,q.ry,q.to,q.x1,q.x2,q.xr,q.y1,q.y2,q.ao,q.a6,q.aq,r,r,q.bQ,q.C,q.M,q.af,q.q,r,A.aj()) -q.gar() -q.gaE() -q.CW=!1 -q.sb_(r) -return q}, -I_(a){var s,r=this.e,q=r.p2 -if(q!=null)return q -s=r.fr!=null||r.fy!=null||!1 -if(!s)return null -return A.en(a)}, -aM(a,b){var s,r,q=this -b.saav(q.f) -b.sac2(q.r) -b.sabZ(!1) -s=q.e -b.swY(s.CW) -b.sku(0,s.a) -b.sBp(0,s.b) -b.sE_(s.c) -b.sx0(0,s.d) -b.sBk(0,s.e) -b.sxi(s.x) -b.sD1(s.y) -b.sjz(s.f) -b.sCE(s.r) -b.sDR(s.w) -b.srg(0,s.z) -b.sCp(s.Q) -b.sCq(0,s.as) -b.sCK(s.at) -b.sm0(s.ay) -b.sDg(0,s.ch) -b.sCG(0,s.ax) -b.seT(0,s.cy) -b.sD4(s.db) -b.sqR(s.dx) -b.snm(s.dy) -b.sa9B(q.gHu()) -b.sa9C(q.gHv()) -b.sa9A(q.gHt()) -b.sa9y(q.gHr()) -b.sa9z(q.gHs()) -b.sadh(s.p1) -b.sDi(s.cx) -b.sbx(0,q.I_(a)) -b.sxj(s.p3) -b.sagr(s.p4) -b.siL(s.R8) -b.sjD(s.RG) -b.so1(s.rx) -b.so2(s.ry) -b.so3(s.to) -b.so0(s.x1) -b.snV(s.x2) -b.snU(s.a7) -b.snS(s.xr) -b.snQ(0,s.y1) -b.snR(0,s.y2) -b.so_(0,s.ao) -r=s.a6 -b.snY(r) -b.snW(r) -b.snZ(null) -b.snX(null) -b.so4(s.bQ) -b.so5(s.C) -b.snT(s.M) -b.sr0(s.af) -b.sab7(s.q)}} -A.Il.prototype={ -aJ(a){var s=new A.Kb(null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}} -A.Fm.prototype={ -aJ(a){var s=new A.K0(!0,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sa9J(!0)}} -A.lp.prototype={ -aJ(a){var s=new A.K5(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sac_(this.e)}} -A.HO.prototype={ -aJ(a){var s=new A.K8(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){b.sady(0,this.e)}} -A.xq.prototype={ -I(a,b){return this.c}} -A.jL.prototype={ -I(a,b){return this.c.$1(b)}} -A.lg.prototype={ -aJ(a){var s=new A.CH(this.e,B.ao,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){t.yE.a(b).sad(0,this.e)}} -A.CH.prototype={ -sad(a,b){if(b.k(0,this.cU))return -this.cU=b -this.aF()}, -aH(a,b){var s,r,q,p,o,n=this,m=n.k1 -if(m.a>0&&m.b>0){m=a.gc2(a) -s=n.k1 -r=b.a -q=b.b -p=s.a -s=s.b -o=$.aJ()?A.aT():new A.aO(new A.aQ()) -o.sad(0,n.cU) -m.c9(0,new A.w(r,q,r+p,q+s),o)}m=n.q$ -if(m!=null)a.df(m,b)}} -A.ahk.prototype={ -$0(){var s,r,q=this,p=q.b -if(p==null||t.n2.b(q.c)){p=A.a(q.a.ry$,"_pipelineOwner").d -p.toString -s=q.c -s=s.gbS(s) -r=A.azU() -p.bD(r,s) -p=r}return p}, -$S:346} -A.ahl.prototype={ -$1(a){var s=a==null?t.K.a(a):a -return this.a.kC(s)}, -$S:347} -A.ho.prototype={ -v9(){return A.cU(!1,t.y)}, -qb(a){return A.cU(!1,t.y)}, -abp(a){var s=a.a -s.toString -return this.qb(s)}, -BQ(){}, -MA(){}, -Mz(){}, -My(a){}} -A.AW.prototype={ -acN(){this.abt($.aL().a.f)}, -abt(a){var s,r,q -for(s=this.au$,r=s.length,q=0;q"))}, -aJ(a){return this.d}, -aM(a,b){}, -a9x(a,b){var s,r={} -r.a=b -if(b==null){a.Od(new A.a50(r,this,a)) -s=r.a -s.toString -a.pN(s,new A.a51(r))}else{b.af=this -b.fh()}r=r.a -r.toString -return r}, -cv(){return this.e}} -A.a50.prototype={ -$0(){var s=this.b,r=A.aCW(s,s.$ti.c) -this.a.a=r -r.r=this.c}, -$S:0} -A.a51.prototype={ -$0(){var s=this.a.a -s.toString -s.FR(null,null) -s.u4()}, -$S:0} -A.m1.prototype={ -bb(a){var s=this.M -if(s!=null)a.$1(s)}, -ix(a){this.M=null -this.jU(a)}, -fj(a,b){this.FR(a,b) -this.u4()}, -bc(a,b){this.lf(0,b) -this.u4()}, -iN(){var s=this,r=s.af -if(r!=null){s.af=null -s.lf(0,s.$ti.j("or<1>").a(r)) -s.u4()}s.xK()}, -u4(){var s,r,q,p,o,n,m,l=this -try{o=l.M -n=l.f -n.toString -l.M=l.dN(o,l.$ti.j("or<1>").a(n).c,B.fk)}catch(m){s=A.ab(m) -r=A.aA(m) -o=A.bi("attaching to the render tree") -q=new A.bs(s,r,"widgets library",o,null,!1) -A.cS(q) -p=A.wE(q) -l.M=l.dN(null,p,B.fk)}}, -gF(){return this.$ti.j("aD<1>").a(A.bm.prototype.gF.call(this))}, -iC(a,b){var s=this.$ti -s.j("aD<1>").a(A.bm.prototype.gF.call(this)).sb_(s.c.a(a))}, -iK(a,b,c){}, -iQ(a,b){this.$ti.j("aD<1>").a(A.bm.prototype.gF.call(this)).sb_(null)}} -A.Mh.prototype={$ia9:1} -A.DV.prototype={ -fQ(){this.RI() -$.eH=this -var s=$.aL() -s.Q=this.ga2K() -s.as=$.a5}, -E6(){this.RK() -this.z2()}} -A.DW.prototype={ -fQ(){this.UX() -$.bK=this}, -jw(){this.RJ()}} -A.DX.prototype={ -fQ(){var s,r,q=this,p="_keyboard",o="_keyEventManager" -q.UZ() -$.e7=q -A.c9(q.bQ$,"_defaultBinaryMessenger") -q.bQ$=B.xx -s=new A.zu(A.aK(t.z4),$.b4()) -B.hD.mv(s.ga4H()) -q.C$=s -s=new A.a_e(A.z(t.v3,t.bd),A.aK(t.SQ),A.b([],t.sA)) -A.c9(q.b5$,p) -q.b5$=s -s=new A.I1(A.a(s,p),$.ajC(),A.b([],t.K0)) -A.c9(q.cW$,o) -q.cW$=s -r=$.aL() -r.at=A.a(s,o).gacJ() -r.ax=$.a5 -B.wi.xa(A.a(q.cW$,o).gad0()) -s=$.apF -if(s==null)s=$.apF=A.b([],t.iL) -s.push(q.gYt()) -B.wk.xa(new A.ahl(q)) -B.wj.xa(q.ga2f()) -B.bh.mv(q.ga2I()) -q.afF()}, -jw(){this.V_()}} -A.DY.prototype={ -fQ(){this.V0() -$.fa=this -var s=t.K -this.kx$=new A.a07(A.z(s,t.Sc),A.z(s,t.B6),A.z(s,t.pt))}, -qB(){this.TQ() -A.a(this.kx$,"_imageCache").aG(0)}, -kC(a){return this.ad3(a)}, -ad3(a){var s=0,r=A.S(t.H),q,p=this -var $async$kC=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=3 -return A.U(p.TR(a),$async$kC) -case 3:switch(A.bk(J.ag(t.a.a(a),"type"))){case"fontsChange":p.eQ$.ab() -break}s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$kC,r)}} -A.DZ.prototype={ -fQ(){this.V3() -$.zP=this -this.qo$=$.aL().a.a}} -A.E_.prototype={ -fQ(){var s,r,q,p,o=this,n="_pipelineOwner" -o.V4() -$.m3=o -s=t.TT -o.ry$=new A.Js(o.gabU(),o.ga3j(),o.ga3l(),A.b([],s),A.b([],s),A.b([],s),A.aK(t.d)) -s=$.aL() -s.f=o.gacR() -r=s.r=$.a5 -s.fy=o.gad5() -s.go=r -s.k2=o.gacU() -s.k3=r -s.p1=o.ga3h() -s.p2=r -s.p3=o.ga3f() -s.p4=r -r=new A.zq(B.o,o.Mm(),$.bW(),null,A.aj()) -r.gar() -r.CW=!0 -r.sb_(null) -A.a(o.ry$,n).sagj(r) -r=A.a(o.ry$,n).d -r.Q=r -q=t.O -q.a(A.H.prototype.gcc.call(r)).e.push(r) -p=r.KV() -r.ay.saL(0,p) -q.a(A.H.prototype.gcc.call(r)).x.push(r) -o.R3(s.a.c) -o.ay$.push(o.ga2G()) -s=o.rx$ -if(s!=null){s.y2$=$.b4() -s.y1$=0}s=t.S -r=$.b4() -o.rx$=new A.Iu(new A.a2c(B.eK,A.z(s,t.ZA)),A.z(s,t.xg),r) -o.ch$.push(o.ga3K())}, -jw(){this.V1()}, -C_(a,b,c){this.rx$.ah0(b,new A.ahk(this,c,b)) -this.Sy(0,b,c)}} -A.E0.prototype={ -jw(){this.V6()}, -Cx(){var s,r,q -this.Tn() -for(s=this.au$,r=s.length,q=0;q=s.b&&s.c>=s.d) -else s=!0}else s=!1 -if(s)o=A.aBN(new A.eZ(B.mc,p,p),0,0) -else{s=q.d -if(s!=null)o=new A.dr(s,p,p,o,p)}r=q.ga5e() -if(r!=null)o=new A.cq(r,o,p) -s=q.f -if(s!=null)o=new A.lg(s,o,p) -s=q.r -if(s!=null)o=A.aoK(o,s,B.fx) -s=q.x -if(s!=null)o=new A.eZ(s,o,p) -s=q.y -if(s!=null)o=new A.cq(s,o,p) -o.toString -return o}} -A.GI.prototype={} -A.fp.prototype={ -i(a){return"DismissDirection."+this.b}} -A.wi.prototype={ -am(){return new A.Bl(null,null,null,B.k)}} -A.u5.prototype={ -i(a){return"_FlingGestureKind."+this.b}} -A.Bl.prototype={ -aB(){var s,r,q=this -q.Vc() -q.a.toString -s=A.bo(null,B.D,null,null,q) -s.c1(q.ga1w()) -s.cf() -r=s.bj$ -r.b=!0 -r.a.push(q.ga1y()) -q.d=s -q.AE()}, -gjQ(){var s=this.d -if(s==null)s=null -else{s=s.r -s=s!=null&&s.a!=null}if(s!==!0){s=this.f -if(s==null)s=null -else{s=s.r -s=s!=null&&s.a!=null}s=s===!0}else s=!0 -return s}, -m(a){var s -this.d.m(0) -s=this.f -if(s!=null)s.m(0) -this.Vb(0)}, -gh5(){var s=this.a.x -return s===B.AP||s===B.fz||s===B.fA}, -lm(a){var s -if(a===0)return B.mS -if(this.gh5()){s=this.c.L(t.I) -s.toString -switch(s.f.a){case 0:return a<0?B.fA:B.fz -case 1:return a>0?B.fA:B.fz}}return a>0?B.mR:B.AQ}, -gJ0(){var s=this.c -s=s.gjT(s) -s.toString -return this.gh5()?s.a:s.b}, -a_k(a){var s,r,q=this -if(q.x)return -q.y=!0 -s=q.d -r=s.r -if(r!=null&&r.a!=null){q.w=A.a(s.x,"_value")*q.gJ0()*J.dq(q.w) -q.d.ex(0)}else{q.w=0 -s.sl(0,0)}q.a4(new A.acs(q))}, -a_l(a){var s,r,q,p=this -if(!p.y){s=p.d.r -s=s!=null&&s.a!=null}else s=!0 -if(s){s=p.d.r -s=s!=null&&s.a!=null}else s=!0 -if(s)return -s=a.c -s.toString -r=p.w -switch(p.a.x.a){case 1:case 0:p.w=r+s -break -case 4:s=r+s -if(s<0)p.w=s -break -case 5:s=r+s -if(s>0)p.w=s -break -case 2:q=p.c.L(t.I) -q.toString -switch(q.f.a){case 0:s=p.w+s -if(s>0)p.w=s -break -case 1:s=p.w+s -if(s<0)p.w=s -break}break -case 3:q=p.c.L(t.I) -q.toString -switch(q.f.a){case 0:s=p.w+s -if(s<0)p.w=s -break -case 1:s=p.w+s -if(s>0)p.w=s -break}break -case 6:p.w=0 -break}if(J.dq(r)!==J.dq(p.w))p.a4(new A.act(p)) -s=p.d -q=s.r -if(!(q!=null&&q.a!=null))s.sl(0,Math.abs(p.w)/p.gJ0())}, -a1z(){this.a.toString}, -AE(){var s,r,q=this,p=J.dq(q.w),o=q.d -o.toString -s=q.gh5() -r=q.a -if(s){r.toString -s=new A.m(p,0)}else{r.toString -s=new A.m(0,p)}r=t.Ni -q.e=new A.aC(t.m.a(o),new A.ar(B.j,s,r),r.j("aC"))}, -a_e(a){var s,r,q,p,o=this -if(o.w===0)return B.lK -s=a.a -r=s.a -q=s.b -if(o.gh5()){s=Math.abs(r) -if(s-Math.abs(q)<400||s<700)return B.lK -p=o.lm(r)}else{s=Math.abs(q) -if(s-Math.abs(r)<400||s<700)return B.lK -p=o.lm(q)}if(p===o.lm(o.w))return B.T8 -return B.T9}, -a_j(a){var s,r,q,p=this -if(!p.y){s=p.d.r -s=s!=null&&s.a!=null}else s=!0 -if(s){s=p.d.r -s=s!=null&&s.a!=null}else s=!0 -if(s)return -p.y=!1 -s=p.d -if(s.gaZ(s)===B.H){p.pc() -return}s=a.a -r=s.a -q=p.gh5()?r.a:r.b -switch(p.a_e(s).a){case 1:p.a.toString -B.hv.h(0,p.lm(p.w)) -p.w=J.dq(q) -p.d.Ng(Math.abs(q)*0.0033333333333333335) -break -case 2:p.w=J.dq(q) -p.d.Ng(-Math.abs(q)*0.0033333333333333335) -break -case 0:s=p.d -if(s.gaZ(s)!==B.w){s=A.a(p.d.x,"_value") -p.a.toString -B.hv.h(0,p.lm(p.w)) -r=p.d -if(s>0.4)r.bp(0) -else r.cd(0)}break}}, -tJ(a){return this.a1x(a)}, -a1x(a){var s=0,r=A.S(t.H),q=this -var $async$tJ=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:s=a===B.H&&!q.y?2:3 -break -case 2:s=4 -return A.U(q.pc(),$async$tJ) -case 4:case 3:if(q.c!=null)q.me() -return A.Q(null,r)}}) -return A.R($async$tJ,r)}, -pc(){var s=0,r=A.S(t.H),q=this,p -var $async$pc=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:q.a.toString -B.hv.h(0,q.lm(q.w)) -s=2 -return A.U(q.yz(),$async$pc) -case 2:p=b -if(q.c!=null)if(p)q.a7E() -else q.d.cd(0) -return A.Q(null,r)}}) -return A.R($async$pc,r)}, -yz(){var s=0,r=A.S(t.y),q,p=this -var $async$yz=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:p.a.toString -q=!0 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$yz,r)}, -a7E(){var s,r=this -r.a.toString -s=r.lm(r.w) -r.a.w.$1(s)}, -I(a,b){var s,r,q,p,o,n,m,l=this,k=null -l.mD(0,b) -l.a.toString -s=l.r -if(s!=null){r=l.gh5()?B.a2:B.as -q=l.z -p=q.a -return A.aqN(r,0,A.dz(k,q.b,p),s)}s=A.a(l.e,"_moveAnimation") -r=l.a -o=A.al3(r.c,s,k,!0) -if(r.x===B.mS)return o -s=l.gh5()?l.gHg():k -r=l.gh5()?l.gHh():k -q=l.gh5()?l.gHf():k -p=l.gh5()?k:l.gHg() -n=l.gh5()?k:l.gHh() -m=l.gh5()?k:l.gHf() -l.a.toString -return A.eI(B.ao,o,B.V,!1,k,k,k,k,q,s,r,k,k,k,k,k,k,k,k,k,m,p,n)}} -A.acs.prototype={ -$0(){this.a.AE()}, -$S:0} -A.act.prototype={ -$0(){this.a.AE()}, -$S:0} -A.E7.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.E8.prototype={ -aB(){this.aS() -if(this.gjQ())this.k0()}, -dc(){var s=this.cV$ -if(s!=null){s.ab() -this.cV$=null}this.j5()}} -A.GO.prototype={ -I(a,b){var s=b.L(t.w).f,r=s.a,q=r.a,p=r.b,o=A.aAE(b),n=A.aAC(o,r),m=A.aAD(A.aAG(new A.w(0,0,0+q,0+p),A.aAF(s)),n) -return new A.cq(new A.as(m.a,m.b,q-m.c,p-m.d),new A.hb(s.afW(m),this.d,null),null)}} -A.Xs.prototype={ -$1(a){var s -if(!a.gjb(a).gdR().ahg(0,0)){a.gahh(a) -s=!1}else s=!0 -return s}, -$S:135} -A.Xt.prototype={ -$1(a){return a.gjb(a)}, -$S:350} -A.GP.prototype={ -gaP(a){var s=this.a -if(s==null)return null -s=s.c -s.toString -return s}} -A.qj.prototype={ -am(){return new A.Br(A.yP(null),A.yP(null),B.k)}, -acB(a,b,c){return this.d.$3(a,b,c)}, -agg(a,b,c){return this.e.$3(a,b,c)}} -A.Br.prototype={ -aB(){var s,r=this -r.aS() -s=r.a.c -r.d=s.gaZ(s) -r.a.c.c1(r.gy4()) -r.KG()}, -Gh(a){var s=this,r="_effectiveAnimationStatus",q=A.a(s.d,r),p=s.Zc(a,A.a(s.d,r)) -s.d=p -if(q!==A.a(p,r))s.KG()}, -b4(a){var s,r,q=this -q.bu(a) -s=a.c -if(s!==q.a.c){r=q.gy4() -s.e5(r) -q.a.c.c1(r) -r=q.a.c -q.Gh(r.gaZ(r))}}, -Zc(a,b){switch(a.a){case 0:case 3:return a -case 1:switch(b.a){case 0:case 3:case 1:return a -case 2:return b}break -case 2:switch(b.a){case 0:case 3:case 2:return a -case 1:return b}break}}, -KG(){var s=this -switch(A.a(s.d,"_effectiveAnimationStatus").a){case 0:case 1:s.e.sa3(0,s.a.c) -s.f.sa3(0,B.cj) -break -case 2:case 3:s.e.sa3(0,B.cT) -s.f.sa3(0,new A.i4(s.a.c,new A.aM(A.b([],t.W),t.jc),0)) -break}}, -m(a){this.a.c.e5(this.gy4()) -this.aR(0)}, -I(a,b){var s=this.a -return s.acB(b,this.e,s.agg(b,this.f,s.f))}} -A.jq.prototype={ -sc7(a,b){this.oM(0,this.a.nj(B.bo,B.lu,b))}, -a9O(a,b,c){var s,r,q=null,p=this.a,o=p.c -if(o.gbv()){s=o.b -p=s>=o.a&&s<=p.a.length}else p=!1 -if(!p||!c)return A.hm(q,b,this.a.a) -r=b.bg(B.NM) -p=this.a -o=p.c -p=p.a -s=o.a -o=o.b -return A.hm(A.b([A.hm(q,q,B.b.N(p,0,s)),A.hm(q,r,B.b.N(p,s,o)),A.hm(q,q,B.b.bU(p,o))],t.Ne),b,q)}, -srV(a){var s,r,q,p,o=this -if(!o.O6(a))throw A.c(A.Hh("invalid text selection: "+a.i(0))) -s=a.a -r=a.b -if(s===r){q=o.a.c -s=s>=q.a&&r<=q.b}else s=!1 -p=s?o.a.c:B.bo -o.oM(0,o.a.aaN(p,a))}, -O6(a){var s=this.a.a.length -return a.a<=s&&a.b<=s}} -A.LY.prototype={} -A.wv.prototype={ -gj1(a){var s=this.CW,r=s.geH() -return new A.Lx(s.d,r,s.r,s.as,s.w,s.x,null,!0,s.dx)}, -am(){var s=null -return new A.qk(new A.d7(!0,$.b4()),new A.bC(s,t.A),new A.r2(),new A.r2(),new A.r2(),B.o,s,s,s,B.k)}} -A.qk.prototype={ -gfA(){this.a.toString -var s=this.z -if(s==null){s=A.a6j() -this.z=s}return s}, -gjQ(){return this.a.d.gbR()}, -gMr(){var s=this.a -return s.z.b&&!s.x&&!s.f}, -gAo(){var s,r=$.F.D$.z.h(0,this.r) -if(r==null)s=null -else{r=r.f -r.toString -s=r}if(!(s instanceof A.Bs))throw A.c(A.X("_Editable must be mounted.")) -return s.f}, -M5(a){var s=this,r=s.a,q=r.c.a,p=q.b,o=p.a,n=p.b -if(o===n||r.f)return -A.w1(new A.n9(B.b.N(q.a,o,n))) -if(a===B.bF){s.ii(s.a.c.a.b.gdd()) -s.CH(!1) -switch(A.dI().a){case 2:break -case 4:case 0:case 1:case 3:case 5:r=s.a.c.a -s.fT(new A.dB(r.a,A.mo(B.l,r.b.b),B.bo),B.bF) -break}}}, -Ms(a){var s,r,q,p=this,o=p.a -if(o.x||o.f)return -o=o.c.a -s=o.b -r=o.a -o=s.a -q=s.b -if(o===q)return -A.w1(new A.n9(B.b.N(r,o,q))) -p.Ju(new A.hi(p.a.c.a,"",s,a)) -if(a===B.bF){$.bK.ch$.push(new A.XY(p)) -p.jv()}}, -r6(a){return this.afl(a)}, -afl(a){var s=0,r=A.S(t.H),q,p=this,o,n,m,l,k -var $async$r6=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:k=p.a -if(k.x){s=1 -break}o=k.c.a.b -if(!o.gbv()){s=1 -break}s=3 -return A.U(A.W_("text/plain"),$async$r6) -case 3:n=c -if(n==null){s=1 -break}m=Math.max(o.c,o.d) -l=p.a.c.a.io(A.mo(B.l,m)) -k=n.a -k.toString -p.fT(l.Pi(o,k),a) -if(a===B.bF){$.bK.ch$.push(new A.Y0(p)) -p.jv()}case 1:return A.Q(q,r)}}) -return A.R($async$r6,r)}, -aB(){var s,r,q=this -q.U6() -s=A.bo(null,B.fD,null,null,q) -s.cf() -r=s.bj$ -r.b=!0 -r.a.push(q.ga4W()) -q.Q=s -q.a.c.a2(0,q.gyP()) -q.a.d.a2(0,q.gyT()) -q.gfA().a2(0,q.ga8I()) -q.f.sl(0,q.a.as)}, -bH(){var s,r,q=this -q.e9() -q.c.L(t.BY) -if(!q.ay)q.a.toString -s=q.c -s.toString -r=A.ale(s) -if(q.cx!==r){q.cx=r -if(r&&q.k4)q.uf() -else if(!r&&q.d!=null){q.d.aA(0) -q.d=null}}}, -b4(a){var s,r,q,p=this -p.bu(a) -s=a.c -if(p.a.c!==s){r=p.gyP() -s.K(0,r) -p.a.c.a2(0,r) -p.AH()}if(!p.a.c.a.b.k(0,s.a.b)){s=p.y -if(s!=null)s.bc(0,p.a.c.a)}s=p.y -if(s!=null)s.sNy(p.a.Q) -s=p.a -s.au!==a.au -r=a.d -if(s.d!==r){s=p.gyT() -r.K(0,s) -p.a.d.a2(0,s) -p.me()}s=p.a -s.toString -if(a.x&&s.d.gbR())p.u1() -s=p.gh6() -if(s){s=p.a -if(a.x!==s.x){p.x.toString -s=s.au -s=s.gkU() -A.a($.ei().a,"_channel").cA("TextInput.updateConfig",s.i0(),t.H)}}if(!p.a.CW.k(0,a.CW)){q=p.a.CW -if(p.gh6()){s=p.x -s.toString -r=p.gtu() -s.xd(0,q.d,q.r,q.w,p.a.cy,r)}}s=p.a -if(s.M){r=s.z.c -if(r&&!s.x){if(s.ok==null)s=null -else s=r&&!s.x -s=s===!0}else s=!1}else s=!1 -s}, -m(a){var s=this,r=s.z -if(r!=null)r.m(0) -s.a.c.K(0,s.gyP()) -r=s.CW -if(r!=null)r.m(0) -s.CW=null -s.GQ() -r=s.d -if(r!=null)r.aA(0) -s.d=null -r=s.Q -if(r!=null)r.m(0) -s.Q=null -r=s.y -if(r!=null)r.m(0) -s.y=null -s.a.d.K(0,s.gyT()) -B.c.B($.F.au$,s) -s.U7(0)}, -agV(a){var s,r,q,p=this,o=p.a -if(o.x)a=o.c.a.io(a.b) -p.cy=a -if(a.k(0,p.a.c.a))return -o=a.a -s=p.a.c.a -if(o===s.a&&a.c.k(0,s.c)){o=p.x==null?null:$.ei().e -o=o===!0?B.eI:B.L -p.tt(a.b,o)}else{p.jv() -s=p.RG=null -if(p.gh6()){r=p.a -if(r.f){$.F.toString -$.aL() -r=r.c.a -o=o.length===r.a.length+1 -q=o}else q=!1}else q=!1 -p.k2=q?3:0 -p.k3=q?p.a.c.a.b.c:s -p.a0w(a,B.L)}p.u9(!0) -if(p.gh6()){p.Aj(!1) -p.uf()}}, -IZ(){var s,r,q,p,o=this,n=o.r,m=$.F.D$.z.h(0,n).gF() -m.toString -s=t.E -s.a(m) -r=o.dx -r.toString -r=m.oo(r).ga9Y() -m=$.F.D$.z.h(0,n).gF() -m.toString -q=r.a9(0,new A.m(0,s.a(m).al.gdz()/2)) -m=o.CW -if(m.gaZ(m)===B.H){m=$.F.D$.z.h(0,n).gF() -m.toString -s.a(m) -r=o.dx -r.toString -m.x9(B.fM,q,r) -m=o.dx.a -n=$.F.D$.z.h(0,n).gF() -n.toString -if(m!==s.a(n).aK.c)o.tt(A.mo(B.l,o.dx.a),B.lc) -o.fr=o.dy=o.dx=o.db=null}else{m=A.a(o.CW.x,"_value") -r=o.fr -p=A.Z(r.a,q.a,m) -p.toString -r=A.Z(r.b,q.b,m) -r.toString -n=$.F.D$.z.h(0,n).gF() -n.toString -s.a(n) -s=o.dx -s.toString -n.F1(B.fL,new A.m(p,r),s,m)}}, -ty(a,b){var s,r,q,p,o=this,n=o.a.c -n.oM(0,n.a.M6(B.bo)) -if(b){switch(a.a){case 0:case 1:case 2:case 3:case 4:case 5:case 8:case 9:case 10:case 11:case 12:o.a.d.E4() -break -case 6:n=o.a.d -n.e.L(t.ag).f.tZ(n,!0) -break -case 7:n=o.a.d -n.e.L(t.ag).f.tZ(n,!1) -break}b=!0}n=o.a -s=n.R8 -if(s==null)return -try{s.$1(n.c.a.a)}catch(p){r=A.ab(p) -q=A.aA(p) -n=A.bi("while calling onSubmitted for "+a.i(0)) -A.cS(new A.bs(r,q,"widgets",n,null,!1))}if(b)o.a6T()}, -AH(){var s,r=this -if(r.fx>0||!r.gh6())return -s=r.a.c.a -if(s.k(0,r.cy))return -r.x.toString -A.a($.ei().a,"_channel").cA("TextInput.setEditingState",s.rq(),t.H) -r.cy=s}, -HU(a){var s,r,q,p,o,n,m,l,k=this -if(!B.c.gbX(k.gfA().d).f.glu()){s=B.c.gbX(k.gfA().d).as -s.toString -return new A.m5(s,a)}s=k.r -r=$.F.D$.z.h(0,s).gF() -r.toString -q=t.E -r=q.a(r).k1 -r.toString -if(k.a.id===1){s=a.c -q=a.a -r=r.a -p=s-q>=r?r/2-a.gaT().a:B.f.G(0,s-r,q) -o=B.cB}else{n=a.gaT() -s=$.F.D$.z.h(0,s).gF() -s.toString -m=A.aqu(n,Math.max(a.d-a.b,q.a(s).al.gdz()),a.c-a.a) -s=m.d -q=m.b -r=r.b -p=s-q>=r?r/2-m.gaT().b:B.f.G(0,s-r,q) -o=B.c1}s=B.c.gbX(k.gfA().d).as -s.toString -r=B.c.gbX(k.gfA().d).y -r.toString -q=B.c.gbX(k.gfA().d).z -q.toString -l=B.e.G(p+s,r,q) -q=B.c.gbX(k.gfA().d).as -q.toString -return new A.m5(l,a.c8(o.W(0,q-l)))}, -gh6(){var s=this.x -s=s==null?null:$.ei().b===s -return s===!0}, -u1(){var s,r,q,p,o,n,m=this,l="_channel",k="TextInput.show" -if(!m.gh6()){s=m.a -r=s.c.a -s=s.au -s.gkU() -s=m.a.au -s=s.gkU() -q=A.ar7(m) -$.ei().y8(q,s) -s=q -m.x=s -m.L5() -m.KL() -m.KH() -p=m.a.CW -s=m.x -s.toString -o=m.gtu() -s.xd(0,p.d,p.r,p.w,m.a.cy,o) -o=$.ei() -s=t.H -A.a(o.a,l).cA("TextInput.setEditingState",r.rq(),s) -A.a(o.a,l).jx(k,s) -n=m.a.au -if(n.gkU().e.a){m.x.toString -A.a(o.a,l).jx("TextInput.requestAutofill",s)}m.cy=r}else{m.x.toString -A.a($.ei().a,l).jx(k,t.H)}}, -GQ(){var s,r,q=this -if(q.gh6()){s=q.x -s.toString -r=$.ei() -if(r.b===s)r.GN() -q.cy=q.x=null}}, -a6T(){if(this.fy)return -this.fy=!0 -A.fk(this.ga6x())}, -a6y(){var s,r,q,p,o,n,m=this,l="_channel" -m.fy=!1 -if(m.gh6())s=!1 -else s=!0 -if(s)return -s=m.x -s.toString -r=$.ei() -if(r.b===s)r.GN() -m.cy=m.x=null -s=m.a.au -s.gkU() -s=m.a.au -s=s.gkU() -q=A.ar7(m) -r.y8(q,s) -p=q -m.x=p -o=m.a.CW -s=t.H -A.a(r.a,l).jx("TextInput.show",s) -n=m.gtu() -p.xd(0,o.d,o.r,o.w,m.a.cy,n) -n=m.a.c.a -A.a(r.a,l).cA("TextInput.setEditingState",n.rq(),s) -m.cy=m.a.c.a}, -DP(){if(this.a.d.gbR())this.u1() -else this.a.d.jI()}, -KX(){var s,r,q=this -if(q.y!=null){s=q.a.d.gbR() -r=q.y -if(s){r.toString -r.bc(0,q.a.c.a)}else{r.m(0) -q.y=null}}}, -a8J(){var s=this.y -if(s!=null)s.uo()}, -tt(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d="_selectionOverlay" -if(!e.a.c.O6(a))return -e.a.c.srV(a) -switch(b){case null:case B.L3:case B.aK:case B.lc:case B.bk:case B.eI:case B.bj:case B.bF:e.DP() -break -case B.L:if(e.a.d.gbR())e.DP() -break}q=e.a -if(q.ok==null){q=e.y -if(q!=null)q.m(0) -e.y=null}else{p=e.y -o=q.c.a -if(p==null){p=e.c -p.toString -n=$.F.D$.z.h(0,e.r).gF() -n.toString -t.E.a(n) -m=e.a -l=m.ok -k=m.af -m=m.ry -j=$.b4() -i=new A.d7(!1,j) -h=new A.d7(!1,j) -j=new A.d7(!1,j) -o=new A.LQ(n,l,e,o,i,h,j) -g=o.gL7() -n.co.a2(0,g) -n.c5.a2(0,g) -o.AL() -n=n.bO -p.Co(t.N1) -A.c9(o.d,d) -o.d=new A.KL(p,B.dz,0,i,o.ga3b(),o.ga3d(),B.dz,0,h,o.ga35(),o.ga37(),j,B.EM,q,e.as,e.at,e.ax,l,e,k,m,null,n) -e.y=o}else p.bc(0,o) -q=e.y -q.toString -q.sNy(e.a.Q) -q=e.y -q.uo() -A.a(q.d,d).Rg()}try{e.a.rx.$2(a,b)}catch(f){s=A.ab(f) -r=A.aA(f) -q=A.bi("while calling onSelectionChanged for "+A.e(b)) -A.cS(new A.bs(s,r,"widgets",q,null,!1))}if(e.d!=null){e.Aj(!1) -e.uf()}}, -a1m(a){this.go=a}, -u9(a){if(this.id)return -this.id=!0 -$.bK.ch$.push(new A.XL(this,a))}, -BQ(){var s,r=this,q="_lastBottomViewInset",p=A.a(r.k1,q) -$.F.toString -s=$.bW() -if(p!==s.e.d){$.bK.ch$.push(new A.XZ(r)) -p=A.a(r.k1,q) -$.F.toString -if(p>>16&255,s.gl(s)>>>8&255,s.gl(s)&255) -q.gea().sBm(s) -q=r.a.as&&A.a(r.Q.x,"_value")>0 -r.f.sl(0,q)}, -a_6(a){var s,r,q=this,p=!q.e -q.e=p -s=p?1:0 -p=q.a.ao -r=q.Q -if(p){r.z=B.X -r.h_(s,B.dX,null)}else r.sl(0,s) -if(q.k2>0)q.a4(new A.XH(q))}, -a_8(a){var s=this.d -if(s!=null)s.aA(0) -this.d=A.AD(B.d_,this.gH7())}, -uf(){var s=this -s.k4=!0 -if(!s.cx)return -s.e=!0 -s.Q.sl(0,1) -if(s.a.ao)s.d=A.AD(B.cY,s.ga_7()) -else s.d=A.AD(B.d_,s.gH7())}, -Aj(a){var s,r=this -r.k4=!1 -s=r.d -if(s!=null)s.aA(0) -r.d=null -r.e=!1 -r.Q.sl(0,0) -if(a)r.k2=0 -if(r.a.ao){r.Q.ex(0) -r.Q.sl(0,0)}}, -a7H(){return this.Aj(!0)}, -Ka(){var s,r=this -if(r.d==null)if(r.a.d.gbR()){s=r.a.c.a.b -s=s.a===s.b}else s=!1 -else s=!1 -if(s)r.uf() -else{if(r.k4)if(r.a.d.gbR()){s=r.a.c.a.b -s=s.a!==s.b}else s=!0 -else s=!1 -if(s)r.a7H()}}, -Hc(){var s=this -s.AH() -s.Ka() -s.KX() -s.a4(new A.XI()) -s.gGb().RA()}, -a_I(){var s,r,q=this -if(q.a.d.gbR()&&q.a.d.aau())q.u1() -else if(!q.a.d.gbR()){q.GQ() -s=q.a.c -s.oM(0,s.a.M6(B.bo))}q.Ka() -q.KX() -s=q.a.d.gbR() -r=$.F -if(s){r.au$.push(q) -$.F.toString -q.k1=$.bW().e.d -if(!q.a.x)q.u9(!0) -if(!q.a.c.a.b.gbv())q.tt(A.mo(B.l,q.a.c.a.a.length),null) -q.ok="" -q.p1=null -q.p2=B.o -q.p3=-1}else{B.c.B(r.au$,q) -q.a4(new A.XK(q))}q.me()}, -L4(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e={} -f.a.toString -if(A.dI()!==B.av)return -$.F.toString -if($.bW().gkO().gdR()<1488)return -s=f.r -r=$.F.D$.z.h(0,s).gF() -r.toString -q=t.E -r=q.a(r).al.c -p=r==null?null:r.rr(!1) -if(p==null)p="" -r=$.F.D$.z.h(0,s).gF() -r.toString -o=q.a(r).rF(B.Nu) -n=o.length!==0?B.c.gJ(o):null -m=B.c.gbX(f.gfA().d).k2 -s=$.F.D$.z.h(0,s).gF() -s.toString -s=q.a(s).k1 -s.toString -q=f.ok -r=J.f(f.p4,f.a.CW) -l=J.f(f.p1,n) -k=f.p2.k(0,s) -j=f.p3 -i=f.R8 -h=j!==i -if(m===B.ds)r=a||p!==q||!r||!l||!k||h -else r=!1 -if(r){f.ok=p -f.p1=n -f.p4=f.a.CW -f.p2=s -f.p3=i -e.a=!1 -s=p.length===0?B.b5:new A.e9(p) -e=A.aBU(s.gp(s),new A.XR(e,f),t.q1) -s=A.af(e) -r=s.j("d3<1,e6>") -g=A.ap(new A.d3(new A.au(e,new A.XS(f),s.j("au<1>")),new A.XT(),r),!0,r.j("p.E")) -f.x.R2(g)}}, -a8K(){return this.L4(!1)}, -L5(){var s,r,q,p,o=this -if(o.gh6()){s=o.r -r=$.F.D$.z.h(0,s).gF() -r.toString -q=t.E -r=q.a(r).k1 -r.toString -s=$.F.D$.z.h(0,s).gF() -s.toString -p=q.a(s).dj(0,null) -s=o.x -if(!r.k(0,s.a)||!p.k(0,s.b)){s.a=r -s.b=p -s=$.ei() -r=A.aB(["width",r.a,"height",r.b,"transform",p.a],t.N,t.z) -A.a(s.a,"_channel").cA("TextInput.setEditableSizeAndTransform",r,t.H)}o.a8K() -$.bK.ch$.push(new A.XU(o))}else if(o.R8!==-1)o.Pb()}, -KL(){var s,r,q,p,o,n=this,m=n.a.c.a.c -if(n.gh6()){s=n.r -r=$.F.D$.z.h(0,s).gF() -r.toString -q=t.E -p=q.a(r).wR(m) -if(p==null){o=m.gbv()?m.a:0 -s=$.F.D$.z.h(0,s).gF() -s.toString -p=q.a(s).oo(new A.b9(o,B.l))}n.x.QT(p) -$.bK.ch$.push(new A.XQ(n))}}, -KH(){var s,r,q,p,o=this -if(o.gh6()){s=o.r -r=$.F.D$.z.h(0,s).gF() -r.toString -q=t.E -q.a(r) -r=$.F.D$.z.h(0,s).gF() -r.toString -if(q.a(r).aK.gbv()){r=$.F.D$.z.h(0,s).gF() -r.toString -r=q.a(r).aK -r=r.a===r.b}else r=!1 -if(r){r=$.F.D$.z.h(0,s).gF() -r.toString -r=q.a(r).aK -s=$.F.D$.z.h(0,s).gF() -s.toString -p=q.a(s).oo(new A.b9(r.c,B.l)) -o.x.QS(p)}$.bK.ch$.push(new A.XP(o))}}, -gtu(){this.a.toString -var s=this.c.L(t.I) -s.toString -return s.f}, -fT(a,b){var s=this.a,r=s.x -s=s.c.a -if(r?!s.b.k(0,a.b):!s.k(0,a))this.u9(!0) -this.HL(a,b,!0)}, -ii(a){var s,r,q=this.r,p=$.F.D$.z.h(0,q).gF() -p.toString -s=t.E -r=this.HU(s.a(p).oo(a)) -this.gfA().iE(r.a) -q=$.F.D$.z.h(0,q).gF() -q.toString -s.a(q).l8(r.b)}, -mB(){return!1}, -CH(a){var s,r="_selectionOverlay" -if(a){s=this.y -if(s!=null)A.a(s.d,r).ND()}else{s=this.y -s=s==null?null:A.a(s.d,r).go!=null -if(s===!0){s=this.y -if(s!=null)A.a(s.d,r).jv()}}}, -jv(){return this.CH(!0)}, -adD(a){var s=this.a -if(!s.c.a.b.gbv())return -this.a4(new A.Y_(this))}, -Pb(){this.a.toString -this.a4(new A.Y1(this))}, -gkU(){var s,r,q,p,o,n,m,l,k,j,i,h=this -h.a.toString -s=J.xg(B.bZ.slice(0),t.N) -r=A.e5(h) -q=h.a -p=q.c.a -o=new A.vw(!0,"EditableText-"+r,s,p,null) -r=q.p1 -p=q.x -n=q.f -m=q.ax -l=q.ay -if(q.M)q=!p||!n -else q=!1 -k=r.k(0,B.Nr)?B.vB:B.lt -j=h.a -i=j.dx -return A.ar6(!0,o,!1,!0,q,!0,k,r,j.bQ,n,p,m,l,i)}, -Re(a,b){this.a4(new A.Y2(this,a,b))}, -a70(a){var s=this.a -if(s.M)if(s.z.a&&!s.f)if(s.d.gbR()){if(a==null)s=null -else{s=this.a -if(s.z.a&&!s.f){s=s.c.a.b -s=s.a!==s.b}else s=!1}s=s===!0}else s=!1 -else s=!1 -else s=!1 -return s?new A.XM(this,a):null}, -a71(a){var s,r=this -if(r.a.M)if(r.gMr())if(r.a.d.gbR()){if(a==null)s=null -else if(r.gMr()){s=r.a.c.a.b -s=s.a!==s.b}else s=!1 -s=s===!0}else s=!1 -else s=!1 -else s=!1 -return s?new A.XN(r,a):null}, -a72(a){var s=this.a -if(s.M)if(s.z.c&&!s.x)if(s.d.gbR()){if(a==null)s=null -else{s=this.a -s=s.z.c&&!s.x}if(s===!0)s=!0 -else s=!1}else s=!1 -else s=!1 -else s=!1 -return s?new A.XO(this,a):null}, -Zn(a){var s,r=this.a,q=r.f -r=r.c.a -s=q?new A.tR(r):new A.tO(r) -return new A.tS(s,a.a)}, -a4Q(a){var s,r,q,p=this.a -if(p.f){p=p.c.a -s=new A.tR(p) -r=new A.u1(p)}else{q=this.gAo() -s=new A.tO(q) -p=$.F.D$.z.h(0,this.r).gF() -p.toString -r=new A.acC(new A.ahg(q),new A.ahm(t.E.a(p),q))}p=a.a -return new A.tS(p?new A.us(s,r):new A.us(r,s),p)}, -IK(a){var s,r,q,p=this.a -if(p.f){p=p.c.a -s=new A.tR(p) -r=new A.u1(p)}else{q=this.gAo() -s=new A.tO(q) -p=$.F.D$.z.h(0,this.r).gF() -p.toString -r=new A.adV(t.E.a(p),q)}return a.a?new A.us(new A.tS(s,!0),r):new A.us(r,new A.tS(s,!1))}, -a_v(a){return new A.u1(this.a.c.a)}, -Ju(a){var s=this.a.c.a,r=a.a.Pi(a.c,a.b) -this.fT(r,a.d) -if(r.k(0,s))this.Hc()}, -a6V(a){if(a.a)this.ii(new A.b9(this.a.c.a.a.length,B.l)) -else this.ii(B.cM)}, -a8H(a){var s=a.b -this.ii(s.gdd()) -this.fT(a.a.io(s),a.c)}, -gGb(){var s,r=this,q=r.to -if(q===$){s=A.b([],t.e) -A.ba(r.to,"_adjacentLineAction") -q=r.to=new A.DQ(r,new A.aM(s,t._),t.w7)}return q}, -a05(a){var s=this.a.c.a -this.HE(a.a,new A.u1(s),!0)}, -a07(a){var s=this.IK(a) -this.a03(a.a,s)}, -HE(a,b,c){var s,r,q,p=b.gdB().b -if(!p.gbv())return -s=a===p.c<=p.d?p.gdd():p.gpM() -r=a?b.e8(s):b.e7(s) -q=p.ac0(r,p.a===p.b||c) -this.fT(this.a.c.a.io(q),B.L) -this.ii(q.gdd())}, -a03(a,b){return this.HE(a,b,!1)}, -a3S(a){var s=this.y -s=s==null?null:A.a(s.d,"_selectionOverlay").go!=null -if(s===!0){this.CH(!1) -return null}s=this.c -s.toString -return A.iB(s,a,t.xm)}, -gYe(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=a3.x1 -if(a4===$){s=t.e -r=A.b([],s) -q=t._ -a4=a3.rx -if(a4===$){p=A.b([],s) -A.ba(a3.rx,"_replaceTextAction") -a4=a3.rx=new A.c2(a3.ga6n(),new A.aM(p,q),t.Tx)}o=a3.ry -if(o===$){p=A.b([],s) -A.ba(a3.ry,"_updateSelectionAction") -o=a3.ry=new A.c2(a3.ga8G(),new A.aM(p,q),t.ZQ)}p=A.b([],s) -n=A.b([],s) -m=a3.gZm() -l=A.b([],s) -k=a3.c -k.toString -k=new A.kM(a3,m,new A.aM(l,q),t.dA).dU(k) -l=a3.ga4P() -j=A.b([],s) -i=a3.c -i.toString -i=new A.kM(a3,l,new A.aM(j,q),t.Uz).dU(i) -j=a3.ga4p() -h=A.b([],s) -g=a3.c -g.toString -g=new A.kM(a3,j,new A.aM(h,q),t.Fb).dU(g) -m=A.ah0(a3,!1,m,t._w) -h=a3.c -h.toString -h=m.dU(h) -m=A.ah0(a3,!0,l,t.P9) -f=a3.c -f.toString -f=m.dU(f) -j=A.ah0(a3,!0,j,t.OO) -m=a3.c -m.toString -m=j.dU(m) -j=A.b([],s) -e=a3.c -e.toString -e=new A.c2(a3.ga06(),new A.aM(j,q),t.RM).dU(e) -j=A.b([],s) -d=a3.c -d.toString -d=new A.c2(a3.ga04(),new A.aM(j,q),t.YM).dU(d) -j=a3.gGb() -c=a3.c -c.toString -c=j.dU(c) -j=A.ah0(a3,!0,a3.ga_u(),t.HH) -b=a3.c -b.toString -b=j.dU(b) -j=A.b([],s) -a=a3.c -a.toString -a=new A.O0(a3,l,new A.aM(j,q)).dU(a) -j=A.b([],s) -l=a3.c -l.toString -l=new A.c2(a3.ga6U(),new A.aM(j,q),t.sl).dU(l) -j=A.b([],s) -a0=a3.c -a0.toString -a0=new A.QP(a3,new A.aM(j,q)).dU(a0) -j=A.b([],s) -a1=a3.c -a1.toString -a1=new A.Nh(a3,new A.aM(j,q)).dU(a1) -s=A.b([],s) -j=a3.c -j.toString -a2=A.aB([B.Sd,new A.wl(!1,new A.aM(r,q)),B.RP,a4,B.S0,o,B.vN,new A.wh(!0,new A.aM(p,q)),B.vO,new A.c2(a3.ga3R(),new A.aM(n,q),t.Dn),B.Rs,k,B.Si,i,B.Rt,g,B.Rl,h,B.Ri,f,B.Rk,m,B.Sg,e,B.Sc,d,B.Sa,c,B.Rj,b,B.Se,a,B.Rm,l,B.RS,a0,B.Rr,a1,B.RK,new A.c2(new A.XG(a3),new A.aM(s,q),t.gv).dU(j)],t.n,t.od) -A.ba(a3.x1,"_actions") -a3.x1=a2 -a4=a2}return a4}, -I(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null -h.mD(0,b) -s=h.a -r=s.ok -s=s.x1 -q=h.gYe() -p=h.a -o=p.c -n=p.d -p=p.id!==1?B.J:B.ay -m=h.gfA() -l=h.a -k=l.q -j=l.af -l=l.bI -i=A.a6i(b).aaS(!1,h.a.id!==1) -return A.o5(A.va(q,new A.Dy(A.wO(!1,g,A.a6r(p,m,j,!0,k,l,i,g,new A.XW(h,r)),"EditableText",g,g,n,!1,g,g,g,g,g),o,new A.XX(h),g)),s,g,g,g,g)}, -a9N(){var s,r,q,p,o,n,m,l=this,k=null,j=l.a -if(j.f){s=j.c.a.a -s=B.b.W(j.e,s.length) -$.F.toString -$.aL() -j=A.dI() -if(J.eD(B.Ls.a,j)){r=l.k2>0?l.k3:k -if(r!=null&&r>=0&&r=0&&q<=j.c.a.a.length){p=A.b([],t.s6) -j=l.a -o=j.c.a.a.length-l.R8 -if(j.id!==1){p.push(B.TO) -j=$.F.D$.z.h(0,l.r).gF() -j.toString -p.push(new A.pl(new A.L(t.E.a(j).k1.a,0),B.c8,B.kZ,k,k))}else p.push(B.TP) -j=l.a -q=j.CW -j=A.b([A.hm(k,k,B.b.N(j.c.a.a,0,o))],t.VO) -B.c.P(j,p) -j.push(A.hm(k,k,B.b.bU(l.a.c.a.a,o))) -return A.hm(j,q,k)}q=j.c -n=l.c -n.toString -m=j.CW -return q.a9O(n,m,!j.x&&j.d.gbR())}} -A.XY.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.ii(s.a.c.a.b.gdd())}, -$S:2} -A.Y0.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.ii(s.a.c.a.b.gdd())}, -$S:2} -A.XL.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j=this.a -j.id=!1 -if(j.go==null||j.gfA().d.length===0)return -s=j.r -r=$.F.D$.z.h(0,s).gF() -r.toString -q=t.E -r=q.a(r).al.gdz() -p=j.a.C.d -o=j.y -if((o==null?null:o.b)!=null){n=o.b.l_(r).b -m=Math.max(n,48) -p=Math.max(n/2-j.y.b.om(B.dz,r).b+m/2,p)}l=j.a.C.uY(p) -r=j.go -r.toString -k=j.HU(r) -r=k.a -o=k.b -if(this.b){j.gfA().ig(r,B.P,B.an) -j=$.F.D$.z.h(0,s).gF() -j.toString -q.a(j).mz(B.P,B.an,l.CL(o))}else{j.gfA().iE(r) -j=$.F.D$.z.h(0,s).gF() -j.toString -q.a(j).l8(l.CL(o))}}, -$S:2} -A.XZ.prototype={ -$1(a){var s=this.a.y -if(s!=null)s.uo()}, -$S:2} -A.XJ.prototype={ -$2(a,b){return b.acA(this.a.a.c.a,a)}, -$S:358} -A.XH.prototype={ -$0(){var s,r=this.a -$.F.toString -$.aL() -s=r.k2 -r.k2=s-1}, -$S:0} -A.XI.prototype={ -$0(){}, -$S:0} -A.XK.prototype={ -$0(){this.a.RG=null}, -$S:0} -A.XR.prototype={ -$1(a){var s,r,q,p,o,n,m=this.a -if(m.a)return null -s=this.b -r=s.ok -q=(r.length===0?B.b5:new A.e9(r)).mm(0,0,a).a.length -r=s.r -p=$.F.D$.z.h(0,r).gF() -p.toString -o=t.E -o.a(p) -s=s.ok -n=p.rF(A.cj(B.l,q,q+(s.length===0?B.b5:new A.e9(s)).aa0(a).a.length,!1)) -if(n.length===0)return null -s=B.c.gJ(n) -r=$.F.D$.z.h(0,r).gF() -r.toString -if(0+o.a(r).k1.b>>16&255,p.gl(p)>>>8&255,p.gl(p)&255) -n=b1.a -m=n.go -l=n.x -n=n.d.gbR() -k=b1.a -j=k.id -i=k.k1 -k=k.gj1(k) -h=b1.a.k4 -g=A.akK(b5) -f=b1.a.cy -e=b1.gtu() -b1.a.toString -d=A.aoL(b5) -c=b1.a -b=c.e -a=c.f -a0=c.xr -a1=c.y1 -a2=c.y2 -a3=c.a6 -if(a3==null)a3=B.j -a4=c.b5 -a5=c.cW -a6=c.aq -if(c.M)c=!c.x||!a -else c=!1 -a7=b1.c.L(t.w).f -a8=b1.RG -a9=b1.a -return new A.nb(b1.as,A.bq(b0,new A.D3(new A.Bs(q,o,p,b1.at,b1.ax,m,b1.f,!0,l,n,j,i,!1,k,h,g,f,e,b0,b,a,d,B.aA,b6,b1.ga1l(),!0,a0,a1,a2,a3,a6,a4,a5,c,b1,a7.b,a8,a9.fy,a9.bA,A.aEs(q),r),s,r,new A.XV(b1),!0,b0),!1,b0,b0,!1,b0,b0,b0,b0,b0,b0,b0,b0,b3,b4,b0,b0,b0,b2,b0,b0,b0,b0,b0,b0,b0,b0,b0),b0)}, -$S:364} -A.XV.prototype={ -$0(){var s=this.a -s.u1() -s.L4(!0)}, -$S:0} -A.Bs.prototype={ -aJ(a){var s=this,r=null,q=s.e,p=A.If(a),o=s.f.b,n=A.as_(),m=A.as_(),l=$.b4(),k=A.aj() -p=A.LP(r,p,r,s.CW,q,s.db,s.dx,s.fy,s.cy,s.go) -p=new A.oq(n,m,s.k1,!0,s.rx,s.fr,s.fx,s.RG,new A.d7(!0,l),new A.d7(!0,l),p,s.z,s.at,!0,s.as,s.ax,s.ay,!1,o,s.id,s.k3,s.k4,s.p2,s.w,s.x,s.R8,s.x1,B.j,k,0,r,r,A.aj()) -p.gar() -p.gaE() -p.CW=!1 -n.svF(s.cx) -n.svG(o) -n.sES(s.p3) -n.sET(s.p4) -m.svF(s.to) -m.svG(s.ry) -p.gea().sBm(s.r) -p.gea().sMq(s.ok) -p.gea().sMp(s.p1) -p.gea().sa9E(s.y) -p.KR(r) -p.KY(r) -p.P(0,r) -p.Hp(q) -return p}, -aM(a,b){var s,r,q=this -b.sc7(0,q.e) -b.gea().sBm(q.r) -b.sRw(q.w) -b.sabO(q.x) -b.sRf(q.z) -b.sacz(!0) -b.srg(0,q.as) -b.sbR(q.at) -b.snP(0,q.ax) -b.saen(q.ay) -b.sCc(!1) -b.sj1(0,q.CW) -s=b.b6 -s.svF(q.cx) -b.skV(q.cy) -b.smc(0,q.db) -b.sbx(0,q.dx) -r=A.If(a) -b.slY(0,r) -b.srV(q.f.b) -b.sbJ(0,q.id) -b.ej=q.k1 -b.cs=!0 -b.srp(0,q.fy) -b.soh(q.go) -b.saeu(q.fr) -b.saet(q.fx) -b.sab6(q.k3) -b.sab5(q.k4) -b.gea().sMq(q.ok) -b.gea().sMp(q.p1) -s.sES(q.p3) -s.sET(q.p4) -b.sabI(q.R8) -b.cX=q.RG -b.sv8(0,q.rx) -b.safj(q.p2) -s=b.au -s.svF(q.to) -r=q.x1 -if(r!==b.qu){b.qu=r -b.aF() -b.ai()}s.svG(q.ry)}} -A.acx.prototype={ -$1(a){if(a instanceof A.kI)this.a.push(a.e) -return!0}, -$S:38} -A.D3.prototype={ -am(){var s=$.arT -$.arT=s+1 -return new A.QL(B.f.i(s),B.k)}, -agX(){return this.f.$0()}} -A.QL.prototype={ -aB(){var s=this -s.aS() -s.a.toString -$.ei().d.n(0,s.d,s)}, -b4(a){this.bu(a) -this.a.toString}, -m(a){$.ei().d.B(0,this.d) -this.aR(0)}, -gDO(){var s=this.a.e -s=$.F.D$.z.h(0,s) -s=s==null?null:s.gF() -return t.CA.a(s)}, -adP(a){var s,r,q,p=this,o=p.gjb(p),n=p.gDO() -n=n==null?null:n.fN -if(n===!0)return!1 -if(o.k(0,B.F))return!1 -if(!o.r4(a))return!1 -s=o.e2(a) -r=A.akp() -n=$.F -n.toString -q=s.gaT() -A.a(n.ry$,"_pipelineOwner").d.bD(r,q) -n.Fx(r,q) -return B.c.fD(r.a,new A.ag4(p))}, -gjb(a){var s,r,q=t.Qv.a(this.c.gF()) -if(q==null||this.c==null||q.b==null)return B.F -s=q.dj(0,null) -r=q.k1 -return A.lJ(s,new A.w(0,0,0+r.a,0+r.b))}, -I(a,b){return this.a.c}, -$iaqH:1} -A.ag4.prototype={ -$1(a){return a.a.k(0,this.a.gDO())}, -$S:365} -A.pl.prototype={ -uH(a,b,c,d){var s=this.a,r=s!=null -if(r)b.kR(0,s.rP(d)) -s=this.x -b.Lu(0,s.a,s.b,this.b,d) -if(r)b.dg(0)}} -A.Dx.prototype={ -ED(a){return new A.cx(this.e7(a).a,this.e8(a).a)}} -A.tR.prototype={ -e7(a){return new A.b9(a.a,B.l)}, -e8(a){return new A.b9(Math.min(a.a+1,this.a.a.length),B.l)}, -gdB(){return this.a}} -A.ahg.prototype={ -e7(a){var s,r -for(s=a.a,r=this.a.a;s>=0;--s)if(!A.a9L(B.b.ak(r,s)))return new A.b9(s,B.l) -return B.cM}, -e8(a){var s,r,q -for(s=a.a,r=this.a.a,q=r.length;so?B.l:B.ar,o) -else m=r.jo(p) -b.toString -return A.iB(b,new A.eR(s.gdB(),m,B.L),t.gU)}, -cM(a){return this.d3(a,null)}, -ghq(){var s=this.e.a -return s.M&&s.c.a.b.gbv()}} -A.DQ.prototype={ -RA(){var s,r=this,q=r.r -if(q==null)return -s=r.r=r.e.a.c.a.b -if(!(s.gbv()&&s.a===s.b&&s.c===q.c&&s.d===q.d))r.r=r.f=null}, -d3(a,b){var s,r,q,p,o,n,m,l,k=this,j=a.b||!k.e.a.M,i=k.e,h=i.gAo(),g=h.b -if(!g.gbv())return -s=k.f -if((s==null?null:s.gbv())===!1)k.r=k.f=null -r=k.f -if(r==null){s=i.r -q=$.F.D$.z.h(0,s).gF() -q.toString -p=t.E -p.a(q) -s=$.F.D$.z.h(0,s).gF() -s.toString -s=p.a(s).aK.gdd() -o=q.al.pU() -n=q.a4o(s,o) -r=new A.aay(n.b,n.a,s,o,q,A.z(t.S,t.tO))}s=a.a -if(s?r.t():r.aep())m=r.c -else m=s?new A.b9(i.a.c.a.a.length,B.l):B.cM -l=j?A.Au(m):g.jo(m) -b.toString -A.iB(b,new A.eR(h,l,B.L),t.gU) -if(i.a.c.a.b.k(0,l)){k.f=r -k.r=l}}, -cM(a){return this.d3(a,null)}, -ghq(){return this.e.a.c.a.b.gbv()}} -A.QP.prototype={ -d3(a,b){var s -b.toString -s=this.e.a.c.a -return A.iB(b,new A.eR(s,A.cj(B.l,0,s.a.length,!1),B.L),t.gU)}, -cM(a){return this.d3(a,null)}, -ghq(){return this.e.a.M}} -A.Nh.prototype={ -d3(a,b){var s=this.e -if(a.b)s.Ms(B.L) -else s.M5(B.L)}, -cM(a){return this.d3(a,null)}, -ghq(){var s=this.e -if(s.a.c.a.b.gbv()){s=s.a.c.a.b -s=s.a!==s.b}else s=!1 -return s}} -A.Dy.prototype={ -am(){return new A.Dz(new A.DK(A.b([],t.Ue),t.eD),B.k)}, -af8(a){return this.e.$1(a)}} -A.Dz.prototype={ -ga84(){return A.a(this.e,"_throttledPush")}, -a8o(a){this.KE(0,this.d.agP())}, -a68(a){this.KE(0,this.d.afK())}, -KE(a,b){var s,r,q -if(b==null)return -s=b.a -r=this.a -q=r.d.a -if(s===q.a)return -r.af8(q.aaT(b.b,s))}, -Jl(){var s=this -if(J.f(s.a.d.a,B.bn))return -s.f=s.a85(s.a.d.a)}, -aB(){var s,r=this -r.aS() -s=A.aGM(B.d_,r.d.gaft(),t.Rp) -A.c9(r.e,"_throttledPush") -r.e=s -r.Jl() -r.a.d.a2(0,r.gzU())}, -b4(a){var s,r,q=this -q.bu(a) -s=a.d -if(q.a.d!==s){r=q.d -B.c.sp(r.a,0) -r.b=-1 -r=q.gzU() -s.K(0,r) -q.a.d.a2(0,r)}}, -m(a){var s,r=this -r.a.d.K(0,r.gzU()) -s=r.f -if(s!=null)s.aA(0) -r.aR(0)}, -I(a,b){var s=t.e,r=t._ -return A.va(A.aB([B.S_,new A.c2(this.ga8n(),new A.aM(A.b([],s),r),t._l).dU(b),B.RO,new A.c2(this.ga67(),new A.aM(A.b([],s),r),t.fN).dU(b)],t.n,t.od),this.a.c)}, -a85(a){return this.ga84().$1(a)}} -A.DK.prototype={ -gBG(){var s=this.a -return s.length===0?null:s[A.a(this.b,"_index")]}, -kP(a){var s,r=this,q="_index",p=r.a -if(p.length===0){r.b=0 -p.push(a) -return}if(J.f(a,r.gBG()))return -A.a(r.b,q) -s=A.a(r.b,q) -if(s!==p.length-1)B.c.DN(p,A.a(r.b,q)+1,p.length) -p.push(a) -r.b=p.length-1}, -agP(){var s=this -if(s.a.length===0)return null -if(A.a(s.b,"_index")!==0)s.b=A.a(s.b,"_index")-1 -return s.gBG()}, -afK(){var s=this,r=s.a -if(r.length===0)return null -if(A.a(s.b,"_index")"))}, -ghG(){var s,r,q=this.x -if(q==null){s=A.b([],t.bp) -r=this.Q -for(;r!=null;){s.push(r) -r=r.Q}this.x=s -q=s}return q}, -gbR(){if(!this.gkD()){var s=this.w -if(s==null)s=null -else{s=s.f -s=s==null?null:B.c.A(s.ghG(),this)}s=s===!0}else s=!0 -return s}, -gkD(){var s=this.w -return(s==null?null:s.f)===this}, -glZ(){return this.gjn()}, -gjn(){var s,r,q,p -for(s=this.ghG(),r=s.length,q=0;q#"+s+q}, -$iat:1} -A.Ze.prototype={ -$1(a){return!a.gf4()&&a.gcl()}, -$S:17} -A.nv.prototype={ -glZ(){return this}, -grv(){if(!this.gcl())return B.wX -return A.cT.prototype.grv.call(this)}, -ow(a){if(a.Q==null)this.zX(a) -if(this.gbR())a.jZ(!0) -else a.mW()}, -a9D(a,b){var s,r=this -if(b.Q==null)r.zX(b) -s=r.w -if(s!=null)s.x.push(new A.MJ(r,b)) -s=r.w -if(s!=null)s.tU()}, -jZ(a){var s,r,q=this,p=q.dx -while(!0){if((p.length!==0?B.c.gR(p):null)!=null)s=!(p.length!==0?B.c.gR(p):null).gcl() -else s=!1 -if(!s)break -p.pop()}r=p.length!==0?B.c.gR(p):null -if(!a||r==null){if(q.gcl()){q.mW() -q.IQ(q)}return}r.jZ(!0)}} -A.jV.prototype={ -i(a){return"FocusHighlightMode."+this.b}} -A.Hl.prototype={ -i(a){return"FocusHighlightStrategy."+this.b}} -A.wP.prototype={ -m(a){var s="_keyEventManager" -if(J.f(A.a($.e7.cW$,s).a,this.gId())){A.a($.e7.cW$,s).a=null -$.eH.k4$.b.B(0,this.gHJ())}this.eL(0)}, -HK(){var s,r,q,p=this -switch(0){case 0:s=p.c -if(s==null)return -r=s?B.fP:B.e0 -break}s=p.b -if(s==null)s=A.wQ() -q=p.b=r -if(q!==s)p.a4R()}, -a4R(){var s,r,q,p,o,n,m,l,k,j=this,i=j.d,h=i.a -if(h.a===0)return -p=A.ap(i,!0,t.Su) -for(i=p.length,o=0;o"))),o=null;l.t();o=n){n=l.gH(l) -if(o==r){l=b?B.cJ:B.cK -n.jI() -s=n.e -s.toString -A.aqI(s,1,l) -return!0}}return!1}} -A.Zh.prototype={ -$1(a){var s,r,q,p,o,n,m -for(s=a.c,r=s.length,q=this.b,p=this.a,o=0;o")) -break -case 1:s=new A.au(r,new A.Xg(b),A.af(r).j("au<1>")) -break -case 0:case 2:s=null -break -default:s=null}return s}, -a7y(a,b,c){var s=c.dK(0) -A.pI(s,new A.Xh(),t.mx) -switch(a.a){case 0:return new A.au(s,new A.Xi(b),A.af(s).j("au<1>")) -case 2:return new A.au(s,new A.Xj(b),A.af(s).j("au<1>")) -case 3:case 1:break}return null}, -a5Q(a,b,c){var s,r,q=this,p=q.eS$,o=p.h(0,b),n=o!=null -if(n){s=o.a -s=s.length!==0&&B.c.gJ(s).a!==a}else s=!1 -if(s){s=o.a -if(B.c.gR(s).b.Q==null){q.mE(b) -p.B(0,b) -return!1}r=new A.Xd(q,o,b) -switch(a.a){case 2:case 0:switch(B.c.gJ(s).a.a){case 3:case 1:q.mE(b) -p.B(0,b) -break -case 0:case 2:if(r.$1(a))return!0 -break}break -case 3:case 1:switch(B.c.gJ(s).a.a){case 3:case 1:if(r.$1(a))return!0 -break -case 0:case 2:q.mE(b) -p.B(0,b) -break}break}}if(n&&o.a.length===0){q.mE(b) -p.B(0,b)}return!1}, -adr(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=a.glZ(),f=g.dx,e=f.length!==0?B.c.gR(f):h -if(e==null){s=i.acf(a,b) -if(s==null)s=a -switch(b.a){case 0:case 3:A.mI(s,B.cK) -break -case 1:case 2:A.mI(s,B.cJ) -break}return!0}if(i.a5Q(b,g,e))return!0 -f=e.e -f.toString -r=A.jj(f) -f=b.a -switch(f){case 2:case 0:q=i.a7y(b,e.gb7(e),g.grv()) -if(r!=null&&!r.d.gLH()){q.toString -p=new A.au(q,new A.Xl(r),q.$ti.j("au")) -if(!p.gS(p))q=p}if(!q.ga1(q).t()){o=h -break}n=A.ap(q,!0,A.n(q).j("p.E")) -if(b===B.Rg){m=A.af(n).j("ch<1>") -n=A.ap(new A.ch(n,m),!0,m.j("bl.E"))}l=new A.au(n,new A.Xm(new A.w(e.gb7(e).a,-1/0,e.gb7(e).c,1/0)),A.af(n).j("au<1>")) -if(!l.gS(l)){o=l.gJ(l) -break}A.pI(n,new A.Xn(e),t.mx) -o=B.c.gJ(n) -break -case 1:case 3:q=i.a7x(b,e.gb7(e),g) -if(r!=null&&!r.d.gLH()){q.toString -p=new A.au(q,new A.Xo(r),q.$ti.j("au")) -if(!p.gS(p))q=p}if(!q.ga1(q).t()){o=h -break}n=A.ap(q,!0,A.n(q).j("p.E")) -if(b===B.Rh){m=A.af(n).j("ch<1>") -n=A.ap(new A.ch(n,m),!0,m.j("bl.E"))}l=new A.au(n,new A.Xp(new A.w(-1/0,e.gb7(e).b,1/0,e.gb7(e).d)),A.af(n).j("au<1>")) -if(!l.gS(l)){o=l.gJ(l) -break}A.pI(n,new A.Xq(e),t.mx) -o=B.c.gJ(n) -break -default:o=h}if(o!=null){m=i.eS$ -k=m.h(0,g) -j=new A.u0(b,e) -if(k!=null)k.a.push(j) -else m.n(0,g,new A.NF(A.b([j],t.Kj))) -switch(f){case 0:case 3:A.mI(o,B.cK) -break -case 2:case 1:A.mI(o,B.cJ) -break}return!0}return!1}} -A.afr.prototype={ -$1(a){return a.b===this.a}, -$S:372} -A.Xk.prototype={ -$2(a,b){if(this.a)if(this.b)return B.e.aW(a.gb7(a).b,b.gb7(b).b) -else return B.e.aW(b.gb7(b).d,a.gb7(a).d) -else if(this.b)return B.e.aW(a.gb7(a).a,b.gb7(b).a) -else return B.e.aW(b.gb7(b).c,a.gb7(a).c)}, -$S:44} -A.Xe.prototype={ -$2(a,b){return B.e.aW(a.gb7(a).gaT().a,b.gb7(b).gaT().a)}, -$S:44} -A.Xf.prototype={ -$1(a){var s=this.a -return!a.gb7(a).k(0,s)&&a.gb7(a).gaT().a<=s.a}, -$S:17} -A.Xg.prototype={ -$1(a){var s=this.a -return!a.gb7(a).k(0,s)&&a.gb7(a).gaT().a>=s.c}, -$S:17} -A.Xh.prototype={ -$2(a,b){return B.e.aW(a.gb7(a).gaT().b,b.gb7(b).gaT().b)}, -$S:44} -A.Xi.prototype={ -$1(a){var s=this.a -return!a.gb7(a).k(0,s)&&a.gb7(a).gaT().b<=s.b}, -$S:17} -A.Xj.prototype={ -$1(a){var s=this.a -return!a.gb7(a).k(0,s)&&a.gb7(a).gaT().b>=s.d}, -$S:17} -A.Xd.prototype={ -$1(a){var s,r,q=this.b.a.pop().b,p=q.e -p.toString -p=A.jj(p) -s=$.F.D$.f.f.e -s.toString -if(p!=A.jj(s)){p=this.a -s=this.c -p.mE(s) -p.eS$.B(0,s) -return!1}switch(a.a){case 0:case 3:r=B.cK -break -case 1:case 2:r=B.cJ -break -default:r=null}A.mI(q,r) -return!0}, -$S:374} -A.Xl.prototype={ -$1(a){var s=a.e -s.toString -return A.jj(s)===this.a}, -$S:17} -A.Xm.prototype={ -$1(a){var s=a.gb7(a).e2(this.a) -return!s.gS(s)}, -$S:17} -A.Xn.prototype={ -$2(a,b){var s=this.a -return B.e.aW(Math.abs(a.gb7(a).gaT().a-s.gb7(s).gaT().a),Math.abs(b.gb7(b).gaT().a-s.gb7(s).gaT().a))}, -$S:44} -A.Xo.prototype={ -$1(a){var s=a.e -s.toString -return A.jj(s)===this.a}, -$S:17} -A.Xp.prototype={ -$1(a){var s=a.gb7(a).e2(this.a) -return!s.gS(s)}, -$S:17} -A.Xq.prototype={ -$2(a,b){var s=this.a -return B.e.aW(Math.abs(a.gb7(a).gaT().b-s.gb7(s).gaT().b),Math.abs(b.gb7(b).gaT().b-s.gb7(s).gaT().b))}, -$S:44} -A.d8.prototype={ -gMC(){var s=this.d -if(s==null){s=this.c.e -s.toString -s=this.d=new A.afp().$1(s)}s.toString -return s}} -A.afo.prototype={ -$1(a){var s=a.gMC() -return A.k7(s,A.af(s).c)}, -$S:375} -A.afq.prototype={ -$2(a,b){switch(this.a.a){case 1:return B.e.aW(a.b.a,b.b.a) -case 0:return B.e.aW(b.b.c,a.b.c)}}, -$S:139} -A.afp.prototype={ -$1(a){var s,r,q=A.b([],t.vl),p=t.I,o=a.mj(p) -for(;o!=null;){s=o.f -s.toString -q.push(p.a(s)) -s=A.asA(o,1) -if(s==null)o=null -else{s=s.y -r=s==null?null:s.h(0,A.b1(p)) -o=r}}return q}, -$S:377} -A.jB.prototype={ -gb7(a){var s,r,q,p,o=this -if(o.b==null)for(s=o.a,s=new A.az(s,new A.afm(),A.af(s).j("az<1,w>")),s=new A.cL(s,s.gp(s)),r=A.n(s).c;s.t();){q=s.d -if(q==null)q=r.a(q) -p=o.b -if(p==null){o.b=q -p=q}o.b=p.kw(q)}s=o.b -s.toString -return s}} -A.afm.prototype={ -$1(a){return a.b}, -$S:378} -A.afn.prototype={ -$2(a,b){switch(this.a.a){case 1:return B.e.aW(a.gb7(a).a,b.gb7(b).a) -case 0:return B.e.aW(b.gb7(b).c,a.gb7(a).c)}}, -$S:379} -A.JT.prototype={ -ZD(a){var s,r,q,p,o,n=B.c.gJ(a).a,m=t.qi,l=A.b([],m),k=A.b([],t.jE) -for(s=a.length,r=0;r") -return A.ap(new A.au(b,new A.a4t(new A.w(-1/0,s.b,1/0,s.d)),r),!0,r.j("p.E"))}, -$S:380} -A.a4t.prototype={ -$1(a){var s=a.b.e2(this.a) -return!s.gS(s)}, -$S:381} -A.wR.prototype={ -am(){return new A.Of(B.k)}} -A.Of.prototype={ -aB(){this.aS() -this.d=A.Zd(!1,"FocusTraversalGroup",!0,!0,null,null,!0)}, -m(a){var s=this.d -if(s!=null)s.m(0) -this.aR(0)}, -I(a,b){var s=null,r=this.a,q=r.c,p=this.d -p.toString -return new A.u9(q,p,A.wO(!1,!1,r.f,s,!0,!0,p,!1,s,s,s,s,!0),s)}} -A.u9.prototype={ -cZ(a){return!1}} -A.Kp.prototype={ -cM(a){A.mI(a.gc0(a),B.KX)}} -A.o9.prototype={} -A.IE.prototype={ -cM(a){var s=$.F.D$.f.f -s.e.L(t.ag).f.tZ(s,!0)}} -A.on.prototype={} -A.JB.prototype={ -cM(a){var s=$.F.D$.f.f -s.e.L(t.ag).f.tZ(s,!1)}} -A.wh.prototype={ -cM(a){var s -if(!this.c){s=$.F.D$.f.f -s.e.L(t.ag).f.adr(s,a.a)}}} -A.Og.prototype={} -A.Q9.prototype={ -Bo(a,b){var s -this.Sx(a,b) -s=this.eS$.h(0,b) -if(s!=null){s=s.a -if(!!s.fixed$length)A.K(A.N("removeWhere")) -B.c.u7(s,new A.afr(a),!0)}}} -A.SR.prototype={} -A.SS.prototype={} -A.iR.prototype={ -ga5(){var s,r=$.F.D$.z.h(0,this) -if(r instanceof A.hl){s=r.p2 -s.toString -if(A.n(this).c.b(s))return s}return null}} -A.bC.prototype={ -i(a){var s=this,r=s.a,q=r!=null?" "+r:"" -if(A.C(s)===B.RF)return"[GlobalKey#"+A.bF(s)+q+"]" -return"["+("#"+A.bF(s))+q+"]"}} -A.ls.prototype={ -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return this.$ti.b(b)&&b.a===this.a}, -gv(a){return A.mL(this.a)}, -i(a){var s="GlobalObjectKey",r=B.b.kv(s,">")?B.b.N(s,0,-8):s -return"["+r+" "+("#"+A.bF(this.a))+"]"}} -A.h.prototype={ -cv(){var s=this.a -return s==null?"Widget":"Widget-"+s.i(0)}, -k(a,b){if(b==null)return!1 -return this.oI(0,b)}, -gv(a){return A.D.prototype.gv.call(this,this)}} -A.aN.prototype={ -c_(a){return new A.Lq(this,B.a7)}} -A.a1.prototype={ -c_(a){return A.aDw(this)}} -A.Rh.prototype={ -i(a){return"_StateLifecycle."+this.b}} -A.aa.prototype={ -aB(){}, -b4(a){}, -a4(a){a.$0() -this.c.fh()}, -dc(){}, -bL(){}, -m(a){}, -bH(){}} -A.aS.prototype={} -A.dN.prototype={ -c_(a){return new A.od(this,B.a7,A.n(this).j("od"))}} -A.b8.prototype={ -c_(a){return A.aBz(this)}} -A.al.prototype={ -aM(a,b){}, -qc(a){}} -A.I7.prototype={ -c_(a){return new A.I6(this,B.a7)}} -A.aZ.prototype={ -c_(a){return new A.zT(this,B.a7)}} -A.eL.prototype={ -c_(a){return A.aC7(this)}} -A.pa.prototype={ -i(a){return"_ElementLifecycle."+this.b}} -A.Ou.prototype={ -KD(a){a.bb(new A.adq(this,a)) -a.md()}, -a8s(){var s,r,q,p=this -p.a=!0 -r=p.b -q=A.ap(r,!0,A.n(r).j("cF.E")) -B.c.dk(q,A.aiV()) -s=q -r.aG(0) -try{r=s -new A.ch(r,A.aV(r).j("ch<1>")).Y(0,p.ga8q())}finally{p.a=!1}}} -A.adq.prototype={ -$1(a){this.a.KD(a)}, -$S:14} -A.Va.prototype={ -EL(a){var s=this -if(a.at){s.e=!0 -return}if(!s.d&&s.a!=null){s.d=!0 -s.a.$0()}s.c.push(a) -a.at=!0}, -Od(a){try{a.$0()}finally{}}, -pN(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g={},f=b==null -if(f&&h.c.length===0)return -try{h.d=!0 -if(!f){g.a=null -h.e=!1 -try{b.$0()}finally{}}f=h.c -B.c.dk(f,A.aiV()) -h.e=!1 -g.b=f.length -g.c=0 -for(n=0;n=j){k=h.e -k.toString}else k=!0 -if(k){if(!!f.immutable$list)A.K(A.N("sort")) -n=j-1 -if(n-0<=32)A.Lh(f,0,n,A.aiV()) -else A.Lg(f,0,n,A.aiV()) -n=h.e=!1 -g.b=f.length -while(!0){k=g.c -if(!(k>0?f[k-1].as:n))break -g.c=k-1}n=k}}}finally{for(f=h.c,n=f.length,i=0;i#"+A.bF(this)+"(DEFUNCT)":s}, -fh(){var s=this -if(s.w!==B.cb)return -if(s.as)return -s.as=!0 -s.r.EL(s)}, -rh(){if(this.w!==B.cb||!this.as)return -this.iN()}, -$ia0:1} -A.Ya.prototype={ -$1(a){if(a.w===B.vX)return -else if(a instanceof A.bm)this.a.a=a.gF() -else a.bb(this)}, -$S:14} -A.Yb.prototype={ -$1(a){a.AK(this.a) -if(!(a instanceof A.bm))a.bb(this)}, -$S:14} -A.Y7.prototype={ -$1(a){a.KN(this.a)}, -$S:14} -A.Y9.prototype={ -$1(a){a.q6()}, -$S:14} -A.Y8.prototype={ -$1(a){a.uE(this.a)}, -$S:14} -A.H1.prototype={ -aJ(a){var s=this.d,r=new A.zc(s,A.aj()) -r.gar() -r.gaE() -r.CW=!1 -r.Xs(s) -return r}} -A.w2.prototype={ -fj(a,b){this.Fw(a,b) -this.z0()}, -z0(){this.rh()}, -iN(){var s,r,q,p,o,n,m=this,l=null -try{l=m.bq(0) -m.f.toString}catch(o){s=A.ab(o) -r=A.aA(o) -n=A.wE(A.alO(A.bi("building "+m.i(0)),s,r,new A.W2(m))) -l=n}finally{m.as=!1}try{m.ch=m.dN(m.ch,l,m.d)}catch(o){q=A.ab(o) -p=A.aA(o) -n=A.wE(A.alO(A.bi("building "+m.i(0)),q,p,new A.W3(m))) -l=n -m.ch=m.dN(null,l,m.d)}}, -bb(a){var s=this.ch -if(s!=null)a.$1(s)}, -ix(a){this.ch=null -this.jU(a)}} -A.W2.prototype={ -$0(){var s=A.b([],t.F) -return s}, -$S:18} -A.W3.prototype={ -$0(){var s=A.b([],t.F) -return s}, -$S:18} -A.Lq.prototype={ -bq(a){var s=this.f -s.toString -return t.Iz.a(s).I(0,this)}, -bc(a,b){this.t7(0,b) -this.as=!0 -this.rh()}} -A.hl.prototype={ -bq(a){return this.p2.I(0,this)}, -z0(){var s,r=this -try{r.ay=!0 -s=r.p2.aB()}finally{r.ay=!1}r.p2.bH() -r.Se()}, -iN(){var s=this -if(s.p3){s.p2.bH() -s.p3=!1}s.Sf()}, -bc(a,b){var s,r,q,p,o=this -o.t7(0,b) -q=o.p2 -p=q.a -p.toString -s=p -o.as=!0 -p=o.f -p.toString -q.a=t.lb.a(p) -try{o.ay=!0 -r=q.b4(s)}finally{o.ay=!1}o.rh()}, -bL(){this.St() -this.p2.bL() -this.fh()}, -dc(){this.p2.dc() -this.Ft()}, -md(){var s=this -s.xB() -s.p2.m(0) -s.p2=s.p2.c=null}, -BN(a,b){return this.Fu(a,b)}, -bH(){this.Su() -this.p3=!0}} -A.yQ.prototype={ -bq(a){var s=this.f -s.toString -return t.yH.a(s).b}, -bc(a,b){var s=this,r=s.f -r.toString -t.yH.a(r) -s.t7(0,b) -s.Ed(r) -s.as=!0 -s.rh()}, -Ed(a){this.qZ(a)}} -A.od.prototype={ -Gj(a){this.bb(new A.a3f(a))}, -qZ(a){var s=this.f -s.toString -this.Gj(this.$ti.j("dN<1>").a(s))}} -A.a3f.prototype={ -$1(a){if(a instanceof A.bm)this.a.pJ(a.gF()) -else a.bb(this)}, -$S:14} -A.h4.prototype={ -AD(){var s,r=this,q=r.a,p=q==null?null:q.y -q=t.n -s=t.IS -if(p!=null){q=A.iS(q,s) -q.P(0,p) -r.y=q}else q=r.y=A.iS(q,s) -s=r.f -s.toString -q.n(0,A.C(s),r)}, -PI(a,b){this.bQ.n(0,a,null)}, -Os(a,b){b.bH()}, -Ed(a){var s=this.f -s.toString -if(t.WB.a(s).cZ(a))this.T6(a)}, -qZ(a){var s,r,q -for(s=this.bQ,s=new A.BK(s,s.yx()),r=A.n(s).c;s.t();){q=s.d -this.Os(a,q==null?r.a(q):q)}}} -A.bm.prototype={ -gF(){var s=this.ch -s.toString -return s}, -a0f(){var s=this.a -while(!0){if(!(s!=null&&!(s instanceof A.bm)))break -s=s.a}return t.c_.a(s)}, -a0e(){var s,r={},q=r.a=this.a -r.b=null -while(!0){if(!(q!=null&&!(q instanceof A.bm)))break -if(q instanceof A.od){r.b=q -break}s=q.a -r.a=s -q=s}return r.b}, -fj(a,b){var s,r=this -r.Fw(a,b) -s=r.f -s.toString -r.ch=t.F5.a(s).aJ(r) -r.uE(b) -r.as=!1}, -bc(a,b){this.t7(0,b) -this.Jf()}, -iN(){this.Jf()}, -Jf(){var s=this,r=s.f -r.toString -t.F5.a(r).aM(s,s.gF()) -s.as=!1}, -agU(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=new A.a4Z(a4),g=new A.a5_(i),f=a3.length,e=f-1,d=a2.length,c=d-1,b=d===f?a2:A.b7(f,$.amO(),!1,t.u),a=i,a0=0,a1=0 -while(!0){if(!(a1<=c&&a0<=e))break -s=h.$1(a2[a1]) -r=a3[a0] -if(s!=null){f=s.f -f.toString -q=f instanceof A.cb?A.db(f):i -d=A.b1(q==null?A.aV(f):q) -q=r instanceof A.cb?A.db(r):i -f=!(d===A.b1(q==null?A.aV(r):q)&&J.f(f.a,r.a))}else f=!0 -if(f)break -f=j.dN(s,r,g.$2(a0,a)) -f.toString -b[a0]=f;++a0;++a1 -a=f}p=c -while(!0){o=a1<=p -if(!(o&&a0<=e))break -s=h.$1(a2[p]) -r=a3[e] -if(s!=null){f=s.f -f.toString -q=f instanceof A.cb?A.db(f):i -d=A.b1(q==null?A.aV(f):q) -q=r instanceof A.cb?A.db(r):i -f=!(d===A.b1(q==null?A.aV(r):q)&&J.f(f.a,r.a))}else f=!0 -if(f)break;--p;--e}if(o){n=A.z(t.D2,t.u) -for(;a1<=p;){s=h.$1(a2[a1]) -if(s!=null){f=s.f.a -if(f!=null)n.n(0,f,s) -else{s.a=null -s.q6() -f=j.r.b -if(s.w===B.cb){s.dc() -s.bb(A.aiW())}f.b.E(0,s)}}++a1}o=!0}else n=i -for(;a0<=e;a=f){r=a3[a0] -if(o){m=r.a -if(m!=null){s=n.h(0,m) -if(s!=null){f=s.f -f.toString -q=f instanceof A.cb?A.db(f):i -d=A.b1(q==null?A.aV(f):q) -q=r instanceof A.cb?A.db(r):i -if(d===A.b1(q==null?A.aV(r):q)&&J.f(f.a,m))n.B(0,m) -else s=i}}else s=i}else s=i -f=j.dN(s,r,g.$2(a0,a)) -f.toString -b[a0]=f;++a0}e=a3.length-1 -while(!0){if(!(a1<=c&&a0<=e))break -f=j.dN(a2[a1],a3[a0],g.$2(a0,a)) -f.toString -b[a0]=f;++a0;++a1 -a=f}if(o&&n.a!==0)for(f=n.gb2(n),f=new A.eq(J.av(f.a),f.b),d=A.n(f).z[1];f.t();){l=f.a -if(l==null)l=d.a(l) -if(!a4.A(0,l)){l.a=null -l.q6() -k=j.r.b -if(l.w===B.cb){l.dc() -l.bb(A.aiW())}k.b.E(0,l)}}return b}, -dc(){this.Ft()}, -md(){var s=this,r=s.f -r.toString -t.F5.a(r) -s.xB() -r.qc(s.gF()) -s.ch.m(0) -s.ch=null}, -AK(a){var s,r=this,q=r.d -r.Ss(a) -s=r.cx -s.toString -s.iK(r.gF(),q,r.d)}, -uE(a){var s,r,q=this -q.d=a -s=q.cx=q.a0f() -if(s!=null)s.iC(q.gF(),a) -r=q.a0e() -if(r!=null){s=r.f -s.toString -t.IL.a(s).pJ(q.gF())}}, -q6(){var s=this,r=s.cx -if(r!=null){r.iQ(s.gF(),s.d) -s.cx=null}s.d=null}, -iC(a,b){}, -iK(a,b,c){}, -iQ(a,b){}} -A.a4Z.prototype={ -$1(a){var s=this.a.A(0,a) -return s?null:a}, -$S:382} -A.a5_.prototype={ -$2(a,b){return new A.qP(b,a,t.Bc)}, -$S:383} -A.zw.prototype={ -fj(a,b){this.oK(a,b)}} -A.I6.prototype={ -ix(a){this.jU(a)}, -iC(a,b){}, -iK(a,b,c){}, -iQ(a,b){}} -A.zT.prototype={ -bb(a){var s=this.p3 -if(s!=null)a.$1(s)}, -ix(a){this.p3=null -this.jU(a)}, -fj(a,b){var s,r,q=this -q.oK(a,b) -s=q.p3 -r=q.f -r.toString -q.p3=q.dN(s,t.Mp.a(r).c,null)}, -bc(a,b){var s,r,q=this -q.lf(0,b) -s=q.p3 -r=q.f -r.toString -q.p3=q.dN(s,t.Mp.a(r).c,null)}, -iC(a,b){var s=this.ch -s.toString -t.GM.a(s).sb_(a)}, -iK(a,b,c){}, -iQ(a,b){var s=this.ch -s.toString -t.GM.a(s).sb_(null)}} -A.fv.prototype={ -gF(){return t.pU.a(A.bm.prototype.gF.call(this))}, -ghj(a){var s=A.a(this.p3,"_children") -return new A.au(s,new A.a2k(this),A.aV(s).j("au<1>"))}, -iC(a,b){var s=this.gF(),r=b.a -s.CN(0,a,r==null?null:r.gF())}, -iK(a,b,c){var s=this.gF(),r=c.a -s.w5(a,r==null?null:r.gF())}, -iQ(a,b){this.gF().B(0,a)}, -bb(a){var s,r,q,p,o -for(s=A.a(this.p3,"_children"),r=s.length,q=this.p4,p=0;p") -k.d=new A.aC(t.m.a(q),new A.eT(new A.fW(new A.ep(o,1,B.a9)),p,n),n.j("aC"))}}if(s)s=!(isFinite(r.a)&&isFinite(r.b)) -else s=!0 -k.w=s}, -i(a){var s=this,r="manifest",q=A.a(s.f,r).d.b,p=A.a(s.f,r).e.b -return"HeroFlight(for: "+A.e(A.a(s.f,r).f.a.c)+", from: "+q.i(0)+", to: "+p.i(0)+" "+A.e(A.a(s.e,"_proxyAnimation").c)+")"}} -A.ada.prototype={ -$2(a,b){var s=null,r=this.a,q=A.a(r.b,"heroRectTween"),p=A.a(r.e,"_proxyAnimation") -p=q.T(0,p.gl(p)) -p.toString -q=A.a(r.f,"manifest").c -return A.Jy(q.b-p.d,new A.hN(!0,s,new A.hh(A.iQ(!1,b,r.d),s),s),s,s,p.a,q.a-p.c,p.b,s)}, -$S:398} -A.adb.prototype={ -$0(){var s,r=this.a -r.x=!1 -this.b.CW.K(0,this) -s=A.a(r.e,"_proxyAnimation") -r.Je(s.gaZ(s))}, -$S:0} -A.wY.prototype={ -vd(){var s,r,q,p -if(this.a.CW.a)return -s=this.c -s=s.gb2(s) -r=A.n(s).j("au") -q=A.ap(new A.au(s,new A.a_m(),r),!1,r.j("p.E")) -for(s=q.length,p=0;p"),a1=t.k2;r.t();){a2=r.gH(r) -a3=a2.gcG(a2) -a4=a2.gl(a2) -a5=l.h(0,a3) -a6=i.h(0,a3) -if(a5==null)a7=b3 -else{a2=p.k1 -a2.toString -a5.a.toString -a4.a.toString -a7=new A.ad9(b9,q,a2,b7,b8,a4,a5,j,k,c0,a6!=null)}if(a7!=null&&a7.gbv()){l.B(0,a3) -if(a6!=null){if(A.a(a6.f,b4).a===B.cp&&a7.a===B.bV){A.a(a6.e,b5).sa3(0,new A.i4(a7.ghH(a7),new A.aM(A.b([],f),e),0)) -a2=A.a(a6.b,b6) -a6.b=new A.zv(a2,a2.b,a2.a,a1)}else if(A.a(a6.f,b4).a===B.bV&&a7.a===B.cp){a2=A.a(a6.e,b5) -a8=a7.ghH(a7) -a9=A.a(a6.f,b4) -a9=a9.ghH(a9) -a9=a9.gl(a9) -a2.sa3(0,new A.aC(a.a(a8),new A.ar(a9,1,b),a0)) -a2=A.a(a6.f,b4).f -a8=a7.r -a9=a6.f -if(a2!==a8){A.a(a9,b4).f.nt(!0) -a8.xn() -a6.b=A.a(a6.f,b4).q1(A.a(a6.b,b6).b,a7.gww())}else a6.b=A.a(a9,b4).q1(A.a(a6.b,b6).b,A.a(a6.b,b6).a)}else{a2=A.a(a6.f,b4) -a8=A.a(a6.b,b6) -a9=A.a(a6.e,b5) -a6.b=a2.q1(a8.T(0,a9.gl(a9)),a7.gww()) -a6.c=null -a2=a7.a -a8=a6.e -if(a2===B.bV)A.a(a8,b5).sa3(0,new A.i4(a7.ghH(a7),new A.aM(A.b([],f),e),0)) -else A.a(a8,b5).sa3(0,a7.ghH(a7)) -A.a(a6.f,b4).f.nt(!0) -A.a(a6.f,b4).r.nt(!0) -a7.f.xo(a2===B.cp) -a7.r.xn() -a2=a6.r.f.ga5() -if(a2!=null)a2.IP()}a6.f=a7}else{a2=new A.kO(g,B.cT) -a8=A.b([],f) -a9=new A.aM(a8,e) -b0=new A.yO(a9,new A.aM(A.b([],d),c),0) -b0.a=B.w -b0.b=0 -b0.cf() -a9.b=!0 -a8.push(a2.ga1d()) -a2.e=b0 -a2.f=a7 -switch(A.a(a7,b4).a.a){case 1:a8=A.a(a2.e,b5) -a9=A.a(a2.f,b4) -a8.sa3(0,new A.i4(a9.ghH(a9),new A.aM(A.b([],f),e),0)) -b1=!1 -break -case 0:a8=A.a(a2.e,b5) -a9=A.a(a2.f,b4) -a8.sa3(0,a9.ghH(a9)) -b1=!0 -break -default:b1=b3}a2.b=A.a(a2.f,b4).q1(A.a(a2.f,b4).gNo(),A.a(a2.f,b4).gww()) -A.a(a2.f,b4).f.xo(b1) -A.a(a2.f,b4).r.xn() -a8=A.a(a2.f,b4).b -a9=new A.j6(a2.gZ4(),!1,new A.bC(b3,h),$.b4()) -a2.r=a9 -a8.qG(0,a9) -a9=A.a(a2.e,b5) -a9.cf() -a9=a9.bj$ -a9.b=!0 -a9.a.push(a2.gOB()) -i.n(0,a3,a2)}}else if(a6!=null)a6.w=!0}for(r=l.gb2(l),r=r.ga1(r);r.t();)r.gH(r).MS()}, -a1Y(a){this.c.B(0,A.a(a.f,"manifest").f.a.c)}, -a_c(a,b,c,d,e){var s=e.f -s.toString -return t.rA.a(s).e}} -A.a_m.prototype={ -$1(a){var s,r="manifest" -if(A.a(a.f,r).y)if(A.a(a.f,r).a===B.bV){s=A.a(a.e,"_proxyAnimation") -s=s.gaZ(s)===B.w}else s=!1 -else s=!1 -return s}, -$S:401} -A.a_l.prototype={ -$1(a){var s=this -s.a.K8(s.b,s.c,s.d,s.e)}, -$S:2} -A.nI.prototype={ -I(a,b){var s,r,q,p,o,n,m,l=null,k=b.L(t.I) -k.toString -s=k.f -r=A.app(b) -q=this.d -if(q==null)q=r.c -k=this.c -if(k==null)return A.bq(l,A.dz(l,q,q),!1,l,l,!1,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l) -p=r.gdJ(r) -if(p==null)p=1 -o=r.a -o.toString -if(p!==1)n=A.ak(B.e.aI(255*((o.gl(o)>>>24&255)/255*p)),o.gl(o)>>>16&255,o.gl(o)>>>8&255,o.gl(o)&255) -else n=o -o=A.fb(k.a) -m=A.aqC(l,l,B.vE,!0,l,A.hm(l,A.ck(l,l,n,l,l,l,l,l,k.b,l,l,q,l,l,l,l,!1,l,l,l,l,k.c,r.d,l,l),o),B.bm,s,l,1,B.aA) -if(k.d)switch(s.a){case 0:k=new A.bb(new Float64Array(16)) -k.dC() -k.os(0,-1,1,1) -m=A.LZ(B.M,m,k,!1) -break -case 1:break}return A.bq(l,new A.lp(!0,A.dz(A.jM(m,l,l),q,q),l),!1,l,l,!1,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)}} -A.h2.prototype={ -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.h2&&b.a===s.a&&b.b===s.b&&b.c==s.c&&b.d===s.d}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -i(a){return"IconData(U+"+B.b.m2(B.f.iV(this.a,16).toUpperCase(),5,"0")+")"}} -A.nJ.prototype={ -cZ(a){return!this.w.k(0,a.w)}, -Eh(a,b,c){return A.HK(c,this.w,null)}, -gbN(a){return this.w}} -A.a06.prototype={ -$1(a){return A.HK(this.c,A.apo(a).bg(this.b),this.a)}, -$S:402} -A.cK.prototype={ -q_(a,b,c,d){var s=this,r=a==null?s.a:a,q=b==null?s.gdJ(s):b,p=d==null?s.c:d -return new A.cK(r,q,p,c==null?s.d:c)}, -fI(a){return this.q_(a,null,null,null)}, -bg(a){var s,r,q -if(a==null)return this -s=a.a -r=a.gdJ(a) -q=a.c -return this.q_(s,r,a.d,q)}, -O(a){return this}, -gdJ(a){var s=this.b -return s==null?null:B.e.G(s,0,1)}, -k(a,b){var s=this -if(b==null)return!1 -if(J.W(b)!==A.C(s))return!1 -return b instanceof A.cK&&J.f(b.a,s.a)&&b.gdJ(b)==s.gdJ(s)&&b.c==s.c&&A.dV(b.d,s.d)}, -gv(a){var s=this,r=s.gdJ(s),q=s.d -q=q==null?null:A.f9(q) -return A.a3(s.a,r,s.c,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Or.prototype={} -A.x3.prototype={ -am(){return new A.BO(B.k)}} -A.BO.prototype={ -aB(){var s=this -s.aS() -$.F.au$.push(s) -s.z=new A.GP(s)}, -m(a){var s,r=this -B.c.B($.F.au$,r) -r.a7I() -s=r.at -if(s!=null)s.m(0) -A.a(r.z,"_scrollAwareContext").a=null -r.zY(null) -r.aR(0)}, -bH(){var s,r=this -r.a8z() -r.Jz() -s=r.c -s.toString -if(A.ale(s))r.a4r() -else r.Kd(!0) -r.e9()}, -b4(a){var s=this -s.bu(a) -if(s.r)s.a.toString -if(!s.a.c.k(0,a.c))s.Jz()}, -a8z(){var s=this.c -s.toString -s=A.e4(s) -s=s==null?null:s.z -if(s==null){A.a($.zP.qo$,"_accessibilityFeatures") -s=!1}this.w=s}, -Jz(){var s,r=this,q=A.a(r.z,"_scrollAwareContext"),p=r.a,o=p.c,n=r.c -n.toString -s=p.r -p=p.w -r.a8O(new A.zE(q,o,t.JE).O(A.aiH(n,new A.L(s,p))))}, -a0U(a){var s=this,r=s.ax -if(r==null||a){s.as=s.Q=null -s.a.toString -r=s.ax=new A.h3(s.ga2c(),null,null)}r.toString -return r}, -tD(){return this.a0U(!1)}, -a2d(a,b){this.a4(new A.adn(this,a,b))}, -zY(a){var s=this.e -if(s!=null)s.a.m(0) -this.e=a}, -a8O(a){var s,r,q=this,p=q.d -if(p==null)s=null -else{s=p.a -if(s==null)s=p}r=a.a -if(s===(r==null?a:r))return -if(q.r){p.toString -p.K(0,q.tD())}q.a.toString -q.a4(new A.ado(q)) -q.a4(new A.adp(q)) -q.d=a -if(q.r)a.a2(0,q.tD())}, -a4r(){var s,r=this -if(r.r)return -s=r.d -s.toString -s.a2(0,r.tD()) -s=r.at -if(s!=null)s.m(0) -r.at=null -r.r=!0}, -Kd(a){var s,r,q=this -if(!q.r)return -if(a)if(q.at==null){s=q.d -s=(s==null?null:s.a)!=null}else s=!1 -else s=!1 -if(s){s=q.d.a -if(s.w)A.K(A.X(u.V)) -r=new A.qM(s) -r.tf(s) -q.at=r}s=q.d -s.toString -s.K(0,q.tD()) -q.r=!1}, -a7I(){return this.Kd(!1)}, -I(a,b){var s,r,q,p,o,n,m,l=this,k=null -if(l.Q!=null)l.a.toString -s=l.e -r=s==null -q=r?k:s.a -p=r?k:s.c -o=l.a -n=o.r -o=o.w -s=r?k:s.b -if(s==null)s=1 -r=A.a(l.w,"_invertColors") -l.a.toString -m=A.bq(k,new A.JQ(q,p,n,o,s,k,k,B.n3,k,k,B.M,B.cr,k,!1,r,!1,k),!1,k,k,!1,k,k,k,!0,"",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k) -return m}} -A.adn.prototype={ -$0(){var s,r=this.a -r.zY(this.b) -r.as=r.Q=r.f=null -s=r.x -r.x=s==null?0:s+1 -r.y=B.d1.wU(r.y,this.c)}, -$S:0} -A.ado.prototype={ -$0(){this.a.zY(null)}, -$S:0} -A.adp.prototype={ -$0(){var s=this.a -s.x=s.f=null -s.y=!1}, -$S:0} -A.SE.prototype={} -A.GE.prototype={ -en(a){var s=A.Wx(this.a,this.b,a) -s.toString -return s}} -A.ni.prototype={ -en(a){var s=A.eo(this.a,this.b,a) -s.toString -return s}} -A.n_.prototype={ -en(a){return A.n0(this.a,this.b,a)}} -A.oS.prototype={ -en(a){var s=A.bj(this.a,this.b,a) -s.toString -return s}} -A.HM.prototype={} -A.qN.prototype={ -glk(){var s,r,q=this,p=q.d -if(p===$){s=q.a.d -r=A.bo(null,s,null,null,q) -A.ba(q.d,"_controller") -q.d=r -p=r}return p}, -gfv(){var s,r=this,q=r.e -if(q===$){s=r.glk() -q=r.e=A.cn(r.a.c,s,null)}return q}, -aB(){var s=this -s.aS() -s.glk().c1(new A.a0o(s)) -s.GZ() -s.BZ()}, -b4(a){var s,r=this -r.bu(a) -if(r.a.c!==a.c){r.gfv().m(0) -s=r.glk() -r.e=A.cn(r.a.c,s,null)}r.glk().e=r.a.d -if(r.GZ()){r.lR(new A.a0n(r)) -s=r.glk() -s.sl(0,0) -s.bp(0) -r.BZ()}}, -m(a){this.gfv().m(0) -this.glk().m(0) -this.U8(0)}, -a8P(a,b){var s -if(a==null)return -s=this.gfv() -a.sBf(a.T(0,s.gl(s))) -a.saO(0,b)}, -GZ(){var s={} -s.a=!1 -this.lR(new A.a0m(s,this)) -return s.a}, -BZ(){}} -A.a0o.prototype={ -$1(a){switch(a.a){case 3:this.a.a.toString -break -case 0:case 1:case 2:break}}, -$S:3} -A.a0n.prototype={ -$3(a,b,c){this.a.a8P(a,b) -return a}, -$S:150} -A.a0m.prototype={ -$3(a,b,c){var s -if(b!=null){if(a==null)a=c.$1(b) -s=a.b -if(!J.f(b,s==null?a.a:s))this.a.a=!0}else a=null -return a}, -$S:150} -A.pQ.prototype={ -aB(){this.SC() -var s=this.glk() -s.cf() -s=s.bj$ -s.b=!0 -s.a.push(this.ga1b())}, -a1c(){this.a4(new A.Ui())}} -A.Ui.prototype={ -$0(){}, -$S:0} -A.vh.prototype={ -am(){return new A.Mv(null,null,B.k)}} -A.Mv.prototype={ -lR(a){this.CW=t.Om.a(a.$3(this.CW,this.a.r,new A.aaQ()))}, -I(a,b){var s,r=this.CW -r.toString -s=this.gfv() -return new A.cq(J.anb(r.T(0,s.gl(s)),B.aP,B.lN),this.a.w,null)}} -A.aaQ.prototype={ -$1(a){return new A.ni(t.A0.a(a),null)}, -$S:404} -A.vg.prototype={ -am(){return new A.Mu(null,null,B.k)}} -A.Mu.prototype={ -lR(a){this.z=t.ir.a(a.$3(this.z,this.a.w,new A.aaP()))}, -BZ(){var s=this.gfv(),r=this.z -r.toString -this.Q=new A.aC(t.m.a(s),r,A.n(r).j("aC"))}, -I(a,b){var s=A.a(this.Q,"_opacityAnimation"),r=this.a -return A.iQ(r.x,r.r,s)}} -A.aaP.prototype={ -$1(a){return new A.ar(A.pw(a),null,t.Y)}, -$S:99} -A.ve.prototype={ -am(){return new A.Mt(null,null,B.k)}} -A.Mt.prototype={ -lR(a){this.CW=t.Dh.a(a.$3(this.CW,this.a.w,new A.aaO()))}, -I(a,b){var s,r=null,q=this.CW -q.toString -s=this.gfv() -s=q.T(0,s.gl(s)) -return A.jQ(this.a.r,r,r,B.bJ,!0,s,r,r,B.aA)}} -A.aaO.prototype={ -$1(a){return new A.oS(t.em.a(a),null)}, -$S:405} -A.vi.prototype={ -am(){return new A.Mw(null,null,B.k)}} -A.Mw.prototype={ -lR(a){var s=this,r=s.CW -s.a.toString -s.CW=t.eJ.a(a.$3(r,B.b0,new A.aaR())) -s.cx=t.ir.a(a.$3(s.cx,s.a.z,new A.aaS())) -r=t.YJ -s.cy=r.a(a.$3(s.cy,s.a.Q,new A.aaT())) -s.db=r.a(a.$3(s.db,s.a.at,new A.aaU()))}, -I(a,b){var s,r,q,p,o,n=this,m=n.a,l=m.w -m=m.x -s=n.CW -s.toString -r=n.gfv() -r=s.T(0,r.gl(r)) -s=n.cx -s.toString -q=n.gfv() -q=s.T(0,q.gl(q)) -s=n.a.Q -p=n.db -p.toString -o=n.gfv() -o=p.T(0,o.gl(o)) -o.toString -return new A.Jn(l,m,r,q,s,o,n.a.r,null)}} -A.aaR.prototype={ -$1(a){return new A.n_(t.m_.a(a),null)}, -$S:406} -A.aaS.prototype={ -$1(a){return new A.ar(A.pw(a),null,t.Y)}, -$S:99} -A.aaT.prototype={ -$1(a){return new A.de(t.n8.a(a),null)}, -$S:56} -A.aaU.prototype={ -$1(a){return new A.de(t.n8.a(a),null)}, -$S:56} -A.ui.prototype={ -m(a){var s=this,r=s.cz$ -if(r!=null)r.K(0,s.gkh()) -s.cz$=null -s.aR(0)}, -bL(){this.cw() -this.ck() -this.ki()}} -A.lv.prototype={ -c_(a){return new A.x8(A.iS(t.u,t.X),this,B.a7,A.n(this).j("x8"))}} -A.x8.prototype={ -PI(a,b){var s=this.bQ,r=this.$ti,q=r.j("b0<1>?").a(s.h(0,a)) -if(q!=null&&q.gS(q))return -s.n(0,a,A.cf(r.c))}, -Os(a,b){var s,r=this.$ti,q=r.j("b0<1>?").a(this.bQ.h(0,b)) -if(q==null)return -if(!q.gS(q)){s=this.f -s.toString -s=r.j("lv<1>").a(s).agZ(a,q) -r=s}else r=!0 -if(r)b.bH()}} -A.h5.prototype={ -cZ(a){return a.f!==this.f}, -c_(a){var s=new A.uj(A.iS(t.u,t.X),this,B.a7,A.n(this).j("uj")) -this.f.a2(0,s.gzj()) -return s}} -A.uj.prototype={ -bc(a,b){var s,r,q=this,p=q.f -p.toString -s=q.$ti.j("h5<1>").a(p).f -r=b.f -if(s!==r){p=q.gzj() -s.K(0,p) -r.a2(0,p)}q.T5(0,b)}, -bq(a){var s,r=this -if(r.cX){s=r.f -s.toString -r.Fz(r.$ti.j("h5<1>").a(s)) -r.cX=!1}return r.T4(0)}, -a3J(){this.cX=!0 -this.fh()}, -qZ(a){this.Fz(a) -this.cX=!1}, -md(){var s=this,r=s.f -r.toString -s.$ti.j("h5<1>").a(r).f.K(0,s.gzj()) -s.xB()}} -A.dL.prototype={} -A.a0s.prototype={ -$1(a){var s,r,q -if(a===this.a)return!1 -if(a instanceof A.h4){s=a.f -s.toString -s=s instanceof A.dL}else s=!1 -if(s){s=a.f -s.toString -t.og.a(s) -r=A.C(s) -q=this.c -if(!q.A(0,r)){q.E(0,r) -this.d.push(s)}}return!0}, -$S:49} -A.FC.prototype={} -A.MZ.prototype={ -I(a,b){var s,r,q,p=this.d -for(s=this.c,r=s.length,q=0;q"))}} -A.un.prototype={ -gF(){return this.$ti.j("fz<1,u>").a(A.bm.prototype.gF.call(this))}, -bb(a){var s=this.p3 -if(s!=null)a.$1(s)}, -ix(a){this.p3=null -this.jU(a)}, -fj(a,b){var s=this -s.oK(a,b) -s.$ti.j("fz<1,u>").a(A.bm.prototype.gF.call(s)).E8(s.gIE())}, -bc(a,b){var s,r=this -r.lf(0,b) -s=r.$ti.j("fz<1,u>") -s.a(A.bm.prototype.gF.call(r)).E8(r.gIE()) -s=s.a(A.bm.prototype.gF.call(r)) -s.vo$=!0 -s.a0()}, -iN(){var s=this.$ti.j("fz<1,u>").a(A.bm.prototype.gF.call(this)) -s.vo$=!0 -s.a0() -this.xK()}, -md(){this.$ti.j("fz<1,u>").a(A.bm.prototype.gF.call(this)).E8(null) -this.Ti()}, -a4j(a){this.r.pN(this,new A.adR(this,a))}, -iC(a,b){this.$ti.j("fz<1,u>").a(A.bm.prototype.gF.call(this)).sb_(a)}, -iK(a,b,c){}, -iQ(a,b){this.$ti.j("fz<1,u>").a(A.bm.prototype.gF.call(this)).sb_(null)}} -A.adR.prototype={ -$0(){var s,r,q,p,o,n,m,l,k=this,j=null -try{o=k.a -n=o.f -n.toString -o.$ti.j("lh<1>").a(n) -j=n.c.$2(o,k.b) -o.f.toString}catch(m){s=A.ab(m) -r=A.aA(m) -o=k.a -l=A.wE(A.asu(A.bi("building "+o.f.i(0)),s,r,new A.adS(o))) -j=l}try{o=k.a -o.p3=o.dN(o.p3,j,null)}catch(m){q=A.ab(m) -p=A.aA(m) -o=k.a -l=A.wE(A.asu(A.bi("building "+o.f.i(0)),q,p,new A.adT(o))) -j=l -o.p3=o.dN(null,j,o.d)}}, -$S:0} -A.adS.prototype={ -$0(){var s=A.b([],t.F) -return s}, -$S:18} -A.adT.prototype={ -$0(){var s=A.b([],t.F) -return s}, -$S:18} -A.fz.prototype={ -E8(a){if(J.f(a,this.Ck$))return -this.Ck$=a -this.a0()}} -A.I5.prototype={ -aJ(a){var s=new A.CQ(null,!0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -return s}} -A.CQ.prototype={ -b1(a){return 0}, -aU(a){return 0}, -aX(a){return 0}, -b0(a){return 0}, -c4(a){return B.o}, -bK(){var s=this,r=t.k,q=r.a(A.u.prototype.ga_.call(s)) -if(s.vo$||!r.a(A.u.prototype.ga_.call(s)).k(0,s.N8$)){s.N8$=r.a(A.u.prototype.ga_.call(s)) -s.vo$=!1 -r=s.Ck$ -r.toString -s.CR(r,A.n(s).j("fz.0"))}r=s.q$ -if(r!=null){r.cH(0,q,!0) -r=s.q$.k1 -r.toString -s.k1=q.bo(r)}else s.k1=new A.L(B.f.G(1/0,q.a,q.b),B.f.G(1/0,q.c,q.d))}, -dW(a){var s=this.q$ -if(s!=null)return s.jR(a) -return this.xH(a)}, -cL(a,b){var s=this.q$ -s=s==null?null:s.bD(a,b) -return s===!0}, -aH(a,b){var s=this.q$ -if(s!=null)a.df(s,b)}} -A.SU.prototype={ -aj(a){var s -this.dE(a) -s=this.q$ -if(s!=null)s.aj(a)}, -aa(a){var s -this.d7(0) -s=this.q$ -if(s!=null)s.aa(0)}} -A.SV.prototype={} -A.uz.prototype={} -A.ai8.prototype={ -$1(a){return this.a.a=a}, -$S:32} -A.ai9.prototype={ -$1(a){return a.b}, -$S:407} -A.aia.prototype={ -$1(a){var s,r,q,p -for(s=J.ax(a),r=this.a,q=this.b,p=0;ps.b?B.hE:B.Kg}, -BA(a,b,c,d,e,f){var s=this,r=d==null?s.c:d,q=b==null?s.f:b,p=f==null?s.r:f,o=e==null?s.e:e,n=a==null?s.ch:a -return A.akJ(s.y,!1,s.at,s.b,s.as,n,s.ay,s.Q,s.z,s.ax,q,s.d,s.a,s.w,r,o,p)}, -uZ(a){return this.BA(null,null,null,a,null,null)}, -Mb(a){return this.BA(null,a,null,null,null,null)}, -aaW(a,b,c,d){return this.BA(a,b,null,null,c,d)}, -P9(a,b,c,d){var s,r,q,p,o,n,m=this,l=null -if(!(b||d||c||a))return m -s=m.f -r=b?0:l -q=d?0:l -p=c?0:l -r=s.lI(a?0:l,r,p,q) -q=m.r -p=b?Math.max(0,q.a-s.a):l -o=d?Math.max(0,q.b-s.b):l -n=c?Math.max(0,q.c-s.c):l -return A.akJ(m.y,!1,m.at,m.b,m.as,m.ch,m.ay,m.Q,m.z,B.bB,r,m.d,m.a,B.aP,m.c,m.e,q.lI(a?Math.max(0,q.d-s.d):l,p,n,o))}, -Pe(a,b,c,d){var s,r,q,p,o,n,m=this,l=null -if(!b)!d -s=m.r -r=b?Math.max(0,s.a-m.e.a):l -q=d?Math.max(0,s.b-m.e.b):l -p=c?Math.max(0,s.c-m.e.c):l -o=m.e -n=Math.max(0,s.d-o.d) -s=s.lI(n,r,p,q) -r=b?0:l -q=d?0:l -p=c?0:l -return A.akJ(m.y,!1,m.at,m.b,m.as,m.ch,m.ay,m.Q,m.z,B.bB,m.f,m.d,m.a,B.aP,m.c,o.lI(0,r,p,q),s)}, -afY(a){return this.Pe(a,!1,!1,!1)}, -afW(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=a.c,f=a.a,e=a.d,d=a.b,c=h.a -if(new A.L(g-f,e-d).k(0,c)&&new A.m(f,d).k(0,B.j))return h -s=c.a-g -r=c.b-e -g=h.f -e=Math.max(0,g.a-f) -c=Math.max(0,g.b-d) -q=Math.max(0,g.c-s) -g=Math.max(0,g.d-r) -p=h.r -o=Math.max(0,p.a-f) -n=Math.max(0,p.b-d) -m=Math.max(0,p.c-s) -p=Math.max(0,p.d-r) -l=h.e -f=Math.max(0,l.a-f) -d=Math.max(0,l.b-d) -k=Math.max(0,l.c-s) -l=Math.max(0,l.d-r) -j=h.ch -i=A.af(j).j("au<1>") -return h.aaW(A.ap(new A.au(j,new A.a1U(a),i),!0,i.j("p.E")),new A.as(e,c,q,g),new A.as(f,d,k,l),new A.as(o,n,m,p))}, -k(a,b){var s,r=this -if(b==null)return!1 -if(J.W(b)!==A.C(r))return!1 -if(b instanceof A.xY)if(b.a.k(0,r.a))if(b.b===r.b)if(b.c===r.c)if(b.d===r.d)if(b.f.k(0,r.f))if(b.r.k(0,r.r))if(b.e.k(0,r.e))s=b.Q===r.Q&&b.as===r.as&&b.z===r.z&&b.y===r.y&&b.at===r.at&&b.ax===r.ax&&b.ay.k(0,r.ay)&&A.dV(b.ch,r.ch) -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gv(a){var s=this -return A.a3(s.a,s.b,s.c,s.d,s.f,s.r,s.e,!1,s.Q,s.as,s.z,s.y,s.at,s.ax,s.ay,A.f9(s.ch),B.a,B.a,B.a,B.a)}, -i(a){var s=this -return"MediaQueryData("+B.c.bB(A.b(["size: "+s.a.i(0),"devicePixelRatio: "+B.e.V(s.b,1),"textScaleFactor: "+B.e.V(s.c,1),"platformBrightness: "+s.d.i(0),"padding: "+s.f.i(0),"viewPadding: "+s.r.i(0),"viewInsets: "+s.e.i(0),"alwaysUse24HourFormat: false","accessibleNavigation: "+s.y,"highContrast: "+s.Q,"disableAnimations: "+s.as,"invertColors: "+s.z,"boldText: "+s.at,"navigationMode: "+s.ax.b,"gestureSettings: "+s.ay.i(0),"displayFeatures: "+A.e(s.ch)],t.s),", ")+")"}} -A.a1U.prototype={ -$1(a){return this.a.r4(a.gjb(a))}, -$S:135} -A.hb.prototype={ -cZ(a){return!this.f.k(0,a.f)}, -gbN(a){return this.f}} -A.IC.prototype={ -i(a){return"NavigationMode."+this.b}} -A.Cj.prototype={ -am(){return new A.P1(B.k)}} -A.P1.prototype={ -aB(){this.aS() -$.F.au$.push(this)}, -BQ(){this.a4(new A.aeH())}, -MA(){this.a4(new A.aeJ())}, -Mz(){this.a4(new A.aeI())}, -I(a,b){var s,r,q,p,o,n,m,l -$.F.toString -s=$.bW() -r=s.gkO() -q=s.w -r=r.eu(0,q==null?A.aX():q) -q=s.w -if(q==null)q=A.aX() -p=s.b.a -s.gmf() -o=s.w -o=A.XE(B.eP,o==null?A.aX():o) -s.gmf() -n=s.w -n=A.XE(B.eP,n==null?A.aX():n) -m=s.e -l=s.w -m=A.XE(m,l==null?A.aX():l) -s.gmf() -l=s.w -l=A.XE(B.eP,l==null?A.aX():l) -s.gmf() -s.gmf() -return new A.hb(new A.xY(r,q,p.e,p.d,m,o,n,l,!1,!1,!1,!1,!1,!1,B.bB,new A.wd(null),B.EJ),this.a.c,null)}, -m(a){B.c.B($.F.au$,this) -this.aR(0)}} -A.aeH.prototype={ -$0(){}, -$S:0} -A.aeJ.prototype={ -$0(){}, -$S:0} -A.aeI.prototype={ -$0(){}, -$S:0} -A.SJ.prototype={} -A.Ir.prototype={ -I(a,b){var s,r,q,p,o,n,m,l,k=this,j=null -switch(A.dI().a){case 0:case 1:case 3:case 5:s=!1 -break -case 2:case 4:s=!0 -break -default:s=j}r=k.d&&s -q=new A.a28(k,b) -p=!r||!1 -o=r?k.r:j -n=r?q:j -if(r&&k.r!=null){m=b.L(t.I) -m.toString -m=m.f}else m=j -l=k.c -return A.azN(new A.lp(p,new A.P7(A.bq(j,A.o5(new A.eZ(B.mc,l==null?j:new A.lg(l,j,j),j),B.eK,j,j,j,j),!1,j,j,!1,j,j,j,j,o,j,j,j,j,j,j,n,j,j,j,j,j,j,j,j,m,j,j),q,j),j))}} -A.a28.prototype={ -$0(){if(this.a.d)A.apZ(this.b) -else A.Lz(B.N8)}, -$S:0} -A.F2.prototype={ -I(a,b){var s=t.Bs.a(this.c) -return A.akL(!0,s.gl(s),this.e,this.f)}} -A.tL.prototype={ -hr(a){if(this.y1==null)return!1 -return this.oG(a)}, -Nv(a){}, -Nw(a,b){var s=this.y1 -if(s!=null)s.$0()}, -vz(a,b,c){}} -A.aeK.prototype={ -Ba(a){a.siL(this.a)}} -A.MB.prototype={ -Bt(a){var s=t.S,r=A.cf(s) -return new A.tL(B.an,18,B.bv,A.z(s,t.G),r,null,null,A.z(s,t.C))}, -NN(a){a.y1=this.a}} -A.P7.prototype={ -I(a,b){var s=this.d -return new A.km(this.c,A.aB([B.S4,new A.MB(s)],t.n,t.xR),B.ao,!1,new A.aeK(s),null)}} -A.ID.prototype={ -I(a,b){var s,r,q=this,p=b.L(t.I) -p.toString -s=A.b([],t.p) -r=q.c -if(r!=null)s.push(A.a1k(r,B.f9)) -r=q.d -if(r!=null)s.push(A.a1k(r,B.fa)) -r=q.e -if(r!=null)s.push(A.a1k(r,B.fb)) -return new A.ne(new A.agR(q.f,q.r,p.f),s,null)}} -A.uP.prototype={ -i(a){return"_ToolbarSlot."+this.b}} -A.agR.prototype={ -wc(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -if(f.b.h(0,B.f9)!=null){s=a.a -r=a.b -q=f.eK(B.f9,new A.aF(0,s/3,r,r)).a -switch(f.f.a){case 0:p=s-q -break -case 1:p=0 -break -default:p=null}f.eV(B.f9,new A.m(p,0))}else q=0 -if(f.b.h(0,B.fb)!=null){o=f.eK(B.fb,A.ak3(a)) -switch(f.f.a){case 0:n=0 -break -case 1:n=a.a-o.a -break -default:n=null}m=o.a -f.eV(B.fb,new A.m(n,(a.b-o.b)/2))}else m=0 -if(f.b.h(0,B.fa)!=null){s=a.a -r=f.e -l=Math.max(s-q-m-r*2,0) -k=f.eK(B.fa,A.ak3(a).pX(l)) -j=q+r -if(f.d){r=k.a -i=(s-r)/2 -h=s-m -if(i+r>h)i=h-r -else if(i")) -s=r.nM(r,new A.a5N(),new A.a5O()) -if(s==null)return!1 -return s.a===this}, -gO0(){var s,r=this.a -if(r==null)return!1 -r=r.e -r=new A.cu(r,A.af(r).j("cu<1,dG?>")) -s=r.nC(r,new A.a5P(),new A.a5Q()) -if(s==null)return!1 -return s.a===this}, -gNz(){var s,r,q,p,o=this.a -if(o==null)return!1 -for(o=o.e,s=o.length,r=0;r=1)return!0}return!1}, -gadL(){var s=this.a -if(s==null)return!1 -s=s.e -s=new A.cu(s,A.af(s).j("cu<1,dG?>")) -s=s.nC(s,new A.a5L(this),new A.a5M()) -s=s==null?null:s.glW() -return s===!0}} -A.a5K.prototype={ -$1(a){var s,r=this.a.a -if(r==null)s=null -else{r.a.toString -s=!0}if(s===!0)r.x.jI()}, -$S:20} -A.a5J.prototype={ -$1(a){var s=this.a.a -if(s!=null)s.x.jI()}, -$S:20} -A.a5N.prototype={ -$1(a){return a!=null&&a.glW()}, -$S:35} -A.a5O.prototype={ -$0(){return null}, -$S:6} -A.a5P.prototype={ -$1(a){return a!=null&&a.glW()}, -$S:35} -A.a5Q.prototype={ -$0(){return null}, -$S:6} -A.a5L.prototype={ -$1(a){return a!=null&&A.arS(this.a).$1(a)}, -$S:35} -A.a5M.prototype={ -$0(){return null}, -$S:6} -A.i5.prototype={ -i(a){return'RouteSettings("'+A.e(this.a)+'", '+A.e(this.b)+")"}, -gaN(a){return this.a}} -A.o8.prototype={} -A.nD.prototype={ -cZ(a){return a.f!=this.f}} -A.a5I.prototype={} -A.M2.prototype={} -A.GJ.prototype={} -A.yd.prototype={ -am(){var s=null,r=A.b([],t.uD),q=$.b4(),p=t.Tp -return new A.j3(r,new A.Om(q),A.j2(s,p),A.j2(s,p),A.Zf(!0,"Navigator Scope",!1),new A.zt(0,q,t.dZ),new A.d7(!1,q),A.aK(t.S),s,A.z(t.yb,t.T),s,!0,s,s,s,B.k)}, -aeK(a,b){return this.z.$2(a,b)}} -A.a2C.prototype={ -$1(a){return a==null}, -$S:412} -A.ez.prototype={ -i(a){return"_RouteLifecycle."+this.b}} -A.Pi.prototype={} -A.dG.prototype={ -gfn(){var s=this.b -if(s!=null)return"r+"+s.gPn() -return null}, -acY(a,b,c,d){var s,r,q,p=this,o=p.c,n=p.a -n.a=b -n.kF() -s=p.c -if(s===B.lS||s===B.w2){r=n.qa() -p.c=B.w3 -r.ah8(new A.afZ(p,b))}else{n.BV(c) -p.c=B.dJ}if(a)n.q8(null) -s=o===B.TL||o===B.w2 -q=b.r -if(s)q.eM(0,new A.Ct(n,d)) -else q.eM(0,new A.uv(n,d))}, -acX(a,b){var s,r=this -r.c=B.TH -s=r.a -if((s.d.a.a&30)!==0)return!0 -if(!s.lK(r.r)){r.c=B.dJ -return!1}r.r=null -return!0}, -bw(a){if(this.c.a>=10)return -this.w=!0 -this.c=B.w1}, -m(a){var s,r,q,p,o,n,m={} -this.c=B.TJ -s=this.a -r=s.gw9() -q=new A.afX() -p=new A.au(r,q,A.af(r).j("au<1>")) -if(!p.ga1(p).t())s.m(0) -else{m.a=p.gp(p) -for(s=B.c.ga1(r),q=new A.p2(s,q);q.t();){r=s.gH(s) -o=A.bx("listener") -n=new A.afY(m,this,r,o) -o.b=n -r.a2(0,n)}}}, -gaha(){var s=this.c.a -return s<=7&&s>=1}, -glW(){var s=this.c.a -return s<=10&&s>=1}} -A.afZ.prototype={ -$0(){var s=this.a -if(s.c===B.w3){s.c=B.dJ -this.b.tz()}}, -$S:0} -A.afX.prototype={ -$1(a){return a.d}, -$S:413} -A.afY.prototype={ -$0(){var s=this,r=s.a;--r.a -s.c.K(0,s.d.bm()) -if(r.a===0)s.b.a.m(0)}, -$S:0} -A.ag_.prototype={ -$1(a){return a.a===this.a}, -$S:60} -A.mB.prototype={} -A.uv.prototype={ -m_(a){a.tY(this.b,this.a,B.cp,!1)}} -A.Cr.prototype={ -m_(a){if(!a.a.CW.a)a.tY(this.a,this.b,B.bV,!1)}} -A.Cs.prototype={ -m_(a){}} -A.Ct.prototype={ -m_(a){var s=this.a,r=s.gkG() -if(r)a.tY(this.b,s,B.cp,!1)}} -A.j3.prototype={ -aB(){var s,r,q=this -q.aS() -for(s=q.a.x,r=0;!1;++r)s[r].a=q -q.Q=q.a.x -s=q.c.mj(t.mS) -if(s==null)s=null -else{s=s.f -s.toString}t._I.a(s) -q.AC(s==null?null:s.f) -q.a.toString -B.hC.jx("selectSingleEntryHistory",t.H)}, -jJ(a,b){var s,r,q,p,o,n,m=this -m.oa(m.as,"id") -s=m.f -m.oa(s,"history") -for(;r=m.e,r.length!==0;)J.ES(r.pop()) -m.d=new A.bC(null,t.ku) -B.c.P(r,s.Po(null,m)) -m.a.toString -q=0 -for(;!1;++q){p=B.EK[q] -r=m.c -r.toString -r=p.BE(r) -o=$.ajE() -n=new A.dG(r,null,B.lQ,o,o,o) -m.e.push(n) -B.c.P(m.e,s.Po(n,m))}if(s.x==null){s=m.a -r=m.e -o=s.f -B.c.P(r,J.mO(s.aeK(m,o),new A.a2A(m),t.Ez))}m.tz()}, -BX(a){var s,r=this -r.Tr(a) -s=r.f -if(r.br$!=null)s.bc(0,r.e) -else s.aG(0)}, -gfn(){return this.a.y}, -bH(){var s,r,q,p,o=this -o.Uc() -s=o.c.L(t.mS) -o.AC(s==null?null:s.f) -for(r=o.e,q=r.length,p=0;p0?s[r-1]:a0 -o=A.b([],t.uD) -for(s=a.w,n=a.r,m=a0,l=m,k=!1,j=!1;r>=0;){switch(q.c.a){case 1:i=a.k6(r-1,A.amm()) -h=i>=0?a.e[i]:a0 -h=h==null?a0:h.a -g=q.a -g.a=a -g.kF() -q.c=B.TK -n.eM(0,new A.uv(g,h)) -continue -case 2:if(k||l==null){h=q.a -h.q7() -q.c=B.dJ -if(l==null)h.q8(a0) -continue}break -case 3:case 4:case 6:h=p==null?a0:p.a -i=a.k6(r-1,A.amm()) -g=i>=0?a.e[i]:a0 -g=g==null?a0:g.a -q.acY(l==null,a,h,g) -if(q.c===B.dJ)continue -break -case 5:if(!j&&m!=null){q.a.nr(m) -q.e=m}j=!0 -break -case 7:if(!j&&m!=null){q.a.nr(m) -q.e=m}k=!0 -j=!0 -break -case 8:i=a.k6(r,A.Ty()) -h=i>=0?a.e[i]:a0 -if(!q.acX(a,h==null?a0:h.a))continue -if(!j){if(m!=null){q.a.nr(m) -q.e=m}m=q.a}h=q.a -i=a.k6(r,A.Ty()) -g=i>=0?a.e[i]:a0 -s.eM(0,new A.Cr(h,g==null?a0:g.a)) -if(q.c===B.lR)continue -k=!0 -break -case 11:break -case 9:h=q.a -h=h.d.a -if((h.a&30)!==0)A.K(A.X("Future already completed")) -h.oV(a0) -q.r=null -q.c=B.w1 -continue -case 10:if(!j){if(m!=null)q.a.nr(m) -m=a0}i=a.k6(r,A.Ty()) -h=i>=0?a.e[i]:a0 -h=h==null?a0:h.a -q.c=B.TI -if(q.w)s.eM(0,new A.Cs(q.a,h)) -continue -case 12:if(!k&&l!=null)break -q.c=B.lR -continue -case 13:o.push(B.c.eW(a.e,r)) -q=l -break -case 14:case 0:break}--r -f=r>0?a.e[r-1]:a0 -l=q -q=p -p=f}a.a0n() -a.a0p() -a.a.toString -s=a.e -s=new A.cu(s,A.af(s).j("cu<1,dG?>")) -e=s.nM(s,new A.a2u(),new A.a2v()) -d=e==null?a0:e.a.b.a -if(d!=null&&d!==a.at){A.aDH(d,!1,a0) -a.at=d}for(s=o.length,c=0;c=0;){s=m.e[k] -r=s.c.a -if(!(r<=12&&r>=3)){--k -continue}q=m.a1_(k+1,A.atV()) -r=q==null -p=r?l:q.a -o=s.f -if(p!=o){if((r?l:q.a)==null){p=s.e -p=p!=null&&p===o}else p=!1 -if(!p){p=s.a -p.q8(r?l:q.a)}s.f=r?l:q.a}--k -n=m.k6(k,A.atV()) -r=n>=0?m.e[n]:l -p=r==null -o=p?l:r.a -if(o!=s.d){o=s.a -o.BR(p?l:r.a) -s.d=p?l:r.a}}}, -a10(a,b){a=this.k6(a,b) -return a>=0?this.e[a]:null}, -k6(a,b){while(!0){if(!(a>=0&&!b.$1(this.e[a])))break;--a}return a}, -a1_(a,b){var s -while(!0){s=this.e -if(!(a?") -q=r.a(this.a.r.$1(s)) -return q==null&&!b?r.a(this.a.w.$1(s)):q}, -A3(a,b,c){return this.pp(a,!1,b,c)}, -OV(a,b){var s=this.A3(a,null,b) -s.toString -return this.kP(s)}, -wg(a,b,c){var s=this.A3(a,null,c) -s.toString -this.a5Z(A.alx(s,B.lS,null),b) -return s.d.a}, -afu(a){var s=A.alx(a,B.lS,null) -this.e.push(s) -this.tz() -this.y0(s.a) -return a.d.a}, -kP(a){return this.afu(a,t.X)}, -y0(a){this.Zk()}, -a5Z(a,b){var s,r=this,q=r.e,p=q.length-1 -q.push(a) -while(!0){if(!(p>=0&&!b.$1(r.e[p].a)))break -q=r.e[p] -s=q.c.a -if(s<=10&&s>=1)J.ca(q);--p}r.tz() -r.y0(a.a)}, -qS(a){var s=0,r=A.S(t.y),q,p=this,o,n,m -var $async$qS=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)$async$outer:switch(s){case 0:m=p.e -m=new A.cu(m,A.af(m).j("cu<1,dG?>")) -o=m.nM(m,new A.a2w(),new A.a2x()) -if(o==null){q=!1 -s=1 -break}s=3 -return A.U(o.a.hx(),$async$qS) -case 3:n=c -if(p.c==null){q=!0 -s=1 -break}m=p.e -m=new A.cu(m,A.af(m).j("cu<1,dG?>")) -if(o!==m.nM(m,new A.a2y(),new A.a2z())){q=!0 -s=1 -break}switch(n.a){case 2:q=!1 -s=1 -break $async$outer -case 0:p.afo(0,a) -q=!0 -s=1 -break $async$outer -case 1:q=!0 -s=1 -break $async$outer}case 1:return A.Q(q,r)}}) -return A.R($async$qS,r)}, -Oj(){return this.qS(null,t.X)}, -aek(a){return this.qS(a,t.X)}, -OJ(a,b){var s=B.c.ae_(this.e,A.amm()) -s.r=b -s.c=B.TM -this.z1(!1) -this.y0(s.a)}, -dg(a){return this.OJ(a,null,t.X)}, -afo(a,b){return this.OJ(a,b,t.X)}, -Nc(a){var s=this,r=B.c.NL(s.e,A.arS(a)),q=s.e[r] -q.c=B.lR -if(!s.ay)s.z1(!1)}, -sLd(a){this.ch=a -this.CW.sl(0,a>0)}, -abq(){var s,r,q,p,o,n,m=this -m.sLd(m.ch+1) -if(m.ch===1){s=m.k6(m.e.length-1,A.Ty()) -r=m.e[s].a -q=!r.gPN()&&s>0?m.a10(s-1,A.Ty()).a:null -for(p=A.a(m.Q,"_effectiveObservers"),o=p.length,n=0;n7){i=j.a -i.c.sl(0,d) -continue}if(l){i=j.b -i=i==null?d:i.gO5() -l=i===!0}else l=!1 -i=j.a -h=l?j.gfn():d -i.c.sl(0,h) -if(l){i=j.b -h=i.b -i=h==null?i.b=i.uT():h -if(!m){h=J.ax(q) -g=h.gp(q) -f=s.length -m=g<=f||!J.f(h.h(q,f),i)}else m=!0 -s.push(i)}}m=m||s.length!==J.bP(q) -e.a0b(s,n,p,o) -if(m||o.gbZ(o)){e.x=p -e.ab()}}, -a0b(a,b,c,d){var s,r=a.length -if(r!==0){s=b==null?null:b.gfn() -c.n(0,s,a) -d.B(0,s)}}, -aG(a){if(this.x==null)return -this.x=null -this.ab()}, -Po(a,b){var s,r,q,p,o,n=A.b([],t.uD) -if(this.x!=null)s=a!=null&&a.gfn()==null -else s=!0 -if(s)return n -s=this.x -s.toString -r=J.ag(s,a==null?null:a.gfn()) -if(r==null)return n -for(s=J.av(r);s.t();){q=A.aEQ(s.gH(s)) -p=q.BE(b) -o=$.ajE() -n.push(new A.dG(p,q,B.lQ,o,o,o))}return n}, -BC(){return null}, -qy(a){a.toString -return J.az2(t.f.a(a),new A.adf(),t.ob,t.UX)}, -NM(a){this.x=a}, -rs(){return this.x}, -gku(a){return this.x!=null}} -A.adf.prototype={ -$2(a,b){return new A.aw(A.bH(a),A.ft(t.j.a(b),!0,t.K),t.qE)}, -$S:417} -A.aeY.prototype={ -$2(a,b){if(!a.a)a.K(0,b)}, -$S:43} -A.Cu.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.Cv.prototype={ -b4(a){this.bu(a) -this.qd()}, -bH(){var s,r,q,p,o=this -o.e9() -s=o.br$ -r=o.goe() -q=o.c -q.toString -q=A.ry(q) -o.cF$=q -p=o.n2(q,r) -if(r){o.jJ(s,o.d0$) -o.d0$=!1}if(p)if(s!=null)s.m(0)}, -m(a){var s,r=this -r.em$.Y(0,new A.aeY()) -s=r.br$ -if(s!=null)s.m(0) -r.br$=null -r.Ub(0)}} -A.IF.prototype={ -i(a){var s=A.b([],t.s) -this.cT(s) -return"Notification("+B.c.bB(s,", ")+")"}, -cT(a){}} -A.cY.prototype={ -c_(a){return new A.Cw(this,B.a7,this.$ti.j("Cw<1>"))}} -A.Cw.prototype={ -Ox(a){var s,r=this.f -r.toString -s=this.$ti -s.j("cY<1>").a(r) -if(s.c.b(a))return r.d.$1(a) -return!1}, -qZ(a){}} -A.h8.prototype={} -A.SO.prototype={} -A.j6.prototype={ -sm1(a){var s -if(this.b===a)return -this.b=a -s=this.e -if(s!=null)s.Hb()}, -sqQ(a){if(this.c)return -this.c=!0 -this.e.Hb()}, -KW(a){if(a===this.d)return -this.d=a -this.ab()}, -bw(a){var s,r=this.e -r.toString -this.e=null -if(r.c==null)return -B.c.B(r.d,this) -s=$.bK -if(s.cy$===B.l9)s.ch$.push(new A.a2Y(r)) -else r.IN()}, -fh(){var s=this.f.ga5() -if(s!=null)s.IP()}, -i(a){return"#"+A.bF(this)+"(opaque: "+this.b+"; maintainState: "+this.c+")"}} -A.a2Y.prototype={ -$1(a){this.a.IN()}, -$S:2} -A.ux.prototype={ -am(){return new A.Cx(B.k)}} -A.Cx.prototype={ -aB(){this.aS() -this.a.c.KW(!0)}, -m(a){this.a.c.KW(!1) -this.aR(0)}, -I(a,b){var s=this.a -return new A.tB(s.d,s.c.a.$1(b),null)}, -IP(){this.a4(new A.af5())}} -A.af5.prototype={ -$0(){}, -$S:0} -A.yq.prototype={ -am(){return new A.rd(A.b([],t.wi),null,null,B.k)}} -A.rd.prototype={ -aB(){this.aS() -this.NO(0,this.a.c)}, -zs(a,b){return this.d.length}, -qG(a,b){b.e=this -this.a4(new A.a31(this,null,null,b))}, -NO(a,b){var s,r=b.length -if(r===0)return -for(s=0;s=0;--r){o=s[r] -if(q){++p -m.push(new A.ux(o,!0,o.f)) -q=!o.b||!1}else if(o.c)m.push(new A.ux(o,!1,o.f))}s=m.length -this.a.toString -n=t.H8 -return new A.RM(s-p,B.ai,A.ap(new A.ch(m,n),!1,n.j("bl.E")),null)}} -A.a31.prototype={ -$0(){var s=this,r=s.a -B.c.kE(r.d,r.zs(s.b,s.c),s.d)}, -$S:0} -A.a30.prototype={ -$0(){var s=this,r=s.a -B.c.qH(r.d,r.zs(s.b,s.c),s.d)}, -$S:0} -A.a32.prototype={ -$0(){var s,r,q=this,p=q.a,o=p.d -B.c.sp(o,0) -s=q.b -B.c.P(o,s) -r=q.c -r.P7(s) -B.c.qH(o,p.zs(q.d,q.e),r)}, -$S:0} -A.a3_.prototype={ -$0(){}, -$S:0} -A.a2Z.prototype={ -$0(){}, -$S:0} -A.RM.prototype={ -c_(a){return new A.RN(A.cf(t.u),this,B.a7)}, -aJ(a){var s=a.L(t.I) -s.toString -s=new A.uF(s.f,this.e,this.f,A.aj(),0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.P(0,null) -return s}, -aM(a,b){var s=this.e -if(b.a7!==s){b.a7=s -b.a0()}s=a.L(t.I) -s.toString -b.sbx(0,s.f) -s=this.f -if(s!==b.q){b.q=s -b.aF() -b.ai()}}} -A.RN.prototype={ -gF(){return t._2.a(A.fv.prototype.gF.call(this))}} -A.uF.prototype={ -f3(a){if(!(a.e instanceof A.dl))a.e=new A.dl(null,null,B.j)}, -a5d(){if(this.M!=null)return -this.M=B.b7.O(this.af)}, -sbx(a,b){var s=this -if(s.af===b)return -s.af=b -s.M=null -s.a0()}, -gk5(){var s,r,q,p,o=this -if(o.a7===A.ac.prototype.guP.call(o))return null -s=A.ac.prototype.gaci.call(o,o) -for(r=o.a7,q=t.B;r>0;--r){p=s.e -p.toString -s=q.a(p).ae$}return s}, -b1(a){return A.os(this.gk5(),new A.afJ(a))}, -aU(a){return A.os(this.gk5(),new A.afH(a))}, -aX(a){return A.os(this.gk5(),new A.afI(a))}, -b0(a){return A.os(this.gk5(),new A.afG(a))}, -dW(a){var s,r,q,p,o=this.gk5() -for(s=t.B,r=null;o!=null;){q=o.e -q.toString -s.a(q) -p=o.jR(a) -if(p!=null){p+=q.a.b -r=r!=null?Math.min(r,p):p}o=q.ae$}return r}, -ghz(){return!0}, -c4(a){return new A.L(B.f.G(1/0,a.a,a.b),B.f.G(1/0,a.c,a.d))}, -bK(){var s,r,q,p,o,n,m,l,k=this -k.C=!1 -if(k.bz$-k.a7===0)return -k.a5d() -s=t.k.a(A.u.prototype.ga_.call(k)) -r=A.vF(new A.L(B.f.G(1/0,s.a,s.b),B.f.G(1/0,s.c,s.d))) -q=k.gk5() -for(s=t.B,p=t.EP;q!=null;){o=q.e -o.toString -s.a(o) -if(!o.gvQ()){q.cH(0,r,!0) -n=k.M -n.toString -m=k.k1 -m.toString -l=q.k1 -l.toString -o.a=n.lv(p.a(m.a9(0,l)))}else{n=k.k1 -n.toString -m=k.M -m.toString -k.C=A.aqA(q,o,n,m)||k.C}q=o.ae$}}, -cL(a,b){var s,r,q,p=this,o={},n=o.a=p.a7===A.ac.prototype.guP.call(p)?null:p.bV$ -for(s=t.B,r=0;r0)n=p -else n=null -m=n===s -l=new A.lP(m,0) -s=i.c -s.dY(l) -s=i.w -s.n(0,m,l.c) -s=s.h(0,m) -s.toString -if(s)n.d=0 -s=i.w.h(0,m) -s.toString -if(s){s=a.f -if(s!==0){r=n.c -if(r!=null)r.aA(0) -n.c=null -k=B.e.G(Math.abs(s),100,1e4) -s=n.f -if(n.a===B.eX)r=0.3 -else{r=A.a(n.r,"_glowOpacity") -q=r.b -r=r.a -r=q.T(0,r.gl(r))}s.a=r -r.toString -s.b=B.e.G(k*0.00006,r,0.5) -r=n.w -s=A.a(n.x,"_glowSize") -q=s.b -s=s.a -r.a=q.T(0,s.gl(s)) -r.b=Math.min(0.025+75e-8*k*k,1) -A.a(n.b,h).e=A.bR(0,B.e.aI(0.15+k*0.02),0) -A.a(n.b,h).lS(0,0) -n.as=0.5 -n.a=B.Td}else{s=a.d -if(s!=null){p=a.b.gF() -p.toString -t.r.a(p) -o=p.k1 -o.toString -j=p.i1(s.d) -switch(A.bn(r.e).a){case 0:n.toString -s=o.b -n.OQ(0,Math.abs(q),o.a,B.e.G(j.b,0,s),s) -break -case 1:n.toString -s=o.a -n.OQ(0,Math.abs(q),o.b,B.e.G(j.a,0,s),s) -break}}}}}else if(a instanceof A.kq||a instanceof A.fc)if(a.gMJ()!=null){s=i.d -if(s.a===B.eY)s.lq(B.d0) -s=i.e -if(s.a===B.eY)s.lq(B.d0)}i.r=A.C(a) -return!1}, -m(a){this.d.m(0) -this.e.m(0) -this.Ve(0)}, -I(a,b){var s=this,r=null,q=s.a,p=s.d,o=s.e,n=q.e,m=s.f -return new A.cY(s.gzQ(),new A.hh(A.iK(new A.hh(q.w,r),new A.Ol(p,o,n,m),r,r,B.o),r),r,t.WA)}} -A.pb.prototype={ -i(a){return"_GlowState."+this.b}} -A.BI.prototype={ -sad(a,b){if(this.ax.k(0,b))return -this.ax=b -this.ab()}, -sLI(a){if(this.ay===a)return -this.ay=a -this.ab()}, -m(a){var s,r=this -A.a(r.b,"_glowController").m(0) -s=A.a(r.y,"_displacementTicker") -s.w.bP$.B(0,s) -s.FS(0) -s=r.c -if(s!=null)s.aA(0) -r.eL(0)}, -OQ(a,b,c,d,e){var s,r,q,p,o=this,n="_glowOpacity",m="_glowSize",l="_displacementTicker",k="_glowController",j=o.c -if(j!=null)j.aA(0) -o.at=o.at+b/200 -j=o.f -s=A.a(o.r,n) -r=s.b -s=s.a -j.a=r.T(0,s.gl(s)) -s=A.a(o.r,n) -r=s.b -s=s.a -j.b=Math.min(r.T(0,s.gl(s))+b/c*0.8,0.5) -q=Math.min(c,e*0.20096189432249995) -s=o.w -r=A.a(o.x,m) -j=r.b -r=r.a -s.a=j.T(0,r.gl(r)) -r=Math.sqrt(o.at*q) -j=A.a(o.x,m) -p=j.b -j=j.a -s.b=Math.max(1-1/(0.7*r),A.da(p.T(0,j.gl(j)))) -j=d/e -o.Q=j -if(j!==o.as){if(!A.a(o.y,l).gadV())A.a(o.y,l).oD(0)}else{A.a(o.y,l).ex(0) -o.z=null}A.a(o.b,k).e=B.mV -if(o.a!==B.eY){A.a(o.b,k).lS(0,0) -o.a=B.eY}else{j=A.a(o.b,k).r -if(!(j!=null&&j.a!=null))o.ab()}o.c=A.bN(B.mV,new A.ad4(o))}, -yi(a){var s=this -if(a!==B.H)return -switch(s.a.a){case 1:s.lq(B.d0) -break -case 3:s.a=B.eX -s.at=0 -break -case 2:case 0:break}}, -lq(a){var s,r,q=this,p="_glowController",o=q.a -if(o===B.w_||o===B.eX)return -o=q.c -if(o!=null)o.aA(0) -q.c=null -o=q.f -s=A.a(q.r,"_glowOpacity") -r=s.b -s=s.a -o.a=r.T(0,s.gl(s)) -o.b=0 -o=q.w -s=A.a(q.x,"_glowSize") -r=s.b -s=s.a -o.a=r.T(0,s.gl(s)) -o.b=0 -A.a(q.b,p).e=a -A.a(q.b,p).lS(0,0) -q.a=B.w_}, -a88(a){var s,r=this,q=r.z -if(q!=null){q=q.a -s=r.Q -r.as=s-(s-r.as)*Math.pow(2,-(a.a-q)/$.avb().a) -r.ab()}if(A.EI(r.Q,r.as,0.001)){A.a(r.y,"_displacementTicker").ex(0) -r.z=null}else r.z=a}, -aH(a,b){var s,r,q,p,o,n,m,l,k=this,j="_glowOpacity",i=A.a(k.r,j),h=i.b -i=i.a -if(J.f(h.T(0,i.gl(i)),0))return -i=b.a -h=b.b -s=i>h?h/i:1 -r=i*3/2 -q=Math.min(h,i*0.20096189432249995) -h=A.a(k.x,"_glowSize") -p=h.b -h=h.a -h=p.T(0,h.gl(h)) -p=k.as -o=$.aJ()?A.aT():new A.aO(new A.aQ()) -n=k.ax -m=A.a(k.r,j) -l=m.b -m=m.a -o.sad(0,A.ak(B.e.aI(255*l.T(0,m.gl(m))),n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255)) -a.bF(0) -a.aC(0,0,k.d+k.e) -a.cP(0,1,h*s) -a.je(0,new A.w(0,0,0+i,0+q)) -a.dZ(0,new A.m(i/2*(0.5+p),q-r),r,o) -a.bt(0)}, -i(a){return"_GlowController(color: "+this.ax.i(0)+", axis: "+A.aHz(this.ay)+")"}} -A.ad4.prototype={ -$0(){return this.a.lq(B.fC)}, -$S:0} -A.Ol.prototype={ -J4(a,b,c,d,e){var s -if(c==null)return -switch(A.l2(d,e)){case B.I:c.aH(a,b) -break -case B.J:a.bF(0) -a.aC(0,0,b.b) -a.cP(0,1,-1) -c.aH(a,b) -a.bt(0) -break -case B.al:a.bF(0) -a.hw(0,1.5707963267948966) -a.cP(0,1,-1) -c.aH(a,new A.L(b.b,b.a)) -a.bt(0) -break -case B.ay:a.bF(0) -s=b.a -a.aC(0,s,0) -a.hw(0,1.5707963267948966) -c.aH(a,new A.L(b.b,s)) -a.bt(0) -break}}, -aH(a,b){var s=this,r=s.d -s.J4(a,b,s.b,r,B.ne) -s.J4(a,b,s.c,r,B.nd)}, -ew(a){return a.b!=this.b||a.c!=this.c}, -i(a){return"_GlowingOverscrollIndicatorPainter("+A.e(this.b)+", "+A.e(this.c)+")"}} -A.tf.prototype={ -am(){return new A.Dt(null,null,B.k)}, -kK(a){return A.EJ().$1(a)}} -A.Dt.prototype={ -glr(){var s,r,q,p,o,n=this,m=null,l="_stretchController",k=n.d -if(k===$){s=t.Y -r=new A.ar(0,0,s) -q=new A.Ds(r,B.lX,$.b4()) -p=A.bo(m,m,m,m,n) -p.c1(q.gyh()) -A.c9(q.a,l) -q.a=p -o=A.cn(B.dN,A.a(p,l),m) -o.a.a2(0,q.gcY()) -t.m.a(o) -A.c9(q.b,"_stretchSize") -q.b=new A.aC(o,r,s.j("aC")) -A.ba(n.d,l) -n.d=q -k=q}return k}, -zR(a){var s,r,q,p,o,n,m,l=this,k="_stretchSize",j="_stretchController" -if(!l.a.kK(a))return!1 -if(a instanceof A.hY){l.f=a -J.W(l.e) -s=a.e -r=new A.lP(s<0,0) -q=l.c -q.dY(r) -l.r=r.c -if(l.r){q=a.f -if(q!==0){s=l.glr() -p=B.e.G(Math.abs(q),1,1e4) -q=s.c -o=A.a(s.b,k) -n=o.b -o=o.a -q.a=n.T(0,o.gl(o)) -q.b=Math.min(0.016+1.01/p,1) -A.a(s.a,j).e=A.bR(0,B.e.aI(p*0.02),0) -A.a(s.a,j).lS(0,0) -s.d=B.TU}else if(a.d!=null){q=a.a.d -q.toString -m=B.e.G(Math.abs(s)/q+l.glr().e,0,1) -q=l.glr() -q.e=m -s=q.c -o=A.a(q.b,k) -n=o.b -o=o.a -s.a=n.T(0,o.gl(o)) -o=q.e -s.b=0.016*o+0.016*(1-Math.exp(-o*8.237217661997105)) -A.a(q.a,j).e=B.fE -if(q.d!==B.lY){A.a(q.a,j).lS(0,0) -q.d=B.lY}else{s=A.a(q.a,j).r -if(!(s!=null&&s.a!=null))q.ab()}}}}else if(a instanceof A.kq||a instanceof A.fc){s=l.glr() -if(s.d===B.lY)s.lq(B.fE)}l.e=a -return!1}, -a0C(a){switch(this.a.c.a){case 0:return a>0?B.m_:B.lZ -case 1:return a>0?B.m0:B.m1 -case 2:return a>0?B.lZ:B.m_ -case 3:return a>0?B.m1:B.m0}}, -m(a){var s=this.glr() -A.a(s.a,"_stretchController").m(0) -s.eL(0) -this.Vv(0)}, -I(a,b){var s={},r=b.L(t.w).f -s.a=null -return new A.cY(this.gzQ(),A.fP(this.glr(),new A.agq(s,this,r.a),null),null,t.WA)}} -A.agq.prototype={ -$2(a,b){var s,r,q,p,o,n=this,m=n.b,l=A.a(m.glr().b,"_stretchSize"),k=l.b -l=l.a -l=k.T(0,l.gl(l)) -switch(A.bn(m.a.c).a){case 0:s=1+l -n.a.a=n.c.a -r=1 -break -case 1:r=1+l -n.a.a=n.c.b -s=1 -break -default:s=1 -r=1}k=m.f -k=k==null?null:k.e -q=m.a0C(k==null?0:k) -k=m.f -if(k==null)p=null -else{k=k.a.d -k.toString -p=k}if(p==null)p=n.a.a -k=A.Ij(s,r,1) -o=A.LZ(q,m.a.e,k,!0) -return A.VS(o,l!==0&&p!==n.a.a?B.ai:B.u,null)}, -$S:418} -A.pq.prototype={ -i(a){return"_StretchState."+this.b}} -A.Ds.prototype={ -yi(a){var s=this -if(a!==B.H)return -switch(s.d.a){case 1:s.lq(B.fE) -break -case 3:s.d=B.lX -s.e=0 -break -case 2:case 0:break}}, -lq(a){var s,r,q=this,p="_stretchController",o=q.d -if(o===B.w4||o===B.lX)return -o=q.c -s=A.a(q.b,"_stretchSize") -r=s.b -s=s.a -o.a=r.T(0,s.gl(s)) -o.b=0 -A.a(q.a,p).e=a -A.a(q.a,p).lS(0,0) -q.d=B.w4}, -m(a){A.a(this.a,"_stretchController").m(0) -this.eL(0)}, -i(a){return"_StretchController()"}} -A.lP.prototype={ -cT(a){this.Uf(a) -a.push("side: "+(this.a?"leading edge":"trailing edge"))}} -A.CA.prototype={ -cT(a){var s,r -this.xC(a) -s=this.e0$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.Ea.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.Eq.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.Do.prototype={ -k(a,b){if(b==null)return!1 -if(J.W(b)!==A.C(this))return!1 -return b instanceof A.Do&&A.dV(b.a,this.a)}, -gv(a){return A.f9(this.a)}, -i(a){return"StorageEntryIdentifier("+B.c.bB(this.a,":")+")"}} -A.IU.prototype={ -Gd(a){var s=A.b([],t.g8) -if(A.aq2(a,s))a.wF(new A.a35(s)) -return s}, -PR(a,b){var s,r=this -if(r.a==null)r.a=A.z(t.K,t.z) -s=r.Gd(a) -if(s.length!==0)r.a.n(0,new A.Do(s),b)}, -P1(a){var s -if(this.a==null)return null -s=this.Gd(a) -return s.length!==0?this.a.h(0,new A.Do(s)):null}} -A.a35.prototype={ -$1(a){return A.aq2(a,this.a)}, -$S:49} -A.re.prototype={ -I(a,b){return this.c}} -A.IT.prototype={ -a9t(a,b,c){var s=t.gQ.a(B.c.gbX(this.d)) -if(s.a7!=null){s.a7=a -return A.cU(null,t.H)}return s.ig(s.op(a),b,c)}, -Ml(a,b,c){var s=null,r=$.b4() -r=new A.pj(this.y,1,B.ds,a,b,!0,s,new A.d7(!1,r),r) -r.G0(b,s,!0,c,a) -r.G1(b,s,s,!0,c,a) -return r}, -aj(a){this.TF(a) -t.gQ.a(a).srC(1)}} -A.oc.prototype={} -A.pj.prototype={ -Ca(a,b,c,d,e,f){return this.TP(a,b,c,d,e,null)}, -srC(a){var s,r=this -if(r.q===a)return -s=r.gOC(r) -r.q=a -if(s!=null)r.Ct(r.op(s))}, -gtO(){var s=this.at -s.toString -return Math.max(0,s*(this.q-1)/2)}, -rL(a,b){var s=Math.max(0,a-this.gtO())/(b*this.q),r=B.e.wr(s) -if(Math.abs(s-r)<1e-10)return r -return s}, -op(a){var s=this.at -s.toString -return a*s*this.q+this.gtO()}, -gOC(a){var s,r,q=this,p=q.as -if(p!=null)s=!(q.y!=null&&q.z!=null) -else s=!0 -if(s)p=null -else{s=q.a7 -if(s==null){p.toString -s=q.y -s.toString -r=q.z -r.toString -r=B.e.G(p,s,r) -s=q.at -s.toString -s=q.rL(r,s) -p=s}else p=s}return p}, -EJ(){var s,r,q=this,p=q.r,o=p.c -o.toString -o=A.a36(o) -if(o!=null){p=p.c -p.toString -s=q.a7 -if(s==null){s=q.as -s.toString -r=q.at -r.toString -r=q.rL(s,r) -s=r}o.PR(p,s)}}, -Pq(){var s,r,q -if(this.as==null){s=this.r -r=s.c -r.toString -r=A.a36(r) -if(r==null)q=null -else{s=s.c -s.toString -q=r.P1(s)}if(q!=null)this.af=q}}, -EH(){var s,r=this,q=r.a7 -if(q==null){q=r.as -q.toString -s=r.at -s.toString -s=r.rL(q,s) -q=s}r.r.e.sl(0,q) -A.a($.e7.C$,"_restorationManager").Ni()}, -Pp(a,b){if(b)this.af=a -else this.iE(this.op(a))}, -n9(a){var s,r,q,p,o=this,n=o.at -n=n!=null?n:null -if(a===n)return!0 -o.TL(a) -s=o.as -s=s!=null?s:null -if(s==null)r=o.af -else if(n===0){q=o.a7 -q.toString -r=q}else{n.toString -r=o.rL(s,n)}p=o.op(r) -o.a7=a===0?r:null -if(p!==s){o.as=p -return!1}return!0}, -n7(a,b){var s=a+this.gtO() -return this.TJ(s,Math.max(s,b-this.gtO()))}, -hK(){var s,r,q,p,o,n=this,m=null,l=n.y -if(l!=null&&n.z!=null)l.toString -else l=m -if(n.y!=null&&n.z!=null){s=n.z -s.toString}else s=m -r=n.as -r=r!=null?r:m -q=n.at -q=q!=null?q:m -p=n.r.a.c -o=n.q -return new A.oc(o,l,s,r,q,p)}, -$ioc:1} -A.BG.prototype={ -ja(a){return new A.BG(!1,this.jc(a))}, -glu(){return this.b}} -A.yr.prototype={ -ja(a){return new A.yr(this.jc(a))}, -a0Y(a){var s,r -if(a instanceof A.pj){s=a.gOC(a) -s.toString -return s}s=a.as -s.toString -r=a.at -r.toString -return s/r}, -a0Z(a,b){var s -if(a instanceof A.pj)return a.op(b) -s=a.at -s.toString -return b*s}, -nk(a,b){var s,r,q,p,o,n=this -if(b<=0){s=a.as -s.toString -r=a.y -r.toString -r=s<=r -s=r}else s=!1 -if(!s)if(b>=0){s=a.as -s.toString -r=a.z -r.toString -r=s>=r -s=r}else s=!1 -else s=!0 -if(s)return n.TH(a,b) -q=n.grt() -p=n.a0Y(a) -s=q.c -if(b<-s)p-=0.5 -else if(b>s)p+=0.5 -o=n.a0Z(a,B.e.wr(p)) -s=a.as -s.toString -if(o!==s){s=n.gt5() -r=a.as -r.toString -return new A.m7(o,A.uK(s,r-o,b),q)}return null}} -A.ys.prototype={ -am(){return new A.Pu(B.k)}} -A.Pu.prototype={ -aB(){this.aS() -this.d=this.a.r.y}, -a0K(a){var s,r -this.a.toString -switch(0){case 0:s=a.L(t.I) -s.toString -r=A.ajs(s.f) -this.a.toString -return r}}, -I(a,b){var s,r,q,p=this,o=null,n=p.a0K(b) -p.a.toString -s=new A.yr(B.Kj.jc(o)) -s=new A.BG(!1,o).jc(s) -r=p.a.r -q=A.a6i(b).aaI(!1) -return new A.cY(new A.af6(p),A.a6r(n,r,B.V,!1,new A.BG(!1,s),o,q,o,new A.af7(p,n)),o,t.WA)}} -A.af6.prototype={ -$1(a){var s,r,q,p,o -if(a.e0$===0){this.a.a.toString -s=a instanceof A.fc}else s=!1 -if(s){r=t.B9.a(a.a) -s=r.c -s.toString -q=r.a -q.toString -p=r.b -p.toString -p=Math.max(0,B.e.G(s,q,p)) -q=r.d -q.toString -o=B.e.aI(p/Math.max(1,q*r.f)) -s=this.a -if(o!==s.d){s.d=o -s.a.y.$1(o)}}return!1}, -$S:29} -A.af7.prototype={ -$2(a,b){var s=this.a.a -s.r.toString -return A.ars(0,this.b,0,B.xH,null,B.ai,b,A.b([new A.L8(1,!0,s.z,null)],t.p))}, -$S:419} -A.j7.prototype={ -gm1(){return!0}, -gpL(){return!1}, -Bl(a){return a instanceof A.j7}, -LR(a){return a instanceof A.j7}} -A.Jh.prototype={ -aJ(a){var s=new A.zl(this.d,0,!1,!1,A.aj()) -s.gar() -s.gaE() -s.CW=!0 -return s}, -aM(a,b){b.safd(this.d) -b.safA(0)}} -A.a1Y.prototype={} -A.a3B.prototype={} -A.GH.prototype={ -zF(a){return this.a4G(a)}, -a4G(a){var s=0,r=A.S(t.H),q,p=this,o,n,m -var $async$zF=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:n=A.eg(a.b) -m=p.a -if(!m.ap(0,n)){s=1 -break}m=m.h(0,n) -m.toString -o=a.a -if(o==="Menu.selectedCallback")m.gahF().$0() -else if(o==="Menu.opened")m.gahE(m).$0() -else if(o==="Menu.closed")m.gahD(m).$0() -case 1:return A.Q(q,r)}}) -return A.R($async$zF,r)}} -A.rl.prototype={ -cZ(a){return this.f!=a.f}} -A.m4.prototype={ -am(){return new A.QA(null,A.z(t.yb,t.T),null,!0,null,B.k)}} -A.QA.prototype={ -gfn(){return this.a.d}, -jJ(a,b){}, -I(a,b){return A.aai(this.br$,this.a.c)}} -A.AR.prototype={ -cZ(a){return a.f!=this.f}} -A.zx.prototype={ -am(){return new A.CZ(B.k)}} -A.CZ.prototype={ -bH(){var s,r=this -r.e9() -s=r.c -s.toString -r.r=A.ry(s) -r.zz() -if(r.d==null){r.a.toString -r.d=!1}}, -b4(a){this.bu(a) -this.zz()}, -gIC(){this.a.toString -return!1}, -zz(){var s=this -if(s.gIC()&&!s.w){s.w=!0;++$.m3.x2$ -A.a($.e7.C$,"_restorationManager").gagi().aV(0,new A.afS(s),t.P)}}, -a6m(){var s=this -s.e=!1 -s.f=null -A.a($.e7.C$,"_restorationManager").K(0,s.gzZ()) -s.zz()}, -m(a){if(this.e)A.a($.e7.C$,"_restorationManager").K(0,this.gzZ()) -this.aR(0)}, -I(a,b){var s,r,q=this,p=q.d -p.toString -if(p&&q.gIC())return B.cL -p=q.r -if(p==null)p=q.f -s=q.a -r=s.d -return A.aai(p,new A.m4(s.c,r,null))}} -A.afS.prototype={ -$1(a){var s=this.a -s.w=!1 -if(s.c!=null){A.a($.e7.C$,"_restorationManager").a2(0,s.gzZ()) -s.a4(new A.afR(s,a))}$.m3.LB()}, -$S:420} -A.afR.prototype={ -$0(){var s=this.a -s.f=this.b -s.e=!0 -s.d=!1}, -$S:0} -A.dy.prototype={ -gku(a){return!0}, -m(a){var s=this,r=s.c -if(r!=null)r.a8t(s) -s.eL(0) -s.a=!0}} -A.jh.prototype={ -BX(a){}, -oa(a,b){var s,r,q=this,p=q.br$ -p=p==null?null:J.eD(p.gk9(),b) -s=p===!0 -r=s?a.qy(J.ag(q.br$.gk9(),b)):a.BC() -if(a.b==null){a.b=b -a.c=q -p=new A.a5B(q,a) -a.a2(0,p) -q.em$.n(0,a,p)}a.NM(r) -if(!s&&a.gku(a)&&q.br$!=null)q.AG(a)}, -qd(){var s,r,q=this -if(q.cF$!=null){s=q.br$ -s=s==null?null:s.e -s=s==q.gfn()||q.goe()}else s=!0 -if(s)return -r=q.br$ -if(q.n2(q.cF$,!1))if(r!=null)r.m(0)}, -goe(){var s,r,q=this -if(q.d0$)return!0 -if(q.gfn()==null)return!1 -s=q.c -s.toString -r=A.ry(s) -if(r!=q.cF$){if(r==null)s=null -else{s=r.c -s=s==null?null:s.d -s=s===!0}s=s===!0}else s=!1 -return s}, -n2(a,b){var s,r,q=this -if(q.gfn()==null||a==null)return q.JQ(null,b) -if(b||q.br$==null){s=q.gfn() -s.toString -return q.JQ(a.aa9(s,q),b)}s=q.br$ -s.toString -r=q.gfn() -r.toString -s.ag_(r) -r=q.br$ -r.toString -a.hf(r) -return!1}, -JQ(a,b){var s,r=this,q=r.br$ -if(a==q)return!1 -r.br$=a -if(!b){if(a!=null){s=r.em$ -new A.b3(s,A.n(s).j("b3<1>")).Y(0,r.ga8E())}r.BX(q)}return!0}, -AG(a){var s,r=a.gku(a),q=this.br$ -if(r){if(q!=null){r=a.b -r.toString -s=a.rs() -if(!J.f(J.ag(q.gk9(),r),s)||!J.eD(q.gk9(),r)){J.cR(q.gk9(),r,s) -q.mQ()}}}else if(q!=null){r=a.b -r.toString -q.afU(0,r,t.K)}}, -a8t(a){var s=this.em$.B(0,a) -s.toString -a.K(0,s) -a.c=a.b=null}} -A.a5B.prototype={ -$0(){var s=this.a -if(s.br$==null)return -s.AG(this.b)}, -$S:0} -A.ahu.prototype={ -$2(a,b){if(!a.a)a.K(0,b)}, -$S:43} -A.SX.prototype={ -b4(a){this.bu(a) -this.qd()}, -bH(){var s,r,q,p,o=this -o.e9() -s=o.br$ -r=o.goe() -q=o.c -q.toString -q=A.ry(q) -o.cF$=q -p=o.n2(q,r) -if(r){o.jJ(s,o.d0$) -o.d0$=!1}if(p)if(s!=null)s.m(0)}, -m(a){var s,r=this -r.em$.Y(0,new A.ahu()) -s=r.br$ -if(s!=null)s.m(0) -r.br$=null -r.aR(0)}} -A.dQ.prototype={ -sl(a,b){var s=this.x -if(b==null?s!=null:b!==s){this.x=b -this.MB(s)}}, -NM(a){this.x=a}} -A.is.prototype={ -BC(){return this.CW}, -MB(a){this.ab()}, -qy(a){return A.n(this).j("is.T").a(a)}, -rs(){var s=this.x -return s==null?A.n(this).j("dQ.T").a(s):s}} -A.CY.prototype={ -qy(a){return this.Ux(a)}, -rs(){var s=this.Uy() -s.toString -return s}} -A.zt.prototype={} -A.zs.prototype={} -A.a5H.prototype={} -A.rc.prototype={ -gw9(){return this.e}, -kF(){var s,r=this,q=A.rb(r.gZ0(),!1) -r.k3=q -r.gqQ() -s=A.rb(r.gZ2(),!0) -r.ok=s -B.c.P(r.e,A.b([q,s],t.wi)) -r.TC()}, -lK(a){var s=this -s.Tx(a) -if(A.a(s.as.Q,"_status")===B.w&&!s.z)s.a.Nc(s) -return!0}, -m(a){B.c.sp(this.e,0) -this.TB(0)}} -A.dC.prototype={ -ghH(a){return this.Q}, -gEO(){return this.at}, -a3v(a){var s,r=this -switch(a.a){case 3:s=r.e -if(s.length!==0)B.c.gJ(s).sm1(r.gm1()) -break -case 1:case 2:s=r.e -if(s.length!==0)B.c.gJ(s).sm1(!1) -break -case 0:if(!r.gadL()){r.a.Nc(r) -r.z=!0}break}}, -kF(){var s=this,r=s.gE1(s),q=s.gE1(s),p=s.gnn(),o=s.a -o.toString -o=s.as=A.bo(p,r,q,null,o) -o.c1(s.gIi()) -s.Q=o -s.SZ() -p=s.Q -if(p.gaZ(p)===B.H&&s.e.length!==0)B.c.gJ(s.e).sm1(s.gm1())}, -qa(){this.Tz() -return this.as.bp(0)}, -q7(){this.Tu() -var s=this.as -s.sl(0,s.b)}, -BV(a){var s -if(a instanceof A.dC){s=this.as -s.toString -s.sl(0,A.a(a.as.x,"_value"))}this.TA(a)}, -lK(a){this.ay=a -this.as.cd(0) -this.SX(a) -return!0}, -nr(a){this.L3(a) -this.Ty(a)}, -q8(a){this.L3(a) -this.Tv(a)}, -L3(a){var s,r,q,p,o,n,m=this,l={},k=m.ch -m.ch=null -if(a instanceof A.dC&&m.Bl(a)&&a.LR(m)){s=m.at.c -if(s!=null){r=s instanceof A.oW?s.a:s -r.toString -q=a.Q -q.toString -p=J.f(r.gl(r),A.a(q.x,"_value"))||A.a(q.Q,"_status")===B.H||A.a(q.Q,"_status")===B.w -o=a.y.a -if(p)m.mX(q,o) -else{l.a=null -p=new A.aaa(m,q,a) -m.ch=new A.aab(l,q,p) -q.c1(p) -n=A.alj(r,q,new A.aac(l,m,a)) -l.a=n -m.mX(n,o)}}else m.mX(a.Q,a.y.a)}else m.a78(B.cj) -if(k!=null)k.$0()}, -mX(a,b){this.at.sa3(0,a) -if(b!=null)b.aV(0,new A.aa9(this,a),t.P)}, -a78(a){return this.mX(a,null)}, -Bl(a){return!0}, -LR(a){return!0}, -m(a){var s=this,r=s.Q -if(r!=null)r.e5(s.gIi()) -r=s.as -if(r!=null)r.m(0) -s.y.c3(0,s.ay) -s.SY(0)}, -gnn(){return"TransitionRoute"}, -i(a){return"TransitionRoute(animation: "+A.e(this.as)+")"}} -A.aaa.prototype={ -$1(a){var s,r -switch(a.a){case 3:case 0:s=this.a -s.mX(this.b,this.c.y.a) -r=s.ch -if(r!=null){r.$0() -s.ch=null}break -case 1:case 2:break}}, -$S:3} -A.aab.prototype={ -$0(){this.b.e5(this.c) -var s=this.a.a -if(s!=null)s.m(0)}, -$S:0} -A.aac.prototype={ -$0(){var s,r=this.b -r.mX(this.a.a.a,this.c.y.a) -s=r.ch -if(s!=null){s.$0() -r.ch=null}}, -$S:0} -A.aa9.prototype={ -$1(a){var s=this.a.at,r=this.b -if(s.c==r){s.sa3(0,B.cj) -if(r instanceof A.oW)r.m(0)}}, -$S:7} -A.Id.prototype={ -gPN(){var s=this.eh$ -return s!=null&&s.length!==0}} -A.NG.prototype={ -iD(a,b){return A.Is(this.e,t.z).gpL()}, -cM(a){return A.hW(this.e,!1).Oj()}} -A.Cl.prototype={ -cZ(a){return this.f!==a.f||this.r!==a.r||this.w!==a.w}} -A.uu.prototype={ -am(){return new A.mA(A.Zf(!0,B.S5.i(0)+" Focus Scope",!1),A.a6j(),B.k,this.$ti.j("mA<1>"))}} -A.mA.prototype={ -aB(){var s,r,q=this -q.aS() -s=A.b([],t.Eo) -r=q.a.c.fx -if(r!=null)s.push(r) -r=q.a.c.fy -if(r!=null)s.push(r) -q.e=new A.pi(s) -if(q.a.c.gkG()){q.a.c.a.a.toString -s=!0}else s=!1 -if(s)q.a.c.a.x.ow(q.f)}, -b4(a){var s,r=this -r.bu(a) -if(r.a.c.gkG()){r.a.c.a.a.toString -s=!0}else s=!1 -if(s)r.a.c.a.x.ow(r.f)}, -bH(){this.e9() -this.d=null}, -a0v(){this.a4(new A.aeL(this))}, -m(a){this.f.m(0) -this.aR(0)}, -gJY(){var s=this.a.c.fx -if((s==null?null:s.gaZ(s))!==B.aM){s=this.a.c.a -s=s==null?null:s.CW.a -s=s===!0}else s=!0 -return s}, -I(a,b){var s,r=this,q=null,p=r.a.c,o=p.gkG(),n=r.a.c -if(!n.gNz()){n=n.eh$ -n=n!=null&&n.length!==0}else n=!0 -s=r.a.c -return A.fP(p.c,new A.aeP(r),new A.Cl(o,n,p,new A.yk(s.fr,new A.re(new A.jL(new A.aeQ(r),q),s.k2,q),q),q))}} -A.aeL.prototype={ -$0(){this.a.d=null}, -$S:0} -A.aeP.prototype={ -$2(a,b){var s=this.a.a.c.c.a -b.toString -return new A.m4(b,s,null)}, -$S:422} -A.aeQ.prototype={ -$1(a){var s=null,r=A.aB([B.vO,new A.NG(a,new A.aM(A.b([],t.e),t._))],t.n,t.od),q=this.a,p=q.f,o=A.a(q.e,"_listenable"),n=q.d -if(n==null)n=q.d=new A.hh(new A.jL(new A.aeN(q),s),q.a.c.k1) -return A.va(r,new A.rl(q.r,A.apd(!1,new A.Hn(p,new A.hh(A.fP(o,new A.aeO(q),n),s),s),s,p),s))}, -$S:423} -A.aeO.prototype={ -$2(a,b){var s,r,q=this.a,p=q.a.c,o=p.fx -o.toString -s=p.fy -s.toString -r=p.a -r=r==null?null:r.CW -if(r==null)r=new A.d7(!1,$.b4()) -return p.Bj(a,o,s,A.fP(r,new A.aeM(q),b))}, -$S:58} -A.aeM.prototype={ -$2(a,b){var s=this.a,r=s.gJY() -s.f.scl(!r) -return new A.hN(r,null,b,null)}, -$S:424} -A.aeN.prototype={ -$1(a){var s,r=this.a.a.c,q=r.fx -q.toString -s=r.fy -s.toString -return r.LO(a,q,s)}, -$S:22} -A.hU.prototype={ -a4(a){var s,r=this.id -if(r.ga5()!=null){r=r.ga5() -if(r.a.c.gkG())if(!r.gJY()){r.a.c.a.a.toString -s=!0}else s=!1 -else s=!1 -if(s)r.a.c.a.x.ow(r.f) -r.a4(a)}else a.$0()}, -Bj(a,b,c,d){return d}, -kF(){var s=this -s.U2() -s.fx=A.yP(A.dC.prototype.ghH.call(s,s)) -s.fy=A.yP(A.dC.prototype.gEO.call(s))}, -qa(){var s,r=this,q=r.id -if(q.ga5()!=null){r.a.a.toString -s=!0}else s=!1 -if(s)r.a.x.ow(q.ga5().f) -return r.U1()}, -q7(){var s,r=this,q=r.id -if(q.ga5()!=null){r.a.a.toString -s=!0}else s=!1 -if(s)r.a.x.ow(q.ga5().f) -r.U_()}, -sw7(a){var s,r=this -if(r.fr===a)return -r.a4(new A.a2a(r,a)) -s=r.fx -s.toString -s.sa3(0,r.fr?B.cT:A.dC.prototype.ghH.call(r,r)) -s=r.fy -s.toString -s.sa3(0,r.fr?B.cj:A.dC.prototype.gEO.call(r)) -r.pP()}, -hx(){var s=0,r=A.S(t.oj),q,p=this,o,n,m,l -var $async$hx=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:p.id.ga5() -o=A.ap(p.go,!0,t.Ev),n=o.length,m=0 -case 3:if(!(m>>24&255)!==0&&!n.fr){s=n.fx -s.toString -r=n.gpK().a -r=A.ak(0,r>>>16&255,r>>>8&255,r&255) -q=n.gpK() -p=t.IC.j("eT") -t.m.a(s) -o=new A.F2(n.gpL(),n.gBd(),!0,new A.aC(s,new A.eT(new A.fW(B.au),new A.de(r,q),p),p.j("aC")),m)}else o=A.akL(!0,m,n.gpL(),n.gBd()) -s=n.fx -if(s.gaZ(s)!==B.aM){s=n.fx -s=s.gaZ(s)===B.w}else s=!0 -o=new A.hN(s,m,o,m) -s=n.gpL() -return s?A.bq(m,o,!1,m,m,!1,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,B.Kf,m,m,m,m):o}, -Z3(a){var s=this,r=null,q=s.k4 -return q==null?s.k4=A.bq(r,new A.uu(s,s.id,A.n(s).j("uu<1>")),!1,r,r,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,B.Ke,r,r,r,r):q}, -i(a){return"ModalRoute("+this.b.i(0)+", animation: "+A.e(this.Q)+")"}} -A.a2a.prototype={ -$0(){this.a.fr=this.b}, -$S:0} -A.a29.prototype={ -$0(){}, -$S:0} -A.yK.prototype={ -gm1(){return!1}, -gqQ(){return!0}} -A.yY.prototype={ -gpL(){return!0}, -gBd(){return this.e1}, -gpK(){return this.al}, -gE1(a){return this.fK}, -LO(a,b,c){var s=null -return A.bq(s,new A.GO(this.ek,this.co.$3(a,b,c),s),!1,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s)}, -Bj(a,b,c,d){return this.ho.$4(a,b,c,d)}} -A.Hn.prototype={ -aJ(a){var s=new A.CM(new A.H4(new WeakMap()),this.e,B.cq,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){if(b instanceof A.CM)b.sact(this.e)}} -A.Ho.prototype={ -aJ(a){var s=new A.uD(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -s.sb_(null) -return s}, -aM(a,b){if(b instanceof A.uD)b.u=this.e}} -A.uD.prototype={} -A.CM.prototype={ -sact(a){if(this.cq===a)return -this.cq=a}, -bD(a,b){var s,r,q=this -if(q.k1.A(0,b)){s=q.cL(a,b)||q.u===B.ao -if(s){r=new A.pX(b,q) -q.ds.a.set(r,a) -a.E(0,r)}}else s=!1 -return s}, -ga7f(){switch(A.dI().a){case 0:case 2:return!1 -case 3:case 4:case 5:case 1:return!1}}, -hU(a,b){var s,r,q,p,o,n,m,l,k=this -if(t.c.b(a))if(a.gdn(a)===1)if(a.gd4(a)===B.bD)if(!k.ga7f()){s=k.cq.dx -s=(s.length!==0?B.c.gR(s):null)==null}else s=!0 -else s=!0 -else s=!0 -else s=!0 -if(s)return -A.aB1(b) -r=k.ds.a.get(b) -s=k.cq.dx -q=s.length!==0?B.c.gR(s):null -if(q==null||r==null)return -s=q.e -p=s==null?null:s.gF() -if(p==null)return -s=r.a -n=s.length -m=0 -while(!0){if(!(m#"+A.bF(this)}} -A.lu.prototype={ -pI(){this.a.i2(0)}, -gjS(){return!1}, -ghX(){return!1}, -gf0(){return 0}} -A.a_M.prototype={ -gjS(){return!1}, -ghX(){return!1}, -gf0(){return 0}, -m(a){this.b.$0() -this.tc(0)}} -A.a6k.prototype={ -YB(a,b){var s,r,q=this -if(b==null)return a -if(a===0){if(q.d!=null)if(q.r==null){s=q.e -s=b.a-s.a>5e4}else s=!1 -else s=!1 -if(s)q.r=0 -return 0}else{s=q.r -if(s==null)return a -else{s+=a -q.r=s -r=q.d -r.toString -if(Math.abs(s)>r){q.r=null -s=Math.abs(a) -if(s>24)return a -else return Math.min(r/3,s)*J.dq(a)}else return 0}}}, -bc(a,b){var s,r,q,p,o=this -o.w=b -s=b.c -s.toString -r=s===0 -if(!r)o.e=b.a -q=b.a -if(o.f)if(r)if(q!=null){r=o.e -r=q.a-r.a>2e4}else r=!0 -else r=!1 -else r=!1 -if(r)o.f=!1 -p=o.YB(s,q) -if(p===0)return -s=o.a -if(A.am6(s.r.a.c))p=-p -s.Ec(p>0?B.la:B.lb) -r=s.as -r.toString -s.xP(r-s.f.B9(s,p))}, -m(a){this.w=null -this.b.$0()}, -i(a){return"#"+A.bF(this)}} -A.XD.prototype={ -ME(a,b){var s=t.uL.a(this.b.w) -if(b!=null)b.dY(new A.rF(s,a,b,0))}, -MF(a,b,c){b.dY(A.al0(b,null,t.zk.a(this.b.w),a,c))}, -vf(a,b,c){b.dY(new A.hY(t.zk.a(this.b.w),c,0,a,b,0))}, -MD(a,b){var s=this.b.w -b.dY(new A.kq(s instanceof A.hF?s:null,a,b,0))}, -gjS(){return!0}, -ghX(){return!0}, -gf0(){return 0}, -m(a){this.b=null -this.tc(0)}, -i(a){return"#"+A.bF(this)+"("+A.e(this.b)+")"}} -A.Ff.prototype={ -Pl(){this.a.i2(A.a(this.b,"_controller").gf0())}, -pI(){this.a.i2(A.a(this.b,"_controller").gf0())}, -Aq(){var s=A.a(A.a(this.b,"_controller").x,"_value") -if(!(Math.abs(this.a.xP(s))<1e-10)){s=this.a -s.hg(new A.lu(s))}}, -A5(){this.a.i2(0)}, -vf(a,b,c){b.dY(new A.hY(null,c,A.a(this.b,"_controller").gf0(),a,b,0))}, -gjS(){return!0}, -ghX(){return!0}, -gf0(){return A.a(this.b,"_controller").gf0()}, -m(a){A.a(this.b,"_controller").m(0) -this.tc(0)}, -i(a){return"#"+A.bF(this)+"("+A.a(this.b,"_controller").i(0)+")"}} -A.GR.prototype={ -Aq(){if(this.a.xP(A.a(A.a(this.c,"_controller").x,"_value"))!==0){var s=this.a -s.hg(new A.lu(s))}}, -A5(){this.a.i2(A.a(this.c,"_controller").gf0())}, -vf(a,b,c){b.dY(new A.hY(null,c,A.a(this.c,"_controller").gf0(),a,b,0))}, -gjS(){return!0}, -ghX(){return!0}, -gf0(){return A.a(this.c,"_controller").gf0()}, -m(a){A.a(this.b,"_completer").eg(0) -A.a(this.c,"_controller").m(0) -this.tc(0)}, -i(a){return"#"+A.bF(this)+"("+A.a(this.c,"_controller").i(0)+")"}} -A.zE.prototype={ -rk(a,b,c,d){var s,r=this -if(b.a==null){s=A.a($.fa.kx$,"_imageCache") -s=s.a.h(0,c)!=null||s.b.h(0,c)!=null}else s=!0 -if(s){r.b.rk(a,b,c,d) -return}s=r.a -if(s.gaP(s)==null)return -s=s.gaP(s) -s.toString -if(A.aD7(s)){$.bK.EM(new A.a6f(r,a,b,c,d)) -return}r.b.rk(a,b,c,d)}, -D5(a,b,c){return this.b.D5(0,b,c)}, -Dl(a){return this.b.Dl(a)}} -A.a6f.prototype={ -$1(a){var s=this -A.fk(new A.a6e(s.a,s.b,s.c,s.d,s.e))}, -$S:2} -A.a6e.prototype={ -$0(){var s=this -return s.a.rk(s.b,s.c,s.d,s.e)}, -$S:0} -A.vd.prototype={ -i(a){return"AndroidOverscrollIndicator."+this.b}} -A.KG.prototype={ -Mg(a,b,c,d,e,f){return new A.ahn(this,f,c!==!1,d,e,b,a)}, -aaS(a,b){return this.Mg(null,null,a,null,null,b)}, -aaI(a){return this.Mg(null,null,null,null,null,a)}, -ml(a){return A.dI()}, -gC3(){return B.vl}, -a9Q(a,b,c){var s -switch(this.ml(a)){case B.av:case B.bH:case B.aY:case B.bI:s=1 -break -case B.aX:s=2 -break -case B.bG:s=3 -break -default:s=null -break}if(s)c$0:for(;!0;)switch(s){case 1:return b -case 2:switch(1){case 1:break}if(2)c$1:for(;!0;)switch(2){case 1:return new A.tf(c,b,null) -case 2:s=3 -continue c$0}break c$0 -case 3:return new A.qH(c,B.m,b,null)}}, -uK(a,b,c){var s=null -switch(this.ml(a)){case B.bH:case B.aY:case B.bI:return A.aCS(b,c.b,B.cn,s,s,A.EJ(),B.r,s,s,s,s,B.d0,s) -case B.aX:case B.bG:case B.av:return b}}, -uJ(a,b,c){return this.a9Q(a,b,c.a)}, -wE(a){switch(this.ml(a)){case B.av:case B.aY:return new A.a6g() -case B.aX:case B.bG:case B.bH:case B.bI:return new A.a6h()}}, -mn(a){switch(this.ml(a)){case B.av:case B.aY:return B.wv -case B.aX:case B.bG:case B.bH:case B.bI:return B.xQ}}, -i(a){return"ScrollBehavior"}} -A.a6g.prototype={ -$1(a){var s=a.gd4(a),r=t.av -return new A.qJ(A.b7(20,null,!1,r),s,A.b7(20,null,!1,r))}, -$S:425} -A.a6h.prototype={ -$1(a){return new A.jw(a.gd4(a),A.b7(20,null,!1,t.av))}, -$S:154} -A.ahn.prototype={ -gC3(){var s=this.f -return s==null?B.vl:s}, -uJ(a,b,c){if(this.c)return this.a.uJ(a,b,c) -return b}, -uK(a,b,c){if(this.b)return this.a.uK(a,b,c) -return b}, -mn(a){var s=this.a.mn(a) -return s}, -wE(a){return this.a.wE(a)}, -i(a){return"_WrappedScrollBehavior"}} -A.zF.prototype={ -cZ(a){var s -if(A.C(this.f)===A.C(a.f))s=!1 -else s=!0 -return s}} -A.oy.prototype={ -ig(a,b,c){return this.a9s(a,b,c)}, -a9s(a,b,c){var s=0,r=A.S(t.H),q=this,p,o,n -var $async$ig=A.T(function(d,e){if(d===1)return A.P(e,r) -while(true)switch(s){case 0:n=A.b([],t.mo) -for(p=q.d,o=0;o#"+A.bF(this)+"("+B.c.bB(s,", ")+")"}} -A.i7.prototype={ -hK(){var s=this,r=null,q=s.gCD()?s.geU():r,p=s.gCD()?s.gfi():r,o=s.gNA()?s.gct():r,n=s.gNC()?s.grB():r,m=s.gih() -return new A.wI(q,p,o,n,m)}, -gDt(){var s=this -return s.gct()s.gfi()}, -gLH(){var s=this -return s.gct()===s.geU()||s.gct()===s.gfi()}, -glO(){var s=this -return s.grB()-B.e.G(s.geU()-s.gct(),0,s.grB())-B.e.G(s.gct()-s.gfi(),0,s.grB())}} -A.wI.prototype={ -geU(){var s=this.a -s.toString -return s}, -gfi(){var s=this.b -s.toString -return s}, -gCD(){return this.a!=null&&this.b!=null}, -gct(){var s=this.c -s.toString -return s}, -gNA(){return this.c!=null}, -grB(){var s=this.d -s.toString -return s}, -gNC(){return this.d!=null}, -i(a){var s=this -return"FixedScrollMetrics("+B.e.V(Math.max(s.gct()-s.geU(),0),1)+"..["+B.e.V(s.glO(),1)+"].."+B.e.V(Math.max(s.gfi()-s.gct(),0),1)+")"}, -gih(){return this.e}} -A.O5.prototype={} -A.fg.prototype={} -A.Mg.prototype={ -Ox(a){if(t.rS.b(a))++a.e0$ -return!1}} -A.eN.prototype={ -cT(a){this.UQ(a) -a.push(this.a.i(0))}} -A.rF.prototype={ -cT(a){var s -this.oL(a) -s=this.d -if(s!=null)a.push(s.i(0))}} -A.fc.prototype={ -cT(a){var s -this.oL(a) -a.push("scrollDelta: "+A.e(this.e)) -s=this.d -if(s!=null)a.push(s.i(0))}, -gMJ(){return this.d}} -A.hY.prototype={ -cT(a){var s,r=this -r.oL(a) -a.push("overscroll: "+B.e.V(r.e,1)) -a.push("velocity: "+B.e.V(r.f,1)) -s=r.d -if(s!=null)a.push(s.i(0))}} -A.kq.prototype={ -cT(a){var s -this.oL(a) -s=this.d -if(s!=null)a.push(s.i(0))}, -gMJ(){return this.d}} -A.Ma.prototype={ -cT(a){this.oL(a) -a.push("direction: "+this.d.i(0))}} -A.D6.prototype={ -cT(a){var s,r -this.xC(a) -s=this.e0$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.D5.prototype={ -cZ(a){return this.f!==a.f}} -A.my.prototype={ -ae7(a,b){return this.d.$1(b)}} -A.zH.prototype={ -am(){return new A.zI(new A.xy(t.z_),B.k)}} -A.zI.prototype={ -K(a,b){var s,r,q,p=this.d -p.toString -p=A.aEF(p) -s=A.n(p).c -for(;p.t();){r=p.c -if(r==null)r=s.a(r) -if(J.f(r.d,b)){p=r.a -p.toString -A.n(r).j("nZ.E").a(r);++p.a -s=r.b -s.c=r.c -r.c.b=s -q=--p.b -r.a=r.b=r.c=null -if(q===0)p.c=null -else if(r===p.c)p.c=s -return}}}, -a4S(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.d -if(i.b===0)return -p=A.ap(i,!0,t.Sx) -for(i=p.length,o=0;o$.bW().gkO().gOe()}return s.P3(a,b,c)}, -pH(a,b){var s=this.a -if(s==null)return 0 -return s.pH(a,b)}, -uB(a,b,c,d){var s=this.a -if(s==null){s=b.c -s.toString -return s}return s.uB(a,b,c,d)}, -nk(a,b){var s=this.a -if(s==null)return null -return s.nk(a,b)}, -gt5(){var s=this.a -s=s==null?null:s.gt5() -return s==null?$.auK():s}, -grt(){var s=this.a -s=s==null?null:s.grt() -return s==null?$.auL():s}, -gDc(){var s=this.a -s=s==null?null:s.gDc() -return s==null?18:s}, -gw2(){var s=this.a -s=s==null?null:s.gw2() -return s==null?50:s}, -gDb(){var s=this.a -s=s==null?null:s.gDb() -return s==null?8000:s}, -Bn(a){var s=this.a -if(s==null)return 0 -return s.Bn(a)}, -gC4(){var s=this.a -return s==null?null:s.gC4()}, -glu(){return!0}, -i(a){var s=this.a -if(s==null)return"ScrollPhysics" -return"ScrollPhysics -> "+s.i(0)}} -A.JP.prototype={ -ja(a){return new A.JP(this.jc(a))}, -uB(a,b,c,d){var s,r,q,p,o,n,m,l -if(d!==0){s=!1 -r=!1}else{s=!0 -r=!0}q=c.a -q.toString -p=b.a -p.toString -if(q===p){o=c.b -o.toString -n=b.b -n.toString -n=o===n -o=n}else o=!1 -if(o)s=!1 -o=c.c -o.toString -n=b.c -n.toString -if(o!==n){if(isFinite(q)){n=c.b -n.toString -if(isFinite(n))if(isFinite(p)){n=b.b -n.toString -n=isFinite(n)}else n=!1 -else n=!1}else n=!1 -if(n)r=!1 -s=!1}n=om}else m=!0 -if(m)r=!1 -if(s){if(n&&p>q)return p-(q-o) -q=c.b -q.toString -if(o>q){n=b.b -n.toString -n=n0&&b<0))n=p>0&&b>0 -else n=!0 -s=a.at -if(n){s.toString -m=0.52*Math.pow(1-(o-Math.abs(b))/s,2)}else{s.toString -m=0.52*Math.pow(1-o/s,2)}return J.dq(b)*A.azR(o,Math.abs(b),m)}, -pH(a,b){return 0}, -nk(a,b){var s,r,q,p,o,n,m="_frictionSimulation",l="_springTime",k=this.grt() -if(Math.abs(b)>=k.c||a.gDt()){s=this.gt5() -r=a.as -r.toString -q=a.y -q.toString -p=a.z -p.toString -o=new A.UV(q,p,s,k) -if(rp){o.f=new A.m7(p,A.uK(s,r-p,b),B.bK) -o.r=-1/0}else{r=o.e=new A.ZG(0.135,Math.log(0.135),r,b,B.bK) -n=A.a(r,m).gCm() -if(b>0&&n>p){q=A.a(r,m).PA(p) -o.r=q -r=A.a(r,m) -q=A.a(q,l) -o.f=new A.m7(p,A.uK(s,p-p,Math.min(r.e*Math.pow(r.b,q),5000)),B.bK)}else if(b<0&&nr)q=r -else q=o -r=a.y -r.toString -if(s0){r=a.as -r.toString -p=a.z -p.toString -p=r>=p -r=p}else r=!1 -if(r)return o -if(b<0){r=a.as -r.toString -p=a.y -p.toString -p=r<=p -r=p}else r=!1 -if(r)return o -r=a.as -r.toString -r=new A.VL(r,b,n) -s=Math.exp(Math.log(0.35*s/778.3530259679999)/($.aul()-1)) -r.e=s -r.f=Math.abs(b*A.a(s,"_duration")/3.065) -return r}} -A.F_.prototype={ -ja(a){return new A.F_(this.jc(a))}, -oy(a){return!0}} -A.rD.prototype={ -i(a){return"ScrollPositionAlignmentPolicy."+this.b}} -A.ji.prototype={ -G0(a,b,c,d,e){if(d!=null)this.py(d) -this.Pq()}, -geU(){var s=this.y -s.toString -return s}, -gfi(){var s=this.z -s.toString -return s}, -gCD(){return this.y!=null&&this.z!=null}, -gct(){var s=this.as -s.toString -return s}, -gNA(){return this.as!=null}, -grB(){var s=this.at -s.toString -return s}, -gNC(){return this.at!=null}, -py(a){var s=this,r=a.y -if(r!=null&&a.z!=null){r.toString -s.y=r -r=a.z -r.toString -s.z=r}r=a.as -if(r!=null)s.as=r -r=a.at -if(r!=null)s.at=r -s.dy=a.dy -a.dy=null -if(A.C(a)!==A.C(s))s.dy.Pl() -s.r.F2(s.dy.gjS()) -s.dx.sl(0,s.dy.ghX())}, -R_(a){var s,r,q,p=this,o=p.as -o.toString -if(a!==o){s=p.f.pH(p,a) -o=p.as -o.toString -r=a-s -p.as=r -if(r!==o){p.AJ() -p.Fq() -r=p.as -r.toString -p.BY(r-o)}if(s!==0){o=p.dy -o.toString -r=p.hK() -q=$.F.D$.z.h(0,p.r.z) -q.toString -o.vf(r,q,s) -return s}}return 0}, -aaX(a){var s=this.as -s.toString -this.as=s+a -this.ay=!0}, -Ct(a){var s=this,r=s.as -r.toString -s.Q=a-r -s.as=a -s.AJ() -s.Fq() -$.bK.ch$.push(new A.a6n(s))}, -EJ(){var s,r=this.r,q=r.c -q.toString -q=A.a36(q) -if(q!=null){r=r.c -r.toString -s=this.as -s.toString -q.PR(r,s)}}, -Pq(){var s,r,q -if(this.as==null){s=this.r -r=s.c -r.toString -r=A.a36(r) -if(r==null)q=null -else{s=s.c -s.toString -q=r.P1(s)}if(q!=null)this.as=q}}, -Pp(a,b){if(b)this.as=a -else this.iE(a)}, -EH(){var s=this.as -s.toString -this.r.e.sl(0,s) -A.a($.e7.C$,"_restorationManager").Ni()}, -n9(a){if(this.at!==a){this.at=a -this.ay=!0}return!0}, -n7(a,b){var s,r,q,p=this -if(!A.EI(p.y,a,0.001)||!A.EI(p.z,b,0.001)||p.ay||p.cy!==A.bn(p.gih())){p.y=a -p.z=b -p.cy=A.bn(p.gih()) -s=p.ax?p.hK():null -p.ay=!1 -p.ch=!0 -if(p.ax){r=p.CW -r.toString -s.toString -r=!p.aaY(r,s)}else r=!1 -if(r)return!1 -p.ax=!0}if(p.ch){p.TK() -p.r.QR(p.f.oy(p)) -p.ch=!1}s=p.hK() -if(p.CW!=null){r=Math.max(s.gct()-s.geU(),0) -q=p.CW -if(r===Math.max(q.gct()-q.geU(),0))if(s.glO()===p.CW.glO()){r=Math.max(s.gfi()-s.gct(),0) -q=p.CW -r=r===Math.max(q.gfi()-q.gct(),0)&&s.e===p.CW.e}else r=!1 -else r=!1 -r=!r}else r=!0 -if(r){if(!p.cx){A.fk(p.gabr()) -p.cx=!0}p.CW=p.hK()}return!0}, -aaY(a,b){var s=this,r=s.f.uB(s.dy.ghX(),b,a,s.dy.gf0()),q=s.as -q.toString -if(r!==q){s.as=r -return!1}return!0}, -pI(){this.dy.pI() -this.AJ()}, -AJ(){var s,r,q,p,o,n=this,m=n.r -switch(m.a.c.a){case 0:s=B.dv -r=B.du -break -case 1:s=B.dw -r=B.dx -break -case 2:s=B.du -r=B.dv -break -case 3:s=B.dx -r=B.dw -break -default:s=null -r=null}q=A.aK(t._S) -p=n.as -p.toString -o=n.y -o.toString -if(p>o)q.E(0,r) -p=n.as -p.toString -o=n.z -o.toString -if(pm)p=m -break -default:p=n}m=o.as -m.toString -if(p===m)return A.cU(n,t.H) -if(e.a===B.r.a){o.iE(p) -return A.cU(n,t.H)}return o.ig(p,d,e)}, -qU(a,b,c,d){var s,r=this.y -r.toString -s=this.z -s.toString -b=B.e.G(b,r,s) -return this.U4(0,b,c,d)}, -hg(a){var s,r,q=this,p=q.dy -if(p!=null){s=p.gjS() -r=q.dy.ghX() -if(r&&!a.ghX())q.BS() -q.dy.m(0)}else{r=!1 -s=!1}q.dy=a -if(s!==a.gjS())q.r.F2(q.dy.gjS()) -q.dx.sl(0,q.dy.ghX()) -if(!r&&q.dy.ghX())q.BW()}, -BW(){var s=this.dy -s.toString -s.ME(this.hK(),$.F.D$.z.h(0,this.r.z))}, -BY(a){var s,r,q=this.dy -q.toString -s=this.hK() -r=$.F.D$.z.h(0,this.r.z) -r.toString -q.MF(s,r,a)}, -BS(){var s,r,q=this,p=q.dy -p.toString -s=q.hK() -r=$.F.D$.z.h(0,q.r.z) -r.toString -p.MD(s,r) -q.EH() -q.EJ()}, -abs(){var s,r,q -this.cx=!1 -s=this.r.z -if($.F.D$.z.h(0,s)!=null){r=this.hK() -q=$.F.D$.z.h(0,s) -q.toString -s=$.F.D$.z.h(0,s) -if(s!=null)s.dY(new A.oz(r,q,0))}}, -m(a){var s=this.dy -if(s!=null)s.m(0) -this.dy=null -this.eL(0)}, -cT(a){var s,r,q=this -q.U3(a) -s=q.y -s=s==null?null:B.e.V(s,1) -r=q.z -r=r==null?null:B.e.V(r,1) -a.push("range: "+A.e(s)+".."+A.e(r)) -r=q.at -a.push("viewport: "+A.e(r==null?null:B.e.V(r,1)))}} -A.a6n.prototype={ -$1(a){this.a.Q=0}, -$S:2} -A.oz.prototype={ -cT(a){this.UP(a) -a.push(this.a.i(0))}} -A.D4.prototype={ -cT(a){var s,r -this.xC(a) -s=this.e0$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.QM.prototype={} -A.rE.prototype={ -G1(a,b,c,d,e,f){var s=this -if(s.as==null&&c!=null)s.as=c -if(s.dy==null)s.hg(new A.lu(s))}, -gih(){return this.r.a.c}, -py(a){var s,r=this -r.TI(a) -r.dy.a=r -r.k2=a.k2 -s=a.k3 -if(s!=null){r.k3=s -s.a=r -a.k3=null}}, -hg(a){var s,r=this -r.k1=0 -r.TM(a) -s=r.k3 -if(s!=null)s.m(0) -r.k3=null -if(!r.dy.ghX())r.Ec(B.ds)}, -i2(a){var s,r,q,p=this,o=p.f.nk(p,a) -if(o!=null){s=new A.Ff(p) -r=A.aoj(null,0,p.r) -r.cf() -q=r.bj$ -q.b=!0 -q.a.push(s.gAp()) -r.ex(0) -r.z=B.X -r.ug(o).a.a.fU(s.gA4()) -s.b=r -p.hg(s)}else p.hg(new A.lu(p))}, -Ec(a){var s,r,q,p=this -if(p.k2===a)return -p.k2=a -s=p.hK() -r=p.r.z -q=$.F.D$.z.h(0,r) -q.toString -r=$.F.D$.z.h(0,r) -if(r!=null)r.dY(new A.Ma(a,s,q,0))}, -ig(a,b,c){var s,r,q=this,p="_completer",o=q.as -o.toString -if(A.EI(a,o,q.f.grt().a)){q.iE(a) -return A.cU(null,t.H)}o=q.as -o.toString -s=new A.GR(q) -r=$.a5 -A.c9($,p) -s.b=new A.aI(new A.a4(r,t.U),t.h) -o=A.aoj("DrivenScrollActivity",o,q.r) -o.cf() -r=o.bj$ -r.b=!0 -r.a.push(s.gAp()) -o.z=B.X -o.h_(a,b,c).a.a.fU(s.gA4()) -A.c9(s.c,"_controller") -s.c=o -q.hg(s) -return A.a(s.b,p).a}, -iE(a){var s,r,q=this -q.hg(new A.lu(q)) -s=q.as -s.toString -if(s!==a){q.Ct(a) -q.BW() -r=q.as -r.toString -q.BY(r-s) -q.BS()}q.i2(0)}, -m(a){var s=this.k3 -if(s!=null)s.m(0) -this.k3=null -this.TO(0)}} -A.UV.prototype={ -Ac(a){var s,r=this,q="_springTime" -if(a>A.a(r.r,q)){r.w=isFinite(A.a(r.r,q))?A.a(r.r,q):0 -s=A.a(r.f,"_springSimulation")}else{r.w=0 -s=A.a(r.e,"_frictionSimulation")}s.a=r.a -return s}, -es(a,b){return this.Ac(b).es(0,b-this.w)}, -hn(a,b){return this.Ac(b).hn(0,b-this.w)}, -kH(a){return this.Ac(a).kH(a-this.w)}, -i(a){return"BouncingScrollSimulation(leadingExtent: "+A.e(this.b)+", trailingExtent: "+A.e(this.c)+")"}} -A.VL.prototype={ -es(a,b){var s=this,r=B.e.G(b/A.a(s.e,"_duration"),0,1) -return s.b+A.a(s.f,"_distance")*(1.2*r*r*r-3.27*r*r+3.065*r)*J.dq(s.c)}, -hn(a,b){var s=this,r="_duration",q=B.e.G(b/A.a(s.e,r),0,1) -return A.a(s.f,"_distance")*(3.6*q*q-6.54*q+3.065)*J.dq(s.c)/A.a(s.e,r)}, -kH(a){return a>=A.a(this.e,"_duration")}} -A.zK.prototype={ -i(a){return"ScrollViewKeyboardDismissBehavior."+this.b}} -A.KH.prototype={ -a9P(a,b,c,d){return A.ars(0,c,this.Q,B.xG,null,this.ch,b,d)}, -I(a,b){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.a9K(b),h=k.cx,g=A.e4(b) -if(g!=null){s=g.f -r=s.aaL(0,0) -q=s.aaP(0,0) -s=k.c===B.a2 -h=s?q:r -i=new A.hb(g.Mb(s?r:q),i,j)}p=A.b([h!=null?new A.Lc(h,i,j):i],t.p) -s=A.atx(b,k.c,!1) -o=k.f -n=o?A.jd(b):k.e -m=A.a6r(s,n,k.at,!1,k.r,k.ay,j,k.as,new A.a6p(k,s,p)) -l=o&&n!=null?A.aqh(m):m -if(k.ax===B.KZ)return new A.cY(new A.a6q(b),l,j,t.kj) -else return l}} -A.a6p.prototype={ -$2(a,b){return this.a.a9P(a,b,this.b,this.c)}, -$S:427} -A.a6q.prototype={ -$1(a){var s=A.ape(this.a) -if(a.d!=null&&s.gbR())s.E4() -return!1}, -$S:428} -A.Fu.prototype={} -A.Ib.prototype={ -a9K(a){return new A.Lb(this.R8,null)}} -A.ag5.prototype={ -$2(a,b){if(!a.a)a.K(0,b)}, -$S:43} -A.zL.prototype={ -am(){var s=null,r=t.A -return new A.zM(new A.Qy($.b4()),new A.bC(s,r),new A.bC(s,t.hA),new A.bC(s,r),B.tE,s,A.z(t.yb,t.T),s,!0,s,s,s,B.k)}, -ah4(a,b){return this.f.$2(a,b)}} -A.a6x.prototype={ -$1(a){return null}, -$S:429} -A.uH.prototype={ -cZ(a){return this.r!==a.r}} -A.zM.prototype={ -gp8(){var s=this.a.d -if(s==null){s=this.w -s.toString}return s}, -L0(){var s,r,q,p=this,o=p.a.Q -if(o==null){o=p.c -o.toString -o=A.a6i(o)}p.f=o -o=A.a(o,"_configuration") -s=p.c -s.toString -s=o.mn(s) -p.r=s -o=p.a -r=o.e -if(r!=null)p.r=r.ja(s) -else{o=o.Q -if(o!=null){s=p.c -s.toString -p.r=o.mn(s).ja(p.r)}}q=p.d -if(q!=null){p.gp8().q5(0,q) -A.fk(q.geE(q))}o=p.gp8() -s=p.r -s.toString -p.d=o.Ml(s,p,q) -s=p.gp8() -o=p.d -o.toString -s.aj(o)}, -jJ(a,b){var s,r,q,p=this.e -this.oa(p,"offset") -s=p.x -r=s==null -if((r?A.n(p).j("dQ.T").a(s):s)!=null){q=this.d -q.toString -p=r?A.n(p).j("dQ.T").a(s):s -p.toString -q.Pp(p,b)}}, -aB(){if(this.a.d==null)this.w=A.a6j() -this.aS()}, -bH(){var s=this,r=s.c -r.toString -s.x=A.e4(r) -s.L0() -s.US()}, -a7i(a){var s,r,q,p=this,o=null,n=p.a,m=n.e -if(m==null){n=n.Q -if(n==null)m=o -else{s=p.c -s.toString -s=n.mn(s) -m=s}}r=a.e -if(r==null){n=a.Q -if(n==null)r=o -else{s=p.c -s.toString -s=n.mn(s) -r=s}}do{n=m==null -s=n?o:A.C(m) -q=r==null -if(s!=(q?o:A.C(r)))return!0 -m=n?o:m.a -r=q?o:r.a}while(m!=null||r!=null) -n=p.a.d -n=n==null?o:A.C(n) -s=a.d -return n!=(s==null?o:A.C(s))}, -b4(a){var s,r,q=this -q.UT(a) -s=a.d -if(q.a.d!=s){if(s==null){s=q.w -s.toString -r=q.d -r.toString -s.q5(0,r) -q.w.m(0) -q.w=null}else{r=q.d -r.toString -s.q5(0,r) -if(q.a.d==null)q.w=A.a6j()}s=q.gp8() -r=q.d -r.toString -s.aj(r)}if(q.a7i(a))q.L0()}, -m(a){var s,r=this,q=r.a.d -if(q!=null){s=r.d -s.toString -q.q5(0,s)}else{q=r.w -if(q!=null){s=r.d -s.toString -q.q5(0,s)}q=r.w -if(q!=null)q.m(0)}r.d.m(0) -r.e.m(0) -r.UU(0)}, -QR(a){var s,r,q=this -if(a===q.ax)s=!a||A.bn(q.a.c)===q.ay -else s=!1 -if(s)return -if(!a){q.as=B.tE -q.JJ()}else{switch(A.bn(q.a.c).a){case 1:q.as=A.aB([B.lA,new A.co(new A.a6t(q),new A.a6u(q),t.ok)],t.n,t.xR) -break -case 0:q.as=A.aB([B.lz,new A.co(new A.a6v(q),new A.a6w(q),t.Uv)],t.n,t.xR) -break}a=!0}q.ax=a -q.ay=A.bn(q.a.c) -s=q.z -if(s.ga5()!=null){s=s.ga5() -s.Am(q.as) -if(!s.a.f){r=s.c.gF() -r.toString -t.Wx.a(r) -s.e.Ba(r)}}}, -F2(a){var s,r=this -if(r.at===a)return -r.at=a -s=r.Q -if($.F.D$.z.h(0,s)!=null){s=$.F.D$.z.h(0,s).gF() -s.toString -t.Ro.a(s).sNK(r.at)}}, -a1G(a){var s=this.d,r=s.dy.gf0(),q=new A.a_M(this.ga_r(),s) -s.hg(q) -s.k1=r -this.CW=q}, -a6X(a){var s,r,q=this.d,p=q.f,o=p.Bn(q.k1) -p=p.gC4() -s=p==null?null:0 -r=new A.a6k(q,this.ga_p(),o,p,a.a,o!==0,s,a) -q.hg(new A.XD(r,q)) -this.ch=q.k3=r}, -a6Y(a){var s=this.ch -if(s!=null)s.bc(0,a)}, -a6W(a){var s,r,q,p,o=this.ch -if(o!=null){s=a.b -s.toString -r=-s -if(A.am6(o.a.r.a.c))r=-r -o.w=a -if(o.f){s=J.dq(r) -q=o.c -p=Math.abs(r)>Math.abs(q)*0.5 -if(s===J.dq(q)&&p)r+=q}o.a.i2(r)}}, -JJ(){var s=this.CW -if(s!=null)s.a.i2(0) -s=this.ch -if(s!=null)s.a.i2(0)}, -a_s(){this.CW=null}, -a_q(){this.ch=null}, -Kj(a){var s,r=this.d,q=r.as -q.toString -s=r.y -s.toString -s=Math.max(q+a,s) -r=r.z -r.toString -return Math.min(s,r)}, -Jh(a){var s=A.bn(this.a.c)===B.as?a.gwZ().a:a.gwZ().b -return A.am6(this.a.c)?s*-1:s}, -a64(a){var s,r,q,p,o=this -if(t.Mj.b(a)&&o.d!=null){s=o.r -if(s!=null){r=o.d -r.toString -r=!s.oy(r) -s=r}else s=!1 -if(s)return -q=o.Jh(a) -p=o.Kj(q) -if(q!==0){s=o.d.as -s.toString -s=p!==s}else s=!1 -if(s)$.eH.p1$.o9(0,a,o.ga2Q())}}, -a2R(a){var s,r,q,p,o,n=this,m=n.Jh(a),l=n.Kj(m) -if(m!==0){s=n.d.as -s.toString -s=l!==s}else s=!1 -if(s){s=n.d -r=s.as -r.toString -q=s.y -q.toString -q=Math.max(r+m,q) -p=s.z -p.toString -o=Math.min(q,p) -if(o!==r){s.hg(new A.lu(s)) -s.Ec(-m>0?B.la:B.lb) -r=s.as -r.toString -s.Ct(o) -s.dx.sl(0,!0) -s.BW() -q=s.as -q.toString -s.BY(q-r) -s.BS() -s.i2(0)}}}, -a30(a){var s,r -if(a.e0$===0){s=$.F.D$.z.h(0,this.y) -r=s==null?null:s.gF() -if(r!=null)r.ai()}return!1}, -I(a,b){var s,r,q,p,o,n=this,m=null,l="_configuration",k=n.d -k.toString -s=n.as -r=n.a -q=r.w -p=new A.uH(n,k,A.a1q(B.cq,new A.km(A.bq(m,new A.hN(n.at,!1,r.ah4(b,k),n.Q),!1,m,m,!q,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),s,B.ao,q,m,n.z),m,m,n.ga63(),m),m) -k=n.a -if(!k.w){k=n.d -k.toString -s=n.r.glu() -r=n.a -p=new A.cY(n.ga3_(),new A.QN(k,s,r.x,p,n.y),m,t.ji) -k=r}o=new A.a6s(k.c,n.gp8()) -return A.a(n.f,l).uK(b,A.a(n.f,l).uJ(b,p,o),o)}, -gfn(){return this.a.z}} -A.a6t.prototype={ -$0(){return A.arr(null,A.a(this.a.f,"_configuration").gC3())}, -$S:144} -A.a6u.prototype={ -$1(a){var s,r,q=null,p=this.a -a.as=p.gI8() -a.at=p.gJL() -a.ax=p.gJM() -a.ay=p.gJK() -a.ch=p.gJI() -s=p.r -a.CW=s==null?q:s.gDc() -s=p.r -a.cx=s==null?q:s.gw2() -s=p.r -a.cy=s==null?q:s.gDb() -s=A.a(p.f,"_configuration") -r=p.c -r.toString -a.db=s.wE(r) -a.Q=p.a.y -p=p.x -a.b=p==null?q:p.ay}, -$S:145} -A.a6v.prototype={ -$0(){return A.a_N(null,A.a(this.a.f,"_configuration").gC3())}, -$S:146} -A.a6w.prototype={ -$1(a){var s,r,q=null,p=this.a -a.as=p.gI8() -a.at=p.gJL() -a.ax=p.gJM() -a.ay=p.gJK() -a.ch=p.gJI() -s=p.r -a.CW=s==null?q:s.gDc() -s=p.r -a.cx=s==null?q:s.gw2() -s=p.r -a.cy=s==null?q:s.gDb() -s=A.a(p.f,"_configuration") -r=p.c -r.toString -a.db=s.wE(r) -a.Q=p.a.y -p=p.x -a.b=p==null?q:p.ay}, -$S:147} -A.a6s.prototype={} -A.QN.prototype={ -aJ(a){var s=this.e,r=new A.Qo(s,this.f,this.r,null,A.aj()) -r.gar() -r.gaE() -r.CW=!1 -r.sb_(null) -s.a2(0,r.gOg()) -return r}, -aM(a,b){b.slu(this.f) -b.sbS(0,this.e) -b.sQL(this.r)}} -A.Qo.prototype={ -sbS(a,b){var s,r=this,q=r.u -if(b===q)return -s=r.gOg() -q.K(0,s) -r.u=b -b.a2(0,s) -r.ai()}, -slu(a){if(a===this.a8)return -this.a8=a -this.ai()}, -sQL(a){if(a==this.aD)return -this.aD=a -this.ai()}, -eO(a){var s,r,q=this -q.fY(a) -a.a=!0 -if(q.u.ax){a.b3(B.Ll,q.a8) -s=q.u -r=s.as -r.toString -a.y2=r -a.d=!0 -r=s.z -r.toString -a.ao=r -s=s.y -s.toString -a.a6=s -a.sQG(q.aD)}}, -na(a,b,c){var s,r,q,p,o,n,m,l=this -if(c.length!==0){s=B.c.gJ(c).dx -s=!(s!=null&&s.A(0,B.vk))}else s=!0 -if(s){l.FP(a,b,c) -return}s=l.aK -if(s==null)s=l.aK=A.KN(null,l.goA()) -s.sO2(a.at||a.as) -s.sb7(0,a.w) -s=l.aK -s.toString -r=t.J -q=A.b([s],r) -p=A.b([],r) -for(s=c.length,o=null,n=0;n>>24&255)/255*q.gl(q))),r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)) -return s}, -J6(a){var s,r,q,p=this -if(a){s=$.aJ()?A.aT():new A.aO(new A.aQ()) -r=p.c -q=p.r -s.sad(0,A.ak(B.e.aI(255*((r.gl(r)>>>24&255)/255*q.gl(q))),r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)) -s.scj(0,B.T) -s.sf5(1) -return s}s=$.aJ()?A.aT():new A.aO(new A.aQ()) -r=p.b -q=p.r -s.sad(0,A.ak(B.e.aI(255*((r.gl(r)>>>24&255)/255*q.gl(q))),r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)) -return s}, -a5o(){return this.J6(!1)}, -a5k(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g="_thumbOffset",f=i.CW -if(f===B.J||f===B.I)s=i.e===B.q?B.L0:B.L_ -else s=B.L1 -switch(s.a){case 0:f=i.f -r=new A.L(f,c) -f+=2*i.x -q=new A.L(f,i.geN()) -p=i.x+i.Q.a -o=A.a(i.db,g) -n=p-i.x -m=i.w -l=new A.m(n,m) -k=l.Z(0,new A.m(f,0)) -j=new A.m(n+f,m+i.geN()) -break -case 1:f=i.f -r=new A.L(f,c) -q=new A.L(f+2*i.x,i.geN()) -p=b.a-i.f-i.x-i.Q.c -o=A.a(i.db,g) -f=p-i.x -n=i.w -l=new A.m(f,n) -j=new A.m(f,n+i.geN()) -k=l -break -case 2:r=new A.L(c,i.f) -f=i.geN() -n=i.f+2*i.x -q=new A.L(f,n) -p=A.a(i.db,g) -f=i.x -o=f+i.Q.b -m=i.w -f=o-f -l=new A.m(m,f) -k=l.Z(0,new A.m(0,n)) -j=new A.m(m+i.geN(),f+n) -break -case 3:r=new A.L(c,i.f) -q=new A.L(i.geN(),i.f+2*i.x) -p=A.a(i.db,g) -f=i.f -n=i.x -o=b.b-f-n-i.Q.d -f=i.w -n=o-n -l=new A.m(f,n) -j=new A.m(f+i.geN(),n) -k=l -break -default:j=h -k=j -l=k -q=l -r=q -o=r -p=o}f=l.a -n=l.b -i.cy=new A.w(f,n,f+q.a,n+q.b) -i.cx=new A.w(p,o,p+r.a,o+r.b) -f=i.r -if(f.gl(f)!==0){f=i.cy -f.toString -a.c9(0,f,i.a5o()) -a.is(0,k,j,i.J6(!0)) -f=i.y -if(f!=null){n=i.cx -n.toString -a.cm(0,A.yV(n,f),i.gJ5()) -return}f=i.cx -f.toString -a.c9(0,f,i.gJ5()) -return}}, -Kr(){var s,r,q,p,o,n,m,l,k,j=this,i=j.ch.glO(),h=j.CW -h=h===B.J||h===B.I -s=j.Q -h=h?s.gcJ(s)+s.gcR(s):s.giy() -s=j.ch -r=s.b -r.toString -q=s.a -q.toString -s=s.d -s.toString -p=j.CW -p=p===B.J||p===B.I -o=j.Q -p=p?o.gcJ(o)+o.gcR(o):o.giy() -n=B.e.G((i-h)/(r-q+s-p),0,1) -m=Math.max(Math.min(j.geN(),j.at),j.geN()*n) -p=j.ch.glO() -s=j.ch.d -s.toString -l=Math.min(j.as,j.geN()) -i=j.CW -i=i===B.I||i===B.al -h=j.ch -if((i?Math.max(h.gfi()-h.gct(),0):Math.max(h.gct()-h.geU(),0))>0){i=j.CW -i=i===B.I||i===B.al -h=j.ch -h=(i?Math.max(h.gct()-h.geU(),0):Math.max(h.gfi()-h.gct(),0))>0 -i=h}else i=!1 -k=i?l:l*(1-B.e.G(1-p/s,0,0.2)/0.2) -return B.e.G(m,k,j.geN())}, -m(a){this.r.a.K(0,this.gcY()) -this.eL(0)}, -geN(){var s,r,q,p=this,o=p.ch.d -o.toString -s=p.w -r=p.CW -r=r===B.J||r===B.I -q=p.Q -r=r?q.gcJ(q)+q.gcR(q):q.giy() -return o-2*s-r}, -aH(a,b){var s,r,q,p,o,n,m=this,l=m.CW -if(l!=null){s=m.ch -if(s!=null){r=s.b -r.toString -s=s.a -s.toString -s=r<=s}else s=!0}else s=!0 -if(s)return -s=m.ch.d -s.toString -l=l===B.J||l===B.I -r=m.Q -if(s<=(l?r.gcJ(r)+r.gcR(r):r.giy())||m.geN()<=0)return -l=m.CW -l=l===B.J||l===B.I -s=m.Q -q=l?s.b:s.a -p=m.Kr() -l=m.ch -s=l.b -s.toString -r=l.a -r.toString -o=s-r -if(o>0){l=l.c -l.toString -n=B.e.G((l-r)/o,0,1)}else n=0 -l=m.CW -l=l===B.I||l===B.al?1-n:n -m.db=l*(m.geN()-p)+m.w+q -l=m.ch.b -l.toString -if(l==1/0||l==-1/0)return -l=m.CW -l.toString -return m.a5k(a,b,p,l)}, -NG(a,b,c){var s,r,q,p=this,o=p.cy -if(o==null)return!1 -if(p.ay)return!1 -s=p.ch -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -q=o.kw(A.lY(p.cx.gaT(),24)) -s=p.r -if(s.gl(s)===0){if(c&&b===B.bD)return q.A(0,a) -return!1}switch(b.a){case 0:return q.A(0,a) -case 1:case 2:case 3:case 5:default:return o.A(0,a)}}, -adl(a,b){return this.NG(a,b,!1)}, -NH(a,b){var s,r,q=this -if(q.cx==null)return!1 -if(q.ay)return!1 -s=q.r -if(s.gl(s)===0)return!1 -s=q.ch -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -switch(b.a){case 0:s=q.cx -return s.kw(A.lY(s.gaT(),24)).A(0,a) -case 1:case 2:case 3:case 5:default:return q.cx.A(0,a)}}, -vH(a){var s,r,q=this -if(q.cx==null)return null -if(q.ay)return!1 -s=q.r -if(s.gl(s)===0)return!1 -s=q.ch -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -return q.cy.A(0,a)}, -ew(a){var s,r=this -if(r.a.k(0,a.a))if(r.b.k(0,a.b))if(r.c.k(0,a.c))if(r.e==a.e)if(r.f===a.f)if(r.r===a.r)if(r.w===a.w)if(r.x===a.x)if(J.f(r.y,a.y))if(r.Q.k(0,a.Q))if(r.as===a.as)if(r.at===a.at)s=r.ay!==a.ay -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -return s}, -xg(a){return!1}, -grW(){return null}, -i(a){return"#"+A.bF(this)}} -A.a6B.prototype={ -$1(a){var s,r -if(a!=null){s=a.b -s.toString -r=a.a -r.toString -r=s>r -s=r}else s=!1 -return s}, -$S:433} -A.rr.prototype={ -am(){return A.aCT(t.jU)}, -kK(a){return this.cy.$1(a)}} -A.je.prototype={ -gmA(){var s=this.a.e -return s===!0}, -gK0(){if(this.gmA())this.a.toString -return!1}, -glL(){this.a.toString -return!0}, -aB(){var s,r,q,p,o=this,n=null -o.aS() -s=A.bo(n,o.a.ch,n,n,o) -s.c1(o.ga8S()) -o.r=s -s=A.cn(B.P,A.a(s,"_fadeoutAnimationController"),n) -o.w=s -o.a.toString -s=A.a(s,"_fadeoutOpacityAnimation") -r=o.a -q=r.x -if(q==null)q=6 -p=r.w -r=r.dx -r=new A.rI(B.fo,B.a5,B.a5,n,q,s,0,0,p,n,B.aP,18,18,r,$.b4()) -s.a.a2(0,r.gcY()) -A.c9(o.z,"scrollbarPainter") -o.z=r}, -bH(){this.e9()}, -a8T(a){var s,r=this.a.d -if(r==null){s=this.c -s.toString -r=A.jd(s)}if(a!==B.w)if(r!=null)this.glL()}, -rw(){var s,r=this,q=A.a(r.z,"scrollbarPainter") -r.a.toString -q.sad(0,B.fo) -r.a.toString -q.sagG(null) -q.sPF(r.gK0()?B.zp:B.a5) -q.sPE(r.gK0()?B.An:B.a5) -s=r.c.L(t.I) -s.toString -q.sbx(0,s.f) -s=r.a.x -q.sDS(s==null?6:s) -q.srf(r.a.w) -q.sdw(0,r.c.L(t.w).f.f) -q.sx_(r.a.dx) -r.a.toString -q.sD6(0) -r.a.toString -q.sdQ(0,null) -r.a.toString -q.sBF(0) -r.a.toString -q.sDe(0,18) -r.a.toString -q.sOl(18) -q.sNJ(!r.glL())}, -b4(a){var s,r=this,q="_fadeoutAnimationController" -r.bu(a) -s=r.a.e -if(s!=a.e){s=s===!0 -if(s){s=r.f -if(s!=null)s.aA(0) -s=A.a(r.r,q) -s.z=B.X -s.h_(1,B.a9,null)}else A.a(r.r,q).cd(0)}}, -tX(){var s,r=this -if(!r.gmA()){s=r.f -if(s!=null)s.aA(0) -r.f=A.bN(r.a.CW,new A.a4o(r))}}, -l2(){var s=this.e.d -if(s.length!==0)return A.bn(B.c.gbX(s).gih()) -return null}, -vA(){if(this.l2()==null)return -var s=this.f -if(s!=null)s.aA(0)}, -vC(a){var s=this,r=s.a.d -if(r==null){r=s.c -r.toString -r=A.jd(r)}s.e=r -if(s.l2()==null)return -r=s.f -if(r!=null)r.aA(0) -A.a(s.r,"_fadeoutAnimationController").bp(0) -s.d=a}, -ad6(a){var s,r,q,p,o,n,m,l,k,j,i=this -if(i.l2()==null)return -s=B.c.gbX(i.e.d) -r=A.bx("primaryDelta") -switch(s.r.a.c.a){case 0:r.b=i.d.b-a.b -break -case 1:r.b=a.a-i.d.a -break -case 2:r.b=a.b-i.d.b -break -case 3:r.b=i.d.a-a.a -break}q=A.a(i.z,"scrollbarPainter") -p=r.bm() -o=q.ch -n=o.b -n.toString -o=o.a -o.toString -m=q.geN() -q=q.Kr() -l=s.as -l.toString -k=(n-o)*p/(m-q)+l -if(k!==l){j=k-s.f.pH(s,k) -q=i.c -q.toString -q=A.a6i(q) -p=i.c -p.toString -switch(q.ml(p)){case B.bG:case B.bH:case B.aY:case B.bI:q=s.y -q.toString -p=s.z -p.toString -j=B.e.G(j,q,p) -break -case B.av:case B.aX:break}s.iE(j)}i.d=a}, -vB(a,b){var s=this -if(s.l2()==null)return -s.tX() -s.e=s.d=null}, -a3I(a){var s,r,q=this,p="scrollbarPainter",o="_thumbOffset",n=q.a.d -if(n==null){n=q.c -n.toString -n=A.jd(n)}q.e=n -n=B.c.gbX(n.d) -n=$.F.D$.z.h(0,n.r.z) -n.toString -n=A.jj(n) -if(n!=null)n.a.toString -n=B.c.gbX(q.e.d).at -n.toString -s=0.8*n -switch(B.c.gbX(q.e.d).r.a.c.a){case 0:if(a.c.b>A.a(A.a(q.z,p).db,o))s=-s -break -case 2:if(a.c.bA.a(A.a(q.z,p).db,o))s=-s -break}n=B.c.gbX(q.e.d) -r=B.c.gbX(q.e.d).as -r.toString -n.qU(0,r+s,B.fw,B.an)}, -Aa(a){var s,r,q=this.a.d -if(q==null){s=this.c -s.toString -q=A.jd(s)}if(q==null)return!0 -s=q.d -r=s.length -if(r>1)return!1 -return r===0||A.bn(B.c.gbX(s).gih())===a}, -a7_(a){var s,r=this,q="_fadeoutAnimationController",p=r.a -p.toString -s=a.a -if(!p.kK(A.al0(a.b,a.e0$,null,s,null)))return!1 -if(r.gmA())if(A.a(A.a(r.r,q).Q,"_status")!==B.b8&&A.a(A.a(r.r,q).Q,"_status")!==B.H)A.a(r.r,q).bp(0) -p=s.e -if(r.Aa(A.bn(p)))A.a(r.z,"scrollbarPainter").kX(0,s,p) -return!1}, -a32(a){var s,r,q,p=this,o="_fadeoutAnimationController",n="_status",m="scrollbarPainter" -if(!p.a.kK(a))return!1 -s=a.a -r=s.b -r.toString -q=s.a -q.toString -if(r<=q){if(A.a(A.a(p.r,o).Q,n)!==B.w&&A.a(A.a(p.r,o).Q,n)!==B.aM)A.a(p.r,o).cd(0) -r=s.e -if(p.Aa(A.bn(r)))A.a(p.z,m).kX(0,s,r) -return!1}if(a instanceof A.fc||a instanceof A.hY){if(A.a(A.a(p.r,o).Q,n)!==B.b8&&A.a(A.a(p.r,o).Q,n)!==B.H)A.a(p.r,o).bp(0) -r=p.f -if(r!=null)r.aA(0) -r=s.e -if(p.Aa(A.bn(r)))A.a(p.z,m).kX(0,s,r)}else if(a instanceof A.kq)if(p.d==null)p.tX() -return!1}, -ga0z(){var s,r=this,q=A.z(t.n,t.xR),p=r.a.d -if(p==null){s=r.c -s.toString -p=A.jd(s)}if(p==null||!r.glL())return q -q.n(0,B.S6,new A.co(new A.a4k(r),new A.a4l(r),t.ff)) -q.n(0,B.S7,new A.co(new A.a4m(r),new A.a4n(r),t.Bk)) -return q}, -O3(a,b,c){var s,r=this.x -if($.F.D$.z.h(0,r)==null)return!1 -s=A.alU(r,a) -return A.a(this.z,"scrollbarPainter").NG(s,b,!0)}, -Cu(a){var s,r=this -if(r.O3(a.gbS(a),a.gd4(a),!0)){r.y=!0 -A.a(r.r,"_fadeoutAnimationController").bp(0) -s=r.f -if(s!=null)s.aA(0)}else if(r.y){r.y=!1 -r.tX()}}, -Cv(a){this.y=!1 -this.tX()}, -m(a){var s,r=this -A.a(r.r,"_fadeoutAnimationController").m(0) -s=r.f -if(s!=null)s.aA(0) -s=A.a(r.z,"scrollbarPainter") -s.r.a.K(0,s.gcY()) -s.eL(0) -r.Uh(0)}, -I(a,b){var s,r,q=this,p=null -q.rw() -s=q.ga0z() -r=A.a(q.z,"scrollbarPainter") -return new A.cY(q.ga6Z(),new A.cY(q.ga31(),new A.hh(new A.km(A.o5(A.iK(new A.hh(q.a.c,p),r,q.x,p,B.o),B.ck,p,p,new A.a4p(q),new A.a4q(q)),s,p,!1,p,p),p),p,t.WA),p,t.ji)}} -A.a4o.prototype={ -$0(){var s=this.a -A.a(s.r,"_fadeoutAnimationController").cd(0) -s.f=null}, -$S:0} -A.a4k.prototype={ -$0(){var s=this.a,r=s.a.cx,q=t.S,p=A.cf(q) -return new A.jE(s.x,r,null,B.bv,A.z(q,t.G),p,s,null,A.z(q,t.C))}, -$S:434} -A.a4l.prototype={ -$1(a){var s=this.a -a.k4=s.gNx() -a.ok=new A.a4h(s) -a.p1=new A.a4i(s) -a.p3=new A.a4j(s)}, -$S:435} -A.a4h.prototype={ -$1(a){return this.a.vC(a.b)}, -$S:76} -A.a4i.prototype={ -$1(a){return this.a.ad6(a.b)}, -$S:75} -A.a4j.prototype={ -$1(a){return this.a.vB(a.b,a.c)}, -$S:95} -A.a4m.prototype={ -$0(){var s=this.a,r=t.S,q=A.cf(r) -return new A.jF(s.x,B.an,18,B.bv,A.z(r,t.G),q,s,null,A.z(r,t.C))}, -$S:437} -A.a4n.prototype={ -$1(a){a.y1=this.a.ga3H()}, -$S:438} -A.a4p.prototype={ -$1(a){var s -switch(a.gd4(a).a){case 1:s=this.a -if(s.glL())s.Cv(a) -break -case 2:case 3:case 5:case 0:default:break}}, -$S:37} -A.a4q.prototype={ -$1(a){var s -switch(a.gd4(a).a){case 1:s=this.a -if(s.glL())s.Cu(a) -break -case 2:case 3:case 5:case 0:default:break}}, -$S:439} -A.jE.prototype={ -hr(a){if(!this.zo(this.ej,a.gbS(a),a.gd4(a)))return!1 -return this.SN(a)}, -zo(a,b,c){var s -if($.F.D$.z.h(0,a)==null)return!1 -s=$.F.D$.z.h(0,a).f -s.toString -s=t.ip.a(s).f -s.toString -return t.sm.a(s).NH(A.alU(a,b),c)}} -A.jF.prototype={ -hr(a){if(!this.zo(this.al,a.gbS(a),a.gd4(a)))return!1 -return this.TW(a)}, -zo(a,b,c){var s,r -if($.F.D$.z.h(0,a)==null)return!1 -s=$.F.D$.z.h(0,a).f -s.toString -s=t.ip.a(s).f -s.toString -t.sm.a(s) -r=A.alU(a,b) -return s.adl(r,c)&&!s.NH(r,c)}} -A.uB.prototype={ -bL(){this.cw() -this.ck() -this.dl()}, -m(a){var s=this,r=s.aw$ -if(r!=null)r.K(0,s.gd9()) -s.aw$=null -s.aR(0)}} -A.zS.prototype={ -am(){return new A.QW(B.k)}} -A.QW.prototype={ -gbN(a){var s=this.d -return s===$?this.d=A.z(t.K,t.X):s}, -I(a,b){var s=this.a.c -return new A.QX(this.gbN(this),s,null)}} -A.QX.prototype={ -cZ(a){return this.x!==a.x}, -agZ(a,b){var s,r,q,p -for(s=b.ga1(b),r=this.x,q=a.x;s.t();){p=s.gH(s) -if(!J.f(r.h(0,p),q.h(0,p)))return!0}return!1}, -gbN(a){return this.x}} -A.aR.prototype={$irO:1} -A.p4.prototype={} -A.rP.prototype={ -sFf(a){var s=this -if(!A.aje(s.b,a)){s.b=a -s.c=null -s.ab()}}, -gIq(){var s=this.c -return s==null?this.c=A.aDh(this.b):s}, -a0d(a,b){var s,r,q,p,o,n,m,l,k=this.gIq().h(0,a.c.gvW()),j=this.gIq().h(0,null),i=A.b([],t.Na) -if(k!=null)B.c.P(i,k) -if(j!=null)B.c.P(i,j) -for(s=i.length,r=a instanceof A.kn,q=b.d,p=0;pp.a||s+r.b>p.b}else o=!0}else o=!0 -return o}, -aH(a,b){var s,r,q,p,o=this -if(o.q$!=null){s=o.M.as -s.toString -s=o.pk(s) -r=new A.afB(o,s) -s=o.JX(s)&&o.a7!==B.u -q=o.q -if(s){s=A.a(o.CW,"_needsCompositing") -p=o.k1 -q.saL(0,a.m6(s,b,new A.w(0,0,0+p.a,0+p.b),r,o.a7,q.a))}else{q.saL(0,null) -r.$2(a,b)}}}, -m(a){this.q.saL(0,null) -this.le(0)}, -dm(a,b){var s=this.M.as -s.toString -s=this.pk(s) -b.aC(0,s.a,s.b)}, -jj(a){var s=this,r=s.M.as -r.toString -r=s.pk(r) -if(s.JX(r)){r=s.k1 -return new A.w(0,0,0+r.a,0+r.b)}return null}, -cL(a,b){var s,r=this -if(r.q$!=null){s=r.M.as -s.toString -return a.lt(new A.afA(r,b),r.pk(s),b)}return!1}, -mk(a,b,c){var s,r,q,p,o,n,m,l=this -if(c==null)c=a.giM() -if(!(a instanceof A.B)){s=l.M.as -s.toString -return new A.m5(s,c)}r=A.lJ(a.dj(0,l.q$),c) -s=l.q$.k1 -s.toString -switch(l.C.a){case 0:q=l.k1.b -p=r.d -o=s.b-p -n=p-r.b -break -case 1:q=l.k1.a -o=r.a -n=r.c-o -break -case 2:q=l.k1.b -o=r.b -n=r.d-o -break -case 3:q=l.k1.a -p=r.c -o=s.a-p -n=p-r.a -break -default:o=null -n=null -q=null}m=o-(q-n)*b -return new A.m5(m,r.c8(l.pk(m)))}, -dD(a,b,c,d){var s=this -if(!s.M.f.glu())return s.t9(a,b,c,d) -s.t9(a,null,c,A.aqB(a,b,c,s.M,d,s))}, -oB(){return this.dD(B.au,null,B.r,null)}, -l8(a){return this.dD(B.au,null,B.r,a)}, -mz(a,b,c){return this.dD(a,null,b,c)}, -l9(a,b){return this.dD(B.au,a,B.r,b)}, -BO(a){var s -switch(A.bn(this.C).a){case 1:s=this.k1 -return new A.w(0,-250,0+s.a,0+s.b+250) -case 0:s=this.k1 -return new A.w(-250,0,0+s.a+250,0+s.b)}}, -$iJY:1} -A.afB.prototype={ -$2(a,b){var s=this.a.q$ -s.toString -a.df(s,b.Z(0,this.b))}, -$S:12} -A.afA.prototype={ -$2(a,b){return this.a.q$.bD(a,b)}, -$S:11} -A.Ek.prototype={ -aj(a){var s -this.dE(a) -s=this.q$ -if(s!=null)s.aj(a)}, -aa(a){var s -this.d7(0) -s=this.q$ -if(s!=null)s.aa(0)}} -A.SY.prototype={} -A.SZ.prototype={} -A.a8r.prototype={ -i(a){var s=A.b([],t.s) -this.cT(s) -return"#"+A.bF(this)+"("+B.c.bB(s,", ")+")"}, -cT(a){var s,r,q -try{s=this.b -if(s!=null)a.push("estimated child count: "+A.e(s))}catch(q){r=A.ab(q) -a.push("estimated child count: EXCEPTION ("+J.W(r).i(0)+")")}}} -A.QG.prototype={} -A.L7.prototype={ -acg(a){return null}, -LN(a,b,c){var s,r,q,p,o,n,m,l,k=null -if(c>=0)p=c>=this.b -else p=!0 -if(p)return k -s=null -try{s=this.a.$2(b,c)}catch(o){r=A.ab(o) -q=A.aA(o) -n=new A.bs(r,q,"widgets library",A.bi("building"),k,!1) -A.cS(n) -s=A.wE(n)}if(s==null)return k -if(s.a!=null){p=s.a -p.toString -m=new A.QG(p)}else m=k -p=s -s=new A.hh(p,k) -l=A.asE(s,c) -if(l!=null)s=new A.HO(l,s,k) -p=s -s=new A.vx(p,k) -return new A.xq(s,m)}} -A.Ld.prototype={} -A.oJ.prototype={ -c_(a){return A.aqT(this,!1)}} -A.Lb.prototype={ -c_(a){return A.aqT(this,!0)}, -aJ(a){var s=new A.Km(t.Gt.a(a),A.z(t.S,t.r),0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -return s}} -A.ta.prototype={ -gF(){return t.Ss.a(A.bm.prototype.gF.call(this))}, -bc(a,b){var s,r,q=this.f -q.toString -t.M0.a(q) -this.lf(0,b) -s=b.d -r=q.d -if(s!==r){A.C(s) -A.C(r) -q=!0}else q=!1 -if(q)this.iN()}, -iN(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0={} -a.xK() -a.R8=null -a0.a=!1 -try{i=t.S -s=A.al4(i,t.Dv) -r=A.iS(i,t.i) -i=a.f -i.toString -q=t.M0.a(i) -p=new A.a8v(a0,a,s,q,r) -for(i=a.p4,h=i.$ti,h=h.j("@<1>").az(h.j("ef<1,2>")).j("kT<1,2>"),h=A.ap(new A.kT(i,h),!0,h.j("p.E")),g=h.length,f=t.MR,e=a.p3,d=0;d").az(g.j("ef<1,2>")).j("kT<1,2>")).Y(0,p) -if(!a0.a&&a.rx){b=i.Ob() -k=b==null?-1:b -j=k+1 -J.cR(s,j,i.h(0,j)) -p.$1(j)}}finally{a.RG=null -a.gF()}}, -aaZ(a,b){this.r.pN(this,new A.a8s(this,b,a))}, -dN(a,b,c){var s,r,q,p,o=null -if(a==null)s=o -else{s=a.gF() -s=s==null?o:s.e}r=t.MR -r.a(s) -q=this.Sv(a,b,c) -if(q==null)p=o -else{p=q.gF() -p=p==null?o:p.e}r.a(p) -if(s!=p&&s!=null&&p!=null)p.a=s.a -return q}, -ix(a){this.p4.B(0,a.d) -this.jU(a)}, -P8(a){var s,r=this -r.gF() -s=a.e -s.toString -s=t.D.a(s).b -s.toString -r.r.pN(r,new A.a8w(r,s))}, -MY(a,b,c,d,e){var s=this.f -s.toString -t.M0.a(s) -d.toString -s=A.aDq(b,c,d,e,s.d.b) -return s}, -guP(){var s=this.f -s.toString -t.M0.a(s) -return s.d.b}, -q9(){var s=this.p4 -s.acj() -s.Ob() -s=this.f -s.toString -t.M0.a(s)}, -BP(a){var s=a.e -s.toString -t.D.a(s).b=this.RG}, -iC(a,b){this.gF().xx(0,t.r.a(a),this.R8)}, -iK(a,b,c){this.gF().w5(t.r.a(a),this.R8)}, -iQ(a,b){this.gF().B(0,t.r.a(a))}, -bb(a){var s=this.p4,r=s.$ti -r=r.j("@<1>").az(r.z[1]).j("pp<1,2>") -r=A.n4(new A.pp(s,r),r.j("p.E"),t.u) -B.c.Y(A.ap(r,!0,A.n(r).j("p.E")),a)}} -A.a8v.prototype={ -$1(a){var s,r,q,p,o=this,n=o.b -n.RG=a -q=n.p4 -if(q.h(0,a)!=null&&!J.f(q.h(0,a),o.c.h(0,a))){q.n(0,a,n.dN(q.h(0,a),null,a)) -o.a.a=!0}s=n.dN(o.c.h(0,a),o.d.d.LN(0,n,a),a) -if(s!=null){p=o.a -p.a=p.a||!J.f(q.h(0,a),s) -q.n(0,a,s) -q=s.gF().e -q.toString -r=t.D.a(q) -if(a===0)r.a=0 -else{q=o.e -if(q.ap(0,a))r.a=q.h(0,a)}if(!r.c)n.R8=t.Qv.a(s.gF())}else{o.a.a=!0 -q.B(0,a)}}, -$S:39} -A.a8t.prototype={ -$0(){return null}, -$S:6} -A.a8u.prototype={ -$0(){return this.a.p4.h(0,this.b)}, -$S:444} -A.a8s.prototype={ -$0(){var s,r,q,p=this,o=p.a -o.R8=p.b==null?null:t.Qv.a(o.p4.h(0,p.c-1).gF()) -s=null -try{q=o.f -q.toString -r=t.M0.a(q) -q=o.RG=p.c -s=o.dN(o.p4.h(0,q),r.d.LN(0,o,q),q)}finally{o.RG=null}q=p.c -o=o.p4 -if(s!=null)o.n(0,q,s) -else o.B(0,q)}, -$S:0} -A.a8w.prototype={ -$0(){var s,r,q,p=this -try{r=p.a -q=r.RG=p.b -s=r.dN(r.p4.h(0,q),null,q)}finally{p.a.RG=null}p.a.p4.B(0,p.b)}, -$S:0} -A.xl.prototype={ -pJ(a){var s,r,q=a.e -q.toString -t.Cl.a(q) -s=this.f -if(q.qp$!==s){q.qp$=s -r=a.ga3(a) -if(r instanceof A.u&&!s)r.a0()}}} -A.L8.prototype={ -I(a,b){var s=this.c,r=B.f.G(1-s,0,1) -return new A.R6(r/2,new A.R5(s,this.e,null),null)}} -A.R5.prototype={ -aJ(a){var s=new A.Kk(this.f,t.Gt.a(a),A.z(t.S,t.r),0,null,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -return s}, -aM(a,b){b.srC(this.f)}} -A.R6.prototype={ -aJ(a){var s=new A.Qq(this.e,null,A.aj()) -s.gar() -s.gaE() -s.CW=!1 -return s}, -aM(a,b){b.srC(this.e)}} -A.Qq.prototype={ -srC(a){var s=this -if(s.c5===a)return -s.c5=a -s.e1=null -s.a0()}, -gcB(){return this.e1}, -a7v(){var s,r,q=this -if(q.e1!=null&&J.f(q.co,t.q.a(A.u.prototype.ga_.call(q))))return -s=t.q -r=s.a(A.u.prototype.ga_.call(q)).y*q.c5 -q.co=s.a(A.u.prototype.ga_.call(q)) -switch(A.bn(s.a(A.u.prototype.ga_.call(q)).a).a){case 0:q.e1=new A.as(r,0,r,0) -break -case 1:q.e1=new A.as(0,r,0,r) -break}return}, -bK(){this.a7v() -this.FQ()}} -A.mj.prototype={ -c_(a){var s=A.n(this) -return new A.A2(A.z(s.j("mj.S"),t.u),this,B.a7,s.j("A2"))}} -A.oK.prototype={ -iP(){B.c.Y(this.ghj(this),this.gDJ())}, -bb(a){B.c.Y(this.ghj(this),a)}, -JN(a,b){var s=this.hT$,r=s.h(0,b) -if(r!=null){this.jm(r) -s.B(0,b)}if(a!=null){s.n(0,b,a) -this.hf(a)}}} -A.A2.prototype={ -gF(){return this.$ti.j("oK<1>").a(A.bm.prototype.gF.call(this))}, -bb(a){var s=this.p3 -s.gb2(s).Y(0,a)}, -ix(a){this.p3.B(0,a.d) -this.jU(a)}, -fj(a,b){this.oK(a,b) -this.KK()}, -bc(a,b){this.lf(0,b) -this.KK()}, -KK(){var s,r,q,p,o,n,m=this,l=m.f -l.toString -m.$ti.j("mj<1>").a(l) -for(s=m.p3,r=0;r<11;++r){q=B.Eq[r] -p=l.aa6(q) -o=s.h(0,q) -n=m.dN(o,p,q) -if(o!=null)s.B(0,q) -if(n!=null)s.n(0,q,n)}}, -iC(a,b){this.$ti.j("oK<1>").a(A.bm.prototype.gF.call(this)).JN(a,b)}, -iQ(a,b){this.$ti.j("oK<1>").a(A.bm.prototype.gF.call(this)).JN(null,b)}, -iK(a,b,c){}} -A.Ln.prototype={ -I(a,b){return A.qr(B.cL,1)}} -A.lk.prototype={ -cZ(a){var s,r=this -if(r.w.k(0,a.w))if(r.y===a.y)if(r.z===a.z)s=r.as!==a.as||!1 -else s=!0 -else s=!0 -else s=!0 -return s}, -Eh(a,b,c){var s=this -return A.jQ(c,null,s.Q,s.z,s.y,s.w,s.x,s.at,s.as)}} -A.WC.prototype={ -$1(a){var s,r,q=this,p=a.L(t.yS) -if(p==null)p=B.mO -s=p.w.bg(q.b) -r=q.e -if(r==null)r=p.z -return A.jQ(q.w,q.a,p.Q,r,p.y,s,p.x,null,p.as)}, -$S:445} -A.Pm.prototype={ -I(a,b){throw A.c(A.Hh("A DefaultTextStyle constructed with DefaultTextStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultTextStyle.of() when no enclosing default text style is present in a BuildContext."))}} -A.es.prototype={ -I(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=b.L(t.yS) -if(g==null)g=B.mO -s=i.e -if(s==null||s.a)s=g.w.bg(s) -r=A.e4(b) -r=r==null?h:r.at -if(r===!0)s=s.bg(B.Q8) -r=i.r -if(r==null)r=g.x -if(r==null)r=B.bm -q=i.w -p=i.y -if(p==null)p=g.y -o=i.z -if(o==null)o=s==null?h:s.fx -if(o==null)o=g.z -n=A.akK(b) -m=i.as -if(m==null)m=g.Q -l=A.aoL(b) -k=i.d -k=k!=null?A.b([k],t.VO):h -j=A.aqC(h,m,o,p,h,A.hm(k,s,i.c),r,q,l,n,g.as) -g=i.at -return g!=null?A.bq(h,new A.lp(!0,j,h),!1,h,h,!1,h,h,h,h,g,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,q,h,h):j}, -gbN(a){return this.c}} -A.wm.prototype={} -A.hi.prototype={} -A.eR.prototype={} -A.tx.prototype={ -i(a){return"TextSelectionHandleType."+this.b}} -A.a9O.prototype={ -Cz(a){return this.acT(a)}, -acT(a){var s=0,r=A.S(t.H) -var $async$Cz=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:a.r6(B.bF) -return A.Q(null,r)}}) -return A.R($async$Cz,r)}} -A.LQ.prototype={ -AL(){var s=this,r=s.x&&s.a.co.a -s.f.sl(0,r) -r=s.x&&s.a.c5.a -s.r.sl(0,r) -r=s.a -r=r.co.a||r.c5.a -s.w.sl(0,r)}, -sNy(a){if(this.x===a)return -this.x=a -this.AL()}, -bc(a,b){if(this.e.k(0,b))return -this.e=b -this.uo()}, -uo(){var s,r,q,p,o,n,m,l=this,k=null,j=A.a(l.d,"_selectionOverlay"),i=l.a,h=i.al,g=h.e -g.toString -j.sRx(l.GH(g,B.vF,B.vG)) -s=h.c.DX() -g=l.c -r=g.a.c.a.a -if(s===r)if(l.e.b.gbv()){q=l.e.b -q=q.a!==q.b}else q=!1 -else q=!1 -if(q){q=l.e.b -p=B.b.N(r,q.a,q.b) -q=p.length===0?B.b5:new A.e9(p) -q=q.gJ(q) -o=l.e.b.a -n=i.wR(new A.cx(o,o+q.length))}else n=k -q=n==null?k:n.d-n.b -j.sae4(q==null?h.gdz():q) -q=h.e -q.toString -j.sabP(l.GH(q,B.vG,B.vF)) -s=h.c.DX() -r=g.a.c.a.a -if(s===r)if(l.e.b.gbv()){g=l.e.b -g=g.a!==g.b}else g=!1 -else g=!1 -if(g){g=l.e.b -p=B.b.N(r,g.a,g.b) -g=p.length===0?B.b5:new A.e9(p) -g=g.gR(g) -q=l.e.b.b -m=i.wR(new A.cx(q-g.length,q))}else m=k -g=m==null?k:m.d-m.b -j.sae3(g==null?h.gdz():g) -h=i.Eq(l.e.b) -if(!A.dV(j.ax,h))j.n0() -j.ax=h -j.sagE(i.bO)}, -m(a){var s,r,q=this -A.a(q.d,"_selectionOverlay").ND() -s=q.a -r=q.gL7() -s.co.K(0,r) -s.c5.K(0,r) -r=q.w -s=r.y2$=$.b4() -r.y1$=0 -r=q.f -r.y2$=s -r.y1$=0 -r=q.r -r.y2$=s -r.y1$=0}, -a36(a){var s=this.b -s.toString -this.y=a.b.Z(0,new A.m(0,-s.l_(this.a.al.gdz()).b))}, -a38(a){var s,r,q=this,p="_dragEndPosition",o=A.a(q.y,p).Z(0,a.b) -q.y=o -s=q.a.l1(A.a(o,p)) -o=q.e.b -if(o.a===o.b){q.tL(A.Au(s),!0) -return}r=A.cj(B.l,o.c,s.a,!1) -if(r.c>=r.d)return -q.tL(r,!0)}, -a3c(a){var s=this.b -s.toString -this.z=a.b.Z(0,new A.m(0,-s.l_(this.a.al.gdz()).b))}, -a3e(a){var s,r,q=this,p="_dragStartPosition",o=A.a(q.z,p).Z(0,a.b) -q.z=o -s=q.a.l1(A.a(o,p)) -o=q.e.b -if(o.a===o.b){q.tL(A.Au(s),!1) -return}r=A.cj(B.l,s.a,o.d,!1) -if(r.c>=r.d)return -q.tL(r,!1)}, -tL(a,b){var s=b?a.gdd():a.gpM(),r=this.c -r.fT(this.e.io(a),B.aK) -r.ii(s)}, -GH(a,b,c){var s=this.e.b -if(s.a===s.b)return B.dz -switch(a.a){case 1:return b -case 0:return c}}} -A.KL.prototype={ -sRx(a){if(this.b===a)return -this.b=a -this.n0()}, -sae4(a){if(this.c===a)return -this.c=a -this.n0()}, -sabP(a){if(this.w===a)return -this.w=a -this.n0()}, -sae3(a){if(this.x===a)return -this.x=a -this.n0()}, -sagE(a){if(J.f(this.fx,a))return -this.fx=a -this.n0()}, -Rg(){var s,r,q=this -if(q.fy!=null)return -q.fy=A.b([A.rb(q.gZ7(),!1),A.rb(q.gYU(),!1)],t.wi) -s=q.a.Co(t.N1) -s.toString -r=q.fy -r.toString -s.NO(0,r)}, -n0(){var s,r=this,q=r.fy,p=q==null -if(p&&r.go==null)return -s=$.bK -if(s.cy$===B.l9){if(r.id)return -r.id=!0 -s.ch$.push(new A.a6C(r))}else{if(!p){q[0].fh() -r.fy[1].fh()}q=r.go -if(q!=null)q.fh()}}, -ND(){var s=this,r=s.fy -if(r!=null){r[0].bw(0) -s.fy[1].bw(0) -s.fy=null}if(s.go!=null)s.jv()}, -jv(){var s=this.go -if(s==null)return -s.bw(0) -this.go=null}, -Z8(a){var s,r,q=this,p=null,o=q.cy -if(o==null)s=A.cc(p,p,p,p,p,p,p,p,p) -else{r=q.b -s=A.arU(q.dx,q.CW,p,q.e,q.f,q.dy,q.c,o,r,q.d)}return new A.lp(!0,s,p)}, -YV(a){var s,r,q=this,p=null,o=q.cy -if(o==null||q.b===B.dz)s=A.cc(p,p,p,p,p,p,p,p,p) -else{r=q.w -s=A.arU(q.dx,q.cx,p,q.z,q.Q,q.dy,q.x,o,r,q.y)}return new A.lp(!0,s,p)}} -A.a6C.prototype={ -$1(a){var s,r=this.a -r.id=!1 -s=r.fy -if(s!=null){s[0].fh() -r.fy[1].fh()}r=r.go -if(r!=null)r.fh()}, -$S:2} -A.D9.prototype={ -am(){return new A.Da(null,null,B.k)}} -A.Da.prototype={ -aB(){var s=this -s.aS() -s.d=A.bo(null,B.cY,null,null,s) -s.zl() -s.a.x.a2(0,s.gzk())}, -zl(){var s,r="_controller",q=this.a.x.a -if(q==null)q=!0 -s=this.d -if(q)A.a(s,r).bp(0) -else A.a(s,r).cd(0)}, -b4(a){var s,r=this -r.bu(a) -s=r.gzk() -a.x.K(0,s) -r.zl() -r.a.x.a2(0,s)}, -m(a){var s=this -s.a.x.K(0,s.gzk()) -A.a(s.d,"_controller").m(0) -s.Vt(0)}, -I(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=d.a,a=b.w.om(b.z,b.y) -b=d.a -s=b.w.l_(b.y) -b=-a.a -r=-a.b -q=b+s.a -p=r+s.b -o=new A.w(b,r,q,p) -n=o.kw(A.lY(o.gaT(),24)) -m=n.a -l=n.c-m -b=Math.max((l-(q-b))/2,0) -q=n.b -k=n.d-q -r=Math.max((k-(p-r))/2,0) -p=d.a.c -j=A.a(d.d,"_controller") -i=d.a -h=i.Q -g=i.e -f=i.f -e=i.r -return A.aoD(A.iQ(!1,A.cc(B.cf,A.eI(B.aQ,new A.cq(new A.as(b,r,b,r),i.w.uI(a1,i.z,i.y,i.d),c),h,!1,c,c,c,c,c,c,c,c,c,e,g,f,c,c,c,c,c,c,c),c,c,c,k,c,c,l),j),p,new A.m(m,q),!1)}} -A.Aw.prototype={ -ga4i(){var s,r,q,p=this.a.y,o=p.ga5() -o.toString -o=$.F.D$.z.h(0,o.r).gF() -o.toString -s=t.E -s.a(o) -o=p.ga5() -o.toString -o=$.F.D$.z.h(0,o.r).gF() -o.toString -s.a(o) -r=p.ga5() -r.toString -r=$.F.D$.z.h(0,r.r).gF() -r.toString -r=s.a(r).bO -r.toString -q=o.l1(r) -o=p.ga5() -o.toString -o=$.F.D$.z.h(0,o.r).gF() -o.toString -r=q.a -if(s.a(o).aK.a<=r){p=p.ga5() -p.toString -p=$.F.D$.z.h(0,p.r).gF() -p.toString -r=s.a(p).aK.b>=r -p=r}else p=!1 -return p}, -Kp(a,b,c){var s,r,q,p,o,n=this.a.y,m=n.ga5() -m.toString -m=$.F.D$.z.h(0,m.r).gF() -m.toString -s=t.E -r=s.a(m).l1(a) -if(c==null){m=n.ga5() -m.toString -m=$.F.D$.z.h(0,m.r).gF() -m.toString -q=s.a(m).aK}else q=c -m=r.a -s=q.c -p=q.d -o=q.pY(Math.abs(m-s)n -if(l&&p.c===n){s=j.ga5() -s.toString -j=j.ga5() -j.toString -s.fT(j.a.c.a.io(A.cj(B.l,k.e.d,m,!1)),B.aK)}else if(!l&&m!==n&&p.c!==n){s=j.ga5() -s.toString -j=j.ga5() -j.toString -s.fT(j.a.c.a.io(A.cj(B.l,k.e.c,m,!1)),B.aK)}else k.tx(r,B.aK)}, -aeA(a){if(this.d){this.d=!1 -this.e=null}}} -A.Av.prototype={ -am(){return new A.DC(B.k)}} -A.DC.prototype={ -m(a){var s=this.d -if(s!=null)s.aA(0) -s=this.x -if(s!=null)s.aA(0) -this.aR(0)}, -a80(a){var s=this -s.a.c.$1(a) -if(s.d!=null&&s.a4f(a.a)){s.a.as.$1(a) -s.d.aA(0) -s.e=s.d=null -s.f=!0}}, -a82(a){var s=this -if(!s.f){s.a.w.$1(a) -s.e=a.a -s.d=A.bN(B.cn,s.ga_w())}s.f=!1}, -a7Z(){this.a.x.$0()}, -a1K(a){this.r=a -this.a.at.$1(a)}, -a1M(a){var s=this -s.w=a -if(s.x==null)s.x=A.bN(B.cZ,s.ga1N())}, -I9(){var s,r=this,q=r.a.ax,p=r.r -p.toString -s=r.w -s.toString -q.$2(p,s) -r.w=r.x=null}, -a1I(a){var s=this,r=s.x -if(r!=null){r.aA(0) -s.I9()}s.a.ay.$1(a) -s.w=s.r=s.x=null}, -a0u(a){var s=this.d -if(s!=null)s.aA(0) -this.d=null -s=this.a.d -if(s!=null)s.$1(a)}, -a0s(a){var s=this.a.e -if(s!=null)s.$1(a)}, -a2o(a){var s -if(!this.f){this.a.toString -s=!0}else s=!1 -if(s)this.a.y.$1(a)}, -a2m(a){var s -if(!this.f){this.a.toString -s=!0}else s=!1 -if(s)this.a.z.$1(a)}, -a2k(a){var s,r=this -if(!r.f){r.a.toString -s=!0}else s=!1 -if(s)r.a.Q.$1(a) -r.f=!1}, -a_x(){this.e=this.d=null}, -a4f(a){var s=this.e -if(s==null)return!1 -return a.a9(0,s).gcE()<=100}, -I(a,b){var s,r,q=this,p=A.z(t.n,t.xR) -p.n(0,B.ly,new A.co(new A.agG(q),new A.agH(q),t.UN)) -q.a.toString -p.n(0,B.lx,new A.co(new A.agI(q),new A.agJ(q),t.jn)) -q.a.toString -p.n(0,B.eO,new A.co(new A.agK(q),new A.agL(q),t.YC)) -s=q.a -if(s.d!=null||s.e!=null)p.n(0,B.Ry,new A.co(new A.agM(q),new A.agN(q),t.C1)) -s=q.a -r=s.ch -return new A.km(s.CW,p,r,!0,null,null)}} -A.agG.prototype={ -$0(){return A.a9b(this.a)}, -$S:140} -A.agH.prototype={ -$1(a){var s=this.a,r=s.a -a.aq=r.f -a.b5=r.r -a.y1=s.ga8_() -a.y2=s.ga81() -a.a6=s.ga7Y()}, -$S:141} -A.agI.prototype={ -$0(){return A.akE(this.a,null,B.bC,null,null)}, -$S:142} -A.agJ.prototype={ -$1(a){var s=this.a -a.ok=s.ga2n() -a.p1=s.ga2l() -a.p3=s.ga2j()}, -$S:143} -A.agK.prototype={ -$0(){return A.aq5(this.a,A.bM([B.bD],t.C))}, -$S:148} -A.agL.prototype={ -$1(a){var s -a.Q=B.AT -s=this.a -a.at=s.ga1J() -a.ax=s.ga1L() -a.ay=s.ga1H()}, -$S:149} -A.agM.prototype={ -$0(){return A.aBh(this.a)}, -$S:447} -A.agN.prototype={ -$1(a){var s=this.a,r=s.a -a.Q=r.d!=null?s.ga0t():null -a.ax=r.e!=null?s.ga0r():null}, -$S:448} -A.En.prototype={ -m(a){var s=this,r=s.cz$ -if(r!=null)r.K(0,s.gkh()) -s.cz$=null -s.aR(0)}, -bL(){this.cw() -this.ck() -this.ki()}} -A.tB.prototype={ -am(){return new A.RP(new A.d7(!0,$.b4()),B.k)}} -A.RP.prototype={ -bH(){var s,r=this -r.e9() -s=r.c -s.toString -r.d=A.ale(s) -r.KO()}, -b4(a){this.bu(a) -this.KO()}, -m(a){var s=this.e -s.y2$=$.b4() -s.y1$=0 -this.aR(0)}, -KO(){var s=this.d&&this.a.c -this.e.sl(0,s)}, -I(a,b){var s=this.e -return new A.u4(s.a,s,this.a.d,null)}} -A.u4.prototype={ -cZ(a){return this.f!==a.f}} -A.jk.prototype={ -v3(a){var s,r=this -r.fe$=new A.tA(a,null) -r.ck() -r.ki() -s=r.fe$ -s.toString -return s}, -ki(){var s=this.fe$ -if(s!=null)s.sDh(0,!this.cz$.a)}, -ck(){var s,r=this,q=r.c -q.toString -s=A.arc(q) -q=r.cz$ -if(s===q)return -if(q!=null)q.K(0,r.gkh()) -s.a2(0,r.gkh()) -r.cz$=s}} -A.cP.prototype={ -v3(a){var s,r=this -if(r.aw$==null)r.ck() -if(r.bP$==null)r.bP$=A.aK(t.DH) -s=new A.Sn(r,a,null) -s.sDh(0,!r.aw$.a) -r.bP$.E(0,s) -return s}, -dl(){var s,r,q,p=this.bP$ -if(p!=null){s=!this.aw$.a -for(p=A.ir(p,p.r),r=A.n(p).c;p.t();){q=p.d;(q==null?r.a(q):q).sDh(0,s)}}}, -ck(){var s,r=this,q=r.c -q.toString -s=A.arc(q) -q=r.aw$ -if(s===q)return -if(q!=null)q.K(0,r.gd9()) -s.a2(0,r.gd9()) -r.aw$=s}} -A.Sn.prototype={ -m(a){this.w.bP$.B(0,this) -this.FS(0)}} -A.LX.prototype={ -I(a,b){A.a97(new A.UB(this.c,this.d.a)) -return this.e}} -A.vk.prototype={ -am(){return new A.B0(B.k)}} -A.B0.prototype={ -aB(){this.aS() -this.a.c.a2(0,this.gze())}, -b4(a){var s,r,q=this -q.bu(a) -s=a.c -if(!q.a.c.k(0,s)){r=q.gze() -s.K(0,r) -q.a.c.a2(0,r)}}, -m(a){this.a.c.K(0,this.gze()) -this.aR(0)}, -a1n(){this.a4(new A.aaV())}, -I(a,b){return this.a.I(0,b)}} -A.aaV.prototype={ -$0(){}, -$S:0} -A.L6.prototype={ -I(a,b){var s=this,r=t.so.a(s.c),q=r.gl(r) -if(s.e===B.aa)q=new A.m(-q.a,q.b) -return A.api(s.r,s.f,q)}} -A.KB.prototype={ -I(a,b){var s,r,q=null,p=t.m.a(this.c) -p=p.gl(p) -s=p==null -r=s?q:p -if(r==null)r=1 -if(s)p=q -return new A.tD(A.Ij(r,p==null?1:p,1),B.M,!0,q,this.r,q)}} -A.Kt.prototype={ -I(a,b){var s=t.m.a(this.c) -return A.M_(B.M,s.gl(s)*3.141592653589793*2,this.r,null)}} -A.KW.prototype={ -I(a,b){var s=this,r=null,q=s.e,p=q===B.a2,o=s.f,n=p?new A.eF(-1,o):new A.eF(o,-1) -if(p){p=t.m.a(s.c) -p=Math.max(A.da(p.gl(p)),0)}else p=r -if(q===B.as){q=t.m.a(s.c) -q=Math.max(A.da(q.gl(q)),0)}else q=r -return A.VS(new A.dr(n,q,p,s.r,r),B.ai,r)}} -A.H7.prototype={ -aJ(a){var s,r=null,q=new A.K_(r,r,r,r,r,A.aj()) -q.gar() -s=q.gaE() -q.CW=s -q.sb_(r) -q.sdJ(0,this.e) -q.suD(this.f) -return q}, -aM(a,b){b.sdJ(0,this.e) -b.suD(this.f)}} -A.GC.prototype={ -I(a,b){var s=this.e,r=s.a -return A.aoK(this.r,s.b.T(0,r.gl(r)),B.fx)}} -A.F1.prototype={ -I(a,b){return this.e.$2(b,this.f)}} -A.p0.prototype={ -aJ(a){var s=this,r=s.e,q=A.art(a,r),p=s.y,o=A.aj() -if(p==null)p=250 -o=new A.zr(s.r,r,q,s.w,p,s.z,s.Q,o,0,null,null,A.aj()) -o.gar() -o.CW=!0 -o.P(0,null) -r=o.U$ -if(r!=null)o.dG=r -return o}, -aM(a,b){var s=this,r=s.e -b.sih(r) -r=A.art(a,r) -b.sab2(r) -b.sa9r(s.r) -b.sbJ(0,s.w) -b.sa9S(s.y) -b.sa9T(s.z) -b.sim(s.Q)}, -c_(a){return new A.Sk(A.cf(t.u),this,B.a7)}} -A.Sk.prototype={ -gF(){return t.E1.a(A.fv.prototype.gF.call(this))}, -fj(a,b){var s=this -s.a7=!0 -s.SQ(a,b) -s.KI() -s.a7=!1}, -bc(a,b){var s=this -s.a7=!0 -s.ST(0,b) -s.KI() -s.a7=!1}, -KI(){var s,r=this,q=r.f -q.toString -t.Dg.a(q) -q=r.ghj(r) -s=t.E1 -if(!q.gS(q)){q=s.a(A.fv.prototype.gF.call(r)) -s=r.ghj(r) -q.saT(t.IT.a(s.gJ(s).gF())) -r.q=0}else{s.a(A.fv.prototype.gF.call(r)).saT(null) -r.q=null}}, -iC(a,b){var s=this -s.SP(a,b) -if(!s.a7&&b.b===s.q)t.E1.a(A.fv.prototype.gF.call(s)).saT(t.IT.a(a))}, -iK(a,b,c){this.SR(a,b,c)}, -iQ(a,b){var s=this -s.SS(a,b) -if(!s.a7&&t.E1.a(A.fv.prototype.gF.call(s)).dG===a)t.E1.a(A.fv.prototype.gF.call(s)).saT(null)}} -A.Tf.prototype={} -A.Tg.prototype={} -A.kI.prototype={ -uH(a,b,c,d){var s,r=this.a,q=r!=null -if(q)b.kR(0,r.rP(d)) -c.toString -s=c[b.gOH()] -r=s.a -b.ux(0,r.a,r.b,this.b,s.d,s.c,d) -if(q)b.dg(0)}, -bb(a){return a.$1(this)}, -EC(a,b){var s=b.a -if(a.a===s)return this -b.a=s+1 -return null}, -LW(a,b){++b.a -return 65532}, -aW(a,b){var s,r,q,p,o,n=this -if(n===b)return B.bE -if(A.C(b)!==A.C(n))return B.aV -s=n.a -r=s==null -q=b.a -if(r!==(q==null))return B.aV -t.a7.a(b) -if(!n.e.oI(0,b.e)||n.b!==b.b)return B.aV -if(!r){q.toString -p=s.aW(0,q) -o=p.a>0?p:B.bE -if(o===B.aV)return o}else o=B.bE -return o}, -k(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.W(b)!==A.C(s))return!1 -if(!s.FA(0,b))return!1 -return b instanceof A.kI&&b.e.oI(0,s.e)&&b.b===s.b&&!0}, -gv(a){var s=this -return A.a3(A.f4.prototype.gv.call(s,s),s.e,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a0Q.prototype={} -A.JX.prototype={ -vw(a,b,c){return this.acI(a,b,c)}, -acI(a,b,c){var s=0,r=A.S(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h,g -var $async$vw=A.T(function(d,e){if(d===1){p=e -s=q}while(true)switch(s){case 0:h=null -q=3 -m=n.a.h(0,a) -s=m!=null?6:7 -break -case 6:s=8 -return A.U(m.$1(b),$async$vw) -case 8:h=e -case 7:o.push(5) -s=4 -break -case 3:q=2 -g=p -l=A.ab(g) -k=A.aA(g) -i=A.bi("during a framework-to-plugin message") -A.cS(new A.bs(l,k,"flutter web plugins",i,null,!1)) -o.push(5) -s=4 -break -case 2:o=[1] -case 4:q=1 -if(c!=null)c.$1(h) -s=o.pop() -break -case 5:return A.Q(null,r) -case 1:return A.P(p,r)}}) -return A.R($async$vw,r)}, -rX(a,b,c){var s=new A.a4($.a5,t.gg) -$.EO().OR(b,c,new A.a4E(new A.aI(s,t.yB))) -return s}, -xb(a,b){var s=this.a -if(b==null)s.B(0,a) -else s.n(0,a,b)}} -A.a4E.prototype={ -$1(a){var s,r,q,p -try{this.a.c3(0,a)}catch(q){s=A.ab(q) -r=A.aA(q) -p=A.bi("during a plugin-to-framework message") -A.cS(new A.bs(s,r,"flutter web plugins",p,null,!1))}}, -$S:16} -A.a3G.prototype={} -A.AE.prototype={ -i(a){return"Toast."+this.b}} -A.Hk.prototype={ -Cw(a){return this.acQ(a)}, -acQ(a){var s=0,r=A.S(t.z),q,p,o,n,m,l,k,j,i,h,g,f,e,d,c -var $async$Cw=A.T(function(b,a0){if(b===1)return A.P(a0,r) -while(true)$async$outer:switch(s){case 0:c=a.a -switch(c){case"showToast":c=a.b -p=J.ax(c) -o=p.h(c,"msg") -n=J.f(p.h(c,"gravity"),"top")||J.f(p.h(c,"gravity"),"bottom")?p.h(c,"gravity"):"top" -m=p.h(c,"webPosition") -if(m==null)m="right" -l=p.h(c,"webBgColor") -if(l==null)l=u.P -k=p.h(c,"textcolor") -j=p.h(c,"time")==null?3000:A.fJ(J.bX(p.h(c,"time")),null)*1000 -i=p.h(c,"webShowClose") -if(i==null)i=!1 -c=A.fM(o,"'","\\'") -h=A.fM(c,"\n","
") -c=document -g=c.querySelector("#toast-content") -if(c.querySelector("#toast-content")!=null){g.toString -J.ca(g)}f=c.createElement("script") -f.id="toast-content" -B.KR.F3(f," var toastElement = Toastify({\n text: '"+h+"',\n gravity: '"+A.e(n)+"',\n position: '"+m+"',\n duration: "+j+",\n close: "+A.e(i)+',\n backgroundColor: "'+l+'",\n });\n toastElement.showToast();\n ') -p=c.querySelector("head") -p.toString -J.U_(p).E(0,f) -if(k!=null){c=c.querySelector(".toastify") -c.toString -e=B.f.iV(k,16) -p=B.b.bU(e,2) -d=B.b.N(e,0,2) -c=c.style -B.h.an(c,B.h.X(c,"color"),"#"+(p+d),null)}q=!0 -s=1 -break $async$outer -default:throw A.c(A.a3y("Unimplemented","The fluttertoast plugin for web doesn't implement the method '"+c+"'",null,null))}case 1:return A.Q(q,r)}}) -return A.R($async$Cw,r)}, -vL(){var s=0,r=A.S(t.H),q,p,o,n,m,l -var $async$vL=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:o=A.b([],t.mo) -n=A.b([],t._B) -m=document -l=m.createElement("link") -l.id="toast-css" -q=t.N -B.Ck.sBc(l,A.aB(["rel","stylesheet"],q,q)) -l.href="assets/packages/fluttertoast/assets/toastify.css" -n.push(l) -p=m.createElement("script") -p.async=!0 -p.src="assets/packages/fluttertoast/assets/toastify.js" -q=new A.p9(p,"load",!1,t.TV) -o.push(q.gJ(q)) -n.push(p) -m=m.querySelector("head") -m.toString -J.U_(m).P(0,n) -s=2 -return A.U(A.nA(o,t.H),$async$vL) -case 2:return A.Q(null,r)}}) -return A.R($async$vL,r)}} -A.vO.prototype={} -A.Vt.prototype={ -$1(a){return a.toLowerCase()}, -$S:41} -A.xZ.prototype={ -i(a){var s=new A.by(""),r=""+this.a -s.a=r -r+="/" -s.a=r -s.a=r+this.b -this.c.a.Y(0,new A.a1X(s)) -r=s.a -return r.charCodeAt(0)==0?r:r}} -A.a1V.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j,i=this.a,h=new A.a8V(null,i),g=$.awk() -h.wX(g) -s=$.awi() -h.qk(s) -r=h.gD3().h(0,0) -r.toString -h.qk("/") -h.qk(s) -q=h.gD3().h(0,0) -q.toString -h.wX(g) -p=t.N -o=A.z(p,p) -while(!0){n=h.d=B.b.nO(";",i,h.c) -m=h.e=h.c -l=n!=null -n=l?h.e=h.c=n.gaO(n):m -if(!l)break -n=h.d=g.nO(0,i,n) -h.e=h.c -if(n!=null)h.e=h.c=n.gaO(n) -h.qk(s) -if(h.c!==h.e)h.d=null -n=h.d.h(0,0) -n.toString -h.qk("=") -m=h.d=s.nO(0,i,h.c) -k=h.e=h.c -l=m!=null -if(l){m=h.e=h.c=m.gaO(m) -k=m}else m=k -if(l){if(m!==k)h.d=null -m=h.d.h(0,0) -m.toString -j=m}else j=A.aHH(h) -m=h.d=g.nO(0,i,h.c) -h.e=h.c -if(m!=null)h.e=h.c=m.gaO(m) -o.n(0,n,j)}h.ac1() -i=A.aA0(o,p) -return new A.xZ(r.toLowerCase(),q.toLowerCase(),new A.kG(i,t.G5))}, -$S:450} -A.a1X.prototype={ -$2(a,b){var s,r,q=this.a -q.a+="; "+a+"=" -s=$.awf().b -s=s.test(b) -r=q.a -if(s){q.a=r+'"' -s=q.a+=A.aub(b,$.avw(),new A.a1W(),null) -q.a=s+'"'}else q.a=r+b}, -$S:89} -A.a1W.prototype={ -$1(a){return"\\"+A.e(a.h(0,0))}, -$S:157} -A.aiQ.prototype={ -$1(a){var s=a.h(0,1) -s.toString -return s}, -$S:157} -A.WK.prototype={} -A.a1s.prototype={} -A.a1t.prototype={} -A.a1z.prototype={} -A.e3.prototype={ -i(a){return"Level."+this.b}} -A.a1A.prototype={ -jA(a,b,c,d){if(a===B.nq)throw A.c(A.b5("Log events cannot have Level.nothing",null))}} -A.W6.prototype={} -A.a3U.prototype={ -Xl(a,b,c,d,e,f,g,h,i){var s,r,q,p,o,n=this -if($.aqg==null)$.aqg=new A.df(Date.now(),!1) -s=new A.by("") -r=new A.by("") -for(q=0,p="",o="";q<119;++q){p+="\u2500" -s.a=p -o+="\u2504" -r.a=o}n.z="\u250c"+s.i(0) -n.Q="\u251c"+r.i(0) -n.as="\u2514"+s.i(0) -A.c9(n.y,"includeBox") -n.y=A.z(t.KM,t.y) -B.c.Y(B.EO,new A.a3V(n)) -B.tF.Y(0,new A.a3W(n))}} -A.a3V.prototype={ -$1(a){J.cR(A.a(this.a.y,"includeBox"),a,!0) -return!0}, -$S:452} -A.a3W.prototype={ -$2(a,b){var s=!b -J.cR(A.a(this.a.y,"includeBox"),a,s) -return s}, -$S:453} -A.a33.prototype={} -A.a34.prototype={} -A.Wa.prototype={ -a97(a,b){var s,r,q=t._m -A.at1("absolute",A.b([b,null,null,null,null,null,null],q)) -s=this.a -s=s.fo(b)>0&&!s.kI(b) -if(s)return b -s=this.b -r=A.b([s==null?A.ath():s,b,null,null,null,null,null,null],q) -A.at1("join",r) -return this.adY(new A.fI(r,t.Ri))}, -adY(a){var s,r,q,p,o,n,m,l,k -for(s=a.ga1(a),r=new A.p2(s,new A.Wc()),q=this.a,p=!1,o=!1,n="";r.t();){m=s.gH(s) -if(q.kI(m)&&o){l=A.Je(m,q) -k=n.charCodeAt(0)==0?n:n -n=B.b.N(k,0,q.of(k,!0)) -l.b=n -if(q.qV(n))l.e[0]=q.gms() -n=""+l.i(0)}else if(q.fo(m)>0){o=!q.kI(m) -n=""+m}else{if(!(m.length!==0&&q.Bu(m[0])))if(p)n+=q.gms() -n+=m}p=q.qV(m)}return n.charCodeAt(0)==0?n:n}, -t4(a,b){var s=A.Je(b,this.a),r=s.d,q=A.af(r).j("au<1>") -q=A.ap(new A.au(r,new A.Wd(),q),!0,q.j("p.E")) -s.d=q -r=s.b -if(r!=null)B.c.kE(q,0,r) -return s.d}, -Dk(a,b){var s -if(!this.a4O(b))return b -s=A.Je(b,this.a) -s.Dj(0) -return s.i(0)}, -a4O(a){var s,r,q,p,o,n,m,l,k=this.a,j=k.fo(a) -if(j!==0){if(k===$.TI())for(s=0;s0)return o.Dk(0,a) -if(m.fo(a)<=0||m.kI(a))a=o.a97(0,a) -if(m.fo(a)<=0&&m.fo(s)>0)throw A.c(A.aq7(n+a+'" from "'+s+'".')) -r=A.Je(s,m) -r.Dj(0) -q=A.Je(a,m) -q.Dj(0) -l=r.d -if(l.length!==0&&J.f(l[0],"."))return q.i(0) -l=r.b -p=q.b -if(l!=p)l=l==null||p==null||!m.Dx(l,p) -else l=!1 -if(l)return q.i(0) -while(!0){l=r.d -if(l.length!==0){p=q.d -l=p.length!==0&&m.Dx(l[0],p[0])}else l=!1 -if(!l)break -B.c.eW(r.d,0) -B.c.eW(r.e,1) -B.c.eW(q.d,0) -B.c.eW(q.e,1)}l=r.d -if(l.length!==0&&J.f(l[0],".."))throw A.c(A.aq7(n+a+'" from "'+s+'".')) -l=t.N -B.c.qH(q.d,0,A.b7(r.d.length,"..",!1,l)) -p=q.e -p[0]="" -B.c.qH(p,1,A.b7(r.d.length,m.gms(),!1,l)) -m=q.d -l=m.length -if(l===0)return"." -if(l>1&&J.f(B.c.gR(m),".")){B.c.eX(q.d) -m=q.e -m.pop() -m.pop() -m.push("")}q.b="" -q.Pd() -return q.i(0)}, -OP(a){var s,r,q=this,p=A.asO(a) -if(p.gdP()==="file"&&q.a===$.EM())return p.i(0) -else if(p.gdP()!=="file"&&p.gdP()!==""&&q.a!==$.EM())return p.i(0) -s=q.Dk(0,q.a.Dw(A.asO(p))) -r=q.afR(s) -return q.t4(0,r).length>q.t4(0,s).length?s:r}} -A.Wc.prototype={ -$1(a){return a!==""}, -$S:19} -A.Wd.prototype={ -$1(a){return a.length!==0}, -$S:19} -A.ais.prototype={ -$1(a){return a==null?"null":'"'+a+'"'}, -$S:454} -A.nS.prototype={ -Qv(a){var s=this.fo(a) -if(s>0)return B.b.N(a,0,s) -return this.kI(a)?a[0]:null}, -Dx(a,b){return a===b}} -A.a3g.prototype={ -Pd(){var s,r,q=this -while(!0){s=q.d -if(!(s.length!==0&&J.f(B.c.gR(s),"")))break -B.c.eX(q.d) -q.e.pop()}s=q.e -r=s.length -if(r!==0)s[r-1]=""}, -Dj(a){var s,r,q,p,o,n,m=this,l=A.b([],t.s) -for(s=m.d,r=s.length,q=0,p=0;p0){r=B.b.iA(a,"\\",r+1) -if(r>0)return r}return q}if(q<3)return 0 -if(!A.atG(s))return 0 -if(B.b.ac(a,1)!==58)return 0 -q=B.b.ac(a,2) -if(!(q===47||q===92))return 0 -return 3}, -fo(a){return this.of(a,!1)}, -kI(a){return this.fo(a)===1}, -Dw(a){var s,r -if(a.gdP()!==""&&a.gdP()!=="file")throw A.c(A.b5("Uri "+a.i(0)+" must have scheme 'file:'.",null)) -s=a.ge4(a) -if(a.giz(a)===""){if(s.length>=3&&B.b.bl(s,"/")&&A.atI(s,1))s=B.b.Ph(s,"/","")}else s="\\\\"+a.giz(a)+s -r=A.fM(s,"/","\\") -return A.alI(r,0,r.length,B.z,!1)}, -aai(a,b){var s -if(a===b)return!0 -if(a===47)return b===92 -if(a===92)return b===47 -if((a^b)!==32)return!1 -s=a|32 -return s>=97&&s<=122}, -Dx(a,b){var s,r -if(a===b)return!0 -s=a.length -if(s!==b.length)return!1 -for(r=0;r>>0;++s.b}, -$iV:1, -$ip:1, -$ix:1} -A.Q2.prototype={} -A.rm.prototype={ -gp(a){return this.b.length}, -mg(a,b){var s,r,q -for(s=this.b,r=s.length,q=0;q>>0}return A.JN(h,0)}, -Om(a){var s,r,q,p=this.a,o=p.length,n=a.a,m=n.length -if(o-m<0)return this -s=A.atE(p[0])-A.atE(n[0]) -r=new Uint8Array(o) -for(q=0;q>>0}return A.JN(r,0).Om(a)}} -A.a45.prototype={ -Xn(a,b){var s,r,q,p,o=this -A.akW(o.a,1,40,"typeNumber") -A.aqt(o.b,B.Ct,"errorCorrectLevel",null) -for(s=o.c,r=o.d,q=t.X7,p=0;p=0){s=this.c -s=s<=a||b<0||s<=b}else s=!0 -if(s)throw A.c(A.b5(""+a+" , "+b,null)) -s=this.d[a][b] -s.toString -return s}, -A8(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g -for(s=this.d,r=this.c,q=-1;q<=7;++q){p=a+q -if(p<=-1||r<=p)continue -for(o=0<=q,n=q<=6,m=q!==0,l=q===6,k=2<=q,j=q<=4,i=-1;i<=7;++i){h=b+i -if(h<=-1||r<=h)continue -if(o)if(n)g=i===0||i===6 -else g=!1 -else g=!1 -if(!g){if(0<=i)if(i<=6)g=!m||l -else g=!1 -else g=!1 -if(!g)g=k&&j&&2<=i&&i<=4 -else g=!0}else g=!0 -if(g)s[p][h]=!0 -else s[p][h]=!1}}}, -a0F(){var s,r,q,p -for(s=0,r=0,q=0;q<8;++q){this.IM(!0,q) -p=A.aGt(this) -if(q===0||s>p){r=q -s=p}}return r}, -a7c(){var s,r,q,p,o -for(s=this.c-8,r=this.d,q=8;q>>0) -for(s=this.d,r=this.c,q=r-15,p=!a,o=0;o<15;++o){n=p&&(B.f.ke(m,o)&1)===1 -if(o<6)s[o][8]=n -else if(o<8)s[o+1][8]=n -else s[q+o][8]=n}for(o=0;o<15;++o){n=p&&(B.f.ke(m,o)&1)===1 -if(o<8)s[8][r-o-1]=n -else{q=15-o-1 -if(o<9)s[8][q+1]=n -else s[8][q]=n}}s[r-8][8]=p}, -a4v(a,b){var s,r,q,p,o,n,m,l,k,j=this.c,i=j-1 -for(s=this.d,r=i,q=-1,p=7,o=0;r>0;r-=2){if(r===6)--r -for(;!0;){for(n=0;n<2;++n){m=r-n -if(s[i][m]==null){l=o=7)q.a7e(a) -r=q.e -q.a4v(r==null?q.e=A.aFE(s,q.b,q.f):r,b)}} -A.JO.prototype={} -A.a38.prototype={ -Gx(a,b){var s=b!=null?"FinderPatternPosition."+b.b:"any" -return"QrCodeElement."+a.b+":"+s}, -a9R(a,b,c,d){if(c===B.eD)this.a.push(b) -else this.b.n(0,this.Gx(c,d),b)}, -LQ(a,b,c){return this.a9R(a,b,c,null)}, -vr(a,b){if(a===B.eD)return B.c.gJ(this.a) -else return this.b.h(0,this.Gx(a,b))}, -acl(a){return this.vr(a,null)}} -A.yS.prototype={ -am(){return new A.Q3(B.k)}} -A.Q3.prototype={ -I(a,b){var s=this,r="_validationResult",q=A.aCQ(s.a.c,1,-1) -s.e=q -if(A.a(q,r).a===B.l3)s.d=A.a(s.e,r).b -else s.d=null -return new A.I5(new A.afl(s),null)}, -a60(a,b,c){var s,r,q=null,p=this.d -p.toString -this.a.toString -s=p.a -r=new A.yT(s,p.b,q,!0,b,q,B.xg,B.xf,p,new A.a38(A.b([],t.n9),A.z(t.N,t.Q2)),q) -A.c9($,"_calcVersion") -r.Q=s -r.a3W() -this.a.toString -return new A.CE(c,B.a5,B.mY,A.iK(q,q,q,r,B.o),"qr code",q)}, -a_U(a,b,c){var s,r=null,q=this.a -q.toString -s=A.cc(r,r,r,r,r,r,r,r,r) -return new A.CE(q.y,B.a5,B.mY,s,"qr code",r)}} -A.afl.prototype={ -$2(a,b){var s,r="_validationResult",q=this.a -if(A.a(q.e,r).a!==B.l3)return q.a_U(a,b,A.a(q.e,r).c) -s=q.a.y -q=q.a60(a,null,s) -return q}, -$S:455} -A.CE.prototype={ -I(a,b){var s=this,r=null,q=s.c -return A.bq(r,A.cc(r,new A.cq(s.e,s.f,r),s.d,r,r,q,r,r,q),!1,r,r,!1,r,r,r,r,s.r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r)}} -A.yT.prototype={ -a3W(){var s,r,q,p="FinderPatternPosition.",o=this.at,n=$.aJ(),m=n?A.aT():new A.aO(new A.aQ()) -m.scj(0,B.aq) -o.LQ(0,m,B.eD) -m=n?A.aT():new A.aO(new A.aQ()) -m.scj(0,B.aq) -o.LQ(0,m,B.Kv) -for(s=0;s<3;++s){r=B.Eu[s] -m=n?A.aT():new A.aO(new A.aQ()) -m.scj(0,B.T) -q=o.b -q.n(0,"QrCodeElement.finderPatternOuter:"+(p+r.b),m) -m=n?A.aT():new A.aO(new A.aQ()) -m.scj(0,B.T) -q.n(0,"QrCodeElement.finderPatternInner:"+(p+r.b),m) -m=n?A.aT():new A.aO(new A.aQ()) -m.scj(0,B.aq) -q.n(0,"QrCodeElement.finderPatternDot:"+(p+r.b),m)}}, -aH(a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5="_pixelSize",a6="_innerContentSize",a7="_inset" -if(a9.gdR()===0){A.fK("[QR] WARN: width or height is zero. You should set a 'size' value or nest this painter in a Widget that defines a non-zero size") -return}s=a9.gdR() -r=a4.z -q=r.c -p=new A.af9(q,s,0) -o=(q-1)*0 -n=B.e.wr((s-o)/q*2)/2 -A.c9($,a5) -p.d=n -n=A.a(n,a5)*q+o -A.c9($,a6) -p.e=n -n=A.a(n,a6) -A.c9($,a7) -p.f=(s-n)/2 -a4.yS(B.fJ,a8,p) -a4.yS(B.fK,a8,p) -a4.yS(B.n5,a8,p) -m=a4.at.acl(B.eD) -m.sad(0,B.n) -for(s=q-7,l=0;l=s,i=0;i=s&&k -if(h||g||f)continue -e=r.cN(i,l)?m:null -if(e==null)continue -d=A.a(p.f,a7)+l*(A.a(p.d,a5)+0) -c=A.a(p.f,a7)+i*(A.a(p.d,a5)+0) -n=a4.a3M(l,i,q) -b=n?0.5:0 -n=a4.a3N(l,i,q) -a=n?0.5:0 -a8.c9(0,new A.w(d,c,d+(A.a(p.d,a5)+b),c+(A.a(p.d,a5)+a)),e)}s=a4.r -if(s!=null){r=s.gaQ(s) -q=s.gbk(s) -a0=a4.a6Q(a9,new A.L(r,q),null) -r=a0.a -q=(a9.a-r)/2 -n=a0.b -a1=(a9.b-n)/2 -e=$.aJ()?A.aT():new A.aO(new A.aQ()) -e.sqI(!0) -e.skz(B.fI) -a2=s.gaQ(s) -a3=s.gbk(s) -a8.hM(s,B.M.CM(new A.L(a2,a3),new A.w(0,0,a2,a3)),B.M.CM(a0,new A.w(q,a1,q+r,a1+n)),e)}}, -a3N(a,b,c){var s=b+1 -if(s>=c)return!1 -return this.z.cN(s,a)}, -a3M(a,b,c){var s=a+1 -if(s>=c)return!1 -return this.z.cN(b,s)}, -yS(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g="_pixelSize",f="_inset",e=7*A.a(a0.d,g)+6*a0.c-A.a(a0.d,g),d=A.a(a0.d,g)/2,c=A.a(a0.f,f)+A.a(a0.e,"_innerContentSize")-(e+d) -if(a===B.fJ)s=new A.m(A.a(a0.f,f)+d,A.a(a0.f,f)+d) -else{r=a0.f -s=a===B.fK?new A.m(A.a(r,f)+d,c):new A.m(c,A.a(r,f)+d)}r=this.at -q=r.vr(B.Ks,a) -q.toString -q.sf5(A.a(a0.d,g)) -q.sad(0,B.n) -p=r.vr(B.Kt,a) -p.toString -p.sf5(A.a(a0.d,g)) -p.sad(0,new A.E(16777215)) -o=r.vr(B.Ku,a) -o.sad(0,B.n) -r=s.a -n=s.b -m=e-2*A.a(a0.d,g) -l=r+A.a(a0.d,g) -k=n+A.a(a0.d,g) -j=e-A.a(a0.d,g)*2-2*d -i=r+A.a(a0.d,g)+d -h=n+A.a(a0.d,g)+d -b.c9(0,new A.w(r,n,r+e,n+e),q) -b.c9(0,new A.w(l,k,l+m,k+m),p) -b.c9(0,new A.w(i,h,i+j,h+j),o)}, -a6Q(a,b,c){var s=0.25*a.gdR()/b.gOe() -return new A.L(s*b.a,s*b.b)}, -ew(a){var s,r=this,q="_calcVersion" -if(a instanceof A.yT){if(r.c===a.c)if(A.a(r.Q,q)===A.a(a.Q,q))if(r.z===a.z)if(r.r==a.r)s=!r.x.k(0,a.x)||!r.y.k(0,a.y) -else s=!0 -else s=!0 -else s=!0 -else s=!0 -return s}return!0}} -A.af9.prototype={} -A.lX.prototype={ -i(a){return"QrCodeElement."+this.b}} -A.nn.prototype={ -i(a){return"FinderPatternPosition."+this.b}} -A.JL.prototype={ -i(a){return"QrEyeShape."+this.b}} -A.JJ.prototype={ -i(a){return"QrDataModuleShape."+this.b}} -A.JM.prototype={ -gv(a){return(A.e5(B.Kx)^B.f.gv(4278190080))>>>0}, -k(a,b){var s -if(b==null)return!1 -if(b instanceof A.JM){s=B.n.k(0,B.n) -return s}return!1}} -A.JK.prototype={ -gv(a){return(A.e5(B.Kw)^B.f.gv(4278190080))>>>0}, -k(a,b){var s -if(b==null)return!1 -if(b instanceof A.JK){s=B.n.k(0,B.n) -return s}return!1}} -A.yU.prototype={} -A.rn.prototype={ -i(a){return"QrValidationStatus."+this.b}} -A.rN.prototype={ -pt(a,b,c){A.fS(c,"value") -J.cR(this.a,b,c) -return $.amE().l7(a,"flutter."+b,c)}} -A.a1Z.prototype={ -l7(a,b,c){return this.R6(a,b,c)}, -R6(a,b,c){var s=0,r=A.S(t.y),q,p -var $async$l7=A.T(function(d,e){if(d===1)return A.P(e,r) -while(true)switch(s){case 0:s=3 -return A.U(B.tL.k7("set"+a,A.aB(["key",b,"value",c],t.N,t.z),!1,t.y),$async$l7) -case 3:p=e -p.toString -q=p -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$l7,r)}, -kZ(a){var s=0,r=A.S(t.nf),q,p,o,n -var $async$kZ=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:p=t.N -o=t.K -s=3 -return A.U(B.tL.vN("getAll",p,o),$async$kZ) -case 3:n=c -if(n==null){q=A.z(p,o) -s=1 -break}q=n -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$kZ,r)}} -A.a77.prototype={} -A.a75.prototype={ -kZ(a){var s=0,r=A.S(t.nf),q,p=this,o,n,m,l,k -var $async$kZ=A.T(function(b,c){if(b===1)return A.P(c,r) -while(true)switch(s){case 0:k=A.z(t.N,t.K) -for(o=p.ga7J(),n=J.av(o.a),o=new A.p2(n,o.b);o.t();){m=n.gH(n) -l=window.localStorage.getItem(m) -l.toString -k.n(0,m,p.a_a(l))}q=k -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$kZ,r)}, -l7(a,b,c){return this.R7(a,b,c)}, -R7(a,b,c){var s=0,r=A.S(t.y),q -var $async$l7=A.T(function(d,e){if(d===1)return A.P(e,r) -while(true)switch(s){case 0:if(!B.b.bl(b,"flutter."))A.K(A.c5('Shared preferences keys must start with prefix "flutter.".',b,0)) -window.localStorage.setItem(b,B.at.lM(c)) -q=!0 -s=1 -break -case 1:return A.Q(q,r)}}) -return A.R($async$l7,r)}, -ga7J(){var s=B.MB.gba(window.localStorage) -return new A.au(s,new A.a76(),A.af(s).j("au<1>"))}, -a_a(a){var s=B.at.dr(0,a) -if(t.j.b(s))return J.pM(s,t.N) -s.toString -return s}} -A.a76.prototype={ -$1(a){return B.b.bl(a,"flutter.")}, -$S:19} -A.a8x.prototype={ -gp(a){return this.c.length}, -gae5(a){return this.b.length}, -XD(a,b){var s,r,q,p,o,n -for(s=this.c,r=s.length,q=this.b,p=0;p=r||s[n]!==10)o=10}if(o===10)q.push(p+1)}}, -on(a){var s,r=this -if(a<0)throw A.c(A.dx("Offset may not be negative, was "+a+".")) -else if(a>r.c.length)throw A.c(A.dx("Offset "+a+u.D+r.gp(r)+".")) -s=r.b -if(a=B.c.gR(s))return s.length-1 -if(r.a4c(a)){s=r.d -s.toString -return s}return r.d=r.a08(a)-1}, -a4c(a){var s,r,q=this.d -if(q==null)return!1 -s=this.b -if(a=r-1||a=r-2||aa)p=r -else s=r+1}return p}, -wK(a){var s,r,q=this -if(a<0)throw A.c(A.dx("Offset may not be negative, was "+a+".")) -else if(a>q.c.length)throw A.c(A.dx("Offset "+a+" must be not be greater than the number of characters in the file, "+q.gp(q)+".")) -s=q.on(a) -r=q.b[s] -if(r>a)throw A.c(A.dx("Line "+s+" comes after offset "+a+".")) -return a-r}, -l0(a){var s,r,q,p,o=this -if(a<0)throw A.c(A.dx("Line may not be negative, was "+a+".")) -else{s=o.b -r=s.length -if(a>=r)throw A.c(A.dx("Line "+a+" must be less than the number of lines in the file, "+o.gae5(o)+"."))}q=s[a] -if(q<=o.c.length){p=a+1 -s=p=s[p]}else s=!0 -if(s)throw A.c(A.dx("Line "+a+" doesn't have 0 columns.")) -return q}} -A.Ha.prototype={ -gci(){return this.a.a}, -gcI(a){return this.a.on(this.b)}, -gda(){return this.a.wK(this.b)}, -gbJ(a){return this.b}} -A.BA.prototype={ -gci(){return this.a.a}, -gp(a){return this.c-this.b}, -gb8(a){return A.akl(this.a,this.b)}, -gaO(a){return A.akl(this.a,this.c)}, -gc7(a){return A.th(B.hA.bG(this.a.c,this.b,this.c),0,null)}, -gaP(a){var s=this,r=s.a,q=s.c,p=r.on(q) -if(r.wK(q)===0&&p!==0){if(q-s.b===0)return p===r.b.length-1?"":A.th(B.hA.bG(r.c,r.l0(p),r.l0(p+1)),0,null)}else q=p===r.b.length-1?r.c.length:r.l0(p+1) -return A.th(B.hA.bG(r.c,r.l0(r.on(s.b)),q),0,null)}, -aW(a,b){var s -if(!(b instanceof A.BA))return this.TU(0,b) -s=B.f.aW(this.b,b.b) -return s===0?B.f.aW(this.c,b.c):s}, -k(a,b){var s=this -if(b==null)return!1 -if(!t.GH.b(b))return s.TT(0,b) -return s.b===b.b&&s.c===b.c&&J.f(s.a.a,b.a.a)}, -gv(a){return A.a3(this.b,this.c,this.a.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -$iapb:1, -$ikw:1} -A.a_p.prototype={ -adc(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.a -a1.Lm(B.c.gJ(a3).c) -s=a1.e -r=A.b7(s,a2,!1,t.Xk) -for(q=a1.r,s=s!==0,p=a1.b,o=0;o0){m=a3[o-1] -l=m.c -k=n.c -if(!J.f(l,k)){a1.us("\u2575") -q.a+="\n" -a1.Lm(k)}else if(m.b+1!==n.b){a1.a94("...") -q.a+="\n"}}for(l=n.d,k=new A.ch(l,A.af(l).j("ch<1>")),k=new A.cL(k,k.gp(k)),j=A.n(k).c,i=n.b,h=n.a;k.t();){g=k.d -if(g==null)g=j.a(g) -f=g.a -e=f.gb8(f) -e=e.gcI(e) -d=f.gaO(f) -if(e!==d.gcI(d)){e=f.gb8(f) -f=e.gcI(e)===i&&a1.a4d(B.b.N(h,0,f.gb8(f).gda()))}else f=!1 -if(f){c=B.c.eJ(r,a2) -if(c<0)A.K(A.b5(A.e(r)+" contains no null elements.",a2)) -r[c]=g}}a1.a93(i) -q.a+=" " -a1.a92(n,r) -if(s)q.a+=" " -b=B.c.NL(l,new A.a_K()) -a=b===-1?a2:l[b] -k=a!=null -if(k){j=a.a -g=j.gb8(j) -g=g.gcI(g)===i?j.gb8(j).gda():0 -f=j.gaO(j) -a1.a90(h,g,f.gcI(f)===i?j.gaO(j).gda():h.length,p)}else a1.uu(h) -q.a+="\n" -if(k)a1.a91(n,a,r) -for(k=l.length,a0=0;a0")) -return s.gp(s)}, -$S:457} -A.a_q.prototype={ -$1(a){var s=a.a,r=s.gb8(s) -r=r.gcI(r) -s=s.gaO(s) -return r!==s.gcI(s)}, -$S:96} -A.a_s.prototype={ -$1(a){return a.c}, -$S:459} -A.a_u.prototype={ -$1(a){var s=a.a.gci() -return s==null?new A.D():s}, -$S:460} -A.a_v.prototype={ -$2(a,b){return a.a.aW(0,b.a)}, -$S:461} -A.a_w.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=a.gcG(a),e=a.gl(a),d=A.b([],t.Kx) -for(s=J.bO(e),r=s.ga1(e),q=t._Y;r.t();){p=r.gH(r).a -o=p.gaP(p) -n=A.aiS(o,p.gc7(p),p.gb8(p).gda()) -n.toString -n=B.b.n5("\n",B.b.N(o,0,n)) -m=n.gp(n) -p=p.gb8(p) -l=p.gcI(p)-m -for(p=o.split("\n"),n=p.length,k=0;kB.c.gR(d).b)d.push(new A.iq(j,l,f,A.b([],q)));++l}}i=A.b([],q) -for(r=d.length,h=0,k=0;kj.b)break -i.push(p)}h+=i.length-g -B.c.P(j.d,i)}return d}, -$S:462} -A.a_t.prototype={ -$1(a){var s=a.a -s=s.gaO(s) -return s.gcI(s)" -return null}, -$S:0} -A.a_E.prototype={ -$0(){var s=this.b===this.c.b?"\u250c":"\u2514" -this.a.r.a+=s}, -$S:0} -A.a_F.prototype={ -$0(){var s=this.b==null?"\u2500":"\u253c" -this.a.r.a+=s}, -$S:0} -A.a_G.prototype={ -$0(){this.a.r.a+="\u2500" -return null}, -$S:0} -A.a_H.prototype={ -$0(){var s,r,q=this,p=q.a,o=p.a?"\u253c":"\u2502" -if(q.c!=null)q.b.r.a+=o -else{s=q.e -r=s.b -if(q.d===r){s=q.b -s.h2(new A.a_C(p,s),p.b) -p.a=!0 -if(p.b==null)p.b=s.b}else{if(q.r===r){r=q.f.a -s=r.gaO(r).gda()===s.a.length}else s=!1 -r=q.b -if(s)r.r.a+="\u2514" -else r.h2(new A.a_D(r,o),p.b)}}}, -$S:0} -A.a_C.prototype={ -$0(){var s=this.a.a?"\u252c":"\u250c" -this.b.r.a+=s}, -$S:0} -A.a_D.prototype={ -$0(){this.a.r.a+=this.b}, -$S:0} -A.a_y.prototype={ -$0(){var s=this -return s.a.uu(B.b.N(s.b,s.c,s.d))}, -$S:0} -A.a_z.prototype={ -$0(){var s,r,q=this.a,p=this.c.a,o=p.gb8(p).gda(),n=p.gaO(p).gda() -p=this.b.a -s=q.yC(B.b.N(p,0,o)) -r=q.yC(B.b.N(p,o,n)) -o+=s*3 -q=q.r -q.a+=B.b.W(" ",o) -q.a+=B.b.W("^",Math.max(n+(s+r)*3-o,1))}, -$S:0} -A.a_A.prototype={ -$0(){var s=this.c.a -return this.a.a9_(this.b,s.gb8(s).gda())}, -$S:0} -A.a_B.prototype={ -$0(){var s,r=this,q=r.a -if(r.b)q.r.a+=B.b.W("\u2500",3) -else{s=r.d.a -q.Ll(r.c,Math.max(s.gaO(s).gda()-1,0),!1)}}, -$S:0} -A.a_I.prototype={ -$0(){var s=this.b,r=s.r,q=this.a.a -if(q==null)q="" -s=r.a+=B.b.afe(q,s.d) -q=this.c -r.a=s+(q==null?"\u2502":q)}, -$S:0} -A.ew.prototype={ -i(a){var s,r,q=this.a,p=q.gb8(q) -p=p.gcI(p) -s=q.gb8(q).gda() -r=q.gaO(q) -q=""+"primary "+(""+p+":"+s+"-"+r.gcI(r)+":"+q.gaO(q).gda()) -return q.charCodeAt(0)==0?q:q}} -A.ade.prototype={ -$0(){var s,r,q,p,o=this.a -if(!(t.D_.b(o)&&A.aiS(o.gaP(o),o.gc7(o),o.gb8(o).gda())!=null)){s=o.gb8(o) -s=A.Lj(s.gbJ(s),0,0,o.gci()) -r=o.gaO(o) -r=r.gbJ(r) -q=o.gci() -p=A.aHu(o.gc7(o),10) -o=A.a8y(s,A.Lj(r,A.arG(o.gc7(o)),p,q),o.gc7(o),o.gc7(o))}return A.aEw(A.aEy(A.aEx(o)))}, -$S:463} -A.iq.prototype={ -i(a){return""+this.b+': "'+this.a+'" ('+B.c.bB(this.d,", ")+")"}} -A.ia.prototype={ -C0(a){var s=this.a -if(!J.f(s,a.gci()))throw A.c(A.b5('Source URLs "'+A.e(s)+'" and "'+A.e(a.gci())+"\" don't match.",null)) -return Math.abs(this.b-a.gbJ(a))}, -aW(a,b){var s=this.a -if(!J.f(s,b.gci()))throw A.c(A.b5('Source URLs "'+A.e(s)+'" and "'+A.e(b.gci())+"\" don't match.",null)) -return this.b-b.gbJ(b)}, -k(a,b){if(b==null)return!1 -return t.y3.b(b)&&J.f(this.a,b.gci())&&this.b===b.gbJ(b)}, -gv(a){var s=this.a -s=s==null?null:s.gv(s) -if(s==null)s=0 -return s+this.b}, -i(a){var s=this,r=A.C(s).i(0),q=s.a -return"<"+r+": "+s.b+" "+(A.e(q==null?"unknown source":q)+":"+(s.c+1)+":"+(s.d+1))+">"}, -$ibh:1, -gci(){return this.a}, -gbJ(a){return this.b}, -gcI(a){return this.c}, -gda(){return this.d}} -A.Lk.prototype={ -C0(a){if(!J.f(this.a.a,a.gci()))throw A.c(A.b5('Source URLs "'+A.e(this.gci())+'" and "'+A.e(a.gci())+"\" don't match.",null)) -return Math.abs(this.b-a.gbJ(a))}, -aW(a,b){if(!J.f(this.a.a,b.gci()))throw A.c(A.b5('Source URLs "'+A.e(this.gci())+'" and "'+A.e(b.gci())+"\" don't match.",null)) -return this.b-b.gbJ(b)}, -k(a,b){if(b==null)return!1 -return t.y3.b(b)&&J.f(this.a.a,b.gci())&&this.b===b.gbJ(b)}, -gv(a){var s=this.a.a -s=s==null?null:s.gv(s) -if(s==null)s=0 -return s+this.b}, -i(a){var s=A.C(this).i(0),r=this.b,q=this.a,p=q.a -return"<"+s+": "+r+" "+(A.e(p==null?"unknown source":p)+":"+(q.on(r)+1)+":"+(q.wK(r)+1))+">"}, -$ibh:1, -$iia:1} -A.Ll.prototype={ -XE(a,b,c){var s,r=this.b,q=this.a -if(!J.f(r.gci(),q.gci()))throw A.c(A.b5('Source URLs "'+A.e(q.gci())+'" and "'+A.e(r.gci())+"\" don't match.",null)) -else if(r.gbJ(r)'}, -$ibh:1, -$ijo:1} -A.kw.prototype={ -gaP(a){return this.d}} -A.Lv.prototype={ -gxk(a){return A.bk(this.c)}} -A.a8V.prototype={ -gD3(){var s=this -if(s.c!==s.e)s.d=null -return s.d}, -wX(a){var s,r=this,q=r.d=J.anW(a,r.b,r.c) -r.e=r.c -s=q!=null -if(s)r.e=r.c=q.gaO(q) -return s}, -N2(a,b){var s -if(this.wX(a))return -if(b==null)if(t.bN.b(a))b="/"+a.a+"/" -else{s=J.bX(a) -s=A.fM(s,"\\","\\\\") -b='"'+A.fM(s,'"','\\"')+'"'}this.MX(0,"expected "+b+".",0,this.c)}, -qk(a){return this.N2(a,null)}, -ac1(){var s=this.c -if(s===this.b.length)return -this.MX(0,"expected no more input.",0,s)}, -MX(a,b,c,d){var s,r,q,p,o,n,m=this.b -if(d<0)A.K(A.dx("position must be greater than or equal to 0.")) -else if(d>m.length)A.K(A.dx("position must be less than or equal to the string length.")) -s=d+c>m.length -if(s)A.K(A.dx("position plus length must not go beyond the end of the string.")) -s=this.a -r=new A.fn(m) -q=A.b([0],t.t) -p=new Uint32Array(A.kZ(r.dK(r))) -o=new A.a8x(s,q,p) -o.XD(r,s) -n=d+c -if(n>p.length)A.K(A.dx("End "+n+u.D+o.gp(o)+".")) -else if(d<0)A.K(A.dx("Start may not be negative, was "+d+".")) -throw A.c(new A.Lv(m,b,new A.BA(o,d,n)))}} -A.a_Y.prototype={ -$1(a){a.toString -return a<500}, -$S:151} -A.hM.prototype={} -A.AH.prototype={ -r1(a,b,c){A.nt(10,b.gkJ(b),B.cA,null) -c.eq(0,b)}, -Dr(a,b){var s,r,q="_headers" -J.cR(A.a(a.b,q),"User-Agent","study_xxqg-app") -J.cR(A.a(a.b,q),"Content-Type","application/json;charset=UTF-8") -s=A.a(a.b,q) -r=$.cy -J.cR(s,"xxqg_token",(r==null?$.cy=new A.eS():r).b) -b.eq(0,a)}, -r2(a,b){b.eq(0,a)}, -$iiW:1} -A.jY.prototype={ -FZ(a){var s=this,r=J.ax(a) -s.a=r.h(a,"success") -s.b=r.h(a,"errorCode") -s.c=r.h(a,"errorMsg") -s.d=r.h(a,"result") -s.e=r.h(a,"arguments")}, -i0(){var s=this,r=A.z(t.N,t.z) -r.n(0,"success",s.a) -r.n(0,"errorCode",s.b) -r.n(0,"errorMsg",s.c) -r.n(0,"result",s.d) -r.n(0,"arguments",s.e) -return r}} -A.i1.prototype={ -G_(a){var s=this,r=J.ax(a) -s.a=r.h(a,"code") -s.b=r.h(a,"data") -s.c=r.h(a,"success") -s.d=r.h(a,"message")}, -gbN(a){return this.b}, -i0(){var s=this,r=A.z(t.N,t.z) -r.n(0,"code",s.a) -r.n(0,"data",s.b) -r.n(0,"success",s.c) -r.n(0,"message",s.d) -return r}} -A.kr.prototype={ -i0(){var s=A.z(t.N,t.z) -s.n(0,"sign",this.a) -return s}} -A.ju.prototype={ -G2(a){var s=this,r=J.ax(a) -s.a=r.h(a,"is_study") -s.b=r.h(a,"login_time") -s.c=r.h(a,"nick") -s.d=r.h(a,"token") -s.e=r.h(a,"uid")}, -i0(){var s=this,r=A.z(t.N,t.z) -r.n(0,"is_study",s.a) -r.n(0,"login_time",s.b) -r.n(0,"nick",s.c) -r.n(0,"token",s.d) -r.n(0,"uid",s.e) -return r}} -A.eS.prototype={} -A.a0R.prototype={ -$1(a){var s=new A.jY() -s.FZ(a) -return s}, -$S:466} -A.a0S.prototype={ -$1(a){var s=new A.i1() -s.G_(a) -return s}, -$S:467} -A.a0T.prototype={ -$1(a){var s=new A.kr() -s.a=J.ag(a,"sign") -return s}, -$S:468} -A.a0U.prototype={ -$1(a){var s=new A.ju() -s.G2(a) -return s}, -$S:469} -A.Iw.prototype={ -I(a,b){return new A.xQ(this.Qw(),"/","StudyXxqg",null)}, -Qw(){return A.aB(["/",new A.a2q(),"/login",new A.a2r(),"/log",new A.a2s()],t.N,t.Ab)}} -A.a2q.prototype={ -$1(a){return B.wb}, -$S:470} -A.a2r.prototype={ -$1(a){return B.J7}, -$S:471} -A.a2s.prototype={ -$1(a){return B.Hw}, -$S:472} -A.mS.prototype={ -am(){return new A.B3(A.b([],t.p),B.k)}} -A.B3.prototype={ -aB(){this.aS() -this.adz()}, -adz(){var s=t.am -A.aBj(A.M9().aV(0,new A.ab1(this),s),new A.ab2(this),s,t.K) -this.f.push(B.w5)}, -a58(a){this.a4(new A.aaY(this,a))}, -I(a,b){var s=this,r=null,q=A.F5(r,r,r,r,r,A.iV(!1,!0,B.QZ,r,!0,r,r,r,r,r,new A.aaZ(b),r,r,r,r,r,r,r,r)),p=s.e -return A.rz(q,new A.HP(p,B.b7,r,B.bl,s.f,r),A.aom(p,A.b([s.za(" \u767b\u5f55","static/icons/login.png","static/icons/login_activepng.png",0),s.za("\u7528\u6237","static/icons/user.png","static/icons/user_active.png",1),s.za("\u5176\u4ed6","static/icons/other.png","static/icons/other_active.png",2)],t.ur),s.ga57(),B.m8))}, -za(a,b,c,d){return A.UU(this.e===d?A.apq(c,28,32):A.apq(b,28,32),a)}} -A.ab1.prototype={ -$1(a){var s=t.H,r=A.aK(s),q=$.cy -if(q==null)q=$.cy=new A.eS() -if(!q.a){$.l5().jA(B.bW,q,null,null) -q=this.a.c -q.toString -r.E(0,A.bM([null,A.hW(q,!1).wg("/login",new A.ab0(),t.X)],s))}s=this.a.f -r.E(0,s.push(B.SG)) -r.E(0,s.push(B.Kh)) -return r}, -$S:473} -A.ab0.prototype={ -$1(a){return!1}, -$S:64} -A.ab2.prototype={ -$2(a,b){var s=this.a.c -s.toString -return A.bM([A.hW(s,!1).wg("/login",new A.ab_(),t.X)],t.H)}, -$S:475} -A.ab_.prototype={ -$1(a){return!1}, -$S:64} -A.aaY.prototype={ -$0(){this.a.e=this.b}, -$S:0} -A.aaZ.prototype={ -$0(){if($.uZ!=null)A.am9() -else A.Tz(this.a)}, -$S:0} -A.vb.prototype={ -am(){return new A.Mp(B.k)}} -A.Mp.prototype={ -m(a){var s -this.aR(0) -s=this.f -if(s!=null&&s.b!=null)s.aA(0)}, -I(a,b){var s=null,r=b.L(t.w).f -return A.rz(s,A.el(A.b([B.mU,A.dz(A.iV(!1,!0,A.cc(s,B.xK,s,s,new A.dX(B.tG,s,s,A.lc(10),s,s,B.aF),50,s,s,r.a.a),s,!0,s,s,s,s,s,s,s,s,s,s,new A.aaN(this),s,s,s),s,s),B.mU,A.dz(this.Qp(),s,s)],t.p),B.af,B.E,B.Q),s)}, -Qp(){var s=this.d -if(s==="")return B.QV -else return new A.yS(s,150,null)}, -pF(){var s=0,r=A.S(t.z),q=this,p,o,n,m -var $async$pF=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:s=2 -return A.U(A.Uq(),$async$pF) -case 2:o=b -s=3 -return A.U(A.Um(),$async$pF) -case 3:n=b -m="https://login.xuexi.cn/login/qrcommit?showmenu=false&code="+n+"&appId=dingoankubyrfkttorhpou" -q.a4(new A.aaL(q,m)) -p=q.f -if(p!=null&&p.b!=null)p.aA(0) -q.f=A.AD(B.mX,new A.aaM(q,n,o)) -p=A.mG(B.nB,m,B.z,!1) -$.l5().jA(B.bW,u.t+p,null,null) -p=$.pJ() -p.lA("go",[u.t+A.mG(B.nB,m,B.z,!1)]) -return A.Q(null,r)}}) -return A.R($async$pF,r)}} -A.aaN.prototype={ -$0(){this.a.pF()}, -$S:0} -A.aaL.prototype={ -$0(){this.a.d=this.b}, -$S:0} -A.aaM.prototype={ -$1(a){if(a.c===60)a.aA(0) -A.Ul(this.b).aV(0,new A.aaK(this.a,a,this.c),t.CE)}, -$S:48} -A.aaK.prototype={ -$1(a){var s,r=this,q=A.aK(t.am),p=a.c -if(p===!0){p=r.b.aA(0) -s=a.b -if(s==null)s=" "+r.c -$.l5().jA(B.bW,s,null,null) -q.E(0,A.bM([p,null,A.Uj(a.b.split("=")[1],r.c).aV(0,new A.aaJ(r.a),t.CE)],t.H))}return q}, -$S:476} -A.aaJ.prototype={ -$1(a){var s,r=A.aK(t.am) -if(a){s=this.a -r.E(0,A.bM([A.nt(null,"\u6dfb\u52a0\u7528\u6237\u6210\u529f",null,null),s.a4(new A.aaI(s))],t.H))}return r}, -$S:477} -A.aaI.prototype={ -$0(){this.a.d=""}, -$S:0} -A.o_.prototype={ -am(){return new A.OS(B.k)}} -A.OS.prototype={ -I(a,b){var s=null,r=A.F5(s,s,s,s,s,B.QW),q=t.w,p=b.L(q).f -q=b.L(q).f -return A.rz(r,A.aqJ(A.dz(A.a7d(A.bu(this.d,s,B.vE,s,s,s,s,s),s,B.a2),q.a.b,p.a.a),s),s)}, -aB(){var s=this -s.aS() -A.F4().aV(0,new A.ae4(s),t.am) -s.e=A.AD(B.B2,new A.ae5(s))}, -m(a){this.aR(0) -A.a(this.e,"_timer").aA(0)}} -A.ae4.prototype={ -$1(a){var s=this.a -return A.bM([s.a4(new A.ae3(s,a))],t.H)}, -$S:160} -A.ae3.prototype={ -$0(){this.a.d=this.b}, -$S:0} -A.ae5.prototype={ -$1(a){A.F4().aV(0,new A.ae2(this.a),t.am)}, -$S:48} -A.ae2.prototype={ -$1(a){var s=this.a -return A.bM([s.a4(new A.ae1(s,a))],t.H)}, -$S:160} -A.ae1.prototype={ -$0(){this.a.d=this.b}, -$S:0} -A.o1.prototype={ -am(){return new A.OV(B.k)}} -A.OV.prototype={ -aB(){this.aS() -this.adA()}, -adA(){var s,r=this,q="_urlController",p=$.b4(),o=new A.jq(B.bn,p) -r.d=o -r.e=new A.jq(B.bn,p) -r.f=new A.jq(B.bn,p) -p=$.cy -p=(p==null?$.cy=new A.eS():p).e==="" -if(p){s=A.p_(J.ag($.pJ().h(0,"location"),"href"),0,null) -A.a(r.d,q).sc7(0,s.gr3(s))}else{p=A.a(o,q) -o=$.cy -p.sc7(0,(o==null?$.cy=new A.eS():o).e)}p=A.a(r.e,"_accountController") -o=$.cy -p.sc7(0,(o==null?$.cy=new A.eS():o).c) -p=A.a(r.f,"_passwordController") -o=$.cy -p.sc7(0,(o==null?$.cy=new A.eS():o).d)}, -m(a){var s,r,q=this -q.aR(0) -s=A.a(q.d,"_urlController") -r=s.y2$=$.b4() -s.y1$=0 -s=A.a(q.f,"_passwordController") -s.y2$=r -s.y1$=0 -s=A.a(q.e,"_accountController") -s.y2$=r -s.y1$=0}, -I(a,b){var s,r,q,p=this,o=null,n=A.F5(o,o,!1,o,o,B.QY),m=t.w,l=b.L(m).f -l=A.dz(A.ala(A.a(p.d,"_urlController"),B.BS,!1),70,l.a.a) -s=b.L(m).f -s=A.dz(A.ala(A.a(p.e,"_accountController"),B.BR,!1),70,s.a.a) -r=b.L(m).f -r=A.dz(A.ala(A.a(p.f,"_passwordController"),B.BT,!0),70,r.a.a) -m=b.L(m).f -q=t.p -return A.rz(n,A.oL(B.b7,A.b([A.Jy(o,A.el(A.b([l,s,r,A.dz(A.jM(A.iV(!1,!0,A.cc(o,B.xM,o,o,new A.dX(B.JF,o,o,A.lc(20),o,o,B.aF),60,o,o,m.a.a),o,!0,o,o,o,o,o,o,o,o,o,o,new A.aef(p),o,o,o),o,o),o,o)],q),B.af,B.E,B.Q),350,o,30,30,0,o)],q),B.bl,o,o),o)}, -aed(){var s=this,r=null,q=A.a(s.e,"_accountController").a.a,p=A.a(s.f,"_passwordController").a.a,o=A.a(s.d,"_urlController").a.a -$.l5().jA(B.bW,q+p,r,r) -if(o===""||q===""||p===""){A.nt(r,"\u7f3a\u5c11\u53c2\u6570",r,B.R8) -return}A.Uo(o,q,p).aV(0,new A.aeh(s),t.Lu)}} -A.aef.prototype={ -$0(){this.a.aed()}, -$S:0} -A.aeh.prototype={ -$1(a){var s,r=null,q=A.aK(t.ZB) -if(a){s=this.a.c -s.toString -q.E(0,A.bM([A.hW(s,!1).wg("/",new A.aeg(),t.X),A.nt(r,"\u767b\u5f55\u6210\u529f",r,r)],t.iG))}else q.E(0,A.bM([A.nt(r,"\u767b\u5f55\u5931\u8d25",B.cA,r)],t.Sg)) -return q}, -$S:479} -A.aeg.prototype={ -$1(a){return!1}, -$S:64} -A.yo.prototype={ -am(){return new A.Pq(B.k)}} -A.Pq.prototype={ -I(a,b){var s=null,r=t.p -return A.a7d(A.el(A.b([A.cc(s,A.el(A.b([A.eI(B.ao,new A.cq(B.Ba,A.fB(B.EZ,B.af,B.E,B.Q),s),B.V,!1,s,s,s,s,s,s,s,s,s,s,s,s,new A.af1(b),s,s,s,s,s,s),B.fB,A.eI(B.ao,new A.cq(B.n_,A.fB(B.F0,B.af,B.E,B.Q),s),B.V,!1,s,s,s,s,s,s,s,s,s,s,s,s,new A.af2(b),s,s,s,s,s,s),B.fB,A.eI(B.ao,new A.cq(B.n_,A.fB(B.Ev,B.af,B.E,B.Q),s),B.V,!1,s,s,s,s,s,s,s,s,s,s,s,s,new A.af3(),s,s,s,s,s,s),B.fB],r),B.aC,B.E,B.bz),s,s,B.wz,s,B.Bb,s,s)],r),B.aC,B.E,B.Q),B.m2,B.a2)}} -A.af1.prototype={ -$0(){A.hW(this.a,!1).OV("/log",t.X)}, -$S:0} -A.af2.prototype={ -$0(){var s=$.cy -if(s==null)s=$.cy=new A.eS() -s.b="" -s.a=!1 -A.hW(this.a,!1).wg("/login",new A.af0(),t.X)}, -$S:0} -A.af0.prototype={ -$1(a){return!1}, -$S:64} -A.af3.prototype={ -$0(){}, -$S:0} -A.AS.prototype={ -am(){return new A.DT(A.b([],t.hq),B.k)}} -A.DT.prototype={ -bL(){this.cw() -$.l5().jA(B.bW,"active",null,null)}, -I(a,b){return A.rz(null,new A.z3(A.apI(new A.ah7(this),J.bP(this.d),!1),this.gaeO(),null),null)}, -kL(){var s=0,r=A.S(t.H),q=this,p -var $async$kL=A.T(function(a,b){if(a===1)return A.P(b,r) -while(true)switch(s){case 0:p=A -s=2 -return A.U(A.Un(),$async$kL) -case 2:q.a4(new p.ah8(q,b)) -return A.Q(null,r)}}) -return A.R($async$kL,r)}, -nd(a,b){return this.aa_(a,b)}, -aa_(a,b){var s=0,r=A.S(t.z),q=this -var $async$nd=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:s=a?2:4 -break -case 2:s=5 -return A.U(A.Us(b),$async$nd) -case 5:s=3 -break -case 4:s=6 -return A.U(A.Ur(b),$async$nd) -case 6:case 3:s=7 -return A.U(q.kL(),$async$nd) -case 7:return A.Q(null,r)}}) -return A.R($async$nd,r)}, -t1(a,b){return this.Rh(a,b)}, -Rh(a,b){var s=0,r=A.S(t.z),q,p,o,n -var $async$t1=A.T(function(c,d){if(c===1)return A.P(d,r) -while(true)switch(s){case 0:n=A -s=2 -return A.U(A.Up(b),$async$t1) -case 2:p=n.bu(d,null,null,null,null,null,null,null) -o=A.hW(a,!0).c -o.toString -q=A.aBA(a,o) -A.hW(a,!0).kP(A.aAz(null,B.x,!0,null,new A.ah9(new A.pP(B.R1,p,null)),a,null,q,!0,t.z)) -return A.Q(null,r)}}) -return A.R($async$t1,r)}, -aB(){this.aS() -this.kL()}} -A.ah7.prototype={ -$2(a,b){var s,r,q,p,o,n=null,m=a.L(t.w).f,l=this.a,k=J.ag(l.d,b).a -k.toString -k=!k?B.cL:B.Mk -s=J.ag(l.d,b).a -s.toString -r=A.dz(n,n,s?0:5) -q=J.ag(l.d,b).c -s=t.p -q=A.qr(A.fB(A.b([k,r,A.qr(A.hS(B.D,!0,n,A.bu(q==null?"":q,1,B.aL,n,n,B.Pz,n,n),B.u,B.a5,0,n,n,n,n,n,B.bA),1)],s),B.af,B.E,B.Q),1) -r=J.ag(l.d,b).b -r.toString -r=B.e.aI(r*1e6/1000) -if(Math.abs(r)<=864e13)k=!1 -else k=!0 -if(k)A.K(A.b5("DateTime is outside valid range: "+r,n)) -A.eC(!1,"isUtc",t.y) -k=A.fB(A.b([q,A.hS(B.D,!0,n,A.bu(A.aHQ(new A.df(r,!1),A.b(["yyyy","-","mm","-","dd"," ","HH",":","nn",";","ss"],t.s)),1,n,n,n,B.NY,n,n),B.u,B.a5,0,n,n,n,n,n,B.bA)],s),B.af,B.E,B.Q) -r=A.cc(n,n,n,n,n,15,n,n,n) -q=A.lc(5) -p=J.ag(l.d,b).a -p.toString -p=!p?B.de:B.cA -o=J.ag(l.d,b).a -o.toString -return A.iV(!1,!0,A.el(A.b([A.cc(n,A.el(A.b([k,r,A.fB(A.b([A.qr(A.fB(A.b([A.iV(!1,!0,A.cc(n,A.jM(A.bu(!o?"\u5f00\u59cb\u5b66\u4e60":"\u505c\u6b62\u5b66\u4e60",n,n,n,n,B.eL,n,n),n,n),n,n,new A.dX(p,n,n,q,n,n,B.aF),30,n,n,100),n,!0,n,n,n,n,n,n,n,n,n,n,new A.ah4(l,b),n,n,n)],s),B.af,B.E,B.Q),1),A.iV(!1,!0,A.cc(n,B.xL,n,n,new A.dX(B.JG,n,n,A.lc(5),n,n,B.aF),30,n,n,100),n,!0,n,n,n,n,n,n,n,n,n,n,new A.ah5(l,a,b),n,n,n)],s),B.af,B.E,B.Q)],s),B.aC,B.E,B.bz),B.a5,n,n,100,n,B.Bc,m.a.a),B.AS],s),B.af,B.E,B.bz),n,!0,n,n,n,n,n,n,n,n,n,n,new A.ah6(),n,n,n)}, -$S:480} -A.ah6.prototype={ -$0(){}, -$S:0} -A.ah4.prototype={ -$0(){var s=this.a,r=this.b,q=J.ag(s.d,r).a -r=J.ag(s.d,r).e -if(r==null)r="" -s.nd(q===!0,r)}, -$S:0} -A.ah5.prototype={ -$0(){var s=this.a,r=J.ag(s.d,this.c).d -if(r==null)r="" -s.t1(this.b,r)}, -$S:0} -A.ah8.prototype={ -$0(){this.a.d=this.b}, -$S:0} -A.ah9.prototype={ -$1(a){return this.a}, -$S:481} -A.a2_.prototype={} -A.aaq.prototype={} -A.aar.prototype={} -A.bb.prototype={ -by(a){var s=a.a,r=this.a -r[15]=s[15] -r[14]=s[14] -r[13]=s[13] -r[12]=s[12] -r[11]=s[11] -r[10]=s[10] -r[9]=s[9] -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -i(a){var s=this -return"[0] "+s.rO(0).i(0)+"\n[1] "+s.rO(1).i(0)+"\n[2] "+s.rO(2).i(0)+"\n[3] "+s.rO(3).i(0)+"\n"}, -h(a,b){return this.a[b]}, -k(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.bb){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}else s=!1 -return s}, -gv(a){return A.f9(this.a)}, -xc(a,b){var s=b.a,r=this.a -r[a]=s[0] -r[4+a]=s[1] -r[8+a]=s[2] -r[12+a]=s[3]}, -rO(a){var s=new Float64Array(4),r=this.a -s[0]=r[a] -s[1]=r[4+a] -s[2]=r[8+a] -s[3]=r[12+a] -return new A.ik(s)}, -W(a,b){var s=new A.bb(new Float64Array(16)) -s.by(this) -s.os(0,b,null,null) -return s}, -Z(a,b){var s,r=new Float64Array(16),q=new A.bb(r) -q.by(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -r[3]=r[3]+s[3] -r[4]=r[4]+s[4] -r[5]=r[5]+s[5] -r[6]=r[6]+s[6] -r[7]=r[7]+s[7] -r[8]=r[8]+s[8] -r[9]=r[9]+s[9] -r[10]=r[10]+s[10] -r[11]=r[11]+s[11] -r[12]=r[12]+s[12] -r[13]=r[13]+s[13] -r[14]=r[14]+s[14] -r[15]=r[15]+s[15] -return q}, -a9(a,b){var s,r=new Float64Array(16),q=new A.bb(r) -q.by(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -r[3]=r[3]-s[3] -r[4]=r[4]-s[4] -r[5]=r[5]-s[5] -r[6]=r[6]-s[6] -r[7]=r[7]-s[7] -r[8]=r[8]-s[8] -r[9]=r[9]-s[9] -r[10]=r[10]-s[10] -r[11]=r[11]-s[11] -r[12]=r[12]-s[12] -r[13]=r[13]-s[13] -r[14]=r[14]-s[14] -r[15]=r[15]-s[15] -return q}, -aC(a,b,a0){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15] -s[12]=r*b+q*a0+p*0+o -s[13]=n*b+m*a0+l*0+k -s[14]=j*b+i*a0+h*0+g -s[15]=f*b+e*a0+d*0+c}, -os(a,b,c,d){var s,r,q,p -if(typeof b=="number"){s=c==null?b:c -r=d==null?b:d}else throw A.c(A.c_(null)) -q=b -p=this.a -p[0]=p[0]*q -p[1]=p[1]*q -p[2]=p[2]*q -p[3]=p[3]*q -p[4]=p[4]*s -p[5]=p[5]*s -p[6]=p[6]*s -p[7]=p[7]*s -p[8]=p[8]*r -p[9]=p[9]*r -p[10]=p[10]*r -p[11]=p[11]*r -p[12]=p[12] -p[13]=p[13] -p[14]=p[14] -p[15]=p[15]}, -bd(a,b){return this.os(a,b,null,null)}, -Fd(){var s=this.a -s[0]=0 -s[1]=0 -s[2]=0 -s[3]=0 -s[4]=0 -s[5]=0 -s[6]=0 -s[7]=0 -s[8]=0 -s[9]=0 -s[10]=0 -s[11]=0 -s[12]=0 -s[13]=0 -s[14]=0 -s[15]=0}, -dC(){var s=this.a -s[0]=1 -s[1]=0 -s[2]=0 -s[3]=0 -s[4]=0 -s[5]=1 -s[6]=0 -s[7]=0 -s[8]=0 -s[9]=0 -s[10]=1 -s[11]=0 -s[12]=0 -s[13]=0 -s[14]=0 -s[15]=1}, -kr(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 -if(b4===0){this.by(b5) -return 0}s=1/b4 -r=this.a -r[0]=(i*b3-h*b2+g*b1)*s -r[1]=(-m*b3+l*b2-k*b1)*s -r[2]=(a*a7-a0*a6+a1*a5)*s -r[3]=(-e*a7+d*a6-c*a5)*s -q=-j -r[4]=(q*b3+h*b0-g*a9)*s -r[5]=(n*b3-l*b0+k*a9)*s -p=-b -r[6]=(p*a7+a0*a4-a1*a3)*s -r[7]=(f*a7-d*a4+c*a3)*s -r[8]=(j*b2-i*b0+g*a8)*s -r[9]=(-n*b2+m*b0-k*a8)*s -r[10]=(b*a6-a*a4+a1*a2)*s -r[11]=(-f*a6+e*a4-c*a2)*s -r[12]=(q*b1+i*a9-h*a8)*s -r[13]=(n*b1-m*a9+l*a8)*s -r[14]=(p*a5+a*a3-a0*a2)*s -r[15]=(f*a5-e*a3+d*a2)*s -return b4}, -cg(b5,b6){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15],b=b6.a,a=b[0],a0=b[4],a1=b[8],a2=b[12],a3=b[1],a4=b[5],a5=b[9],a6=b[13],a7=b[2],a8=b[6],a9=b[10],b0=b[14],b1=b[3],b2=b[7],b3=b[11],b4=b[15] -s[0]=r*a+q*a3+p*a7+o*b1 -s[4]=r*a0+q*a4+p*a8+o*b2 -s[8]=r*a1+q*a5+p*a9+o*b3 -s[12]=r*a2+q*a6+p*b0+o*b4 -s[1]=n*a+m*a3+l*a7+k*b1 -s[5]=n*a0+m*a4+l*a8+k*b2 -s[9]=n*a1+m*a5+l*a9+k*b3 -s[13]=n*a2+m*a6+l*b0+k*b4 -s[2]=j*a+i*a3+h*a7+g*b1 -s[6]=j*a0+i*a4+h*a8+g*b2 -s[10]=j*a1+i*a5+h*a9+g*b3 -s[14]=j*a2+i*a6+h*b0+g*b4 -s[3]=f*a+e*a3+d*a7+c*b1 -s[7]=f*a0+e*a4+d*a8+c*b2 -s[11]=f*a1+e*a5+d*a9+c*b3 -s[15]=f*a2+e*a6+d*b0+c*b4}, -w6(a){var s=new A.bb(new Float64Array(16)) -s.by(this) -s.cg(0,a) -return s}, -agJ(a){var s=a.a,r=this.a,q=r[0],p=s[0],o=r[4],n=s[1],m=r[8],l=s[2],k=r[12],j=r[1],i=r[5],h=r[9],g=r[13],f=r[2],e=r[6],d=r[10] -r=r[14] -s[0]=q*p+o*n+m*l+k -s[1]=j*p+i*n+h*l+g -s[2]=f*p+e*n+d*l+r -return a}, -T(a2,a3){var s=a3.a,r=this.a,q=r[0],p=s[0],o=r[4],n=s[1],m=r[8],l=s[2],k=r[12],j=s[3],i=r[1],h=r[5],g=r[9],f=r[13],e=r[2],d=r[6],c=r[10],b=r[14],a=r[3],a0=r[7],a1=r[11] -r=r[15] -s[0]=q*p+o*n+m*l+k*j -s[1]=i*p+h*n+g*l+f*j -s[2]=e*p+d*n+c*l+b*j -s[3]=a*p+a0*n+a1*l+r*j -return a3}, -wd(a){var s=a.a,r=this.a,q=r[0],p=s[0],o=r[4],n=s[1],m=r[8],l=s[2],k=r[12],j=r[1],i=r[5],h=r[9],g=r[13],f=r[2],e=r[6],d=r[10],c=r[14],b=1/(r[3]*p+r[7]*n+r[11]*l+r[15]) -s[0]=(q*p+o*n+m*l+k)*b -s[1]=(j*p+i*n+h*l+g)*b -s[2]=(f*p+e*n+d*l+c)*b -return a}} -A.fH.prototype={ -my(a,b,c){var s=this.a -s[0]=a -s[1]=b -s[2]=c}, -by(a){var s=a.a,r=this.a -r[0]=s[0] -r[1]=s[1] -r[2]=s[2]}, -i(a){var s=this.a -return"["+A.e(s[0])+","+A.e(s[1])+","+A.e(s[2])+"]"}, -k(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.fH){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]}else s=!1 -return s}, -gv(a){return A.f9(this.a)}, -a9(a,b){var s,r=new Float64Array(3),q=new A.fH(r) -q.by(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -return q}, -Z(a,b){var s,r=new Float64Array(3),q=new A.fH(r) -q.by(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -return q}, -W(a,b){var s=new Float64Array(3),r=new A.fH(s) -r.by(this) -s[2]=s[2]*b -s[1]=s[1]*b -s[0]=s[0]*b -return r}, -h(a,b){return this.a[b]}, -gp(a){var s=this.a,r=s[0],q=s[1] -s=s[2] -return Math.sqrt(r*r+q*q+s*s)}, -MI(a){var s=a.a,r=this.a -return r[0]*s[0]+r[1]*s[1]+r[2]*s[2]}, -QB(a){var s=new Float64Array(3),r=new A.fH(s) -r.by(this) -s[2]=s[2]*a -s[1]=s[1]*a -s[0]=s[0]*a -return r}} -A.ik.prototype={ -t0(a,b,c,d){var s=this.a -s[3]=d -s[2]=c -s[1]=b -s[0]=a}, -by(a){var s=a.a,r=this.a -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -i(a){var s=this.a -return A.e(s[0])+","+A.e(s[1])+","+A.e(s[2])+","+A.e(s[3])}, -k(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.ik){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]}else s=!1 -return s}, -gv(a){return A.f9(this.a)}, -a9(a,b){var s,r=new Float64Array(4),q=new A.ik(r) -q.by(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -r[3]=r[3]-s[3] -return q}, -Z(a,b){var s,r=new Float64Array(4),q=new A.ik(r) -q.by(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -r[3]=r[3]+s[3] -return q}, -W(a,b){var s=new Float64Array(4),r=new A.ik(s) -r.by(this) -s[0]=s[0]*b -s[1]=s[1]*b -s[2]=s[2]*b -s[3]=s[3]*b -return r}, -h(a,b){return this.a[b]}, -gp(a){var s=this.a,r=s[0],q=s[1],p=s[2] -s=s[3] -return Math.sqrt(r*r+q*q+p*p+s*s)}} -A.ajb.prototype={ -$0(){var s=t.U4 -if(s.b(A.atQ()))return s.a(A.atQ()).$1(A.b([],t.s)) -return A.atP()}, -$S:28} -A.aja.prototype={ -$0(){var s,r,q,p,o,n=$.awj(),m=new A.Hk() -m.vL() -new A.lL("PonnamKarthik/fluttertoast",B.bO,n).mv(m.gacP()) -s=$.auA() -A.aqc(new A.a34(s),s,!1) -A.aDg(new A.a75()) -s=window -r=$.amG() -q=new A.aar(s,r) -s=s.navigator -p=s.vendor -o=s.appVersion -if(B.b.A(p,"Apple"))s=B.b.A(o,"Version") -else s=!1 -q.d=s -A.aqc(q,r,!0) -$.aE6=q -$.awg() -$.pL().afM("__url_launcher::link",A.aIi(),!1) -$.au3=n.gacH()}, -$S:6};(function aliases(){var s=A.QI.prototype -s.UA=s.aG -s.UG=s.bF -s.UE=s.bt -s.UJ=s.aC -s.UH=s.cP -s.UF=s.hw -s.UI=s.T -s.UD=s.je -s.UC=s.lD -s.UB=s.fF -s=A.eX.prototype -s.RP=s.lC -s.RQ=s.jd -s.RR=s.nf -s.RS=s.kq -s.RT=s.jl -s.RU=s.dZ -s.RV=s.fb -s.RW=s.hM -s.RX=s.is -s.RY=s.qe -s.RZ=s.hm -s.S_=s.cp -s.S0=s.qf -s.S1=s.cm -s.S2=s.c9 -s.S3=s.it -s.S4=s.bt -s.S5=s.ma -s.S6=s.hw -s.S7=s.bF -s.S8=s.f2 -s.S9=s.cP -s.Sa=s.T -s.Sb=s.aC -s=A.qa.prototype -s.Si=s.jF -s=A.u2.prototype -s.xQ=s.c_ -s=A.d5.prototype -s.T1=s.wp -s.FE=s.bq -s.xF=s.pG -s.FI=s.bc -s.FH=s.kT -s.FF=s.hl -s.FG=s.r9 -s=A.dw.prototype -s.T0=s.hv -s.ld=s.bc -s.t8=s.hl -s=A.wc.prototype -s.xz=s.nF -s.Sp=s.Ea -s.Sn=s.ir -s.So=s.C9 -s=A.CC.prototype -s.Ug=s.hl -s=J.qT.prototype -s.SD=s.i -s=J.M.prototype -s.SM=s.i -s=A.dh.prototype -s.SF=s.NS -s.SG=s.NT -s.SI=s.NV -s.SH=s.NU -s=A.jy.prototype -s.td=s.tk -s.oN=s.Yp -s.FT=s.YK -s=A.uN.prototype -s.FX=s.a9H -s=A.O.prototype -s.FC=s.bh -s=A.p.prototype -s.SE=s.ol -s=A.D.prototype -s.oI=s.k -s.bY=s.i -s=A.am.prototype -s.xA=s.iq -s=A.a2.prototype -s.Sw=s.kk -s=A.Dd.prototype -s.UV=s.kn -s=A.k2.prototype -s.SJ=s.h -s.SK=s.n -s=A.ul.prototype -s.FV=s.n -s=A.E.prototype -s.Sc=s.k -s.Sd=s.i -s=A.Ee.prototype -s.Vj=s.aB -s=A.Ef.prototype -s.Vk=s.m -s=A.bv.prototype -s.xw=s.wx -s=A.yx.prototype -s.T_=s.T -s=A.vm.prototype -s.lc=s.m -s=A.Fk.prototype -s.RI=s.fQ -s.RJ=s.jw -s.RK=s.E6 -s=A.jN.prototype -s.eL=s.m -s.Fq=s.ab -s=A.d7.prototype -s.oM=s.sl -s=A.ai.prototype -s.Sq=s.cv -s=A.iM.prototype -s.Sr=s.cv -s=A.H.prototype -s.xu=s.aj -s.d7=s.aa -s.Fo=s.hf -s.xv=s.jm -s=A.qF.prototype -s.Fx=s.adj -s.Sy=s.C_ -s=A.f7.prototype -s.SN=s.hr -s=A.cJ.prototype -s.oG=s.hr -s.Fy=s.m -s=A.yl.prototype -s.xD=s.ie -s.SV=s.qC -s.FD=s.O -s.oJ=s.m -s.SW=s.xp -s=A.rk.prototype -s.T2=s.ie -s.FJ=s.hd -s.T3=s.fS -s=A.fe.prototype -s.TW=s.hr -s=A.E3.prototype -s.V8=s.m -s=A.E4.prototype -s.V9=s.m -s=A.Ec.prototype -s.Vh=s.aB -s.Vg=s.dc -s=A.E2.prototype -s.V7=s.m -s=A.Eb.prototype -s.Vf=s.m -s=A.Ed.prototype -s.Vi=s.m -s=A.k_.prototype -s.oH=s.m -s=A.tQ.prototype -s.U5=s.aH -s=A.E6.prototype -s.Va=s.m -s=A.CF.prototype -s.Ui=s.m -s=A.D0.prototype -s.UK=s.m -s=A.D1.prototype -s.UL=s.m -s=A.D2.prototype -s.UN=s.b4 -s.UM=s.bH -s.UO=s.m -s=A.E9.prototype -s.Vd=s.m -s=A.El.prototype -s.Vp=s.aj -s.Vq=s.aa -s=A.Em.prototype -s.Vr=s.aj -s.Vs=s.aa -s=A.Ep.prototype -s.Vu=s.m -s=A.Eg.prototype -s.Vl=s.m -s=A.Eh.prototype -s.Vm=s.m -s=A.Er.prototype -s.Vx=s.b4 -s.Vw=s.bH -s.Vy=s.m -s=A.tC.prototype -s.TZ=s.m -s=A.DG.prototype -s.UW=s.m -s=A.vz.prototype -s.RM=s.xt -s.RL=s.E -s=A.bG.prototype -s.j3=s.du -s.j4=s.dv -s=A.iL.prototype -s.Sl=s.du -s.Sm=s.dv -s=A.Ft.prototype -s.RO=s.m -s=A.cd.prototype -s.Fs=s.E -s=A.MY.prototype -s.FU=s.m -s=A.nM.prototype -s.SA=s.a2 -s.SB=s.K -s.Sz=s.tW -s=A.f4.prototype -s.FA=s.k -s=A.A8.prototype -s.TV=s.es -s=A.rw.prototype -s.Tn=s.Cx -s.Tp=s.CC -s.To=s.CA -s.Tm=s.C5 -s=A.aF.prototype -s.RN=s.k -s=A.fm.prototype -s.t6=s.i -s=A.B.prototype -s.xH=s.dW -s.Tc=s.r7 -s.i5=s.bD -s.Tb=s.dm -s=A.CI.prototype -s.Uj=s.aj -s.Uk=s.aa -s=A.CK.prototype -s.Ul=s.aj -s.Um=s.aa -s=A.CL.prototype -s.Un=s.aj -s.Uo=s.aa -s=A.xs.prototype -s.FB=s.m -s.SL=s.wD -s=A.dY.prototype -s.j2=s.eF -s.Sg=s.aj -s.Sh=s.aa -s=A.j5.prototype -s.SU=s.eF -s=A.cw.prototype -s.xE=s.aa -s=A.u.prototype -s.le=s.m -s.FO=s.hf -s.dE=s.aj -s.Tf=s.a0 -s.Tg=s.aF -s.Td=s.dm -s.fY=s.eO -s.xI=s.ne -s.xJ=s.fq -s.FP=s.na -s.Te=s.hU -s.Th=s.cv -s.t9=s.dD -s=A.ac.prototype -s.xx=s.CN -s.Sk=s.B -s.Sj=s.w5 -s.Fr=s.iP -s.xy=s.bb -s=A.m_.prototype -s.xG=s.jV -s=A.CR.prototype -s.Up=s.aj -s.Uq=s.aa -s=A.dP.prototype -s.xO=s.b1 -s.xM=s.aU -s.xN=s.aX -s.xL=s.b0 -s.Tk=s.c4 -s.tb=s.bK -s.ta=s.cL -s.mF=s.aH -s=A.zm.prototype -s.Tl=s.bD -s=A.CT.prototype -s.te=s.aj -s.mG=s.aa -s=A.CU.prototype -s.FW=s.dW -s=A.CV.prototype -s.Ur=s.aj -s.Us=s.aa -s=A.A1.prototype -s.TS=s.i -s=A.CX.prototype -s.Ut=s.aj -s.Uu=s.aa -s=A.zp.prototype -s.FQ=s.bK -s=A.jC.prototype -s.Uv=s.aj -s.Uw=s.aa -s=A.ev.prototype -s.U4=s.qU -s.U3=s.cT -s=A.dR.prototype -s.TE=s.vt -s=A.tA.prototype -s.FS=s.m -s=A.F7.prototype -s.RH=s.lX -s=A.rM.prototype -s.TQ=s.qB -s.TR=s.kC -s=A.lL.prototype -s.SO=s.k7 -s=A.b_.prototype -s.Fp=s.ef -s.RE=s.AW -s.RF=s.wi -s=A.iD.prototype -s.mD=s.I -s=A.DV.prototype -s.UX=s.fQ -s.UY=s.E6 -s=A.DW.prototype -s.UZ=s.fQ -s.V_=s.jw -s=A.DX.prototype -s.V0=s.fQ -s.V1=s.jw -s=A.DY.prototype -s.V3=s.fQ -s.V2=s.qB -s=A.DZ.prototype -s.V4=s.fQ -s=A.E_.prototype -s.V5=s.fQ -s.V6=s.jw -s=A.E7.prototype -s.Vb=s.m -s=A.E8.prototype -s.Vc=s.aB -s=A.Bt.prototype -s.U6=s.aB -s=A.Bu.prototype -s.U7=s.m -s=A.Hp.prototype -s.mE=s.adG -s.Sx=s.Bo -s=A.aa.prototype -s.aS=s.aB -s.bu=s.b4 -s.j5=s.dc -s.cw=s.bL -s.aR=s.m -s.e9=s.bH -s=A.al.prototype -s.Tj=s.aM -s=A.b2.prototype -s.Sv=s.dN -s.Fw=s.fj -s.t7=s.bc -s.Ss=s.AK -s.Fv=s.vJ -s.jU=s.ix -s.St=s.bL -s.Ft=s.dc -s.xB=s.md -s.Fu=s.BN -s.Su=s.bH -s=A.w2.prototype -s.Se=s.z0 -s.Sf=s.iN -s=A.yQ.prototype -s.T4=s.bq -s.T5=s.bc -s.T6=s.Ed -s=A.h4.prototype -s.Fz=s.qZ -s=A.bm.prototype -s.oK=s.fj -s.lf=s.bc -s.xK=s.iN -s.Ti=s.md -s=A.zw.prototype -s.FR=s.fj -s=A.fv.prototype -s.SP=s.iC -s.SR=s.iK -s.SS=s.iQ -s.SQ=s.fj -s.ST=s.bc -s=A.qN.prototype -s.SC=s.aB -s=A.ui.prototype -s.U8=s.m -s=A.bS.prototype -s.TC=s.kF -s.Tz=s.qa -s.Tu=s.q7 -s.TA=s.BV -s.TD=s.hx -s.Tx=s.lK -s.Ty=s.nr -s.Tv=s.q8 -s.Tw=s.BR -s.Tt=s.pP -s.Ts=s.uO -s.TB=s.m -s=A.Qz.prototype -s.Uz=s.uT -s=A.Cu.prototype -s.Ua=s.bL -s.Ub=s.m -s=A.Cv.prototype -s.Ud=s.b4 -s.Uc=s.bH -s.Ue=s.m -s=A.IF.prototype -s.xC=s.cT -s=A.CA.prototype -s.Uf=s.cT -s=A.Ea.prototype -s.Ve=s.m -s=A.Eq.prototype -s.Vv=s.m -s=A.dy.prototype -s.ahk=s.m -s=A.jh.prototype -s.Tr=s.BX -s=A.dQ.prototype -s.Tq=s.sl -s=A.is.prototype -s.Ux=s.qy -s.Uy=s.rs -s=A.rc.prototype -s.SZ=s.kF -s.SX=s.lK -s.SY=s.m -s=A.dC.prototype -s.U2=s.kF -s.U1=s.qa -s.U_=s.q7 -s.U0=s.lK -s=A.ut.prototype -s.U9=s.hx -s=A.KF.prototype -s.tc=s.m -s=A.oy.prototype -s.TF=s.aj -s=A.eN.prototype -s.oL=s.cT -s=A.D6.prototype -s.UQ=s.cT -s=A.zJ.prototype -s.TG=s.uB -s.TH=s.nk -s=A.ji.prototype -s.TI=s.py -s.xP=s.R_ -s.TL=s.n9 -s.TJ=s.n7 -s.TK=s.pI -s.TP=s.Ca -s.TM=s.hg -s.TO=s.m -s.TN=s.cT -s=A.D4.prototype -s.UP=s.cT -s=A.D7.prototype -s.UR=s.m -s=A.D8.prototype -s.UT=s.b4 -s.US=s.bH -s.UU=s.m -s=A.je.prototype -s.FN=s.aB -s.T7=s.bH -s.Ta=s.vA -s.FM=s.vC -s.FL=s.vB -s.T8=s.Cu -s.T9=s.Cv -s.FK=s.m -s=A.uB.prototype -s.Uh=s.m -s=A.Ek.prototype -s.Vn=s.aj -s.Vo=s.aa -s=A.Aw.prototype -s.TX=s.Do -s.TY=s.Ds -s=A.En.prototype -s.Vt=s.m -s=A.A6.prototype -s.TU=s.aW -s.TT=s.k})();(function installTearOffs(){var s=hunkHelpers._static_0,r=hunkHelpers._static_1,q=hunkHelpers._instance_0u,p=hunkHelpers._instance_1u,o=hunkHelpers._instance_1i,n=hunkHelpers._instance_0i,m=hunkHelpers._static_2,l=hunkHelpers.installInstanceTearOff,k=hunkHelpers._instance_2u,j=hunkHelpers.installStaticTearOff,i=hunkHelpers._instance_2i -s(A,"aFS","aDo",0) -r(A,"aFR","azL",482) -r(A,"aFT","aGz",16) -r(A,"Tm","aFQ",15) -q(A.vc.prototype,"gAs","a8a",0) -p(A.HF.prototype,"ga6d","a6e",39) -q(A.Hr.prototype,"ga_R","a_S",0) -var h -o(h=A.H8.prototype,"gn3","E",234) -q(h,"gRu","la",45) -p(A.L1.prototype,"ga0D","a0E",116) -p(h=A.dm.prototype,"gZQ","ZR",4) -p(h,"gZO","ZP",4) -p(A.kz.prototype,"ga6i","a6j",189) -p(h=A.Hj.prototype,"ga4J","IV",232) -p(h,"ga4g","a4h",4) -p(A.I2.prototype,"ga50","a51",94) -o(A.y3.prototype,"gOy","Dq",9) -o(A.zU.prototype,"gOy","Dq",9) -p(A.Jx.prototype,"gzO","a54",390) -n(A.Kw.prototype,"geE","m",0) -p(h=A.wc.prototype,"gqz","Nq",4) -p(h,"gvu","acC",4) -p(h,"gvv","acD",4) -p(h,"gqT","ael",4) -m(J,"alW","aBD",98) -o(A.kK.prototype,"ghJ","A",21) -r(A,"aGp","aBo",73) -s(A,"aGq","aCH",67) -o(A.dh.prototype,"gP6","B","2?(D?)") -r(A,"aH2","aEg",91) -r(A,"aH3","aEh",91) -r(A,"aH4","aEi",91) -r(A,"aH1","aBk",21) -s(A,"at6","aGJ",0) -r(A,"aH5","aGB",15) -m(A,"aH6","aGD",40) -s(A,"at5","aGC",0) -l(A.tU.prototype,"gLZ",0,1,function(){return[null]},["$2","$1"],["fG","jf"],153,0,0) -k(A.a4.prototype,"gyv","f7",40) -o(h=A.uL.prototype,"gn3","E",9) -l(h,"ga9c",0,1,null,["$2","$1"],["n4","a9d"],153,0,0) -q(h=A.tW.prototype,"gzN","mS",0) -q(h,"gzP","mT",0) -q(h=A.jy.prototype,"gzN","mS",0) -q(h,"gzP","mT",0) -q(h=A.uJ.prototype,"gzN","mS",0) -q(h,"gzP","mT",0) -p(h,"ga1s","a1t",9) -k(h,"ga1U","a1V",40) -q(h,"ga1A","a1B",0) -m(A,"ata","aFK",109) -r(A,"atb","aFL",73) -m(A,"aHg","aBQ",98) -m(A,"aHh","aFP",98) -o(A.uo.prototype,"gP6","B","2?(D?)") -o(A.mx.prototype,"ghJ","A",21) -o(A.hq.prototype,"ghJ","A",21) -o(A.xf.prototype,"ghJ","A",21) -o(A.dU.prototype,"ghJ","A",21) -o(A.td.prototype,"ghJ","A",21) -r(A,"ate","aFM",32) -o(h=A.MX.prototype,"gn3","E",9) -n(h,"gLV","eD",0) -r(A,"aHt","aI2",73) -m(A,"aHs","aI1",109) -m(A,"atf","aAi",487) -j(A,"aHr",1,null,["$2$encoding","$1"],["arm",function(a){return A.arm(a,B.z)}],488,0) -r(A,"aHq","aE5",41) -o(A.p.prototype,"ghJ","A",21) -l(A.by.prototype,"gahc",0,0,null,["$1","$0"],["PS","ahd"],269,0,0) -j(A,"aHZ",4,null,["$4"],["aEz"],115,0) -j(A,"aI_",4,null,["$4"],["aEA"],115,0) -p(A.Gp.prototype,"gah6","ah7",9) -r(A,"aIh","Tj",490) -r(A,"aIg","alM",491) -j(A,"atT",2,null,["$1$2","$2"],["atU",function(a,b){return A.atU(a,b,t.Jy)}],492,1) -j(A,"amA",3,null,["$3"],["aDi"],493,0) -j(A,"auf",3,null,["$3"],["Z"],494,0) -j(A,"eh",3,null,["$3"],["A"],495,0) -p(A.Dp.prototype,"gNW","cM",16) -q(A.kL.prototype,"gHm","a_A",0) -i(h=A.wg.prototype,"gOv","r1",436) -k(h,"gOz","Dr",81) -k(h,"gOA","r2",451) -p(A.Bq.prototype,"ga_y","a_z",474) -p(h=A.Cb.prototype,"ga52","a53",39) -p(h,"gYP","YQ",39) -l(h=A.l8.prototype,"gPr",1,0,null,["$1$from","$0"],["Ps","cd"],168,0,0) -p(h,"ga_g","a_h",169) -p(h,"gGi","YE",2) -p(A.i4.prototype,"gmZ","uh",3) -p(A.nd.prototype,"gAz","AA",3) -p(h=A.oW.prototype,"gmZ","uh",3) -q(h,"gAO","a8U",0) -p(h=A.q8.prototype,"gIT","a4E",3) -q(h,"gIS","a4D",0) -q(A.mR.prototype,"gcY","ab",0) -p(A.l9.prototype,"gOt","r_",3) -p(h=A.tZ.prototype,"ga6C","a6D",23) -p(h,"ga6E","a6F",10) -p(h,"ga6A","a6B",30) -q(h,"ga1E","a1F",0) -p(h,"ga6G","a6H",80) -q(A.Bj.prototype,"gNx","vA",0) -j(A,"aH_",1,null,["$2$forceReport","$1"],["apc",function(a){return A.apc(a,!1)}],496,0) -n(h=A.jN.prototype,"geE","m",0) -q(h,"gcY","ab",0) -p(A.H.prototype,"gDJ","ri",185) -r(A,"aIC","aDv",497) -p(h=A.qF.prototype,"ga2K","a2L",188) -p(h,"ga9V","a9W",39) -q(h,"ga0o","z2",0) -p(h,"ga2P","Ig",24) -q(h,"ga2Y","a2Z",0) -j(A,"aMB",3,null,["$3"],["aph"],498,0) -p(A.hI.prototype,"gqA","kB",24) -r(A,"aml","aAL",154) -p(A.wq.prototype,"gqA","kB",24) -q(A.Ni.prototype,"ga59","a5a",0) -p(h=A.hE.prototype,"gu_","a4K",24) -p(h,"ga6c","pn",192) -q(h,"ga4L","mR",0) -p(A.rk.prototype,"gqA","kB",24) -k(h=A.Cd.prototype,"ga46","a47",197) -k(h,"ga4x","a4y",58) -q(h=A.B2.prototype,"ga1Q","a1R",0) -q(h,"ga1S","a1T",0) -p(h,"gy5","YG",201) -q(h=A.B7.prototype,"gYR","YS",0) -p(h,"ga_Y","a_Z",204) -p(h=A.CO.prototype,"gb9","b1",1) -p(h,"gbn","aX",1) -p(h,"gbf","aU",1) -p(h,"gbM","b0",1) -p(h=A.CP.prototype,"gb9","b1",1) -p(h,"gbn","aX",1) -p(h,"gbf","aU",1) -p(h,"gbM","b0",1) -j(A,"aHE",4,null,["$4"],["aFr"],499,0) -p(h=A.CG.prototype,"gb9","b1",1) -p(h,"gbn","aX",1) -p(A.lw.prototype,"ga19","a1a",3) -p(A.x9.prototype,"ga3Z","a4_",3) -p(A.xa.prototype,"ga40","a41",3) -p(h=A.qQ.prototype,"gQq","Qr",230) -p(h,"gab9","aba",231) -l(h=A.BR.prototype,"gK1",0,0,function(){return[null]},["$1","$0"],["K2","a7l"],136,0,0) -p(h,"gIw","a42",138) -p(h,"ga24","a25",5) -p(h,"ga3z","a3A",25) -p(h,"ga3D","a3E",72) -q(h,"ga3w","Ij",0) -q(h,"ga3x","a3y",0) -q(h,"ga1C","a1D",0) -p(h,"ga2p","a2q",42) -p(h,"ga2r","a2s",37) -q(A.BM.prototype,"gzq","zr",0) -p(h=A.CJ.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -k(h,"ga5i","a5j",12) -q(A.BV.prototype,"gzq","zr",0) -p(h=A.z4.prototype,"ga69","a6a",29) -p(h,"ga26","a27",252) -p(A.zC.prototype,"ga3r","a3s",3) -p(h=A.BC.prototype,"ga2V","a2W",3) -q(h,"ga55","a56",0) -q(A.rA.prototype,"ga3t","a3u",0) -j(A,"aua",3,null,["$3"],["aGr"],500,0) -p(h=A.De.prototype,"ga1o","a1p",53) -p(h,"gAf","Ag",53) -p(h,"gAd","Ae",53) -p(h,"gYc","Yd",259) -p(h,"ga21","a22",5) -p(h,"ga28","a29",5) -q(h=A.uE.prototype,"ghA","jV",0) -q(h,"ga_O","yW",0) -p(h,"gAf","Ag",23) -p(h,"ga7p","a7q",10) -p(h,"gAd","Ae",30) -p(h,"ga7r","a7s",25) -p(h,"ga7t","a7u",72) -p(h,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -q(h,"gadw","vI",0) -q(h,"gabd","v5",0) -p(A.Df.prototype,"gzL","a4T",3) -p(h=A.Ch.prototype,"ga7Q","a7R",23) -p(h,"ga7S","a7T",10) -p(h,"ga7O","a7P",30) -p(h,"ga7M","a7N",265) -q(h=A.Du.prototype,"ga1u","a1v",0) -n(h,"geE","m",0) -p(h=A.RD.prototype,"gaeJ","Do",63) -p(h,"gaeH","aeI",63) -p(h,"gaeY","aeZ",75) -p(h,"gaf3","Ds",72) -p(h,"gaf_","af0",76) -q(h=A.DA.prototype,"gKo","a7W",0) -k(h,"ga33","a34",270) -q(h,"ga39","a3a",0) -p(h=A.AG.prototype,"ga8g","a8h",25) -l(h,"gKv",0,0,function(){return[null]},["$1","$0"],["Kw","a8f"],136,0,0) -l(h,"ga3B",0,0,null,["$1","$0"],["Ik","a3C"],277,0,0) -p(h,"ga8b","a8c",5) -p(h,"ga8d","a8e",5) -n(A.tC.prototype,"geE","m",0) -q(h=A.oV.prototype,"gIe","a2t",0) -p(h,"ga8i","a8j",3) -q(h,"gabT","MW",47) -p(h,"gIf","a2O",24) -q(h,"gIh","a2U",0) -l(A.yu.prototype,"gadE",0,1,null,["$4$allowUpscaling$cacheHeight$cacheWidth","$1"],["NQ","adF"],278,0,0) -k(A.GD.prototype,"ga2a","a2b",137) -j(A,"aHG",3,null,["$3"],["eo"],501,0) -r(A,"aI3","azH",502) -o(A.nM.prototype,"gLr","a2",111) -p(h=A.Iv.prototype,"ga1q","a1r",290) -p(h,"ga1e","a1f",2) -o(h,"gLr","a2",111) -j(A,"auc",3,null,["$3"],["bj"],503,0) -q(h=A.rw.prototype,"ga3h","a3i",0) -p(h,"ga3K","a3L",2) -l(h,"ga3f",0,3,null,["$3"],["a3g"],292,0,0) -q(h,"ga3j","a3k",0) -q(h,"ga3l","a3m",0) -p(h,"ga2G","a2H",2) -p(h=A.B.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -q(h,"gvZ","a0",0) -k(A.cD.prototype,"gabg","q2",12) -p(h=A.z9.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.za.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.oq.prototype,"ga4U","a4V",113) -q(h,"gd5","aF",0) -q(h,"ghA","jV",0) -q(h,"guc","a7j",0) -p(h,"ga3p","a3q",33) -p(h,"ga3n","a3o",296) -p(h,"ga2y","a2z",5) -p(h,"ga2u","a2v",5) -p(h,"ga2A","a2B",5) -p(h,"ga2w","a2x",5) -p(h,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h,"ga_F","a_G",25) -q(h,"ga_D","a_E",0) -q(h,"ga2h","a2i",0) -k(h,"ga_H","Hq",12) -p(h=A.zc.prototype,"gbf","aU",1) -p(h,"gbM","b0",1) -p(h=A.zd.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.zf.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -r(A,"atW","aCX",46) -r(A,"atX","aCY",46) -q(h=A.u.prototype,"gd5","aF",0) -l(h,"gfl",0,2,null,["$2"],["aH"],12,0,1) -q(h,"gOg","ai",0) -l(h,"goA",0,0,null,["$4$curve$descendant$duration$rect","$0","$1$rect","$3$curve$duration$rect","$2$descendant$rect"],["dD","oB","l8","mz","l9"],79,0,0) -p(h=A.ac.prototype,"gaa3","aa4","ac.0?(D?)") -p(h,"gaa1","aa2","ac.0?(D?)") -q(A.m_.prototype,"ghA","jV",0) -p(h=A.zk.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -q(h,"ghA","jV",0) -p(h=A.zl.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.dP.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -l(h,"gfl",0,2,null,["$2"],["aH"],12,0,1) -p(h=A.z8.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.zh.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -q(A.z6.prototype,"gun","AF",0) -q(A.uC.prototype,"gtT","pi",0) -p(h=A.zi.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -q(h=A.ko.prototype,"ga5I","a5J",0) -q(h,"ga5K","a5L",0) -q(h,"ga5M","a5N",0) -q(h,"ga5G","a5H",0) -q(h=A.zn.prototype,"ga5O","a5P",0) -q(h,"ga5C","a5D",0) -q(h,"ga5A","a5B",0) -q(h,"ga5u","a5v",0) -q(h,"ga5w","a5x",0) -q(h,"ga5E","a5F",0) -q(h,"ga5y","a5z",0) -p(h=A.zo.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.zj.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -p(h=A.zb.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -l(A.cg.prototype,"gadi",0,1,null,["$3$crossAxisPosition$mainAxisPosition"],["NE"],306,0,0) -p(h=A.ru.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -k(h,"gwb","m4",12) -k(A.zg.prototype,"gwb","m4",12) -p(A.zq.prototype,"gadm","adn",311) -p(h=A.rv.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -k(h,"ga5h","J2",12) -l(h,"goA",0,0,null,["$4$curve$descendant$duration$rect","$0","$1$rect","$3$curve$duration$rect","$2$descendant$rect"],["dD","oB","l8","mz","l9"],79,0,0) -m(A,"aHb","aD5",504) -j(A,"aHc",0,null,["$2$priority$scheduler"],["aHx"],505,0) -p(h=A.dR.prototype,"ga00","a01",121) -q(h,"ga6K","a6L",0) -q(h,"gabU","Cb",0) -p(h,"ga1h","a1i",2) -q(h,"ga1O","a1P",0) -p(A.tA.prototype,"gAr","a89",2) -n(A.rK.prototype,"geE","m",0) -r(A,"aH0","azG",506) -r(A,"aHa","aDb",507) -q(h=A.rM.prototype,"gYt","Yu",321) -p(h,"ga2f","zg",322) -p(h,"ga2I","zh",84) -p(h=A.I1.prototype,"gacJ","acK",94) -p(h,"gad0","CB",325) -p(h,"gZS","ZT",326) -p(A.zu.prototype,"ga4H","zG",84) -p(h=A.cO.prototype,"ga_B","a_C",127) -p(h,"gJm","Jn",127) -p(A.LN.prototype,"ga3F","zi",85) -p(A.AZ.prototype,"gI4","a18",340) -p(h=A.BF.prototype,"gIa","a23",138) -p(h,"gYg","Yh",42) -p(h,"gYi","Yj",37) -p(h,"ga1Z","a2_",5) -p(h=A.DU.prototype,"ga4Z","a5_",514) -p(h,"ga5b","a5c",343) -p(A.B4.prototype,"gYn","Yo",344) -q(h=A.AW.prototype,"gacM","acN",0) -p(h,"ga2C","a2D",85) -q(h,"ga1j","a1k",0) -q(h=A.E0.prototype,"gacR","Cx",0) -q(h,"gad5","CC",0) -q(h,"gacU","CA",0) -p(h=A.Bl.prototype,"gHg","a_k",23) -p(h,"gHh","a_l",10) -q(h,"ga1y","a1z",0) -p(h,"gHf","a_j",30) -p(h,"ga1w","tJ",348) -p(A.Br.prototype,"gy4","Gh",3) -q(h=A.qk.prototype,"ga4Y","IZ",0) -q(h,"ga6x","a6y",0) -q(h,"ga8I","a8J",0) -p(h,"ga1l","a1m",113) -q(h,"ga4W","a4X",0) -p(h,"gH7","a_6",48) -p(h,"ga_7","a_8",48) -q(h,"gyP","Hc",0) -q(h,"gyT","a_I",0) -p(h,"gZm","Zn",68) -p(h,"ga4P","a4Q",68) -p(h,"ga4p","IK",68) -p(h,"ga_u","a_v",68) -p(h,"ga6n","Ju",352) -p(h,"ga6U","a6V",353) -p(h,"ga8G","a8H",354) -p(h,"ga04","a05",355) -p(h,"ga06","a07",356) -p(h,"ga3R","a3S",357) -p(h=A.Dz.prototype,"ga8n","a8o",367) -p(h,"ga67","a68",368) -q(h,"gzU","Jl",0) -p(A.DK.prototype,"gaft","kP",9) -n(A.cT.prototype,"geE","m",0) -n(h=A.wP.prototype,"geE","m",0) -p(h,"gHJ","a0q",24) -p(h,"gId","a2e",370) -q(h,"gYI","YJ",0) -q(A.u7.prototype,"gzf","a20",0) -r(A,"aiW","aEB",14) -m(A,"aiV","aAT",508) -r(A,"atv","aAS",14) -p(h=A.Ou.prototype,"ga8q","KD",14) -q(h,"ga8r","a8s",0) -p(h=A.rq.prototype,"ga0x","a0y",80) -p(h,"ga8M","a8N",396) -p(h=A.kO.prototype,"gZ4","Z5",22) -p(h,"ga1d","I5",3) -q(h,"gOB","af7",0) -p(h=A.wY.prototype,"ga1X","a1Y",399) -l(h,"ga_b",0,5,null,["$5"],["a_c"],400,0,0) -j(A,"aI0",3,null,["$3"],["iU"],509,0) -k(A.BO.prototype,"ga2c","a2d",137) -q(A.pQ.prototype,"ga1b","a1c",0) -q(A.uj.prototype,"gzj","a3J",0) -p(A.un.prototype,"gIE","a4j",9) -p(h=A.CQ.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -m(A,"aIm","aCf",510) -r(A,"amm","aER",60) -r(A,"atV","aES",60) -r(A,"Ty","aET",60) -p(A.uv.prototype,"gqY","m_",52) -p(A.Cr.prototype,"gqY","m_",52) -p(A.Cs.prototype,"gqY","m_",52) -p(A.Ct.prototype,"gqY","m_",52) -p(h=A.j3.prototype,"ga2M","a2N",80) -p(h,"ga2S","a2T",24) -p(h=A.uF.prototype,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -k(h,"gwb","m4",12) -p(A.BJ.prototype,"gzQ","zR",29) -n(h=A.BI.prototype,"geE","m",0) -p(h,"gyh","yi",3) -p(h,"ga87","a88",2) -p(A.Dt.prototype,"gzQ","zR",29) -p(h=A.Ds.prototype,"gyh","yi",3) -n(h,"geE","m",0) -p(A.GH.prototype,"ga4F","zF",84) -q(A.CZ.prototype,"gzZ","a6m",0) -n(A.dy.prototype,"geE","m",0) -p(A.jh.prototype,"ga8E","AG",421) -p(A.dC.prototype,"gIi","a3v",3) -p(h=A.hU.prototype,"gZ0","Z1",22) -p(h,"gZ2","Z3",22) -q(h=A.Ff.prototype,"gAp","Aq",0) -q(h,"gA4","A5",0) -q(h=A.GR.prototype,"gAp","Aq",0) -q(h,"gA4","A5",0) -n(A.oy.prototype,"geE","m",0) -r(A,"EJ","aHy",29) -q(h=A.ji.prototype,"gabr","abs",0) -n(h,"geE","m",0) -n(A.rE.prototype,"geE","m",0) -p(h=A.zM.prototype,"gI8","a1G",430) -p(h,"gJL","a6X",23) -p(h,"gJM","a6Y",10) -p(h,"gJK","a6W",30) -q(h,"gJI","JJ",0) -q(h,"ga_r","a_s",0) -q(h,"ga_p","a_q",0) -p(h,"ga63","a64",431) -p(h,"ga2Q","a2R",24) -p(h,"ga3_","a30",155) -n(A.rI.prototype,"geE","m",0) -p(h=A.je.prototype,"ga8S","a8T",3) -q(h,"gNx","vA",0) -p(h,"ga3H","a3I",25) -p(h,"ga6Z","a7_",155) -p(h,"ga31","a32",29) -k(A.Dc.prototype,"ga2E","a2F",122) -q(h=A.CW.prototype,"gtN","a3Q",0) -p(h,"gb9","b1",1) -p(h,"gbf","aU",1) -p(h,"gbn","aX",1) -p(h,"gbM","b0",1) -l(h,"goA",0,0,null,["$4$curve$descendant$duration$rect","$0","$1$rect","$3$curve$duration$rect","$2$descendant$rect"],["dD","oB","l8","mz","l9"],79,0,0) -m(A,"aML","asE",511) -p(A.ta.prototype,"gafV","P8",443) -q(h=A.LQ.prototype,"gL7","AL",0) -p(h,"ga35","a36",23) -p(h,"ga37","a38",10) -p(h,"ga3b","a3c",23) -p(h,"ga3d","a3e",10) -p(h=A.KL.prototype,"gZ7","Z8",22) -p(h,"gYU","YV",22) -q(A.Da.prototype,"gzk","zl",0) -p(h=A.Aw.prototype,"gaf5","af6",25) -q(h,"gaf1","af2",0) -p(h,"gaeW","aeX",95) -q(h,"gaeS","aeT",0) -p(h,"gaeU","aeV",25) -p(h,"gaex","aey",25) -p(h,"gaeB","aeC",23) -k(h,"gaeD","aeE",446) -p(h,"gaez","aeA",30) -p(h=A.DC.prototype,"ga8_","a80",25) -p(h,"ga81","a82",72) -q(h,"ga7Y","a7Z",0) -p(h,"ga1J","a1K",23) -p(h,"ga1L","a1M",10) -q(h,"ga1N","I9",0) -p(h,"ga1H","a1I",30) -p(h,"ga0t","a0u",63) -p(h,"ga0r","a0s",63) -p(h,"ga2n","a2o",76) -p(h,"ga2l","a2m",75) -p(h,"ga2j","a2k",95) -q(h,"ga_w","a_x",0) -q(A.jk.prototype,"gkh","ki",0) -q(A.cP.prototype,"gd9","dl",0) -q(A.B0.prototype,"gze","a1n",0) -l(A.JX.prototype,"gacH",0,3,null,["$3"],["vw"],449,0,0) -p(A.Hk.prototype,"gacP","Cw",85) -i(h=A.AH.prototype,"gOv","r1",464) -k(h,"gOz","Dr",81) -k(h,"gOA","r2",465) -s(A,"atQ","atP",0) -p(A.B3.prototype,"ga57","a58",15) -q(A.DT.prototype,"gaeO","kL",45) -r(A,"aIi","aBP",512) -j(A,"amo",1,null,["$2$wrapWidth","$1"],["ati",function(a){return A.ati(a,null)}],513,0) -s(A,"aIv","ast",0) -m(A,"EG","aA2",133) -m(A,"EH","aA3",133)})();(function inheritance(){var s=hunkHelpers.mixin,r=hunkHelpers.mixinHard,q=hunkHelpers.inherit,p=hunkHelpers.inheritMany -q(A.D,null) -p(A.D,[A.vc,A.Uu,A.cb,A.UE,A.pS,A.NX,A.QI,A.Wb,A.eX,A.VJ,A.c3,J.qT,A.a42,A.L3,A.Vo,A.dS,A.VF,A.HF,A.hV,A.p,A.tJ,A.Hr,A.oa,A.Y,A.afQ,A.kR,A.H8,A.a2L,A.L1,A.lZ,A.HL,A.le,A.vf,A.vR,A.jZ,A.HS,A.iX,A.eJ,A.a3S,A.a39,A.I4,A.a1i,A.a1j,A.ZD,A.W4,A.VH,A.n7,A.a4a,A.L2,A.a96,A.Ah,A.dm,A.vW,A.kz,A.G2,A.vX,A.vV,A.G_,A.VI,A.abU,A.mC,A.bA,A.Gi,A.Gh,A.VU,A.H2,A.YI,A.du,A.Hj,A.Yh,A.Kz,A.ox,A.QH,A.a5V,A.fr,A.Gs,A.tX,A.a74,A.Y5,A.bT,A.a8X,A.u2,A.d5,A.a94,A.a93,A.aO,A.aQ,A.eY,A.a47,A.W5,A.N6,A.Wj,A.tj,A.a3j,A.rh,A.oe,A.kl,A.a7Y,A.a3k,A.lQ,A.a4u,A.cM,A.af8,A.a5o,A.ahe,A.tk,A.a8Y,A.a2I,A.wz,A.KQ,A.zR,A.oD,A.mE,A.a3T,A.HE,A.zV,A.x_,A.a0X,A.I2,A.jU,A.a14,A.a2b,A.UZ,A.aas,A.a3A,A.GY,A.GX,A.a3x,A.a3C,A.a3E,A.Jx,A.a3Q,A.abd,A.Sm,A.kS,A.p6,A.uA,A.a3I,A.akU,A.Hz,A.Hy,A.akN,A.U5,A.fA,A.a70,A.KO,A.cE,A.Yz,A.a6Q,A.a6M,A.wc,A.C8,A.hc,A.a0E,A.a0G,A.a8H,A.a8L,A.aaD,A.JS,A.a91,A.FA,A.no,A.a3d,A.ti,A.Vr,A.Zj,A.Hs,A.a9M,A.ro,A.xv,A.a1l,A.a8z,A.dv,A.Kw,A.a9N,A.qo,A.wA,A.wC,A.wB,A.Ar,A.a9i,A.LM,A.lm,A.c8,A.kF,A.O4,A.UY,A.Yk,A.Ao,A.Yd,A.Fb,A.tv,A.ql,A.a0v,A.a9r,A.a9j,A.a_Z,A.Y3,A.XF,A.bJ,A.aax,A.Z8,A.Mi,A.akx,J.fl,A.FE,A.aq,A.a72,A.cL,A.HU,A.qq,A.GU,A.Hq,A.tK,A.wH,A.M5,A.tm,A.r6,A.q9,A.a0D,A.aad,A.II,A.wF,A.Dn,A.afO,A.a1n,A.xx,A.nT,A.uq,A.B_,A.tg,A.Rm,A.abP,A.i6,A.Oh,A.DI,A.DF,A.ME,A.uk,A.pr,A.F9,A.tU,A.jA,A.a4,A.MF,A.d_,A.ky,A.ie,A.uL,A.MG,A.jy,A.Pv,A.NB,A.acq,A.Rk,A.By,A.ue,A.aho,A.BK,A.Eo,A.pe,A.adX,A.kP,A.xf,A.C7,A.nZ,A.O,A.OW,A.DN,A.Bo,A.NN,A.C9,A.cF,A.Sg,A.Rg,A.Rf,A.jD,A.na,A.FG,A.adG,A.adD,A.ahb,A.aha,A.bh,A.df,A.aP,A.IR,A.Ab,A.NZ,A.h0,A.Fj,A.aw,A.aG,A.Rp,A.Ad,A.a5T,A.by,A.DR,A.aaj,A.hr,A.H4,A.oC,A.LV,A.Wg,A.akk,A.ug,A.cB,A.yf,A.Dd,A.Rt,A.wJ,A.Gp,A.ac9,A.ag0,A.Si,A.agr,A.aaF,A.k2,A.IG,A.adA,A.fx,A.GV,A.abQ,A.Dp,A.kL,A.Vy,A.IM,A.w,A.bD,A.i2,A.ad5,A.a3F,A.h7,A.E,A.xO,A.m8,A.Jv,A.Mf,A.lq,A.lF,A.jb,A.yI,A.cr,A.ci,A.a71,A.h_,A.Ap,A.LL,A.ih,A.b9,A.cx,A.lR,A.EX,A.Vg,A.Hx,A.Lt,A.hB,A.Fc,A.bc,A.HC,A.YD,A.rx,A.V_,A.e_,A.WP,A.xE,A.dg,A.abf,A.NE,A.qD,A.HB,A.afM,A.IQ,A.a2W,A.cN,A.aa7,A.YG,A.he,A.a5t,A.a5u,A.NC,A.Ri,A.wg,A.a1u,A.at,A.a7b,A.vp,A.yx,A.vn,A.vm,A.mR,A.l9,A.an,A.kD,A.OC,A.a9O,A.Or,A.f6,A.GF,A.Bi,A.Nx,A.Ft,A.No,A.RI,A.ye,A.Nr,A.Np,A.em,A.O8,A.Fk,A.jN,A.aeZ,A.ai,A.iM,A.f5,A.aly,A.h9,A.H,A.aaC,A.z1,A.id,A.d0,A.cV,A.qE,A.ud,A.ZS,A.afP,A.qF,A.jR,A.fZ,A.f1,A.hF,A.PJ,A.ex,A.Ml,A.N7,A.Ne,A.Nc,A.Na,A.Nb,A.N9,A.Nd,A.Ng,A.Nf,A.N8,A.nz,A.wd,A.fs,A.uQ,A.hK,A.r5,A.xJ,A.r4,A.kW,A.alu,A.a3R,A.I8,A.Ni,A.uO,A.a3M,A.a3P,A.hf,A.to,A.mm,A.N5,A.ZV,A.jv,A.tI,A.CD,A.jw,A.KG,A.a7c,A.MC,A.kN,A.OX,A.MO,A.MP,A.MR,A.MT,A.MV,A.BZ,A.OO,A.ON,A.P9,A.MW,A.N_,A.N0,A.C3,A.N3,A.N4,A.Nt,A.C2,A.bS,A.ND,A.NH,A.NO,A.aU,A.NW,A.O_,A.ace,A.O6,A.Z1,A.YM,A.YL,A.Z0,A.k_,A.qS,A.bG,A.Hg,A.Nw,A.aft,A.lx,A.Ox,A.OP,A.GG,A.ee,A.fh,A.xV,A.Pe,A.C1,A.Pf,A.Pr,A.xU,A.kg,A.Pt,A.PX,A.PZ,A.Q5,A.C0,A.a61,A.KA,A.W9,A.a2j,A.zA,A.QO,A.C4,A.OB,A.R3,A.a8o,A.a8p,A.a8q,A.UO,A.Rb,A.Ru,A.C_,A.Rz,A.BY,A.RC,A.Aw,A.RG,A.RJ,A.RO,A.uh,A.O1,A.Sl,A.RS,A.RT,A.AG,A.RV,A.Sd,A.mQ,A.LE,A.yu,A.vz,A.ds,A.Hd,A.VM,A.GD,A.cd,A.a07,A.MY,A.Pw,A.x6,A.hP,A.iC,A.Os,A.hO,A.h3,A.Ot,A.qM,A.EZ,A.k0,A.Rr,A.j9,A.abN,A.LO,A.RH,A.a8E,A.ac_,A.af4,A.agZ,A.AI,A.rw,A.cw,A.BW,A.cD,A.Wu,A.ty,A.adU,A.vs,A.F3,A.I3,A.r2,A.Pa,A.SL,A.a6P,A.Js,A.aD,A.eG,A.ac,A.m_,A.ag6,A.ag7,A.oB,A.dP,A.z6,A.R7,A.a5d,A.iZ,A.a5j,A.a4F,A.Me,A.m5,A.ua,A.dR,A.tA,A.oU,A.AA,A.a6D,A.bQ,A.QQ,A.kJ,A.kU,A.a6E,A.QT,A.a6N,A.F7,A.vw,A.UQ,A.rM,A.n9,A.r0,A.OH,A.a_e,A.xn,A.I1,A.OI,A.ka,A.yH,A.y1,A.a8U,A.a0F,A.a0H,A.a8I,A.a8M,A.a2c,A.y2,A.lb,A.lL,A.Q6,A.Q7,A.a4f,A.cs,A.cO,A.UB,A.ml,A.mn,A.oQ,A.Pc,A.agv,A.As,A.a9s,A.dB,A.a9P,A.e6,A.a9t,A.LN,A.Mn,A.Mm,A.uy,A.IF,A.iD,A.ho,A.AW,A.Fo,A.GP,A.LY,A.Dx,A.DK,A.MJ,A.Zc,A.Oc,A.Oa,A.u8,A.Og,A.u0,A.NF,A.Xc,A.SS,A.SR,A.Ou,A.Va,A.yg,A.af_,A.qP,A.nB,A.a6O,A.ad9,A.kO,A.o8,A.h2,A.FC,A.fz,A.uz,A.GK,A.xY,A.i5,A.a5I,A.M2,A.mB,A.Qz,A.Do,A.IU,A.O5,A.zJ,A.a1Y,A.a3B,A.jh,A.a5H,A.Id,A.KF,A.a6k,A.ahn,A.i7,A.fg,A.Mg,A.a6s,A.R_,A.Sq,A.a8r,A.mj,A.oK,A.LQ,A.KL,A.jk,A.cP,A.Hk,A.xZ,A.a1s,A.a1t,A.a1z,A.a1A,A.a3z,A.Wa,A.a8W,A.a3g,A.Jf,A.Q2,A.rm,A.xb,A.a46,A.a45,A.JO,A.a38,A.af9,A.JM,A.JK,A.yU,A.rN,A.a77,A.a8x,A.Lk,A.A6,A.a_p,A.ew,A.iq,A.ia,A.Lm,A.a8V,A.hM,A.AH,A.jY,A.i1,A.kr,A.ju,A.eS,A.bb,A.fH,A.ik]) -p(A.cb,[A.Gj,A.Gk,A.UA,A.Uw,A.UF,A.a43,A.aji,A.ajk,A.a_T,A.a_U,A.a_V,A.a_S,A.Zl,A.aie,A.aiT,A.aiU,A.a2N,A.a2M,A.a2P,A.a2O,A.a8j,A.aiM,A.ahR,A.a0z,A.a0y,A.ahW,A.VY,A.VZ,A.VW,A.VX,A.VV,A.Z9,A.Za,A.Zb,A.ajp,A.ajo,A.a2J,A.a_Q,A.a_R,A.a_O,A.a_P,A.aj1,A.ahw,A.a0Y,A.a0Z,A.a1h,A.ahZ,A.ai_,A.ai0,A.ai1,A.ai2,A.ai3,A.ai4,A.ai5,A.a10,A.a11,A.a12,A.a13,A.a1a,A.a1e,A.a2l,A.a7f,A.a7g,A.a_g,A.Yw,A.Yq,A.Yr,A.Ys,A.Yt,A.Yu,A.Yv,A.Ym,A.Yy,A.abe,A.ahf,A.afc,A.afe,A.aff,A.afg,A.afh,A.afi,A.agU,A.agV,A.agW,A.agX,A.agY,A.aeS,A.aeT,A.aeU,A.aeV,A.aeW,A.a0p,A.a0q,A.a6z,A.a6A,A.aif,A.aig,A.aih,A.aii,A.aij,A.aik,A.ail,A.aim,A.WJ,A.a26,A.a9h,A.a9m,A.a9n,A.a9o,A.Zn,A.Zo,A.afk,A.Yg,A.Ye,A.Yf,A.Wy,A.Wz,A.WA,A.WB,A.a04,A.a05,A.a02,A.Uh,A.YX,A.YY,A.a0_,A.aiz,A.Vu,A.W8,A.ZR,A.xc,A.LD,A.a0N,A.a0M,A.aiY,A.aj_,A.ab4,A.ab3,A.ahA,A.ZP,A.ZM,A.ZN,A.ZI,A.acV,A.ad2,A.a8S,A.a8R,A.agp,A.afW,A.ad7,A.adW,A.a1I,A.a8B,A.a8D,A.adC,A.ahN,A.ahO,A.Y6,A.YF,A.a_X,A.acA,A.acB,A.a2H,A.a2G,A.agd,A.age,A.agu,A.ahH,A.YR,A.YS,A.YT,A.a0O,A.ahK,A.ahL,A.aiv,A.aiw,A.aix,A.ajl,A.ajm,A.a0W,A.Vi,A.Vk,A.Vn,A.V2,A.V3,A.V4,A.V5,A.V6,A.V7,A.WY,A.X0,A.X1,A.X4,A.WU,A.X6,A.WS,A.WT,A.X8,A.X9,A.Xa,A.Zt,A.ZC,A.Zz,A.ZB,A.Zw,A.Zx,A.Zv,A.Zy,A.a_j,A.afN,A.WF,A.aiN,A.aiD,A.adg,A.ajr,A.acv,A.aeb,A.aec,A.a1v,A.a1w,A.a1y,A.adJ,A.ac0,A.ac3,A.ac4,A.ac6,A.Wq,A.a2D,A.ac8,A.Z5,A.Z6,A.Z7,A.aiI,A.a8F,A.a95,A.ad3,A.a3K,A.a3L,A.aej,A.a1L,A.alo,A.abJ,A.abK,A.abL,A.abo,A.abp,A.abq,A.abB,A.abC,A.abD,A.abE,A.abF,A.abG,A.abH,A.abI,A.abr,A.abz,A.abm,A.abA,A.abl,A.abs,A.abt,A.abu,A.abv,A.abw,A.abx,A.aby,A.WN,A.adt,A.afv,A.aeA,A.ael,A.aem,A.aen,A.aeo,A.a1P,A.ahq,A.ahr,A.ahs,A.aht,A.a37,A.a4C,A.a5Z,A.a65,A.aet,A.aeq,A.aes,A.aer,A.aep,A.agj,A.afF,A.afD,A.afC,A.agk,A.aeE,A.aeB,A.aeF,A.aeC,A.aeG,A.agE,A.agF,A.aaW,A.a9S,A.aa0,A.aa1,A.aa2,A.aa4,A.aa5,A.abX,A.abY,A.VN,A.VO,A.VP,A.abM,A.a0h,A.a0c,A.UC,A.a0j,A.a0u,A.a0t,A.a9Q,A.a5s,A.UW,A.a4L,A.a4O,A.a4N,A.a2f,A.a2e,A.a54,A.a55,A.a53,A.a58,A.a59,A.a5e,A.a5g,A.a5i,A.a5h,A.a5n,A.a5l,A.a5m,A.a5k,A.a5r,A.a5q,A.a68,A.a67,A.a9U,A.a6T,A.a6R,A.agc,A.agb,A.ag9,A.aga,A.ahE,A.a6W,A.a6V,A.a6F,A.a6I,A.a6G,A.a6J,A.a6H,A.a6K,A.a6L,A.Vf,A.acb,A.UP,A.a20,A.a4g,A.a5z,A.a5A,A.a5y,A.YU,A.a9l,A.a9u,A.a9I,A.a9H,A.a9J,A.ahY,A.Ua,A.Ue,A.Ub,A.Ud,A.acQ,A.acN,A.acL,A.acM,A.acP,A.ahh,A.ab7,A.abc,A.a5C,A.ahl,A.ahj,A.Xs,A.Xt,A.XY,A.Y0,A.XL,A.XZ,A.XR,A.XS,A.XT,A.XU,A.XQ,A.XP,A.XG,A.XX,A.acx,A.ag4,A.ah1,A.aiq,A.Ze,A.ahT,A.Zh,A.Zg,A.afr,A.Xf,A.Xg,A.Xi,A.Xj,A.Xd,A.Xl,A.Xm,A.Xo,A.Xp,A.afo,A.afp,A.afm,A.a4t,A.adq,A.Ya,A.Yb,A.Y7,A.Y9,A.Y8,A.a3f,A.a4Z,A.a2k,A.a__,A.a_2,A.a_4,A.a_6,A.a_8,A.a_1,A.acf,A.acg,A.ach,A.ack,A.acl,A.acm,A.a_o,A.a_m,A.a_l,A.a06,A.a0o,A.a0n,A.a0m,A.aaQ,A.aaP,A.aaO,A.aaR,A.aaS,A.aaT,A.aaU,A.a0s,A.ai8,A.ai9,A.aia,A.ae_,A.ae0,A.a1U,A.a5K,A.a5J,A.a5N,A.a5P,A.a5L,A.a2C,A.afX,A.ag_,A.a2A,A.a2u,A.a2w,A.a2y,A.a2Y,A.afJ,A.afH,A.afI,A.afG,A.a35,A.af6,A.afS,A.aaa,A.aa9,A.aeQ,A.aeN,A.a6f,A.a6g,A.a6h,A.a6m,A.a6n,A.a6q,A.a6x,A.a6u,A.a6w,A.a6B,A.a4l,A.a4h,A.a4i,A.a4j,A.a4n,A.a4p,A.a4q,A.a8v,A.WC,A.a6C,A.agH,A.agJ,A.agL,A.agN,A.a4E,A.Vt,A.a1W,A.aiQ,A.a3V,A.Wc,A.Wd,A.ais,A.a76,A.a_r,A.a_q,A.a_s,A.a_u,A.a_w,A.a_t,A.a_K,A.a_Y,A.a0R,A.a0S,A.a0T,A.a0U,A.a2q,A.a2r,A.a2s,A.ab1,A.ab0,A.ab_,A.aaM,A.aaK,A.aaJ,A.ae4,A.ae5,A.ae2,A.aeh,A.aeg,A.af0,A.ah9]) -p(A.Gj,[A.Uz,A.UG,A.a44,A.ajh,A.ajj,A.Zk,A.Zm,A.aib,A.YN,A.a8l,A.a8m,A.a8k,A.VG,A.VC,A.VD,A.ZE,A.ZF,A.VK,A.a3o,A.a9_,A.a90,A.aj2,A.aj4,A.ahx,A.a1_,A.a1g,A.a1b,A.a1c,A.a1d,A.a16,A.a17,A.a18,A.a_h,A.Yx,A.Yp,A.Yn,A.aj6,A.aj7,A.a3D,A.afd,A.a3J,A.U6,A.U7,A.a6y,A.YA,A.YC,A.YB,A.a27,A.a9p,A.afj,A.a03,A.YW,A.a9k,A.Yi,A.Yj,A.Vw,A.ajf,A.a4_,A.ab5,A.ab6,A.agP,A.agO,A.ZK,A.ZJ,A.ZO,A.acR,A.acZ,A.acX,A.acT,A.acY,A.acS,A.ad1,A.ad0,A.ad_,A.a8P,A.a8T,A.a8Q,A.ago,A.agn,A.abk,A.abj,A.afa,A.ahD,A.ain,A.afV,A.aaw,A.aav,A.YE,A.Vz,A.VA,A.ajw,A.ajx,A.a0V,A.Vm,A.V8,A.X_,A.WZ,A.X3,A.X2,A.WW,A.WV,A.X5,A.WQ,A.ZA,A.WG,A.ajy,A.adk,A.adj,A.adl,A.adi,A.adh,A.acw,A.acu,A.ae7,A.ae6,A.aea,A.ae9,A.ae8,A.aed,A.a1x,A.adI,A.adQ,A.adP,A.adK,A.adN,A.adO,A.Wn,A.Wo,A.ac7,A.aio,A.ahC,A.Z4,A.UR,A.Vx,A.ZU,A.ZT,A.ZX,A.ZY,A.Zr,A.Zp,A.Zq,A.a1D,A.a1C,A.a1B,A.Xx,A.XB,A.XC,A.Xy,A.Xz,A.XA,A.a3O,A.a3X,A.a9c,A.a9d,A.a9e,A.a9f,A.ZW,A.Ut,A.aaX,A.a1K,A.UM,A.abh,A.abg,A.abn,A.ahV,A.ahU,A.adu,A.adr,A.ads,A.ad8,A.ady,A.adx,A.a1N,A.a1O,A.a4z,A.a4x,A.a4y,A.a4A,A.a4B,A.a6_,A.a60,A.a5W,A.a5X,A.a5Y,A.acD,A.a63,A.a62,A.aez,A.aey,A.aex,A.aev,A.aew,A.aeu,A.agh,A.agi,A.agf,A.agg,A.afE,A.agl,A.aeD,A.agw,A.agy,A.agx,A.agA,A.agB,A.agz,A.a9T,A.a9Y,A.a9Z,A.a9W,A.a9X,A.aa3,A.a09,A.a08,A.adY,A.a0e,A.a0f,A.a2m,A.a4H,A.a4J,A.a4I,A.a4K,A.a2i,A.a2h,A.a2g,A.a3c,A.a3b,A.a3a,A.a52,A.a56,A.a57,A.a5f,A.a6a,A.a6b,A.a6c,A.a73,A.a4e,A.a5w,A.a5x,A.a5v,A.a98,A.a9K,A.aaH,A.acO,A.acJ,A.acK,A.acI,A.ahi,A.abb,A.ab9,A.aba,A.ab8,A.ahk,A.aaB,A.a50,A.a51,A.acs,A.act,A.XH,A.XI,A.XK,A.Y_,A.Y1,A.Y2,A.XM,A.XN,A.XO,A.XV,A.aip,A.acE,A.acF,A.acG,A.acH,A.Vb,A.W2,A.W3,A.ZZ,A.a_0,A.a_3,A.a_5,A.a_7,A.a_9,A.acj,A.aci,A.add,A.adc,A.adb,A.adn,A.ado,A.adp,A.Ui,A.adR,A.adS,A.adT,A.adZ,A.aeH,A.aeJ,A.aeI,A.a28,A.a5O,A.a5Q,A.a5M,A.afZ,A.afY,A.a2v,A.a2x,A.a2z,A.a2t,A.af5,A.a31,A.a30,A.a32,A.a3_,A.a2Z,A.ad4,A.afR,A.a5B,A.aab,A.aac,A.aeL,A.a2a,A.a29,A.a6e,A.a6l,A.a6t,A.a6v,A.a4o,A.a4k,A.a4m,A.a79,A.a8t,A.a8u,A.a8s,A.a8w,A.agG,A.agI,A.agK,A.agM,A.aaV,A.a1V,A.a_J,A.a_x,A.a_E,A.a_F,A.a_G,A.a_H,A.a_C,A.a_D,A.a_y,A.a_z,A.a_A,A.a_B,A.a_I,A.ade,A.aaY,A.aaZ,A.aaN,A.aaL,A.aaI,A.ae3,A.ae1,A.aef,A.af1,A.af2,A.af3,A.ah6,A.ah4,A.ah5,A.ah8,A.ajb,A.aja]) -p(A.Gk,[A.Uy,A.Ux,A.Uv,A.a_W,A.aiL,A.a0A,A.a0B,A.a92,A.aiE,A.a3n,A.aj3,A.a19,A.a15,A.Yo,A.a8K,A.ajn,A.a00,A.abO,A.Vv,A.W7,A.a3Y,A.a0L,A.aiZ,A.ahB,A.ait,A.ZQ,A.ZL,A.ZH,A.acW,A.afU,A.ad6,A.a1o,A.a1H,A.a8C,A.adH,A.adE,A.a2E,A.aal,A.aam,A.aan,A.ah3,A.ah2,A.ahM,A.a21,A.a22,A.a23,A.a24,A.a2p,A.a5R,A.a5S,A.a8N,A.a8O,A.ahd,A.ags,A.agt,A.aaG,A.aiF,A.UJ,A.UK,A.Vh,A.Vj,A.Vl,A.V1,A.V0,A.WX,A.X7,A.Xb,A.Zs,A.Zu,A.a_i,A.a_k,A.air,A.aa8,A.WE,A.WH,A.aiO,A.aiP,A.aiC,A.adm,A.aee,A.ajd,A.adL,A.adM,A.Wl,A.a3N,A.a1J,A.aek,A.abR,A.afy,A.afz,A.afx,A.afw,A.afu,A.ahp,A.abS,A.afs,A.a4D,A.a64,A.ag2,A.agm,A.agC,A.agD,A.ahv,A.a9R,A.abW,A.a0a,A.a0g,A.a0d,A.UD,A.a2n,A.a4G,A.a4P,A.a4Q,A.a4M,A.a4U,A.a4S,A.a4T,A.a4R,A.a2d,A.a3t,A.a3s,A.a3u,A.a3v,A.a5a,A.a5b,A.a5p,A.a4W,A.a4V,A.a5c,A.a4X,A.a69,A.ag8,A.a6X,A.a6Y,A.acc,A.a8J,A.XJ,A.XW,A.Xk,A.Xe,A.Xh,A.Xn,A.Xq,A.afq,A.afn,A.a4r,A.a4s,A.a5_,A.a_n,A.ada,A.adf,A.aeY,A.afK,A.agq,A.af7,A.ahu,A.aeP,A.aeO,A.aeM,A.a6p,A.ag5,A.a7a,A.a7e,A.afB,A.afA,A.a1X,A.a3W,A.afl,A.a_v,A.ab2,A.ah7]) -p(A.NX,[A.iF,A.hX,A.lM,A.pk,A.lS,A.lj,A.tP,A.hj,A.EY,A.lr,A.qn,A.be,A.nY,A.tT,A.cH,A.oP,A.tE,A.vY,A.yy,A.r_,A.Af,A.Lw,A.yv,A.mW,A.n8,A.Fn,A.nm,A.x4,A.mT,A.ja,A.i0,A.rj,A.Jt,A.jp,A.tt,A.LG,A.At,A.kA,A.tr,A.vH,A.Fv,A.AB,A.vJ,A.ll,A.nR,A.ou,A.xA,A.qX,A.eW,A.p5,A.vl,A.DH,A.qh,A.iN,A.dn,A.wU,A.mw,A.u3,A.wr,A.qG,A.LU,A.p8,A.Fp,A.pV,A.Fx,A.u6,A.pf,A.qC,A.dF,A.k9,A.cp,A.Mo,A.kQ,A.JV,A.eU,A.R4,A.pn,A.KT,A.i8,A.Rv,A.lI,A.AL,A.KD,A.rt,A.vy,A.AU,A.mV,A.vA,A.vI,A.Fs,A.nL,A.oR,A.Ay,A.te,A.ph,A.wK,A.xL,A.xK,A.li,A.qI,A.wb,A.wV,A.Aa,A.vM,A.rC,A.m6,A.GA,A.xm,A.lD,A.f8,A.Aj,A.xX,A.A3,A.A4,A.et,A.LF,A.qB,A.fC,A.fp,A.u5,A.k3,A.AQ,A.jV,A.Hl,A.oX,A.Rh,A.pa,A.nE,A.yn,A.IC,A.uP,A.ov,A.ez,A.uG,A.pb,A.pq,A.vd,A.rD,A.zK,A.zG,A.rH,A.tx,A.AE,A.e3,A.lX,A.nn,A.JL,A.JJ,A.rn]) -q(A.Vs,A.QI) -q(A.JU,A.eX) -p(A.c3,[A.FI,A.G6,A.G3,A.G4,A.Ga,A.G8,A.G5,A.G9,A.FL,A.FM,A.FK,A.FJ,A.FQ,A.FR,A.FW,A.FV,A.FO,A.FN,A.FT,A.FX,A.FP,A.FS,A.FU,A.G7]) -p(J.qT,[J.i,J.xh,J.xi,J.o,J.lA,J.k1,A.o6,A.dj]) -p(J.i,[J.M,A.a2,A.U8,A.mX,A.ah,A.fT,A.FB,A.w4,A.We,A.c4,A.jP,A.Nk,A.fE,A.hC,A.Ws,A.Xv,A.nh,A.NJ,A.wo,A.NL,A.Xw,A.hG,A.O2,A.qx,A.ny,A.hJ,A.a_L,A.Oo,A.x7,A.a1r,A.a1T,A.P2,A.P3,A.hT,A.P4,A.kc,A.y4,A.a2B,A.Pg,A.a2X,A.j8,A.a3m,A.i_,A.Pz,A.QF,A.ib,A.Rc,A.ic,A.a8A,A.Rj,A.RK,A.a9V,A.ij,A.RW,A.aa6,A.aao,A.Ss,A.SC,A.SM,A.T_,A.T1,A.a0r,A.xo,A.a2R,A.k6,A.OL,A.kf,A.Pn,A.a3H,A.Rn,A.kC,A.S0,A.UI,A.MI,A.Uf]) -p(J.M,[A.a_c,A.iH,A.Vp,A.Vq,A.W1,A.a8i,A.a83,A.a7D,A.a7B,A.a7A,A.a7C,A.rU,A.a7i,A.a7h,A.a87,A.t4,A.a84,A.t1,A.a88,A.t5,A.a7Z,A.rY,A.a8_,A.rZ,A.a8g,A.a8f,A.a7X,A.a7W,A.a7o,A.rS,A.a7v,A.rT,A.a7T,A.a7S,A.a7m,A.rR,A.a81,A.t_,A.a7M,A.rV,A.a7l,A.rQ,A.a82,A.t0,A.a8b,A.t6,A.a7x,A.a7w,A.a7K,A.a7J,A.a7k,A.a7j,A.a7r,A.a7q,A.ma,A.mc,A.a80,A.jm,A.a7I,A.me,A.FY,A.md,A.a7p,A.mb,A.a7F,A.a7E,A.a7R,A.aeX,A.a7y,A.mf,A.a7t,A.a7s,A.a7U,A.a7n,A.mg,A.a7O,A.a7N,A.a7P,A.KZ,A.oI,A.a86,A.t3,A.a85,A.t2,A.a7V,A.rX,A.L0,A.L_,A.KY,A.oH,A.zW,A.a8d,A.kt,A.KX,A.a7H,A.rW,A.a89,A.a8a,A.a8h,A.a8c,A.a7z,A.aag,A.a8e,A.jl,A.a0J,A.a7L,A.a7u,A.a7G,A.a7Q,A.a0K,A.Z2,A.nN,A.nq,A.ow,A.np,A.hg,A.nV,A.a0P,A.qK,A.a0b,A.qf,A.Ww,A.aaz,A.a0l,A.a0k,J.Ju,J.jt,J.iY,A.a0Q]) -p(A.FY,[A.abT,A.abV]) -q(A.aaf,A.KX) -p(A.dS,[A.fu,A.t7,A.vT]) -p(A.fu,[A.xM,A.FH,A.G0,A.q1,A.q2,A.vU,A.q3]) -p(A.VF,[A.VB,A.G1,A.vS]) -p(A.p,[A.y5,A.kK,A.V,A.d3,A.au,A.hH,A.oO,A.ku,A.zZ,A.nx,A.fI,A.Bf,A.xd,A.Rl,A.xy,A.wp,A.e9,A.aM,A.wX]) -p(A.eJ,[A.qa,A.Jr]) -p(A.qa,[A.Kr,A.Gd,A.Gg,A.Gf,A.IP,A.AN,A.Jp]) -q(A.IN,A.AN) -q(A.FZ,A.q3) -p(A.bA,[A.Fz,A.j_,A.ms,A.HW,A.M4,A.Kx,A.NY,A.xk,A.mU,A.IH,A.fQ,A.ke,A.M6,A.tG,A.kx,A.Go,A.Gy,A.O9]) -p(A.Yh,[A.jJ,A.NI]) -p(A.d5,[A.dw,A.Jl]) -p(A.dw,[A.Py,A.Px,A.CC,A.yz,A.yB,A.yC,A.yE,A.yF]) -q(A.yA,A.Py) -q(A.Jj,A.Px) -q(A.yD,A.CC) -q(A.Xu,A.NI) -q(A.Jm,A.Jl) -p(A.cM,[A.wt,A.yt,A.J8,A.Jc,A.Ja,A.J9,A.Jb]) -p(A.wt,[A.IZ,A.IY,A.IX,A.J2,A.J6,A.J5,A.J0,A.J_,A.J4,A.J7,A.J1,A.J3]) -q(A.a_b,A.wz) -q(A.HD,A.HE) -p(A.UZ,[A.y3,A.zU]) -p(A.aas,[A.a_f,A.Wr]) -q(A.V9,A.a3A) -q(A.Yl,A.a3x) -p(A.abd,[A.SP,A.agT,A.SK]) -q(A.afb,A.SP) -q(A.aeR,A.SK) -p(A.fA,[A.q0,A.qL,A.qO,A.r1,A.r3,A.rG,A.tp,A.tw]) -p(A.a6M,[A.WI,A.a25]) -p(A.wc,[A.a7_,A.HA,A.a5U]) -q(A.xz,A.C8) -p(A.xz,[A.jG,A.tH,A.N2,A.ub,A.dE,A.Hb]) -q(A.OA,A.jG) -q(A.M3,A.OA) -q(A.ri,A.a3d) -p(A.ti,[A.FF,A.Ks]) -q(A.PW,A.Hs) -p(A.ro,[A.of,A.fd]) -p(A.Yk,[A.a2F,A.a9F,A.a2Q,A.Wv,A.a3q,A.Yc,A.aap,A.a2o]) -p(A.HA,[A.a01,A.Ug,A.YV]) -p(A.a9r,[A.a9z,A.a9G,A.a9B,A.a9E,A.a9A,A.a9D,A.a9q,A.a9w,A.a9C,A.a9y,A.a9x,A.a9v]) -q(A.ns,A.Z8) -q(A.KV,A.ns) -q(A.GW,A.KV) -q(A.GZ,A.GW) -q(J.a0I,J.o) -p(J.lA,[J.qV,J.xj]) -p(A.kK,[A.n3,A.E5]) -q(A.Bv,A.n3) -q(A.Ba,A.E5) -q(A.cu,A.Ba) -q(A.xN,A.aq) -p(A.xN,[A.n5,A.dh,A.pc,A.OD,A.MH]) -q(A.fn,A.tH) -p(A.V,[A.bl,A.jS,A.b3,A.pd,A.Cc,A.kT,A.pp,A.Di]) -p(A.bl,[A.fF,A.az,A.ch,A.xB,A.OE]) -q(A.nj,A.d3) -p(A.HU,[A.eq,A.p2,A.LC,A.L4,A.L5]) -q(A.ww,A.oO) -q(A.qm,A.ku) -q(A.DO,A.r6) -q(A.kG,A.DO) -q(A.nc,A.kG) -p(A.q9,[A.bd,A.bI]) -q(A.nQ,A.xc) -q(A.yh,A.ms) -p(A.LD,[A.Lr,A.pW]) -p(A.xd,[A.Mq,A.Dw]) -p(A.dj,[A.y6,A.r9]) -p(A.r9,[A.Cn,A.Cp]) -q(A.Co,A.Cn) -q(A.lN,A.Co) -q(A.Cq,A.Cp) -q(A.fw,A.Cq) -p(A.lN,[A.y7,A.Iy]) -p(A.fw,[A.Iz,A.y8,A.IA,A.IB,A.y9,A.ya,A.o7]) -q(A.DJ,A.NY) -p(A.tU,[A.aI,A.Dv]) -q(A.mt,A.uL) -p(A.d_,[A.uM,A.B8,A.mv]) -p(A.uM,[A.jz,A.BH]) -p(A.jy,[A.tW,A.uJ]) -p(A.Pv,[A.BX,A.Dr]) -p(A.NB,[A.u_,A.Bk]) -p(A.ie,[A.uN,A.jO]) -q(A.Dq,A.uN) -q(A.afT,A.aho) -q(A.BN,A.pc) -p(A.dh,[A.C6,A.uo]) -q(A.pm,A.Eo) -p(A.pm,[A.mx,A.hq,A.Es]) -p(A.Bo,[A.Bn,A.Bp]) -q(A.dU,A.Es) -p(A.Rg,[A.cl,A.ef]) -p(A.Rf,[A.Dj,A.Dk]) -q(A.A7,A.Dj) -p(A.jD,[A.d9,A.Dm,A.po]) -q(A.Dl,A.Dk) -q(A.td,A.Dl) -p(A.na,[A.Fg,A.nk,A.HX]) -p(A.jO,[A.Fh,A.I_,A.HZ,A.Mc,A.AT]) -q(A.Vc,A.FG) -q(A.Vd,A.Vc) -q(A.MX,A.Vd) -q(A.HY,A.xk) -q(A.OF,A.adG) -q(A.SF,A.OF) -q(A.adF,A.SF) -q(A.Mb,A.nk) -p(A.fQ,[A.rp,A.HN]) -q(A.Nu,A.DR) -p(A.a2,[A.a6,A.UX,A.YQ,A.x0,A.a1S,A.Ik,A.y_,A.y0,A.a2K,A.IL,A.Jg,A.a6d,A.jx,A.i9,A.Dg,A.ii,A.fG,A.DD,A.aaA,A.p3,A.Wt,A.UL,A.pT]) -p(A.a6,[A.am,A.iI,A.iO,A.tM]) -p(A.am,[A.ad,A.aH]) -p(A.ad,[A.F0,A.F6,A.pU,A.mY,A.Fw,A.n2,A.wj,A.GT,A.H9,A.jW,A.HH,A.nK,A.nP,A.xr,A.xw,A.Ig,A.lK,A.IK,A.IS,A.yw,A.Jd,A.zD,A.KK,A.Le,A.Ag,A.Am,A.LA,A.LB,A.tq,A.ts]) -p(A.ah,[A.Fl,A.oY,A.dK,A.r8,A.Im,A.Io,A.fy,A.Lp,A.Md]) -p(A.oY,[A.Gn,A.k4,A.eK,A.LK,A.mr]) -q(A.qb,A.c4) -q(A.Wf,A.jP) -q(A.qc,A.Nk) -q(A.qd,A.fE) -p(A.hC,[A.Wh,A.Wi]) -q(A.NK,A.NJ) -q(A.wn,A.NK) -q(A.NM,A.NL) -q(A.GQ,A.NM) -p(A.dK,[A.H6,A.JI]) -p(A.w4,[A.YO,A.a3h]) -q(A.fq,A.mX) -q(A.O3,A.O2) -q(A.qw,A.O3) -q(A.Op,A.Oo) -q(A.nF,A.Op) -q(A.wZ,A.iO) -q(A.lt,A.x0) -q(A.In,A.P2) -q(A.Ip,A.P3) -q(A.P5,A.P4) -q(A.Iq,A.P5) -q(A.Ph,A.Pg) -q(A.ra,A.Ph) -q(A.PA,A.Pz) -q(A.Jw,A.PA) -p(A.eK,[A.kj,A.p1]) -q(A.Kv,A.QF) -q(A.KS,A.jx) -q(A.Dh,A.Dg) -q(A.Li,A.Dh) -q(A.Rd,A.Rc) -q(A.Lo,A.Rd) -q(A.Ae,A.Rj) -q(A.RL,A.RK) -q(A.LR,A.RL) -q(A.DE,A.DD) -q(A.LS,A.DE) -q(A.RX,A.RW) -q(A.AM,A.RX) -q(A.St,A.Ss) -q(A.Nj,A.St) -q(A.Bm,A.wo) -q(A.SD,A.SC) -q(A.Oi,A.SD) -q(A.SN,A.SM) -q(A.Cm,A.SN) -q(A.T0,A.T_) -q(A.Re,A.T0) -q(A.T2,A.T1) -q(A.Rs,A.T2) -q(A.Bw,A.MH) -q(A.p9,A.mv) -q(A.Bz,A.ky) -q(A.RB,A.Dd) -q(A.Rq,A.agr) -q(A.im,A.aaF) -p(A.k2,[A.qW,A.ul]) -q(A.nU,A.ul) -p(A.aH,[A.e1,A.qs,A.qt,A.qu,A.qv,A.qy,A.rB]) -p(A.e1,[A.q4,A.qg,A.h1,A.oM]) -q(A.OM,A.OL) -q(A.I9,A.OM) -q(A.Po,A.Pn) -q(A.IJ,A.Po) -q(A.rg,A.h1) -q(A.Ro,A.Rn) -q(A.Lu,A.Ro) -q(A.S1,A.S0) -q(A.M1,A.S1) -p(A.IM,[A.m,A.L]) -q(A.Fa,A.MI) -q(A.a2T,A.pT) -p(A.abf,[A.ot,A.kp,A.jT]) -q(A.HR,A.O) -q(A.WO,A.NE) -p(A.afM,[A.ML,A.Qx]) -q(A.UN,A.ML) -q(A.jg,A.Qx) -q(A.WD,A.aa7) -q(A.WM,A.NC) -p(A.WM,[A.h,A.f4,A.a6Z,A.b2]) -p(A.h,[A.a1,A.aN,A.aS,A.al,A.Pl]) -p(A.a1,[A.nG,A.ws,A.xF,A.xH,A.xI,A.o0,A.qY,A.tY,A.rr,A.xQ,A.vt,A.vC,A.z0,A.vL,A.BS,A.B6,A.vk,A.BL,A.nO,A.xP,A.HM,A.JH,A.z3,A.zB,A.BB,A.zz,A.A_,A.tb,A.Cg,A.Aq,A.AJ,A.mP,A.nw,A.AV,A.vx,A.m9,A.wi,A.qj,A.wv,A.D3,A.Dy,A.nu,A.wR,A.km,A.nC,A.x3,A.xD,A.Cj,A.yd,A.ux,A.yq,A.qH,A.tf,A.ys,A.m4,A.zx,A.uu,A.zH,A.zL,A.zS,A.D9,A.Av,A.tB,A.yS,A.mS,A.vb,A.o_,A.o1,A.yo,A.AS]) -q(A.aa,A.Ri) -p(A.aa,[A.Oq,A.Bq,A.SG,A.Ee,A.SH,A.Ef,A.OG,A.tZ,A.uB,A.Cd,A.B2,A.E3,A.SQ,A.Sr,A.Ec,A.E2,A.Eb,A.Ed,A.SI,A.ui,A.E6,A.CF,A.D0,A.E9,A.D1,A.Ep,A.Df,A.Eg,A.Er,A.DG,A.AZ,A.BF,A.Th,A.B4,A.E7,A.Br,A.Bt,A.QL,A.Dz,A.u7,A.Of,A.rq,A.uf,A.SE,A.OQ,A.SJ,A.Cu,A.Cx,A.Ps,A.Ea,A.Eq,A.Pu,A.SX,A.CZ,A.mA,A.zI,A.D7,A.QW,A.Dc,A.En,A.DC,A.RP,A.B0,A.Q3,A.B3,A.Mp,A.OS,A.OV,A.Pq,A.DT]) -q(A.OR,A.SG) -q(A.OT,A.Ee) -q(A.OU,A.SH) -q(A.Cb,A.Ef) -p(A.at,[A.bv,A.Gx,A.pi,A.Rx,A.w7]) -p(A.bv,[A.My,A.Mr,A.Ms,A.Q_,A.QB,A.Ns,A.RY,A.Bc,A.E1]) -q(A.Mz,A.My) -q(A.MA,A.Mz) -q(A.l8,A.MA) -p(A.a7b,[A.adz,A.afL,A.ZG,A.A8,A.UV,A.VL]) -q(A.Q0,A.Q_) -q(A.Q1,A.Q0) -q(A.yO,A.Q1) -q(A.QC,A.QB) -q(A.i4,A.QC) -q(A.nd,A.Ns) -q(A.RZ,A.RY) -q(A.S_,A.RZ) -q(A.oW,A.S_) -q(A.Bd,A.Bc) -q(A.Be,A.Bd) -q(A.q8,A.Be) -p(A.q8,[A.vo,A.B1]) -q(A.fV,A.yx) -p(A.fV,[A.C5,A.zy,A.ep,A.Az,A.f_,A.qz,A.Nv]) -q(A.aC,A.E1) -p(A.an,[A.eT,A.ar,A.fW,A.AO]) -p(A.ar,[A.zv,A.de,A.z2,A.ly,A.xT,A.BU,A.oF,A.oT,A.GE,A.ni,A.n_,A.oS]) -p(A.E,[A.Nl,A.lf]) -q(A.dZ,A.Nl) -p(A.a9O,[A.ac1,A.Wp,A.acr,A.a1Q]) -q(A.cK,A.Or) -q(A.Nm,A.cK) -q(A.w5,A.Nm) -p(A.f6,[A.Nn,A.OZ,A.So]) -p(A.aN,[A.Gt,A.Gw,A.Fe,A.Fd,A.MQ,A.RQ,A.RR,A.OJ,A.MK,A.FD,A.GM,A.pP,A.ng,A.Hf,A.HJ,A.qQ,A.Db,A.Sp,A.ps,A.pt,A.MM,A.KI,A.Ly,A.Ak,A.tz,A.RU,A.Pk,A.Jz,A.xq,A.jL,A.Gq,A.GO,A.Hw,A.nI,A.MZ,A.Ir,A.P7,A.ID,A.re,A.Ky,A.KH,A.KU,A.L8,A.Ln,A.Pm,A.es,A.LX,A.CE,A.Iw]) -q(A.iL,A.Nx) -p(A.iL,[A.ip,A.dX]) -p(A.Ft,[A.ac5,A.MS]) -p(A.rr,[A.qe,A.ur]) -q(A.je,A.uB) -p(A.je,[A.Bj,A.P_]) -p(A.Gx,[A.RF,A.Q4,A.Ow,A.QV,A.tQ,A.RE,A.Ol,A.yT]) -q(A.Gv,A.No) -p(A.aS,[A.b8,A.dN,A.cY]) -p(A.b8,[A.BP,A.wM,A.CB,A.D_,A.QK,A.dL,A.AY,A.fX,A.h5,A.u9,A.lv,A.Ca,A.hb,A.nD,A.rl,A.AR,A.Cl,A.zF,A.D5,A.uH,A.u4]) -q(A.Nq,A.ye) -q(A.w6,A.Nq) -q(A.acd,A.Gv) -p(A.em,[A.hD,A.we]) -q(A.mu,A.hD) -p(A.mu,[A.qp,A.H0,A.H_]) -q(A.bs,A.O8) -q(A.nr,A.O9) -p(A.we,[A.O7,A.GL,A.QR]) -p(A.jN,[A.d7,A.BT,A.QJ,A.tC,A.m0,A.Iu,A.ev,A.rK,A.zu,A.I0,A.dy,A.j6,A.BI,A.Ds,A.oy,A.rI,A.QY]) -p(A.f5,[A.Ie,A.iR]) -p(A.Ie,[A.oZ,A.ed]) -q(A.xu,A.h9) -q(A.wN,A.bs) -q(A.bf,A.PJ) -q(A.T7,A.Ml) -q(A.T8,A.T7) -q(A.S6,A.T8) -p(A.bf,[A.PB,A.PQ,A.PM,A.PH,A.PK,A.PF,A.PO,A.PU,A.jc,A.PD]) -q(A.PC,A.PB) -q(A.og,A.PC) -p(A.S6,[A.T3,A.Tc,A.Ta,A.T6,A.T9,A.T5,A.Tb,A.Te,A.Td,A.T4]) -q(A.S2,A.T3) -q(A.PR,A.PQ) -q(A.oj,A.PR) -q(A.Sa,A.Tc) -q(A.PN,A.PM) -q(A.kk,A.PN) -q(A.S8,A.Ta) -q(A.PI,A.PH) -q(A.lU,A.PI) -q(A.S5,A.T6) -q(A.PL,A.PK) -q(A.lV,A.PL) -q(A.S7,A.T9) -q(A.PG,A.PF) -q(A.ki,A.PG) -q(A.S4,A.T5) -q(A.PP,A.PO) -q(A.oi,A.PP) -q(A.S9,A.Tb) -q(A.PV,A.PU) -q(A.ol,A.PV) -q(A.Sc,A.Te) -q(A.PS,A.jc) -q(A.PT,A.PS) -q(A.ok,A.PT) -q(A.Sb,A.Td) -q(A.PE,A.PD) -q(A.oh,A.PE) -q(A.S3,A.T4) -p(A.cV,[A.Oj,A.p7]) -q(A.cJ,A.Oj) -p(A.cJ,[A.yl,A.hE]) -p(A.yl,[A.hI,A.rk,A.wq]) -p(A.uQ,[A.Ci,A.uw]) -p(A.rk,[A.f7,A.Fi]) -p(A.wq,[A.il,A.hL,A.hZ]) -p(A.Fi,[A.fe,A.tL]) -q(A.qJ,A.jw) -q(A.a1M,A.KG) -p(A.a7c,[A.agQ,A.agS]) -q(A.PY,A.L) -p(A.al,[A.aZ,A.Su,A.I7,A.eL,A.or,A.lh,A.Ld]) -p(A.aZ,[A.MD,A.Oy,A.Oz,A.N1,A.Ov,A.vq,A.IO,A.w8,A.q5,A.Ge,A.Gc,A.Jn,A.Jo,A.tD,A.nb,A.q7,A.Ht,A.cq,A.dr,A.w9,A.ks,A.eZ,A.Ia,A.yk,A.HT,A.Lc,A.Ic,A.It,A.hh,A.hN,A.EW,A.rJ,A.Il,A.Fm,A.lp,A.HO,A.lg,A.GB,A.Ok,A.Hn,A.Ho,A.QN,A.uI,A.R6,A.H7]) -p(A.H,[A.Ql,A.OK,A.QS]) -q(A.u,A.Ql) -p(A.u,[A.B,A.cg,A.Qw]) -p(A.B,[A.CV,A.ST,A.CT,A.El,A.Em,A.CI,A.CK,A.Qg,A.zc,A.Qi,A.zf,A.CR,A.zl,A.Qt,A.jC,A.SU,A.SW,A.Ek]) -q(A.zo,A.CV) -p(A.zo,[A.JZ,A.CO,A.CP,A.zj,A.zb]) -p(A.JZ,[A.Qe,A.CG,A.Kh]) -q(A.pR,A.MC) -q(A.acn,A.pR) -q(A.r7,A.z2) -q(A.xR,A.OX) -q(A.vB,A.MO) -q(A.B7,A.E3) -q(A.vD,A.MP) -q(A.vE,A.MR) -q(A.Q8,A.SQ) -q(A.vK,A.MT) -q(A.bp,A.MV) -q(A.E4,A.Sr) -q(A.MU,A.E4) -q(A.cW,A.P9) -p(A.cW,[A.Ii,A.NA,A.mk]) -p(A.Ii,[A.P8,A.Bx]) -q(A.Fy,A.MW) -q(A.q_,A.N_) -q(A.aco,A.q_) -q(A.vP,A.N0) -q(A.vQ,A.N3) -q(A.Gl,A.N4) -q(A.lH,A.lf) -q(A.wa,A.Nt) -p(A.bS,[A.rc,A.Pi]) -q(A.dC,A.rc) -q(A.ut,A.dC) -q(A.hU,A.ut) -p(A.hU,[A.yK,A.j7]) -q(A.yY,A.yK) -q(A.wf,A.yY) -q(A.qi,A.ND) -q(A.acp,A.qi) -q(A.wk,A.NH) -q(A.wu,A.NO) -q(A.GS,A.vL) -p(A.aU,[A.Sv,A.Sx,A.Sz,A.Sw,A.Sy]) -q(A.NR,A.Sv) -q(A.NT,A.Sx) -q(A.NV,A.Sz) -q(A.NS,A.Sw) -q(A.NU,A.Sy) -q(A.wy,A.NW) -q(A.wG,A.O_) -q(A.qA,A.O6) -q(A.aei,A.qA) -q(A.a8G,A.Z1) -q(A.SA,A.a8G) -q(A.SB,A.SA) -q(A.acy,A.SB) -q(A.ag3,A.Z0) -q(A.lz,A.k_) -p(A.lz,[A.lw,A.x9,A.xa]) -p(A.qS,[A.adv,A.adw]) -q(A.BR,A.Ec) -q(A.qR,A.qQ) -p(A.bG,[A.h6,A.eM,A.hp,A.Fr]) -q(A.js,A.h6) -q(A.MN,A.E2) -p(A.vk,[A.QU,A.F2,A.L6,A.KB,A.Kt,A.KW,A.GC,A.F1]) -q(A.BM,A.Eb) -q(A.CJ,A.ST) -q(A.Ny,A.Su) -q(A.BV,A.Ed) -q(A.HQ,A.Ox) -q(A.xC,A.OP) -q(A.P0,A.SI) -q(A.CU,A.CT) -q(A.Ki,A.CU) -p(A.Ki,[A.CN,A.za,A.zm,A.z8,A.Ka,A.zh,A.Kd,A.Qc,A.uC,A.K4,A.Ko,A.K7,A.Kj,A.ze,A.zi,A.z5,A.zn,A.K0,A.Kb,A.K5,A.K8,A.K9,A.K6,A.z7,A.uD,A.Qo]) -p(A.HM,[A.Ce,A.vj,A.vh,A.vg,A.ve,A.vi]) -q(A.qN,A.ui) -p(A.qN,[A.pQ,A.Mu]) -p(A.pQ,[A.OY,A.Mx,A.Mv,A.Mt,A.Mw]) -q(A.yb,A.Pe) -q(A.yc,A.Pf) -q(A.yp,A.Pr) -q(A.Cf,A.j7) -q(A.o3,A.Cf) -p(A.kg,[A.Mk,A.Gu]) -q(A.IV,A.Pt) -q(A.yJ,A.PX) -q(A.ld,A.JH) -q(A.Bb,A.E6) -q(A.Qa,A.tQ) -q(A.rs,A.ld) -q(A.Qb,A.Bb) -q(A.yN,A.PZ) -q(A.yW,A.Q5) -q(A.z4,A.CF) -q(A.zC,A.D0) -p(A.W9,[A.aF,A.mh]) -q(A.B5,A.aF) -p(A.a2j,[A.ag1,A.agR]) -q(A.BC,A.E9) -q(A.D2,A.D1) -q(A.rA,A.D2) -q(A.zN,A.QO) -q(A.De,A.Ep) -p(A.I7,[A.R2,A.Sj,A.JQ,A.H1,A.Jh]) -q(A.uE,A.El) -q(A.aW,A.OB) -p(A.aW,[A.io,A.pO,A.pY,A.fY,A.op,A.o9,A.on,A.hk,A.wm,A.hi,A.eR]) -q(A.Qv,A.Em) -q(A.A0,A.R3) -q(A.QE,A.a8q) -q(A.a5G,A.QE) -q(A.a5F,A.a8p) -p(A.a8o,[A.a5E,A.a5D,A.a4v]) -q(A.A5,A.Rb) -q(A.Eh,A.Eg) -q(A.Ch,A.Eh) -q(A.Du,A.tC) -q(A.Ai,A.Ru) -q(A.Al,A.Rz) -q(A.An,A.RC) -q(A.RD,A.Aw) -q(A.DA,A.Er) -q(A.Ax,A.RG) -q(A.eb,A.RJ) -p(A.dL,[A.BQ,A.nJ,A.lk]) -q(A.hn,A.RO) -q(A.Ih,A.w6) -q(A.kH,A.Sl) -q(A.AC,A.RS) -q(A.AF,A.RT) -q(A.oV,A.DG) -q(A.AK,A.RV) -q(A.AP,A.Sd) -p(A.mQ,[A.dW,A.eF,A.P6]) -p(A.vz,[A.cI,A.Ck]) -p(A.Fr,[A.dJ,A.ek]) -q(A.fU,A.m8) -p(A.eM,[A.dt,A.d6,A.ey,A.eO,A.eA,A.eB]) -p(A.cd,[A.as,A.f2,A.mz]) -p(A.MY,[A.B9,A.up]) -p(A.hP,[A.F8,A.zE]) -q(A.nM,A.Os) -p(A.nM,[A.acz,A.Iv]) -q(A.vu,A.F8) -q(A.a0i,A.Ot) -p(A.f4,[A.kh,A.mp]) -q(A.Lx,A.Rr) -q(A.t,A.RH) -q(A.m7,A.A8) -p(A.hK,[A.iE,A.t9]) -p(A.fs,[A.pX,A.La]) -p(A.cw,[A.fm,A.A1,A.mi]) -q(A.Bg,A.fm) -q(A.w3,A.Bg) -p(A.w3,[A.hd,A.f3,A.eu,A.dl]) -q(A.Qf,A.CI) -q(A.z9,A.Qf) -q(A.aay,A.Fj) -q(A.CL,A.CK) -q(A.Qh,A.CL) -q(A.oq,A.Qh) -p(A.m0,[A.DB,A.BD,A.tV]) -q(A.Qj,A.Qi) -q(A.Qk,A.Qj) -q(A.zd,A.Qk) -q(A.xs,A.OK) -p(A.xs,[A.Jq,A.Ji,A.dY]) -p(A.dY,[A.j5,A.w0,A.w_,A.vZ,A.yG,A.nX,A.wS,A.vr]) -p(A.j5,[A.tF,A.ym]) -q(A.Pb,A.SL) -q(A.rf,A.VM) -p(A.ag6,[A.abZ,A.pg]) -p(A.pg,[A.QD,A.Rw]) -q(A.lT,A.oB) -q(A.Qm,A.CR) -q(A.Qn,A.Qm) -q(A.zk,A.Qn) -q(A.Qd,A.Qc) -q(A.K_,A.Qd) -q(A.oE,A.w7) -p(A.uC,[A.K3,A.K2,A.K1,A.CS]) -p(A.CS,[A.Ke,A.Kf]) -p(A.zm,[A.Kg,A.Kc,A.ko,A.CH,A.CM]) -q(A.L9,A.R7) -q(A.Ra,A.mi) -q(A.kv,A.Ra) -p(A.cg,[A.CX,A.Qp]) -q(A.Qr,A.CX) -q(A.Qs,A.Qr) -q(A.m2,A.Qs) -p(A.m2,[A.Kl,A.Km]) -q(A.Kk,A.Kl) -q(A.R8,A.A1) -q(A.R9,A.R8) -q(A.fD,A.R9) -q(A.zp,A.Qp) -p(A.zp,[A.Kn,A.Qq]) -q(A.Qu,A.Qt) -q(A.ru,A.Qu) -q(A.zg,A.ru) -q(A.zq,A.Qw) -q(A.rv,A.jC) -q(A.zr,A.rv) -q(A.KM,A.QQ) -q(A.c6,A.QS) -q(A.it,A.bh) -q(A.rL,A.QT) -q(A.ob,A.rL) -p(A.a6N,[A.aa_,A.a1E,A.a9g]) -q(A.Ve,A.F7) -q(A.a3w,A.Ve) -p(A.UQ,[A.aca,A.JX]) -q(A.lB,A.OH) -p(A.lB,[A.nW,A.lC,A.xp]) -q(A.a1f,A.OI) -p(A.a1f,[A.d,A.l]) -q(A.Ry,A.y2) -q(A.lO,A.lL) -q(A.yZ,A.Q6) -q(A.i3,A.Q7) -p(A.i3,[A.kn,A.z_]) -p(A.yZ,[A.a4b,A.a4c,A.a4d,A.JR]) -q(A.ea,A.cx) -p(A.mn,[A.LI,A.LH,A.LJ,A.tu]) -q(A.Hc,A.oQ) -q(A.b_,A.Mn) -p(A.b_,[A.cA,A.c2,A.wl,A.GN,A.JG,A.Bh,A.Kp,A.IE,A.JB,A.wh,A.KE]) -q(A.U9,A.Mm) -p(A.cA,[A.Ei,A.Ej,A.kM,A.DP,A.O0,A.DQ,A.QP,A.Nh]) -q(A.Cy,A.Ei) -q(A.Cz,A.Ej) -q(A.DU,A.Th) -p(A.IF,[A.qZ,A.h8,A.CA,A.D4]) -q(A.n6,A.dr) -p(A.dN,[A.xt,A.om,A.wL,A.xl]) -p(A.eL,[A.ne,A.A9,A.He,A.Kq,A.Bs,A.RM,A.p0]) -p(A.b2,[A.bm,A.w2,A.Pj]) -p(A.bm,[A.zT,A.zw,A.I6,A.fv,A.un,A.ta,A.A2]) -p(A.zT,[A.Pp,A.SY]) -q(A.HP,A.A9) -p(A.He,[A.Ku,A.Gm]) -q(A.H3,A.wL) -q(A.m1,A.zw) -q(A.DV,A.Fk) -q(A.DW,A.DV) -q(A.DX,A.DW) -q(A.DY,A.DX) -q(A.DZ,A.DY) -q(A.E_,A.DZ) -q(A.E0,A.E_) -q(A.Mh,A.E0) -q(A.GI,A.m9) -q(A.E8,A.E7) -q(A.Bl,A.E8) -q(A.jq,A.d7) -q(A.NP,A.Bt) -q(A.Bu,A.NP) -q(A.NQ,A.Bu) -q(A.qk,A.NQ) -q(A.kI,A.kh) -q(A.pl,A.kI) -p(A.Dx,[A.tR,A.ahg,A.tO,A.ahm,A.adV,A.u1,A.acC,A.tS,A.us]) -q(A.Od,A.Oc) -q(A.cT,A.Od) -q(A.nv,A.cT) -q(A.Ob,A.Oa) -q(A.wP,A.Ob) -q(A.Hm,A.nu) -q(A.Oe,A.u7) -p(A.h5,[A.BE,A.QZ]) -q(A.Hp,A.Og) -q(A.d8,A.SS) -q(A.jB,A.SR) -q(A.Q9,A.Hp) -q(A.JT,A.Q9) -p(A.iR,[A.bC,A.ls]) -p(A.w2,[A.Lq,A.hl,A.yQ]) -p(A.yQ,[A.od,A.h4,A.SO]) -p(A.nB,[A.co,A.MB]) -p(A.a6O,[A.Nz,A.aeK]) -q(A.wY,A.o8) -q(A.BO,A.SE) -p(A.h4,[A.x8,A.uj]) -q(A.I5,A.lh) -q(A.SV,A.SU) -q(A.CQ,A.SV) -q(A.P1,A.SJ) -q(A.GJ,A.M2) -q(A.dG,A.a5I) -p(A.mB,[A.uv,A.Cr,A.Cs,A.Ct]) -q(A.Cv,A.Cu) -q(A.j3,A.Cv) -p(A.Qz,[A.Pd,A.alm]) -p(A.dy,[A.Om,A.dQ]) -q(A.Cw,A.SO) -q(A.rd,A.Ps) -p(A.fv,[A.RN,A.Tf]) -q(A.uF,A.SW) -q(A.BJ,A.Ea) -q(A.Dt,A.Eq) -q(A.lP,A.CA) -q(A.IT,A.oy) -q(A.wI,A.O5) -q(A.oc,A.wI) -q(A.QM,A.ev) -q(A.ji,A.QM) -q(A.rE,A.ji) -q(A.pj,A.rE) -p(A.zJ,[A.BG,A.yr,A.JP,A.Fq,A.Gb,A.F_]) -q(A.GH,A.a3B) -q(A.QA,A.SX) -p(A.dQ,[A.is,A.Qy]) -q(A.CY,A.is) -p(A.CY,[A.zt,A.zs]) -q(A.NG,A.GN) -p(A.KF,[A.lu,A.a_M,A.XD,A.Ff,A.GR]) -q(A.D6,A.h8) -q(A.eN,A.D6) -p(A.eN,[A.rF,A.fc,A.hY,A.kq,A.Ma]) -q(A.my,A.nZ) -q(A.oz,A.D4) -q(A.Fu,A.KH) -q(A.Ib,A.Fu) -q(A.D8,A.D7) -q(A.zM,A.D8) -q(A.jE,A.f7) -q(A.jF,A.fe) -q(A.QX,A.lv) -q(A.R0,A.R_) -q(A.aR,A.R0) -q(A.p4,A.Sq) -q(A.rP,A.QY) -q(A.SZ,A.SY) -q(A.R1,A.SZ) -q(A.CW,A.Ek) -q(A.QG,A.ed) -q(A.L7,A.a8r) -q(A.oJ,A.Ld) -p(A.oJ,[A.Lb,A.R5]) -q(A.Da,A.En) -q(A.Sn,A.tA) -q(A.Tg,A.Tf) -q(A.Sk,A.Tg) -q(A.a3G,A.JX) -q(A.vO,A.bc) -q(A.WK,A.a1s) -q(A.W6,A.a1t) -q(A.a3U,A.a1z) -p(A.a3z,[A.a33,A.aaq]) -q(A.a34,A.a33) -q(A.nS,A.a8W) -p(A.nS,[A.JA,A.M8,A.Mj]) -q(A.yR,A.Q2) -p(A.a77,[A.a1Z,A.a75]) -q(A.Ha,A.Lk) -p(A.A6,[A.BA,A.Ll]) -q(A.tc,A.Lm) -q(A.kw,A.Ll) -q(A.Lv,A.tc) -p(A.aaq,[A.a2_,A.aar]) -s(A.NI,A.a5V) -r(A.Px,A.u2) -r(A.Py,A.u2) -r(A.CC,A.u2) -s(A.SK,A.Sm) -s(A.SP,A.Sm) -s(A.tH,A.M5) -s(A.E5,A.O) -s(A.Cn,A.O) -s(A.Co,A.wH) -s(A.Cp,A.O) -s(A.Cq,A.wH) -s(A.mt,A.MG) -s(A.C8,A.O) -s(A.Dj,A.aq) -s(A.Dk,A.xf) -s(A.Dl,A.cF) -s(A.DO,A.DN) -s(A.Eo,A.cF) -s(A.Es,A.Sg) -s(A.SF,A.adD) -s(A.Nk,A.Wg) -s(A.NJ,A.O) -s(A.NK,A.cB) -s(A.NL,A.O) -s(A.NM,A.cB) -s(A.O2,A.O) -s(A.O3,A.cB) -s(A.Oo,A.O) -s(A.Op,A.cB) -s(A.P2,A.aq) -s(A.P3,A.aq) -s(A.P4,A.O) -s(A.P5,A.cB) -s(A.Pg,A.O) -s(A.Ph,A.cB) -s(A.Pz,A.O) -s(A.PA,A.cB) -s(A.QF,A.aq) -s(A.Dg,A.O) -s(A.Dh,A.cB) -s(A.Rc,A.O) -s(A.Rd,A.cB) -s(A.Rj,A.aq) -s(A.RK,A.O) -s(A.RL,A.cB) -s(A.DD,A.O) -s(A.DE,A.cB) -s(A.RW,A.O) -s(A.RX,A.cB) -s(A.Ss,A.O) -s(A.St,A.cB) -s(A.SC,A.O) -s(A.SD,A.cB) -s(A.SM,A.O) -s(A.SN,A.cB) -s(A.T_,A.O) -s(A.T0,A.cB) -s(A.T1,A.O) -s(A.T2,A.cB) -r(A.ul,A.O) -s(A.OL,A.O) -s(A.OM,A.cB) -s(A.Pn,A.O) -s(A.Po,A.cB) -s(A.Rn,A.O) -s(A.Ro,A.cB) -s(A.S0,A.O) -s(A.S1,A.cB) -s(A.MI,A.aq) -s(A.NE,A.WP) -s(A.ML,A.IQ) -s(A.Qx,A.IQ) -r(A.SG,A.iD) -r(A.Ee,A.iD) -r(A.SH,A.iD) -r(A.Ef,A.jk) -s(A.My,A.vm) -s(A.Mz,A.mR) -s(A.MA,A.l9) -s(A.Bc,A.vn) -s(A.Bd,A.mR) -s(A.Be,A.l9) -s(A.Ns,A.vp) -s(A.Q_,A.vn) -s(A.Q0,A.mR) -s(A.Q1,A.l9) -s(A.QB,A.vn) -s(A.QC,A.l9) -s(A.RY,A.vm) -s(A.RZ,A.mR) -s(A.S_,A.l9) -s(A.E1,A.vp) -s(A.Nl,A.ai) -s(A.Nm,A.ai) -s(A.No,A.ai) -s(A.Nq,A.ai) -s(A.O9,A.iM) -s(A.O8,A.ai) -s(A.NC,A.ai) -s(A.PB,A.ex) -s(A.PC,A.N7) -s(A.PD,A.ex) -s(A.PE,A.N8) -s(A.PF,A.ex) -s(A.PG,A.N9) -s(A.PH,A.ex) -s(A.PI,A.Na) -s(A.PJ,A.ai) -s(A.PK,A.ex) -s(A.PL,A.Nb) -s(A.PM,A.ex) -s(A.PN,A.Nc) -s(A.PO,A.ex) -s(A.PP,A.Nd) -s(A.PQ,A.ex) -s(A.PR,A.Ne) -s(A.PS,A.ex) -s(A.PT,A.Nf) -s(A.PU,A.ex) -s(A.PV,A.Ng) -s(A.T3,A.N7) -s(A.T4,A.N8) -s(A.T5,A.N9) -s(A.T6,A.Na) -s(A.T7,A.ai) -s(A.T8,A.ex) -s(A.T9,A.Nb) -s(A.Ta,A.Nc) -s(A.Tb,A.Nd) -s(A.Tc,A.Ne) -s(A.Td,A.Nf) -s(A.Te,A.Ng) -s(A.Oj,A.iM) -s(A.MC,A.ai) -s(A.OX,A.ai) -s(A.MO,A.ai) -r(A.E3,A.cP) -s(A.MP,A.ai) -s(A.MR,A.ai) -s(A.SQ,A.xV) -s(A.MT,A.ai) -s(A.MV,A.ai) -s(A.Sr,A.xV) -r(A.E4,A.cP) -s(A.MW,A.ai) -s(A.N_,A.ai) -s(A.N0,A.ai) -s(A.N3,A.ai) -s(A.N4,A.ai) -s(A.Nt,A.ai) -s(A.ND,A.ai) -s(A.NH,A.ai) -s(A.NO,A.ai) -s(A.Sv,A.ai) -s(A.Sw,A.ai) -s(A.Sx,A.ai) -s(A.Sy,A.ai) -s(A.Sz,A.ai) -s(A.NW,A.ai) -s(A.O_,A.ai) -s(A.SA,A.YL) -s(A.SB,A.YM) -s(A.O6,A.ai) -r(A.Ec,A.iD) -s(A.Ox,A.ai) -r(A.E2,A.cP) -r(A.Su,A.mj) -r(A.Eb,A.jk) -r(A.Ed,A.cP) -r(A.ST,A.oK) -s(A.OP,A.ai) -r(A.SI,A.cP) -s(A.Pe,A.ai) -s(A.Pf,A.ai) -s(A.Pr,A.ai) -s(A.Cf,A.xU) -s(A.Pt,A.ai) -s(A.PX,A.ai) -r(A.E6,A.jk) -s(A.PZ,A.ai) -s(A.Q5,A.ai) -r(A.CF,A.cP) -r(A.D0,A.cP) -r(A.D1,A.cP) -r(A.D2,A.jh) -r(A.E9,A.cP) -s(A.QO,A.ai) -r(A.El,A.m_) -r(A.Em,A.m_) -r(A.Ep,A.cP) -s(A.QE,A.UO) -s(A.R3,A.ai) -s(A.Rb,A.ai) -r(A.Eg,A.cP) -r(A.Eh,A.AG) -s(A.Ru,A.ai) -s(A.Rz,A.ai) -s(A.RC,A.ai) -r(A.Er,A.jh) -s(A.RG,A.ai) -s(A.RJ,A.ai) -s(A.RO,A.ai) -s(A.Sl,A.ai) -s(A.RS,A.ai) -s(A.RT,A.ai) -r(A.DG,A.jk) -s(A.RV,A.ai) -s(A.Sd,A.ai) -s(A.Nx,A.ai) -s(A.Ot,A.ai) -s(A.Os,A.ai) -s(A.Rr,A.ai) -s(A.RH,A.ai) -r(A.Bg,A.eG) -r(A.CI,A.ac) -s(A.Qf,A.cD) -r(A.CK,A.m_) -r(A.CL,A.ac) -s(A.Qh,A.cD) -r(A.Qi,A.ac) -s(A.Qj,A.cD) -s(A.Qk,A.Wu) -s(A.OK,A.iM) -s(A.SL,A.ai) -s(A.Ql,A.iM) -r(A.CR,A.ac) -s(A.Qm,A.cD) -r(A.Qn,A.m_) -r(A.Qc,A.dP) -r(A.Qd,A.z6) -r(A.CT,A.aD) -r(A.CU,A.dP) -r(A.CV,A.aD) -s(A.R7,A.ai) -r(A.Ra,A.eG) -r(A.CX,A.ac) -s(A.Qr,A.a5d) -s(A.Qs,A.a5j) -r(A.R8,A.eG) -s(A.R9,A.iZ) -r(A.Qp,A.aD) -r(A.Qt,A.ac) -s(A.Qu,A.cD) -r(A.Qw,A.aD) -r(A.jC,A.ac) -s(A.QQ,A.ai) -s(A.QS,A.iM) -s(A.QT,A.ai) -s(A.OH,A.ai) -s(A.OI,A.ai) -s(A.P9,A.ai) -s(A.Q7,A.ai) -s(A.Q6,A.ai) -s(A.Mn,A.ai) -s(A.Mm,A.ai) -s(A.OB,A.ai) -r(A.Ei,A.uy) -r(A.Ej,A.uy) -s(A.Th,A.ho) -r(A.DV,A.qF) -r(A.DW,A.dR) -r(A.DX,A.rM) -r(A.DY,A.yu) -r(A.DZ,A.a6D) -r(A.E_,A.rw) -r(A.E0,A.AW) -r(A.E7,A.cP) -r(A.E8,A.iD) -r(A.Bt,A.iD) -s(A.NP,A.ho) -r(A.Bu,A.cP) -s(A.NQ,A.a9P) -s(A.Oa,A.iM) -s(A.Ob,A.jN) -s(A.Oc,A.iM) -s(A.Od,A.jN) -s(A.Og,A.ai) -r(A.Q9,A.Xc) -s(A.SR,A.ai) -s(A.SS,A.ai) -s(A.Ri,A.ai) -s(A.Or,A.ai) -s(A.SE,A.ho) -r(A.ui,A.jk) -r(A.SU,A.aD) -s(A.SV,A.fz) -s(A.SJ,A.ho) -r(A.Cu,A.cP) -r(A.Cv,A.jh) -s(A.SO,A.yg) -r(A.Ps,A.cP) -r(A.SW,A.ac) -r(A.CA,A.fg) -r(A.Ea,A.cP) -r(A.Eq,A.cP) -r(A.SX,A.jh) -r(A.ut,A.Id) -s(A.O5,A.i7) -r(A.D6,A.fg) -r(A.D4,A.fg) -s(A.QM,A.i7) -r(A.D7,A.cP) -r(A.D8,A.jh) -r(A.uB,A.cP) -s(A.QY,A.ai) -s(A.R_,A.ai) -s(A.R0,A.a1Y) -s(A.Sq,A.ai) -r(A.Ek,A.aD) -s(A.SY,A.yg) -s(A.SZ,A.Mg) -r(A.En,A.jk) -s(A.Tf,A.yg) -s(A.Tg,A.Mg) -s(A.Q2,A.O)})() -var v={typeUniverse:{eC:new Map(),tR:{},eT:{},tPV:{},sEA:[]},mangledGlobalNames:{q:"int",J:"double",br:"num",k:"String",y:"bool",aG:"Null",x:"List"},mangledNames:{},types:["~()","J(J)","~(aP)","~(eW)","~(ah)","~(y)","aG()","aG(@)","aG(ah)","~(D?)","~(f1)","y(iE,m)","~(rf,m)","~(k,@)","~(b2)","~(@)","~(c1?)","y(cT)","x()","y(k)","aG(~)","y(D?)","h(a0)","~(fZ)","~(bf)","~(to)","y(jU)","J(B)","@()","y(eN)","~(hF)","~(@,@)","@(@)","~(k)","@(ah)","y(dG?)","J(B,J)","~(lV)","y(f4)","~(q)","~(D,c7)","k(k)","~(lU)","~(dy,~())","q(cT,cT)","a7<~>()","~(u)","y()","~(LW)","y(b2)","E(b0)","y(@)","~(o8)","~(J)","q(u,u)","q(q)","de(@)","aG(kj)","h(a0,h?)","aG(mr)","y(dG)","aU?(bp?)","~(eK)","~(nz)","y(bS<@>)","y(h4)","k()","q()","Dx(fo)","~(D?,D?)","aG(D,c7)","y(q)","~(mm)","q(D?)","E?(b0)","~(xJ)","~(r5)","aU?(bp?)","E(E)","~({curve:fV,descendant:u?,duration:aP,rect:w?})","~(ki)","~(jg,ot)","y(c6)","q(c6,c6)","a7<~>(ka)","a7<@>(ka)","~(iW)","a7>()","y(nw)","~(k,k)","~(fy)","~(~())","a7()","aG(eK)","y(h7)","~(r4)","y(ew)","aG(y)","q(@,@)","ar(@)","kL()","pt(a0,bv,h?)","y(a6)","k(q)","L()","J(L)","aG(@,@)","x()","y(j4)","y(D?,D?)","nM()","~(h3)","E?(E?)","~(w)","y(k0)","y(am,k,k,ug)","a7(fT)","aG(fy)","y(iE)","~(mh)","a7<@>(@)","~(x)","k3(cT,i3)","x(it)","J()","~(lr)","a7(c1?)","~(cO)","ay()","pZ(@)","x()","~(k,x)","~(aw)","L(B,aF)","w()","y(Xr)","~([aW?])","~(hO,y)","~(jV)","q(d8,d8)","fe()","~(fe)","f7()","~(f7)","il()","~(il)","hL()","~(hL)","hZ()","~(hZ)","ar<@>?(ar<@>?,@,ar<@>(@))","y(q?)","~(br)","~(D[c7?])","jw(bf)","y(oz)","he(he)","k(o2)","df()","a7<~>(~(np),~(D?))","b0<~>(k)","@(D?)","~(cQ,k,q)","ps(a0,bv,h?)","h7()","k(k,E)","uA()","~(k,y?)","oU({from:J?})","~(p5)","aG(jl)","qO(cE)","rG(cE)","r1(cE)","tp(cE)","tw(cE)","q0(cE)","qL(cE)","a7<~>(~)","r3(cE)","dn?()","dn()","qp(k)","y(Ah,eX)","aG(ny)","~(H)","k(cV)","ud()","~(yI)","~(dm)","y(jb)","ex(jb)","~(uO)","ay<~(bf),bb?>()","~(~(bf),bb?)","p7()","r7(w?,w?)","h(a0,~())","oI()","o3<0^>(i5,h(a0))","y(y)","~(eN)","~(k4)","J(kN)","J(bv)","J(p>)","J(J,J)","~(k,jW)","a7<~>(~(nq),~(D?))","0^?(0^?(bp?))","0^?(aU<0^>?(bp?))","aU?(bp?)","aU?(bp?)","~(k?)","aU?(bp?)","aG(k)","aU?(bp?)","aU?(bp?)","cW?(b0)","cW?(bp?)","a7()","E?(bp?)","kH?(bp?)","lI?(bp?)","aP?(bp?)","y?(bp?)","mQ?(bp?)","qS?(bp?)","h(a0,bv,bv)","k?(k)","w()?(B)","y(a0)","~(ah?)","y(oa)","~(kR)","@(@,k)","@(k)","aG(~())","y(lw?)","hg<1&>([ow?])","aG(@,c7)","~(B?)","t()","y(h8)","~(q,@)","tk()","oF(@)","y/()","y(D)","lg(a0,h?)","kg?(dn)","y(E)","y(lP)","rs(a0,h?)","ne(a0,h?)","q(lQ,lQ)","y(b0)","~(ql?,tv?)","J(b0)","~(io)","a4<@>(@)","q7(a0)","q(mE,mE)","~(fp)","dr(a0,h?)","~(y?)","cW(b0)","a7(k,ay)","~(oN,@)","~([D?])","~(ea,fC?)","nO(a0,h?)","rJ(a0,h?)","oT(@)","hn()","aw>(D,jr<@>)","y(aw>)","~([mm?])","a7(cQ{allowUpscaling:y,cacheHeight:q?,cacheWidth:q?})","cd(cd,bG)","bG(bG)","k(bG)","~(k,q)","up()","~(hO?,y)","a7<~>(D,c7?)","~(k,q?)","aG(ay>?)","q(q,q)","~(D,c7?)?(h3)","~(iJ)","~(k,k?)","~(q,cr,c1?)","k(J,J,k)","J?()","cQ(@,@)","~(ea)","w(ih)","~(nV?)","w(w?,ih)","cW(kb)","~(kb,bb)","y(kb)","hg<1&>()","~(nh)","eX(n7)","y(t9{crossAxisPosition!J,mainAxisPosition!J})","a7(fT)","k(@)","y(B)","hg<1&>([nN?])","hK(m)","y(cg)","~(a6,a6?)","~(q,ua)","@(@,@)","c6(kU)","am(a6)","qW(@)","q(c6)","c6(q)","d_()","a7(k?)","nU<@>(@)","a7<~>(c1?,~(c1?))","a7>(@)","~(i3)","k2(@)","yZ()","y(l)","a7()","~(q,y(jU))","x()","x(x)","x
(e6)","y(q,q)","J(br)","x<@>(k)","aw>(k,k)","~(x)","~(b_)","@(@)(~(jg,ot))","mc()","bS<@>(i5)","y(qZ)","aG(c1)","hK()","a7<~>(@)","a7<~>(eW)","@(@)(~(cN<@>,kp))","w(Xr)","@(@,c7)(~(e_,jT))","~(hi)","~(a6o)","~(eR)","~(YJ)","~(YK)","D?(fY)","dB(dB,oQ)","e6?(q)","y(e6?)","e6(e6?)","a7<~>(a3i)","~(dB)","nb(a0,ev)","y(fs)","ea(ea)","~(aah)","~(a4w)","a7<@>(@,c7)","y(xn)","~(u8)","y(u0)","dg()","y(oX)","b0(d8)","~(am)","x(a0)","w(d8)","q(jB,jB)","x(d8,p)","y(d8)","b2?(b2)","D?(q,b2?)","~(x<@>,kc)","~(cN<@>)","hE()","~(hE)","aG(k,D?)","am()","~(p)","a7<@>(aw)","aw>(k,x)","p6()","k(k,D?)","~(cQ,iP)","~(ko)","~(hl,D)","om(a0,h?)","~(kO)","h(a0,bv,nE,a0,a0)","y(kO)","nJ(a0)","~(cQ)","ni(@)","oS(@)","n_(@)","a7<@>(uz)","ay(x<@>)","ay(ay)","aG(ay)","~(@,k)","y(bS<@>?)","y(j6)","y(k,k)","q(k)","dG(bS<@>)","aw>(@,@)","q5(a0,h?)","p0(a0,ev)","aG(cO?)","~(dy)","m4(a0,h?)","mP(a0)","hN(a0,h?)","qJ(bf)","h(a0,q)","h(a0,ev)","y(fc)","aG(x<~>)","~(jR)","~(jc)","o0(a0)","y(i7?)","jE()","~(jE)","a7<@>(e_,jT)","jF()","~(jF)","~(kk)","~(rO,aW)","x()","uI(a0,ev)","~(B)","b2?()","lk(a0)","~(fZ,f1)","hI()","~(hI)","a7<~>(k,c1?,~(c1?)?)","xZ()","a7<@>(cN<@>,kp)","~(e3)","~(e3,y)","k(k?)","h(a0,aF)","k?()","q(iq)","~(q,q)","D(iq)","D(ew)","q(ew,ew)","x(aw>)","kw()","~(e_,jT)","~(cN<@>,kp)","jY(@)","i1(@)","kr(@)","ju(@)","mS(a0)","o1(a0)","o_(a0)","b0<~>(~)","@(f1)","b0<~>(D?,c7)","b0>(i1)","b0>(y)","nG(a0)","b0>>(y)","qR(a0,q)","pP(a0)","~(ad)","k(k,k)","a1(a0,q)","y(he)","~(iH)","q(bh<@>,bh<@>)","k(k{encoding:nk})","he()","D?(D?)","D?(@)","0^(0^,0^)
","L?(L?,L?,J)","J?(br?,br?,J)","E?(E?,E?,J)","~(bs{forceReport:y})","id?(k)","J(J,J,J)","h(a0,bv,bv,h)","y?(y?,y?,J)","cd?(cd?,cd?,J)","a7>?>(k?)","t?(t?,t?,J)","q(RA<@>,RA<@>)","y({priority!q,scheduler!dR})","k(c1)","x(k)","q(b2,b2)","cK(cK?,cK?,J)","x>(j3,k)","q(h,q)","am(q)","~(k?{wrapWidth:q?})","bS<@>?(i5)"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti")} -A.aF6(v.typeUniverse,JSON.parse('{"iH":"M","rU":"M","t4":"M","t1":"M","t5":"M","rY":"M","rZ":"M","rS":"M","rT":"M","rR":"M","t_":"M","rV":"M","rQ":"M","t0":"M","t6":"M","ma":"M","mc":"M","jm":"M","me":"M","md":"M","mb":"M","mf":"M","mg":"M","oI":"M","t3":"M","t2":"M","rX":"M","oH":"M","zW":"M","kt":"M","rW":"M","jl":"M","nN":"M","nq":"M","ow":"M","np":"M","hg":"M","nV":"M","qK":"M","qf":"M","a_c":"M","Vp":"M","Vq":"M","W1":"M","a8i":"M","a83":"M","a7D":"M","a7B":"M","a7A":"M","a7C":"M","a7i":"M","a7h":"M","a87":"M","a84":"M","a88":"M","a7Z":"M","a8_":"M","a8g":"M","a8f":"M","a7X":"M","a7W":"M","a7o":"M","a7v":"M","a7T":"M","a7S":"M","a7m":"M","a81":"M","a7M":"M","a7l":"M","a82":"M","a8b":"M","a7x":"M","a7w":"M","a7K":"M","a7J":"M","a7k":"M","a7j":"M","a7r":"M","a7q":"M","a80":"M","a7I":"M","FY":"M","abT":"M","abV":"M","a7p":"M","a7F":"M","a7E":"M","a7R":"M","aeX":"M","a7y":"M","a7t":"M","a7s":"M","a7U":"M","a7n":"M","a7O":"M","a7N":"M","a7P":"M","KZ":"M","a86":"M","a85":"M","a7V":"M","L0":"M","L_":"M","KY":"M","a8d":"M","KX":"M","aaf":"M","a7H":"M","a89":"M","a8a":"M","a8h":"M","a8c":"M","a7z":"M","aag":"M","a8e":"M","a0J":"M","a7L":"M","a7u":"M","a7G":"M","a7Q":"M","a0K":"M","Z2":"M","a0P":"M","a0b":"M","Ww":"M","aaz":"M","a0l":"M","a0k":"M","Ju":"M","jt":"M","iY":"M","a0Q":"M","aJ2":"ah","aJ0":"aH","aJ1":"aH","aIZ":"e1","aJ9":"h1","aKZ":"fT","aL_":"fy","aJ4":"ad","aJN":"ad","aK8":"a6","aJu":"a6","aKF":"iO","aKC":"fG","aJ_":"dK","aJl":"jx","aJ6":"iI","aKj":"iI","aJF":"nF","aJA":"oY","aJg":"c4","hX":{"I":[]},"vR":{"iJ":[]},"fu":{"dS":["1"]},"dw":{"d5":[]},"q0":{"fA":[]},"qL":{"fA":[]},"qO":{"fA":[]},"r1":{"fA":[]},"r3":{"fA":[]},"rG":{"fA":[]},"hj":{"I":[]},"lr":{"I":[]},"tp":{"fA":[]},"tw":{"fA":[]},"be":{"I":[]},"qo":{"a1m":[]},"cH":{"I":[]},"pS":{"ce":[]},"iF":{"I":[]},"JU":{"eX":[]},"FI":{"c3":[]},"G6":{"c3":[]},"G3":{"c3":[]},"G4":{"c3":[]},"Ga":{"c3":[]},"G8":{"c3":[]},"G5":{"c3":[]},"G9":{"c3":[]},"FL":{"c3":[]},"FM":{"c3":[]},"FK":{"c3":[]},"FJ":{"c3":[]},"FQ":{"c3":[]},"FR":{"c3":[]},"FW":{"c3":[]},"FV":{"c3":[]},"FO":{"c3":[]},"FN":{"c3":[]},"FT":{"c3":[]},"FX":{"c3":[]},"FP":{"c3":[]},"FS":{"c3":[]},"FU":{"c3":[]},"G7":{"c3":[]},"L3":{"bA":[]},"xM":{"fu":["mb"],"dS":["mb"]},"lM":{"I":[]},"y5":{"p":["hV"],"p.E":"hV"},"HL":{"ce":[]},"vf":{"wT":[]},"FH":{"fu":["ma"],"dS":["ma"],"iJ":[]},"qa":{"eJ":[]},"Kr":{"eJ":[]},"Gd":{"eJ":[],"VQ":[]},"Gg":{"eJ":[],"VT":[]},"Gf":{"eJ":[],"VR":[]},"IP":{"eJ":[],"a2V":[]},"AN":{"eJ":[],"M0":[]},"IN":{"eJ":[],"M0":[],"a2U":[]},"Jr":{"eJ":[]},"Jp":{"eJ":[],"a3r":[]},"G0":{"fu":["md"],"dS":["md"]},"q1":{"fu":["me"],"dS":["me"],"IW":[]},"q2":{"fu":["mf"],"dS":["mf"]},"vU":{"fu":["mg"],"dS":["mg"]},"q3":{"fu":["jm"],"dS":["jm"]},"FZ":{"q3":[],"fu":["jm"],"dS":["jm"]},"t7":{"dS":["2"]},"vT":{"dS":["rW"]},"G_":{"a1m":[]},"pk":{"I":[]},"Fz":{"bA":[]},"yA":{"dw":[],"d5":[],"VT":[]},"Jj":{"dw":[],"d5":[],"VR":[]},"yD":{"dw":[],"d5":[],"a3r":[]},"yz":{"dw":[],"d5":[],"VQ":[]},"yB":{"dw":[],"d5":[],"a2U":[]},"yC":{"dw":[],"d5":[],"a2V":[]},"aO":{"IW":[]},"Jm":{"d5":[]},"wt":{"cM":[]},"yt":{"cM":[]},"J8":{"cM":[]},"Jc":{"cM":[]},"Ja":{"cM":[]},"J9":{"cM":[]},"Jb":{"cM":[]},"IZ":{"cM":[]},"IY":{"cM":[]},"IX":{"cM":[]},"J2":{"cM":[]},"J6":{"cM":[]},"J5":{"cM":[]},"J0":{"cM":[]},"J_":{"cM":[]},"J4":{"cM":[]},"J7":{"cM":[]},"J1":{"cM":[]},"J3":{"cM":[]},"yE":{"dw":[],"d5":[]},"lS":{"I":[]},"Jl":{"d5":[]},"yF":{"dw":[],"d5":[],"M0":[]},"HE":{"iJ":[]},"HD":{"iJ":[]},"zV":{"wT":[]},"lj":{"I":[]},"tP":{"I":[]},"EY":{"I":[]},"qn":{"I":[]},"jG":{"O":["1"],"x":["1"],"V":["1"],"p":["1"]},"OA":{"jG":["q"],"O":["q"],"x":["q"],"V":["q"],"p":["q"]},"M3":{"jG":["q"],"O":["q"],"x":["q"],"V":["q"],"p":["q"],"O.E":"q","jG.E":"q"},"no":{"a3e":[]},"ri":{"a3e":[]},"FF":{"ti":[]},"Ks":{"ti":[]},"of":{"ro":[]},"fd":{"ro":[]},"nY":{"I":[]},"tT":{"I":[]},"oP":{"I":[]},"tE":{"I":[]},"GW":{"ns":[]},"GZ":{"ns":[]},"xh":{"y":[]},"xi":{"aG":[]},"M":{"akt":[],"iH":[],"rU":[],"t4":[],"t1":[],"t5":[],"rY":[],"rZ":[],"rS":[],"rT":[],"rR":[],"t_":[],"rV":[],"rQ":[],"t0":[],"t6":[],"ma":[],"mc":[],"jm":[],"me":[],"md":[],"mb":[],"mf":[],"mg":[],"oI":[],"t3":[],"t2":[],"rX":[],"oH":[],"zW":[],"kt":[],"rW":[],"jl":[],"nN":[],"nq":[],"ow":[],"np":[],"hg":["1&"],"nV":[],"qK":[],"qf":[]},"o":{"x":["1"],"V":["1"],"p":["1"],"aY":["1"]},"a0I":{"o":["1"],"x":["1"],"V":["1"],"p":["1"],"aY":["1"]},"lA":{"J":[],"br":[],"bh":["br"]},"qV":{"J":[],"q":[],"br":[],"bh":["br"]},"xj":{"J":[],"br":[],"bh":["br"]},"k1":{"k":[],"bh":["k"],"aY":["@"]},"kK":{"p":["2"]},"n3":{"kK":["1","2"],"p":["2"],"p.E":"2"},"Bv":{"n3":["1","2"],"kK":["1","2"],"V":["2"],"p":["2"],"p.E":"2"},"Ba":{"O":["2"],"x":["2"],"kK":["1","2"],"V":["2"],"p":["2"]},"cu":{"Ba":["1","2"],"O":["2"],"x":["2"],"kK":["1","2"],"V":["2"],"p":["2"],"p.E":"2","O.E":"2"},"n5":{"aq":["3","4"],"ay":["3","4"],"aq.V":"4","aq.K":"3"},"j_":{"bA":[]},"fn":{"O":["q"],"x":["q"],"V":["q"],"p":["q"],"O.E":"q"},"V":{"p":["1"]},"bl":{"V":["1"],"p":["1"]},"fF":{"bl":["1"],"V":["1"],"p":["1"],"p.E":"1","bl.E":"1"},"d3":{"p":["2"],"p.E":"2"},"nj":{"d3":["1","2"],"V":["2"],"p":["2"],"p.E":"2"},"az":{"bl":["2"],"V":["2"],"p":["2"],"p.E":"2","bl.E":"2"},"au":{"p":["1"],"p.E":"1"},"hH":{"p":["2"],"p.E":"2"},"oO":{"p":["1"],"p.E":"1"},"ww":{"oO":["1"],"V":["1"],"p":["1"],"p.E":"1"},"ku":{"p":["1"],"p.E":"1"},"qm":{"ku":["1"],"V":["1"],"p":["1"],"p.E":"1"},"zZ":{"p":["1"],"p.E":"1"},"jS":{"V":["1"],"p":["1"],"p.E":"1"},"nx":{"p":["1"],"p.E":"1"},"fI":{"p":["1"],"p.E":"1"},"tH":{"O":["1"],"x":["1"],"V":["1"],"p":["1"]},"ch":{"bl":["1"],"V":["1"],"p":["1"],"p.E":"1","bl.E":"1"},"tm":{"oN":[]},"nc":{"kG":["1","2"],"r6":["1","2"],"DN":["1","2"],"ay":["1","2"]},"q9":{"ay":["1","2"]},"bd":{"q9":["1","2"],"ay":["1","2"]},"Bf":{"p":["1"],"p.E":"1"},"bI":{"q9":["1","2"],"ay":["1","2"]},"xc":{"jX":[]},"nQ":{"jX":[]},"yh":{"ms":[],"ke":[],"bA":[]},"HW":{"ke":[],"bA":[]},"M4":{"bA":[]},"II":{"ce":[]},"Dn":{"c7":[]},"cb":{"jX":[]},"Gj":{"jX":[]},"Gk":{"jX":[]},"LD":{"jX":[]},"Lr":{"jX":[]},"pW":{"jX":[]},"Kx":{"bA":[]},"dh":{"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"b3":{"V":["1"],"p":["1"],"p.E":"1"},"nT":{"aqv":[]},"uq":{"JW":[],"o2":[]},"Mq":{"p":["JW"],"p.E":"JW"},"tg":{"o2":[]},"Rl":{"p":["o2"],"p.E":"o2"},"o6":{"pZ":[]},"dj":{"cG":[]},"y6":{"dj":[],"c1":[],"cG":[]},"r9":{"b6":["1"],"dj":[],"cG":[],"aY":["1"]},"lN":{"O":["J"],"b6":["J"],"x":["J"],"dj":[],"V":["J"],"cG":[],"aY":["J"],"p":["J"]},"fw":{"O":["q"],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"]},"y7":{"lN":[],"O":["J"],"YZ":[],"b6":["J"],"x":["J"],"dj":[],"V":["J"],"cG":[],"aY":["J"],"p":["J"],"O.E":"J"},"Iy":{"lN":[],"O":["J"],"Z_":[],"b6":["J"],"x":["J"],"dj":[],"V":["J"],"cG":[],"aY":["J"],"p":["J"],"O.E":"J"},"Iz":{"fw":[],"O":["q"],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"y8":{"fw":[],"O":["q"],"a0x":[],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"IA":{"fw":[],"O":["q"],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"IB":{"fw":[],"O":["q"],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"y9":{"fw":[],"O":["q"],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"ya":{"fw":[],"O":["q"],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"o7":{"fw":[],"O":["q"],"cQ":[],"b6":["q"],"x":["q"],"dj":[],"V":["q"],"cG":[],"aY":["q"],"p":["q"],"O.E":"q"},"DI":{"ff":[]},"NY":{"bA":[]},"DJ":{"ms":[],"bA":[]},"a4":{"a7":["1"]},"ue":{"iP":["1"]},"DF":{"LW":[]},"Dw":{"p":["1"],"p.E":"1"},"F9":{"bA":[]},"aI":{"tU":["1"]},"Dv":{"tU":["1"]},"uL":{"iP":["1"]},"mt":{"uL":["1"],"iP":["1"]},"jz":{"uM":["1"],"d_":["1"],"d_.T":"1"},"tW":{"jy":["1"],"ky":["1"]},"jy":{"ky":["1"]},"uM":{"d_":["1"]},"BH":{"uM":["1"],"d_":["1"],"d_.T":"1"},"By":{"iP":["1"]},"uJ":{"jy":["2"],"ky":["2"]},"uN":{"ie":["1","2"]},"B8":{"d_":["2"],"d_.T":"2"},"Dq":{"uN":["1","2"],"ie":["1","2"]},"ef":{"aw":["1","2"]},"pc":{"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"BN":{"pc":["1","2"],"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"pd":{"V":["1"],"p":["1"],"p.E":"1"},"C6":{"dh":["1","2"],"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"uo":{"dh":["1","2"],"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"mx":{"pm":["1"],"cF":["1"],"b0":["1"],"V":["1"],"p":["1"],"cF.E":"1"},"hq":{"pm":["1"],"cF":["1"],"b0":["1"],"V":["1"],"p":["1"],"cF.E":"1"},"xd":{"p":["1"]},"xy":{"p":["1"],"p.E":"1"},"xz":{"O":["1"],"x":["1"],"V":["1"],"p":["1"]},"O":{"x":["1"],"V":["1"],"p":["1"]},"xN":{"aq":["1","2"],"ay":["1","2"]},"aq":{"ay":["1","2"]},"Cc":{"V":["2"],"p":["2"],"p.E":"2"},"r6":{"ay":["1","2"]},"kG":{"r6":["1","2"],"DN":["1","2"],"ay":["1","2"]},"Bn":{"Bo":["1"],"akg":["1"]},"Bp":{"Bo":["1"]},"wp":{"V":["1"],"p":["1"],"p.E":"1"},"xB":{"bl":["1"],"V":["1"],"p":["1"],"p.E":"1","bl.E":"1"},"pm":{"cF":["1"],"b0":["1"],"V":["1"],"p":["1"]},"dU":{"pm":["1"],"cF":["1"],"b0":["1"],"V":["1"],"p":["1"],"cF.E":"1"},"A7":{"aq":["1","2"],"ay":["1","2"],"aq.V":"2","aq.K":"1"},"kT":{"V":["1"],"p":["1"],"p.E":"1"},"pp":{"V":["2"],"p":["2"],"p.E":"2"},"Di":{"V":["aw<1,2>"],"p":["aw<1,2>"],"p.E":"aw<1,2>"},"d9":{"jD":["1","2","1"],"jD.T":"1"},"Dm":{"jD":["1","ef<1,2>","2"],"jD.T":"2"},"po":{"jD":["1","ef<1,2>","aw<1,2>"],"jD.T":"aw<1,2>"},"td":{"cF":["1"],"b0":["1"],"xf":["1"],"V":["1"],"p":["1"],"cF.E":"1"},"nk":{"na":["k","x"]},"OD":{"aq":["k","@"],"ay":["k","@"],"aq.V":"@","aq.K":"k"},"OE":{"bl":["k"],"V":["k"],"p":["k"],"p.E":"k","bl.E":"k"},"Fg":{"na":["x","k"]},"Fh":{"jO":["x","k"],"ie":["x","k"]},"jO":{"ie":["1","2"]},"xk":{"bA":[]},"HY":{"bA":[]},"HX":{"na":["D?","k"]},"I_":{"jO":["D?","k"],"ie":["D?","k"]},"HZ":{"jO":["k","D?"],"ie":["k","D?"]},"Mb":{"nk":[],"na":["k","x"]},"Mc":{"jO":["k","x"],"ie":["k","x"]},"AT":{"jO":["x","k"],"ie":["x","k"]},"df":{"bh":["df"]},"J":{"br":[],"bh":["br"]},"aP":{"bh":["aP"]},"q":{"br":[],"bh":["br"]},"x":{"V":["1"],"p":["1"]},"br":{"bh":["br"]},"JW":{"o2":[]},"b0":{"V":["1"],"p":["1"]},"k":{"bh":["k"]},"NX":{"I":[]},"mU":{"bA":[]},"ms":{"bA":[]},"IH":{"bA":[]},"fQ":{"bA":[]},"rp":{"bA":[]},"HN":{"bA":[]},"ke":{"bA":[]},"M6":{"bA":[]},"tG":{"bA":[]},"kx":{"bA":[]},"Go":{"bA":[]},"IR":{"bA":[]},"Ab":{"bA":[]},"Gy":{"bA":[]},"NZ":{"ce":[]},"h0":{"ce":[]},"Rp":{"c7":[]},"DR":{"M7":[]},"hr":{"M7":[]},"Nu":{"M7":[]},"ad":{"am":[],"a6":[]},"n2":{"ad":[],"am":[],"a6":[]},"am":{"a6":[]},"fq":{"mX":[]},"jW":{"ad":[],"am":[],"a6":[]},"k4":{"ah":[]},"lK":{"ad":[],"am":[],"a6":[]},"eK":{"ah":[]},"kj":{"eK":[],"ah":[]},"fy":{"ah":[]},"mr":{"ah":[]},"ug":{"j4":[]},"F0":{"ad":[],"am":[],"a6":[]},"F6":{"ad":[],"am":[],"a6":[]},"pU":{"ad":[],"am":[],"a6":[]},"Fl":{"ah":[]},"mY":{"ad":[],"am":[],"a6":[]},"Fw":{"ad":[],"am":[],"a6":[]},"iI":{"a6":[]},"Gn":{"ah":[]},"qb":{"c4":[]},"qd":{"fE":[]},"wj":{"ad":[],"am":[],"a6":[]},"iO":{"a6":[]},"wn":{"O":["jf
"],"x":["jf
"],"b6":["jf
"],"V":["jf
"],"p":["jf
"],"aY":["jf
"],"O.E":"jf
"},"wo":{"jf":["br"]},"GQ":{"O":["k"],"x":["k"],"b6":["k"],"V":["k"],"p":["k"],"aY":["k"],"O.E":"k"},"N2":{"O":["am"],"x":["am"],"V":["am"],"p":["am"],"O.E":"am"},"ub":{"O":["1"],"x":["1"],"V":["1"],"p":["1"],"O.E":"1"},"GT":{"ad":[],"am":[],"a6":[]},"dK":{"ah":[]},"H6":{"ah":[]},"H9":{"ad":[],"am":[],"a6":[]},"qw":{"O":["fq"],"x":["fq"],"b6":["fq"],"V":["fq"],"p":["fq"],"aY":["fq"],"O.E":"fq"},"nF":{"O":["a6"],"x":["a6"],"b6":["a6"],"V":["a6"],"p":["a6"],"aY":["a6"],"O.E":"a6"},"wZ":{"iO":[],"a6":[]},"HH":{"ad":[],"am":[],"a6":[]},"nK":{"ad":[],"am":[],"a6":[]},"nP":{"ad":[],"am":[],"a6":[]},"xr":{"ad":[],"am":[],"a6":[]},"xw":{"ad":[],"am":[],"a6":[]},"Ig":{"ad":[],"am":[],"a6":[]},"r8":{"ah":[]},"Im":{"ah":[]},"In":{"aq":["k","@"],"ay":["k","@"],"aq.V":"@","aq.K":"k"},"Io":{"ah":[]},"Ip":{"aq":["k","@"],"ay":["k","@"],"aq.V":"@","aq.K":"k"},"Iq":{"O":["hT"],"x":["hT"],"b6":["hT"],"V":["hT"],"p":["hT"],"aY":["hT"],"O.E":"hT"},"dE":{"O":["a6"],"x":["a6"],"V":["a6"],"p":["a6"],"O.E":"a6"},"ra":{"O":["a6"],"x":["a6"],"b6":["a6"],"V":["a6"],"p":["a6"],"aY":["a6"],"O.E":"a6"},"IK":{"ad":[],"am":[],"a6":[]},"IS":{"ad":[],"am":[],"a6":[]},"yw":{"ad":[],"am":[],"a6":[]},"Jd":{"ad":[],"am":[],"a6":[]},"Jw":{"O":["i_"],"x":["i_"],"b6":["i_"],"V":["i_"],"p":["i_"],"aY":["i_"],"O.E":"i_"},"JI":{"ah":[]},"Kv":{"aq":["k","@"],"ay":["k","@"],"aq.V":"@","aq.K":"k"},"zD":{"ad":[],"am":[],"a6":[]},"KK":{"ad":[],"am":[],"a6":[]},"KS":{"jx":[]},"Le":{"ad":[],"am":[],"a6":[]},"Li":{"O":["i9"],"x":["i9"],"b6":["i9"],"V":["i9"],"p":["i9"],"aY":["i9"],"O.E":"i9"},"Lo":{"O":["ib"],"x":["ib"],"b6":["ib"],"V":["ib"],"p":["ib"],"aY":["ib"],"O.E":"ib"},"Lp":{"ah":[]},"Ae":{"aq":["k","k"],"ay":["k","k"],"aq.V":"k","aq.K":"k"},"Ag":{"ad":[],"am":[],"a6":[]},"Am":{"ad":[],"am":[],"a6":[]},"LA":{"ad":[],"am":[],"a6":[]},"LB":{"ad":[],"am":[],"a6":[]},"tq":{"ad":[],"am":[],"a6":[]},"ts":{"ad":[],"am":[],"a6":[]},"LK":{"ah":[]},"LR":{"O":["fG"],"x":["fG"],"b6":["fG"],"V":["fG"],"p":["fG"],"aY":["fG"],"O.E":"fG"},"LS":{"O":["ii"],"x":["ii"],"b6":["ii"],"V":["ii"],"p":["ii"],"aY":["ii"],"O.E":"ii"},"AM":{"O":["ij"],"x":["ij"],"b6":["ij"],"V":["ij"],"p":["ij"],"aY":["ij"],"O.E":"ij"},"oY":{"ah":[]},"p1":{"eK":[],"ah":[]},"tM":{"a6":[]},"Nj":{"O":["c4"],"x":["c4"],"b6":["c4"],"V":["c4"],"p":["c4"],"aY":["c4"],"O.E":"c4"},"Bm":{"jf":["br"]},"Oi":{"O":["hJ?"],"x":["hJ?"],"b6":["hJ?"],"V":["hJ?"],"p":["hJ?"],"aY":["hJ?"],"O.E":"hJ?"},"Cm":{"O":["a6"],"x":["a6"],"b6":["a6"],"V":["a6"],"p":["a6"],"aY":["a6"],"O.E":"a6"},"Re":{"O":["ic"],"x":["ic"],"b6":["ic"],"V":["ic"],"p":["ic"],"aY":["ic"],"O.E":"ic"},"Rs":{"O":["fE"],"x":["fE"],"b6":["fE"],"V":["fE"],"p":["fE"],"aY":["fE"],"O.E":"fE"},"MH":{"aq":["k","k"],"ay":["k","k"]},"Bw":{"aq":["k","k"],"ay":["k","k"],"aq.V":"k","aq.K":"k"},"mv":{"d_":["1"],"d_.T":"1"},"p9":{"mv":["1"],"d_":["1"],"d_.T":"1"},"Bz":{"ky":["1"]},"yf":{"j4":[]},"Dd":{"j4":[]},"RB":{"j4":[]},"Rt":{"j4":[]},"Hb":{"O":["am"],"x":["am"],"V":["am"],"p":["am"],"O.E":"am"},"Md":{"ah":[]},"nU":{"O":["1"],"x":["1"],"V":["1"],"p":["1"],"O.E":"1"},"IG":{"ce":[]},"jf":{"aKY":["1"]},"q4":{"aH":[],"am":[],"a6":[]},"qg":{"aH":[],"am":[],"a6":[]},"qs":{"aH":[],"am":[],"a6":[]},"qt":{"aH":[],"am":[],"a6":[]},"qu":{"aH":[],"am":[],"a6":[]},"qv":{"aH":[],"am":[],"a6":[]},"qy":{"aH":[],"am":[],"a6":[]},"h1":{"aH":[],"am":[],"a6":[]},"e1":{"aH":[],"am":[],"a6":[]},"I9":{"O":["k6"],"x":["k6"],"V":["k6"],"p":["k6"],"O.E":"k6"},"IJ":{"O":["kf"],"x":["kf"],"V":["kf"],"p":["kf"],"O.E":"kf"},"rg":{"aH":[],"am":[],"a6":[]},"rB":{"aH":[],"am":[],"a6":[]},"Lu":{"O":["k"],"x":["k"],"V":["k"],"p":["k"],"O.E":"k"},"aH":{"am":[],"a6":[]},"oM":{"aH":[],"am":[],"a6":[]},"M1":{"O":["kC"],"x":["kC"],"V":["kC"],"p":["kC"],"O.E":"kC"},"c1":{"cG":[]},"aBC":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"cQ":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"aE0":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"aBB":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"aDZ":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"a0x":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"aE_":{"x":["q"],"V":["q"],"p":["q"],"cG":[]},"YZ":{"x":["J"],"V":["J"],"p":["J"],"cG":[]},"Z_":{"x":["J"],"V":["J"],"p":["J"],"cG":[]},"i0":{"I":[]},"jp":{"I":[]},"tt":{"I":[]},"kA":{"I":[]},"tr":{"I":[]},"vY":{"I":[]},"yy":{"I":[]},"r_":{"I":[]},"Af":{"I":[]},"Lw":{"I":[]},"yv":{"I":[]},"mW":{"I":[]},"n8":{"I":[]},"Fn":{"I":[]},"nm":{"I":[]},"x4":{"I":[]},"mT":{"I":[]},"ja":{"I":[]},"rj":{"I":[]},"Jt":{"I":[]},"LG":{"I":[]},"At":{"I":[]},"vH":{"I":[]},"Fv":{"I":[]},"AB":{"I":[]},"KV":{"ns":[]},"vJ":{"I":[]},"Fa":{"aq":["k","@"],"ay":["k","@"],"aq.V":"@","aq.K":"k"},"e9":{"aoz":[],"p":["k"],"p.E":"k"},"bc":{"ay":["2","3"]},"e_":{"ce":[]},"ll":{"I":[]},"nR":{"I":[]},"HR":{"O":["iW"],"x":["iW"],"V":["iW"],"p":["iW"],"O.E":"iW"},"ou":{"I":[]},"xA":{"I":[]},"nG":{"a1":[],"h":[]},"Oq":{"aa":["nG"]},"wg":{"iW":[]},"ws":{"a1":[],"h":[]},"Bq":{"aa":["ws"]},"xF":{"a1":[],"h":[]},"OR":{"aa":["xF"]},"xH":{"a1":[],"h":[]},"OT":{"aa":["xH"]},"xI":{"a1":[],"h":[]},"OU":{"aa":["xI"]},"o0":{"a1":[],"h":[]},"Cb":{"aa":["o0"]},"qY":{"a1":[],"h":[]},"OG":{"aa":["qY"]},"qX":{"I":[]},"eW":{"I":[]},"bv":{"at":[]},"p5":{"I":[]},"l8":{"bv":["J"],"at":[]},"vl":{"I":[]},"nd":{"bv":["J"],"at":[]},"Mr":{"bv":["J"],"at":[]},"Ms":{"bv":["J"],"at":[]},"yO":{"bv":["J"],"at":[]},"i4":{"bv":["J"],"at":[]},"DH":{"I":[]},"oW":{"bv":["J"],"at":[]},"q8":{"bv":["1"],"at":[]},"vo":{"bv":["1"],"at":[]},"C5":{"fV":[]},"zy":{"fV":[]},"ep":{"fV":[]},"Az":{"fV":[]},"f_":{"fV":[]},"qz":{"fV":[]},"Nv":{"fV":[]},"ar":{"an":["1"],"an.T":"1","ar.T":"1"},"de":{"ar":["E?"],"an":["E?"],"an.T":"E?","ar.T":"E?"},"aC":{"bv":["1"],"at":[]},"eT":{"an":["1"],"an.T":"1"},"zv":{"ar":["1"],"an":["1"],"an.T":"1","ar.T":"1"},"z2":{"ar":["w?"],"an":["w?"],"an.T":"w?","ar.T":"w?"},"ly":{"ar":["q"],"an":["q"],"an.T":"q","ar.T":"q"},"fW":{"an":["J"],"an.T":"J"},"AO":{"an":["1"],"an.T":"1"},"dZ":{"E":[]},"w5":{"cK":[]},"Nn":{"f6":["Wm"],"f6.T":"Wm"},"GF":{"Wm":[]},"tY":{"a1":[],"h":[]},"Gt":{"aN":[],"h":[]},"tZ":{"aa":["tY<1>"]},"ip":{"iL":[]},"qe":{"a1":[],"h":[]},"Bj":{"je":["qe"],"aa":["qe"]},"RF":{"at":[]},"BP":{"b8":[],"aS":[],"h":[]},"Gw":{"aN":[],"h":[]},"mu":{"hD":["x"],"em":[]},"qp":{"mu":[],"hD":["x"],"em":[]},"H0":{"mu":[],"hD":["x"],"em":[]},"H_":{"mu":[],"hD":["x"],"em":[]},"nr":{"mU":[],"bA":[]},"O7":{"em":[]},"jN":{"at":[]},"pi":{"at":[]},"d7":{"at":[]},"qh":{"I":[]},"iN":{"I":[]},"hD":{"em":[]},"we":{"em":[]},"GL":{"em":[]},"ed":{"f5":[],"ed.T":"1"},"Ie":{"f5":[]},"oZ":{"f5":[]},"xu":{"h9":[]},"aM":{"p":["1"],"p.E":"1"},"wX":{"p":["1"],"p.E":"1"},"dn":{"I":[]},"d0":{"a7":["1"]},"wU":{"I":[]},"qF":{"a9":[]},"wN":{"bs":[]},"ex":{"bf":[]},"kk":{"bf":[]},"lU":{"bf":[]},"lV":{"bf":[]},"ki":{"bf":[]},"jc":{"bf":[]},"Ml":{"bf":[]},"S6":{"bf":[]},"og":{"bf":[]},"S2":{"og":[],"bf":[]},"oj":{"bf":[]},"Sa":{"oj":[],"bf":[]},"S8":{"kk":[],"bf":[]},"S5":{"lU":[],"bf":[]},"S7":{"lV":[],"bf":[]},"S4":{"ki":[],"bf":[]},"oi":{"bf":[]},"S9":{"oi":[],"bf":[]},"ol":{"bf":[]},"Sc":{"ol":[],"bf":[]},"ok":{"jc":[],"bf":[]},"Sb":{"ok":[],"jc":[],"bf":[]},"oh":{"bf":[]},"S3":{"oh":[],"bf":[]},"hI":{"cJ":[],"cV":[]},"mw":{"I":[]},"Ci":{"uQ":[]},"uw":{"uQ":[]},"f7":{"cJ":[],"cV":[]},"il":{"cJ":[],"cV":[]},"hL":{"cJ":[],"cV":[]},"hZ":{"cJ":[],"cV":[]},"u3":{"I":[]},"wq":{"cJ":[],"cV":[]},"hE":{"cJ":[],"cV":[]},"cJ":{"cV":[]},"wr":{"I":[]},"yl":{"cJ":[],"cV":[]},"qG":{"I":[]},"rk":{"cJ":[],"cV":[]},"fe":{"cJ":[],"cV":[]},"Fi":{"cJ":[],"cV":[]},"p7":{"cV":[]},"N5":{"qE":[]},"qJ":{"jw":[]},"xQ":{"a1":[],"h":[]},"LU":{"I":[]},"Cd":{"aa":["xQ"]},"vt":{"a1":[],"h":[]},"PY":{"L":[]},"B2":{"aa":["vt"]},"MD":{"aZ":[],"al":[],"h":[]},"Qe":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"r7":{"ar":["w?"],"an":["w?"],"an.T":"w?","ar.T":"w?"},"xT":{"ar":["m"],"an":["m"],"an.T":"m","ar.T":"m"},"p8":{"I":[]},"Fe":{"aN":[],"h":[]},"Fd":{"aN":[],"h":[]},"aBY":{"dL":[],"b8":[],"aS":[],"h":[]},"vC":{"a1":[],"h":[]},"Fp":{"I":[]},"pV":{"I":[]},"MQ":{"aN":[],"h":[]},"RQ":{"aN":[],"h":[]},"RR":{"aN":[],"h":[]},"OJ":{"aN":[],"h":[]},"B7":{"aa":["vC"]},"MK":{"aN":[],"h":[]},"Q4":{"at":[]},"azP":{"b8":[],"aS":[],"h":[]},"z0":{"a1":[],"h":[]},"Q8":{"aa":["z0"]},"Oy":{"aZ":[],"al":[],"h":[]},"CO":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"BZ":{"aU":["1?"]},"OO":{"aU":["ds?"]},"ON":{"aU":["eM?"]},"vL":{"a1":[],"h":[]},"MU":{"aa":["vL"]},"P8":{"cW":[],"aU":["cW"]},"Oz":{"aZ":[],"al":[],"h":[]},"CP":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Fx":{"I":[]},"FD":{"aN":[],"h":[]},"C3":{"aU":["1"]},"lH":{"lf":["q"],"E":[],"lf.T":"q"},"C2":{"aU":["1"]},"pP":{"aN":[],"h":[]},"GM":{"aN":[],"h":[]},"wf":{"hU":["1"],"dC":["1"],"bS":["1"]},"ng":{"aN":[],"h":[]},"aAH":{"dL":[],"b8":[],"aS":[],"h":[]},"GS":{"a1":[],"h":[]},"NR":{"aU":["E?"]},"NT":{"aU":["E?"]},"NV":{"aU":["E?"]},"NS":{"aU":["J"]},"NU":{"aU":["cW?"]},"aAU":{"dL":[],"b8":[],"aS":[],"h":[]},"wM":{"b8":[],"aS":[],"h":[]},"u6":{"I":[]},"Hf":{"aN":[],"h":[]},"N1":{"aZ":[],"al":[],"h":[]},"CG":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"B1":{"bv":["1"],"at":[]},"HJ":{"aN":[],"h":[]},"lw":{"lz":[],"k_":[]},"x9":{"lz":[],"k_":[]},"xa":{"lz":[],"k_":[]},"lz":{"k_":[]},"CB":{"b8":[],"aS":[],"h":[]},"BS":{"a1":[],"h":[]},"pf":{"I":[]},"qR":{"aN":[],"h":[]},"qQ":{"aN":[],"h":[]},"BR":{"aa":["BS"],"alv":[]},"h6":{"bG":[]},"js":{"h6":[],"bG":[]},"B6":{"a1":[],"h":[]},"BL":{"a1":[],"h":[]},"dF":{"I":[]},"nO":{"a1":[],"h":[]},"BT":{"at":[]},"BU":{"ar":["h6"],"an":["h6"],"an.T":"h6","ar.T":"h6"},"Ow":{"at":[]},"MN":{"aa":["B6"]},"QU":{"a1":[],"h":[]},"BM":{"aa":["BL"]},"qC":{"I":[]},"CJ":{"oK":["dF"],"B":[],"u":[],"H":[],"a9":[]},"Ny":{"mj":["dF"],"al":[],"h":[],"mj.S":"dF"},"BV":{"aa":["nO"]},"k9":{"I":[]},"xP":{"a1":[],"h":[]},"CN":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"oF":{"ar":["bG?"],"an":["bG?"],"an.T":"bG?","ar.T":"bG?"},"Ce":{"a1":[],"h":[]},"P0":{"aa":["xP"]},"Ov":{"aZ":[],"al":[],"h":[]},"OY":{"aa":["Ce"]},"Db":{"aN":[],"h":[]},"QV":{"at":[]},"OZ":{"f6":["xS"],"f6.T":"xS"},"GG":{"xS":[]},"cp":{"I":[]},"Ii":{"cW":[],"aU":["cW"]},"Bx":{"cW":[],"aU":["cW"]},"ee":{"aU":["1"]},"fh":{"aU":["1"]},"C1":{"aU":["1"]},"o3":{"xU":["1"],"hU":["1"],"dC":["1"],"bS":["1"]},"ps":{"aN":[],"h":[]},"pt":{"aN":[],"h":[]},"Sp":{"aN":[],"h":[]},"Mk":{"kg":[]},"Gu":{"kg":[]},"ld":{"a1":[],"h":[]},"rs":{"a1":[],"h":[]},"Mo":{"I":[]},"JH":{"a1":[],"h":[]},"tQ":{"at":[]},"Bb":{"aa":["ld"]},"Qa":{"at":[]},"Qb":{"aa":["ld"]},"aCN":{"dL":[],"b8":[],"aS":[],"h":[]},"C0":{"aU":["1"]},"z3":{"a1":[],"h":[]},"kQ":{"I":[]},"JV":{"I":[]},"z4":{"aa":["z3"]},"zB":{"a1":[],"h":[]},"D_":{"b8":[],"aS":[],"h":[]},"BB":{"a1":[],"h":[]},"zz":{"a1":[],"h":[]},"rA":{"aa":["zz"]},"aEV":{"a1":[],"h":[]},"eU":{"I":[]},"zC":{"aa":["zB"]},"QJ":{"at":[]},"B5":{"aF":[]},"MM":{"aN":[],"h":[]},"BC":{"aa":["BB"]},"QK":{"b8":[],"aS":[],"h":[]},"ur":{"a1":[],"h":[]},"KI":{"aN":[],"h":[]},"P_":{"je":["ur"],"aa":["ur"]},"C4":{"aU":["1"]},"A_":{"a1":[],"h":[]},"io":{"aW":[]},"R4":{"I":[]},"De":{"aa":["A_"]},"R2":{"al":[],"h":[]},"uE":{"B":[],"u":[],"H":[],"a9":[]},"pn":{"I":[]},"Sj":{"al":[],"h":[]},"Qv":{"B":[],"u":[],"H":[],"a9":[]},"aDp":{"dL":[],"b8":[],"aS":[],"h":[]},"KT":{"I":[]},"i8":{"I":[]},"tb":{"a1":[],"h":[]},"Df":{"aa":["tb"]},"Cg":{"a1":[],"h":[]},"Rv":{"I":[]},"Ly":{"aN":[],"h":[]},"Ch":{"aa":["Cg"]},"Du":{"at":[]},"aDE":{"b8":[],"aS":[],"h":[]},"C_":{"aU":["1"]},"BY":{"aU":["E?"]},"Ak":{"aN":[],"h":[]},"Aq":{"a1":[],"h":[]},"DA":{"aa":["Aq"]},"RE":{"at":[]},"aDM":{"dL":[],"b8":[],"aS":[],"h":[]},"BQ":{"dL":[],"b8":[],"aS":[],"h":[]},"oT":{"ar":["hn"],"an":["hn"],"an.T":"hn","ar.T":"hn"},"vj":{"a1":[],"h":[]},"tz":{"aN":[],"h":[]},"Mx":{"aa":["vj"]},"lI":{"I":[]},"tC":{"at":[]},"AJ":{"a1":[],"h":[]},"oV":{"aa":["AJ"]},"RU":{"aN":[],"h":[]},"aDU":{"dL":[],"b8":[],"aS":[],"h":[]},"AL":{"I":[]},"KD":{"I":[]},"rt":{"I":[]},"vy":{"I":[]},"AU":{"I":[]},"mV":{"I":[]},"yu":{"dR":[]},"Rx":{"at":[]},"eM":{"bG":[]},"vA":{"I":[]},"hp":{"bG":[]},"vI":{"I":[]},"Fr":{"bG":[]},"dJ":{"bG":[]},"ek":{"bG":[]},"dX":{"iL":[]},"Fs":{"I":[]},"fU":{"m8":[]},"dt":{"eM":[],"bG":[]},"lf":{"E":[]},"nL":{"I":[]},"as":{"cd":[]},"f2":{"cd":[]},"mz":{"cd":[]},"F8":{"hP":["iC"]},"vu":{"hP":["iC"],"hP.T":"iC"},"kh":{"f4":[]},"d6":{"eM":[],"bG":[]},"ey":{"eM":[],"bG":[]},"eO":{"eM":[],"bG":[]},"eA":{"eM":[],"bG":[]},"eB":{"eM":[],"bG":[]},"oR":{"I":[]},"Ay":{"I":[]},"mp":{"f4":[],"kb":[],"a9":[]},"te":{"I":[]},"rw":{"dR":[],"a9":[]},"iE":{"hK":[]},"B":{"u":[],"H":[],"a9":[]},"pX":{"fs":["B"]},"fm":{"cw":[]},"w3":{"fm":[],"eG":["1"],"cw":[]},"ph":{"I":[]},"hd":{"fm":[],"eG":["B"],"cw":[]},"z9":{"cD":["B","hd"],"B":[],"ac":["B","hd"],"u":[],"H":[],"a9":[],"ac.1":"hd","cD.1":"hd","ac.0":"B"},"Gx":{"at":[]},"za":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"m0":{"at":[]},"oq":{"cD":["B","eu"],"B":[],"ac":["B","eu"],"u":[],"H":[],"a9":[],"ac.1":"eu","cD.1":"eu","ac.0":"B"},"Qg":{"B":[],"u":[],"H":[],"a9":[]},"DB":{"m0":[],"at":[]},"BD":{"m0":[],"at":[]},"tV":{"m0":[],"at":[]},"zc":{"B":[],"u":[],"H":[],"a9":[]},"f3":{"fm":[],"eG":["B"],"cw":[]},"wK":{"I":[]},"xL":{"I":[]},"xK":{"I":[]},"li":{"I":[]},"zd":{"cD":["B","f3"],"B":[],"ac":["B","f3"],"u":[],"H":[],"a9":[],"ac.1":"f3","cD.1":"f3","ac.0":"B"},"zf":{"B":[],"u":[],"H":[],"a9":[]},"xs":{"H":[]},"dY":{"H":[]},"w0":{"dY":[],"H":[]},"Jq":{"H":[]},"Ji":{"H":[]},"j5":{"dY":[],"H":[]},"w_":{"dY":[],"H":[]},"vZ":{"dY":[],"H":[]},"tF":{"j5":[],"dY":[],"H":[]},"ym":{"j5":[],"dY":[],"H":[]},"yG":{"dY":[],"H":[]},"nX":{"dY":[],"H":[]},"wS":{"dY":[],"H":[]},"vr":{"dY":[],"H":[]},"Iu":{"at":[]},"u":{"H":[],"a9":[]},"eG":{"cw":[]},"QD":{"pg":[]},"Rw":{"pg":[]},"eu":{"fm":[],"eG":["B"],"cw":[]},"lT":{"oB":[]},"zk":{"cD":["B","eu"],"B":[],"ac":["B","eu"],"u":[],"H":[],"a9":[],"ac.1":"eu","cD.1":"eu","ac.0":"B"},"zl":{"B":[],"u":[],"H":[],"a9":[]},"oE":{"at":[]},"z5":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"ko":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Ki":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"qI":{"I":[]},"zm":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"z8":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Ka":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zh":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Kd":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K_":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"w7":{"at":[]},"uC":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K3":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K2":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K1":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"CS":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Ke":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Kf":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"wb":{"I":[]},"K4":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Ko":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K7":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Kg":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Kc":{"B":[],"aD":["B"],"u":[],"kb":[],"H":[],"a9":[]},"Kj":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"ze":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zi":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zn":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K0":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Kb":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K5":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K8":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K9":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"K6":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"z7":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zo":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zj":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"JZ":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Kh":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zb":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"t9":{"hK":[]},"kv":{"mi":[],"eG":["cg"],"cw":[]},"cg":{"u":[],"H":[],"a9":[]},"wV":{"I":[]},"La":{"fs":["cg"]},"A1":{"cw":[]},"mi":{"cw":[]},"Kk":{"m2":[],"cg":[],"ac":["B","fD"],"u":[],"H":[],"a9":[],"ac.1":"fD","ac.0":"B"},"Kl":{"m2":[],"cg":[],"ac":["B","fD"],"u":[],"H":[],"a9":[]},"Km":{"m2":[],"cg":[],"ac":["B","fD"],"u":[],"H":[],"a9":[],"ac.1":"fD","ac.0":"B"},"iZ":{"cw":[]},"fD":{"eG":["B"],"iZ":[],"cw":[]},"m2":{"cg":[],"ac":["B","fD"],"u":[],"H":[],"a9":[]},"zp":{"cg":[],"aD":["cg"],"u":[],"H":[],"a9":[]},"Kn":{"cg":[],"aD":["cg"],"u":[],"H":[],"a9":[]},"dl":{"fm":[],"eG":["B"],"cw":[]},"Aa":{"I":[]},"ru":{"cD":["B","dl"],"B":[],"ac":["B","dl"],"u":[],"H":[],"a9":[],"ac.1":"dl","cD.1":"dl","ac.0":"B"},"zg":{"cD":["B","dl"],"B":[],"ac":["B","dl"],"u":[],"H":[],"a9":[],"ac.1":"dl","cD.1":"dl","ac.0":"B"},"zq":{"aD":["B"],"u":[],"H":[],"a9":[]},"vM":{"I":[]},"rv":{"jC":["1"],"B":[],"ac":["cg","1"],"JY":[],"u":[],"H":[],"a9":[]},"zr":{"jC":["kv"],"B":[],"ac":["cg","kv"],"JY":[],"u":[],"H":[],"a9":[],"ac.1":"kv","jC.0":"kv","ac.0":"cg"},"ev":{"at":[]},"rC":{"I":[]},"m6":{"I":[]},"oU":{"a7":["~"]},"AA":{"ce":[]},"c6":{"H":[]},"kJ":{"bh":["kJ"]},"it":{"bh":["it"]},"kU":{"bh":["kU"]},"rL":{"bh":["rL"]},"QR":{"em":[]},"rK":{"at":[]},"GA":{"I":[]},"ob":{"bh":["rL"]},"rM":{"dR":[]},"nW":{"lB":[]},"lC":{"lB":[]},"xp":{"lB":[]},"xm":{"I":[]},"yH":{"ce":[]},"y1":{"ce":[]},"NA":{"cW":[]},"Ry":{"y2":[]},"mk":{"cW":[]},"lD":{"I":[]},"f8":{"I":[]},"kn":{"i3":[]},"z_":{"i3":[]},"zu":{"at":[]},"Aj":{"I":[]},"LI":{"mn":[]},"LH":{"mn":[]},"LJ":{"mn":[]},"tu":{"mn":[]},"xX":{"I":[]},"Hc":{"oQ":[]},"fC":{"I":[]},"A3":{"I":[]},"A4":{"I":[]},"et":{"I":[]},"LF":{"I":[]},"qB":{"I":[]},"mP":{"a1":[],"h":[]},"AY":{"b8":[],"aS":[],"h":[]},"nw":{"a1":[],"h":[]},"aAK":{"aW":[]},"aAJ":{"aW":[]},"pO":{"aW":[]},"pY":{"aW":[]},"fY":{"aW":[]},"op":{"aW":[]},"cA":{"b_":["1"]},"c2":{"b_":["1"],"b_.T":"1"},"AZ":{"aa":["mP"]},"BF":{"aa":["nw"]},"wl":{"b_":["aW"],"b_.T":"aW"},"GN":{"b_":["fY"]},"JG":{"b_":["op"],"b_.T":"op"},"Cy":{"Ei":["1"],"cA":["1"],"uy":["1"],"b_":["1"],"b_.T":"1","cA.T":"1"},"Cz":{"Ej":["1"],"cA":["1"],"uy":["1"],"b_":["1"],"b_.T":"1","cA.T":"1"},"Bh":{"b_":["1"],"b_.T":"1"},"vq":{"aZ":[],"al":[],"h":[]},"AV":{"a1":[],"h":[]},"DU":{"aa":["AV"],"ho":[]},"vx":{"a1":[],"h":[]},"B4":{"aa":["vx"]},"I0":{"at":[]},"Pk":{"aN":[],"h":[]},"fX":{"b8":[],"aS":[],"h":[]},"q5":{"aZ":[],"al":[],"h":[]},"nb":{"aZ":[],"al":[],"h":[]},"q7":{"aZ":[],"al":[],"h":[]},"dr":{"aZ":[],"al":[],"h":[]},"xt":{"dN":["hd"],"aS":[],"h":[],"dN.T":"hd"},"ne":{"eL":[],"al":[],"h":[]},"om":{"dN":["dl"],"aS":[],"h":[],"dN.T":"dl"},"aAv":{"b8":[],"aS":[],"h":[]},"hN":{"aZ":[],"al":[],"h":[]},"rJ":{"aZ":[],"al":[],"h":[]},"lg":{"aZ":[],"al":[],"h":[]},"IO":{"aZ":[],"al":[],"h":[]},"w8":{"aZ":[],"al":[],"h":[]},"Ge":{"aZ":[],"al":[],"h":[]},"Gc":{"aZ":[],"al":[],"h":[]},"Jn":{"aZ":[],"al":[],"h":[]},"Jo":{"aZ":[],"al":[],"h":[]},"tD":{"aZ":[],"al":[],"h":[]},"Ht":{"aZ":[],"al":[],"h":[]},"cq":{"aZ":[],"al":[],"h":[]},"n6":{"aZ":[],"al":[],"h":[]},"w9":{"aZ":[],"al":[],"h":[]},"ks":{"aZ":[],"al":[],"h":[]},"eZ":{"aZ":[],"al":[],"h":[]},"Ia":{"aZ":[],"al":[],"h":[]},"yk":{"aZ":[],"al":[],"h":[]},"Pp":{"bm":[],"b2":[],"a0":[]},"HT":{"aZ":[],"al":[],"h":[]},"Lc":{"aZ":[],"al":[],"h":[]},"A9":{"eL":[],"al":[],"h":[]},"HP":{"eL":[],"al":[],"h":[]},"Jz":{"aN":[],"h":[]},"He":{"eL":[],"al":[],"h":[]},"Ku":{"eL":[],"al":[],"h":[]},"Gm":{"eL":[],"al":[],"h":[]},"wL":{"dN":["f3"],"aS":[],"h":[],"dN.T":"f3"},"H3":{"dN":["f3"],"aS":[],"h":[],"dN.T":"f3"},"Kq":{"eL":[],"al":[],"h":[]},"JQ":{"al":[],"h":[]},"Ic":{"aZ":[],"al":[],"h":[]},"It":{"aZ":[],"al":[],"h":[]},"hh":{"aZ":[],"al":[],"h":[]},"EW":{"aZ":[],"al":[],"h":[]},"Il":{"aZ":[],"al":[],"h":[]},"Fm":{"aZ":[],"al":[],"h":[]},"lp":{"aZ":[],"al":[],"h":[]},"HO":{"aZ":[],"al":[],"h":[]},"xq":{"aN":[],"h":[]},"jL":{"aN":[],"h":[]},"CH":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"AW":{"dR":[],"a9":[]},"or":{"al":[],"h":[]},"m1":{"bm":[],"b2":[],"a0":[]},"Mh":{"dR":[],"a9":[]},"GB":{"aZ":[],"al":[],"h":[]},"Gq":{"aN":[],"h":[]},"GI":{"a1":[],"h":[]},"fp":{"I":[]},"wi":{"a1":[],"h":[]},"u5":{"I":[]},"Bl":{"aa":["wi"]},"GO":{"aN":[],"h":[]},"qj":{"a1":[],"h":[]},"Br":{"aa":["qj"]},"wv":{"a1":[],"h":[]},"qk":{"aa":["wv"],"ho":[]},"D3":{"a1":[],"h":[]},"pl":{"kI":[],"kh":[],"f4":[]},"Dy":{"a1":[],"h":[]},"jq":{"at":[]},"Bs":{"eL":[],"al":[],"h":[]},"QL":{"aa":["D3"],"aqH":[]},"kM":{"cA":["1"],"b_":["1"],"b_.T":"1","cA.T":"1"},"DP":{"cA":["1"],"b_":["1"],"b_.T":"1","cA.T":"1"},"O0":{"cA":["H5"],"b_":["H5"],"b_.T":"H5","cA.T":"H5"},"DQ":{"cA":["1"],"b_":["1"],"b_.T":"1","cA.T":"1"},"QP":{"cA":["KJ"],"b_":["KJ"],"b_.T":"KJ","cA.T":"KJ"},"Nh":{"cA":["Gr"],"b_":["Gr"],"b_.T":"Gr","cA.T":"Gr"},"Dz":{"aa":["Dy"]},"k3":{"I":[]},"cT":{"at":[]},"nv":{"cT":[],"at":[]},"jV":{"I":[]},"AQ":{"I":[]},"Hl":{"I":[]},"wP":{"at":[]},"nu":{"a1":[],"h":[]},"BE":{"h5":["cT"],"b8":[],"aS":[],"h":[],"h5.T":"cT"},"u7":{"aa":["nu"]},"Hm":{"a1":[],"h":[]},"Oe":{"aa":["nu"]},"oX":{"I":[]},"wR":{"a1":[],"h":[]},"u9":{"b8":[],"aS":[],"h":[]},"akY":{"aW":[]},"o9":{"aW":[]},"on":{"aW":[]},"akf":{"aW":[]},"Of":{"aa":["wR"]},"Kp":{"b_":["akY"],"b_.T":"akY"},"IE":{"b_":["o9"],"b_.T":"o9"},"JB":{"b_":["on"],"b_.T":"on"},"wh":{"b_":["akf"],"b_.T":"akf"},"iR":{"f5":[]},"bC":{"iR":["1"],"f5":[]},"a1":{"h":[]},"b2":{"a0":[]},"hl":{"b2":[],"a0":[]},"h4":{"b2":[],"a0":[]},"ls":{"iR":["1"],"f5":[]},"aN":{"h":[]},"Rh":{"I":[]},"aS":{"h":[]},"dN":{"aS":[],"h":[]},"b8":{"aS":[],"h":[]},"al":{"h":[]},"I7":{"al":[],"h":[]},"aZ":{"al":[],"h":[]},"eL":{"al":[],"h":[]},"pa":{"I":[]},"H1":{"al":[],"h":[]},"w2":{"b2":[],"a0":[]},"Lq":{"b2":[],"a0":[]},"yQ":{"b2":[],"a0":[]},"od":{"b2":[],"a0":[]},"bm":{"b2":[],"a0":[]},"zw":{"bm":[],"b2":[],"a0":[]},"I6":{"bm":[],"b2":[],"a0":[]},"zT":{"bm":[],"b2":[],"a0":[]},"fv":{"bm":[],"b2":[],"a0":[]},"Pj":{"b2":[],"a0":[]},"Pl":{"h":[]},"km":{"a1":[],"h":[]},"rq":{"aa":["km"]},"co":{"nB":["1"]},"Hw":{"aN":[],"h":[]},"Ok":{"aZ":[],"al":[],"h":[]},"nE":{"I":[]},"nC":{"a1":[],"h":[]},"uf":{"aa":["nC"]},"wY":{"o8":[]},"nI":{"aN":[],"h":[]},"nJ":{"dL":[],"b8":[],"aS":[],"h":[]},"x3":{"a1":[],"h":[]},"BO":{"aa":["x3"],"ho":[]},"ni":{"ar":["cd"],"an":["cd"],"an.T":"cd","ar.T":"cd"},"n_":{"ar":["cI?"],"an":["cI?"],"an.T":"cI?","ar.T":"cI?"},"oS":{"ar":["t"],"an":["t"],"an.T":"t","ar.T":"t"},"vh":{"a1":[],"h":[]},"vg":{"a1":[],"h":[]},"ve":{"a1":[],"h":[]},"vi":{"a1":[],"h":[]},"GE":{"ar":["iL"],"an":["iL"],"an.T":"iL","ar.T":"iL"},"HM":{"a1":[],"h":[]},"qN":{"aa":["1"]},"pQ":{"aa":["1"]},"Mv":{"aa":["vh"]},"Mu":{"aa":["vg"]},"Mt":{"aa":["ve"]},"Mw":{"aa":["vi"]},"lv":{"b8":[],"aS":[],"h":[]},"x8":{"h4":[],"b2":[],"a0":[]},"h5":{"b8":[],"aS":[],"h":[]},"uj":{"h4":[],"b2":[],"a0":[]},"dL":{"b8":[],"aS":[],"h":[]},"MZ":{"aN":[],"h":[]},"lh":{"al":[],"h":[]},"un":{"bm":[],"b2":[],"a0":[]},"I5":{"lh":["aF"],"al":[],"h":[],"lh.0":"aF"},"CQ":{"fz":["aF","B"],"B":[],"aD":["B"],"u":[],"H":[],"a9":[],"fz.0":"aF"},"Ca":{"b8":[],"aS":[],"h":[]},"xD":{"a1":[],"h":[]},"So":{"f6":["AX"],"f6.T":"AX"},"GK":{"AX":[]},"OQ":{"aa":["xD"]},"hb":{"b8":[],"aS":[],"h":[]},"Cj":{"a1":[],"h":[]},"yn":{"I":[]},"IC":{"I":[]},"P1":{"aa":["Cj"],"ho":[]},"tL":{"cJ":[],"cV":[]},"Ir":{"aN":[],"h":[]},"F2":{"a1":[],"h":[]},"MB":{"nB":["tL"]},"P7":{"aN":[],"h":[]},"ID":{"aN":[],"h":[]},"uP":{"I":[]},"ov":{"I":[]},"aq0":{"i5":[]},"nD":{"b8":[],"aS":[],"h":[]},"yd":{"a1":[],"h":[]},"j3":{"aa":["yd"]},"uG":{"I":[]},"ez":{"I":[]},"Pi":{"bS":["~"]},"uv":{"mB":[]},"Cr":{"mB":[]},"Cs":{"mB":[]},"Ct":{"mB":[]},"Om":{"dy":["ay>?"],"at":[]},"cY":{"aS":[],"h":[]},"Cw":{"b2":[],"a0":[]},"j6":{"at":[]},"ux":{"a1":[],"h":[]},"Cx":{"aa":["ux"]},"yq":{"a1":[],"h":[]},"rd":{"aa":["yq"]},"RM":{"eL":[],"al":[],"h":[]},"RN":{"bm":[],"b2":[],"a0":[]},"uF":{"B":[],"ac":["B","dl"],"u":[],"H":[],"a9":[],"ac.1":"dl","ac.0":"B"},"qH":{"a1":[],"h":[]},"tf":{"a1":[],"h":[]},"lP":{"fg":[]},"BJ":{"aa":["qH"]},"pb":{"I":[]},"BI":{"at":[]},"Ol":{"at":[]},"Dt":{"aa":["tf"]},"pq":{"I":[]},"Ds":{"at":[]},"aq3":{"ed":["1"],"f5":[]},"re":{"aN":[],"h":[]},"ys":{"a1":[],"h":[]},"IT":{"at":[]},"oc":{"i7":[]},"pj":{"ji":[],"oc":[],"ev":[],"at":[],"i7":[]},"Pu":{"aa":["ys"]},"j7":{"hU":["1"],"dC":["1"],"bS":["1"]},"Jh":{"al":[],"h":[]},"rl":{"b8":[],"aS":[],"h":[]},"m4":{"a1":[],"h":[]},"AR":{"b8":[],"aS":[],"h":[]},"zx":{"a1":[],"h":[]},"dy":{"at":[]},"QA":{"aa":["m4"]},"CZ":{"aa":["zx"]},"dQ":{"dy":["1"],"at":[]},"is":{"dy":["1"],"at":[]},"CY":{"is":["1"],"dy":["1"],"at":[]},"zt":{"is":["1"],"dy":["1"],"at":[],"dQ.T":"1","is.T":"1"},"zs":{"is":["y"],"dy":["y"],"at":[],"dQ.T":"y","is.T":"y"},"Cl":{"b8":[],"aS":[],"h":[]},"uu":{"a1":[],"h":[]},"mA":{"aa":["uu<1>"]},"rc":{"bS":["1"]},"dC":{"bS":["1"]},"NG":{"b_":["fY"],"b_.T":"fY"},"hU":{"dC":["1"],"bS":["1"]},"yK":{"hU":["1"],"dC":["1"],"bS":["1"]},"yY":{"hU":["1"],"dC":["1"],"bS":["1"]},"Hn":{"aZ":[],"al":[],"h":[]},"Ho":{"aZ":[],"al":[],"h":[]},"uD":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"CM":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"Ky":{"aN":[],"h":[]},"zE":{"hP":["1"],"hP.T":"1"},"zF":{"b8":[],"aS":[],"h":[]},"vd":{"I":[]},"oy":{"at":[]},"wI":{"i7":[]},"eN":{"h8":[],"fg":[]},"fc":{"eN":[],"h8":[],"fg":[]},"rF":{"eN":[],"h8":[],"fg":[]},"hY":{"eN":[],"h8":[],"fg":[]},"kq":{"eN":[],"h8":[],"fg":[]},"Ma":{"eN":[],"h8":[],"fg":[]},"D5":{"b8":[],"aS":[],"h":[]},"my":{"nZ":["my"],"nZ.E":"my"},"zH":{"a1":[],"h":[]},"zI":{"aa":["zH"]},"ji":{"ev":[],"at":[],"i7":[]},"oz":{"fg":[]},"rD":{"I":[]},"rE":{"ji":[],"ev":[],"at":[],"i7":[]},"zK":{"I":[]},"KH":{"aN":[],"h":[]},"Fu":{"aN":[],"h":[]},"Ib":{"aN":[],"h":[]},"zL":{"a1":[],"h":[]},"uH":{"b8":[],"aS":[],"h":[]},"hk":{"aW":[]},"zM":{"aa":["zL"]},"QN":{"aZ":[],"al":[],"h":[]},"Qo":{"B":[],"aD":["B"],"u":[],"H":[],"a9":[]},"zG":{"I":[]},"KE":{"b_":["hk"],"b_.T":"hk"},"Qy":{"dy":["J?"],"at":[],"dQ.T":"J?"},"rr":{"a1":[],"h":[]},"jE":{"f7":[],"cJ":[],"cV":[]},"jF":{"fe":[],"cJ":[],"cV":[]},"rH":{"I":[]},"rI":{"at":[]},"je":{"aa":["1"]},"zS":{"a1":[],"h":[]},"QW":{"aa":["zS"]},"QX":{"lv":["D"],"b8":[],"aS":[],"h":[],"lv.T":"D"},"aR":{"rO":[]},"rP":{"at":[]},"m9":{"a1":[],"h":[]},"Dc":{"aa":["m9"]},"QZ":{"h5":["rP"],"b8":[],"aS":[],"h":[],"h5.T":"rP"},"uI":{"aZ":[],"al":[],"h":[]},"KU":{"aN":[],"h":[]},"R1":{"bm":[],"b2":[],"a0":[]},"CW":{"B":[],"aD":["B"],"JY":[],"u":[],"H":[],"a9":[]},"QG":{"ed":["f5"],"f5":[],"ed.T":"f5"},"Ld":{"al":[],"h":[]},"oJ":{"al":[],"h":[]},"Lb":{"oJ":[],"al":[],"h":[]},"ta":{"bm":[],"b2":[],"a0":[]},"xl":{"dN":["iZ"],"aS":[],"h":[],"dN.T":"iZ"},"L8":{"aN":[],"h":[]},"R5":{"oJ":[],"al":[],"h":[]},"R6":{"aZ":[],"al":[],"h":[]},"Qq":{"cg":[],"aD":["cg"],"u":[],"H":[],"a9":[]},"A2":{"bm":[],"b2":[],"a0":[]},"Ln":{"aN":[],"h":[]},"lk":{"dL":[],"b8":[],"aS":[],"h":[]},"aAx":{"dL":[],"b8":[],"aS":[],"h":[]},"Pm":{"aN":[],"h":[]},"es":{"aN":[],"h":[]},"wm":{"aW":[]},"fo":{"aW":[]},"aoN":{"fo":[],"aW":[]},"aoP":{"fo":[],"aW":[]},"aoO":{"fo":[],"aW":[]},"ap5":{"fo":[],"aW":[]},"ap8":{"fo":[],"aW":[]},"H5":{"fo":[],"aW":[]},"YJ":{"fo":[],"aW":[]},"YK":{"fo":[],"aW":[]},"ap7":{"fo":[],"aW":[]},"ap9":{"fo":[],"aW":[]},"ap6":{"fo":[],"aW":[]},"a6o":{"fo":[],"aW":[]},"KJ":{"aW":[]},"Gr":{"aW":[]},"a3i":{"aW":[]},"a4w":{"aW":[]},"hi":{"aW":[]},"aah":{"aW":[]},"eR":{"aW":[]},"D9":{"a1":[],"h":[]},"Av":{"a1":[],"h":[]},"tx":{"I":[]},"Da":{"aa":["D9"]},"DC":{"aa":["Av"]},"tB":{"a1":[],"h":[]},"u4":{"b8":[],"aS":[],"h":[]},"RP":{"aa":["tB"]},"LX":{"aN":[],"h":[]},"vk":{"a1":[],"h":[]},"B0":{"aa":["vk"]},"L6":{"a1":[],"h":[]},"KB":{"a1":[],"h":[]},"Kt":{"a1":[],"h":[]},"KW":{"a1":[],"h":[]},"H7":{"aZ":[],"al":[],"h":[]},"GC":{"a1":[],"h":[]},"F1":{"a1":[],"h":[]},"p0":{"eL":[],"al":[],"h":[]},"Sk":{"bm":[],"b2":[],"a0":[]},"kI":{"kh":[],"f4":[]},"AE":{"I":[]},"vO":{"bc":["k","k","1"],"ay":["k","1"],"bc.V":"1","bc.K":"k","bc.C":"k"},"e3":{"I":[]},"Jf":{"ce":[]},"JA":{"nS":[]},"M8":{"nS":[]},"Mj":{"nS":[]},"yR":{"O":["y"],"x":["y"],"V":["y"],"p":["y"],"O.E":"y"},"xb":{"ce":[]},"yS":{"a1":[],"h":[]},"Q3":{"aa":["yS"]},"CE":{"aN":[],"h":[]},"yT":{"at":[]},"nn":{"I":[]},"lX":{"I":[]},"JL":{"I":[]},"JJ":{"I":[]},"rn":{"I":[]},"Ha":{"ia":[],"bh":["ia"]},"BA":{"apb":[],"kw":[],"jo":[],"bh":["jo"]},"ia":{"bh":["ia"]},"Lk":{"ia":[],"bh":["ia"]},"jo":{"bh":["jo"]},"Ll":{"jo":[],"bh":["jo"]},"Lm":{"ce":[]},"tc":{"h0":[],"ce":[]},"A6":{"jo":[],"bh":["jo"]},"kw":{"jo":[],"bh":["jo"]},"Lv":{"h0":[],"ce":[]},"AH":{"iW":[]},"Iw":{"aN":[],"h":[]},"mS":{"a1":[],"h":[]},"B3":{"aa":["mS"]},"vb":{"a1":[],"h":[]},"Mp":{"aa":["vb"]},"o_":{"a1":[],"h":[]},"OS":{"aa":["o_"]},"o1":{"a1":[],"h":[]},"OV":{"aa":["o1"]},"yo":{"a1":[],"h":[]},"Pq":{"aa":["yo"]},"AS":{"a1":[],"h":[]},"DT":{"aa":["AS"]},"aAq":{"b8":[],"aS":[],"h":[]},"aBX":{"I":[]},"aBW":{"a1":[],"h":[]},"aAM":{"a1":[],"h":[]},"aAN":{"aa":["aAM"]},"aEY":{"b8":[],"aS":[],"h":[]},"aEj":{"b8":[],"aS":[],"h":[]}}')) -A.aF5(v.typeUniverse,JSON.parse('{"fr":1,"hg":1,"fl":1,"cL":1,"eq":2,"p2":1,"qq":2,"LC":1,"L4":1,"L5":1,"GU":1,"Hq":1,"wH":1,"M5":1,"tH":1,"E5":2,"xx":1,"r9":1,"iP":1,"BX":1,"pr":1,"MG":1,"NB":1,"u_":1,"Pv":1,"Dr":1,"Rk":1,"By":1,"BK":1,"pe":1,"kP":1,"xd":1,"C7":1,"xz":1,"xN":2,"OW":2,"NN":1,"C9":1,"Sg":1,"Rg":2,"Rf":2,"C8":1,"Dj":2,"Dk":1,"Dl":1,"DO":2,"Eo":1,"Es":1,"FG":1,"bh":1,"Fj":1,"HU":1,"H4":1,"cB":1,"wJ":1,"ul":1,"dg":1,"vp":1,"q8":1,"Bc":1,"Bd":1,"Be":1,"yx":1,"E1":1,"Bi":1,"d7":1,"we":1,"xV":1,"Cf":1,"AG":1,"w3":1,"Bg":1,"I3":1,"eG":1,"dP":1,"z6":1,"w7":1,"uC":1,"CS":1,"rv":1,"iD":1,"GP":1,"qN":1,"pQ":1,"ui":1,"aq0":1,"M2":1,"GJ":1,"aq3":1,"j7":1,"dy":1,"jh":1,"dQ":1,"CY":1,"rc":1,"Id":1,"yK":1,"yY":1,"ut":1,"uB":1,"jk":1,"cP":1}')) -var u={q:"\x10@\x100@@\xa0\x80 0P`pPP\xb1\x10@\x100@@\xa0\x80 0P`pPP\xb0\x11@\x100@@\xa0\x80 0P`pPP\xb0\x10@\x100@@\xa0\x80 1P`pPP\xb0\x10A\x101AA\xa1\x81 1QaqQQ\xb0\x10@\x100@@\xa0\x80 1Q`pPP\xb0\x10@\x100@@\xa0\x80 1QapQP\xb0\x10@\x100@@\xa0\x80 1PaqQQ\xb0\x10\xe0\x100@@\xa0\x80 1P`pPP\xb0\xb1\xb1\xb1\xb1\x91\xb1\xc1\x81\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\x10@\x100@@\xd0\x80 1P`pPP\xb0\x11A\x111AA\xa1\x81!1QaqQQ\xb1\x10@\x100@@\x90\x80 1P`pPP\xb0",S:" 0\x10000\xa0\x80\x10@P`p`p\xb1 0\x10000\xa0\x80\x10@P`p`p\xb0 0\x10000\xa0\x80\x11@P`p`p\xb0 1\x10011\xa0\x80\x10@P`p`p\xb0 1\x10111\xa1\x81\x10AQaqaq\xb0 1\x10011\xa0\x80\x10@Qapaq\xb0 1\x10011\xa0\x80\x10@Paq`p\xb0 1\x10011\xa0\x80\x10@P`q`p\xb0 \x91\x100\x811\xa0\x80\x10@P`p`p\xb0 1\x10011\xa0\x81\x10@P`p`p\xb0 1\x100111\x80\x10@P`p`p\xb0!1\x11111\xa1\x81\x11AQaqaq\xb1",D:" must not be greater than the number of characters in the file, ",M:'""""""""""""""""DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""3333s3#7333333339433333333333333CDDDDDDDDDDDDDDDDDDDDDDC433DDDDD4DDDDDDDDDDDDDDDDDD3CU33333333333333333333333333334T5333333333333333333333333333CCD3D33CD533333333333333333333333TEDTET53U5UE3333C33333333333333333333333333333CETUTDT5333333333333333333333333SUUUUUEUDDDDD43333433333333333333333333ET533E3333SDD3U3U4333343333C4333333333333CSD33343333333433333333333333333SUUUEDDDTE4333SDDSUSU\x94333343333C43333333333333333s333333333337333333333333wwwww73sw33sww7swwwwwss33373733s33333w33333\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xba\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xcb\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xec\xee\xde\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xde\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xde\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee>33333\xb3\xbb\xbb\xbb\xbb\xbb\xbb\xbb;3\xc3\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc334343C33333333333SET333333333333333EDTETD433333333CD33333333333333CD33333CDD4333333333333333333333333CDTDDDCTE43C4CD3C333333333333333D3C33333\x99\x99\x9933333DDDDD42333333333333333333CDDD4333333333333333333333333DDDD433334333C53333333333333333333333C33TEDCSUUU433333333S533333333333333333333333333333CD4DDDDD3D5333333333333333333333333333CSEUCUSE4333D33333C43333333333333CDDD9DDD3DCD433333333CDCDDDDDDEDDD33433C3E433#""""\x82" """"""""2333333333333333CDUUDU53SEUUUD43SDD3U3U4333C43333C43333333333333SE43CD33333333DD33333CDDDDDDDDDD3333333343333333B!233333333333#"""333333s3CD533333333333333333333333333CESEU3333333333333333333DDDD433333CD2333333333333333333333333""""23333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDD33333333333333333333333333333CDDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333SUDDDDUDT43333333333343333333333333333333333333333333333333333TEDDTTEETD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CUDD3UUDE43333333333333D33333333333333333333333333333333333333333UEDDDTEE43333333333333333333333333333333333333333333333333333CEUDDDE33333333333333333333333333333333333333333333333333CDUDDEDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333D#"2333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUUUUUUUUUUUU333CD4333333333333333333333333333333333333333333333333333333""""""33EDDCTSE3333333333D33333333333DDDDDDD\x94DDDDDDDDDDDDDDDDDDDDDDDDDDDDDCDDDDDDDD3DDD4DCDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CD4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333s73333s33333333333""""""""3333333373s333333333333333333333333333333CTDDDTU5D4DD333C433333D33333333333333DU433333333333333333333DDDUDUD3333S3333333333333333334333333333333s733333s33333333333CD4DDDD4D4DD4333333333sww73333333w3333333333sw3333s33333337333333sw333333333s733333333333333333UTEUS433333333C433333333333333C433333333333334443SUE4333333333333CDDDDDDDD4333333DDDDDT533333\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa3SDDDDUUT5DDD43333C43333333333333333C33333333333EEDDDCC3DDDDUUUDDDDD3T5333333333333333333333333333CSDDD433E533333333333333333333333333DDDDDDD4333333333333333333333333333CD53333333333333333333333UEDTE4\x933333333\x933333333333333333333333333D433333333333333333CDDEDDD43333333S5333333333333333333333C333333D533333333333333333333333SUDDDDT5\x9933CD433333333333333333333333333333333333333333333333UEDUTD33343333333333333333333333333333333333333333333333333333333333333333333333333333333CUEDDD43333333333DU333333333333333333333333333C4TTU5S5SU3333C33333U3DDD43DD4333333333333333333333333333333333333333333333333333333333333333333333DDDDDDD533333333333333333333333DDDTTU43333333333333333333333333333DDD733333s373ss33w7733333ww733333333333ss33333333333333333333333333333ww3333333333333333333333333333wwww33333www33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333333333333333333333333333333333333333333333333333333swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwwwwwwwwww7wwwwwwswwwwwwwwwwwwwwwwwwwww73333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w7333333333333333733333333333333333333333333333sww733333s7333333s3wwwww333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwgffffffffffff6wwwwwww73333s33333333337swwwwsw73333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwDDDDDDDDDDDDDDDDDDDDDDDD33333333DDDDDDDD33333333DDDDDDDDDDDDDDDD43333333DC44333333333333333333333333333SUDDDDTD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333UED4CTUE3S33333333333333DDDDD33333333333333333333DDD\x95DD333343333DDDUD43333333333333333333\x93\x99\x99IDDDDDDE4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDDDD33334333333C33333333333DD4DDDDDDD43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333TD43EDD""""DDDD3DDD433333333333333CD43333333333333333333333333333333333333333333333333333333333333333333333333CD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333C33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333433333333333333333333333333333333333333333333333333333333333333333333333333DD4333333333333333333333333333333333333333333333333333333333333333333EDDDCDDT43333333333333333333333333333333333333333CDDDDDDDDDD4EDDDETD3333333333333333333333333333333333333333333333333333333333333DDD3CC4DDD\x94433333333333333333333333333333333SUUC4UT433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DU333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDD333333333333333333333333333333333333333333333333333333CDDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDC433DD33333333333333333333D43C3333333333333333333333333333333333333333333333333333333333333333333333333333333333C4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334EDDDD3\x03',K:"00000008A0009!B000a!C000b000cD000d!E000e000vA000w!F000x!G000y!H000z!I0010!J0011!K0012!I0013!H0014!L0015!M0016!I0017!J0018!N0019!O001a!N001b!P001c001lQ001m001nN001o001qI001r!G001s002iI002j!L002k!J002l!M002m003eI003f!L003g!B003h!R003i!I003j003oA003p!D003q004fA004g!S004h!L004i!K004j004lJ004m004qI004r!H004s!I004t!B004u004vI004w!K004x!J004y004zI0050!T00510056I0057!H0058005aI005b!L005c00jrI00js!T00jt00jvI00jw!T00jx00keI00kf!T00kg00lbI00lc00niA00nj!S00nk00nvA00nw00o2S00o300ofA00og00otI00ou!N00ov00w2I00w300w9A00wa013cI013d!N013e!B013h013iI013j!J013l014tA014u!B014v!A014w!I014x014yA014z!I01500151A0152!G0153!A015c0162U0167016aU016b016wI016x016zK01700171N01720173I0174017eA017f!G017g!A017i017jG017k018qI018r019bA019c019lQ019m!K019n019oQ019p019rI019s!A019t01cjI01ck!G01cl!I01cm01csA01ct01cuI01cv01d0A01d101d2I01d301d4A01d5!I01d601d9A01da01dbI01dc01dlQ01dm01e8I01e9!A01ea01f3I01f401fuA01fx01idI01ie01ioA01ip!I01j401jdQ01je01kaI01kb01kjA01kk01knI01ko!N01kp!G01kq!I01kt!A01ku01kvJ01kw01lhI01li01llA01lm!I01ln01lvA01lw!I01lx01lzA01m0!I01m101m5A01m801ncI01nd01nfA01ni01qfI01qr01r5A01r6!I01r701s3A01s401tlI01tm01toA01tp!I01tq01u7A01u8!I01u901ufA01ug01upI01uq01urA01us01utB01uu01v3Q01v401vkI01vl01vnA01vp01x5I01x8!A01x9!I01xa01xgA01xj01xkA01xn01xpA01xq!I01xz!A01y401y9I01ya01ybA01ye01ynQ01yo01ypI01yq01yrK01ys01ywI01yx!K01yy!I01yz!J01z001z1I01z2!A01z501z7A01z9020pI020s!A020u020yA02130214A02170219A021d!A021l021qI021y0227Q02280229A022a022cI022d!A022e!I022p022rA022t0249I024c!A024d!I024e024lA024n024pA024r024tA024w025dI025e025fA025i025rQ025s!I025t!J0261!I02620267A0269026bA026d027tI027w!A027x!I027y0284A02870288A028b028dA028l028nA028s028xI028y028zA0292029bQ029c029jI029u!A029v02bdI02bi02bmA02bq02bsA02bu02bxA02c0!I02c7!A02cm02cvQ02cw02d4I02d5!J02d6!I02dc02dgA02dh02f1I02f202f8A02fa02fcA02fe02fhA02fp02fqA02fs02g1I02g202g3A02g602gfQ02gn!T02go02gwI02gx02gzA02h0!T02h102ihI02ik!A02il!I02im02isA02iu02iwA02iy02j1A02j902jaA02ji02jlI02jm02jnA02jq02jzQ02k102k2I02kg02kjA02kk02m2I02m302m4A02m5!I02m602mcA02me02mgA02mi02mlA02mm02muI02mv!A02mw02n5I02n602n7A02na02njQ02nk02nsI02nt!K02nu02nzI02o102o3A02o502pyI02q2!A02q702qcA02qe!A02qg02qnA02qu02r3Q02r602r7A02r802t6I02tb!J02tc02trI02ts02u1Q02u202u3B02v502x9I02xc02xlQ02xo02yoI02yp02ysT02yt!I02yu02yvT02yw!S02yx02yyT02yz!B02z0!S02z102z5G02z6!S02z7!I02z8!G02z902zbI02zc02zdA02ze02zjI02zk02ztQ02zu0303I0304!B0305!A0306!I0307!A0308!I0309!A030a!L030b!R030c!L030d!R030e030fA030g031oI031t0326A0327!B0328032cA032d!B032e032fA032g032kI032l032vA032x033wA033y033zB03400345I0346!A0347034fI034g034hT034i!B034j!T034k034oI034p034qS035s037jI037k037tQ037u037vB037w039rI039s03a1Q03a203cvI03cw03fjV03fk03hjW03hk03jzX03k003tmI03tp03trA03ts!I03tt!B03tu03y5I03y8!B03y904fzI04g0!B04g104gqI04gr!L04gs!R04gw04iyI04iz04j1B04j204k1I04k204k4A04kg04kxI04ky04l0A04l104l2B04lc04ltI04lu04lvA04m804moI04mq04mrA04n404pfI04pg04phB04pi!Y04pj!I04pk!B04pl!I04pm!B04pn!J04po04ppI04ps04q1Q04q804qpI04qq04qrG04qs04qtB04qu!T04qv!I04qw04qxG04qy!I04qz04r1A04r2!S04r404rdQ04rk04ucI04ud04ueA04uf04vcI04vd!A04ve04ymI04yo04yzA04z404zfA04zk!I04zo04zpG04zq04zzQ0500053dI053k053tQ053u055iI055j055nA055q058cI058f!A058g058pQ058w0595Q059c059pI059s05a8A05c005c4A05c505dfI05dg05dwA05dx05e3I05e805ehQ05ei05ejB05ek!I05el05eoB05ep05eyI05ez05f7A05f805fgI05fk05fmA05fn05ggI05gh05gtA05gu05gvI05gw05h5Q05h605idI05ie05irA05j005k3I05k405knA05kr05kvB05kw05l5Q05l905lbI05lc05llQ05lm05mlI05mm05mnB05mo05onI05ow05oyA05oz!I05p005pkA05pl05poI05pp!A05pq05pvI05pw!A05px05pyI05pz05q1A05q205vjI05vk05x5A05x705xbA05xc06bgI06bh!T06bi!I06bk06bqB06br!S06bs06buB06bv!Z06bw!A06bx!a06by06bzA06c0!B06c1!S06c206c3B06c4!b06c506c7I06c806c9H06ca!L06cb06cdH06ce!L06cf!H06cg06cjI06ck06cmc06cn!B06co06cpD06cq06cuA06cv!S06cw06d3K06d4!I06d506d6H06d7!I06d806d9Y06da06dfI06dg!N06dh!L06di!R06dj06dlY06dm06dxI06dy!B06dz!I06e006e3B06e4!I06e506e7B06e8!d06e906ecI06ee06enA06eo06f0I06f1!L06f2!R06f306fgI06fh!L06fi!R06fk06fwI06g006g6J06g7!K06g806glJ06gm!K06gn06gqJ06gr!K06gs06gtJ06gu!K06gv06hbJ06hc06i8A06io06iqI06ir!K06is06iwI06ix!K06iy06j9I06ja!J06jb06q9I06qa06qbJ06qc06weI06wf!c06wg06x3I06x4!L06x5!R06x6!L06x7!R06x806xlI06xm06xne06xo06y0I06y1!L06y2!R06y3073jI073k073ne073o07i7I07i807ibe07ic07irI07is07ite07iu07ivI07iw!e07ix!I07iy07j0e07j1!f07j207j3e07j407jsI07jt07jve07jw07l3I07l4!e07l507lqI07lr!e07ls07ngI07nh07nse07nt07nwI07nx!e07ny!I07nz07o1e07o2!I07o307o4e07o507o7I07o807o9e07oa07obI07oc!e07od07oeI07of07ohe07oi07opI07oq!e07or07owI07ox07p1e07p2!I07p307p4e07p5!f07p6!e07p707p8I07p907pge07ph07pjI07pk07ple07pm07ppf07pq07ruI07rv07s0H07s1!I07s207s3G07s4!e07s507s7I07s8!L07s9!R07sa!L07sb!R07sc!L07sd!R07se!L07sf!R07sg!L07sh!R07si!L07sj!R07sk!L07sl!R07sm07usI07ut!L07uu!R07uv07vpI07vq!L07vr!R07vs!L07vt!R07vu!L07vv!R07vw!L07vx!R07vy!L07vz!R07w00876I0877!L0878!R0879!L087a!R087b!L087c!R087d!L087e!R087f!L087g!R087h!L087i!R087j!L087k!R087l!L087m!R087n!L087o!R087p!L087q!R087r!L087s!R087t089jI089k!L089l!R089m!L089n!R089o08ajI08ak!L08al!R08am08viI08vj08vlA08vm08vnI08vt!G08vu08vwB08vx!I08vy!G08vz!B08w008z3I08z4!B08zj!A08zk0926I09280933A0934093hH093i093pB093q!I093r!B093s!L093t!B093u093vI093w093xH093y093zI09400941H0942!L0943!R0944!L0945!R0946!L0947!R0948!L0949!R094a094dB094e!G094f!I094g094hB094i!I094j094kB094l094pI094q094rb094s094uB094v!I094w094xB094y!L094z0956B0957!I0958!B0959!I095a095bB095c095eI096o097de097f099ve09a809g5e09gw09h7e09hc!B09hd09heR09hf09hge09hh!Y09hi09hje09hk!L09hl!R09hm!L09hn!R09ho!L09hp!R09hq!L09hr!R09hs!L09ht!R09hu09hve09hw!L09hx!R09hy!L09hz!R09i0!L09i1!R09i2!L09i3!R09i4!Y09i5!L09i609i7R09i809ihe09ii09inA09io09ise09it!A09iu09iye09iz09j0Y09j109j3e09j5!Y09j6!e09j7!Y09j8!e09j9!Y09ja!e09jb!Y09jc!e09jd!Y09je09k2e09k3!Y09k409kye09kz!Y09l0!e09l1!Y09l2!e09l3!Y09l409l9e09la!Y09lb09lge09lh09liY09ll09lmA09ln09lqY09lr!e09ls09ltY09lu!e09lv!Y09lw!e09lx!Y09ly!e09lz!Y09m0!e09m1!Y09m209mqe09mr!Y09ms09nme09nn!Y09no!e09np!Y09nq!e09nr!Y09ns09nxe09ny!Y09nz09o4e09o509o6Y09o709oae09ob09oeY09of!e09ol09pre09pt09see09sg09ure09v409vjY09vk09wee09wg09xje09xk09xrI09xs0fcve0fcw0fenI0feo0vmce0vmd!Y0vme0wi4e0wi80wjqe0wk00wl9I0wla0wlbB0wlc0wssI0wst!B0wsu!G0wsv!B0wsw0wtbI0wtc0wtlQ0wtm0wviI0wvj0wvmA0wvn!I0wvo0wvxA0wvy0wwtI0wwu0wwvA0www0wz3I0wz40wz5A0wz6!I0wz70wzbB0wzk0x6pI0x6q!A0x6r0x6tI0x6u!A0x6v0x6yI0x6z!A0x700x7mI0x7n0x7rA0x7s0x7vI0x7w!A0x800x87I0x88!K0x890x9vI0x9w0x9xT0x9y0x9zG0xa80xa9A0xaa0xbnI0xbo0xc5A0xce0xcfB0xcg0xcpQ0xcw0xddA0xde0xdnI0xdo!T0xdp0xdqI0xdr!A0xds0xe1Q0xe20xetI0xeu0xf1A0xf20xf3B0xf40xfqI0xfr0xg3A0xgf!I0xgg0xh8V0xhc0xhfA0xhg0xiqI0xir0xj4A0xj50xjaI0xjb0xjdB0xje0xjjI0xjk0xjtQ0xjy0xkfI0xkg0xkpQ0xkq0xm0I0xm10xmeA0xmo0xmqI0xmr!A0xms0xmzI0xn00xn1A0xn40xndQ0xng!I0xnh0xnjB0xnk0xreI0xrf0xrjA0xrk0xrlB0xrm0xroI0xrp0xrqA0xs10xyaI0xyb0xyiA0xyj!B0xyk0xylA0xyo0xyxQ0xz4!g0xz50xzvh0xzw!g0xzx0y0nh0y0o!g0y0p0y1fh0y1g!g0y1h0y27h0y28!g0y290y2zh0y30!g0y310y3rh0y3s!g0y3t0y4jh0y4k!g0y4l0y5bh0y5c!g0y5d0y63h0y64!g0y650y6vh0y6w!g0y6x0y7nh0y7o!g0y7p0y8fh0y8g!g0y8h0y97h0y98!g0y990y9zh0ya0!g0ya10yarh0yas!g0yat0ybjh0ybk!g0ybl0ycbh0ycc!g0ycd0yd3h0yd4!g0yd50ydvh0ydw!g0ydx0yenh0yeo!g0yep0yffh0yfg!g0yfh0yg7h0yg8!g0yg90ygzh0yh0!g0yh10yhrh0yhs!g0yht0yijh0yik!g0yil0yjbh0yjc!g0yjd0yk3h0yk4!g0yk50ykvh0ykw!g0ykx0ylnh0ylo!g0ylp0ymfh0ymg!g0ymh0yn7h0yn8!g0yn90ynzh0yo0!g0yo10yorh0yos!g0yot0ypjh0ypk!g0ypl0yqbh0yqc!g0yqd0yr3h0yr4!g0yr50yrvh0yrw!g0yrx0ysnh0yso!g0ysp0ytfh0ytg!g0yth0yu7h0yu8!g0yu90yuzh0yv0!g0yv10yvrh0yvs!g0yvt0ywjh0ywk!g0ywl0yxbh0yxc!g0yxd0yy3h0yy4!g0yy50yyvh0yyw!g0yyx0yznh0yzo!g0yzp0z0fh0z0g!g0z0h0z17h0z18!g0z190z1zh0z20!g0z210z2rh0z2s!g0z2t0z3jh0z3k!g0z3l0z4bh0z4c!g0z4d0z53h0z54!g0z550z5vh0z5w!g0z5x0z6nh0z6o!g0z6p0z7fh0z7g!g0z7h0z87h0z88!g0z890z8zh0z90!g0z910z9rh0z9s!g0z9t0zajh0zak!g0zal0zbbh0zbc!g0zbd0zc3h0zc4!g0zc50zcvh0zcw!g0zcx0zdnh0zdo!g0zdp0zefh0zeg!g0zeh0zf7h0zf8!g0zf90zfzh0zg0!g0zg10zgrh0zgs!g0zgt0zhjh0zhk!g0zhl0zibh0zic!g0zid0zj3h0zj4!g0zj50zjvh0zjw!g0zjx0zknh0zko!g0zkp0zlfh0zlg!g0zlh0zm7h0zm8!g0zm90zmzh0zn0!g0zn10znrh0zns!g0znt0zojh0zok!g0zol0zpbh0zpc!g0zpd0zq3h0zq4!g0zq50zqvh0zqw!g0zqx0zrnh0zro!g0zrp0zsfh0zsg!g0zsh0zt7h0zt8!g0zt90ztzh0zu0!g0zu10zurh0zus!g0zut0zvjh0zvk!g0zvl0zwbh0zwc!g0zwd0zx3h0zx4!g0zx50zxvh0zxw!g0zxx0zynh0zyo!g0zyp0zzfh0zzg!g0zzh1007h1008!g1009100zh1010!g1011101rh101s!g101t102jh102k!g102l103bh103c!g103d1043h1044!g1045104vh104w!g104x105nh105o!g105p106fh106g!g106h1077h1078!g1079107zh1080!g1081108rh108s!g108t109jh109k!g109l10abh10ac!g10ad10b3h10b4!g10b510bvh10bw!g10bx10cnh10co!g10cp10dfh10dg!g10dh10e7h10e8!g10e910ezh10f0!g10f110frh10fs!g10ft10gjh10gk!g10gl10hbh10hc!g10hd10i3h10i4!g10i510ivh10iw!g10ix10jnh10jo!g10jp10kfh10kg!g10kh10l7h10l8!g10l910lzh10m0!g10m110mrh10ms!g10mt10njh10nk!g10nl10obh10oc!g10od10p3h10p4!g10p510pvh10pw!g10px10qnh10qo!g10qp10rfh10rg!g10rh10s7h10s8!g10s910szh10t0!g10t110trh10ts!g10tt10ujh10uk!g10ul10vbh10vc!g10vd10w3h10w4!g10w510wvh10ww!g10wx10xnh10xo!g10xp10yfh10yg!g10yh10z7h10z8!g10z910zzh1100!g1101110rh110s!g110t111jh111k!g111l112bh112c!g112d1133h1134!g1135113vh113w!g113x114nh114o!g114p115fh115g!g115h1167h1168!g1169116zh1170!g1171117rh117s!g117t118jh118k!g118l119bh119c!g119d11a3h11a4!g11a511avh11aw!g11ax11bnh11bo!g11bp11cfh11cg!g11ch11d7h11d8!g11d911dzh11e0!g11e111erh11es!g11et11fjh11fk!g11fl11gbh11gc!g11gd11h3h11h4!g11h511hvh11hw!g11hx11inh11io!g11ip11jfh11jg!g11jh11k7h11k8!g11k911kzh11l0!g11l111lrh11ls!g11lt11mjh11mk!g11ml11nbh11nc!g11nd11o3h11o4!g11o511ovh11ow!g11ox11pnh11po!g11pp11qfh11qg!g11qh11r7h11r8!g11r911rzh11s0!g11s111srh11ss!g11st11tjh11tk!g11tl11ubh11uc!g11ud11v3h11v4!g11v511vvh11vw!g11vx11wnh11wo!g11wp11xfh11xg!g11xh11y7h11y8!g11y911yzh11z0!g11z111zrh11zs!g11zt120jh120k!g120l121bh121c!g121d1223h1224!g1225122vh122w!g122x123nh123o!g123p124fh124g!g124h1257h1258!g1259125zh1260!g1261126rh126s!g126t127jh127k!g127l128bh128c!g128d1293h1294!g1295129vh129w!g129x12anh12ao!g12ap12bfh12bg!g12bh12c7h12c8!g12c912czh12d0!g12d112drh12ds!g12dt12ejh12ek!g12el12fbh12fc!g12fd12g3h12g4!g12g512gvh12gw!g12gx12hnh12ho!g12hp12ifh12ig!g12ih12j7h12j8!g12j912jzh12k0!g12k112krh12ks!g12kt12ljh12lk!g12ll12mbh12mc!g12md12n3h12n4!g12n512nvh12nw!g12nx12onh12oo!g12op12pfh12pg!g12ph12q7h12q8!g12q912qzh12r0!g12r112rrh12rs!g12rt12sjh12sk!g12sl12tbh12tc!g12td12u3h12u4!g12u512uvh12uw!g12ux12vnh12vo!g12vp12wfh12wg!g12wh12x7h12x8!g12x912xzh12y0!g12y112yrh12ys!g12yt12zjh12zk!g12zl130bh130c!g130d1313h1314!g1315131vh131w!g131x132nh132o!g132p133fh133g!g133h1347h1348!g1349134zh1350!g1351135rh135s!g135t136jh136k!g136l137bh137c!g137d1383h1384!g1385138vh138w!g138x139nh139o!g139p13afh13ag!g13ah13b7h13b8!g13b913bzh13c0!g13c113crh13cs!g13ct13djh13dk!g13dl13ebh13ec!g13ed13f3h13f4!g13f513fvh13fw!g13fx13gnh13go!g13gp13hfh13hg!g13hh13i7h13i8!g13i913izh13j0!g13j113jrh13js!g13jt13kjh13kk!g13kl13lbh13lc!g13ld13m3h13m4!g13m513mvh13mw!g13mx13nnh13no!g13np13ofh13og!g13oh13p7h13p8!g13p913pzh13q0!g13q113qrh13qs!g13qt13rjh13rk!g13rl13sbh13sc!g13sd13t3h13t4!g13t513tvh13tw!g13tx13unh13uo!g13up13vfh13vg!g13vh13w7h13w8!g13w913wzh13x0!g13x113xrh13xs!g13xt13yjh13yk!g13yl13zbh13zc!g13zd1403h1404!g1405140vh140w!g140x141nh141o!g141p142fh142g!g142h1437h1438!g1439143zh1440!g1441144rh144s!g144t145jh145k!g145l146bh146c!g146d1473h1474!g1475147vh147w!g147x148nh148o!g148p149fh149g!g149h14a7h14a8!g14a914azh14b0!g14b114brh14bs!g14bt14cjh14ck!g14cl14dbh14dc!g14dd14e3h14e4!g14e514evh14ew!g14ex14fnh14fo!g14fp14gfh14gg!g14gh14h7h14h8!g14h914hzh14i0!g14i114irh14is!g14it14jjh14jk!g14jl14kbh14kc!g14kd14l3h14l4!g14l514lvh14lw!g14lx14mnh14mo!g14mp14nfh14ng!g14nh14o7h14o8!g14o914ozh14p0!g14p114prh14ps!g14pt14qjh14qk!g14ql14rbh14rc!g14rd14s3h14s4!g14s514svh14sw!g14sx14tnh14to!g14tp14ufh14ug!g14uh14v7h14v8!g14v914vzh14w0!g14w114wrh14ws!g14wt14xjh14xk!g14xl14ybh14yc!g14yd14z3h14z4!g14z514zvh14zw!g14zx150nh150o!g150p151fh151g!g151h1527h1528!g1529152zh1530!g1531153rh153s!g153t154jh154k!g154l155bh155c!g155d1563h1564!g1565156vh156w!g156x157nh157o!g157p158fh158g!g158h1597h1598!g1599159zh15a0!g15a115arh15as!g15at15bjh15bk!g15bl15cbh15cc!g15cd15d3h15d4!g15d515dvh15dw!g15dx15enh15eo!g15ep15ffh15fg!g15fh15g7h15g8!g15g915gzh15h0!g15h115hrh15hs!g15ht15ijh15ik!g15il15jbh15jc!g15jd15k3h15k4!g15k515kvh15kw!g15kx15lnh15lo!g15lp15mfh15mg!g15mh15n7h15n8!g15n915nzh15o0!g15o115orh15os!g15ot15pjh15pk!g15pl15qbh15qc!g15qd15r3h15r4!g15r515rvh15rw!g15rx15snh15so!g15sp15tfh15tg!g15th15u7h15u8!g15u915uzh15v0!g15v115vrh15vs!g15vt15wjh15wk!g15wl15xbh15xc!g15xd15y3h15y4!g15y515yvh15yw!g15yx15znh15zo!g15zp160fh160g!g160h1617h1618!g1619161zh1620!g1621162rh162s!g162t163jh163k!g163l164bh164c!g164d1653h1654!g1655165vh165w!g165x166nh166o!g166p167fh167g!g167h1687h1688!g1689168zh1690!g1691169rh169s!g169t16ajh16ak!g16al16bbh16bc!g16bd16c3h16c4!g16c516cvh16cw!g16cx16dnh16do!g16dp16efh16eg!g16eh16f7h16f8!g16f916fzh16g0!g16g116grh16gs!g16gt16hjh16hk!g16hl16ibh16ic!g16id16j3h16j4!g16j516jvh16jw!g16jx16knh16ko!g16kp16lfh16ls16meW16mj16nvX16o01d6nI1d6o1dkve1dkw1dljI1dlp!U1dlq!A1dlr1dm0U1dm1!I1dm21dmeU1dmg1dmkU1dmm!U1dmo1dmpU1dmr1dmsU1dmu1dn3U1dn41e0tI1e0u!R1e0v!L1e1c1e63I1e64!K1e65!I1e681e6nA1e6o!N1e6p1e6qR1e6r1e6sN1e6t1e6uG1e6v!L1e6w!R1e6x!c1e741e7jA1e7k1e7oe1e7p!L1e7q!R1e7r!L1e7s!R1e7t!L1e7u!R1e7v!L1e7w!R1e7x!L1e7y!R1e7z!L1e80!R1e81!L1e82!R1e83!L1e84!R1e851e86e1e87!L1e88!R1e891e8fe1e8g!R1e8h!e1e8i!R1e8k1e8lY1e8m1e8nG1e8o!e1e8p!L1e8q!R1e8r!L1e8s!R1e8t!L1e8u!R1e8v1e92e1e94!e1e95!J1e96!K1e97!e1e9c1ed8I1edb!d1edd!G1ede1edfe1edg!J1edh!K1edi1edje1edk!L1edl!R1edm1edne1edo!R1edp!e1edq!R1edr1ee1e1ee21ee3Y1ee41ee6e1ee7!G1ee81eeye1eez!L1ef0!e1ef1!R1ef21efue1efv!L1efw!e1efx!R1efy!e1efz!L1eg01eg1R1eg2!L1eg31eg4R1eg5!Y1eg6!e1eg71eggY1egh1ehpe1ehq1ehrY1ehs1eime1eiq1eive1eiy1ej3e1ej61ejbe1eje1ejge1ejk!K1ejl!J1ejm1ejoe1ejp1ejqJ1ejs1ejyI1ek91ekbA1ekc!i1ekd1ereI1erk1ermB1err1eykI1eyl!A1f281f4gI1f4w!A1f4x1f91I1f921f96A1f9c1fa5I1fa7!B1fa81fbjI1fbk!B1fbl1fh9I1fhc1fhlQ1fhs1g7pI1g7r!B1g7s1gd7I1gdb!B1gdc1gjkI1gjl1gjnA1gjp1gjqA1gjw1gjzA1gk01gl1I1gl41gl6A1glb!A1glc1glkI1gls1glzB1gm01gpwI1gpx1gpyA1gq31gq7I1gq81gqdB1gqe!c1gqo1gs5I1gs91gsfB1gsg1h5vI1h5w1h5zA1h681h6hQ1heo1hgpI1hgr1hgsA1hgt!B1hgw1hl1I1hl21hlcA1hld1hpyI1hq81hqaA1hqb1hrrI1hrs1hs6A1hs71hs8B1hs91ht1I1ht21htbQ1htr1htuA1htv1hv3I1hv41hveA1hvf1hvhI1hvi1hvlB1hvx1hwoI1hww1hx5Q1hxc1hxeA1hxf1hyeI1hyf1hysA1hyu1hz3Q1hz41hz7B1hz8!I1hz91hzaA1hzb1i0iI1i0j!A1i0k!I1i0l!T1i0m!I1i0w1i0yA1i0z1i2aI1i2b1i2oA1i2p1i2sI1i2t1i2uB1i2v!I1i2w!B1i2x1i30A1i31!I1i321i33A1i341i3dQ1i3e!I1i3f!T1i3g!I1i3h1i3jB1i3l1i5nI1i5o1i5zA1i601i61B1i62!I1i631i64B1i65!I1i66!A1i801i94I1i95!B1i9c1iamI1ian1iayA1ib41ibdQ1ibk1ibnA1ibp1id5I1id71id8A1id9!I1ida1idgA1idj1idkA1idn1idpA1ids!I1idz!A1ie51ie9I1iea1iebA1iee1iekA1ieo1iesA1iio1ik4I1ik51ikmA1ikn1ikqI1ikr1ikuB1ikv!I1ikw1il5Q1il61il7B1il9!I1ila!A1ilb1injI1ink1io3A1io41io7I1iog1iopQ1itc1iumI1iun1iutA1iuw1iv4A1iv5!T1iv61iv7B1iv81iv9G1iva1ivcI1ivd1ivrB1ivs1ivvI1ivw1ivxA1iww1iy7I1iy81iyoA1iyp1iyqB1iyr1iysI1iz41izdQ1izk1izwT1j0g1j1mI1j1n1j1zA1j20!I1j281j2hQ1j401j57I1j5c1j5lQ1j5m1j5nI1j5o1j5qB1j5r1jcbI1jcc1jcqA1jcr1jhbI1jhc1jhlQ1jhm1jjjI1jjk1jjpA1jjr1jjsA1jjv1jjyA1jjz!I1jk0!A1jk1!I1jk21jk3A1jk41jk6B1jkg1jkpQ1jmo1jo0I1jo11jo7A1joa1jogA1joh!I1joi!T1joj!I1jok!A1jpc!I1jpd1jpmA1jpn1jqqI1jqr1jqxA1jqy!I1jqz1jr2A1jr3!T1jr4!I1jr51jr8B1jr9!T1jra!I1jrb!A1jrk!I1jrl1jrvA1jrw1jt5I1jt61jtlA1jtm1jtoB1jtp!I1jtq1jtsT1jtt1jtuB1juo1k4uI1k4v1k52A1k541k5bA1k5c!I1k5d1k5hB1k5s1k61Q1k621k6kI1k6o!T1k6p!G1k6q1k7jI1k7m1k87A1k891k8mA1kao1kc0I1kc11kc6A1kca!A1kcc1kcdA1kcf1kclA1kcm!I1kcn!A1kcw1kd5Q1kdc1kehI1kei1kemA1keo1kepA1ker1kevA1kew!I1kf41kfdQ1ko01koiI1koj1komA1kon1kv0I1kv11kv4K1kv51kvlI1kvz!B1kw01lriI1lrk1lroB1ls01oifI1oig1oiiL1oij1oilR1oim1ojlI1ojm!R1ojn1ojpI1ojq!L1ojr!R1ojs!L1ojt!R1oju1oqgI1oqh!L1oqi1oqjR1oqk1oviI1ovk1ovqS1ovr!L1ovs!R1s001sctI1scu!L1scv!R1scw1zkuI1zkw1zl5Q1zla1zlbB1zo01zotI1zow1zp0A1zp1!B1zpc1zqnI1zqo1zquA1zqv1zqxB1zqy1zr7I1zr8!B1zr9!I1zrk1zrtQ1zrv20euI20ev20ewB20ex20juI20jz!A20k0!I20k120ljA20lr20luA20lv20m7I20o020o3Y20o4!S20og20ohA20ow25fbe25fk260ve260w26dxI26f426fce2dc02djye2dlc2dleY2dlw2dlzY2dm82dx7e2fpc2ftoI2ftp2ftqA2ftr!B2fts2ftvA2jnk2jxgI2jxh2jxlA2jxm2jxoI2jxp2jyaA2jyb2jycI2jyd2jyjA2jyk2jzdI2jze2jzhA2jzi2k3lI2k3m2k3oA2k3p2l6zI2l722l8fQ2l8g2lmnI2lmo2lo6A2lo72loaI2lob2lpoA2lpp2lpwI2lpx!A2lpy2lqbI2lqc!A2lqd2lqeI2lqf2lqiB2lqj!I2lqz2lr3A2lr52lrjA2mtc2mtiA2mtk2mu0A2mu32mu9A2mub2mucA2mue2muiA2n0g2n1oI2n1s2n1yA2n1z2n25I2n282n2hQ2n2m2ne3I2ne42ne7A2ne82nehQ2nen!J2oe82ojzI2ok02ok6A2olc2on7I2on82oneA2onf!I2onk2ontQ2ony2onzL2p9t2pbfI2pbg!K2pbh2pbjI2pbk!K2pbl2prlI2pz42q67e2q682q6kI2q6l2q6ne2q6o2q98I2q992q9be2q9c2qb0I2qb12qcle2qcm2qdbj2qdc2qo4e2qo5!f2qo62qore2qos2qotI2qou2qpge2qph2qpiI2qpj2qpne2qpo!I2qpp2qpte2qpu2qpwf2qpx2qpye2qpz!f2qq02qq1e2qq22qq4f2qq52qree2qrf2qrjk2qrk2qtde2qte2qtff2qtg2qthe2qti2qtsf2qtt2qude2que2quwf2qux2quze2qv0!f2qv12qv4e2qv52qv7f2qv8!e2qv92qvbf2qvc2qvie2qvj!f2qvk!e2qvl!f2qvm2qvze2qw0!I2qw1!e2qw2!I2qw3!e2qw4!I2qw52qw9e2qwa!f2qwb2qwee2qwf!I2qwg!e2qwh2qwiI2qwj2qyne2qyo2qyuI2qyv2qzae2qzb2qzoI2qzp2r01e2r022r0pI2r0q2r1ve2r1w2r1xf2r1y2r21e2r22!f2r232r2ne2r2o!f2r2p2r2se2r2t2r2uf2r2v2r4je2r4k2r4rI2r4s2r5fe2r5g2r5lI2r5m2r7oe2r7p2r7rf2r7s2r7ue2r7v2r7zf2r802r91I2r922r94H2r952r97Y2r982r9bI2r9c2raae2rab!f2rac2rare2ras2rauf2rav2rb3e2rb4!f2rb52rbfe2rbg!f2rbh2rcve2rcw2rg3I2rg42rgfe2rgg2risI2rit2rjze2rk02rkbI2rkc2rkfe2rkg2rlzI2rm02rm7e2rm82rmhI2rmi2rmne2rmo2rnrI2rns2rnze2ro02rotI2rou2rr3e2rr42rrfI2rrg!f2rrh2rrie2rrj!f2rrk2rrre2rrs2rrzf2rs02rs5e2rs6!f2rs72rsfe2rsg2rspf2rsq2rsre2rss2rsuf2rsv2ruee2ruf!f2rug2rw4e2rw52rw6f2rw7!e2rw82rw9f2rwa!e2rwb!f2rwc2rwse2rwt2rwvf2rww!e2rwx2rx9f2rxa2ry7e2ry82s0jI2s0k2s5be2s5c2sayI2sc02sc9Q2scg2t4te2t4w47p9e47pc5m9pejny9!Ajnz4jo1rAjo5cjobzAl2ionvnhI",I:": URI should have a non-empty host name: ",U:"Cannot extract a file path from a URI with a fragment component",z:"Cannot extract a file path from a URI with a query component",Q:"Cannot extract a non-Windows file path from a file URI with an authority",w:"Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type",e:"Expandos are not allowed on strings, numbers, booleans or null",r:"Platform interfaces must not be implemented with `implements`",V:"Stream has been disposed.\nAn ImageStream is considered disposed once at least one listener has been added and subsequently all listeners have been removed and no handles are outstanding from the keepAlive method.\nTo resolve this error, maintain at least one listener on the stream, or create an ImageStreamCompleterHandle from the keepAlive method, or create a new stream for the image.",p:"SystemChrome.setApplicationSwitcherDescription",s:"TextInputClient.updateEditingStateWithDeltas",l:"TextInputClient.updateEditingStateWithTag",T:"There was a problem trying to load FontManifest.json",A:"Tip: long press a key to copy the value to the clipboard",Z:"_floatingActionButtonVisibilityController",t:"dtxuexi://appclient/page/study_feeds?url=",P:"linear-gradient(to right, #00b09b, #96c93d)",W:"\u0e3b\u1cdb\u05d0\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b \u389c\u102b\u102b\u102b\u102b\u489c\u102b\u102b\u102b\u0620\u392b\u0c26\u0efa\u102b\u0dcb\u0601\u3e7e\u228f\u0c77\u24d3\u40b2\u102b\u1d51\u0f6f\u2681\u0698\u0851\u0d63\u0be6\u0d63\u1d2a\u06d5\u0e9b\u0771\u075c\u2b98\u23fe\u2707\u0da1\u2a52\u08eb\u0d13\u0ce3\u2712\u0c62\u4d9d\u0b97\u25cb\u2b21\u0659\u42c5\u0baa\u0ec5\u088d\u102b\u09b9\u09d9\u09f9\u0a21\u102b\u102b\u102b\u102b\u102b\u40ae\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u0b5f\u25b1\u23c1\u07f5\u0fe2\u102b\u269e\u102b\u0e5b\u102b\u102b\u102b\u2427\u26c9\u275a\u102b\u2b5c\u0fad\u0b31\u0789\u08ab\u102b\u102b\u0dfb\u102b\u102b\u102b\u1d74\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u0f2f\u2372\u102b\u38ec\u090f\u102b\u2501\u102b\u102b\u102b\u102b\u102b\u24a9\u102b\u35c8\u0939\u102b\u102b\u102b\u23b5\u102b\u102b\u2345\u2c27\u3457\u2d9d\u3491\u2d9d\u0979\u2be5\u252c\u102b\u102b\u102b\u102b\u102b\u233b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u2566\u23a2\u102b\u102b\u102b\u102b\u102b\u409c\u102b\u428c\u102b\u3db9\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u2bac\u102b\u16c9\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u2c0e\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u0d24\u4c95\u4c83\u102b\u102b\u102b\u102b\u0b0c\u102b\u07bb\u2609\u0c43\u2641\u071f\u2483\u2443\u0cb1\u06e1\u0811\u102b\u102b\u102b\u2583\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a79\u0a65\u0a6d\u0a75\u0a61\u0a69\u0a71\u0a95\u0ace\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u01f0\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u42ad\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u38bc\u102b\u102b\u1cdb\u102b\u102b\u4c95\u1cea\u40ce\u102b\u49ce\u1f6f\u2752\u1506\u393f\u449f\u102b\u102b\u102b\u102b\u102b\u0ff2\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u113b\u191a\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u1869\u102b\u102b\u102b\u102b\u3e89\u102b\u3bd9\u102b\u1da7\u102b\u47cf\u102b\u34a1\u305d\u2c56\u2d9d\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\x00\u01f0\u01f0\u01f0\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b\u102b"} -var t=(function rtii(){var s=A.a_ -return{od:s("b_"),pC:s("mQ"),A_:s("l8"),so:s("bv"),m:s("bv"),Bs:s("bv"),ph:s("vq"),vp:s("mU"),M1:s("Fb"),N2:s("pU"),Al:s("lb"),jj:s("mX"),o9:s("fT"),C4:s("mY"),m_:s("cI"),i1:s("azP"),k:s("aF"),x:s("fm"),pI:s("pZ"),V4:s("c1"),wY:s("c2"),nz:s("c2"),Dn:s("c2"),YM:s("c2"),RM:s("c2"),gv:s("c2"),fN:s("c2"),Tx:s("c2"),sl:s("c2"),_l:s("c2"),ZQ:s("c2"),f6:s("c2"),oy:s("iH"),Ak:s("FA"),d0:s("cu?,bS<@>>"),vg:s("jN"),mV:s("aoz"),Lh:s("vR"),XY:s("le"),qo:s("q1"),z7:s("vT"),m6:s("G2"),E_:s("q2"),Bn:s("vU"),wW:s("n7"),S3:s("vV"),BQ:s("vX"),ZV:s("q4"),Hz:s("fn"),hP:s("iJ"),n8:s("E"),IC:s("de"),b8:s("bh<@>"),qO:s("nc"),uf:s("bd"),li:s("bd"),eL:s("bd"),vn:s("qa"),pU:s("ac>"),eN:s("Gs"),IP:s("qd"),H5:s("aAq"),HY:s("fW"),FJ:s("nd"),ip:s("w8"),I7:s("aJj"),q2:s("qf"),l4:s("aAv"),uy:s("aAx"),yS:s("lk"),A7:s("qg"),Je:s("aJn"),M5:s("e_"),I:s("fX"),xm:s("fY"),Jj:s("aAH"),VF:s("iO"),x6:s("nh"),uL:s("fZ"),zk:s("f1"),Tu:s("aP"),A0:s("cd"),Ee:s("V<@>"),Q:s("am"),u:s("b2"),BP:s("am(q)"),pW:s("am(q{params:D?})"),dq:s("aAU"),IH:s("wA"),S9:s("GX"),X8:s("GY"),Q4:s("wC"),Q8:s("I"),Lt:s("bA"),I3:s("ah"),VI:s("ce"),IX:s("hH"),_w:s("ap5"),HH:s("ap6"),OO:s("ap7"),P9:s("ap8"),in:s("qs"),u7:s("qt"),BH:s("qu"),FQ:s("qv"),rq:s("fq"),yX:s("qw"),GH:s("apb"),zc:s("qy"),xb:s("no"),US:s("f3"),N8:s("wM"),s4:s("YZ"),OE:s("Z_"),mx:s("cT"),l5:s("nv"),uC:s("ny"),bE:s("h0"),Uy:s("wT"),_8:s("jX"),wF:s("a7"),Ev:s("a7()"),L0:s("a7<@>"),iG:s("a7"),Sg:s("a7"),uz:s("a7<~>"),sB:s("bI"),Fp:s("bI"),pl:s("bI"),Vd:s("bI"),x0:s("jY"),G:s("qE"),cD:s("cJ"),uA:s("co"),C1:s("co"),Uv:s("co"),jn:s("co"),YC:s("co"),UN:s("co"),ok:s("co"),ff:s("co"),Bk:s("co"),xR:s("nB"),yi:s("iR>"),TX:s("ls"),bT:s("ls>"),op:s("wX<~(jV)>"),G7:s("HC>"),rA:s("nC"),mS:s("nD"),AL:s("fs"),Fn:s("hK"),zE:s("a9"),py:s("ad"),gc:s("x_"),Gf:s("lt"),Oh:s("nJ"),J2:s("x7"),v7:s("qK"),_0:s("nK"),dW:s("h3"),Bc:s("qP"),IS:s("h4"),og:s("dL"),WB:s("b8"),U1:s("h6"),Zb:s("nP"),XO:s("a0x"),gD:s("ly"),vz:s("aW"),nQ:s("lz"),Ya:s("qS"),OL:s("dg<@>"),JY:s("p<@>"),cM:s("o"),ur:s("o"),sq:s("o"),r3:s("o"),iW:s("o"),Ns:s("o"),AT:s("o"),Cz:s("o"),t_:s("o"),td:s("o"),KV:s("o"),F:s("o"),vl:s("o"),lX:s("o"),Li:s("o"),bk:s("o"),bp:s("o"),kZ:s("o>"),no:s("o"),MG:s("o>"),mo:s("o>"),y0:s("o"),iQ:s("o"),om:s("o>"),_B:s("o"),XZ:s("o

"),fJ:s("o
"),VB:s("o"),VO:s("o"),O_:s("o"),lC:s("o"),K0:s("o"),Lj:s("o"),k5:s("o"),s9:s("o"),wS:s("o"),Y4:s("o"),ER:s("o"),L5:s("o"),R_:s("o>"),dc:s("o>"),Eo:s("o"),ss:s("o"),a9:s("o>"),cS:s("o>"),Iq:s("o>"),H7:s("o>"),n4:s("o>"),Xr:s("o"),rE:s("o"),YE:s("o"),tc:s("o"),f2:s("o"),qF:s("o"),Qg:s("o"),jl:s("o"),yv:s("o"),wi:s("o"),g8:s("o>"),n9:s("o"),EO:s("o"),nx:s("o"),zY:s("o"),wc:s("o"),g:s("o"),tZ:s("o"),TP:s("o"),v:s("o"),Y2:s("o"),qR:s("o"),E8:s("o"),i8:s("o"),kG:s("o"),Kd:s("o"),AO:s("o"),Bw:s("o"),Pc:s("o"),Ik:s("o"),xT:s("o"),TT:s("o"),Ry:s("o"),QT:s("o"),CK:s("o"),vj:s("o"),ZP:s("o"),u1:s("o"),J:s("o"),o4:s("o"),zz:s("o"),fe:s("o"),kO:s("o"),N_:s("o"),QC:s("o"),X4:s("o"),Jl:s("o"),Jw:s("o"),tA:s("o"),Iu:s("o>"),s:s("o"),oU:s("o"),PL:s("o"),y1:s("o"),vT:s("o"),Lx:s("o"),sD:s("o"),Ue:s("o"),VS:s("o"),fm:s("o"),Ne:s("o"),FO:s("o>>"),j7:s("o>"),XE:s("o"),hq:s("o"),p:s("o"),GA:s("o"),Na:s("o"),SW:s("o"),rF:s("o"),Kj:s("o"),_Y:s("o"),CZ:s("o"),mz:s("o"),Kx:s("o"),bY:s("o"),ML:s("o"),m2:s("o"),Ei:s("o"),jE:s("o"),qi:s("o"),Zh:s("o"),uD:s("o"),au:s("o"),s6:s("o"),YK:s("o"),Z4:s("o"),cR:s("o"),NM:s("o"),HZ:s("o"),V:s("o"),ee:s("o<@>"),t:s("o"),L:s("o"),JK:s("o"),cA:s("o"),Rs:s("o"),ny:s("o?>"),eE:s("o"),Fi:s("o"),_m:s("o"),_x:s("o"),Z:s("o"),a0:s("o
"),Zt:s("o()>"),iL:s("o()>"),sA:s("o"),U9:s("o<~(lr)?>"),b:s("o<~()>"),e:s("o<~(b_)>"),W:s("o<~(eW)>"),j1:s("o<~(aP)>"),Jh:s("o<~(x)>"),RP:s("aY<@>"),bz:s("xi"),lZ:s("akt"),lT:s("iY"),dC:s("b6<@>"),sW:s("nU<@>"),vA:s("qW"),Hf:s("dh"),C9:s("dh<@,@>"),IN:s("dh"),Cl:s("iZ"),D2:s("f5"),X_:s("xo"),JG:s("k4"),SQ:s("r0"),LE:s("lD"),bR:s("bC"),NE:s("bC"),ku:s("bC"),hA:s("bC"),A:s("bC>"),af:s("bC"),L6:s("eJ"),h_:s("I4"),rf:s("nX"),KM:s("e3"),hz:s("h9"),jQ:s("be"),z_:s("xy"),Gs:s("x"),qC:s("x"),UX:s("x"),LF:s("x"),I1:s("x"),V1:s("x"),yc:s("x"),yp:s("x"),YP:s("x"),Xw:s("x"),Ly:s("x"),j:s("x<@>"),Cm:s("x"),OX:s("x"),I_:s("at"),da:s("lF"),bd:s("d"),tO:s("aw"),mT:s("aw"),DC:s("aw"),sw:s("aw>"),Kc:s("aw>"),qE:s("aw>"),nf:s("ay"),a:s("ay"),e3:s("ay"),f:s("ay<@,@>"),pE:s("ay"),rr:s("ay<~(bf),bb?>"),IQ:s("d3"),a4:s("az"),cj:s("az"),rB:s("az"),qn:s("az"),Tr:s("az"),iB:s("aBY"),c4:s("xS"),Le:s("xU<@>"),R:s("cp"),Oc:s("lI"),xV:s("bb"),w:s("hb"),oh:s("r8"),Dy:s("aJO"),tB:s("y_"),xS:s("f8"),Pb:s("cW"),ZA:s("y2"),Tl:s("eK"),_h:s("kb"),Wz:s("hd"),Lb:s("eL"),_O:s("kc"),BZ:s("y4"),RZ:s("o6"),jW:s("lN"),A4:s("fw"),F4:s("dj"),u9:s("o7"),uK:s("j3"),dg:s("he"),We:s("ke"),_A:s("a6"),Jc:s("cY"),Tm:s("cY"),eq:s("cY"),ji:s("cY"),WA:s("cY"),kj:s("cY"),Te:s("oa"),P:s("aG"),MY:s("aCh"),K:s("D"),yw:s("aM"),fy:s("aM<~()>"),_:s("aM<~(b_)>"),jc:s("aM<~(eW)>"),EP:s("m"),gY:s("j5"),Ms:s("j6"),N1:s("rd"),B9:s("oc"),Mf:s("re"),Q2:s("IW"),Fw:s("dN"),IL:s("dN"),YG:s("rg"),zM:s("dw"),IF:s("yE"),ix:s("d5"),v3:s("l"),jP:s("j9"),i6:s("fx
"),ge:s("og"),Ko:s("oh"),C:s("i0"),c:s("ki"),qL:s("kj"),GG:s("aJQ"),W2:s("bf"),XA:s("kk"),n2:s("oi"),PB:s("oj"),Mj:s("ok"),ks:s("jc"),oN:s("ol"),bb:s("rl"),_p:s("fy"),C0:s("aCN"),yH:s("aS"),k6:s("i1"),jU:s("rr"),Bb:s("jf
"),bN:s("aqv"),Qz:s("JW"),MZ:s("z5"),NW:s("JY"),r:s("B"),E:s("oq"),Ro:s("ze"),d:s("u"),Cg:s("or"),F5:s("al"),GM:s("aD"),Wx:s("ko"),nl:s("cg"),Ss:s("m2"),E1:s("zr"),UM:s("hi"),mu:s("jg"),Ol:s("rx"),k8:s("cN<@>"),dZ:s("zt"),yb:s("dy"),z4:s("cO"),k2:s("zv"),H8:s("ch"),o_:s("ch"),Zg:s("hj"),oj:s("ov"),pO:s("bS<@>(a0,D?)"),Sv:s("ox"),nY:s("zA"),BL:s("zA"),Np:s("rA"),MF:s("rB"),JE:s("zE"),Cy:s("zF"),FS:s("zI"),bh:s("ji"),sm:s("rI"),_S:s("cr"),bu:s("c6"),UF:s("cE"),g3:s("oB"),HS:s("oC"),ZB:s("b0>"),Lu:s("b0>>"),CE:s("b0>"),am:s("b0<~>"),RY:s("bG"),jH:s("oE"),cZ:s("rN"),Hc:s("kr"),Mp:s("aZ"),FW:s("L"),c6:s("ma"),Z1:s("mb"),s7:s("jl"),VE:s("md"),XP:s("me"),Cj:s("mf"),xc:s("mg"),wX:s("jm"),im:s("t7"),Ws:s("zZ"),Dj:s("aDp"),q:s("mh"),Gt:s("ta"),D:s("fD"),M0:s("oJ"),jB:s("mi"),y3:s("ia"),wq:s("jo"),D_:s("kw"),B:s("dl"),Km:s("c7"),MI:s("hl"),lb:s("a1"),Iz:s("aN"),NP:s("d_"),N:s("k"),Vc:s("aDz"),o:s("aO"),Ci:s("tj"),_P:s("tk"),ry:s("aH"),OM:s("oM"),OJ:s("aDE"),if:s("oN"),WT:s("d0"),u4:s("d0"),re:s("d0>"),az:s("d0"),SL:s("d0"),Zl:s("d0>?>"),hr:s("d0"),ZC:s("mk"),lu:s("ml"),aW:s("tq"),S0:s("ts"),W7:s("tt"),Rp:s("dB"),mi:s("LO"),l:s("eu"),bZ:s("aDM"),AS:s("mp"),em:s("t"),we:s("hn"),ZM:s("oT"),ZF:s("jr>"),Ag:s("jr<@>"),qe:s("LW"),U2:s("aDU"),wv:s("mr"),Ml:s("kD"),Ni:s("ar"),Y:s("ar"),n:s("ff"),ns:s("ms"),e2:s("cG"),H3:s("cQ"),MX:s("kF"),M:s("c8"),kk:s("jt"),lQ:s("AR"),G5:s("kG"),gU:s("eR"),Xu:s("M7"),Z2:s("ju"),xd:s("ed"),GY:s("jw"),Dg:s("p0"),rS:s("fg"),X3:s("kH"),V6:s("p1"),Hd:s("au"),ZK:s("fI"),Ri:s("fI"),ow:s("fI"),u8:s("fI"),kE:s("fI<~(D,c7?)>"),Pi:s("tK"),l7:s("h"),a7:s("kI"),Ab:s("h(a0)"),X5:s("ho"),Uh:s("AX"),VW:s("p3"),oL:s("jx"),KU:s("AY"),h8:s("aI"),UB:s("aI"),eG:s("aI"),rj:s("aI"),nj:s("aI>"),rM:s("aI"),Iy:s("aI"),fO:s("aI"),gI:s("aI"),VY:s("aI"),zh:s("aI<@>"),yB:s("aI"),EZ:s("aI"),h:s("aI<~>"),Jd:s("mt"),pq:s("tM"),BY:s("aEj"),ZW:s("p6"),B6:s("B9"),A3:s("dE"),mt:s("aKK"),EG:s("p7"),Y8:s("dF"),dA:s("kM"),Fb:s("kM"),Uz:s("kM"),UJ:s("NF"),l3:s("u4"),TV:s("p9"),hG:s("p9"),dP:s("p9"),fg:s("mv"),ky:s("BE"),fk:s("u8"),ag:s("u9"),h1:s("ua"),xl:s("ub"),Lv:s("a4"),Z7:s("a4"),qc:s("a4"),_T:s("a4"),wM:s("a4>"),A5:s("a4"),Gl:s("a4"),dH:s("a4"),Qy:s("a4"),ot:s("a4"),LR:s("a4<@>"),wJ:s("a4"),gg:s("a4"),X6:s("a4"),U:s("a4<~>"),cK:s("ud"),Qu:s("kO"),U3:s("uf"),UR:s("ew"),R9:s("pf"),f7:s("BN<@,@>"),WD:s("BP"),Nr:s("BQ"),pp:s("pg"),oc:s("BW"),Sx:s("my"),pt:s("up"),Gk:s("Ca"),GJ:s("fh"),Fx:s("fh"),w2:s("fh"),yG:s("fh"),EN:s("fh"),h2:s("ee"),Lf:s("ee"),pj:s("ee"),_s:s("ee"),Fe:s("Cl"),xg:s("Pa"),Tp:s("mB"),gQ:s("pj"),sZ:s("CB"),Sc:s("Pw"),mm:s("uA"),h7:s("jB"),zP:s("d8"),yE:s("CH"),zd:s("CN"),Sq:s("uE"),_2:s("uF"),V0:s("kR"),Ez:s("dG"),Pu:s("D_"),yd:s("D5"),jF:s("uH"),S8:s("Dp"),HE:s("uO"),tH:s("aEY"),eD:s("DK"),si:s("dU"),XI:s("dU"),w7:s("DQ"),DH:s("Sn"),y:s("y"),i:s("J"),z:s("@"),lG:s("@(ah)"),U4:s("@(x)"),C_:s("@(D)"),Hg:s("@(D,c7)"),S:s("q"),s5:s("0&*"),ub:s("D*"),ZU:s("jJ?"),Vx:s("dJ?"),sa:s("ek?"),eJ:s("n_?"),oI:s("ds?"),CD:s("c1?"),eQ:s("q1?"),MB:s("q3?"),Aw:s("VQ?"),ts:s("vZ?"),cW:s("VR?"),xs:s("w_?"),GB:s("VT?"),EM:s("w0?"),Vz:s("n9?"),MH:s("E?"),YJ:s("de?"),Hb:s("dY?"),V2:s("fX?"),pc:s("cd?"),Om:s("ni?"),Dv:s("b2?"),fd:s("wB?"),pk:s("cT?"),RC:s("wS?"),uZ:s("a7?"),eS:s("Hz?"),_I:s("nD?"),gx:s("hL?"),lF:s("cK?"),Pr:s("lw?"),Ef:s("h6?"),kc:s("x<@>?"),tG:s("x?"),y6:s("d?"),qA:s("f7?"),nA:s("ay?"),wd:s("ay>?"),J1:s("ay?"),iD:s("bb?"),iI:s("lK?"),WV:s("cW?"),ZR:s("a6?"),X:s("D?"),Ff:s("a2U?"),dJ:s("j5?"),Zr:s("a2V?"),Jq:s("ym?"),KX:s("eM?"),uR:s("hZ?"),xO:s("od?"),fF:s("yz?"),p7:s("yA?"),Gr:s("yB?"),Ll:s("yC?"),aw:s("yD?"),mc:s("d5?"),wb:s("yF?"),EA:s("yG?"),_c:s("a3r?"),O:s("Js?"),Zc:s("lZ?"),Qv:s("B?"),CA:s("oq?"),Rn:s("u?"),c_:s("bm?"),NT:s("m1?"),ym:s("ko?"),IT:s("cg?"),kR:s("fA?"),q1:s("e6?"),LQ:s("c6?"),m5:s("rK?"),Zi:s("bG?"),TZ:s("oF?"),tW:s("L?"),LS:s("jl?"),MR:s("fD?"),lE:s("hl?"),Dt:s("d_?"),ob:s("k?"),aE:s("aO?"),f3:s("fe?"),p8:s("t?"),Dh:s("oS?"),qf:s("M0?"),zV:s("tF?"),ir:s("ar?"),nc:s("cQ?"),Wn:s("il?"),Wj:s("u4?"),zH:s("u9?"),Xk:s("ew?"),av:s("CD?"),zr:s("uH?"),JI:s("RA<@>?"),X7:s("y?"),PM:s("J?"),bo:s("q?"),Nw:s("~()?"),Jy:s("br"),H:s("~"),T:s("~()"),TM:s("~(eW)"),Vu:s("~(aP)"),Su:s("~(jV)"),xt:s("~(x)"),mX:s("~(D)"),hK:s("~(D,c7)"),Ld:s("~(bf)"),iS:s("~(i3)"),HT:s("~(D?)")}})();(function constants(){var s=hunkHelpers.makeConstList -B.m5=A.mY.prototype -B.b1=A.n2.prototype -B.xI=A.FB.prototype -B.h=A.qc.prototype -B.mT=A.wj.prototype -B.na=A.jW.prototype -B.b3=A.wZ.prototype -B.fR=A.lt.prototype -B.BG=A.nK.prototype -B.ni=A.nP.prototype -B.BV=J.qT.prototype -B.c=J.o.prototype -B.d1=J.xh.prototype -B.f=J.qV.prototype -B.e=J.lA.prototype -B.b=J.k1.prototype -B.C5=J.iY.prototype -B.C6=J.i.prototype -B.Ch=A.xr.prototype -B.Ck=A.xw.prototype -B.tK=A.Ik.prototype -B.JL=A.lK.prototype -B.JQ=A.kc.prototype -B.tQ=A.o6.prototype -B.ez=A.y6.prototype -B.hz=A.y7.prototype -B.eA=A.y8.prototype -B.hA=A.y9.prototype -B.R=A.o7.prototype -B.tR=A.ra.prototype -B.JZ=A.IL.prototype -B.tY=A.yw.prototype -B.hF=A.Jg.prototype -B.uO=J.Ju.prototype -B.KR=A.zD.prototype -B.MB=A.Ae.prototype -B.vp=A.Ag.prototype -B.aW=A.oM.prototype -B.vq=A.Am.prototype -B.dA=A.AM.prototype -B.lB=J.jt.prototype -B.lD=A.p1.prototype -B.b6=A.p3.prototype -B.TY=new A.EY(0,"unknown") -B.w5=new A.vb(null) -B.lZ=new A.eF(0,1) -B.m_=new A.eF(0,-1) -B.m0=new A.eF(1,0) -B.m1=new A.eF(-1,0) -B.b7=new A.eF(-1,-1) -B.M=new A.dW(0,0) -B.dK=new A.dW(0,1) -B.fc=new A.dW(0,-1) -B.w6=new A.dW(1,0) -B.cf=new A.dW(-1,-1) -B.m2=new A.F_(null) -B.w7=new A.vd(0,"stretch") -B.m3=new A.vd(1,"glow") -B.w8=new A.vl(0,"normal") -B.w9=new A.vl(1,"preserve") -B.w=new A.eW(0,"dismissed") -B.b8=new A.eW(1,"forward") -B.aM=new A.eW(2,"reverse") -B.H=new A.eW(3,"completed") -B.wa=new A.pR(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.wb=new A.mS(null) -B.wc=new A.mT(0,"resumed") -B.wd=new A.mT(1,"inactive") -B.we=new A.mT(2,"paused") -B.wf=new A.mT(3,"detached") -B.bZ=A.b(s([]),t.s) -B.l=new A.tr(1,"downstream") -B.lu=new A.ea(-1,-1,B.l,!1,-1,-1) -B.bo=new A.cx(-1,-1) -B.bn=new A.dB("",B.lu,B.bo) -B.TZ=new A.vw(!1,"",B.bZ,B.bn,null) -B.I=new A.mV(0,"up") -B.ay=new A.mV(1,"right") -B.J=new A.mV(2,"down") -B.al=new A.mV(3,"left") -B.as=new A.vy(0,"horizontal") -B.a2=new A.vy(1,"vertical") -B.wg=new A.Fe(null) -B.wh=new A.Fd(null) -B.am=new A.a8I() -B.m4=new A.lb("flutter/accessibility",B.am,t.Al) -B.bN=new A.a0F() -B.wi=new A.lb("flutter/keyevent",B.bN,t.Al) -B.fl=new A.a8U() -B.wj=new A.lb("flutter/lifecycle",B.fl,A.a_("lb")) -B.wk=new A.lb("flutter/system",B.bN,t.Al) -B.wl=new A.mW(13,"modulate") -B.wm=new A.mW(20,"hardLight") -B.wn=new A.mW(26,"saturation") -B.fd=new A.mW(3,"srcOver") -B.cP=new A.Fn(0,"normal") -B.K=new A.bD(0,0) -B.b0=new A.cI(B.K,B.K,B.K,B.K) -B.c7=new A.bD(4,4) -B.m6=new A.cI(B.c7,B.c7,B.K,B.K) -B.fe=new A.cI(B.c7,B.c7,B.c7,B.c7) -B.n=new A.E(4278190080) -B.cg=new A.vA(0,"none") -B.t=new A.ds(B.n,0,B.cg) -B.br=new A.vA(1,"solid") -B.wq=new A.vB(null,null,null) -B.m7=new A.pV(0,"spread") -B.wr=new A.pV(1,"centered") -B.ws=new A.pV(2,"linear") -B.wt=new A.vD(null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.m8=new A.Fp(0,"fixed") -B.wu=new A.vE(null,null,null,null,null,null,null) -B.uQ=new A.JP(null) -B.wv=new A.Fq(B.uQ) -B.m9=new A.aF(40,40,40,40) -B.ma=new A.aF(56,56,56,56) -B.mb=new A.aF(96,96,96,96) -B.mc=new A.aF(1/0,1/0,1/0,1/0) -B.md=new A.aF(0,1/0,48,48) -B.cQ=new A.aF(0,1/0,0,1/0) -B.wy=new A.aF(280,1/0,0,1/0) -B.wx=new A.aF(36,1/0,36,1/0) -B.ww=new A.aF(48,1/0,48,1/0) -B.eE=new A.bD(15,15) -B.wo=new A.cI(B.eE,B.eE,B.eE,B.eE) -B.aF=new A.vI(0,"rectangle") -B.wz=new A.dX(null,null,null,B.wo,null,null,B.aF) -B.wA=new A.Fs(6,"scaleDown") -B.cR=new A.vH(0,"tight") -B.me=new A.vH(5,"strut") -B.fg=new A.vI(1,"circle") -B.bL=new A.Fv(0,"tight") -B.a3=new A.vJ(0,"dark") -B.ac=new A.vJ(1,"light") -B.b9=new A.iF(0,"blink") -B.N=new A.iF(1,"webkit") -B.bM=new A.iF(2,"firefox") -B.wE=new A.iF(3,"edge") -B.fh=new A.iF(4,"ie11") -B.ch=new A.iF(5,"samsung") -B.wF=new A.iF(6,"unknown") -B.wG=new A.vK(null,null,null,null,null,null,null,null,null) -B.wH=new A.Fx(0,"normal") -B.dL=new A.nQ(A.atT(),A.a_("nQ")) -B.wI=new A.nQ(A.atT(),A.a_("nQ")) -B.wJ=new A.EX() -B.wK=new A.U9() -B.wM=new A.UE() -B.U_=new A.Fh() -B.wN=new A.Fg() -B.U0=new A.V9() -B.wO=new A.G3() -B.wP=new A.G6() -B.wQ=new A.Gp() -B.wR=new A.Wv() -B.wS=new A.GF() -B.wT=new A.GG() -B.U1=new A.GJ() -B.wU=new A.GK() -B.p=new A.wm() -B.wW=new A.Yc() -B.wX=new A.jS(A.a_("jS")) -B.cS=new A.GU() -B.wY=new A.GV() -B.ad=new A.GV() -B.EQ=A.b(s(["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),t.s) -B.Ex=A.b(s(["January","February","March","April","May","June","July","August","September","October","November","December"]),t.s) -B.ER=A.b(s(["Mon","Tue","Wed","Thur","Fri","Sat","Sun"]),t.s) -B.DW=A.b(s(["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]),t.s) -B.U2=new A.YD() -B.dM=new A.Hg() -B.U3=new A.Hx() -B.fi=new A.a_f() -B.n8=new A.qC(1,"auto") -B.wZ=new A.HQ() -B.a4=new A.a0E() -B.aB=new A.a0G() -B.mh=function getTagFallback(o) { - var s = Object.prototype.toString.call(o); - return s.substring(8, s.length - 1); -} -B.x_=function() { - var toStringFunction = Object.prototype.toString; - function getTag(o) { - var s = toStringFunction.call(o); - return s.substring(8, s.length - 1); - } - function getUnknownTag(object, tag) { - if (/^HTML[A-Z].*Element$/.test(tag)) { - var name = toStringFunction.call(object); - if (name == "[object Object]") return null; - return "HTMLElement"; - } - } - function getUnknownTagGenericBrowser(object, tag) { - if (self.HTMLElement && object instanceof HTMLElement) return "HTMLElement"; - return getUnknownTag(object, tag); - } - function prototypeForTag(tag) { - if (typeof window == "undefined") return null; - if (typeof window[tag] == "undefined") return null; - var constructor = window[tag]; - if (typeof constructor != "function") return null; - return constructor.prototype; - } - function discriminator(tag) { return null; } - var isBrowser = typeof navigator == "object"; - return { - getTag: getTag, - getUnknownTag: isBrowser ? getUnknownTagGenericBrowser : getUnknownTag, - prototypeForTag: prototypeForTag, - discriminator: discriminator }; -} -B.x4=function(getTagFallback) { - return function(hooks) { - if (typeof navigator != "object") return hooks; - var ua = navigator.userAgent; - if (ua.indexOf("DumpRenderTree") >= 0) return hooks; - if (ua.indexOf("Chrome") >= 0) { - function confirm(p) { - return typeof window == "object" && window[p] && window[p].name == p; - } - if (confirm("Window") && confirm("HTMLElement")) return hooks; - } - hooks.getTag = getTagFallback; - }; -} -B.x0=function(hooks) { - if (typeof dartExperimentalFixupGetTag != "function") return hooks; - hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); -} -B.x1=function(hooks) { - var getTag = hooks.getTag; - var prototypeForTag = hooks.prototypeForTag; - function getTagFixed(o) { - var tag = getTag(o); - if (tag == "Document") { - if (!!o.xmlVersion) return "!Document"; - return "!HTMLDocument"; - } - return tag; - } - function prototypeForTagFixed(tag) { - if (tag == "Document") return null; - return prototypeForTag(tag); - } - hooks.getTag = getTagFixed; - hooks.prototypeForTag = prototypeForTagFixed; -} -B.x3=function(hooks) { - var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; - if (userAgent.indexOf("Firefox") == -1) return hooks; - var getTag = hooks.getTag; - var quickMap = { - "BeforeUnloadEvent": "Event", - "DataTransfer": "Clipboard", - "GeoGeolocation": "Geolocation", - "Location": "!Location", - "WorkerMessageEvent": "MessageEvent", - "XMLDocument": "!Document"}; - function getTagFirefox(o) { - var tag = getTag(o); - return quickMap[tag] || tag; - } - hooks.getTag = getTagFirefox; -} -B.x2=function(hooks) { - var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; - if (userAgent.indexOf("Trident/") == -1) return hooks; - var getTag = hooks.getTag; - var quickMap = { - "BeforeUnloadEvent": "Event", - "DataTransfer": "Clipboard", - "HTMLDDElement": "HTMLElement", - "HTMLDTElement": "HTMLElement", - "HTMLPhraseElement": "HTMLElement", - "Position": "Geoposition" - }; - function getTagIE(o) { - var tag = getTag(o); - var newTag = quickMap[tag]; - if (newTag) return newTag; - if (tag == "Object") { - if (window.DataView && (o instanceof window.DataView)) return "DataView"; - } - return tag; - } - function prototypeForTagIE(tag) { - var constructor = window[tag]; - if (constructor == null) return null; - return constructor.prototype; - } - hooks.getTag = getTagIE; - hooks.prototypeForTag = prototypeForTagIE; -} -B.mi=function(hooks) { return hooks; } - -B.at=new A.HX() -B.x5=new A.a1M() -B.x6=new A.a2o() -B.mj=new A.a2F() -B.x8=new A.a2Q() -B.fk=new A.D() -B.x9=new A.IR() -B.aX=new A.dn(0,"android") -B.av=new A.dn(2,"iOS") -B.aY=new A.dn(4,"macOS") -B.mm=new A.Mk() -B.mg=new A.Gu() -B.ey=new A.bI([B.aX,B.mm,B.av,B.mg,B.aY,B.mg],A.a_("bI")) -B.xa=new A.IV() -B.xb=new A.J8() -B.mk=new A.yt() -B.xc=new A.a3q() -B.U4=new A.a3Q() -B.Kw=new A.JJ(0,"square") -B.xf=new A.JK() -B.Kx=new A.JL(0,"square") -B.xg=new A.JM() -B.xh=new A.a4v() -B.xi=new A.a5D() -B.xj=new A.a5E() -B.xk=new A.a5F() -B.xl=new A.a5G() -B.xm=new A.KG() -B.a=new A.a72() -B.bs=new A.a8H() -B.ci=new A.a8L() -B.bO=new A.a8M() -B.xn=new A.a9q() -B.xo=new A.a9w() -B.xp=new A.a9x() -B.xq=new A.a9y() -B.xr=new A.a9C() -B.xs=new A.a9E() -B.xt=new A.a9F() -B.xu=new A.a9G() -B.xv=new A.aap() -B.z=new A.Mb() -B.ba=new A.Mc() -B.F=new A.w(0,0,0,0) -B.eP=new A.Mi(0,0,0,0) -B.EJ=A.b(s([]),A.a_("o")) -B.ml=new A.Mf() -B.cT=new A.Mr() -B.cj=new A.Ms() -B.xw=new A.Nn() -B.dN=new A.Nv() -B.xx=new A.aca() -B.xy=new A.ace() -B.ck=new A.NA() -B.fm=new A.acq() -B.mn=new A.acy() -B.d=new A.ad5() -B.xz=new A.adv() -B.xA=new A.adw() -B.xB=new A.adA() -B.a9=new A.C5() -B.xC=new A.OZ() -B.bt=new A.aeZ() -B.mo=new A.afO() -B.ae=new A.afT() -B.xD=new A.ag3() -B.xE=new A.Rp() -B.xF=new A.So() -B.xG=new A.vM(0,"pixel") -B.xH=new A.vM(1,"viewport") -B.xJ=new A.q_(null,null,null,null,null,null,null) -B.eL=new A.t(!0,null,null,null,null,null,20,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.R0=new A.es("\u6dfb\u52a0\u7528\u6237",null,B.eL,null,null,null,null,null,null,null) -B.xK=new A.n6(B.M,null,null,B.R0,null) -B.QX=new A.es("\u79ef\u5206\u67e5\u8be2",null,B.eL,null,null,null,null,null,null,null) -B.xL=new A.n6(B.M,null,null,B.QX,null) -B.R_=new A.es("\u767b \u5f55",null,B.eL,null,null,null,null,null,null,null) -B.xM=new A.n6(B.M,null,null,B.R_,null) -B.xN=new A.vP(null,null,null,null,null,null,null,null,null) -B.xO=new A.vQ(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.mp=new A.dt(B.t) -B.xQ=new A.Gb(B.uQ) -B.xR=new A.vY(0,"difference") -B.cl=new A.vY(1,"intersect") -B.u=new A.n8(0,"none") -B.ai=new A.n8(1,"hardEdge") -B.dO=new A.n8(2,"antiAlias") -B.cU=new A.n8(3,"antiAliasWithSaveLayer") -B.xS=new A.Y(0,255) -B.xT=new A.Y(1024,1119) -B.xU=new A.Y(1120,1327) -B.xV=new A.Y(11360,11391) -B.xW=new A.Y(11520,11567) -B.xX=new A.Y(11648,11742) -B.xY=new A.Y(1168,1169) -B.xZ=new A.Y(11744,11775) -B.y_=new A.Y(11841,11841) -B.y0=new A.Y(1200,1201) -B.mq=new A.Y(12288,12351) -B.y1=new A.Y(12288,12543) -B.y2=new A.Y(12288,12591) -B.mr=new A.Y(12549,12585) -B.y3=new A.Y(12593,12686) -B.y4=new A.Y(12800,12828) -B.y5=new A.Y(12800,13311) -B.y6=new A.Y(12896,12923) -B.y7=new A.Y(1328,1424) -B.y8=new A.Y(1417,1417) -B.y9=new A.Y(1424,1535) -B.ya=new A.Y(1536,1791) -B.dP=new A.Y(19968,40959) -B.yb=new A.Y(2304,2431) -B.yc=new A.Y(2385,2386) -B.bu=new A.Y(2404,2405) -B.yd=new A.Y(2433,2555) -B.ye=new A.Y(2561,2677) -B.yf=new A.Y(256,591) -B.yg=new A.Y(258,259) -B.yh=new A.Y(2688,2815) -B.yi=new A.Y(272,273) -B.yj=new A.Y(2946,3066) -B.yk=new A.Y(296,297) -B.yl=new A.Y(305,305) -B.ym=new A.Y(3072,3199) -B.yn=new A.Y(3202,3314) -B.yo=new A.Y(3330,3455) -B.yp=new A.Y(338,339) -B.yq=new A.Y(3458,3572) -B.yr=new A.Y(3585,3675) -B.ys=new A.Y(360,361) -B.yt=new A.Y(3713,3807) -B.yu=new A.Y(4096,4255) -B.yv=new A.Y(416,417) -B.yw=new A.Y(42560,42655) -B.yx=new A.Y(4256,4351) -B.yy=new A.Y(42784,43007) -B.fn=new A.Y(43056,43065) -B.yz=new A.Y(431,432) -B.yA=new A.Y(43232,43259) -B.yB=new A.Y(43777,43822) -B.yC=new A.Y(44032,55215) -B.yD=new A.Y(4608,5017) -B.yE=new A.Y(6016,6143) -B.yF=new A.Y(601,601) -B.yG=new A.Y(64275,64279) -B.yH=new A.Y(64285,64335) -B.yI=new A.Y(64336,65023) -B.yJ=new A.Y(65070,65071) -B.yK=new A.Y(65072,65135) -B.yL=new A.Y(65132,65276) -B.yM=new A.Y(65279,65279) -B.ms=new A.Y(65280,65519) -B.yN=new A.Y(65533,65533) -B.yO=new A.Y(699,700) -B.yP=new A.Y(710,710) -B.yQ=new A.Y(7296,7304) -B.yR=new A.Y(730,730) -B.yS=new A.Y(732,732) -B.yT=new A.Y(7376,7414) -B.yU=new A.Y(7386,7386) -B.yV=new A.Y(7416,7417) -B.yW=new A.Y(7680,7935) -B.yX=new A.Y(775,775) -B.yY=new A.Y(77824,78894) -B.yZ=new A.Y(7840,7929) -B.z_=new A.Y(7936,8191) -B.z0=new A.Y(803,803) -B.z1=new A.Y(8192,8303) -B.z2=new A.Y(8204,8204) -B.aN=new A.Y(8204,8205) -B.z3=new A.Y(8204,8206) -B.z4=new A.Y(8208,8209) -B.z5=new A.Y(8224,8224) -B.z6=new A.Y(8271,8271) -B.z7=new A.Y(8308,8308) -B.z8=new A.Y(8352,8363) -B.z9=new A.Y(8360,8360) -B.za=new A.Y(8362,8362) -B.zb=new A.Y(8363,8363) -B.zc=new A.Y(8364,8364) -B.zd=new A.Y(8365,8399) -B.ze=new A.Y(8372,8372) -B.bP=new A.Y(8377,8377) -B.zf=new A.Y(8467,8467) -B.zg=new A.Y(8470,8470) -B.zh=new A.Y(8482,8482) -B.zi=new A.Y(8593,8593) -B.zj=new A.Y(8595,8595) -B.zk=new A.Y(8722,8722) -B.zl=new A.Y(8725,8725) -B.zm=new A.Y(880,1023) -B.az=new A.Y(9676,9676) -B.zn=new A.Y(9772,9772) -B.a5=new A.E(0) -B.mt=new A.E(1087163596) -B.zo=new A.E(1308622847) -B.zp=new A.E(134217728) -B.zq=new A.E(1375731712) -B.zr=new A.E(1627389952) -B.zs=new A.E(1660944383) -B.mu=new A.E(16777215) -B.zt=new A.E(167772160) -B.fo=new A.E(1723645116) -B.zu=new A.E(1724434632) -B.x=new A.E(2315255808) -B.zv=new A.E(2583691263) -B.A=new A.E(3019898879) -B.zx=new A.E(4039164096) -B.zD=new A.E(4278239141) -B.fq=new A.E(4279858898) -B.zM=new A.E(4280150454) -B.dS=new A.E(4280191205) -B.zN=new A.E(4280361249) -B.mx=new A.E(4280391411) -B.my=new A.E(4281348144) -B.dT=new A.E(4282532418) -B.zR=new A.E(4282549748) -B.fr=new A.E(4284572001) -B.mA=new A.E(4284790262) -B.mB=new A.E(4284809178) -B.dV=new A.E(4287679225) -B.zX=new A.E(4288585374) -B.mC=new A.E(4290502395) -B.mD=new A.E(4290624957) -B.fs=new A.E(4292030255) -B.mE=new A.E(4292927712) -B.mF=new A.E(4293128957) -B.A9=new A.E(4294309365) -B.mG=new A.E(4294638330) -B.Ad=new A.E(4294901760) -B.m=new A.E(4294967295) -B.An=new A.E(436207616) -B.mH=new A.E(452984831) -B.ft=new A.E(520093696) -B.Ao=new A.E(536870911) -B.aC=new A.li(0,"start") -B.As=new A.li(1,"end") -B.af=new A.li(2,"center") -B.dW=new A.li(3,"stretch") -B.fu=new A.li(4,"baseline") -B.mI=new A.f_(0.18,1,0.04,1) -B.At=new A.f_(0.05,0,0.133333,0.06) -B.au=new A.f_(0.25,0.1,0.25,1) -B.cm=new A.f_(0.42,0,1,1) -B.mJ=new A.f_(0.67,0.03,0.65,0.09) -B.Au=new A.f_(0.075,0.82,0.165,1) -B.Av=new A.f_(0.208333,0.82,0.25,1) -B.P=new A.f_(0.4,0,0.2,1) -B.fv=new A.f_(0.35,0.91,0.33,0.97) -B.dX=new A.f_(0,0,0.58,1) -B.fw=new A.f_(0.42,0,0.58,1) -B.cX=new A.E(4288256409) -B.dU=new A.E(4285887861) -B.dY=new A.dZ(B.cX,"inactiveGray",null,B.cX,B.dU,B.cX,B.dU,B.cX,B.dU,B.cX,B.dU,0) -B.cV=new A.E(1493172224) -B.dQ=new A.E(2164260863) -B.Ay=new A.dZ(B.cV,null,null,B.cV,B.dQ,B.cV,B.dQ,B.cV,B.dQ,B.cV,B.dQ,0) -B.fp=new A.E(4278221567) -B.mw=new A.E(4278879487) -B.mv=new A.E(4278206685) -B.mz=new A.E(4282424575) -B.Aw=new A.dZ(B.fp,"systemBlue",null,B.fp,B.mw,B.mv,B.mz,B.fp,B.mw,B.mv,B.mz,0) -B.zL=new A.E(4280032286) -B.zO=new A.E(4280558630) -B.mK=new A.dZ(B.m,"systemBackground",null,B.m,B.n,B.m,B.n,B.m,B.zL,B.m,B.zO,0) -B.cW=new A.E(4042914297) -B.dR=new A.E(4028439837) -B.Ax=new A.dZ(B.cW,null,null,B.cW,B.dR,B.cW,B.dR,B.cW,B.dR,B.cW,B.dR,0) -B.mL=new A.dZ(B.n,"label",null,B.n,B.m,B.n,B.m,B.n,B.m,B.n,B.m,0) -B.SZ=new A.Np(B.mL,B.dY) -B.lJ=new A.Nr(null,B.Aw,B.mK,B.Ax,B.mK,B.SZ) -B.bQ=new A.w6(B.lJ,null,null,null,null,null,null) -B.Az=new A.wa(null,null,null,null,null,null,null,null,null,null,null) -B.mM=new A.lj(0,"uninitialized") -B.AA=new A.lj(1,"initializingServices") -B.mN=new A.lj(2,"initializedServices") -B.AB=new A.lj(3,"initializingUi") -B.AC=new A.lj(4,"initialized") -B.AD=new A.GA(1,"traversalOrder") -B.fx=new A.wb(0,"background") -B.AE=new A.wb(1,"foreground") -B.vH=new A.t(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.bJ=new A.oR(0,"clip") -B.aA=new A.Ay(0,"parent") -B.TC=new A.Pm(null) -B.mO=new A.lk(B.vH,null,!0,B.bJ,null,B.aA,null,B.TC,null) -B.U5=new A.wd(18) -B.aO=new A.qh(3,"info") -B.AF=new A.qh(5,"hint") -B.AG=new A.qh(6,"summary") -B.U6=new A.iN(1,"sparse") -B.AH=new A.iN(10,"shallow") -B.AI=new A.iN(11,"truncateChildren") -B.AJ=new A.iN(5,"error") -B.fy=new A.iN(7,"flat") -B.mP=new A.iN(8,"singleLine") -B.bR=new A.iN(9,"errorProperty") -B.AK=new A.qi(null,null,null,null,null,null) -B.AL=new A.ll(0,"connectTimeout") -B.AM=new A.ll(1,"sendTimeout") -B.AN=new A.ll(2,"receiveTimeout") -B.mQ=new A.ll(3,"response") -B.AO=new A.ll(5,"other") -B.AP=new A.fp(1,"horizontal") -B.fz=new A.fp(2,"endToStart") -B.fA=new A.fp(3,"startToEnd") -B.AQ=new A.fp(4,"up") -B.mR=new A.fp(5,"down") -B.mS=new A.fp(6,"none") -B.AR=new A.wk(null,null,null,null,null) -B.AS=new A.ng(5,15,null) -B.fB=new A.ng(null,15,null) -B.mU=new A.ng(null,null,null) -B.AT=new A.wr(0,"down") -B.V=new A.wr(1,"start") -B.AU=new A.wu(null,null,null,null,null) -B.r=new A.aP(0) -B.an=new A.aP(1e5) -B.dZ=new A.aP(1e6) -B.AV=new A.aP(12e5) -B.AW=new A.aP(125e3) -B.AX=new A.aP(15e3) -B.cY=new A.aP(15e4) -B.AY=new A.aP(15e5) -B.AZ=new A.aP(16667) -B.mV=new A.aP(167e3) -B.D=new A.aP(2e5) -B.fC=new A.aP(2e6) -B.B_=new A.aP(225e3) -B.fD=new A.aP(25e4) -B.B0=new A.aP(2961926e3) -B.cn=new A.aP(3e5) -B.B1=new A.aP(3e6) -B.B2=new A.aP(3e7) -B.mW=new A.aP(375e3) -B.B3=new A.aP(4e4) -B.fE=new A.aP(4e5) -B.B4=new A.aP(4e6) -B.cZ=new A.aP(5e4) -B.d_=new A.aP(5e5) -B.mX=new A.aP(5e6) -B.d0=new A.aP(6e5) -B.e_=new A.aP(75e3) -B.B5=new A.aP(-38e3) -B.aP=new A.as(0,0,0,0) -B.U7=new A.as(0,0,0,10) -B.B6=new A.as(0,12,0,12) -B.B7=new A.as(0,14,0,14) -B.B8=new A.as(0,8,0,8) -B.mY=new A.as(10,10,10,10) -B.mZ=new A.as(12,12,12,12) -B.B9=new A.as(12,8,12,8) -B.Ba=new A.as(15,10,15,5) -B.Bb=new A.as(15,15,15,15) -B.n_=new A.as(15,5,15,5) -B.Bc=new A.as(15,8,15,8) -B.fF=new A.as(16,0,16,0) -B.Bd=new A.as(20,20,20,20) -B.U8=new A.as(24,20,24,24) -B.Be=new A.as(40,24,40,24) -B.Bf=new A.as(4,0,4,0) -B.n0=new A.as(4,4,4,4) -B.U9=new A.as(4,4,4,5) -B.n1=new A.as(8,0,8,0) -B.bS=new A.as(8,8,8,8) -B.n2=new A.as(0.5,1,0.5,1) -B.Bg=new A.wy(null) -B.Bh=new A.qn(0,"noOpinion") -B.Bi=new A.qn(1,"enabled") -B.fG=new A.qn(2,"disabled") -B.Bj=new A.wG(null,null,null,null,null,null,null,null,null) -B.fH=new A.nm(0,"none") -B.n3=new A.nm(1,"low") -B.n4=new A.nm(2,"medium") -B.fI=new A.nm(3,"high") -B.fJ=new A.nn(0,"topLeft") -B.n5=new A.nn(1,"topRight") -B.fK=new A.nn(2,"bottomLeft") -B.o=new A.L(0,0) -B.Bk=new A.Hd(B.o,B.o) -B.n6=new A.wK(0,"tight") -B.Bl=new A.wK(1,"loose") -B.Bm=new A.qA(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.n7=new A.qB(0,"Start") -B.fL=new A.qB(1,"Update") -B.fM=new A.qB(2,"End") -B.fN=new A.qC(0,"never") -B.fO=new A.qC(2,"always") -B.fP=new A.jV(0,"touch") -B.e0=new A.jV(1,"traditional") -B.Ua=new A.Hl(0,"automatic") -B.v=new A.h_(3) -B.bT=new A.h_(6) -B.nb=new A.h0("Invalid method call",null,null) -B.Br=new A.h0("Expected envelope, got nothing",null,null) -B.aG=new A.h0("Message corrupted",null,null) -B.Bs=new A.h0("Invalid envelope",null,null) -B.bU=new A.wU(0,"accepted") -B.aj=new A.wU(1,"rejected") -B.nc=new A.lr(0,"pointerEvents") -B.co=new A.lr(1,"browserGestures") -B.bv=new A.qG(0,"ready") -B.e1=new A.qG(1,"possible") -B.Bt=new A.qG(2,"defunct") -B.nd=new A.wV(0,"forward") -B.ne=new A.wV(1,"reverse") -B.cp=new A.nE(0,"push") -B.bV=new A.nE(1,"pop") -B.cq=new A.qI(0,"deferToChild") -B.ao=new A.qI(1,"opaque") -B.aQ=new A.qI(2,"translucent") -B.Bu=new A.h2(57490,"MaterialIcons",null,!0) -B.Bv=new A.h2(57491,"MaterialIcons",null,!0) -B.Bw=new A.h2(57912,"MaterialIcons",null,!1) -B.Bx=new A.h2(57926,"MaterialIcons",null,!1) -B.BA=new A.h2(61280,"MaterialIcons",null,!1) -B.BB=new A.h2(61284,"MaterialIcons",null,!1) -B.B=new A.E(3707764736) -B.BD=new A.cK(B.B,null,null,null) -B.nf=new A.cK(B.n,null,null,null) -B.fS=new A.cK(B.n,1,24,null) -B.fT=new A.cK(B.m,null,null,null) -B.By=new A.h2(58332,"MaterialIcons",null,!1) -B.ng=new A.nI(B.By,null,null) -B.Bz=new A.h2(58727,"MaterialIcons",null,!1) -B.BE=new A.nI(B.Bz,null,null) -B.nh=new A.x4(0,"rawRgba") -B.BF=new A.x4(1,"rawStraightRgba") -B.BN=new A.nL(0,"repeat") -B.BO=new A.nL(1,"repeatX") -B.BP=new A.nL(2,"repeatY") -B.cr=new A.nL(3,"noRepeat") -B.S=A.b(s([]),t.oU) -B.BQ=new A.k0("\ufffc",null,null,!0,!0,B.S) -B.BR=new A.lx(null,null,null,"\u8d26 \u53f7\uff1a",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null) -B.Ub=new A.lx(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null) -B.BS=new A.lx(null,null,null,"\u670d\u52a1\u5668\u5730\u5740\uff1a",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null) -B.BT=new A.lx(null,null,null,"\u5bc6 \u7801\uff1a",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null) -B.bw=new A.nR(0,"next") -B.BU=new A.nR(1,"resolve") -B.nj=new A.nR(2,"resolveCallFollowing") -B.nk=new A.nR(4,"rejectCallFollowing") -B.BZ=new A.ep(0,0.1,B.a9) -B.BY=new A.ep(0,0.6666666666666666,B.a9) -B.nl=new A.ep(0.1,0.33,B.a9) -B.BW=new A.ep(0.125,0.25,B.a9) -B.BX=new A.ep(0.6,1,B.a9) -B.C_=new A.ep(0.72,1,B.P) -B.nm=new A.ep(0.5,1,B.au) -B.C0=new A.ep(0.2075,0.4175,B.a9) -B.C1=new A.ep(0.45,1,B.P) -B.C3=new A.ep(0,0.5,B.P) -B.C2=new A.ep(0.5,1,B.P) -B.C4=new A.ep(0.0825,0.2075,B.a9) -B.C7=new A.HZ(null) -B.C8=new A.I_(null,null) -B.e2=new A.qX(0,"object") -B.fV=new A.qX(1,"array") -B.C9=new A.qX(2,"str") -B.Ca=new A.xm(0,"rawKeyData") -B.Cb=new A.xm(1,"keyDataThenRawKeyData") -B.e3=new A.r_(0,"down") -B.Cc=new A.h7(B.r,B.e3,0,0,null,!1) -B.fW=new A.k3(0,"handled") -B.d2=new A.k3(1,"ignored") -B.nn=new A.k3(2,"skipRemainingHandlers") -B.cs=new A.r_(1,"up") -B.Cd=new A.r_(2,"repeat") -B.ep=new A.d(4294967556) -B.Ce=new A.r0(B.ep) -B.eq=new A.d(4294967562) -B.Cf=new A.r0(B.eq) -B.er=new A.d(4294967564) -B.Cg=new A.r0(B.er) -B.ct=new A.lD(0,"any") -B.bb=new A.lD(3,"all") -B.no=new A.e3(0,"verbose") -B.bW=new A.e3(1,"debug") -B.np=new A.e3(2,"info") -B.fX=new A.e3(4,"error") -B.nq=new A.e3(6,"nothing") -B.bx=new A.nY(1,"prohibited") -B.nr=new A.dv(0,0,0,B.bx) -B.d3=new A.nY(0,"opportunity") -B.d4=new A.nY(2,"mandatory") -B.bX=new A.nY(3,"endOfText") -B.fY=new A.be(0,"CM") -B.e6=new A.be(1,"BA") -B.bY=new A.be(10,"PO") -B.d5=new A.be(11,"OP") -B.cu=new A.be(12,"CP") -B.e7=new A.be(13,"IS") -B.d6=new A.be(14,"HY") -B.fZ=new A.be(15,"SY") -B.by=new A.be(16,"NU") -B.e8=new A.be(17,"CL") -B.h_=new A.be(18,"GL") -B.ns=new A.be(19,"BB") -B.e9=new A.be(2,"LF") -B.aH=new A.be(20,"HL") -B.ea=new A.be(21,"JL") -B.d7=new A.be(22,"JV") -B.d8=new A.be(23,"JT") -B.h0=new A.be(24,"NS") -B.eb=new A.be(25,"ZW") -B.h1=new A.be(26,"ZWJ") -B.ec=new A.be(27,"B2") -B.nt=new A.be(28,"IN") -B.ed=new A.be(29,"WJ") -B.h2=new A.be(3,"BK") -B.h3=new A.be(30,"ID") -B.ee=new A.be(31,"EB") -B.d9=new A.be(32,"H2") -B.da=new A.be(33,"H3") -B.h4=new A.be(34,"CB") -B.h5=new A.be(35,"RI") -B.ef=new A.be(36,"EM") -B.h6=new A.be(4,"CR") -B.eg=new A.be(5,"SP") -B.nu=new A.be(6,"EX") -B.h7=new A.be(7,"QU") -B.aR=new A.be(8,"AL") -B.eh=new A.be(9,"PR") -B.ei=new A.xA(4,"multi") -B.Cl=new A.xA(5,"multiCompatible") -B.Cm=new A.xC(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Co=A.b(s([0,1]),t.V) -B.Ct=A.b(s([1,0,3,2]),t.t) -B.fQ=new A.h_(0) -B.Bn=new A.h_(1) -B.Bo=new A.h_(2) -B.b2=new A.h_(4) -B.Bp=new A.h_(5) -B.Bq=new A.h_(7) -B.n9=new A.h_(8) -B.CI=A.b(s([B.fQ,B.Bn,B.Bo,B.v,B.b2,B.Bp,B.bT,B.Bq,B.n9]),A.a_("o")) -B.nw=A.b(s([0,0,32776,33792,1,10240,0,0]),t.t) -B.wL=new A.pO() -B.v0=new A.zG(1,"page") -B.v1=new A.hk(B.J,B.v0) -B.CL=A.b(s([B.wL,B.v1]),A.a_("o")) -B.CM=A.b(s(["*::class","*::dir","*::draggable","*::hidden","*::id","*::inert","*::itemprop","*::itemref","*::itemscope","*::lang","*::spellcheck","*::title","*::translate","A::accesskey","A::coords","A::hreflang","A::name","A::shape","A::tabindex","A::target","A::type","AREA::accesskey","AREA::alt","AREA::coords","AREA::nohref","AREA::shape","AREA::tabindex","AREA::target","AUDIO::controls","AUDIO::loop","AUDIO::mediagroup","AUDIO::muted","AUDIO::preload","BDO::dir","BODY::alink","BODY::bgcolor","BODY::link","BODY::text","BODY::vlink","BR::clear","BUTTON::accesskey","BUTTON::disabled","BUTTON::name","BUTTON::tabindex","BUTTON::type","BUTTON::value","CANVAS::height","CANVAS::width","CAPTION::align","COL::align","COL::char","COL::charoff","COL::span","COL::valign","COL::width","COLGROUP::align","COLGROUP::char","COLGROUP::charoff","COLGROUP::span","COLGROUP::valign","COLGROUP::width","COMMAND::checked","COMMAND::command","COMMAND::disabled","COMMAND::label","COMMAND::radiogroup","COMMAND::type","DATA::value","DEL::datetime","DETAILS::open","DIR::compact","DIV::align","DL::compact","FIELDSET::disabled","FONT::color","FONT::face","FONT::size","FORM::accept","FORM::autocomplete","FORM::enctype","FORM::method","FORM::name","FORM::novalidate","FORM::target","FRAME::name","H1::align","H2::align","H3::align","H4::align","H5::align","H6::align","HR::align","HR::noshade","HR::size","HR::width","HTML::version","IFRAME::align","IFRAME::frameborder","IFRAME::height","IFRAME::marginheight","IFRAME::marginwidth","IFRAME::width","IMG::align","IMG::alt","IMG::border","IMG::height","IMG::hspace","IMG::ismap","IMG::name","IMG::usemap","IMG::vspace","IMG::width","INPUT::accept","INPUT::accesskey","INPUT::align","INPUT::alt","INPUT::autocomplete","INPUT::autofocus","INPUT::checked","INPUT::disabled","INPUT::inputmode","INPUT::ismap","INPUT::list","INPUT::max","INPUT::maxlength","INPUT::min","INPUT::multiple","INPUT::name","INPUT::placeholder","INPUT::readonly","INPUT::required","INPUT::size","INPUT::step","INPUT::tabindex","INPUT::type","INPUT::usemap","INPUT::value","INS::datetime","KEYGEN::disabled","KEYGEN::keytype","KEYGEN::name","LABEL::accesskey","LABEL::for","LEGEND::accesskey","LEGEND::align","LI::type","LI::value","LINK::sizes","MAP::name","MENU::compact","MENU::label","MENU::type","METER::high","METER::low","METER::max","METER::min","METER::value","OBJECT::typemustmatch","OL::compact","OL::reversed","OL::start","OL::type","OPTGROUP::disabled","OPTGROUP::label","OPTION::disabled","OPTION::label","OPTION::selected","OPTION::value","OUTPUT::for","OUTPUT::name","P::align","PRE::width","PROGRESS::max","PROGRESS::min","PROGRESS::value","SELECT::autocomplete","SELECT::disabled","SELECT::multiple","SELECT::name","SELECT::required","SELECT::size","SELECT::tabindex","SOURCE::type","TABLE::align","TABLE::bgcolor","TABLE::border","TABLE::cellpadding","TABLE::cellspacing","TABLE::frame","TABLE::rules","TABLE::summary","TABLE::width","TBODY::align","TBODY::char","TBODY::charoff","TBODY::valign","TD::abbr","TD::align","TD::axis","TD::bgcolor","TD::char","TD::charoff","TD::colspan","TD::headers","TD::height","TD::nowrap","TD::rowspan","TD::scope","TD::valign","TD::width","TEXTAREA::accesskey","TEXTAREA::autocomplete","TEXTAREA::cols","TEXTAREA::disabled","TEXTAREA::inputmode","TEXTAREA::name","TEXTAREA::placeholder","TEXTAREA::readonly","TEXTAREA::required","TEXTAREA::rows","TEXTAREA::tabindex","TEXTAREA::wrap","TFOOT::align","TFOOT::char","TFOOT::charoff","TFOOT::valign","TH::abbr","TH::align","TH::axis","TH::bgcolor","TH::char","TH::charoff","TH::colspan","TH::headers","TH::height","TH::nowrap","TH::rowspan","TH::scope","TH::valign","TH::width","THEAD::align","THEAD::char","THEAD::charoff","THEAD::valign","TR::align","TR::bgcolor","TR::char","TR::charoff","TR::valign","TRACK::default","TRACK::kind","TRACK::label","TRACK::srclang","UL::compact","UL::type","VIDEO::controls","VIDEO::height","VIDEO::loop","VIDEO::mediagroup","VIDEO::muted","VIDEO::preload","VIDEO::width"]),t.s) -B.dg=new A.f8(0,"controlModifier") -B.dh=new A.f8(1,"shiftModifier") -B.di=new A.f8(2,"altModifier") -B.dj=new A.f8(3,"metaModifier") -B.tM=new A.f8(4,"capsLockModifier") -B.tN=new A.f8(5,"numLockModifier") -B.tO=new A.f8(6,"scrollLockModifier") -B.tP=new A.f8(7,"functionModifier") -B.JP=new A.f8(8,"symbolModifier") -B.nx=A.b(s([B.dg,B.dh,B.di,B.dj,B.tM,B.tN,B.tO,B.tP,B.JP]),A.a_("o")) -B.bG=new A.dn(1,"fuchsia") -B.bH=new A.dn(3,"linux") -B.bI=new A.dn(5,"windows") -B.Dn=A.b(s([B.aX,B.bG,B.av,B.bH,B.aY,B.bI]),A.a_("o")) -B.DX=A.b(s([-1,0,0,1,0,0,-1,0,1,0,0,0,-1,1,0,1,1,1,1,0]),t.V) -B.h9=A.b(s([]),t.t) -B.Dz=A.b(s([6,18]),t.t) -B.DA=A.b(s([6,22]),t.t) -B.DD=A.b(s([6,26]),t.t) -B.DJ=A.b(s([6,30]),t.t) -B.DP=A.b(s([6,34]),t.t) -B.DB=A.b(s([6,22,38]),t.t) -B.DC=A.b(s([6,24,42]),t.t) -B.DE=A.b(s([6,26,46]),t.t) -B.DI=A.b(s([6,28,50]),t.t) -B.DK=A.b(s([6,30,54]),t.t) -B.DO=A.b(s([6,32,58]),t.t) -B.DQ=A.b(s([6,34,62]),t.t) -B.DF=A.b(s([6,26,46,66]),t.t) -B.DG=A.b(s([6,26,48,70]),t.t) -B.DH=A.b(s([6,26,50,74]),t.t) -B.DL=A.b(s([6,30,54,78]),t.t) -B.DM=A.b(s([6,30,56,82]),t.t) -B.DN=A.b(s([6,30,58,86]),t.t) -B.DR=A.b(s([6,34,62,90]),t.t) -B.Hj=A.b(s([6,28,50,72,94]),t.t) -B.Hk=A.b(s([6,26,50,74,98]),t.t) -B.Hl=A.b(s([6,30,54,78,102]),t.t) -B.Hm=A.b(s([6,28,54,80,106]),t.t) -B.Hn=A.b(s([6,32,58,84,110]),t.t) -B.Ho=A.b(s([6,30,58,86,114]),t.t) -B.Hp=A.b(s([6,34,62,90,118]),t.t) -B.F1=A.b(s([6,26,50,74,98,122]),t.t) -B.F2=A.b(s([6,30,54,78,102,126]),t.t) -B.F3=A.b(s([6,26,52,78,104,130]),t.t) -B.FN=A.b(s([6,30,56,82,108,134]),t.t) -B.FY=A.b(s([6,34,60,86,112,138]),t.t) -B.G8=A.b(s([6,30,58,86,114,142]),t.t) -B.Gj=A.b(s([6,34,62,90,118,146]),t.t) -B.E0=A.b(s([6,30,54,78,102,126,150]),t.t) -B.E1=A.b(s([6,24,50,76,102,128,154]),t.t) -B.E2=A.b(s([6,28,54,80,106,132,158]),t.t) -B.E3=A.b(s([6,32,58,84,110,136,162]),t.t) -B.E4=A.b(s([6,26,54,82,110,138,166]),t.t) -B.E5=A.b(s([6,30,58,86,114,142,170]),t.t) -B.DY=A.b(s([B.h9,B.Dz,B.DA,B.DD,B.DJ,B.DP,B.DB,B.DC,B.DE,B.DI,B.DK,B.DO,B.DQ,B.DF,B.DG,B.DH,B.DL,B.DM,B.DN,B.DR,B.Hj,B.Hk,B.Hl,B.Hm,B.Hn,B.Ho,B.Hp,B.F1,B.F2,B.F3,B.FN,B.FY,B.G8,B.Gj,B.E0,B.E1,B.E2,B.E3,B.E4,B.E5]),t.R_) -B.ej=A.b(s([0,0,65490,45055,65535,34815,65534,18431]),t.t) -B.DZ=A.b(s(["pointerdown","pointermove","pointerup","pointercancel","touchstart","touchend","touchmove","touchcancel","mousedown","mousemove","mouseup","keyup","keydown"]),t.s) -B.lE=new A.cH(0,"DoubleQuote") -B.cO=new A.cH(1,"SingleQuote") -B.ax=new A.cH(2,"HebrewLetter") -B.eR=new A.cH(3,"CR") -B.eS=new A.cH(4,"LF") -B.lI=new A.cH(5,"Newline") -B.dE=new A.cH(6,"Extend") -B.SM=new A.cH(7,"RegionalIndicator") -B.dF=new A.cH(8,"Format") -B.dG=new A.cH(9,"Katakana") -B.aZ=new A.cH(10,"ALetter") -B.lF=new A.cH(11,"MidLetter") -B.lG=new A.cH(12,"MidNum") -B.dC=new A.cH(13,"MidNumLet") -B.bq=new A.cH(14,"Numeric") -B.eQ=new A.cH(15,"ExtendNumLet") -B.dD=new A.cH(16,"ZWJ") -B.lH=new A.cH(17,"WSegSpace") -B.vS=new A.cH(18,"Unknown") -B.E6=A.b(s([B.lE,B.cO,B.ax,B.eR,B.eS,B.lI,B.dE,B.SM,B.dF,B.dG,B.aZ,B.lF,B.lG,B.dC,B.bq,B.eQ,B.dD,B.lH,B.vS]),A.a_("o")) -B.nz=A.b(s(["text","multiline","number","phone","datetime","emailAddress","url","visiblePassword","name","address","none"]),t.s) -B.nA=A.b(s([0,0,26624,1023,65534,2047,65534,2047]),t.t) -B.nB=A.b(s([0,0,26498,1023,65534,34815,65534,18431]),t.t) -B.Hv=new A.lF("en","US") -B.nC=A.b(s([B.Hv]),t.ss) -B.lT=new A.uG(0,"named") -B.TN=new A.uG(1,"anonymous") -B.Ee=A.b(s([B.lT,B.TN]),A.a_("o")) -B.nD=A.b(s(["POST","PUT","PATCH","DELETE"]),t.s) -B.cB=new A.m(1,0) -B.K1=new A.m(1,1) -B.c1=new A.m(0,1) -B.K9=new A.m(-1,1) -B.tU=new A.m(-1,0) -B.Ka=new A.m(-1,-1) -B.tT=new A.m(0,-1) -B.K2=new A.m(1,-1) -B.ek=A.b(s([B.cB,B.K1,B.c1,B.K9,B.tU,B.Ka,B.tT,B.K2]),t.yv) -B.ar=new A.tr(0,"upstream") -B.En=A.b(s([B.ar,B.l]),A.a_("o")) -B.aa=new A.kA(0,"rtl") -B.q=new A.kA(1,"ltr") -B.Eo=A.b(s([B.aa,B.q]),A.a_("o")) -B.Ar=new A.E(855638016) -B.K_=new A.m(0,2) -B.wB=new A.fU(-1,B.cP,B.Ar,B.K_,1) -B.Ap=new A.E(603979776) -B.wC=new A.fU(0,B.cP,B.Ap,B.c1,1) -B.wD=new A.fU(0,B.cP,B.ft,B.c1,3) -B.Ep=A.b(s([B.wB,B.wC,B.wD]),t.sq) -B.O=new A.dF(0,"icon") -B.Y=new A.dF(1,"input") -B.G=new A.dF(2,"label") -B.a6=new A.dF(3,"hint") -B.Z=new A.dF(4,"prefix") -B.a_=new A.dF(5,"suffix") -B.a0=new A.dF(6,"prefixIcon") -B.a1=new A.dF(7,"suffixIcon") -B.ab=new A.dF(8,"helperError") -B.W=new A.dF(9,"counter") -B.aE=new A.dF(10,"container") -B.Eq=A.b(s([B.O,B.Y,B.G,B.a6,B.Z,B.a_,B.a0,B.a1,B.ab,B.W,B.aE]),A.a_("o")) -B.nE=A.b(s([B.fY,B.e6,B.e9,B.h2,B.h6,B.eg,B.nu,B.h7,B.aR,B.eh,B.bY,B.d5,B.cu,B.e7,B.d6,B.fZ,B.by,B.e8,B.h_,B.ns,B.aH,B.ea,B.d7,B.d8,B.h0,B.eb,B.h1,B.ec,B.nt,B.ed,B.h3,B.ee,B.d9,B.da,B.h4,B.h5,B.ef]),A.a_("o")) -B.Eu=A.b(s([B.fJ,B.n5,B.fK]),A.a_("o")) -B.lv=new A.t(!0,null,null,null,null,null,16,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.R3=new A.es("\u5173\u4e8e\u8f6f\u4ef6",null,B.lv,null,null,null,null,null,null,null) -B.ln=new A.Ln(null) -B.BC=new A.h2(62419,"CupertinoIcons","cupertino_icons",!0) -B.fU=new A.nI(B.BC,16,null) -B.Ev=A.b(s([B.R3,B.ln,B.fU]),t.p) -B.Ey=A.b(s(["click","scroll"]),t.s) -B.Ez=A.b(s(["HEAD","AREA","BASE","BASEFONT","BR","COL","COLGROUP","EMBED","FRAME","FRAMESET","HR","IMAGE","IMG","INPUT","ISINDEX","LINK","META","PARAM","SOURCE","STYLE","TITLE","WBR"]),t.s) -B.EA=A.b(s([0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0]),t.V) -B.EC=A.b(s([]),t.iW) -B.nG=A.b(s([]),t.Cz) -B.nH=A.b(s([]),A.a_("o")) -B.EB=A.b(s([]),t.fJ) -B.Uc=A.b(s([]),t.ss) -B.EI=A.b(s([]),t.tc) -B.nJ=A.b(s([]),t.jl) -B.nK=A.b(s([]),t.wi) -B.EK=A.b(s([]),A.a_("o>")) -B.h8=A.b(s([]),t.J) -B.EL=A.b(s([]),t.Lx) -B.EM=A.b(s([]),t.fm) -B.Ud=A.b(s([]),t.p) -B.nF=A.b(s([]),t.ee) -B.Cy=A.b(s([1,26,19]),t.t) -B.Cx=A.b(s([1,26,16]),t.t) -B.Cw=A.b(s([1,26,13]),t.t) -B.Cz=A.b(s([1,26,9]),t.t) -B.CD=A.b(s([1,44,34]),t.t) -B.CC=A.b(s([1,44,28]),t.t) -B.CB=A.b(s([1,44,22]),t.t) -B.CA=A.b(s([1,44,16]),t.t) -B.CF=A.b(s([1,70,55]),t.t) -B.CE=A.b(s([1,70,44]),t.t) -B.CQ=A.b(s([2,35,17]),t.t) -B.CP=A.b(s([2,35,13]),t.t) -B.Cu=A.b(s([1,100,80]),t.t) -B.CS=A.b(s([2,50,32]),t.t) -B.CR=A.b(s([2,50,24]),t.t) -B.Di=A.b(s([4,25,9]),t.t) -B.Cv=A.b(s([1,134,108]),t.t) -B.CT=A.b(s([2,67,43]),t.t) -B.Gu=A.b(s([2,33,15,2,34,16]),t.t) -B.GF=A.b(s([2,33,11,2,34,12]),t.t) -B.CU=A.b(s([2,86,68]),t.t) -B.Dl=A.b(s([4,43,27]),t.t) -B.Dk=A.b(s([4,43,19]),t.t) -B.Dj=A.b(s([4,43,15]),t.t) -B.CV=A.b(s([2,98,78]),t.t) -B.Dm=A.b(s([4,49,31]),t.t) -B.GQ=A.b(s([2,32,14,4,33,15]),t.t) -B.H0=A.b(s([4,39,13,1,40,14]),t.t) -B.CN=A.b(s([2,121,97]),t.t) -B.F4=A.b(s([2,60,38,2,61,39]),t.t) -B.Ff=A.b(s([4,40,18,2,41,19]),t.t) -B.Fq=A.b(s([4,40,14,2,41,15]),t.t) -B.CO=A.b(s([2,146,116]),t.t) -B.FB=A.b(s([3,58,36,2,59,37]),t.t) -B.FH=A.b(s([4,36,16,4,37,17]),t.t) -B.FI=A.b(s([4,36,12,4,37,13]),t.t) -B.FJ=A.b(s([2,86,68,2,87,69]),t.t) -B.FK=A.b(s([4,69,43,1,70,44]),t.t) -B.FL=A.b(s([6,43,19,2,44,20]),t.t) -B.FM=A.b(s([6,43,15,2,44,16]),t.t) -B.Dg=A.b(s([4,101,81]),t.t) -B.FO=A.b(s([1,80,50,4,81,51]),t.t) -B.FP=A.b(s([4,50,22,4,51,23]),t.t) -B.FQ=A.b(s([3,36,12,8,37,13]),t.t) -B.FR=A.b(s([2,116,92,2,117,93]),t.t) -B.FS=A.b(s([6,58,36,2,59,37]),t.t) -B.FT=A.b(s([4,46,20,6,47,21]),t.t) -B.FU=A.b(s([7,42,14,4,43,15]),t.t) -B.Dh=A.b(s([4,133,107]),t.t) -B.FV=A.b(s([8,59,37,1,60,38]),t.t) -B.FW=A.b(s([8,44,20,4,45,21]),t.t) -B.FX=A.b(s([12,33,11,4,34,12]),t.t) -B.FZ=A.b(s([3,145,115,1,146,116]),t.t) -B.G_=A.b(s([4,64,40,5,65,41]),t.t) -B.G0=A.b(s([11,36,16,5,37,17]),t.t) -B.G1=A.b(s([11,36,12,5,37,13]),t.t) -B.G2=A.b(s([5,109,87,1,110,88]),t.t) -B.G3=A.b(s([5,65,41,5,66,42]),t.t) -B.G4=A.b(s([5,54,24,7,55,25]),t.t) -B.Cp=A.b(s([11,36,12]),t.t) -B.G5=A.b(s([5,122,98,1,123,99]),t.t) -B.G6=A.b(s([7,73,45,3,74,46]),t.t) -B.G7=A.b(s([15,43,19,2,44,20]),t.t) -B.G9=A.b(s([3,45,15,13,46,16]),t.t) -B.Ga=A.b(s([1,135,107,5,136,108]),t.t) -B.Gb=A.b(s([10,74,46,1,75,47]),t.t) -B.Gc=A.b(s([1,50,22,15,51,23]),t.t) -B.Gd=A.b(s([2,42,14,17,43,15]),t.t) -B.Ge=A.b(s([5,150,120,1,151,121]),t.t) -B.Gf=A.b(s([9,69,43,4,70,44]),t.t) -B.Gg=A.b(s([17,50,22,1,51,23]),t.t) -B.Gh=A.b(s([2,42,14,19,43,15]),t.t) -B.Gi=A.b(s([3,141,113,4,142,114]),t.t) -B.Gk=A.b(s([3,70,44,11,71,45]),t.t) -B.Gl=A.b(s([17,47,21,4,48,22]),t.t) -B.Gm=A.b(s([9,39,13,16,40,14]),t.t) -B.Gn=A.b(s([3,135,107,5,136,108]),t.t) -B.Go=A.b(s([3,67,41,13,68,42]),t.t) -B.Gp=A.b(s([15,54,24,5,55,25]),t.t) -B.Gq=A.b(s([15,43,15,10,44,16]),t.t) -B.Gr=A.b(s([4,144,116,4,145,117]),t.t) -B.Cr=A.b(s([17,68,42]),t.t) -B.Gs=A.b(s([17,50,22,6,51,23]),t.t) -B.Gt=A.b(s([19,46,16,6,47,17]),t.t) -B.Gv=A.b(s([2,139,111,7,140,112]),t.t) -B.Cs=A.b(s([17,74,46]),t.t) -B.Gw=A.b(s([7,54,24,16,55,25]),t.t) -B.CW=A.b(s([34,37,13]),t.t) -B.Gx=A.b(s([4,151,121,5,152,122]),t.t) -B.Gy=A.b(s([4,75,47,14,76,48]),t.t) -B.Gz=A.b(s([11,54,24,14,55,25]),t.t) -B.GA=A.b(s([16,45,15,14,46,16]),t.t) -B.GB=A.b(s([6,147,117,4,148,118]),t.t) -B.GC=A.b(s([6,73,45,14,74,46]),t.t) -B.GD=A.b(s([11,54,24,16,55,25]),t.t) -B.GE=A.b(s([30,46,16,2,47,17]),t.t) -B.GG=A.b(s([8,132,106,4,133,107]),t.t) -B.GH=A.b(s([8,75,47,13,76,48]),t.t) -B.GI=A.b(s([7,54,24,22,55,25]),t.t) -B.GJ=A.b(s([22,45,15,13,46,16]),t.t) -B.GK=A.b(s([10,142,114,2,143,115]),t.t) -B.GL=A.b(s([19,74,46,4,75,47]),t.t) -B.GM=A.b(s([28,50,22,6,51,23]),t.t) -B.GN=A.b(s([33,46,16,4,47,17]),t.t) -B.GO=A.b(s([8,152,122,4,153,123]),t.t) -B.GP=A.b(s([22,73,45,3,74,46]),t.t) -B.GR=A.b(s([8,53,23,26,54,24]),t.t) -B.GS=A.b(s([12,45,15,28,46,16]),t.t) -B.GT=A.b(s([3,147,117,10,148,118]),t.t) -B.GU=A.b(s([3,73,45,23,74,46]),t.t) -B.GV=A.b(s([4,54,24,31,55,25]),t.t) -B.GW=A.b(s([11,45,15,31,46,16]),t.t) -B.GX=A.b(s([7,146,116,7,147,117]),t.t) -B.GY=A.b(s([21,73,45,7,74,46]),t.t) -B.GZ=A.b(s([1,53,23,37,54,24]),t.t) -B.H_=A.b(s([19,45,15,26,46,16]),t.t) -B.H1=A.b(s([5,145,115,10,146,116]),t.t) -B.H2=A.b(s([19,75,47,10,76,48]),t.t) -B.H3=A.b(s([15,54,24,25,55,25]),t.t) -B.H4=A.b(s([23,45,15,25,46,16]),t.t) -B.H5=A.b(s([13,145,115,3,146,116]),t.t) -B.H6=A.b(s([2,74,46,29,75,47]),t.t) -B.H7=A.b(s([42,54,24,1,55,25]),t.t) -B.H8=A.b(s([23,45,15,28,46,16]),t.t) -B.Cq=A.b(s([17,145,115]),t.t) -B.H9=A.b(s([10,74,46,23,75,47]),t.t) -B.Ha=A.b(s([10,54,24,35,55,25]),t.t) -B.F5=A.b(s([19,45,15,35,46,16]),t.t) -B.F6=A.b(s([17,145,115,1,146,116]),t.t) -B.F7=A.b(s([14,74,46,21,75,47]),t.t) -B.F8=A.b(s([29,54,24,19,55,25]),t.t) -B.F9=A.b(s([11,45,15,46,46,16]),t.t) -B.Fa=A.b(s([13,145,115,6,146,116]),t.t) -B.Fb=A.b(s([14,74,46,23,75,47]),t.t) -B.Fc=A.b(s([44,54,24,7,55,25]),t.t) -B.Fd=A.b(s([59,46,16,1,47,17]),t.t) -B.Fe=A.b(s([12,151,121,7,152,122]),t.t) -B.Fg=A.b(s([12,75,47,26,76,48]),t.t) -B.Fh=A.b(s([39,54,24,14,55,25]),t.t) -B.Fi=A.b(s([22,45,15,41,46,16]),t.t) -B.Fj=A.b(s([6,151,121,14,152,122]),t.t) -B.Fk=A.b(s([6,75,47,34,76,48]),t.t) -B.Fl=A.b(s([46,54,24,10,55,25]),t.t) -B.Fm=A.b(s([2,45,15,64,46,16]),t.t) -B.Fn=A.b(s([17,152,122,4,153,123]),t.t) -B.Fo=A.b(s([29,74,46,14,75,47]),t.t) -B.Fp=A.b(s([49,54,24,10,55,25]),t.t) -B.Fr=A.b(s([24,45,15,46,46,16]),t.t) -B.Fs=A.b(s([4,152,122,18,153,123]),t.t) -B.Ft=A.b(s([13,74,46,32,75,47]),t.t) -B.Fu=A.b(s([48,54,24,14,55,25]),t.t) -B.Fv=A.b(s([42,45,15,32,46,16]),t.t) -B.Fw=A.b(s([20,147,117,4,148,118]),t.t) -B.Fx=A.b(s([40,75,47,7,76,48]),t.t) -B.Fy=A.b(s([43,54,24,22,55,25]),t.t) -B.Fz=A.b(s([10,45,15,67,46,16]),t.t) -B.FA=A.b(s([19,148,118,6,149,119]),t.t) -B.FC=A.b(s([18,75,47,31,76,48]),t.t) -B.FD=A.b(s([34,54,24,34,55,25]),t.t) -B.FE=A.b(s([20,45,15,61,46,16]),t.t) -B.el=A.b(s([B.Cy,B.Cx,B.Cw,B.Cz,B.CD,B.CC,B.CB,B.CA,B.CF,B.CE,B.CQ,B.CP,B.Cu,B.CS,B.CR,B.Di,B.Cv,B.CT,B.Gu,B.GF,B.CU,B.Dl,B.Dk,B.Dj,B.CV,B.Dm,B.GQ,B.H0,B.CN,B.F4,B.Ff,B.Fq,B.CO,B.FB,B.FH,B.FI,B.FJ,B.FK,B.FL,B.FM,B.Dg,B.FO,B.FP,B.FQ,B.FR,B.FS,B.FT,B.FU,B.Dh,B.FV,B.FW,B.FX,B.FZ,B.G_,B.G0,B.G1,B.G2,B.G3,B.G4,B.Cp,B.G5,B.G6,B.G7,B.G9,B.Ga,B.Gb,B.Gc,B.Gd,B.Ge,B.Gf,B.Gg,B.Gh,B.Gi,B.Gk,B.Gl,B.Gm,B.Gn,B.Go,B.Gp,B.Gq,B.Gr,B.Cr,B.Gs,B.Gt,B.Gv,B.Cs,B.Gw,B.CW,B.Gx,B.Gy,B.Gz,B.GA,B.GB,B.GC,B.GD,B.GE,B.GG,B.GH,B.GI,B.GJ,B.GK,B.GL,B.GM,B.GN,B.GO,B.GP,B.GR,B.GS,B.GT,B.GU,B.GV,B.GW,B.GX,B.GY,B.GZ,B.H_,B.H1,B.H2,B.H3,B.H4,B.H5,B.H6,B.H7,B.H8,B.Cq,B.H9,B.Ha,B.F5,B.F6,B.F7,B.F8,B.F9,B.Fa,B.Fb,B.Fc,B.Fd,B.Fe,B.Fg,B.Fh,B.Fi,B.Fj,B.Fk,B.Fl,B.Fm,B.Fn,B.Fo,B.Fp,B.Fr,B.Fs,B.Ft,B.Fu,B.Fv,B.Fw,B.Fx,B.Fy,B.Fz,B.FA,B.FC,B.FD,B.FE]),t.R_) -B.Ci=new A.e3(3,"warning") -B.Cj=new A.e3(5,"wtf") -B.EO=A.b(s([B.no,B.bW,B.np,B.Ci,B.fX,B.Cj,B.nq]),t.wS) -B.EP=A.b(s([0,0,32722,12287,65534,34815,65534,18431]),t.t) -B.ha=A.b(s([0,0,65498,45055,65535,34815,65534,18431]),t.t) -B.cv=A.b(s([0,0,24576,1023,65534,34815,65534,18431]),t.t) -B.vT=new A.p8(0,"topLeft") -B.vW=new A.p8(3,"bottomRight") -B.T_=new A.kN(B.vT,B.vW) -B.T2=new A.kN(B.vW,B.vT) -B.vU=new A.p8(1,"topRight") -B.vV=new A.p8(2,"bottomLeft") -B.T0=new A.kN(B.vU,B.vV) -B.T1=new A.kN(B.vV,B.vU) -B.EU=A.b(s([B.T_,B.T2,B.T0,B.T1]),A.a_("o")) -B.EV=A.b(s([0,0,32754,11263,65534,34815,65534,18431]),t.t) -B.nL=A.b(s([0,0,65490,12287,65535,34815,65534,18431]),t.t) -B.CK=A.b(s([137,80,78,71,13,10,26,10]),t.Z) -B.BM=new A.jZ(B.CK,"image/png") -B.FF=A.b(s([71,73,70,56,55,97]),t.Z) -B.BK=new A.jZ(B.FF,"image/gif") -B.FG=A.b(s([71,73,70,56,57,97]),t.Z) -B.BL=new A.jZ(B.FG,"image/gif") -B.CH=A.b(s([255,216,255]),t.Z) -B.BI=new A.jZ(B.CH,"image/jpeg") -B.Er=A.b(s([82,73,70,70,null,null,null,null,87,69,66,80]),t.Z) -B.BJ=new A.jZ(B.Er,"image/webp") -B.Dw=A.b(s([66,77]),t.Z) -B.BH=new A.jZ(B.Dw,"image/bmp") -B.EW=A.b(s([B.BM,B.BK,B.BL,B.BI,B.BJ,B.BH]),A.a_("o")) -B.lp=new A.jp(0,"left") -B.vu=new A.jp(1,"right") -B.lq=new A.jp(2,"center") -B.lr=new A.jp(3,"justify") -B.bm=new A.jp(4,"start") -B.vv=new A.jp(5,"end") -B.EX=A.b(s([B.lp,B.vu,B.lq,B.lr,B.bm,B.vv]),A.a_("o")) -B.EY=A.b(s([!0,!1]),t.HZ) -B.R2=new A.es("\u65e5\u5fd7\u7ba1\u7406",null,B.lv,null,null,null,null,null,null,null) -B.EZ=A.b(s([B.R2,B.ln,B.fU]),t.p) -B.nM=A.b(s(["bind","if","ref","repeat","syntax"]),t.s) -B.QU=new A.es("\u9000\u51fa\u767b\u5f55",null,B.lv,null,null,null,null,null,null,null) -B.F0=A.b(s([B.QU,B.ln,B.fU]),t.p) -B.Hq=A.b(s([0,4,12,1,5,13,3,7,15]),t.t) -B.hb=A.b(s(["A::href","AREA::href","BLOCKQUOTE::cite","BODY::background","COMMAND::icon","DEL::cite","FORM::action","IMG::src","INPUT::src","INS::cite","Q::cite","VIDEO::poster"]),t.s) -B.Hw=new A.o_(null) -B.cw=new A.d(4294967304) -B.eo=new A.d(4294967323) -B.c_=new A.d(4294967423) -B.he=new A.d(4294967558) -B.db=new A.d(8589934848) -B.eu=new A.d(8589934849) -B.c0=new A.d(8589934850) -B.cz=new A.d(8589934851) -B.dc=new A.d(8589934852) -B.ev=new A.d(8589934853) -B.dd=new A.d(8589934854) -B.ew=new A.d(8589934855) -B.J7=new A.o1(null) -B.j=new A.m(0,0) -B.ca=new A.jv(B.j) -B.J8=new A.r4(B.j,B.ca) -B.J9=new A.a1E("longPress") -B.Ja=new A.r5(B.j,B.j) -B.E=new A.xK(0,"start") -B.tz=new A.xK(3,"spaceBetween") -B.bz=new A.xL(0,"min") -B.Q=new A.xL(1,"max") -B.Cn=A.b(s(["BU","DD","FX","TP","YD","ZR"]),t.s) -B.be=new A.bd(6,{BU:"MM",DD:"DE",FX:"FR",TP:"TL",YD:"YE",ZR:"CD"},B.Cn,t.li) -B.nv=A.b(s(["AVRInput","AVRPower","Accel","Accept","Again","AllCandidates","Alphanumeric","AltGraph","AppSwitch","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Attn","AudioBalanceLeft","AudioBalanceRight","AudioBassBoostDown","AudioBassBoostToggle","AudioBassBoostUp","AudioFaderFront","AudioFaderRear","AudioSurroundModeNext","AudioTrebleDown","AudioTrebleUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backspace","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","Call","Camera","CameraFocus","Cancel","CapsLock","ChannelDown","ChannelUp","Clear","Close","ClosedCaptionToggle","CodeInput","ColorF0Red","ColorF1Green","ColorF2Yellow","ColorF3Blue","ColorF4Grey","ColorF5Brown","Compose","ContextMenu","Convert","Copy","CrSel","Cut","DVR","Delete","Dimmer","DisplaySwap","Eisu","Eject","End","EndCall","Enter","EraseEof","Escape","ExSel","Execute","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F3","F4","F5","F6","F7","F8","F9","FavoriteClear0","FavoriteClear1","FavoriteClear2","FavoriteClear3","FavoriteRecall0","FavoriteRecall1","FavoriteRecall2","FavoriteRecall3","FavoriteStore0","FavoriteStore1","FavoriteStore2","FavoriteStore3","FinalMode","Find","Fn","FnLock","GoBack","GoHome","GroupFirst","GroupLast","GroupNext","GroupPrevious","Guide","GuideNextDay","GuidePreviousDay","HangulMode","HanjaMode","Hankaku","HeadsetHook","Help","Hibernate","Hiragana","HiraganaKatakana","Home","Hyper","Info","Insert","InstantReplay","JunjaMode","KanaMode","KanjiMode","Katakana","Key11","Key12","LastNumberRedial","LaunchApplication1","LaunchApplication2","LaunchAssistant","LaunchCalendar","LaunchContacts","LaunchControlPanel","LaunchMail","LaunchMediaPlayer","LaunchMusicPlayer","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWebBrowser","LaunchWebCam","LaunchWordProcessor","Link","ListProgram","LiveContent","Lock","LogOff","MailForward","MailReply","MailSend","MannerMode","MediaApps","MediaAudioTrack","MediaClose","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSkip","MediaSkipBackward","MediaSkipForward","MediaStepBackward","MediaStepForward","MediaStop","MediaTopMenu","MediaTrackNext","MediaTrackPrevious","MicrophoneToggle","MicrophoneVolumeDown","MicrophoneVolumeMute","MicrophoneVolumeUp","ModeChange","NavigateIn","NavigateNext","NavigateOut","NavigatePrevious","New","NextCandidate","NextFavoriteChannel","NextUserProfile","NonConvert","Notification","NumLock","OnDemand","Open","PageDown","PageUp","Pairing","Paste","Pause","PinPDown","PinPMove","PinPToggle","PinPUp","Play","PlaySpeedDown","PlaySpeedReset","PlaySpeedUp","Power","PowerOff","PreviousCandidate","Print","PrintScreen","Process","Props","RandomToggle","RcLowBattery","RecordSpeedNext","Redo","RfBypass","Romaji","STBInput","STBPower","Save","ScanChannelsToggle","ScreenModeNext","ScrollLock","Select","Settings","ShiftLevel5","SingleCandidate","Soft1","Soft2","Soft3","Soft4","Soft5","Soft6","Soft7","Soft8","SpeechCorrectionList","SpeechInputToggle","SpellCheck","SplitScreenToggle","Standby","Subtitle","Super","Symbol","SymbolLock","TV","TV3DMode","TVAntennaCable","TVAudioDescription","TVAudioDescriptionMixDown","TVAudioDescriptionMixUp","TVContentsMenu","TVDataService","TVInput","TVInputComponent1","TVInputComponent2","TVInputComposite1","TVInputComposite2","TVInputHDMI1","TVInputHDMI2","TVInputHDMI3","TVInputHDMI4","TVInputVGA1","TVMediaContext","TVNetwork","TVNumberEntry","TVPower","TVRadioService","TVSatellite","TVSatelliteBS","TVSatelliteCS","TVSatelliteToggle","TVTerrestrialAnalog","TVTerrestrialDigital","TVTimer","Tab","Teletext","Undo","Unidentified","VideoModeNext","VoiceDial","WakeUp","Wink","Zenkaku","ZenkakuHankaku","ZoomIn","ZoomOut","ZoomToggle"]),t.s) -B.qa=new A.d(4294970632) -B.qb=new A.d(4294970633) -B.nQ=new A.d(4294967553) -B.o5=new A.d(4294968577) -B.o6=new A.d(4294968578) -B.ou=new A.d(4294969089) -B.ov=new A.d(4294969090) -B.nR=new A.d(4294967555) -B.rE=new A.d(4294971393) -B.bc=new A.d(4294968065) -B.aS=new A.d(4294968066) -B.aT=new A.d(4294968067) -B.bd=new A.d(4294968068) -B.o7=new A.d(4294968579) -B.q3=new A.d(4294970625) -B.q4=new A.d(4294970626) -B.q5=new A.d(4294970627) -B.rv=new A.d(4294970882) -B.q6=new A.d(4294970628) -B.q7=new A.d(4294970629) -B.q8=new A.d(4294970630) -B.q9=new A.d(4294970631) -B.rw=new A.d(4294970884) -B.rx=new A.d(4294970885) -B.pF=new A.d(4294969871) -B.pH=new A.d(4294969873) -B.pG=new A.d(4294969872) -B.oj=new A.d(4294968833) -B.ok=new A.d(4294968834) -B.pX=new A.d(4294970369) -B.pY=new A.d(4294970370) -B.pZ=new A.d(4294970371) -B.q_=new A.d(4294970372) -B.q0=new A.d(4294970373) -B.q1=new A.d(4294970374) -B.q2=new A.d(4294970375) -B.rF=new A.d(4294971394) -B.ol=new A.d(4294968835) -B.rG=new A.d(4294971395) -B.o8=new A.d(4294968580) -B.qc=new A.d(4294970634) -B.qd=new A.d(4294970635) -B.hf=new A.d(4294968321) -B.ps=new A.d(4294969857) -B.qk=new A.d(4294970642) -B.ow=new A.d(4294969091) -B.qe=new A.d(4294970636) -B.qf=new A.d(4294970637) -B.qg=new A.d(4294970638) -B.qh=new A.d(4294970639) -B.qi=new A.d(4294970640) -B.qj=new A.d(4294970641) -B.ox=new A.d(4294969092) -B.o9=new A.d(4294968581) -B.oy=new A.d(4294969093) -B.nY=new A.d(4294968322) -B.nZ=new A.d(4294968323) -B.o_=new A.d(4294968324) -B.ri=new A.d(4294970703) -B.ql=new A.d(4294970643) -B.qm=new A.d(4294970644) -B.oN=new A.d(4294969108) -B.om=new A.d(4294968836) -B.cx=new A.d(4294968069) -B.rH=new A.d(4294971396) -B.en=new A.d(4294967309) -B.o0=new A.d(4294968325) -B.o1=new A.d(4294968326) -B.oa=new A.d(4294968582) -B.qn=new A.d(4294970645) -B.oX=new A.d(4294969345) -B.p5=new A.d(4294969354) -B.p6=new A.d(4294969355) -B.p7=new A.d(4294969356) -B.p8=new A.d(4294969357) -B.p9=new A.d(4294969358) -B.pa=new A.d(4294969359) -B.pb=new A.d(4294969360) -B.pc=new A.d(4294969361) -B.pd=new A.d(4294969362) -B.pe=new A.d(4294969363) -B.oY=new A.d(4294969346) -B.pf=new A.d(4294969364) -B.pg=new A.d(4294969365) -B.ph=new A.d(4294969366) -B.pi=new A.d(4294969367) -B.pj=new A.d(4294969368) -B.oZ=new A.d(4294969347) -B.p_=new A.d(4294969348) -B.p0=new A.d(4294969349) -B.p1=new A.d(4294969350) -B.p2=new A.d(4294969351) -B.p3=new A.d(4294969352) -B.p4=new A.d(4294969353) -B.qo=new A.d(4294970646) -B.qp=new A.d(4294970647) -B.qq=new A.d(4294970648) -B.qr=new A.d(4294970649) -B.qs=new A.d(4294970650) -B.qt=new A.d(4294970651) -B.qu=new A.d(4294970652) -B.qv=new A.d(4294970653) -B.qw=new A.d(4294970654) -B.qx=new A.d(4294970655) -B.qy=new A.d(4294970656) -B.qz=new A.d(4294970657) -B.oz=new A.d(4294969094) -B.ob=new A.d(4294968583) -B.nS=new A.d(4294967559) -B.rI=new A.d(4294971397) -B.rJ=new A.d(4294971398) -B.oA=new A.d(4294969095) -B.oB=new A.d(4294969096) -B.oC=new A.d(4294969097) -B.oD=new A.d(4294969098) -B.qA=new A.d(4294970658) -B.qB=new A.d(4294970659) -B.qC=new A.d(4294970660) -B.oK=new A.d(4294969105) -B.oL=new A.d(4294969106) -B.oO=new A.d(4294969109) -B.rK=new A.d(4294971399) -B.oc=new A.d(4294968584) -B.or=new A.d(4294968841) -B.oP=new A.d(4294969110) -B.oQ=new A.d(4294969111) -B.cy=new A.d(4294968070) -B.nT=new A.d(4294967560) -B.qD=new A.d(4294970661) -B.hg=new A.d(4294968327) -B.qE=new A.d(4294970662) -B.oM=new A.d(4294969107) -B.oR=new A.d(4294969112) -B.oS=new A.d(4294969113) -B.oT=new A.d(4294969114) -B.tf=new A.d(4294971905) -B.tg=new A.d(4294971906) -B.rL=new A.d(4294971400) -B.pN=new A.d(4294970118) -B.pI=new A.d(4294970113) -B.pV=new A.d(4294970126) -B.pJ=new A.d(4294970114) -B.pT=new A.d(4294970124) -B.pW=new A.d(4294970127) -B.pK=new A.d(4294970115) -B.pL=new A.d(4294970116) -B.pM=new A.d(4294970117) -B.pU=new A.d(4294970125) -B.pO=new A.d(4294970119) -B.pP=new A.d(4294970120) -B.pQ=new A.d(4294970121) -B.pR=new A.d(4294970122) -B.pS=new A.d(4294970123) -B.qF=new A.d(4294970663) -B.qG=new A.d(4294970664) -B.qH=new A.d(4294970665) -B.qI=new A.d(4294970666) -B.on=new A.d(4294968837) -B.pt=new A.d(4294969858) -B.pu=new A.d(4294969859) -B.pv=new A.d(4294969860) -B.rN=new A.d(4294971402) -B.qJ=new A.d(4294970667) -B.rj=new A.d(4294970704) -B.ru=new A.d(4294970715) -B.qK=new A.d(4294970668) -B.qL=new A.d(4294970669) -B.qM=new A.d(4294970670) -B.qN=new A.d(4294970671) -B.pw=new A.d(4294969861) -B.qO=new A.d(4294970672) -B.qP=new A.d(4294970673) -B.qQ=new A.d(4294970674) -B.rk=new A.d(4294970705) -B.rl=new A.d(4294970706) -B.rm=new A.d(4294970707) -B.rn=new A.d(4294970708) -B.px=new A.d(4294969863) -B.ro=new A.d(4294970709) -B.py=new A.d(4294969864) -B.pz=new A.d(4294969865) -B.ry=new A.d(4294970886) -B.rz=new A.d(4294970887) -B.rB=new A.d(4294970889) -B.rA=new A.d(4294970888) -B.oE=new A.d(4294969099) -B.rp=new A.d(4294970710) -B.rq=new A.d(4294970711) -B.rr=new A.d(4294970712) -B.rs=new A.d(4294970713) -B.pA=new A.d(4294969866) -B.oF=new A.d(4294969100) -B.qR=new A.d(4294970675) -B.qS=new A.d(4294970676) -B.oG=new A.d(4294969101) -B.rM=new A.d(4294971401) -B.qT=new A.d(4294970677) -B.pB=new A.d(4294969867) -B.es=new A.d(4294968071) -B.et=new A.d(4294968072) -B.rt=new A.d(4294970714) -B.o2=new A.d(4294968328) -B.od=new A.d(4294968585) -B.qU=new A.d(4294970678) -B.qV=new A.d(4294970679) -B.qW=new A.d(4294970680) -B.qX=new A.d(4294970681) -B.oe=new A.d(4294968586) -B.qY=new A.d(4294970682) -B.qZ=new A.d(4294970683) -B.r_=new A.d(4294970684) -B.oo=new A.d(4294968838) -B.op=new A.d(4294968839) -B.oH=new A.d(4294969102) -B.pC=new A.d(4294969868) -B.oq=new A.d(4294968840) -B.oI=new A.d(4294969103) -B.of=new A.d(4294968587) -B.r0=new A.d(4294970685) -B.r1=new A.d(4294970686) -B.r2=new A.d(4294970687) -B.o3=new A.d(4294968329) -B.r3=new A.d(4294970688) -B.oU=new A.d(4294969115) -B.r8=new A.d(4294970693) -B.r9=new A.d(4294970694) -B.pD=new A.d(4294969869) -B.r4=new A.d(4294970689) -B.r5=new A.d(4294970690) -B.og=new A.d(4294968588) -B.r6=new A.d(4294970691) -B.nX=new A.d(4294967569) -B.oJ=new A.d(4294969104) -B.pk=new A.d(4294969601) -B.pl=new A.d(4294969602) -B.pm=new A.d(4294969603) -B.pn=new A.d(4294969604) -B.po=new A.d(4294969605) -B.pp=new A.d(4294969606) -B.pq=new A.d(4294969607) -B.pr=new A.d(4294969608) -B.rC=new A.d(4294971137) -B.rD=new A.d(4294971138) -B.pE=new A.d(4294969870) -B.r7=new A.d(4294970692) -B.os=new A.d(4294968842) -B.ra=new A.d(4294970695) -B.nU=new A.d(4294967566) -B.nV=new A.d(4294967567) -B.nW=new A.d(4294967568) -B.rc=new A.d(4294970697) -B.rP=new A.d(4294971649) -B.rQ=new A.d(4294971650) -B.rR=new A.d(4294971651) -B.rS=new A.d(4294971652) -B.rT=new A.d(4294971653) -B.rU=new A.d(4294971654) -B.rV=new A.d(4294971655) -B.rd=new A.d(4294970698) -B.rW=new A.d(4294971656) -B.rX=new A.d(4294971657) -B.rY=new A.d(4294971658) -B.rZ=new A.d(4294971659) -B.t_=new A.d(4294971660) -B.t0=new A.d(4294971661) -B.t1=new A.d(4294971662) -B.t2=new A.d(4294971663) -B.t3=new A.d(4294971664) -B.t4=new A.d(4294971665) -B.t5=new A.d(4294971666) -B.t6=new A.d(4294971667) -B.re=new A.d(4294970699) -B.t7=new A.d(4294971668) -B.t8=new A.d(4294971669) -B.t9=new A.d(4294971670) -B.ta=new A.d(4294971671) -B.tb=new A.d(4294971672) -B.tc=new A.d(4294971673) -B.td=new A.d(4294971674) -B.te=new A.d(4294971675) -B.em=new A.d(4294967305) -B.rb=new A.d(4294970696) -B.o4=new A.d(4294968330) -B.nP=new A.d(4294967297) -B.rf=new A.d(4294970700) -B.rO=new A.d(4294971403) -B.ot=new A.d(4294968843) -B.rg=new A.d(4294970701) -B.oV=new A.d(4294969116) -B.oW=new A.d(4294969117) -B.oh=new A.d(4294968589) -B.oi=new A.d(4294968590) -B.rh=new A.d(4294970702) -B.Jb=new A.bd(300,{AVRInput:B.qa,AVRPower:B.qb,Accel:B.nQ,Accept:B.o5,Again:B.o6,AllCandidates:B.ou,Alphanumeric:B.ov,AltGraph:B.nR,AppSwitch:B.rE,ArrowDown:B.bc,ArrowLeft:B.aS,ArrowRight:B.aT,ArrowUp:B.bd,Attn:B.o7,AudioBalanceLeft:B.q3,AudioBalanceRight:B.q4,AudioBassBoostDown:B.q5,AudioBassBoostToggle:B.rv,AudioBassBoostUp:B.q6,AudioFaderFront:B.q7,AudioFaderRear:B.q8,AudioSurroundModeNext:B.q9,AudioTrebleDown:B.rw,AudioTrebleUp:B.rx,AudioVolumeDown:B.pF,AudioVolumeMute:B.pH,AudioVolumeUp:B.pG,Backspace:B.cw,BrightnessDown:B.oj,BrightnessUp:B.ok,BrowserBack:B.pX,BrowserFavorites:B.pY,BrowserForward:B.pZ,BrowserHome:B.q_,BrowserRefresh:B.q0,BrowserSearch:B.q1,BrowserStop:B.q2,Call:B.rF,Camera:B.ol,CameraFocus:B.rG,Cancel:B.o8,CapsLock:B.ep,ChannelDown:B.qc,ChannelUp:B.qd,Clear:B.hf,Close:B.ps,ClosedCaptionToggle:B.qk,CodeInput:B.ow,ColorF0Red:B.qe,ColorF1Green:B.qf,ColorF2Yellow:B.qg,ColorF3Blue:B.qh,ColorF4Grey:B.qi,ColorF5Brown:B.qj,Compose:B.ox,ContextMenu:B.o9,Convert:B.oy,Copy:B.nY,CrSel:B.nZ,Cut:B.o_,DVR:B.ri,Delete:B.c_,Dimmer:B.ql,DisplaySwap:B.qm,Eisu:B.oN,Eject:B.om,End:B.cx,EndCall:B.rH,Enter:B.en,EraseEof:B.o0,Escape:B.eo,ExSel:B.o1,Execute:B.oa,Exit:B.qn,F1:B.oX,F10:B.p5,F11:B.p6,F12:B.p7,F13:B.p8,F14:B.p9,F15:B.pa,F16:B.pb,F17:B.pc,F18:B.pd,F19:B.pe,F2:B.oY,F20:B.pf,F21:B.pg,F22:B.ph,F23:B.pi,F24:B.pj,F3:B.oZ,F4:B.p_,F5:B.p0,F6:B.p1,F7:B.p2,F8:B.p3,F9:B.p4,FavoriteClear0:B.qo,FavoriteClear1:B.qp,FavoriteClear2:B.qq,FavoriteClear3:B.qr,FavoriteRecall0:B.qs,FavoriteRecall1:B.qt,FavoriteRecall2:B.qu,FavoriteRecall3:B.qv,FavoriteStore0:B.qw,FavoriteStore1:B.qx,FavoriteStore2:B.qy,FavoriteStore3:B.qz,FinalMode:B.oz,Find:B.ob,Fn:B.he,FnLock:B.nS,GoBack:B.rI,GoHome:B.rJ,GroupFirst:B.oA,GroupLast:B.oB,GroupNext:B.oC,GroupPrevious:B.oD,Guide:B.qA,GuideNextDay:B.qB,GuidePreviousDay:B.qC,HangulMode:B.oK,HanjaMode:B.oL,Hankaku:B.oO,HeadsetHook:B.rK,Help:B.oc,Hibernate:B.or,Hiragana:B.oP,HiraganaKatakana:B.oQ,Home:B.cy,Hyper:B.nT,Info:B.qD,Insert:B.hg,InstantReplay:B.qE,JunjaMode:B.oM,KanaMode:B.oR,KanjiMode:B.oS,Katakana:B.oT,Key11:B.tf,Key12:B.tg,LastNumberRedial:B.rL,LaunchApplication1:B.pN,LaunchApplication2:B.pI,LaunchAssistant:B.pV,LaunchCalendar:B.pJ,LaunchContacts:B.pT,LaunchControlPanel:B.pW,LaunchMail:B.pK,LaunchMediaPlayer:B.pL,LaunchMusicPlayer:B.pM,LaunchPhone:B.pU,LaunchScreenSaver:B.pO,LaunchSpreadsheet:B.pP,LaunchWebBrowser:B.pQ,LaunchWebCam:B.pR,LaunchWordProcessor:B.pS,Link:B.qF,ListProgram:B.qG,LiveContent:B.qH,Lock:B.qI,LogOff:B.on,MailForward:B.pt,MailReply:B.pu,MailSend:B.pv,MannerMode:B.rN,MediaApps:B.qJ,MediaAudioTrack:B.rj,MediaClose:B.ru,MediaFastForward:B.qK,MediaLast:B.qL,MediaPause:B.qM,MediaPlay:B.qN,MediaPlayPause:B.pw,MediaRecord:B.qO,MediaRewind:B.qP,MediaSkip:B.qQ,MediaSkipBackward:B.rk,MediaSkipForward:B.rl,MediaStepBackward:B.rm,MediaStepForward:B.rn,MediaStop:B.px,MediaTopMenu:B.ro,MediaTrackNext:B.py,MediaTrackPrevious:B.pz,MicrophoneToggle:B.ry,MicrophoneVolumeDown:B.rz,MicrophoneVolumeMute:B.rB,MicrophoneVolumeUp:B.rA,ModeChange:B.oE,NavigateIn:B.rp,NavigateNext:B.rq,NavigateOut:B.rr,NavigatePrevious:B.rs,New:B.pA,NextCandidate:B.oF,NextFavoriteChannel:B.qR,NextUserProfile:B.qS,NonConvert:B.oG,Notification:B.rM,NumLock:B.eq,OnDemand:B.qT,Open:B.pB,PageDown:B.es,PageUp:B.et,Pairing:B.rt,Paste:B.o2,Pause:B.od,PinPDown:B.qU,PinPMove:B.qV,PinPToggle:B.qW,PinPUp:B.qX,Play:B.oe,PlaySpeedDown:B.qY,PlaySpeedReset:B.qZ,PlaySpeedUp:B.r_,Power:B.oo,PowerOff:B.op,PreviousCandidate:B.oH,Print:B.pC,PrintScreen:B.oq,Process:B.oI,Props:B.of,RandomToggle:B.r0,RcLowBattery:B.r1,RecordSpeedNext:B.r2,Redo:B.o3,RfBypass:B.r3,Romaji:B.oU,STBInput:B.r8,STBPower:B.r9,Save:B.pD,ScanChannelsToggle:B.r4,ScreenModeNext:B.r5,ScrollLock:B.er,Select:B.og,Settings:B.r6,ShiftLevel5:B.nX,SingleCandidate:B.oJ,Soft1:B.pk,Soft2:B.pl,Soft3:B.pm,Soft4:B.pn,Soft5:B.po,Soft6:B.pp,Soft7:B.pq,Soft8:B.pr,SpeechCorrectionList:B.rC,SpeechInputToggle:B.rD,SpellCheck:B.pE,SplitScreenToggle:B.r7,Standby:B.os,Subtitle:B.ra,Super:B.nU,Symbol:B.nV,SymbolLock:B.nW,TV:B.rc,TV3DMode:B.rP,TVAntennaCable:B.rQ,TVAudioDescription:B.rR,TVAudioDescriptionMixDown:B.rS,TVAudioDescriptionMixUp:B.rT,TVContentsMenu:B.rU,TVDataService:B.rV,TVInput:B.rd,TVInputComponent1:B.rW,TVInputComponent2:B.rX,TVInputComposite1:B.rY,TVInputComposite2:B.rZ,TVInputHDMI1:B.t_,TVInputHDMI2:B.t0,TVInputHDMI3:B.t1,TVInputHDMI4:B.t2,TVInputVGA1:B.t3,TVMediaContext:B.t4,TVNetwork:B.t5,TVNumberEntry:B.t6,TVPower:B.re,TVRadioService:B.t7,TVSatellite:B.t8,TVSatelliteBS:B.t9,TVSatelliteCS:B.ta,TVSatelliteToggle:B.tb,TVTerrestrialAnalog:B.tc,TVTerrestrialDigital:B.td,TVTimer:B.te,Tab:B.em,Teletext:B.rb,Undo:B.o4,Unidentified:B.nP,VideoModeNext:B.rf,VoiceDial:B.rO,WakeUp:B.ot,Wink:B.rg,Zenkaku:B.oV,ZenkakuHankaku:B.oW,ZoomIn:B.oh,ZoomOut:B.oi,ZoomToggle:B.rh},B.nv,A.a_("bd")) -B.Jc=new A.bd(300,{AVRInput:4294970632,AVRPower:4294970633,Accel:4294967553,Accept:4294968577,Again:4294968578,AllCandidates:4294969089,Alphanumeric:4294969090,AltGraph:4294967555,AppSwitch:4294971393,ArrowDown:4294968065,ArrowLeft:4294968066,ArrowRight:4294968067,ArrowUp:4294968068,Attn:4294968579,AudioBalanceLeft:4294970625,AudioBalanceRight:4294970626,AudioBassBoostDown:4294970627,AudioBassBoostToggle:4294970882,AudioBassBoostUp:4294970628,AudioFaderFront:4294970629,AudioFaderRear:4294970630,AudioSurroundModeNext:4294970631,AudioTrebleDown:4294970884,AudioTrebleUp:4294970885,AudioVolumeDown:4294969871,AudioVolumeMute:4294969873,AudioVolumeUp:4294969872,Backspace:4294967304,BrightnessDown:4294968833,BrightnessUp:4294968834,BrowserBack:4294970369,BrowserFavorites:4294970370,BrowserForward:4294970371,BrowserHome:4294970372,BrowserRefresh:4294970373,BrowserSearch:4294970374,BrowserStop:4294970375,Call:4294971394,Camera:4294968835,CameraFocus:4294971395,Cancel:4294968580,CapsLock:4294967556,ChannelDown:4294970634,ChannelUp:4294970635,Clear:4294968321,Close:4294969857,ClosedCaptionToggle:4294970642,CodeInput:4294969091,ColorF0Red:4294970636,ColorF1Green:4294970637,ColorF2Yellow:4294970638,ColorF3Blue:4294970639,ColorF4Grey:4294970640,ColorF5Brown:4294970641,Compose:4294969092,ContextMenu:4294968581,Convert:4294969093,Copy:4294968322,CrSel:4294968323,Cut:4294968324,DVR:4294970703,Delete:4294967423,Dimmer:4294970643,DisplaySwap:4294970644,Eisu:4294969108,Eject:4294968836,End:4294968069,EndCall:4294971396,Enter:4294967309,EraseEof:4294968325,Escape:4294967323,ExSel:4294968326,Execute:4294968582,Exit:4294970645,F1:4294969345,F10:4294969354,F11:4294969355,F12:4294969356,F13:4294969357,F14:4294969358,F15:4294969359,F16:4294969360,F17:4294969361,F18:4294969362,F19:4294969363,F2:4294969346,F20:4294969364,F21:4294969365,F22:4294969366,F23:4294969367,F24:4294969368,F3:4294969347,F4:4294969348,F5:4294969349,F6:4294969350,F7:4294969351,F8:4294969352,F9:4294969353,FavoriteClear0:4294970646,FavoriteClear1:4294970647,FavoriteClear2:4294970648,FavoriteClear3:4294970649,FavoriteRecall0:4294970650,FavoriteRecall1:4294970651,FavoriteRecall2:4294970652,FavoriteRecall3:4294970653,FavoriteStore0:4294970654,FavoriteStore1:4294970655,FavoriteStore2:4294970656,FavoriteStore3:4294970657,FinalMode:4294969094,Find:4294968583,Fn:4294967558,FnLock:4294967559,GoBack:4294971397,GoHome:4294971398,GroupFirst:4294969095,GroupLast:4294969096,GroupNext:4294969097,GroupPrevious:4294969098,Guide:4294970658,GuideNextDay:4294970659,GuidePreviousDay:4294970660,HangulMode:4294969105,HanjaMode:4294969106,Hankaku:4294969109,HeadsetHook:4294971399,Help:4294968584,Hibernate:4294968841,Hiragana:4294969110,HiraganaKatakana:4294969111,Home:4294968070,Hyper:4294967560,Info:4294970661,Insert:4294968327,InstantReplay:4294970662,JunjaMode:4294969107,KanaMode:4294969112,KanjiMode:4294969113,Katakana:4294969114,Key11:4294971905,Key12:4294971906,LastNumberRedial:4294971400,LaunchApplication1:4294970118,LaunchApplication2:4294970113,LaunchAssistant:4294970126,LaunchCalendar:4294970114,LaunchContacts:4294970124,LaunchControlPanel:4294970127,LaunchMail:4294970115,LaunchMediaPlayer:4294970116,LaunchMusicPlayer:4294970117,LaunchPhone:4294970125,LaunchScreenSaver:4294970119,LaunchSpreadsheet:4294970120,LaunchWebBrowser:4294970121,LaunchWebCam:4294970122,LaunchWordProcessor:4294970123,Link:4294970663,ListProgram:4294970664,LiveContent:4294970665,Lock:4294970666,LogOff:4294968837,MailForward:4294969858,MailReply:4294969859,MailSend:4294969860,MannerMode:4294971402,MediaApps:4294970667,MediaAudioTrack:4294970704,MediaClose:4294970715,MediaFastForward:4294970668,MediaLast:4294970669,MediaPause:4294970670,MediaPlay:4294970671,MediaPlayPause:4294969861,MediaRecord:4294970672,MediaRewind:4294970673,MediaSkip:4294970674,MediaSkipBackward:4294970705,MediaSkipForward:4294970706,MediaStepBackward:4294970707,MediaStepForward:4294970708,MediaStop:4294969863,MediaTopMenu:4294970709,MediaTrackNext:4294969864,MediaTrackPrevious:4294969865,MicrophoneToggle:4294970886,MicrophoneVolumeDown:4294970887,MicrophoneVolumeMute:4294970889,MicrophoneVolumeUp:4294970888,ModeChange:4294969099,NavigateIn:4294970710,NavigateNext:4294970711,NavigateOut:4294970712,NavigatePrevious:4294970713,New:4294969866,NextCandidate:4294969100,NextFavoriteChannel:4294970675,NextUserProfile:4294970676,NonConvert:4294969101,Notification:4294971401,NumLock:4294967562,OnDemand:4294970677,Open:4294969867,PageDown:4294968071,PageUp:4294968072,Pairing:4294970714,Paste:4294968328,Pause:4294968585,PinPDown:4294970678,PinPMove:4294970679,PinPToggle:4294970680,PinPUp:4294970681,Play:4294968586,PlaySpeedDown:4294970682,PlaySpeedReset:4294970683,PlaySpeedUp:4294970684,Power:4294968838,PowerOff:4294968839,PreviousCandidate:4294969102,Print:4294969868,PrintScreen:4294968840,Process:4294969103,Props:4294968587,RandomToggle:4294970685,RcLowBattery:4294970686,RecordSpeedNext:4294970687,Redo:4294968329,RfBypass:4294970688,Romaji:4294969115,STBInput:4294970693,STBPower:4294970694,Save:4294969869,ScanChannelsToggle:4294970689,ScreenModeNext:4294970690,ScrollLock:4294967564,Select:4294968588,Settings:4294970691,ShiftLevel5:4294967569,SingleCandidate:4294969104,Soft1:4294969601,Soft2:4294969602,Soft3:4294969603,Soft4:4294969604,Soft5:4294969605,Soft6:4294969606,Soft7:4294969607,Soft8:4294969608,SpeechCorrectionList:4294971137,SpeechInputToggle:4294971138,SpellCheck:4294969870,SplitScreenToggle:4294970692,Standby:4294968842,Subtitle:4294970695,Super:4294967566,Symbol:4294967567,SymbolLock:4294967568,TV:4294970697,TV3DMode:4294971649,TVAntennaCable:4294971650,TVAudioDescription:4294971651,TVAudioDescriptionMixDown:4294971652,TVAudioDescriptionMixUp:4294971653,TVContentsMenu:4294971654,TVDataService:4294971655,TVInput:4294970698,TVInputComponent1:4294971656,TVInputComponent2:4294971657,TVInputComposite1:4294971658,TVInputComposite2:4294971659,TVInputHDMI1:4294971660,TVInputHDMI2:4294971661,TVInputHDMI3:4294971662,TVInputHDMI4:4294971663,TVInputVGA1:4294971664,TVMediaContext:4294971665,TVNetwork:4294971666,TVNumberEntry:4294971667,TVPower:4294970699,TVRadioService:4294971668,TVSatellite:4294971669,TVSatelliteBS:4294971670,TVSatelliteCS:4294971671,TVSatelliteToggle:4294971672,TVTerrestrialAnalog:4294971673,TVTerrestrialDigital:4294971674,TVTimer:4294971675,Tab:4294967305,Teletext:4294970696,Undo:4294968330,Unidentified:4294967297,VideoModeNext:4294970700,VoiceDial:4294971403,WakeUp:4294968843,Wink:4294970701,Zenkaku:4294969116,ZenkakuHankaku:4294969117,ZoomIn:4294968589,ZoomOut:4294968590,ZoomToggle:4294970702},B.nv,t.eL) -B.CG=A.b(s(["Abort","Again","AltLeft","AltRight","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backquote","Backslash","Backspace","BassBoost","BracketLeft","BracketRight","BrightnessAuto","BrightnessDown","BrightnessMaximum","BrightnessMinimum","BrightnessToggle","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","CapsLock","ChannelDown","ChannelUp","Close","ClosedCaptionToggle","Comma","ContextMenu","ControlLeft","ControlRight","Convert","Copy","Cut","Delete","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DisplayToggleIntExt","Eject","End","Enter","Equal","Escape","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F3","F4","F5","F6","F7","F8","F9","Find","Fn","FnLock","GameButton1","GameButton10","GameButton11","GameButton12","GameButton13","GameButton14","GameButton15","GameButton16","GameButton2","GameButton3","GameButton4","GameButton5","GameButton6","GameButton7","GameButton8","GameButton9","GameButtonA","GameButtonB","GameButtonC","GameButtonLeft1","GameButtonLeft2","GameButtonMode","GameButtonRight1","GameButtonRight2","GameButtonSelect","GameButtonStart","GameButtonThumbLeft","GameButtonThumbRight","GameButtonX","GameButtonY","GameButtonZ","Help","Home","Hyper","Info","Insert","IntlBackslash","IntlRo","IntlYen","KanaMode","KbdIllumDown","KbdIllumUp","KeyA","KeyB","KeyC","KeyD","KeyE","KeyF","KeyG","KeyH","KeyI","KeyJ","KeyK","KeyL","KeyM","KeyN","KeyO","KeyP","KeyQ","KeyR","KeyS","KeyT","KeyU","KeyV","KeyW","KeyX","KeyY","KeyZ","KeyboardLayoutSelect","Lang1","Lang2","Lang3","Lang4","Lang5","LaunchApp1","LaunchApp2","LaunchAssistant","LaunchAudioBrowser","LaunchCalendar","LaunchContacts","LaunchControlPanel","LaunchDocuments","LaunchInternetBrowser","LaunchKeyboardLayout","LaunchMail","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWordProcessor","LockScreen","LogOff","MailForward","MailReply","MailSend","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSelect","MediaStop","MediaTrackNext","MediaTrackPrevious","MetaLeft","MetaRight","MicrophoneMuteToggle","Minus","New","NonConvert","NumLock","Numpad0","Numpad1","Numpad2","Numpad3","Numpad4","Numpad5","Numpad6","Numpad7","Numpad8","Numpad9","NumpadAdd","NumpadBackspace","NumpadClear","NumpadClearEntry","NumpadComma","NumpadDecimal","NumpadDivide","NumpadEnter","NumpadEqual","NumpadMemoryAdd","NumpadMemoryClear","NumpadMemoryRecall","NumpadMemoryStore","NumpadMemorySubtract","NumpadMultiply","NumpadParenLeft","NumpadParenRight","NumpadSignChange","NumpadSubtract","Open","PageDown","PageUp","Paste","Pause","Period","Power","Print","PrintScreen","PrivacyScreenToggle","ProgramGuide","Props","Quote","Redo","Resume","Save","ScrollLock","Select","SelectTask","Semicolon","ShiftLeft","ShiftRight","ShowAllWindows","Slash","Sleep","Space","SpeechInputToggle","SpellCheck","Super","Suspend","Tab","Turbo","Undo","UsbErrorRollOver","UsbErrorUndefined","UsbPostFail","UsbReserved","WakeUp","ZoomIn","ZoomOut","ZoomToggle"]),t.s) -B.uE=new A.l(458907) -B.jv=new A.l(458873) -B.c4=new A.l(458978) -B.c6=new A.l(458982) -B.iV=new A.l(458833) -B.iU=new A.l(458832) -B.iT=new A.l(458831) -B.iW=new A.l(458834) -B.jD=new A.l(458881) -B.jB=new A.l(458879) -B.jC=new A.l(458880) -B.iv=new A.l(458805) -B.is=new A.l(458801) -B.ik=new A.l(458794) -B.kl=new A.l(786661) -B.iq=new A.l(458799) -B.ir=new A.l(458800) -B.k1=new A.l(786549) -B.jY=new A.l(786544) -B.k0=new A.l(786548) -B.k_=new A.l(786547) -B.jZ=new A.l(786546) -B.jX=new A.l(786543) -B.kL=new A.l(786980) -B.kP=new A.l(786986) -B.kM=new A.l(786981) -B.kK=new A.l(786979) -B.kO=new A.l(786983) -B.kJ=new A.l(786977) -B.kN=new A.l(786982) -B.dl=new A.l(458809) -B.k9=new A.l(786589) -B.k8=new A.l(786588) -B.kG=new A.l(786947) -B.jW=new A.l(786529) -B.iw=new A.l(458806) -B.jd=new A.l(458853) -B.c2=new A.l(458976) -B.cD=new A.l(458980) -B.jI=new A.l(458890) -B.jy=new A.l(458876) -B.jx=new A.l(458875) -B.iQ=new A.l(458828) -B.ih=new A.l(458791) -B.i7=new A.l(458782) -B.i8=new A.l(458783) -B.i9=new A.l(458784) -B.ia=new A.l(458785) -B.ib=new A.l(458786) -B.ic=new A.l(458787) -B.id=new A.l(458788) -B.ie=new A.l(458789) -B.ig=new A.l(458790) -B.jU=new A.l(65717) -B.ki=new A.l(786616) -B.iR=new A.l(458829) -B.ii=new A.l(458792) -B.ip=new A.l(458798) -B.ij=new A.l(458793) -B.k7=new A.l(786580) -B.iz=new A.l(458810) -B.iI=new A.l(458819) -B.iJ=new A.l(458820) -B.iK=new A.l(458821) -B.jg=new A.l(458856) -B.jh=new A.l(458857) -B.ji=new A.l(458858) -B.jj=new A.l(458859) -B.jk=new A.l(458860) -B.jl=new A.l(458861) -B.jm=new A.l(458862) -B.iA=new A.l(458811) -B.jn=new A.l(458863) -B.jo=new A.l(458864) -B.jp=new A.l(458865) -B.jq=new A.l(458866) -B.jr=new A.l(458867) -B.iB=new A.l(458812) -B.iC=new A.l(458813) -B.iD=new A.l(458814) -B.iE=new A.l(458815) -B.iF=new A.l(458816) -B.iG=new A.l(458817) -B.iH=new A.l(458818) -B.jA=new A.l(458878) -B.dk=new A.l(18) -B.u1=new A.l(19) -B.u5=new A.l(392961) -B.ue=new A.l(392970) -B.uf=new A.l(392971) -B.ug=new A.l(392972) -B.uh=new A.l(392973) -B.ui=new A.l(392974) -B.uj=new A.l(392975) -B.uk=new A.l(392976) -B.u6=new A.l(392962) -B.u7=new A.l(392963) -B.u8=new A.l(392964) -B.u9=new A.l(392965) -B.ua=new A.l(392966) -B.ub=new A.l(392967) -B.uc=new A.l(392968) -B.ud=new A.l(392969) -B.ul=new A.l(392977) -B.um=new A.l(392978) -B.un=new A.l(392979) -B.uo=new A.l(392980) -B.up=new A.l(392981) -B.uq=new A.l(392982) -B.ur=new A.l(392983) -B.us=new A.l(392984) -B.ut=new A.l(392985) -B.uu=new A.l(392986) -B.uv=new A.l(392987) -B.uw=new A.l(392988) -B.ux=new A.l(392989) -B.uy=new A.l(392990) -B.uz=new A.l(392991) -B.jt=new A.l(458869) -B.iO=new A.l(458826) -B.u_=new A.l(16) -B.jV=new A.l(786528) -B.iN=new A.l(458825) -B.jc=new A.l(458852) -B.jF=new A.l(458887) -B.jH=new A.l(458889) -B.jG=new A.l(458888) -B.k3=new A.l(786554) -B.k2=new A.l(786553) -B.hI=new A.l(458756) -B.hJ=new A.l(458757) -B.hK=new A.l(458758) -B.hL=new A.l(458759) -B.hM=new A.l(458760) -B.hN=new A.l(458761) -B.hO=new A.l(458762) -B.hP=new A.l(458763) -B.hQ=new A.l(458764) -B.hR=new A.l(458765) -B.hS=new A.l(458766) -B.hT=new A.l(458767) -B.hU=new A.l(458768) -B.hV=new A.l(458769) -B.hW=new A.l(458770) -B.hX=new A.l(458771) -B.hY=new A.l(458772) -B.hZ=new A.l(458773) -B.i_=new A.l(458774) -B.i0=new A.l(458775) -B.i1=new A.l(458776) -B.i2=new A.l(458777) -B.i3=new A.l(458778) -B.i4=new A.l(458779) -B.i5=new A.l(458780) -B.i6=new A.l(458781) -B.kX=new A.l(787101) -B.jK=new A.l(458896) -B.jL=new A.l(458897) -B.jM=new A.l(458898) -B.jN=new A.l(458899) -B.jO=new A.l(458900) -B.kt=new A.l(786836) -B.ks=new A.l(786834) -B.kE=new A.l(786891) -B.kD=new A.l(786871) -B.kr=new A.l(786830) -B.kq=new A.l(786829) -B.kx=new A.l(786847) -B.kz=new A.l(786855) -B.ku=new A.l(786838) -B.kB=new A.l(786862) -B.kp=new A.l(786826) -B.k5=new A.l(786572) -B.kC=new A.l(786865) -B.ko=new A.l(786822) -B.kn=new A.l(786820) -B.kw=new A.l(786846) -B.kv=new A.l(786844) -B.kV=new A.l(787083) -B.kU=new A.l(787081) -B.kW=new A.l(787084) -B.kd=new A.l(786611) -B.k4=new A.l(786563) -B.kb=new A.l(786609) -B.ka=new A.l(786608) -B.kj=new A.l(786637) -B.kc=new A.l(786610) -B.ke=new A.l(786612) -B.km=new A.l(786819) -B.kh=new A.l(786615) -B.kf=new A.l(786613) -B.kg=new A.l(786614) -B.c5=new A.l(458979) -B.cF=new A.l(458983) -B.hH=new A.l(24) -B.io=new A.l(458797) -B.kF=new A.l(786945) -B.jJ=new A.l(458891) -B.dn=new A.l(458835) -B.ja=new A.l(458850) -B.j1=new A.l(458841) -B.j2=new A.l(458842) -B.j3=new A.l(458843) -B.j4=new A.l(458844) -B.j5=new A.l(458845) -B.j6=new A.l(458846) -B.j7=new A.l(458847) -B.j8=new A.l(458848) -B.j9=new A.l(458849) -B.j_=new A.l(458839) -B.uG=new A.l(458939) -B.uM=new A.l(458968) -B.uN=new A.l(458969) -B.jE=new A.l(458885) -B.jb=new A.l(458851) -B.iX=new A.l(458836) -B.j0=new A.l(458840) -B.jf=new A.l(458855) -B.uK=new A.l(458963) -B.uJ=new A.l(458962) -B.uI=new A.l(458961) -B.uH=new A.l(458960) -B.uL=new A.l(458964) -B.iY=new A.l(458837) -B.jP=new A.l(458934) -B.jQ=new A.l(458935) -B.jR=new A.l(458967) -B.iZ=new A.l(458838) -B.js=new A.l(458868) -B.iS=new A.l(458830) -B.iP=new A.l(458827) -B.jz=new A.l(458877) -B.iM=new A.l(458824) -B.ix=new A.l(458807) -B.je=new A.l(458854) -B.kI=new A.l(786952) -B.iL=new A.l(458822) -B.hG=new A.l(23) -B.k6=new A.l(786573) -B.uF=new A.l(458915) -B.iu=new A.l(458804) -B.kT=new A.l(787065) -B.u3=new A.l(21) -B.kH=new A.l(786951) -B.dm=new A.l(458823) -B.ju=new A.l(458871) -B.ky=new A.l(786850) -B.it=new A.l(458803) -B.c3=new A.l(458977) -B.cE=new A.l(458981) -B.kY=new A.l(787103) -B.iy=new A.l(458808) -B.jS=new A.l(65666) -B.im=new A.l(458796) -B.kk=new A.l(786639) -B.kA=new A.l(786859) -B.u0=new A.l(17) -B.u2=new A.l(20) -B.il=new A.l(458795) -B.u4=new A.l(22) -B.jw=new A.l(458874) -B.uB=new A.l(458753) -B.uD=new A.l(458755) -B.uC=new A.l(458754) -B.uA=new A.l(458752) -B.jT=new A.l(65667) -B.kQ=new A.l(786989) -B.kR=new A.l(786990) -B.kS=new A.l(786994) -B.Jd=new A.bd(269,{Abort:B.uE,Again:B.jv,AltLeft:B.c4,AltRight:B.c6,ArrowDown:B.iV,ArrowLeft:B.iU,ArrowRight:B.iT,ArrowUp:B.iW,AudioVolumeDown:B.jD,AudioVolumeMute:B.jB,AudioVolumeUp:B.jC,Backquote:B.iv,Backslash:B.is,Backspace:B.ik,BassBoost:B.kl,BracketLeft:B.iq,BracketRight:B.ir,BrightnessAuto:B.k1,BrightnessDown:B.jY,BrightnessMaximum:B.k0,BrightnessMinimum:B.k_,BrightnessToggle:B.jZ,BrightnessUp:B.jX,BrowserBack:B.kL,BrowserFavorites:B.kP,BrowserForward:B.kM,BrowserHome:B.kK,BrowserRefresh:B.kO,BrowserSearch:B.kJ,BrowserStop:B.kN,CapsLock:B.dl,ChannelDown:B.k9,ChannelUp:B.k8,Close:B.kG,ClosedCaptionToggle:B.jW,Comma:B.iw,ContextMenu:B.jd,ControlLeft:B.c2,ControlRight:B.cD,Convert:B.jI,Copy:B.jy,Cut:B.jx,Delete:B.iQ,Digit0:B.ih,Digit1:B.i7,Digit2:B.i8,Digit3:B.i9,Digit4:B.ia,Digit5:B.ib,Digit6:B.ic,Digit7:B.id,Digit8:B.ie,Digit9:B.ig,DisplayToggleIntExt:B.jU,Eject:B.ki,End:B.iR,Enter:B.ii,Equal:B.ip,Escape:B.ij,Exit:B.k7,F1:B.iz,F10:B.iI,F11:B.iJ,F12:B.iK,F13:B.jg,F14:B.jh,F15:B.ji,F16:B.jj,F17:B.jk,F18:B.jl,F19:B.jm,F2:B.iA,F20:B.jn,F21:B.jo,F22:B.jp,F23:B.jq,F24:B.jr,F3:B.iB,F4:B.iC,F5:B.iD,F6:B.iE,F7:B.iF,F8:B.iG,F9:B.iH,Find:B.jA,Fn:B.dk,FnLock:B.u1,GameButton1:B.u5,GameButton10:B.ue,GameButton11:B.uf,GameButton12:B.ug,GameButton13:B.uh,GameButton14:B.ui,GameButton15:B.uj,GameButton16:B.uk,GameButton2:B.u6,GameButton3:B.u7,GameButton4:B.u8,GameButton5:B.u9,GameButton6:B.ua,GameButton7:B.ub,GameButton8:B.uc,GameButton9:B.ud,GameButtonA:B.ul,GameButtonB:B.um,GameButtonC:B.un,GameButtonLeft1:B.uo,GameButtonLeft2:B.up,GameButtonMode:B.uq,GameButtonRight1:B.ur,GameButtonRight2:B.us,GameButtonSelect:B.ut,GameButtonStart:B.uu,GameButtonThumbLeft:B.uv,GameButtonThumbRight:B.uw,GameButtonX:B.ux,GameButtonY:B.uy,GameButtonZ:B.uz,Help:B.jt,Home:B.iO,Hyper:B.u_,Info:B.jV,Insert:B.iN,IntlBackslash:B.jc,IntlRo:B.jF,IntlYen:B.jH,KanaMode:B.jG,KbdIllumDown:B.k3,KbdIllumUp:B.k2,KeyA:B.hI,KeyB:B.hJ,KeyC:B.hK,KeyD:B.hL,KeyE:B.hM,KeyF:B.hN,KeyG:B.hO,KeyH:B.hP,KeyI:B.hQ,KeyJ:B.hR,KeyK:B.hS,KeyL:B.hT,KeyM:B.hU,KeyN:B.hV,KeyO:B.hW,KeyP:B.hX,KeyQ:B.hY,KeyR:B.hZ,KeyS:B.i_,KeyT:B.i0,KeyU:B.i1,KeyV:B.i2,KeyW:B.i3,KeyX:B.i4,KeyY:B.i5,KeyZ:B.i6,KeyboardLayoutSelect:B.kX,Lang1:B.jK,Lang2:B.jL,Lang3:B.jM,Lang4:B.jN,Lang5:B.jO,LaunchApp1:B.kt,LaunchApp2:B.ks,LaunchAssistant:B.kE,LaunchAudioBrowser:B.kD,LaunchCalendar:B.kr,LaunchContacts:B.kq,LaunchControlPanel:B.kx,LaunchDocuments:B.kz,LaunchInternetBrowser:B.ku,LaunchKeyboardLayout:B.kB,LaunchMail:B.kp,LaunchPhone:B.k5,LaunchScreenSaver:B.kC,LaunchSpreadsheet:B.ko,LaunchWordProcessor:B.kn,LockScreen:B.kw,LogOff:B.kv,MailForward:B.kV,MailReply:B.kU,MailSend:B.kW,MediaFastForward:B.kd,MediaLast:B.k4,MediaPause:B.kb,MediaPlay:B.ka,MediaPlayPause:B.kj,MediaRecord:B.kc,MediaRewind:B.ke,MediaSelect:B.km,MediaStop:B.kh,MediaTrackNext:B.kf,MediaTrackPrevious:B.kg,MetaLeft:B.c5,MetaRight:B.cF,MicrophoneMuteToggle:B.hH,Minus:B.io,New:B.kF,NonConvert:B.jJ,NumLock:B.dn,Numpad0:B.ja,Numpad1:B.j1,Numpad2:B.j2,Numpad3:B.j3,Numpad4:B.j4,Numpad5:B.j5,Numpad6:B.j6,Numpad7:B.j7,Numpad8:B.j8,Numpad9:B.j9,NumpadAdd:B.j_,NumpadBackspace:B.uG,NumpadClear:B.uM,NumpadClearEntry:B.uN,NumpadComma:B.jE,NumpadDecimal:B.jb,NumpadDivide:B.iX,NumpadEnter:B.j0,NumpadEqual:B.jf,NumpadMemoryAdd:B.uK,NumpadMemoryClear:B.uJ,NumpadMemoryRecall:B.uI,NumpadMemoryStore:B.uH,NumpadMemorySubtract:B.uL,NumpadMultiply:B.iY,NumpadParenLeft:B.jP,NumpadParenRight:B.jQ,NumpadSignChange:B.jR,NumpadSubtract:B.iZ,Open:B.js,PageDown:B.iS,PageUp:B.iP,Paste:B.jz,Pause:B.iM,Period:B.ix,Power:B.je,Print:B.kI,PrintScreen:B.iL,PrivacyScreenToggle:B.hG,ProgramGuide:B.k6,Props:B.uF,Quote:B.iu,Redo:B.kT,Resume:B.u3,Save:B.kH,ScrollLock:B.dm,Select:B.ju,SelectTask:B.ky,Semicolon:B.it,ShiftLeft:B.c3,ShiftRight:B.cE,ShowAllWindows:B.kY,Slash:B.iy,Sleep:B.jS,Space:B.im,SpeechInputToggle:B.kk,SpellCheck:B.kA,Super:B.u0,Suspend:B.u2,Tab:B.il,Turbo:B.u4,Undo:B.jw,UsbErrorRollOver:B.uB,UsbErrorUndefined:B.uD,UsbPostFail:B.uC,UsbReserved:B.uA,WakeUp:B.jT,ZoomIn:B.kQ,ZoomOut:B.kR,ZoomToggle:B.kS},B.CG,A.a_("bd")) -B.ny=A.b(s(["*","+","-",".","/","0","1","2","3","4","5","6","7","8","9","Alt","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Clear","Control","Delete","End","Enter","Home","Insert","Meta","PageDown","PageUp","Shift"]),t.s) -B.D9=A.b(s([42,null,null,8589935146]),t.Z) -B.Da=A.b(s([43,null,null,8589935147]),t.Z) -B.Db=A.b(s([45,null,null,8589935149]),t.Z) -B.Dc=A.b(s([46,null,null,8589935150]),t.Z) -B.Dd=A.b(s([47,null,null,8589935151]),t.Z) -B.De=A.b(s([48,null,null,8589935152]),t.Z) -B.Df=A.b(s([49,null,null,8589935153]),t.Z) -B.Do=A.b(s([50,null,null,8589935154]),t.Z) -B.Dp=A.b(s([51,null,null,8589935155]),t.Z) -B.Dq=A.b(s([52,null,null,8589935156]),t.Z) -B.Dr=A.b(s([53,null,null,8589935157]),t.Z) -B.Ds=A.b(s([54,null,null,8589935158]),t.Z) -B.Dt=A.b(s([55,null,null,8589935159]),t.Z) -B.Du=A.b(s([56,null,null,8589935160]),t.Z) -B.Dv=A.b(s([57,null,null,8589935161]),t.Z) -B.Hr=A.b(s([8589934852,8589934852,8589934853,null]),t.Z) -B.D_=A.b(s([4294968065,null,null,8589935154]),t.Z) -B.D0=A.b(s([4294968066,null,null,8589935156]),t.Z) -B.D1=A.b(s([4294968067,null,null,8589935158]),t.Z) -B.D2=A.b(s([4294968068,null,null,8589935160]),t.Z) -B.D7=A.b(s([4294968321,null,null,8589935157]),t.Z) -B.Hs=A.b(s([8589934848,8589934848,8589934849,null]),t.Z) -B.CZ=A.b(s([4294967423,null,null,8589935150]),t.Z) -B.D3=A.b(s([4294968069,null,null,8589935153]),t.Z) -B.CY=A.b(s([4294967309,null,null,8589935117]),t.Z) -B.D4=A.b(s([4294968070,null,null,8589935159]),t.Z) -B.D8=A.b(s([4294968327,null,null,8589935152]),t.Z) -B.Ht=A.b(s([8589934854,8589934854,8589934855,null]),t.Z) -B.D5=A.b(s([4294968071,null,null,8589935155]),t.Z) -B.D6=A.b(s([4294968072,null,null,8589935161]),t.Z) -B.Hu=A.b(s([8589934850,8589934850,8589934851,null]),t.Z) -B.tA=new A.bd(31,{"*":B.D9,"+":B.Da,"-":B.Db,".":B.Dc,"/":B.Dd,"0":B.De,"1":B.Df,"2":B.Do,"3":B.Dp,"4":B.Dq,"5":B.Dr,"6":B.Ds,"7":B.Dt,"8":B.Du,"9":B.Dv,Alt:B.Hr,ArrowDown:B.D_,ArrowLeft:B.D0,ArrowRight:B.D1,ArrowUp:B.D2,Clear:B.D7,Control:B.Hs,Delete:B.CZ,End:B.D3,Enter:B.CY,Home:B.D4,Insert:B.D8,Meta:B.Ht,PageDown:B.D5,PageUp:B.D6,Shift:B.Hu},B.ny,A.a_("bd>")) -B.nO=new A.d(42) -B.tv=new A.d(8589935146) -B.E9=A.b(s([B.nO,null,null,B.tv]),t.L) -B.th=new A.d(43) -B.tw=new A.d(8589935147) -B.Ea=A.b(s([B.th,null,null,B.tw]),t.L) -B.ti=new A.d(45) -B.tx=new A.d(8589935149) -B.Eb=A.b(s([B.ti,null,null,B.tx]),t.L) -B.tj=new A.d(46) -B.hi=new A.d(8589935150) -B.Ec=A.b(s([B.tj,null,null,B.hi]),t.L) -B.tk=new A.d(47) -B.ty=new A.d(8589935151) -B.Ed=A.b(s([B.tk,null,null,B.ty]),t.L) -B.tl=new A.d(48) -B.hj=new A.d(8589935152) -B.Hb=A.b(s([B.tl,null,null,B.hj]),t.L) -B.tm=new A.d(49) -B.hk=new A.d(8589935153) -B.Hc=A.b(s([B.tm,null,null,B.hk]),t.L) -B.tn=new A.d(50) -B.hl=new A.d(8589935154) -B.Hd=A.b(s([B.tn,null,null,B.hl]),t.L) -B.to=new A.d(51) -B.hm=new A.d(8589935155) -B.He=A.b(s([B.to,null,null,B.hm]),t.L) -B.tp=new A.d(52) -B.hn=new A.d(8589935156) -B.Hf=A.b(s([B.tp,null,null,B.hn]),t.L) -B.tq=new A.d(53) -B.ho=new A.d(8589935157) -B.Hg=A.b(s([B.tq,null,null,B.ho]),t.L) -B.tr=new A.d(54) -B.hp=new A.d(8589935158) -B.Hh=A.b(s([B.tr,null,null,B.hp]),t.L) -B.ts=new A.d(55) -B.hq=new A.d(8589935159) -B.Hi=A.b(s([B.ts,null,null,B.hq]),t.L) -B.tt=new A.d(56) -B.hr=new A.d(8589935160) -B.El=A.b(s([B.tt,null,null,B.hr]),t.L) -B.tu=new A.d(57) -B.hs=new A.d(8589935161) -B.Em=A.b(s([B.tu,null,null,B.hs]),t.L) -B.DS=A.b(s([B.dc,B.dc,B.ev,null]),t.L) -B.Ef=A.b(s([B.bc,null,null,B.hl]),t.L) -B.Eg=A.b(s([B.aS,null,null,B.hn]),t.L) -B.Eh=A.b(s([B.aT,null,null,B.hp]),t.L) -B.CX=A.b(s([B.bd,null,null,B.hr]),t.L) -B.Dx=A.b(s([B.hf,null,null,B.ho]),t.L) -B.DT=A.b(s([B.db,B.db,B.eu,null]),t.L) -B.E7=A.b(s([B.c_,null,null,B.hi]),t.L) -B.Ei=A.b(s([B.cx,null,null,B.hk]),t.L) -B.hh=new A.d(8589935117) -B.Ew=A.b(s([B.en,null,null,B.hh]),t.L) -B.Ej=A.b(s([B.cy,null,null,B.hq]),t.L) -B.Dy=A.b(s([B.hg,null,null,B.hj]),t.L) -B.DU=A.b(s([B.dd,B.dd,B.ew,null]),t.L) -B.Ek=A.b(s([B.es,null,null,B.hm]),t.L) -B.ES=A.b(s([B.et,null,null,B.hs]),t.L) -B.DV=A.b(s([B.c0,B.c0,B.cz,null]),t.L) -B.Jg=new A.bd(31,{"*":B.E9,"+":B.Ea,"-":B.Eb,".":B.Ec,"/":B.Ed,"0":B.Hb,"1":B.Hc,"2":B.Hd,"3":B.He,"4":B.Hf,"5":B.Hg,"6":B.Hh,"7":B.Hi,"8":B.El,"9":B.Em,Alt:B.DS,ArrowDown:B.Ef,ArrowLeft:B.Eg,ArrowRight:B.Eh,ArrowUp:B.CX,Clear:B.Dx,Control:B.DT,Delete:B.E7,End:B.Ei,Enter:B.Ew,Home:B.Ej,Insert:B.Dy,Meta:B.DU,PageDown:B.Ek,PageUp:B.ES,Shift:B.DV},B.ny,A.a_("bd>")) -B.ET=A.b(s(["mode"]),t.s) -B.ex=new A.bd(1,{mode:"basic"},B.ET,t.li) -B.li=new A.aR(B.bd,!1,!1,!1,!1) -B.lj=new A.aR(B.bc,!1,!1,!1,!1) -B.lk=new A.aR(B.aS,!1,!1,!1,!1) -B.ll=new A.aR(B.aT,!1,!1,!1,!1) -B.TS=new A.pn(2,"up") -B.SP=new A.io(B.TS) -B.TT=new A.pn(3,"down") -B.SQ=new A.io(B.TT) -B.TR=new A.pn(1,"left") -B.SO=new A.io(B.TR) -B.TQ=new A.pn(0,"right") -B.SN=new A.io(B.TQ) -B.Jh=new A.bI([B.li,B.SP,B.lj,B.SQ,B.lk,B.SO,B.ll,B.SN],t.Fp) -B.E8=A.b(s(["Abort","Again","AltLeft","AltRight","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backquote","Backslash","Backspace","BassBoost","BracketLeft","BracketRight","BrightnessAuto","BrightnessDown","BrightnessMaximum","BrightnessMinimum","BrightnessToggle","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","CapsLock","ChannelDown","ChannelUp","Close","ClosedCaptionToggle","Comma","ContextMenu","ControlLeft","ControlRight","Convert","Copy","Cut","Delete","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DisplayToggleIntExt","Eject","End","Enter","Equal","Escape","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F3","F4","F5","F6","F7","F8","F9","Find","Fn","FnLock","GameButton1","GameButton10","GameButton11","GameButton12","GameButton13","GameButton14","GameButton15","GameButton16","GameButton2","GameButton3","GameButton4","GameButton5","GameButton6","GameButton7","GameButton8","GameButton9","GameButtonA","GameButtonB","GameButtonC","GameButtonLeft1","GameButtonLeft2","GameButtonMode","GameButtonRight1","GameButtonRight2","GameButtonSelect","GameButtonStart","GameButtonThumbLeft","GameButtonThumbRight","GameButtonX","GameButtonY","GameButtonZ","Help","Home","Hyper","Info","Insert","IntlBackslash","IntlRo","IntlYen","KanaMode","KbdIllumDown","KbdIllumUp","KeyA","KeyB","KeyC","KeyD","KeyE","KeyF","KeyG","KeyH","KeyI","KeyJ","KeyK","KeyL","KeyM","KeyN","KeyO","KeyP","KeyQ","KeyR","KeyS","KeyT","KeyU","KeyV","KeyW","KeyX","KeyY","KeyZ","KeyboardLayoutSelect","Lang1","Lang2","Lang3","Lang4","Lang5","LaunchApp1","LaunchApp2","LaunchAssistant","LaunchAudioBrowser","LaunchCalendar","LaunchContacts","LaunchControlPanel","LaunchDocuments","LaunchInternetBrowser","LaunchKeyboardLayout","LaunchMail","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWordProcessor","LockScreen","LogOff","MailForward","MailReply","MailSend","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSelect","MediaStop","MediaTrackNext","MediaTrackPrevious","MetaLeft","MetaRight","Minus","New","NonConvert","NumLock","Numpad0","Numpad1","Numpad2","Numpad3","Numpad4","Numpad5","Numpad6","Numpad7","Numpad8","Numpad9","NumpadAdd","NumpadBackspace","NumpadClear","NumpadClearEntry","NumpadComma","NumpadDecimal","NumpadDivide","NumpadEnter","NumpadEqual","NumpadMemoryAdd","NumpadMemoryClear","NumpadMemoryRecall","NumpadMemoryStore","NumpadMemorySubtract","NumpadMultiply","NumpadParenLeft","NumpadParenRight","NumpadSignChange","NumpadSubtract","Open","PageDown","PageUp","Paste","Pause","Period","Power","Print","PrintScreen","PrivacyScreenToggle","ProgramGuide","Props","Quote","Redo","Resume","Save","ScrollLock","Select","SelectTask","Semicolon","ShiftLeft","ShiftRight","ShowAllWindows","Slash","Sleep","Space","SpeechInputToggle","SpellCheck","Super","Suspend","Tab","Turbo","Undo","UsbErrorRollOver","UsbErrorUndefined","UsbPostFail","UsbReserved","WakeUp","ZoomIn","ZoomOut","ZoomToggle"]),t.s) -B.Jn=new A.bd(268,{Abort:458907,Again:458873,AltLeft:458978,AltRight:458982,ArrowDown:458833,ArrowLeft:458832,ArrowRight:458831,ArrowUp:458834,AudioVolumeDown:458881,AudioVolumeMute:458879,AudioVolumeUp:458880,Backquote:458805,Backslash:458801,Backspace:458794,BassBoost:786661,BracketLeft:458799,BracketRight:458800,BrightnessAuto:786549,BrightnessDown:786544,BrightnessMaximum:786548,BrightnessMinimum:786547,BrightnessToggle:786546,BrightnessUp:786543,BrowserBack:786980,BrowserFavorites:786986,BrowserForward:786981,BrowserHome:786979,BrowserRefresh:786983,BrowserSearch:786977,BrowserStop:786982,CapsLock:458809,ChannelDown:786589,ChannelUp:786588,Close:786947,ClosedCaptionToggle:786529,Comma:458806,ContextMenu:458853,ControlLeft:458976,ControlRight:458980,Convert:458890,Copy:458876,Cut:458875,Delete:458828,Digit0:458791,Digit1:458782,Digit2:458783,Digit3:458784,Digit4:458785,Digit5:458786,Digit6:458787,Digit7:458788,Digit8:458789,Digit9:458790,DisplayToggleIntExt:65717,Eject:786616,End:458829,Enter:458792,Equal:458798,Escape:458793,Exit:786580,F1:458810,F10:458819,F11:458820,F12:458821,F13:458856,F14:458857,F15:458858,F16:458859,F17:458860,F18:458861,F19:458862,F2:458811,F20:458863,F21:458864,F22:458865,F23:458866,F24:458867,F3:458812,F4:458813,F5:458814,F6:458815,F7:458816,F8:458817,F9:458818,Find:458878,Fn:18,FnLock:19,GameButton1:392961,GameButton10:392970,GameButton11:392971,GameButton12:392972,GameButton13:392973,GameButton14:392974,GameButton15:392975,GameButton16:392976,GameButton2:392962,GameButton3:392963,GameButton4:392964,GameButton5:392965,GameButton6:392966,GameButton7:392967,GameButton8:392968,GameButton9:392969,GameButtonA:392977,GameButtonB:392978,GameButtonC:392979,GameButtonLeft1:392980,GameButtonLeft2:392981,GameButtonMode:392982,GameButtonRight1:392983,GameButtonRight2:392984,GameButtonSelect:392985,GameButtonStart:392986,GameButtonThumbLeft:392987,GameButtonThumbRight:392988,GameButtonX:392989,GameButtonY:392990,GameButtonZ:392991,Help:458869,Home:458826,Hyper:16,Info:786528,Insert:458825,IntlBackslash:458852,IntlRo:458887,IntlYen:458889,KanaMode:458888,KbdIllumDown:786554,KbdIllumUp:786553,KeyA:458756,KeyB:458757,KeyC:458758,KeyD:458759,KeyE:458760,KeyF:458761,KeyG:458762,KeyH:458763,KeyI:458764,KeyJ:458765,KeyK:458766,KeyL:458767,KeyM:458768,KeyN:458769,KeyO:458770,KeyP:458771,KeyQ:458772,KeyR:458773,KeyS:458774,KeyT:458775,KeyU:458776,KeyV:458777,KeyW:458778,KeyX:458779,KeyY:458780,KeyZ:458781,KeyboardLayoutSelect:787101,Lang1:458896,Lang2:458897,Lang3:458898,Lang4:458899,Lang5:458900,LaunchApp1:786836,LaunchApp2:786834,LaunchAssistant:786891,LaunchAudioBrowser:786871,LaunchCalendar:786830,LaunchContacts:786829,LaunchControlPanel:786847,LaunchDocuments:786855,LaunchInternetBrowser:786838,LaunchKeyboardLayout:786862,LaunchMail:786826,LaunchPhone:786572,LaunchScreenSaver:786865,LaunchSpreadsheet:786822,LaunchWordProcessor:786820,LockScreen:786846,LogOff:786844,MailForward:787083,MailReply:787081,MailSend:787084,MediaFastForward:786611,MediaLast:786563,MediaPause:786609,MediaPlay:786608,MediaPlayPause:786637,MediaRecord:786610,MediaRewind:786612,MediaSelect:786819,MediaStop:786615,MediaTrackNext:786613,MediaTrackPrevious:786614,MetaLeft:458979,MetaRight:458983,Minus:458797,New:786945,NonConvert:458891,NumLock:458835,Numpad0:458850,Numpad1:458841,Numpad2:458842,Numpad3:458843,Numpad4:458844,Numpad5:458845,Numpad6:458846,Numpad7:458847,Numpad8:458848,Numpad9:458849,NumpadAdd:458839,NumpadBackspace:458939,NumpadClear:458968,NumpadClearEntry:458969,NumpadComma:458885,NumpadDecimal:458851,NumpadDivide:458836,NumpadEnter:458840,NumpadEqual:458855,NumpadMemoryAdd:458963,NumpadMemoryClear:458962,NumpadMemoryRecall:458961,NumpadMemoryStore:458960,NumpadMemorySubtract:458964,NumpadMultiply:458837,NumpadParenLeft:458934,NumpadParenRight:458935,NumpadSignChange:458967,NumpadSubtract:458838,Open:458868,PageDown:458830,PageUp:458827,Paste:458877,Pause:458824,Period:458807,Power:458854,Print:786952,PrintScreen:458822,PrivacyScreenToggle:23,ProgramGuide:786573,Props:458915,Quote:458804,Redo:787065,Resume:21,Save:786951,ScrollLock:458823,Select:458871,SelectTask:786850,Semicolon:458803,ShiftLeft:458977,ShiftRight:458981,ShowAllWindows:787103,Slash:458808,Sleep:65666,Space:458796,SpeechInputToggle:786639,SpellCheck:786859,Super:17,Suspend:20,Tab:458795,Turbo:22,Undo:458874,UsbErrorRollOver:458753,UsbErrorUndefined:458755,UsbPostFail:458754,UsbReserved:458752,WakeUp:65667,ZoomIn:786989,ZoomOut:786990,ZoomToggle:786994},B.E8,t.eL) -B.Jo=new A.bI([16,B.u_,17,B.u0,18,B.dk,19,B.u1,20,B.u2,21,B.u3,22,B.u4,23,B.hG,24,B.hH,65666,B.jS,65667,B.jT,65717,B.jU,392961,B.u5,392962,B.u6,392963,B.u7,392964,B.u8,392965,B.u9,392966,B.ua,392967,B.ub,392968,B.uc,392969,B.ud,392970,B.ue,392971,B.uf,392972,B.ug,392973,B.uh,392974,B.ui,392975,B.uj,392976,B.uk,392977,B.ul,392978,B.um,392979,B.un,392980,B.uo,392981,B.up,392982,B.uq,392983,B.ur,392984,B.us,392985,B.ut,392986,B.uu,392987,B.uv,392988,B.uw,392989,B.ux,392990,B.uy,392991,B.uz,458752,B.uA,458753,B.uB,458754,B.uC,458755,B.uD,458756,B.hI,458757,B.hJ,458758,B.hK,458759,B.hL,458760,B.hM,458761,B.hN,458762,B.hO,458763,B.hP,458764,B.hQ,458765,B.hR,458766,B.hS,458767,B.hT,458768,B.hU,458769,B.hV,458770,B.hW,458771,B.hX,458772,B.hY,458773,B.hZ,458774,B.i_,458775,B.i0,458776,B.i1,458777,B.i2,458778,B.i3,458779,B.i4,458780,B.i5,458781,B.i6,458782,B.i7,458783,B.i8,458784,B.i9,458785,B.ia,458786,B.ib,458787,B.ic,458788,B.id,458789,B.ie,458790,B.ig,458791,B.ih,458792,B.ii,458793,B.ij,458794,B.ik,458795,B.il,458796,B.im,458797,B.io,458798,B.ip,458799,B.iq,458800,B.ir,458801,B.is,458803,B.it,458804,B.iu,458805,B.iv,458806,B.iw,458807,B.ix,458808,B.iy,458809,B.dl,458810,B.iz,458811,B.iA,458812,B.iB,458813,B.iC,458814,B.iD,458815,B.iE,458816,B.iF,458817,B.iG,458818,B.iH,458819,B.iI,458820,B.iJ,458821,B.iK,458822,B.iL,458823,B.dm,458824,B.iM,458825,B.iN,458826,B.iO,458827,B.iP,458828,B.iQ,458829,B.iR,458830,B.iS,458831,B.iT,458832,B.iU,458833,B.iV,458834,B.iW,458835,B.dn,458836,B.iX,458837,B.iY,458838,B.iZ,458839,B.j_,458840,B.j0,458841,B.j1,458842,B.j2,458843,B.j3,458844,B.j4,458845,B.j5,458846,B.j6,458847,B.j7,458848,B.j8,458849,B.j9,458850,B.ja,458851,B.jb,458852,B.jc,458853,B.jd,458854,B.je,458855,B.jf,458856,B.jg,458857,B.jh,458858,B.ji,458859,B.jj,458860,B.jk,458861,B.jl,458862,B.jm,458863,B.jn,458864,B.jo,458865,B.jp,458866,B.jq,458867,B.jr,458868,B.js,458869,B.jt,458871,B.ju,458873,B.jv,458874,B.jw,458875,B.jx,458876,B.jy,458877,B.jz,458878,B.jA,458879,B.jB,458880,B.jC,458881,B.jD,458885,B.jE,458887,B.jF,458888,B.jG,458889,B.jH,458890,B.jI,458891,B.jJ,458896,B.jK,458897,B.jL,458898,B.jM,458899,B.jN,458900,B.jO,458907,B.uE,458915,B.uF,458934,B.jP,458935,B.jQ,458939,B.uG,458960,B.uH,458961,B.uI,458962,B.uJ,458963,B.uK,458964,B.uL,458967,B.jR,458968,B.uM,458969,B.uN,458976,B.c2,458977,B.c3,458978,B.c4,458979,B.c5,458980,B.cD,458981,B.cE,458982,B.c6,458983,B.cF,786528,B.jV,786529,B.jW,786543,B.jX,786544,B.jY,786546,B.jZ,786547,B.k_,786548,B.k0,786549,B.k1,786553,B.k2,786554,B.k3,786563,B.k4,786572,B.k5,786573,B.k6,786580,B.k7,786588,B.k8,786589,B.k9,786608,B.ka,786609,B.kb,786610,B.kc,786611,B.kd,786612,B.ke,786613,B.kf,786614,B.kg,786615,B.kh,786616,B.ki,786637,B.kj,786639,B.kk,786661,B.kl,786819,B.km,786820,B.kn,786822,B.ko,786826,B.kp,786829,B.kq,786830,B.kr,786834,B.ks,786836,B.kt,786838,B.ku,786844,B.kv,786846,B.kw,786847,B.kx,786850,B.ky,786855,B.kz,786859,B.kA,786862,B.kB,786865,B.kC,786871,B.kD,786891,B.kE,786945,B.kF,786947,B.kG,786951,B.kH,786952,B.kI,786977,B.kJ,786979,B.kK,786980,B.kL,786981,B.kM,786982,B.kN,786983,B.kO,786986,B.kP,786989,B.kQ,786990,B.kR,786994,B.kS,787065,B.kT,787081,B.kU,787083,B.kV,787084,B.kW,787101,B.kX,787103,B.kY],t.Vd) -B.Es=A.b(s(["in","iw","ji","jw","mo","aam","adp","aue","ayx","bgm","bjd","ccq","cjr","cka","cmk","coy","cqu","drh","drw","gav","gfx","ggn","gti","guv","hrr","ibi","ilw","jeg","kgc","kgh","koj","krm","ktr","kvs","kwq","kxe","kzj","kzt","lii","lmm","meg","mst","mwj","myt","nad","ncp","nnx","nts","oun","pcr","pmc","pmu","ppa","ppr","pry","puz","sca","skk","tdu","thc","thx","tie","tkk","tlw","tmp","tne","tnf","tsf","uok","xba","xia","xkh","xsj","ybd","yma","ymt","yos","yuu"]),t.s) -B.b4=new A.bd(78,{in:"id",iw:"he",ji:"yi",jw:"jv",mo:"ro",aam:"aas",adp:"dz",aue:"ktz",ayx:"nun",bgm:"bcg",bjd:"drl",ccq:"rki",cjr:"mom",cka:"cmr",cmk:"xch",coy:"pij",cqu:"quh",drh:"khk",drw:"prs",gav:"dev",gfx:"vaj",ggn:"gvr",gti:"nyc",guv:"duz",hrr:"jal",ibi:"opa",ilw:"gal",jeg:"oyb",kgc:"tdf",kgh:"kml",koj:"kwv",krm:"bmf",ktr:"dtp",kvs:"gdj",kwq:"yam",kxe:"tvd",kzj:"dtp",kzt:"dtp",lii:"raq",lmm:"rmx",meg:"cir",mst:"mry",mwj:"vaj",myt:"mry",nad:"xny",ncp:"kdz",nnx:"ngv",nts:"pij",oun:"vaj",pcr:"adx",pmc:"huw",pmu:"phr",ppa:"bfy",ppr:"lcq",pry:"prt",puz:"pub",sca:"hle",skk:"oyb",tdu:"dtp",thc:"tpo",thx:"oyb",tie:"ras",tkk:"twm",tlw:"weo",tmp:"tyj",tne:"kak",tnf:"prs",tsf:"taj",uok:"ema",xba:"cax",xia:"acn",xkh:"waw",xsj:"suj",ybd:"rki",yma:"lrr",ymt:"mtm",yos:"zom",yuu:"yug"},B.Es,t.li) -B.Ue=new A.bI([9,B.ij,10,B.i7,11,B.i8,12,B.i9,13,B.ia,14,B.ib,15,B.ic,16,B.id,17,B.ie,18,B.ig,19,B.ih,20,B.io,21,B.ip,22,B.ik,23,B.il,24,B.hY,25,B.i3,26,B.hM,27,B.hZ,28,B.i0,29,B.i5,30,B.i1,31,B.hQ,32,B.hW,33,B.hX,34,B.iq,35,B.ir,36,B.ii,37,B.c2,38,B.hI,39,B.i_,40,B.hL,41,B.hN,42,B.hO,43,B.hP,44,B.hR,45,B.hS,46,B.hT,47,B.it,48,B.iu,49,B.iv,50,B.c3,51,B.is,52,B.i6,53,B.i4,54,B.hK,55,B.i2,56,B.hJ,57,B.hV,58,B.hU,59,B.iw,60,B.ix,61,B.iy,62,B.cE,63,B.iY,64,B.c4,65,B.im,66,B.dl,67,B.iz,68,B.iA,69,B.iB,70,B.iC,71,B.iD,72,B.iE,73,B.iF,74,B.iG,75,B.iH,76,B.iI,77,B.dn,78,B.dm,79,B.j7,80,B.j8,81,B.j9,82,B.iZ,83,B.j4,84,B.j5,85,B.j6,86,B.j_,87,B.j1,88,B.j2,89,B.j3,90,B.ja,91,B.jb,93,B.jO,94,B.jc,95,B.iJ,96,B.iK,97,B.jF,98,B.jM,99,B.jN,100,B.jI,101,B.jG,102,B.jJ,104,B.j0,105,B.cD,106,B.iX,107,B.iL,108,B.c6,110,B.iO,111,B.iW,112,B.iP,113,B.iU,114,B.iT,115,B.iR,116,B.iV,117,B.iS,118,B.iN,119,B.iQ,121,B.jB,122,B.jD,123,B.jC,124,B.je,125,B.jf,126,B.jR,127,B.iM,128,B.kY,129,B.jE,130,B.jK,131,B.jL,132,B.jH,133,B.c5,134,B.cF,135,B.jd,136,B.kN,137,B.jv,139,B.jw,140,B.ju,141,B.jy,142,B.js,143,B.jz,144,B.jA,145,B.jx,146,B.jt,148,B.ks,150,B.jS,151,B.jT,152,B.kt,158,B.ku,160,B.kw,163,B.kp,164,B.kP,166,B.kL,167,B.kM,169,B.ki,171,B.kf,172,B.kj,173,B.kg,174,B.kh,175,B.kc,176,B.ke,177,B.k5,179,B.km,180,B.kK,181,B.kO,182,B.k7,187,B.jP,188,B.jQ,189,B.kF,190,B.kT,191,B.jg,192,B.jh,193,B.ji,194,B.jj,195,B.jk,196,B.jl,197,B.jm,198,B.jn,199,B.jo,200,B.jp,201,B.jq,202,B.jr,209,B.kb,214,B.kG,215,B.ka,216,B.kd,217,B.kl,218,B.kI,225,B.kJ,232,B.jY,233,B.jX,235,B.jU,237,B.k3,238,B.k2,239,B.kW,240,B.kU,241,B.kV,242,B.kH,243,B.kz,252,B.k1,256,B.hH,366,B.jV,370,B.k6,378,B.jW,380,B.kS,382,B.kB,400,B.kD,405,B.kr,413,B.k4,418,B.k8,419,B.k9,426,B.kQ,427,B.kR,429,B.kn,431,B.ko,437,B.kq,439,B.jZ,440,B.kA,441,B.kv,587,B.kx,588,B.ky,589,B.kC,590,B.kk,591,B.kE,592,B.kX,600,B.k_,601,B.k0,641,B.hG],t.Vd) -B.ED=A.b(s([]),A.a_("o")) -B.hv=new A.bd(0,{},B.ED,A.a_("bd")) -B.EE=A.b(s([]),t.wS) -B.tF=new A.bd(0,{},B.EE,A.a_("bd")) -B.tC=new A.bd(0,{},B.nJ,A.a_("bd")) -B.EF=A.b(s([]),t.g) -B.Jw=new A.bd(0,{},B.EF,A.a_("bd")) -B.EG=A.b(s([]),A.a_("o")) -B.Jv=new A.bd(0,{},B.EG,A.a_("bd")) -B.tD=new A.bd(0,{},B.bZ,A.a_("bd")) -B.EH=A.b(s([]),A.a_("o")) -B.tB=new A.bd(0,{},B.EH,A.a_("bd")) -B.nI=A.b(s([]),A.a_("o")) -B.Ju=new A.bd(0,{},B.nI,A.a_("bd")) -B.tE=new A.bd(0,{},B.nI,A.a_("bd>")) -B.EN=A.b(s(["alias","allScroll","basic","cell","click","contextMenu","copy","forbidden","grab","grabbing","help","move","none","noDrop","precise","progress","text","resizeColumn","resizeDown","resizeDownLeft","resizeDownRight","resizeLeft","resizeLeftRight","resizeRight","resizeRow","resizeUp","resizeUpDown","resizeUpLeft","resizeUpRight","resizeUpLeftDownRight","resizeUpRightDownLeft","verticalText","wait","zoomIn","zoomOut"]),t.s) -B.Jx=new A.bd(35,{alias:"alias",allScroll:"all-scroll",basic:"default",cell:"cell",click:"pointer",contextMenu:"context-menu",copy:"copy",forbidden:"not-allowed",grab:"grab",grabbing:"grabbing",help:"help",move:"move",none:"none",noDrop:"no-drop",precise:"crosshair",progress:"progress",text:"text",resizeColumn:"col-resize",resizeDown:"s-resize",resizeDownLeft:"sw-resize",resizeDownRight:"se-resize",resizeLeft:"w-resize",resizeLeftRight:"ew-resize",resizeRight:"e-resize",resizeRow:"row-resize",resizeUp:"n-resize",resizeUpDown:"ns-resize",resizeUpLeft:"nw-resize",resizeUpRight:"ne-resize",resizeUpLeftDownRight:"nwse-resize",resizeUpRightDownLeft:"nesw-resize",verticalText:"vertical-text",wait:"wait",zoomIn:"zoom-in",zoomOut:"zoom-out"},B.EN,t.li) -B.bA=new A.k9(0,"canvas") -B.hx=new A.k9(1,"card") -B.tJ=new A.k9(2,"circle") -B.hy=new A.k9(3,"button") -B.df=new A.k9(4,"transparency") -B.cH=new A.bD(2,2) -B.ff=new A.cI(B.cH,B.cH,B.cH,B.cH) -B.Jy=new A.bI([B.bA,null,B.hx,B.ff,B.tJ,null,B.hy,B.ff,B.df,null],A.a_("bI")) -B.nN=new A.d(32) -B.HW=new A.d(33) -B.HX=new A.d(34) -B.HY=new A.d(35) -B.HZ=new A.d(36) -B.I_=new A.d(37) -B.I0=new A.d(38) -B.I1=new A.d(39) -B.I2=new A.d(40) -B.I3=new A.d(41) -B.I4=new A.d(44) -B.I5=new A.d(58) -B.I6=new A.d(59) -B.I7=new A.d(60) -B.I8=new A.d(61) -B.I9=new A.d(62) -B.Ia=new A.d(63) -B.Ib=new A.d(64) -B.J0=new A.d(91) -B.J1=new A.d(92) -B.J2=new A.d(93) -B.J3=new A.d(94) -B.J4=new A.d(95) -B.J5=new A.d(96) -B.ht=new A.d(97) -B.J6=new A.d(98) -B.hu=new A.d(99) -B.Hx=new A.d(100) -B.Hy=new A.d(101) -B.Hz=new A.d(102) -B.HA=new A.d(103) -B.HB=new A.d(104) -B.HC=new A.d(105) -B.HD=new A.d(106) -B.HE=new A.d(107) -B.HF=new A.d(108) -B.HG=new A.d(109) -B.HH=new A.d(110) -B.HI=new A.d(111) -B.HJ=new A.d(112) -B.HK=new A.d(113) -B.HL=new A.d(114) -B.HM=new A.d(115) -B.HN=new A.d(116) -B.HO=new A.d(117) -B.hc=new A.d(118) -B.HP=new A.d(119) -B.hd=new A.d(120) -B.HQ=new A.d(121) -B.HR=new A.d(122) -B.HS=new A.d(123) -B.HT=new A.d(124) -B.HU=new A.d(125) -B.HV=new A.d(126) -B.Ic=new A.d(8589934592) -B.Id=new A.d(8589934593) -B.Ie=new A.d(8589934594) -B.If=new A.d(8589934595) -B.Ig=new A.d(8589934608) -B.Ih=new A.d(8589934609) -B.Ii=new A.d(8589934610) -B.Ij=new A.d(8589934611) -B.Ik=new A.d(8589934612) -B.Il=new A.d(8589934624) -B.Im=new A.d(8589934625) -B.In=new A.d(8589934626) -B.Io=new A.d(8589935088) -B.Ip=new A.d(8589935090) -B.Iq=new A.d(8589935092) -B.Ir=new A.d(8589935094) -B.Is=new A.d(8589935144) -B.It=new A.d(8589935145) -B.Iu=new A.d(8589935148) -B.Iv=new A.d(8589935165) -B.Iw=new A.d(8589935361) -B.Ix=new A.d(8589935362) -B.Iy=new A.d(8589935363) -B.Iz=new A.d(8589935364) -B.IA=new A.d(8589935365) -B.IB=new A.d(8589935366) -B.IC=new A.d(8589935367) -B.ID=new A.d(8589935368) -B.IE=new A.d(8589935369) -B.IF=new A.d(8589935370) -B.IG=new A.d(8589935371) -B.IH=new A.d(8589935372) -B.II=new A.d(8589935373) -B.IJ=new A.d(8589935374) -B.IK=new A.d(8589935375) -B.IL=new A.d(8589935376) -B.IM=new A.d(8589935377) -B.IN=new A.d(8589935378) -B.IO=new A.d(8589935379) -B.IP=new A.d(8589935380) -B.IQ=new A.d(8589935381) -B.IR=new A.d(8589935382) -B.IS=new A.d(8589935383) -B.IT=new A.d(8589935384) -B.IU=new A.d(8589935385) -B.IV=new A.d(8589935386) -B.IW=new A.d(8589935387) -B.IX=new A.d(8589935388) -B.IY=new A.d(8589935389) -B.IZ=new A.d(8589935390) -B.J_=new A.d(8589935391) -B.JA=new A.bI([32,B.nN,33,B.HW,34,B.HX,35,B.HY,36,B.HZ,37,B.I_,38,B.I0,39,B.I1,40,B.I2,41,B.I3,42,B.nO,43,B.th,44,B.I4,45,B.ti,46,B.tj,47,B.tk,48,B.tl,49,B.tm,50,B.tn,51,B.to,52,B.tp,53,B.tq,54,B.tr,55,B.ts,56,B.tt,57,B.tu,58,B.I5,59,B.I6,60,B.I7,61,B.I8,62,B.I9,63,B.Ia,64,B.Ib,91,B.J0,92,B.J1,93,B.J2,94,B.J3,95,B.J4,96,B.J5,97,B.ht,98,B.J6,99,B.hu,100,B.Hx,101,B.Hy,102,B.Hz,103,B.HA,104,B.HB,105,B.HC,106,B.HD,107,B.HE,108,B.HF,109,B.HG,110,B.HH,111,B.HI,112,B.HJ,113,B.HK,114,B.HL,115,B.HM,116,B.HN,117,B.HO,118,B.hc,119,B.HP,120,B.hd,121,B.HQ,122,B.HR,123,B.HS,124,B.HT,125,B.HU,126,B.HV,4294967297,B.nP,4294967304,B.cw,4294967305,B.em,4294967309,B.en,4294967323,B.eo,4294967423,B.c_,4294967553,B.nQ,4294967555,B.nR,4294967556,B.ep,4294967558,B.he,4294967559,B.nS,4294967560,B.nT,4294967562,B.eq,4294967564,B.er,4294967566,B.nU,4294967567,B.nV,4294967568,B.nW,4294967569,B.nX,4294968065,B.bc,4294968066,B.aS,4294968067,B.aT,4294968068,B.bd,4294968069,B.cx,4294968070,B.cy,4294968071,B.es,4294968072,B.et,4294968321,B.hf,4294968322,B.nY,4294968323,B.nZ,4294968324,B.o_,4294968325,B.o0,4294968326,B.o1,4294968327,B.hg,4294968328,B.o2,4294968329,B.o3,4294968330,B.o4,4294968577,B.o5,4294968578,B.o6,4294968579,B.o7,4294968580,B.o8,4294968581,B.o9,4294968582,B.oa,4294968583,B.ob,4294968584,B.oc,4294968585,B.od,4294968586,B.oe,4294968587,B.of,4294968588,B.og,4294968589,B.oh,4294968590,B.oi,4294968833,B.oj,4294968834,B.ok,4294968835,B.ol,4294968836,B.om,4294968837,B.on,4294968838,B.oo,4294968839,B.op,4294968840,B.oq,4294968841,B.or,4294968842,B.os,4294968843,B.ot,4294969089,B.ou,4294969090,B.ov,4294969091,B.ow,4294969092,B.ox,4294969093,B.oy,4294969094,B.oz,4294969095,B.oA,4294969096,B.oB,4294969097,B.oC,4294969098,B.oD,4294969099,B.oE,4294969100,B.oF,4294969101,B.oG,4294969102,B.oH,4294969103,B.oI,4294969104,B.oJ,4294969105,B.oK,4294969106,B.oL,4294969107,B.oM,4294969108,B.oN,4294969109,B.oO,4294969110,B.oP,4294969111,B.oQ,4294969112,B.oR,4294969113,B.oS,4294969114,B.oT,4294969115,B.oU,4294969116,B.oV,4294969117,B.oW,4294969345,B.oX,4294969346,B.oY,4294969347,B.oZ,4294969348,B.p_,4294969349,B.p0,4294969350,B.p1,4294969351,B.p2,4294969352,B.p3,4294969353,B.p4,4294969354,B.p5,4294969355,B.p6,4294969356,B.p7,4294969357,B.p8,4294969358,B.p9,4294969359,B.pa,4294969360,B.pb,4294969361,B.pc,4294969362,B.pd,4294969363,B.pe,4294969364,B.pf,4294969365,B.pg,4294969366,B.ph,4294969367,B.pi,4294969368,B.pj,4294969601,B.pk,4294969602,B.pl,4294969603,B.pm,4294969604,B.pn,4294969605,B.po,4294969606,B.pp,4294969607,B.pq,4294969608,B.pr,4294969857,B.ps,4294969858,B.pt,4294969859,B.pu,4294969860,B.pv,4294969861,B.pw,4294969863,B.px,4294969864,B.py,4294969865,B.pz,4294969866,B.pA,4294969867,B.pB,4294969868,B.pC,4294969869,B.pD,4294969870,B.pE,4294969871,B.pF,4294969872,B.pG,4294969873,B.pH,4294970113,B.pI,4294970114,B.pJ,4294970115,B.pK,4294970116,B.pL,4294970117,B.pM,4294970118,B.pN,4294970119,B.pO,4294970120,B.pP,4294970121,B.pQ,4294970122,B.pR,4294970123,B.pS,4294970124,B.pT,4294970125,B.pU,4294970126,B.pV,4294970127,B.pW,4294970369,B.pX,4294970370,B.pY,4294970371,B.pZ,4294970372,B.q_,4294970373,B.q0,4294970374,B.q1,4294970375,B.q2,4294970625,B.q3,4294970626,B.q4,4294970627,B.q5,4294970628,B.q6,4294970629,B.q7,4294970630,B.q8,4294970631,B.q9,4294970632,B.qa,4294970633,B.qb,4294970634,B.qc,4294970635,B.qd,4294970636,B.qe,4294970637,B.qf,4294970638,B.qg,4294970639,B.qh,4294970640,B.qi,4294970641,B.qj,4294970642,B.qk,4294970643,B.ql,4294970644,B.qm,4294970645,B.qn,4294970646,B.qo,4294970647,B.qp,4294970648,B.qq,4294970649,B.qr,4294970650,B.qs,4294970651,B.qt,4294970652,B.qu,4294970653,B.qv,4294970654,B.qw,4294970655,B.qx,4294970656,B.qy,4294970657,B.qz,4294970658,B.qA,4294970659,B.qB,4294970660,B.qC,4294970661,B.qD,4294970662,B.qE,4294970663,B.qF,4294970664,B.qG,4294970665,B.qH,4294970666,B.qI,4294970667,B.qJ,4294970668,B.qK,4294970669,B.qL,4294970670,B.qM,4294970671,B.qN,4294970672,B.qO,4294970673,B.qP,4294970674,B.qQ,4294970675,B.qR,4294970676,B.qS,4294970677,B.qT,4294970678,B.qU,4294970679,B.qV,4294970680,B.qW,4294970681,B.qX,4294970682,B.qY,4294970683,B.qZ,4294970684,B.r_,4294970685,B.r0,4294970686,B.r1,4294970687,B.r2,4294970688,B.r3,4294970689,B.r4,4294970690,B.r5,4294970691,B.r6,4294970692,B.r7,4294970693,B.r8,4294970694,B.r9,4294970695,B.ra,4294970696,B.rb,4294970697,B.rc,4294970698,B.rd,4294970699,B.re,4294970700,B.rf,4294970701,B.rg,4294970702,B.rh,4294970703,B.ri,4294970704,B.rj,4294970705,B.rk,4294970706,B.rl,4294970707,B.rm,4294970708,B.rn,4294970709,B.ro,4294970710,B.rp,4294970711,B.rq,4294970712,B.rr,4294970713,B.rs,4294970714,B.rt,4294970715,B.ru,4294970882,B.rv,4294970884,B.rw,4294970885,B.rx,4294970886,B.ry,4294970887,B.rz,4294970888,B.rA,4294970889,B.rB,4294971137,B.rC,4294971138,B.rD,4294971393,B.rE,4294971394,B.rF,4294971395,B.rG,4294971396,B.rH,4294971397,B.rI,4294971398,B.rJ,4294971399,B.rK,4294971400,B.rL,4294971401,B.rM,4294971402,B.rN,4294971403,B.rO,4294971649,B.rP,4294971650,B.rQ,4294971651,B.rR,4294971652,B.rS,4294971653,B.rT,4294971654,B.rU,4294971655,B.rV,4294971656,B.rW,4294971657,B.rX,4294971658,B.rY,4294971659,B.rZ,4294971660,B.t_,4294971661,B.t0,4294971662,B.t1,4294971663,B.t2,4294971664,B.t3,4294971665,B.t4,4294971666,B.t5,4294971667,B.t6,4294971668,B.t7,4294971669,B.t8,4294971670,B.t9,4294971671,B.ta,4294971672,B.tb,4294971673,B.tc,4294971674,B.td,4294971675,B.te,4294971905,B.tf,4294971906,B.tg,8589934592,B.Ic,8589934593,B.Id,8589934594,B.Ie,8589934595,B.If,8589934608,B.Ig,8589934609,B.Ih,8589934610,B.Ii,8589934611,B.Ij,8589934612,B.Ik,8589934624,B.Il,8589934625,B.Im,8589934626,B.In,8589934848,B.db,8589934849,B.eu,8589934850,B.c0,8589934851,B.cz,8589934852,B.dc,8589934853,B.ev,8589934854,B.dd,8589934855,B.ew,8589935088,B.Io,8589935090,B.Ip,8589935092,B.Iq,8589935094,B.Ir,8589935117,B.hh,8589935144,B.Is,8589935145,B.It,8589935146,B.tv,8589935147,B.tw,8589935148,B.Iu,8589935149,B.tx,8589935150,B.hi,8589935151,B.ty,8589935152,B.hj,8589935153,B.hk,8589935154,B.hl,8589935155,B.hm,8589935156,B.hn,8589935157,B.ho,8589935158,B.hp,8589935159,B.hq,8589935160,B.hr,8589935161,B.hs,8589935165,B.Iv,8589935361,B.Iw,8589935362,B.Ix,8589935363,B.Iy,8589935364,B.Iz,8589935365,B.IA,8589935366,B.IB,8589935367,B.IC,8589935368,B.ID,8589935369,B.IE,8589935370,B.IF,8589935371,B.IG,8589935372,B.IH,8589935373,B.II,8589935374,B.IJ,8589935375,B.IK,8589935376,B.IL,8589935377,B.IM,8589935378,B.IN,8589935379,B.IO,8589935380,B.IP,8589935381,B.IQ,8589935382,B.IR,8589935383,B.IS,8589935384,B.IT,8589935385,B.IU,8589935386,B.IV,8589935387,B.IW,8589935388,B.IX,8589935389,B.IY,8589935390,B.IZ,8589935391,B.J_],A.a_("bI")) -B.JC=new A.bI([0,"FontWeight.w100",1,"FontWeight.w200",2,"FontWeight.w300",3,"FontWeight.w400",4,"FontWeight.w500",5,"FontWeight.w600",6,"FontWeight.w700",7,"FontWeight.w800",8,"FontWeight.w900"],A.a_("bI")) -B.vn=new A.aR(B.nN,!1,!1,!1,!1) -B.vm=new A.aR(B.en,!1,!1,!1,!1) -B.Mb=new A.aR(B.hh,!1,!1,!1,!1) -B.Lw=new A.aR(B.eo,!1,!1,!1,!1) -B.Lx=new A.aR(B.em,!1,!1,!1,!1) -B.Ly=new A.aR(B.em,!1,!0,!1,!1) -B.Lv=new A.aR(B.et,!1,!1,!1,!1) -B.M_=new A.aR(B.es,!1,!1,!1,!1) -B.xe=new A.op() -B.mf=new A.pY() -B.wV=new A.fY() -B.x7=new A.o9() -B.xd=new A.on() -B.eH=new A.zG(0,"line") -B.KV=new A.hk(B.I,B.eH) -B.KS=new A.hk(B.J,B.eH) -B.KT=new A.hk(B.al,B.eH) -B.KW=new A.hk(B.ay,B.eH) -B.KU=new A.hk(B.I,B.v0) -B.JD=new A.bI([B.vn,B.xe,B.vm,B.mf,B.Mb,B.mf,B.Lw,B.wV,B.Lx,B.x7,B.Ly,B.xd,B.li,B.KV,B.lj,B.KS,B.lk,B.KT,B.ll,B.KW,B.Lv,B.KU,B.M_,B.v1],t.Fp) -B.JE=new A.xR(null,null,null,null,null) -B.A2=new A.E(4292998654) -B.zZ=new A.E(4289979900) -B.zW=new A.E(4286698746) -B.zU=new A.E(4283417591) -B.zQ=new A.E(4280923894) -B.zI=new A.E(4278430196) -B.zH=new A.E(4278426597) -B.zG=new A.E(4278356177) -B.zF=new A.E(4278351805) -B.zE=new A.E(4278278043) -B.Ji=new A.bI([50,B.A2,100,B.zZ,200,B.zW,300,B.zU,400,B.zQ,500,B.zI,600,B.zH,700,B.zG,800,B.zF,900,B.zE],t.pl) -B.JF=new A.lH(B.Ji,4278430196) -B.A1=new A.E(4292933626) -B.zY=new A.E(4289915890) -B.zV=new A.E(4286635754) -B.zT=new A.E(4283289825) -B.zP=new A.E(4280731354) -B.zC=new A.E(4278238420) -B.zB=new A.E(4278234305) -B.zA=new A.E(4278228903) -B.zz=new A.E(4278223759) -B.zy=new A.E(4278214756) -B.Jj=new A.bI([50,B.A1,100,B.zY,200,B.zV,300,B.zT,400,B.zP,500,B.zC,600,B.zB,700,B.zA,800,B.zz,900,B.zy],t.pl) -B.tG=new A.lH(B.Jj,4278238420) -B.Al=new A.E(4294966759) -B.Ak=new A.E(4294965700) -B.Aj=new A.E(4294964637) -B.Ai=new A.E(4294963574) -B.Ah=new A.E(4294962776) -B.Af=new A.E(4294961979) -B.Ac=new A.E(4294826037) -B.Ab=new A.E(4294688813) -B.Aa=new A.E(4294551589) -B.A8=new A.E(4294278935) -B.Jk=new A.bI([50,B.Al,100,B.Ak,200,B.Aj,300,B.Ai,400,B.Ah,500,B.Af,600,B.Ac,700,B.Ab,800,B.Aa,900,B.A8],t.pl) -B.JG=new A.lH(B.Jk,4294961979) -B.Ag=new A.E(4294962158) -B.Ae=new A.E(4294954450) -B.A6=new A.E(4293892762) -B.A4=new A.E(4293227379) -B.A5=new A.E(4293874512) -B.A7=new A.E(4294198070) -B.A3=new A.E(4293212469) -B.A0=new A.E(4291176488) -B.A_=new A.E(4290190364) -B.Jl=new A.bI([50,B.Ag,100,B.Ae,200,B.A6,300,B.A4,400,B.A5,500,B.A7,600,B.A3,700,B.fs,800,B.A0,900,B.A_],t.pl) -B.cA=new A.lH(B.Jl,4294198070) -B.zS=new A.E(4282557941) -B.zK=new A.E(4279592384) -B.zJ=new A.E(4279060385) -B.Jm=new A.bI([50,B.mF,100,B.mC,200,B.dV,300,B.mA,400,B.zS,500,B.mx,600,B.dS,700,B.fq,800,B.zK,900,B.zJ],t.pl) -B.de=new A.lH(B.Jm,4280391411) -B.ap=new A.cp(0,"hovered") -B.aD=new A.cp(1,"focused") -B.aI=new A.cp(2,"pressed") -B.hw=new A.cp(3,"dragged") -B.bf=new A.cp(4,"selected") -B.tH=new A.cp(5,"scrolledUnder") -B.ag=new A.cp(6,"disabled") -B.tI=new A.cp(7,"error") -B.JH=new A.lI(0,"padded") -B.JI=new A.lI(1,"shrinkWrap") -B.JJ=new A.xX(0,"none") -B.JK=new A.xX(2,"truncateAfterCompositionEnds") -B.JM=new A.hc("popRoute",null) -B.JN=new A.lL("flutter/service_worker",B.bO,null) -B.tL=new A.lL("plugins.flutter.io/shared_preferences",B.bO,null) -B.JO=new A.lL("PonnamKarthik/fluttertoast",B.bO,null) -B.JR=new A.lM(0,"clipRect") -B.JS=new A.lM(1,"clipRRect") -B.JT=new A.lM(2,"clipPath") -B.JU=new A.lM(3,"transform") -B.JV=new A.lM(4,"opacity") -B.JW=new A.Iw(null) -B.JX=new A.yb(null,null,null,null,null,null,null,null) -B.bB=new A.IC(0,"traditional") -B.JY=new A.yc(null,null,null,null,null,null,null,null,null,null,null,null) -B.tS=new A.hf(B.j,B.j) -B.K0=new A.m(11,-4) -B.K3=new A.m(22,0) -B.K4=new A.m(6,6) -B.K5=new A.m(5,10.5) -B.K6=new A.m(17976931348623157e292,0) -B.K7=new A.m(0,-0.25) -B.K8=new A.m(-0.3333333333333333,0) -B.aJ=new A.hX(0,"iOs") -B.hB=new A.hX(1,"android") -B.tV=new A.hX(2,"linux") -B.tW=new A.hX(3,"windows") -B.bg=new A.hX(4,"macOs") -B.Kb=new A.hX(5,"unknown") -B.fj=new A.a0H() -B.bh=new A.lO("flutter/platform",B.fj,null) -B.Kc=new A.lO("flutter/mousecursor",B.bO,null) -B.tX=new A.lO("flutter/menu",B.bO,null) -B.Kd=new A.lO("flutter/textinput",B.fj,null) -B.hC=new A.lO("flutter/navigation",B.fj,null) -B.hD=new A.lO("flutter/restoration",B.bO,null) -B.Ke=new A.ob(0,null) -B.Kf=new A.ob(1,null) -B.Kg=new A.yn(0,"portrait") -B.hE=new A.yn(1,"landscape") -B.Kh=new A.yo(null) -B.Ki=new A.yp(null) -B.Kj=new A.yr(null) -B.aq=new A.yv(0,"fill") -B.T=new A.yv(1,"stroke") -B.Kk=new A.lR(1/0) -B.bi=new A.yy(0,"nonZero") -B.eB=new A.yy(1,"evenOdd") -B.aU=new A.lS(0,"created") -B.ak=new A.lS(1,"active") -B.cC=new A.lS(2,"pendingRetention") -B.Kl=new A.lS(3,"pendingUpdate") -B.tZ=new A.lS(4,"released") -B.kZ=new A.Jt(4,"bottom") -B.dp=new A.j9(B.o,null,null) -B.l_=new A.ja(0,"cancel") -B.l0=new A.ja(1,"add") -B.Km=new A.ja(2,"remove") -B.dq=new A.ja(3,"hover") -B.uP=new A.ja(4,"down") -B.dr=new A.ja(5,"move") -B.l1=new A.ja(6,"up") -B.bC=new A.i0(0,"touch") -B.bD=new A.i0(1,"mouse") -B.eC=new A.i0(2,"stylus") -B.l2=new A.i0(5,"unknown") -B.cG=new A.rj(0,"none") -B.Ko=new A.rj(1,"scroll") -B.Kp=new A.rj(2,"unknown") -B.Kq=new A.yJ(null,null,null,null,null,null) -B.Kr=new A.yN(null,null,null,null,null) -B.Ks=new A.lX(0,"finderPatternOuter") -B.Kt=new A.lX(1,"finderPatternInner") -B.Ku=new A.lX(2,"finderPatternDot") -B.eD=new A.lX(3,"codePixel") -B.Kv=new A.lX(4,"codePixelEmpty") -B.l3=new A.rn(0,"valid") -B.Ky=new A.rn(1,"contentTooLong") -B.Kz=new A.rn(2,"error") -B.KA=new A.yW(null,null,null,null,null,null) -B.KB=new A.bD(1,1) -B.KC=new A.bD(7,7) -B.KD=new A.bD(8,8) -B.KE=new A.bD(1.5,1.5) -B.KF=new A.w(-1/0,-1/0,1/0,1/0) -B.l4=new A.w(-1e9,-1e9,1e9,1e9) -B.Uf=new A.JV(1,"onEdge") -B.bE=new A.rt(0,"identical") -B.KG=new A.rt(2,"paint") -B.aV=new A.rt(3,"layout") -B.eF=new A.ou(0,"json") -B.l5=new A.ou(1,"stream") -B.KH=new A.ou(2,"plain") -B.l6=new A.ou(3,"bytes") -B.uR=new A.hj(0,"incrementable") -B.uS=new A.hj(1,"scrollable") -B.uT=new A.hj(2,"labelAndValue") -B.uU=new A.hj(3,"tappable") -B.uV=new A.hj(4,"textField") -B.uW=new A.hj(5,"checkable") -B.uX=new A.hj(6,"image") -B.uY=new A.hj(7,"liveRegion") -B.KI=new A.d6(B.b0,B.t) -B.KJ=new A.d6(B.ff,B.t) -B.eG=new A.d6(B.fe,B.t) -B.uZ=new A.ov(0,"pop") -B.KK=new A.ov(1,"doNotPop") -B.KL=new A.ov(2,"bubble") -B.l7=new A.i5(null,null) -B.KM=new A.zy(1333) -B.l8=new A.zy(2222) -B.KN=new A.KA(null,null) -B.cI=new A.m6(0,"idle") -B.KO=new A.m6(1,"transientCallbacks") -B.KP=new A.m6(2,"midFrameMicrotasks") -B.l9=new A.m6(3,"persistentCallbacks") -B.KQ=new A.m6(4,"postFrameCallbacks") -B.v_=new A.KD(0,"englishLike") -B.ds=new A.rC(0,"idle") -B.la=new A.rC(1,"forward") -B.lb=new A.rC(2,"reverse") -B.KX=new A.rD(0,"explicit") -B.cJ=new A.rD(1,"keepVisibleAtEnd") -B.cK=new A.rD(2,"keepVisibleAtStart") -B.KY=new A.zK(0,"manual") -B.KZ=new A.zK(1,"onDrag") -B.L_=new A.rH(0,"left") -B.L0=new A.rH(1,"right") -B.L1=new A.rH(3,"bottom") -B.L2=new A.zN(null,null,null,null,null,null,null,null,null,null,null,null,null) -B.bj=new A.fC(0,"tap") -B.L3=new A.fC(1,"doubleTap") -B.bk=new A.fC(2,"longPress") -B.lc=new A.fC(3,"forcePress") -B.L=new A.fC(4,"keyboard") -B.bF=new A.fC(5,"toolbar") -B.aK=new A.fC(6,"drag") -B.eI=new A.fC(7,"scribble") -B.dt=new A.cr(1) -B.L4=new A.cr(1024) -B.L5=new A.cr(1048576) -B.v2=new A.cr(128) -B.du=new A.cr(16) -B.L6=new A.cr(16384) -B.v3=new A.cr(2) -B.L7=new A.cr(2048) -B.L8=new A.cr(2097152) -B.L9=new A.cr(256) -B.La=new A.cr(262144) -B.dv=new A.cr(32) -B.Lb=new A.cr(32768) -B.dw=new A.cr(4) -B.Lc=new A.cr(4096) -B.Ld=new A.cr(512) -B.Le=new A.cr(524288) -B.v4=new A.cr(64) -B.Lf=new A.cr(65536) -B.dx=new A.cr(8) -B.Lg=new A.cr(8192) -B.Lh=new A.ci(1) -B.v5=new A.ci(1024) -B.v6=new A.ci(1048576) -B.ld=new A.ci(128) -B.v7=new A.ci(131072) -B.v8=new A.ci(16) -B.v9=new A.ci(16384) -B.Li=new A.ci(16777216) -B.Lj=new A.ci(2) -B.va=new A.ci(2048) -B.vb=new A.ci(2097152) -B.Lk=new A.ci(256) -B.Ll=new A.ci(262144) -B.le=new A.ci(32) -B.vc=new A.ci(32768) -B.vd=new A.ci(4) -B.ve=new A.ci(4096) -B.Lm=new A.ci(4194304) -B.vf=new A.ci(512) -B.vg=new A.ci(524288) -B.lf=new A.ci(64) -B.vh=new A.ci(65536) -B.vi=new A.ci(8) -B.eJ=new A.ci(8192) -B.vj=new A.ci(8388608) -B.vk=new A.oB("RenderViewport.twoPane") -B.Ln=new A.oB("RenderViewport.excludeFromScrolling") -B.CJ=A.b(s(["click","touchstart","touchend","pointerdown","pointermove","pointerup"]),t.s) -B.Je=new A.bd(6,{click:null,touchstart:null,touchend:null,pointerdown:null,pointermove:null,pointerup:null},B.CJ,t.uf) -B.Lo=new A.dU(B.Je,t.XI) -B.Jf=new A.bI([B.bg,null,B.tV,null,B.tW,null],A.a_("bI")) -B.lg=new A.dU(B.Jf,A.a_("dU")) -B.Jp=new A.bI([B.ap,null],t.sB) -B.Lp=new A.dU(B.Jp,t.si) -B.Jq=new A.bI([B.aD,null],t.sB) -B.Lq=new A.dU(B.Jq,t.si) -B.Et=A.b(s(["click","keyup","keydown","mouseup","mousedown","pointerdown","pointerup"]),t.s) -B.Jr=new A.bd(7,{click:null,keyup:null,keydown:null,mouseup:null,mousedown:null,pointerdown:null,pointerup:null},B.Et,t.uf) -B.Lr=new A.dU(B.Jr,t.XI) -B.Js=new A.bI([B.aI,null],t.sB) -B.lh=new A.dU(B.Js,t.si) -B.Jt=new A.bI([B.aX,null,B.av,null,B.bG,null],A.a_("bI")) -B.Ls=new A.dU(B.Jt,A.a_("dU")) -B.Kn=new A.i0(3,"invertedStylus") -B.Jz=new A.bI([B.bC,null,B.eC,null,B.Kn,null,B.l2,null],A.a_("bI")) -B.vl=new A.dU(B.Jz,A.a_("dU")) -B.F_=A.b(s(["serif","sans-serif","monospace","cursive","fantasy","system-ui","math","emoji","fangsong"]),t.s) -B.JB=new A.bd(9,{serif:null,"sans-serif":null,monospace:null,cursive:null,fantasy:null,"system-ui":null,math:null,emoji:null,fangsong:null},B.F_,t.uf) -B.Lt=new A.dU(B.JB,t.XI) -B.Lu=new A.KT(0,"onlyForDiscrete") -B.LG=new A.aR(B.cx,!1,!1,!1,!1) -B.LH=new A.aR(B.cy,!1,!1,!1,!1) -B.LR=new A.aR(B.bc,!1,!0,!1,!1) -B.LS=new A.aR(B.aS,!1,!0,!1,!1) -B.LT=new A.aR(B.aT,!1,!0,!1,!1) -B.LU=new A.aR(B.bd,!1,!0,!1,!1) -B.LV=new A.aR(B.cx,!1,!0,!1,!1) -B.LX=new A.aR(B.cy,!1,!0,!1,!1) -B.LI=new A.aR(B.bc,!1,!1,!1,!0) -B.LJ=new A.aR(B.aS,!1,!1,!1,!0) -B.LK=new A.aR(B.aT,!1,!1,!1,!0) -B.LM=new A.aR(B.bd,!1,!1,!1,!0) -B.LN=new A.aR(B.bc,!1,!0,!1,!0) -B.LO=new A.aR(B.aS,!1,!0,!1,!0) -B.LP=new A.aR(B.aT,!1,!0,!1,!0) -B.LQ=new A.aR(B.bd,!1,!0,!1,!0) -B.LC=new A.aR(B.aS,!0,!1,!1,!1) -B.LD=new A.aR(B.aT,!0,!1,!1,!1) -B.LY=new A.aR(B.cx,!0,!1,!1,!1) -B.LZ=new A.aR(B.cy,!0,!1,!1,!1) -B.LE=new A.aR(B.aS,!0,!0,!1,!1) -B.LF=new A.aR(B.aT,!0,!0,!1,!1) -B.Lz=new A.aR(B.bc,!1,!1,!0,!1) -B.LA=new A.aR(B.aS,!1,!1,!0,!1) -B.LB=new A.aR(B.aT,!1,!1,!0,!1) -B.LL=new A.aR(B.bd,!1,!1,!0,!1) -B.LW=new A.aR(B.bc,!1,!0,!0,!1) -B.M0=new A.aR(B.aS,!1,!0,!0,!1) -B.M1=new A.aR(B.aT,!1,!0,!0,!1) -B.M2=new A.aR(B.bd,!1,!0,!0,!1) -B.Ma=new A.aR(B.ht,!1,!1,!1,!0) -B.M6=new A.aR(B.hu,!1,!1,!1,!0) -B.M8=new A.aR(B.hc,!1,!1,!1,!0) -B.M4=new A.aR(B.hd,!1,!1,!1,!0) -B.M9=new A.aR(B.ht,!0,!1,!1,!1) -B.M5=new A.aR(B.hu,!0,!1,!1,!1) -B.M7=new A.aR(B.hc,!0,!1,!1,!1) -B.M3=new A.aR(B.hd,!0,!1,!1,!1) -B.Mc=new A.L(1e5,1e5) -B.Me=new A.L(22,22) -B.Mf=new A.L(59,40) -B.Mg=new A.L(59,48) -B.Mh=new A.L(64,36) -B.Mi=new A.L(1/0,1/0) -B.cL=new A.ks(0,0,null,null) -B.Mj=new A.ks(8,null,null,null) -B.Ui=new A.Mo(0,"material") -B.xP=new A.ld(2,null,null,null,null,null,null,null) -B.Mk=new A.ks(15,15,B.xP,null) -B.c8=new A.ks(null,null,null,null) -B.Ml=new A.A0(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.vo=new A.L9(0,0,0,0,0,0,!1,!1,null,0) -B.Mm=new A.A3(0,"disabled") -B.Mn=new A.A3(1,"enabled") -B.Mo=new A.A4(0,"disabled") -B.Mp=new A.A4(1,"enabled") -B.Mq=new A.i8(1,"dismiss") -B.Mr=new A.i8(2,"swipe") -B.Ms=new A.i8(3,"hide") -B.Ug=new A.i8(4,"remove") -B.lm=new A.i8(5,"timeout") -B.Mt=new A.A5(null,null,null,null,null,null,null) -B.Mu=new A.te(0,"criticallyDamped") -B.Mv=new A.te(1,"underDamped") -B.Mw=new A.te(2,"overDamped") -B.bl=new A.Aa(0,"loose") -B.Mx=new A.Aa(2,"passthrough") -B.My=new A.id("...",-1,"","","",-1,-1,"","...") -B.Mz=new A.id("",-1,"","","",-1,-1,"","asynchronous suspension") -B.MA=new A.eO(B.t) -B.b5=new A.e9("") -B.c9=new A.Af(0,"butt") -B.MC=new A.Af(2,"square") -B.dy=new A.Lw(0,"miter") -B.MD=new A.bT(0) -B.MO=new A.bT(0) -B.MM=new A.bT(0) -B.MK=new A.bT(0) -B.ML=new A.bT(0) -B.MJ=new A.bT(0) -B.MN=new A.bT(0) -B.MI=new A.bT(0) -B.MF=new A.bT(0) -B.MH=new A.bT(0) -B.ME=new A.bT(0) -B.MG=new A.bT(0) -B.MP=new A.bT(1) -B.MQ=new A.bT(10) -B.MR=new A.bT(11) -B.MS=new A.bT(12) -B.MT=new A.bT(13) -B.MU=new A.bT(14) -B.MV=new A.bT(15) -B.MW=new A.bT(16) -B.MX=new A.bT(2) -B.MY=new A.bT(3) -B.MZ=new A.bT(4) -B.N_=new A.bT(5) -B.N0=new A.bT(6) -B.N1=new A.bT(7) -B.N2=new A.bT(8) -B.N3=new A.bT(9) -B.N4=new A.Ai(null,null,null,null,null,null) -B.N5=new A.tm("call") -B.eK=new A.mk("basic") -B.lo=new A.mk("click") -B.N7=new A.Aj(0,"click") -B.N8=new A.Aj(1,"alert") -B.N9=new A.ml(B.n,null,B.ac,null,null,B.a3,B.ac,null) -B.Na=new A.ml(B.n,null,B.ac,null,null,B.ac,B.a3,null) -B.Nb=new A.Al(null,null,null,null,null,null,null,null,null,null) -B.vr=new A.a9g("tap") -B.vs=new A.LE(0) -B.vt=new A.LE(-1) -B.y=new A.tt(0,"alphabetic") -B.Nc=new A.An(null) -B.ls=new A.oP(3,"none") -B.vw=new A.Ao(B.ls) -B.vx=new A.oP(0,"words") -B.vy=new A.oP(1,"sentences") -B.vz=new A.oP(2,"characters") -B.Nd=new A.LF(3,"none") -B.i=new A.Ap(0) -B.Nf=new A.et(0,"none") -B.Ng=new A.et(1,"unspecified") -B.Nh=new A.et(10,"route") -B.Ni=new A.et(11,"emergencyCall") -B.vB=new A.et(12,"newline") -B.lt=new A.et(2,"done") -B.Nj=new A.et(3,"go") -B.Nk=new A.et(4,"search") -B.Nl=new A.et(5,"send") -B.Nm=new A.et(6,"next") -B.Nn=new A.et(7,"previous") -B.No=new A.et(8,"continueAction") -B.Np=new A.et(9,"join") -B.Nq=new A.As(0,null,null) -B.Nr=new A.As(1,null,null) -B.vC=new A.At(0,"proportional") -B.vD=new A.At(1,"even") -B.Ns=new A.oR(1,"fade") -B.aL=new A.oR(2,"ellipsis") -B.vE=new A.oR(3,"visible") -B.cM=new A.b9(0,B.l) -B.vF=new A.tx(0,"left") -B.vG=new A.tx(1,"right") -B.dz=new A.tx(2,"collapsed") -B.Nt=new A.Ax(null,null,null) -B.Nv=new A.ea(0,0,B.l,!1,0,0) -B.Nu=new A.ea(0,1,B.l,!1,0,1) -B.vA=new A.Ap(1) -B.NM=new A.t(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.vA,null,null,null,null,null,null,null) -B.NY=new A.t(!0,B.tG,null,null,null,null,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.aL) -B.Pz=new A.t(!0,null,null,null,null,null,18,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.aL) -B.zw=new A.E(3506372608) -B.Am=new A.E(4294967040) -B.Ne=new A.LG(1,"double") -B.PS=new A.t(!0,B.zw,null,"monospace",null,null,48,B.n9,null,null,null,null,null,null,null,null,null,B.vA,B.Am,B.Ne,null,"fallback style; consider putting your text in a Material",null,null,null) -B.Q8=new A.t(!0,null,null,null,null,null,null,B.bT,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.NR=new A.t(!0,B.A,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond displayLarge",null,null,null) -B.NT=new A.t(!0,B.A,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond displayMedium",null,null,null) -B.Pi=new A.t(!0,B.A,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond displaySmall",null,null,null) -B.QC=new A.t(!0,B.A,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond headlineLarge",null,null,null) -B.Qy=new A.t(!0,B.A,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond headlineMedium",null,null,null) -B.NQ=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond headlineSmall",null,null,null) -B.On=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond titleLarge",null,null,null) -B.Or=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond titleMedium",null,null,null) -B.OO=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond titleSmall",null,null,null) -B.PX=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond bodyLarge",null,null,null) -B.NN=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond bodyMedium",null,null,null) -B.OC=new A.t(!0,B.A,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond bodySmall",null,null,null) -B.Pr=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond labelLarge",null,null,null) -B.PE=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond labelMedium",null,null,null) -B.OY=new A.t(!0,B.m,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedmond labelSmall",null,null,null) -B.QH=new A.eb(B.NR,B.NT,B.Pi,B.QC,B.Qy,B.NQ,B.On,B.Or,B.OO,B.PX,B.NN,B.OC,B.Pr,B.PE,B.OY) -B.Qv=new A.t(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity displayLarge",null,null,null) -B.Oo=new A.t(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity displayMedium",null,null,null) -B.Qw=new A.t(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity displaySmall",null,null,null) -B.O4=new A.t(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity headlineLarge",null,null,null) -B.Q1=new A.t(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity headlineMedium",null,null,null) -B.ON=new A.t(!0,B.B,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity headlineSmall",null,null,null) -B.Pd=new A.t(!0,B.B,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity titleLarge",null,null,null) -B.Nw=new A.t(!0,B.B,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity titleMedium",null,null,null) -B.OR=new A.t(!0,B.n,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity titleSmall",null,null,null) -B.NP=new A.t(!0,B.B,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity bodyLarge",null,null,null) -B.P4=new A.t(!0,B.B,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity bodyMedium",null,null,null) -B.NK=new A.t(!0,B.x,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity bodySmall",null,null,null) -B.QB=new A.t(!0,B.B,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity labelLarge",null,null,null) -B.OL=new A.t(!0,B.n,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity labelMedium",null,null,null) -B.Pw=new A.t(!0,B.n,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedwoodCity labelSmall",null,null,null) -B.QI=new A.eb(B.Qv,B.Oo,B.Qw,B.O4,B.Q1,B.ON,B.Pd,B.Nw,B.OR,B.NP,B.P4,B.NK,B.QB,B.OL,B.Pw) -B.Qm=new A.t(!0,B.A,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView displayLarge",null,null,null) -B.Qh=new A.t(!0,B.A,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView displayMedium",null,null,null) -B.OB=new A.t(!0,B.A,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView displaySmall",null,null,null) -B.PP=new A.t(!0,B.A,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView headlineLarge",null,null,null) -B.OU=new A.t(!0,B.A,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView headlineMedium",null,null,null) -B.Ps=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView headlineSmall",null,null,null) -B.OJ=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView titleLarge",null,null,null) -B.Qd=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView titleMedium",null,null,null) -B.OQ=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView titleSmall",null,null,null) -B.Pj=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView bodyLarge",null,null,null) -B.PM=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView bodyMedium",null,null,null) -B.PJ=new A.t(!0,B.A,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView bodySmall",null,null,null) -B.Qp=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView labelLarge",null,null,null) -B.P1=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView labelMedium",null,null,null) -B.Op=new A.t(!0,B.m,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteMountainView labelSmall",null,null,null) -B.QJ=new A.eb(B.Qm,B.Qh,B.OB,B.PP,B.OU,B.Ps,B.OJ,B.Qd,B.OQ,B.Pj,B.PM,B.PJ,B.Qp,B.P1,B.Op) -B.C=A.b(s(["Ubuntu","Cantarell","DejaVu Sans","Liberation Sans","Arial"]),t.s) -B.Pq=new A.t(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki displayLarge",null,null,null) -B.PW=new A.t(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki displayMedium",null,null,null) -B.O6=new A.t(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki displaySmall",null,null,null) -B.P8=new A.t(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki headlineLarge",null,null,null) -B.OX=new A.t(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki headlineMedium",null,null,null) -B.Px=new A.t(!0,B.B,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki headlineSmall",null,null,null) -B.OD=new A.t(!0,B.B,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki titleLarge",null,null,null) -B.Q2=new A.t(!0,B.B,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki titleMedium",null,null,null) -B.OA=new A.t(!0,B.n,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki titleSmall",null,null,null) -B.Pf=new A.t(!0,B.B,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki bodyLarge",null,null,null) -B.Qt=new A.t(!0,B.B,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki bodyMedium",null,null,null) -B.Pv=new A.t(!0,B.x,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki bodySmall",null,null,null) -B.NO=new A.t(!0,B.B,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki labelLarge",null,null,null) -B.O3=new A.t(!0,B.n,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki labelMedium",null,null,null) -B.O8=new A.t(!0,B.n,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackHelsinki labelSmall",null,null,null) -B.QK=new A.eb(B.Pq,B.PW,B.O6,B.P8,B.OX,B.Px,B.OD,B.Q2,B.OA,B.Pf,B.Qt,B.Pv,B.NO,B.O3,B.O8) -B.NU=new A.t(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino displayLarge",null,null,null) -B.O5=new A.t(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino displayMedium",null,null,null) -B.PF=new A.t(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino displaySmall",null,null,null) -B.PA=new A.t(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino headlineLarge",null,null,null) -B.QG=new A.t(!0,B.x,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino headlineMedium",null,null,null) -B.QE=new A.t(!0,B.B,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino headlineSmall",null,null,null) -B.NF=new A.t(!0,B.B,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino titleLarge",null,null,null) -B.Od=new A.t(!0,B.B,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino titleMedium",null,null,null) -B.OP=new A.t(!0,B.n,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino titleSmall",null,null,null) -B.PZ=new A.t(!0,B.B,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino bodyLarge",null,null,null) -B.Oh=new A.t(!0,B.B,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino bodyMedium",null,null,null) -B.Oi=new A.t(!0,B.x,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino bodySmall",null,null,null) -B.NJ=new A.t(!0,B.B,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino labelLarge",null,null,null) -B.Pl=new A.t(!0,B.n,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino labelMedium",null,null,null) -B.NS=new A.t(!0,B.n,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackCupertino labelSmall",null,null,null) -B.QL=new A.eb(B.NU,B.O5,B.PF,B.PA,B.QG,B.QE,B.NF,B.Od,B.OP,B.PZ,B.Oh,B.Oi,B.NJ,B.Pl,B.NS) -B.OK=new A.t(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView displayLarge",null,null,null) -B.Of=new A.t(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView displayMedium",null,null,null) -B.Ox=new A.t(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView displaySmall",null,null,null) -B.Qq=new A.t(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView headlineLarge",null,null,null) -B.Py=new A.t(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView headlineMedium",null,null,null) -B.OS=new A.t(!0,B.B,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView headlineSmall",null,null,null) -B.O0=new A.t(!0,B.B,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView titleLarge",null,null,null) -B.Oc=new A.t(!0,B.B,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView titleMedium",null,null,null) -B.ND=new A.t(!0,B.n,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView titleSmall",null,null,null) -B.NG=new A.t(!0,B.B,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView bodyLarge",null,null,null) -B.Q0=new A.t(!0,B.B,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView bodyMedium",null,null,null) -B.Pt=new A.t(!0,B.x,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView bodySmall",null,null,null) -B.Qe=new A.t(!0,B.B,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView labelLarge",null,null,null) -B.NV=new A.t(!0,B.n,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView labelMedium",null,null,null) -B.O2=new A.t(!0,B.n,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackMountainView labelSmall",null,null,null) -B.QM=new A.eb(B.OK,B.Of,B.Ox,B.Qq,B.Py,B.OS,B.O0,B.Oc,B.ND,B.NG,B.Q0,B.Pt,B.Qe,B.NV,B.O2) -B.QA=new A.t(!0,B.A,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki displayLarge",null,null,null) -B.NB=new A.t(!0,B.A,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki displayMedium",null,null,null) -B.Pu=new A.t(!0,B.A,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki displaySmall",null,null,null) -B.Q5=new A.t(!0,B.A,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki headlineLarge",null,null,null) -B.P_=new A.t(!0,B.A,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki headlineMedium",null,null,null) -B.P5=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki headlineSmall",null,null,null) -B.PG=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki titleLarge",null,null,null) -B.OM=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki titleMedium",null,null,null) -B.O_=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki titleSmall",null,null,null) -B.PT=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki bodyLarge",null,null,null) -B.NL=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki bodyMedium",null,null,null) -B.Og=new A.t(!0,B.A,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki bodySmall",null,null,null) -B.OV=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki labelLarge",null,null,null) -B.OT=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki labelMedium",null,null,null) -B.OW=new A.t(!0,B.m,null,"Roboto",B.C,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteHelsinki labelSmall",null,null,null) -B.QN=new A.eb(B.QA,B.NB,B.Pu,B.Q5,B.P_,B.P5,B.PG,B.OM,B.O_,B.PT,B.NL,B.Og,B.OV,B.OT,B.OW) -B.Oe=new A.t(!1,null,null,null,null,null,112,B.fQ,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike displayLarge 2014",null,null,null) -B.Qb=new A.t(!1,null,null,null,null,null,56,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike displayMedium 2014",null,null,null) -B.Nx=new A.t(!1,null,null,null,null,null,45,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike displaySmall 2014",null,null,null) -B.O9=new A.t(!1,null,null,null,null,null,40,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike headlineLarge 2014",null,null,null) -B.Oy=new A.t(!1,null,null,null,null,null,34,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike headlineMedium 2014",null,null,null) -B.Qk=new A.t(!1,null,null,null,null,null,24,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike headlineSmall 2014",null,null,null) -B.Pp=new A.t(!1,null,null,null,null,null,20,B.b2,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike titleLarge 2014",null,null,null) -B.NE=new A.t(!1,null,null,null,null,null,16,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike titleMedium 2014",null,null,null) -B.OF=new A.t(!1,null,null,null,null,null,14,B.b2,null,0.1,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike titleSmall 2014",null,null,null) -B.P0=new A.t(!1,null,null,null,null,null,14,B.b2,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike bodyLarge 2014",null,null,null) -B.Qx=new A.t(!1,null,null,null,null,null,14,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike bodyMedium 2014",null,null,null) -B.Q_=new A.t(!1,null,null,null,null,null,12,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike bodySmall 2014",null,null,null) -B.PB=new A.t(!1,null,null,null,null,null,14,B.b2,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike labelLarge 2014",null,null,null) -B.Ql=new A.t(!1,null,null,null,null,null,12,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike labelMedium 2014",null,null,null) -B.PC=new A.t(!1,null,null,null,null,null,10,B.v,null,1.5,null,B.y,null,null,null,null,null,null,null,null,null,"englishLike labelSmall 2014",null,null,null) -B.QO=new A.eb(B.Oe,B.Qb,B.Nx,B.O9,B.Oy,B.Qk,B.Pp,B.NE,B.OF,B.P0,B.Qx,B.Q_,B.PB,B.Ql,B.PC) -B.aw=new A.tt(1,"ideographic") -B.PU=new A.t(!1,null,null,null,null,null,112,B.fQ,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense displayLarge 2014",null,null,null) -B.Ov=new A.t(!1,null,null,null,null,null,56,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense displayMedium 2014",null,null,null) -B.QF=new A.t(!1,null,null,null,null,null,45,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense displaySmall 2014",null,null,null) -B.PY=new A.t(!1,null,null,null,null,null,40,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense headlineLarge 2014",null,null,null) -B.O1=new A.t(!1,null,null,null,null,null,34,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense headlineMedium 2014",null,null,null) -B.NH=new A.t(!1,null,null,null,null,null,24,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense headlineSmall 2014",null,null,null) -B.Q7=new A.t(!1,null,null,null,null,null,21,B.b2,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense titleLarge 2014",null,null,null) -B.OH=new A.t(!1,null,null,null,null,null,17,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense titleMedium 2014",null,null,null) -B.Om=new A.t(!1,null,null,null,null,null,15,B.b2,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense titleSmall 2014",null,null,null) -B.PR=new A.t(!1,null,null,null,null,null,15,B.b2,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense bodyLarge 2014",null,null,null) -B.Q6=new A.t(!1,null,null,null,null,null,15,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense bodyMedium 2014",null,null,null) -B.Oz=new A.t(!1,null,null,null,null,null,13,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense bodySmall 2014",null,null,null) -B.P3=new A.t(!1,null,null,null,null,null,15,B.b2,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense labelLarge 2014",null,null,null) -B.NI=new A.t(!1,null,null,null,null,null,12,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense labelMedium 2014",null,null,null) -B.NZ=new A.t(!1,null,null,null,null,null,11,B.v,null,null,null,B.aw,null,null,null,null,null,null,null,null,null,"dense labelSmall 2014",null,null,null) -B.QP=new A.eb(B.PU,B.Ov,B.QF,B.PY,B.O1,B.NH,B.Q7,B.OH,B.Om,B.PR,B.Q6,B.Oz,B.P3,B.NI,B.NZ) -B.PV=new A.t(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond displayLarge",null,null,null) -B.Pc=new A.t(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond displayMedium",null,null,null) -B.NA=new A.t(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond displaySmall",null,null,null) -B.P7=new A.t(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond headlineLarge",null,null,null) -B.Qg=new A.t(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond headlineMedium",null,null,null) -B.NX=new A.t(!0,B.B,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond headlineSmall",null,null,null) -B.Pg=new A.t(!0,B.B,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond titleLarge",null,null,null) -B.Qf=new A.t(!0,B.B,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond titleMedium",null,null,null) -B.Pk=new A.t(!0,B.n,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond titleSmall",null,null,null) -B.Qj=new A.t(!0,B.B,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond bodyLarge",null,null,null) -B.QD=new A.t(!0,B.B,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond bodyMedium",null,null,null) -B.OE=new A.t(!0,B.x,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond bodySmall",null,null,null) -B.Ph=new A.t(!0,B.B,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond labelLarge",null,null,null) -B.OZ=new A.t(!0,B.n,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond labelMedium",null,null,null) -B.Ol=new A.t(!0,B.n,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"blackRedmond labelSmall",null,null,null) -B.QQ=new A.eb(B.PV,B.Pc,B.NA,B.P7,B.Qg,B.NX,B.Pg,B.Qf,B.Pk,B.Qj,B.QD,B.OE,B.Ph,B.OZ,B.Ol) -B.Ny=new A.t(!0,B.A,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity displayLarge",null,null,null) -B.Qr=new A.t(!0,B.A,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity displayMedium",null,null,null) -B.Nz=new A.t(!0,B.A,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity displaySmall",null,null,null) -B.Ok=new A.t(!0,B.A,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity headlineLarge",null,null,null) -B.Qi=new A.t(!0,B.A,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity headlineMedium",null,null,null) -B.Q9=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity headlineSmall",null,null,null) -B.Oq=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity titleLarge",null,null,null) -B.O7=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity titleMedium",null,null,null) -B.Qs=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity titleSmall",null,null,null) -B.Pn=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity bodyLarge",null,null,null) -B.PL=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity bodyMedium",null,null,null) -B.Os=new A.t(!0,B.A,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity bodySmall",null,null,null) -B.NC=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity labelLarge",null,null,null) -B.Oa=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity labelMedium",null,null,null) -B.P2=new A.t(!0,B.m,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteRedwoodCity labelSmall",null,null,null) -B.QR=new A.eb(B.Ny,B.Qr,B.Nz,B.Ok,B.Qi,B.Q9,B.Oq,B.O7,B.Qs,B.Pn,B.PL,B.Os,B.NC,B.Oa,B.P2) -B.OG=new A.t(!1,null,null,null,null,null,112,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall displayLarge 2014",null,null,null) -B.Qo=new A.t(!1,null,null,null,null,null,56,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall displayMedium 2014",null,null,null) -B.PI=new A.t(!1,null,null,null,null,null,45,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall displaySmall 2014",null,null,null) -B.PH=new A.t(!1,null,null,null,null,null,40,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall headlineLarge 2014",null,null,null) -B.Pa=new A.t(!1,null,null,null,null,null,34,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall headlineMedium 2014",null,null,null) -B.Qn=new A.t(!1,null,null,null,null,null,24,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall headlineSmall 2014",null,null,null) -B.PO=new A.t(!1,null,null,null,null,null,21,B.bT,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall titleLarge 2014",null,null,null) -B.Qa=new A.t(!1,null,null,null,null,null,17,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall titleMedium 2014",null,null,null) -B.Po=new A.t(!1,null,null,null,null,null,15,B.b2,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall titleSmall 2014",null,null,null) -B.Ob=new A.t(!1,null,null,null,null,null,15,B.bT,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall bodyLarge 2014",null,null,null) -B.OI=new A.t(!1,null,null,null,null,null,15,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall bodyMedium 2014",null,null,null) -B.PN=new A.t(!1,null,null,null,null,null,13,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall bodySmall 2014",null,null,null) -B.P9=new A.t(!1,null,null,null,null,null,15,B.bT,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall labelLarge 2014",null,null,null) -B.Ou=new A.t(!1,null,null,null,null,null,12,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall labelMedium 2014",null,null,null) -B.Q4=new A.t(!1,null,null,null,null,null,11,B.v,null,null,null,B.y,null,null,null,null,null,null,null,null,null,"tall labelSmall 2014",null,null,null) -B.QS=new A.eb(B.OG,B.Qo,B.PI,B.PH,B.Pa,B.Qn,B.PO,B.Qa,B.Po,B.Ob,B.OI,B.PN,B.P9,B.Ou,B.Q4) -B.NW=new A.t(!0,B.A,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino displayLarge",null,null,null) -B.PD=new A.t(!0,B.A,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino displayMedium",null,null,null) -B.PQ=new A.t(!0,B.A,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino displaySmall",null,null,null) -B.Qu=new A.t(!0,B.A,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino headlineLarge",null,null,null) -B.Pb=new A.t(!0,B.A,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino headlineMedium",null,null,null) -B.Oj=new A.t(!0,B.m,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino headlineSmall",null,null,null) -B.PK=new A.t(!0,B.m,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino titleLarge",null,null,null) -B.Pe=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino titleMedium",null,null,null) -B.Pm=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino titleSmall",null,null,null) -B.Qc=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino bodyLarge",null,null,null) -B.Ot=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino bodyMedium",null,null,null) -B.Qz=new A.t(!0,B.A,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino bodySmall",null,null,null) -B.P6=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino labelLarge",null,null,null) -B.Q3=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino labelMedium",null,null,null) -B.Ow=new A.t(!0,B.m,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.i,null,null,null,"whiteCupertino labelSmall",null,null,null) -B.QT=new A.eb(B.NW,B.PD,B.PQ,B.Qu,B.Pb,B.Oj,B.PK,B.Pe,B.Pm,B.Qc,B.Ot,B.Qz,B.P6,B.Q3,B.Ow) -B.vI=new A.Ay(1,"longestLine") -B.QV=new A.es("",null,null,null,null,null,null,null,null,null) -B.QW=new A.es("\u65e5\u5fd7",null,null,null,null,null,null,null,null,null) -B.QY=new A.es("\u767b\u5f55\u9875",null,null,null,null,null,null,null,null,null) -B.QZ=new A.es("\u4e3b\u9875",null,null,null,null,null,null,null,null,null) -B.R1=new A.es("\u79ef\u5206\u8be6\u60c5",null,null,null,null,null,null,null,null,null) -B.Uh=new A.LU(0,"system") -B.R4=new A.Az(0) -B.R5=new A.Az(0.5) -B.R6=new A.AA(null) -B.eM=new A.AB(0,"clamp") -B.vJ=new A.AB(3,"decal") -B.R7=new A.AC(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.R8=new A.AE(0,"LENGTH_SHORT") -B.R9=new A.AE(1,"LENGTH_LONG") -B.Ra=new A.AF(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.bK=new A.AI(0.001,0.001) -B.Rb=new A.AI(0.01,1/0) -B.Rc=new A.LY(!1,!1,!0,!0) -B.Rd=new A.LY(!0,!0,!0,!0) -B.Re=new A.AK(null,null,null,null,null,null,null,null) -B.lw=new A.AL(1,"longPress") -B.Rf=new A.AL(2,"tap") -B.vK=new A.tE(0,"identity") -B.vL=new A.tE(1,"transform2d") -B.eN=new A.tE(2,"complex") -B.Rg=new A.oX(0,"up") -B.Rh=new A.oX(3,"left") -B.Rj=A.ao("ap6") -B.Ri=A.ao("ap8") -B.Rk=A.ao("ap7") -B.Rl=A.ao("ap5") -B.Rm=A.ao("a6o") -B.vM=A.ao("pO") -B.Rn=A.ao("pY") -B.Ro=A.ao("pZ") -B.Rp=A.ao("c1") -B.Rq=A.ao("E") -B.Rr=A.ao("Gr") -B.Rs=A.ao("aoN") -B.Rt=A.ao("aoO") -B.vN=A.ao("akf") -B.vO=A.ao("fY") -B.Ru=A.ao("aAK") -B.Rv=A.ao("hE") -B.Rw=A.ao("YZ") -B.Rx=A.ao("Z_") -B.Ry=A.ao("hI") -B.Rz=A.ao("jY") -B.RA=A.ao("lT") -B.RB=A.ao("aBB") -B.RC=A.ao("a0x") -B.RD=A.ao("aBC") -B.RE=A.ao("akt") -B.RF=A.ao("bC>") -B.lx=A.ao("f7") -B.bp=A.ao("xS") -B.RG=A.ao("o9") -B.RH=A.ao("aCh") -B.RI=A.ao("aG") -B.RJ=A.ao("D") -B.eO=A.ao("hZ") -B.RK=A.ao("a3i") -B.RL=A.ao("on") -B.RM=A.ao("op") -B.RN=A.ao("i1") -B.RO=A.ao("a4w") -B.RP=A.ao("hi") -B.RQ=A.ao("akY") -B.RR=A.ao("hk") -B.RS=A.ao("KJ") -B.RT=A.ao("oE") -B.RU=A.ao("m9") -B.RV=A.ao("kr") -B.dB=A.ao("k") -B.ly=A.ao("fe") -B.RW=A.ao("aDZ") -B.RX=A.ao("aE_") -B.RY=A.ao("aE0") -B.RZ=A.ao("cQ") -B.S_=A.ao("aah") -B.S0=A.ao("eR") -B.S1=A.ao("ju") -B.lz=A.ao("hL") -B.S2=A.ao("AX") -B.S3=A.ao("io") -B.S4=A.ao("tL") -B.S5=A.ao("mA<@>") -B.S6=A.ao("jE") -B.S7=A.ao("jF") -B.S8=A.ao("y") -B.S9=A.ao("J") -B.vP=A.ao("@") -B.Sa=A.ao("ap9") -B.Sb=A.ao("q") -B.Sc=A.ao("YJ") -B.lA=A.ao("il") -B.Sd=A.ao("wm") -B.Se=A.ao("H5") -B.Sf=A.ao("br") -B.Sg=A.ao("YK") -B.Sh=A.ao("aAJ") -B.Si=A.ao("aoP") -B.wp=new A.ds(B.n,1,B.br) -B.Sj=new A.js(B.m6,B.wp) -B.Sk=new A.AQ(0,"scope") -B.vQ=new A.AQ(1,"previouslyFocusedChild") -B.Sl=new A.c8(11264,55297,B.q,t.M) -B.Sm=new A.c8(1425,1775,B.aa,t.M) -B.Sn=new A.c8(1786,2303,B.aa,t.M) -B.So=new A.c8(192,214,B.q,t.M) -B.Sp=new A.c8(216,246,B.q,t.M) -B.Sq=new A.c8(2304,8191,B.q,t.M) -B.Sr=new A.c8(248,696,B.q,t.M) -B.Ss=new A.c8(55298,55299,B.aa,t.M) -B.St=new A.c8(55300,55353,B.q,t.M) -B.Su=new A.c8(55354,55355,B.aa,t.M) -B.Sv=new A.c8(55356,56319,B.q,t.M) -B.Sw=new A.c8(63744,64284,B.q,t.M) -B.Sx=new A.c8(64285,65023,B.aa,t.M) -B.Sy=new A.c8(65024,65135,B.q,t.M) -B.Sz=new A.c8(65136,65276,B.aa,t.M) -B.SA=new A.c8(65277,65535,B.q,t.M) -B.SB=new A.c8(65,90,B.q,t.M) -B.SC=new A.c8(768,1424,B.q,t.M) -B.SD=new A.c8(8206,8206,B.q,t.M) -B.SE=new A.c8(8207,8207,B.aa,t.M) -B.SF=new A.c8(97,122,B.q,t.M) -B.SG=new A.AS(null) -B.cN=new A.AT(!1) -B.SH=new A.AT(!0) -B.SI=new A.ed("dismissible",A.a_("ed")) -B.SJ=new A.tI(B.j,0,B.r,B.j) -B.SK=new A.AU(0,"up") -B.lC=new A.AU(1,"down") -B.vR=new A.kH(0,0) -B.SL=new A.kH(-2,-2) -B.X=new A.p5(0,"forward") -B.eT=new A.p5(1,"reverse") -B.SR=new A.tP(0,"checkbox") -B.SS=new A.tP(1,"radio") -B.ST=new A.tP(2,"toggle") -B.SU=new A.tT(0,"inside") -B.SV=new A.tT(1,"higher") -B.SW=new A.tT(2,"lower") -B.Aq=new A.E(67108864) -B.E_=A.b(s([B.Aq,B.a5]),t.t_) -B.SX=new A.ip(B.E_) -B.SY=new A.ip(null) -B.dH=new A.u3(0,"ready") -B.T3=new A.u3(1,"possible") -B.eU=new A.u3(2,"accepted") -B.a7=new A.pa(0,"initial") -B.cb=new A.pa(1,"active") -B.T4=new A.pa(2,"inactive") -B.vX=new A.pa(3,"defunct") -B.dI=new A.Bx(B.lo,"clickable") -B.N6=new A.mk("text") -B.T5=new A.Bx(B.N6,"textable") -B.T6=new A.O4(1) -B.T7=new A.O4(-1) -B.lK=new A.u5(0,"none") -B.T8=new A.u5(1,"forward") -B.T9=new A.u5(2,"reverse") -B.Ta=new A.u6(1,"small") -B.Tb=new A.u6(2,"large") -B.vY=new A.u6(3,"extended") -B.lL=new A.mw(0,"ready") -B.eV=new A.mw(1,"possible") -B.vZ=new A.mw(2,"accepted") -B.eW=new A.mw(3,"started") -B.Tc=new A.mw(4,"peaked") -B.eX=new A.pb(0,"idle") -B.Td=new A.pb(1,"absorb") -B.eY=new A.pb(2,"pull") -B.w_=new A.pb(3,"recede") -B.eZ=new A.pf(0,"pressed") -B.lM=new A.pf(1,"hover") -B.Te=new A.pf(2,"focus") -B.U=new A.ph(0,"minWidth") -B.a8=new A.ph(1,"maxWidth") -B.ah=new A.ph(2,"minHeight") -B.b_=new A.ph(3,"maxHeight") -B.Tf=new A.uk(null,2) -B.lN=new A.mz(1/0,1/0,1/0,1/0,1/0,1/0) -B.Tg=new A.cs(B.dg,B.ct) -B.e4=new A.lD(1,"left") -B.Th=new A.cs(B.dg,B.e4) -B.e5=new A.lD(2,"right") -B.Ti=new A.cs(B.dg,B.e5) -B.Tj=new A.cs(B.dg,B.bb) -B.Tk=new A.cs(B.dh,B.ct) -B.Tl=new A.cs(B.dh,B.e4) -B.Tm=new A.cs(B.dh,B.e5) -B.Tn=new A.cs(B.dh,B.bb) -B.To=new A.cs(B.di,B.ct) -B.Tp=new A.cs(B.di,B.e4) -B.Tq=new A.cs(B.di,B.e5) -B.Tr=new A.cs(B.di,B.bb) -B.Ts=new A.cs(B.dj,B.ct) -B.Tt=new A.cs(B.dj,B.e4) -B.Tu=new A.cs(B.dj,B.e5) -B.Tv=new A.cs(B.dj,B.bb) -B.Tw=new A.cs(B.tM,B.bb) -B.Tx=new A.cs(B.tN,B.bb) -B.Ty=new A.cs(B.tO,B.bb) -B.Tz=new A.cs(B.tP,B.bb) -B.TB=new A.Pk(null) -B.TA=new A.Pl(null) -B.TD=new A.pk(0,"addText") -B.TF=new A.pk(2,"pushStyle") -B.w0=new A.pk(3,"addPlaceholder") -B.TE=new A.pk(1,"pop") -B.TG=new A.mC(B.TE,null,null,null) -B.cc=new A.kQ(0,"drag") -B.cd=new A.kQ(1,"armed") -B.lO=new A.kQ(2,"snap") -B.f_=new A.kQ(3,"refresh") -B.lP=new A.kQ(4,"done") -B.f0=new A.kQ(5,"canceled") -B.lQ=new A.ez(1,"add") -B.w1=new A.ez(10,"remove") -B.TH=new A.ez(11,"popping") -B.TI=new A.ez(12,"removing") -B.lR=new A.ez(13,"dispose") -B.TJ=new A.ez(14,"disposed") -B.TK=new A.ez(2,"adding") -B.lS=new A.ez(3,"push") -B.w2=new A.ez(4,"pushReplace") -B.w3=new A.ez(5,"pushing") -B.TL=new A.ez(6,"replace") -B.dJ=new A.ez(7,"idle") -B.TM=new A.ez(8,"pop") -B.f1=new A.eU(0,"body") -B.f2=new A.eU(1,"appBar") -B.lU=new A.eU(10,"endDrawer") -B.f3=new A.eU(11,"statusBar") -B.f4=new A.eU(2,"bodyScrim") -B.f5=new A.eU(3,"bottomSheet") -B.ce=new A.eU(4,"snackBar") -B.f6=new A.eU(5,"materialBanner") -B.lV=new A.eU(6,"persistentFooter") -B.f7=new A.eU(7,"bottomNavigationBar") -B.f8=new A.eU(8,"floatingActionButton") -B.lW=new A.eU(9,"drawer") -B.TO=new A.pl(B.o,B.c8,B.kZ,null,null) -B.Md=new A.L(100,0) -B.TP=new A.pl(B.Md,B.c8,B.kZ,null,null) -B.Uj=new A.R4(0,"material") -B.k=new A.Rh(0,"created") -B.lX=new A.pq(0,"idle") -B.TU=new A.pq(1,"absorb") -B.lY=new A.pq(2,"pull") -B.w4=new A.pq(3,"recede") -B.Uk=new A.Rv(0,"material") -B.TV=new A.RI(B.mL,B.dY) -B.f9=new A.uP(0,"leading") -B.fa=new A.uP(1,"middle") -B.fb=new A.uP(2,"trailing") -B.TW=new A.DH(0,"minimize") -B.TX=new A.DH(1,"maximize")})();(function staticFields(){$.iu=null -$.bg=A.bx("canvasKit") -$.asF=B.B1 -$.pC=null -$.iz=null -$.zY=A.b([],A.a_("o>")) -$.zX=A.b([],A.a_("o")) -$.aqR=!1 -$.ar_=!1 -$.ig=null -$.bL=null -$.ht=null -$.alQ=!1 -$.iw=A.b([],t.kZ) -$.ar0=0 -$.Et=0 -$.l0=A.b([],A.a_("o")) -$.ajg=A.b([],t.nx) -$.amd=null -$.aqZ=!1 -$.a8Z=null -$.arq=null -$.amr=A.b([],t.g) -$.hu=A.b([],t.b) -$.Ew=B.mM -$.ahz=null -$.ahS=null -$.akB=null -$.apC=null -$.akM=null -$.au9=null -$.au3=null -$.aqd=null -$.aEk=A.z(t.N,t.lG) -$.aEl=A.z(t.N,t.lG) -$.asi=null -$.arP=0 -$.alR=A.b([],t.no) -$.am3=-1 -$.alK=-1 -$.alJ=-1 -$.alZ=-1 -$.asQ=-1 -$.a_a=A.bx("_programCache") -$.a2S=null -$.aog=null -$.e0=null -$.zQ=null -$.aqW=A.z(A.a_("Ar"),A.a_("LM")) -$.ai7=null -$.asI=-1 -$.asH=-1 -$.asJ="" -$.asG="" -$.asK=-1 -$.EC=A.z(t.N,A.a_("jW")) -$.asv=null -$.py=!1 -$.Tk=null -$.adB=null -$.aqj=null -$.a41=0 -$.JF=A.aGq() -$.aop=null -$.aoo=null -$.atB=null -$.at2=null -$.au5=null -$.aiJ=null -$.aj5=null -$.amf=null -$.uT=null -$.Ex=null -$.Ey=null -$.alX=!1 -$.a5=B.ae -$.pD=A.b([],t.jl) -$.asw=A.z(t.N,A.a_("a7(k,ay)")) -$.alf=A.b([],A.a_("o")) -$.ln=null -$.aki=null -$.ap0=null -$.ap_=null -$.On=A.z(t.N,t._8) -$.aAB=!0 -$.uZ=null -$.hR=null -$.aB9=A.aH_() -$.akm=0 -$.Hi=A.b([],A.a_("o")) -$.apF=null -$.Tl=0 -$.ahQ=null -$.alN=!1 -$.eH=null -$.kB=A.b([],A.a_("o")) -$.aDT=A.aK(A.a_("oV")) -$.fa=null -$.m3=null -$.am1=1 -$.bK=null -$.zP=null -$.aoG=0 -$.aoE=A.z(t.S,t.I7) -$.aoF=A.z(t.I7,t.S) -$.a6S=0 -$.e7=null -$.tn=null -$.al9=null -$.ar8=1 -$.aEc=!1 -$.F=null -$.arT=1 -$.aqg=null -$.ass=null -$.ahP=null -$.al1=null -$.iT=null -$.cy=null -$.aBO=A.z(t.S,A.a_("aJK"))})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy -s($,"aLp","bU",()=>A.aHA(A.EK().navigator.vendor,B.b.DW(A.EK().navigator.userAgent))) -s($,"aM_","ej",()=>A.aHC()) -r($,"aJ7","amC",()=>A.Ix(8)) -s($,"aL1","ave",()=>A.arp(0,0,1)) -s($,"aLs","TK",()=>J.anx(J.ajK(A.a8()))) -s($,"aMR","an5",()=>self.window.h5vcc!=null) -s($,"aM9","avW",()=>A.b([J.ayg(J.l6(A.a8())),J.axw(J.l6(A.a8())),J.axI(J.l6(A.a8())),J.anB(J.l6(A.a8())),J.axN(J.l6(A.a8())),J.ay4(J.l6(A.a8())),J.ax5(J.l6(A.a8())),J.axv(J.l6(A.a8())),J.axu(J.l6(A.a8()))],A.a_("o"))) -s($,"aMj","aw2",()=>A.b([J.ay_(J.anH(A.a8())),J.axG(J.anH(A.a8()))],A.a_("o"))) -s($,"aMg","aw0",()=>A.b([J.axH(J.v6(A.a8())),J.ay1(J.v6(A.a8())),J.ax8(J.v6(A.a8())),J.axF(J.v6(A.a8())),J.ayd(J.v6(A.a8())),J.axr(J.v6(A.a8()))],A.a_("o"))) -s($,"aMk","aw3",()=>A.b([J.ax0(J.TY(A.a8())),J.axi(J.TY(A.a8())),J.axj(J.TY(A.a8())),J.axh(J.TY(A.a8()))],A.a_("o"))) -s($,"aMc","avY",()=>A.b([J.anI(J.v5(A.a8())),J.any(J.v5(A.a8())),J.axC(J.v5(A.a8())),J.axD(J.v5(A.a8())),J.axB(J.v5(A.a8())),J.ayf(J.v5(A.a8()))],A.a_("o"))) -s($,"aMd","avZ",()=>A.b([J.anI(J.anD(A.a8())),J.any(J.anD(A.a8()))],A.a_("o"))) -s($,"aM7","amW",()=>A.b([J.anv(J.ajK(A.a8())),J.anx(J.ajK(A.a8()))],A.a_("o"))) -s($,"aM8","TQ",()=>A.b([J.ayl(J.anw(A.a8())),J.axs(J.anw(A.a8()))],A.a_("o"))) -s($,"aM6","avV",()=>A.b([J.anB(J.TU(A.a8())),J.anF(J.TU(A.a8())),J.axU(J.TU(A.a8())),J.axE(J.TU(A.a8()))],A.a_("o"))) -s($,"aMe","amY",()=>A.b([J.ax7(J.ajO(A.a8())),J.anE(J.ajO(A.a8())),J.ay7(J.ajO(A.a8()))],A.a_("o"))) -s($,"aMa","amX",()=>A.b([J.axx(J.anC(A.a8())),J.aye(J.anC(A.a8()))],A.a_("o"))) -s($,"aM5","amV",()=>A.b([J.axa(J.c0(A.a8())),J.ay8(J.c0(A.a8())),J.axm(J.c0(A.a8())),J.ayc(J.c0(A.a8())),J.axq(J.c0(A.a8())),J.aya(J.c0(A.a8())),J.axo(J.c0(A.a8())),J.ayb(J.c0(A.a8())),J.axp(J.c0(A.a8())),J.ay9(J.c0(A.a8())),J.axn(J.c0(A.a8())),J.aym(J.c0(A.a8())),J.axZ(J.c0(A.a8())),J.axR(J.c0(A.a8())),J.ay3(J.c0(A.a8())),J.axV(J.c0(A.a8())),J.axe(J.c0(A.a8())),J.axJ(J.c0(A.a8())),J.axd(J.c0(A.a8())),J.axc(J.c0(A.a8())),J.axy(J.c0(A.a8())),J.ay6(J.c0(A.a8())),J.anv(J.c0(A.a8())),J.axt(J.c0(A.a8())),J.axS(J.c0(A.a8())),J.axz(J.c0(A.a8())),J.ay2(J.c0(A.a8())),J.axb(J.c0(A.a8())),J.axL(J.c0(A.a8()))],A.a_("o"))) -s($,"aMf","aw_",()=>A.b([J.axQ(J.ajP(A.a8())),J.anE(J.ajP(A.a8())),J.ax4(J.ajP(A.a8()))],A.a_("o"))) -s($,"aMl","aw4",()=>A.b([J.ax9(J.TZ(A.a8())),J.ay0(J.TZ(A.a8())),J.axP(J.TZ(A.a8())),J.axg(J.TZ(A.a8()))],A.a_("o"))) -s($,"aLG","avC",()=>{var q=A.Ix(2) -q[0]=0 -q[1]=1 -return q}) -s($,"aM4","amU",()=>A.aIl(4)) -s($,"aMi","aw1",()=>A.b([J.anF(J.ET(A.a8())),J.axl(J.ET(A.a8())),J.axk(J.ET(A.a8())),J.axf(J.ET(A.a8())),J.ayk(J.ET(A.a8()))],A.a_("o"))) -s($,"aMh","amZ",()=>A.b([J.ax1(J.anG(A.a8())),J.axA(J.anG(A.a8()))],A.a_("o"))) -s($,"aMb","avX",()=>A.b([J.ax2(J.v4(A.a8())),J.ax_(J.v4(A.a8())),J.ax3(J.v4(A.a8())),J.ayh(J.v4(A.a8())),J.ax6(J.v4(A.a8())),J.axO(J.v4(A.a8()))],A.a_("o"))) -s($,"aJf","aum",()=>A.aCM()) -r($,"aJe","TE",()=>$.aum()) -r($,"aMt","EN",()=>self.window.FinalizationRegistry!=null) -r($,"aJG","ajA",()=>{var q=t.S,p=t.t -return new A.HF(A.aK(q),A.b([],A.a_("o")),A.z(q,t.wW),A.z(q,A.a_("aJv")),A.z(q,A.a_("aKB")),A.z(q,A.a_("dm")),A.aK(q),A.b([],p),A.b([],p),$.bW().gkO(),A.z(q,A.a_("b0")))}) -r($,"aJB","v2",()=>{var q=t.S -return new A.Hr(A.aK(q),A.aK(q),A.aBf(),A.b([],t.Pc),A.b(["Roboto"],t.s),A.z(t.N,q),A.aK(q))}) -r($,"aLY","TO",()=>A.cC("Noto Sans SC",A.b([B.y2,B.y5,B.dP,B.yK,B.ms],t.Cz))) -r($,"aLZ","TP",()=>A.cC("Noto Sans TC",A.b([B.mq,B.mr,B.dP],t.Cz))) -r($,"aLW","TM",()=>A.cC("Noto Sans HK",A.b([B.mq,B.mr,B.dP],t.Cz))) -r($,"aLX","TN",()=>A.cC("Noto Sans JP",A.b([B.y1,B.dP,B.ms],t.Cz))) -r($,"aLr","avu",()=>A.b([$.TO(),$.TP(),$.TM(),$.TN()],t.Qg)) -r($,"aLV","avQ",()=>{var q=t.Cz -return A.b([$.TO(),$.TP(),$.TM(),$.TN(),A.cC("Noto Naskh Arabic UI",A.b([B.ya,B.z3,B.z4,B.z6,B.y_,B.yI,B.yL],q)),A.cC("Noto Sans Armenian",A.b([B.y7,B.yG],q)),A.cC("Noto Sans Bengali UI",A.b([B.bu,B.yd,B.aN,B.bP,B.az],q)),A.cC("Noto Sans Myanmar UI",A.b([B.yu,B.aN,B.az],q)),A.cC("Noto Sans Egyptian Hieroglyphs",A.b([B.yY],q)),A.cC("Noto Sans Ethiopic",A.b([B.yD,B.xX,B.yB],q)),A.cC("Noto Sans Georgian",A.b([B.y8,B.yx,B.xW],q)),A.cC("Noto Sans Gujarati UI",A.b([B.bu,B.yh,B.aN,B.bP,B.az,B.fn],q)),A.cC("Noto Sans Gurmukhi UI",A.b([B.bu,B.ye,B.aN,B.bP,B.az,B.zn,B.fn],q)),A.cC("Noto Sans Hebrew",A.b([B.y9,B.za,B.az,B.yH],q)),A.cC("Noto Sans Devanagari UI",A.b([B.yb,B.yT,B.yV,B.aN,B.z9,B.bP,B.az,B.fn,B.yA],q)),A.cC("Noto Sans Kannada UI",A.b([B.bu,B.yn,B.aN,B.bP,B.az],q)),A.cC("Noto Sans Khmer UI",A.b([B.yE,B.z2,B.az],q)),A.cC("Noto Sans KR",A.b([B.y3,B.y4,B.y6,B.yC],q)),A.cC("Noto Sans Lao UI",A.b([B.yt,B.az],q)),A.cC("Noto Sans Malayalam UI",A.b([B.yX,B.z0,B.bu,B.yo,B.aN,B.bP,B.az],q)),A.cC("Noto Sans Sinhala",A.b([B.bu,B.yq,B.aN,B.az],q)),A.cC("Noto Sans Tamil UI",A.b([B.bu,B.yj,B.aN,B.bP,B.az],q)),A.cC("Noto Sans Telugu UI",A.b([B.yc,B.bu,B.ym,B.yU,B.aN,B.az],q)),A.cC("Noto Sans Thai UI",A.b([B.yr,B.aN,B.az],q)),A.cC("Noto Sans",A.b([B.xS,B.yl,B.yp,B.yO,B.yP,B.yR,B.yS,B.z1,B.z7,B.zc,B.zh,B.zi,B.zj,B.zk,B.zl,B.yM,B.yN,B.xT,B.xY,B.y0,B.zg,B.xU,B.yQ,B.ze,B.xZ,B.yw,B.yJ,B.zm,B.z_,B.yf,B.yF,B.yW,B.z5,B.z8,B.zd,B.zf,B.xV,B.yy,B.yg,B.yi,B.yk,B.ys,B.yv,B.yz,B.yZ,B.zb],q))],t.Qg)}) -r($,"aMF","pK",()=>{var q=t.V0 -return new A.H8(new A.a2L(),A.aK(q),A.z(t.N,q))}) -s($,"aLo","avs",()=>A.aAh("ftyp")) -s($,"aMQ","aJ",()=>{var q=$.avz() -return q}) -s($,"aLB","avz",()=>A.aFN()) -s($,"aLF","avB",()=>A.aC9(B.DX)) -s($,"aLE","ajF",()=>A.a1F(new A.G1($.avB()))) -s($,"aK9","TG",()=>{var q=A.a_("dS") -return new A.L2(1024,A.aoX(q),A.z(q,A.a_("akg>")))}) -r($,"aJc","v1",()=>{var q=A.a_("dS") -return new A.a96(500,A.aoX(q),A.z(q,A.a_("akg>")))}) -s($,"aJb","auk",()=>new self.window.flutterCanvasKit.Paint()) -s($,"aJa","auj",()=>{var q=new self.window.flutterCanvasKit.Paint() -J.ajR(q,0) -return q}) -s($,"aK1","auJ",()=>A.arp(0,0,1)) -s($,"aLA","avx",()=>B.a4.ca(A.aB(["type","fontsChange"],t.N,t.z))) -s($,"aMC","an2",()=>{var q=A.ar1() -q.setAttribute("width",0) -q.setAttribute("height",0) -B.h.sbS(q.style,"absolute") -return q}) -s($,"aKX","amP",()=>A.Ix(4)) -s($,"aKA","av5",()=>A.apX(A.b([0,1,2,2,3,0],t.t))) -s($,"aMm","aw5",()=>A.amb(A.amb(A.amb(A.EK(),"Image"),"prototype"),"decode")!=null) -s($,"aMH","pL",()=>{var q=t.N,p=t.S -return new A.a3C(A.z(q,t._8),A.z(p,t.Q),A.aK(q),A.z(p,q))}) -s($,"aLI","avE",()=>8589934852) -s($,"aLJ","avF",()=>8589934853) -s($,"aLK","avG",()=>8589934848) -s($,"aLL","avH",()=>8589934849) -s($,"aLP","avL",()=>8589934850) -s($,"aLQ","avM",()=>8589934851) -s($,"aLN","avJ",()=>8589934854) -s($,"aLO","avK",()=>8589934855) -s($,"aLM","avI",()=>A.aB([$.avE(),new A.ahZ(),$.avF(),new A.ai_(),$.avG(),new A.ai0(),$.avH(),new A.ai1(),$.avL(),new A.ai2(),$.avM(),new A.ai3(),$.avJ(),new A.ai4(),$.avK(),new A.ai5()],t.S,A.a_("y(jU)"))) -s($,"aJx","aL",()=>{var q=t.K -q=new A.Yl(A.aCn(B.wJ,!1,"/",A.akj(),B.ac,!1,null,A.aHJ()),A.z(q,A.a_("ns")),A.z(q,A.a_("Mf")),A.EK().matchMedia("(prefers-color-scheme: dark)")) -q.Ym() -q.Yr() -return q}) -r($,"aFX","avy",()=>A.aGA()) -s($,"aMM","an3",()=>A.ame(A.EK(),"FontFace")) -s($,"aMN","awh",()=>{if(A.ame(A.atj(),"fonts")){var q=A.atj().fonts -q.toString -q=A.ame(q,"clear")}else q=!1 -return q}) -r($,"aMu","awb",()=>{var q=self.window.ImageDecoder!=null&&A.aHd()===B.b9 -return q}) -s($,"aMs","awa",()=>{var q=$.aog -return q==null?$.aog=A.azA():q}) -s($,"aM2","avT",()=>A.aB([B.uR,new A.aif(),B.uS,new A.aig(),B.uT,new A.aih(),B.uU,new A.aii(),B.uV,new A.aij(),B.uW,new A.aik(),B.uX,new A.ail(),B.uY,new A.aim()],t.Zg,A.a_("fA(cE)"))) -s($,"aJC","auv",()=>A.bZ("[a-z0-9\\s]+",!1)) -s($,"aJD","auw",()=>A.bZ("\\b\\d",!0)) -r($,"aKa","auP",()=>{var q=A.aAR("flt-ruler-host"),p=new A.Kw(q),o=q.style -B.h.sbS(o,"fixed") -B.h.sah5(o,"hidden") -B.h.sDu(o,"hidden") -B.h.swy(o,"0") -B.h.siF(o,"0") -B.h.saQ(o,"0") -B.h.sbk(o,"0") -o=A.aHP().z.gOp() -o.appendChild(q) -A.aIx(p.geE(p)) -return p}) -s($,"aMr","aw9",()=>A.aE1(A.b([B.SB,B.SF,B.So,B.Sp,B.Sr,B.SC,B.Sm,B.Sn,B.Sq,B.SD,B.SE,B.Sl,B.Ss,B.St,B.Su,B.Sv,B.Sw,B.Sx,B.Sy,B.Sz,B.SA],A.a_("o>")),null,A.a_("kA?"))) -r($,"aMV","EP",()=>A.aE2("000a!E000b000cF000d!D000w!R000y!A0013!B0018!M001a!N001c001lO001m!L001n!M001t002iK002n!P002p003eK003p!F004q!K004t!I0051!K0053!L0056!K005c005yK0060006uK006w00k7K00ke00lbK00lc00ofG00og00okK00om00onK00oq00otK00ou!M00ov!K00p2!K00p3!L00p400p6K00p8!K00pa00ptK00pv00s5K00s700w1K00w300w9G00wa010vK010x011yK01210124K0126!K0127!L0128013cK013d!M013e!K013l014tG014v!G014x014yG01500151G0153!G015c0162C0167016aC016b!K016c!L016o016tI01700171M0174017eG017g!I017k018qK018r019bG019c019lO019n!O019o!M019q019rK019s!G019t01cjK01cl!K01cm01csG01ct!I01cv01d0G01d101d2K01d301d4G01d601d9G01da01dbK01dc01dlO01dm01doK01dr!K01e7!I01e8!K01e9!G01ea01f3K01f401fuG01fx01idK01ie01ioG01ip!K01j401jdO01je01kaK01kb01kjG01kk01klK01ko!M01kq!K01kt!G01kw01lhK01li01llG01lm!K01ln01lvG01lw!K01lx01lzG01m0!K01m101m5G01mo01ncK01nd01nfG01nk01nuK01pc01pwK01py01qfK01qr01r5G01r6!I01r701s3G01s401tlK01tm01toG01tp!K01tq01u7G01u8!K01u901ufG01ug01upK01uq01urG01uu01v3O01v501vkK01vl01vnG01vp01vwK01vz01w0K01w301woK01wq01wwK01wy!K01x201x5K01x8!G01x9!K01xa01xgG01xj01xkG01xn01xpG01xq!K01xz!G01y401y5K01y701y9K01ya01ybG01ye01ynO01yo01ypK01z0!K01z2!G01z501z7G01z901zeK01zj01zkK01zn0208K020a020gK020i020jK020l020mK020o020pK020s!G020u020yG02130214G02170219G021d!G021l021oK021q!K021y0227O02280229G022a022cK022d!G022p022rG022t0231K02330235K0237023sK023u0240K02420243K02450249K024c!G024d!K024e024lG024n024pG024r024tG024w!K025c025dK025e025fG025i025rO0261!K02620267G0269026bG026d026kK026n026oK026r027cK027e027kK027m027nK027p027tK027w!G027x!K027y0284G02870288G028b028dG028l028nG028s028tK028v028xK028y028zG0292029bO029d!K029u!G029v!K029x02a2K02a602a8K02aa02adK02ah02aiK02ak!K02am02anK02ar02asK02aw02ayK02b202bdK02bi02bmG02bq02bsG02bu02bxG02c0!K02c7!G02cm02cvO02dc02dgG02dh02doK02dq02dsK02du02egK02ei02exK02f1!K02f202f8G02fa02fcG02fe02fhG02fp02fqG02fs02fuK02g002g1K02g202g3G02g602gfO02gw!K02gx02gzG02h102h8K02ha02hcK02he02i0K02i202ibK02id02ihK02ik!G02il!K02im02isG02iu02iwG02iy02j1G02j902jaG02ji!K02jk02jlK02jm02jnG02jq02jzO02k102k2K02kg02kjG02kk02ksK02ku02kwK02ky02m2K02m302m4G02m5!K02m602mcG02me02mgG02mi02mlG02mm!K02ms02muK02mv!G02n302n5K02n602n7G02na02njO02nu02nzK02o102o3G02o502omK02oq02pdK02pf02pnK02pp!K02ps02pyK02q2!G02q702qcG02qe!G02qg02qnG02qu02r3O02r602r7G02sx!G02t002t6G02tj02tqG02ts02u1O02wh!G02wk02wsG02x402x9G02xc02xlO02yo!K02zc02zdG02zk02ztO0305!G0307!G0309!G030e030fG030g030nK030p031oK031t032cG032e032fG032g032kK032l032vG032x033wG0346!G036z037iG037k037tO03860389G038e038gG038i038kG038n038tG038x0390G039e039pG039r!G039s03a1O03a203a5G03a803b9K03bb!K03bh!K03bk03cqK03cs03m0K03m203m5K03m803meK03mg!K03mi03mlK03mo03nsK03nu03nxK03o003owK03oy03p1K03p403paK03pc!K03pe03phK03pk03pyK03q003rkK03rm03rpK03rs03tmK03tp03trG03uo03v3K03vk03xxK03y003y5K03y904fgK04fj04fzK04g0!R04g104gqK04gw04iyK04j204jcK04jk04jwK04jy04k1K04k204k4G04kg04kxK04ky04l0G04lc04ltK04lu04lvG04m804mkK04mm04moK04mq04mrG04ok04pfG04pp!G04ps04q1O04qz04r1G04r2!I04r404rdO04rk04u0K04u804ucK04ud04ueG04uf04vcK04vd!G04ve!K04vk04xhK04xs04ymK04yo04yzG04z404zfG04zq04zzO053k053tO054w055iK055j055nG0579057iG057k058cG058f!G058g058pO058w0595O059s05a8G05c005c4G05c505dfK05dg05dwG05dx05e3K05e805ehO05ez05f7G05fk05fmG05fn05ggK05gh05gtG05gu05gvK05gw05h5O05h605idK05ie05irG05j405k3K05k405knG05kw05l5O05l905lbK05lc05llO05lm05mlK05mo05mwK05n405oaK05od05ofK05ow05oyG05p005pkG05pl05poK05pp!G05pq05pvK05pw!G05px05pyK05pz05q1G05q2!K05q805vjK05vk05x5G05x705xbG05xc0651K06540659K065c066dK066g066lK066o066vK066x!K066z!K0671!K0673067xK0680069gK069i069oK069q!K069u069wK069y06a4K06a806abK06ae06ajK06ao06b0K06b606b8K06ba06bgK06bk06bqR06bs06buR06bw!G06bx!Q06by06bzI06c806c9N06ck!N06cn!L06co06cpF06cq06cuI06cv!P06db06dcP06dg!M06dw!P06e7!R06e806ecI06ee06enI06ep!K06f3!K06fk06fwK06hc06i8G06iq!K06iv!K06iy06j7K06j9!K06jd06jhK06jo!K06jq!K06js!K06ju06jxK06jz06k9K06kc06kfK06kl06kpK06ku!K06lc06mgK079207ahK08ow08q6K08q808riK08rk08v8K08vf08viK08vj08vlG08vm08vnK08w008x1K08x3!K08x9!K08xc08yvK08z3!K08zj!G08zk0906K090g090mK090o090uK090w0912K0914091aK091c091iK091k091qK091s091yK09200926K09280933G094f!K09hc!R09hh!K09ii09inG09ip09itJ09iz09j0K09ll09lmG09ln09loJ09ls09oaJ09oc09ofJ09ol09prK09pt09seK09sw09trK09v409vjJ0a1c0a2mJ0a2o0a53J0vls0wi4K0wk00wl9K0wlc0wssK0wsw0wtbK0wtc0wtlO0wtm0wtnK0wu80wviK0wvj0wvmG0wvo0wvxG0wvz0wwtK0wwu0wwvG0www0wz3K0wz40wz5G0wzs0x4vK0x4y0x56K0x6d0x6pK0x6q!G0x6r0x6tK0x6u!G0x6v0x6yK0x6z!G0x700x7mK0x7n0x7rG0x7w!G0x8g0x9vK0xa80xa9G0xaa0xbnK0xbo0xc5G0xcg0xcpO0xcw0xddG0xde0xdjK0xdn!K0xdp0xdqK0xdr!G0xds0xe1O0xe20xetK0xeu0xf1G0xf40xfqK0xfr0xg3G0xgg0xh8K0xhc0xhfG0xhg0xiqK0xir0xj4G0xjj!K0xjk0xjtO0xk5!G0xkg0xkpO0xkw0xm0K0xm10xmeG0xmo0xmqK0xmr!G0xms0xmzK0xn00xn1G0xn40xndO0xob0xodG0xps!G0xpu0xpwG0xpz0xq0G0xq60xq7G0xq9!G0xr40xreK0xrf0xrjG0xrm0xroK0xrp0xrqG0xs10xs6K0xs90xseK0xsh0xsmK0xsw0xt2K0xt40xtaK0xtc0xuxK0xv40xyaK0xyb0xyiG0xyk0xylG0xyo0xyxO0xz416lfK16ls16meK16mj16nvK1dkw1dl2K1dlf1dljK1dlp!C1dlq!G1dlr1dm0C1dm21dmeC1dmg1dmkC1dmm!C1dmo1dmpC1dmr1dmsC1dmu1dn3C1dn41dptK1dqr1e0tK1e1c1e33K1e361e4nK1e5s1e63K1e681e6nG1e6o!M1e6r!L1e6s!M1e741e7jG1e7n1e7oP1e8d1e8fP1e8g!M1e8i!N1e8k!M1e8l!L1e9c1e9gK1e9i1ed8K1edb!I1edj!N1edo!M1edq!N1eds1ee1O1ee2!L1ee3!M1ee91eeyK1ef3!P1ef51efuK1eg61ehpJ1ehq1ehrG1ehs1eimK1eiq1eivK1eiy1ej3K1ej61ejbK1eje1ejgK1ek91ekbI1ekg1ekrK1ekt1eliK1elk1em2K1em41em5K1em71emlK1emo1en1K1eo01ereK1etc1eusK1eyl!G1f281f30K1f341f4gK1f4w!G1f5s1f6nK1f711f7uK1f801f91K1f921f96G1f9c1fa5K1fa81fb7K1fbc1fbjK1fbl1fbpK1fcw1fh9K1fhc1fhlO1fhs1firK1fiw1fjvK1fk01fl3K1flc1fmrK1fr41fzqK1g001g0lK1g0w1g13K1g5c1g5hK1g5k!K1g5m1g6tK1g6v1g6wK1g70!K1g731g7pK1g801g8mK1g8w1g9qK1gbk1gc2K1gc41gc5K1gcg1gd1K1gdc1ge1K1gg01ghjK1ghq1ghrK1gjk!K1gjl1gjnG1gjp1gjqG1gjw1gjzG1gk01gk3K1gk51gk7K1gk91gl1K1gl41gl6G1glb!G1gm81gn0K1gn41gnwK1gow1gp3K1gp51gpwK1gpx1gpyG1gqo1gs5K1gsg1gt1K1gtc1gtuK1gu81gupK1gxs1gzsK1h1c1h2qK1h341h4iK1h4w1h5vK1h5w1h5zG1h681h6hO1hfk1hgpK1hgr1hgsG1hgw1hgxK1hj41hjwK1hk7!K1hkg1hl1K1hl21hlcG1ho01hokK1hpc1hpyK1hq81hqaG1hqb1hrrK1hrs1hs6G1ht21htbO1htr1htuG1htv1hv3K1hv41hveG1hvh!I1hvx!I1hw01hwoK1hww1hx5O1hxc1hxeG1hxf1hyeK1hyf1hysG1hyu1hz3O1hz8!K1hz91hzaG1hzb!K1hzk1i0iK1i0j!G1i0m!K1i0w1i0yG1i0z1i2aK1i2b1i2oG1i2p1i2sK1i2x1i30G1i321i33G1i341i3dO1i3e!K1i3g!K1i4g1i4xK1i4z1i5nK1i5o1i5zG1i66!G1i801i86K1i88!K1i8a1i8dK1i8f1i8tK1i8v1i94K1i9c1iamK1ian1iayG1ib41ibdO1ibk1ibnG1ibp1ibwK1ibz1ic0K1ic31icoK1icq1icwK1icy1iczK1id11id5K1id71id8G1id9!K1ida1idgG1idj1idkG1idn1idpG1ids!K1idz!G1ie51ie9K1iea1iebG1iee1iekG1ieo1iesG1iio1ik4K1ik51ikmG1ikn1ikqK1ikw1il5O1ila!G1ilb1ildK1im81injK1ink1io3G1io41io5K1io7!K1iog1iopO1itc1iumK1iun1iutG1iuw1iv4G1ivs1ivvK1ivw1ivxG1iww1iy7K1iy81iyoG1iys!K1iz41izdO1j0g1j1mK1j1n1j1zG1j20!K1j281j2hO1j4t1j57G1j5c1j5lO1jb41jcbK1jcc1jcqG1jfk1jhbK1jhc1jhlO1ji71jieK1jih!K1jik1jirK1jit1jiuK1jiw1jjjK1jjk1jjpG1jjr1jjsG1jjv1jjyG1jjz!K1jk0!G1jk1!K1jk21jk3G1jkg1jkpO1jmo1jmvK1jmy1jo0K1jo11jo7G1joa1jogG1joh!K1joj!K1jok!G1jpc!K1jpd1jpmG1jpn1jqqK1jqr1jqxG1jqy!K1jqz1jr2G1jrb!G1jrk!K1jrl1jrvG1jrw1jt5K1jt61jtlG1jtp!K1juo1jw8K1k3k1k3sK1k3u1k4uK1k4v1k52G1k541k5bG1k5c!K1k5s1k61O1k6q1k7jK1k7m1k87G1k891k8mG1kao1kauK1kaw1kaxK1kaz1kc0K1kc11kc6G1kca!G1kcc1kcdG1kcf1kclG1kcm!K1kcn!G1kcw1kd5O1kdc1kdhK1kdj1kdkK1kdm1kehK1kei1kemG1keo1kepG1ker1kevG1kew!K1kf41kfdO1ko01koiK1koj1komG1kts!K1kw01lllK1log1lriK1ls01lxfK1o1s1oviK1ovk1ovsI1s001sg6K1z401zjsK1zk01zkuK1zkw1zl5O1zo01zotK1zow1zp0G1zpc1zqnK1zqo1zquG1zr41zr7K1zrk1zrtO1zs31zsnK1zst1ztbK20cg20e7K20hs20juK20jz!G20k0!K20k120ljG20lr20luG20lv20m7K20o020o1K20o3!K20o4!G20og20ohG2dc0!J2dlw2dlzJ2fpc2fsaK2fsg2fssK2fsw2ft4K2ftc2ftlK2ftp2ftqG2fts2ftvI2jxh2jxlG2jxp2jxuG2jxv2jy2I2jy32jyaG2jyd2jyjG2jze2jzhG2k3m2k3oG2kg02kicK2kie2kkcK2kke2kkfK2kki!K2kkl2kkmK2kkp2kksK2kku2kl5K2kl7!K2kl92klfK2klh2kn9K2knb2kneK2knh2knoK2knq2knwK2kny2kopK2kor2kouK2kow2kp0K2kp2!K2kp62kpcK2kpe2kytK2kyw2kzkK2kzm2l0aK2l0c2l16K2l182l1wK2l1y2l2sK2l2u2l3iK2l3k2l4eK2l4g2l54K2l562l60K2l622l6qK2l6s2l6zK2l722l8fO2lmo2lo6G2lob2lpoG2lpx!G2lqc!G2lqz2lr3G2lr52lrjG2mtc2mtiG2mtk2mu0G2mu32mu9G2mub2mucG2mue2muiG2n0g2n1oK2n1s2n1yG2n1z2n25K2n282n2hO2n2m!K2ncw2ne3K2ne42ne7G2ne82nehO2oe82ojoK2ok02ok6G2olc2on7K2on82oneG2onf!K2onk2ontO2pkw2pkzK2pl12plrK2plt2pluK2plw!K2plz!K2pm12pmaK2pmc2pmfK2pmh!K2pmj!K2pmq!K2pmv!K2pmx!K2pmz!K2pn12pn3K2pn52pn6K2pn8!K2pnb!K2pnd!K2pnf!K2pnh!K2pnj!K2pnl2pnmK2pno!K2pnr2pnuK2pnw2po2K2po42po7K2po92pocK2poe!K2pog2popK2por2pp7K2ppd2ppfK2pph2pplK2ppn2pq3K2q7k2q89K2q8g2q95K2q9c2qa1K2qcm2qdbH2qrf2qrjG2sc02sc9Ojny9!Ijnz4jo1rGjo5cjobzG",231,B.E6,B.vS,A.a_("cH"))) -s($,"aJ5","aui",()=>{var q=t.N -return new A.UY(A.aB(["birthday","bday","birthdayDay","bday-day","birthdayMonth","bday-month","birthdayYear","bday-year","countryCode","country","countryName","country-name","creditCardExpirationDate","cc-exp","creditCardExpirationMonth","cc-exp-month","creditCardExpirationYear","cc-exp-year","creditCardFamilyName","cc-family-name","creditCardGivenName","cc-given-name","creditCardMiddleName","cc-additional-name","creditCardName","cc-name","creditCardNumber","cc-number","creditCardSecurityCode","cc-csc","creditCardType","cc-type","email","email","familyName","family-name","fullStreetAddress","street-address","gender","sex","givenName","given-name","impp","impp","jobTitle","organization-title","language","language","middleName","middleName","name","name","namePrefix","honorific-prefix","nameSuffix","honorific-suffix","newPassword","new-password","nickname","nickname","oneTimeCode","one-time-code","organizationName","organization","password","current-password","photo","photo","postalCode","postal-code","streetAddressLevel1","address-level1","streetAddressLevel2","address-level2","streetAddressLevel3","address-level3","streetAddressLevel4","address-level4","streetAddressLine1","address-line1","streetAddressLine2","address-line2","streetAddressLine3","address-line3","telephoneNumber","tel","telephoneNumberAreaCode","tel-area-code","telephoneNumberCountryCode","tel-country-code","telephoneNumberExtension","tel-extension","telephoneNumberLocal","tel-local","telephoneNumberLocalPrefix","tel-local-prefix","telephoneNumberLocalSuffix","tel-local-suffix","telephoneNumberNational","tel-national","transactionAmount","transaction-amount","transactionCurrency","transaction-currency","url","url","username","username"],q,q))}) -s($,"aMO","an4",()=>new A.a_Z()) -s($,"aMp","aw7",()=>A.Ix(4)) -s($,"aMn","an_",()=>A.Ix(16)) -s($,"aMo","aw6",()=>A.aC_($.an_())) -r($,"aMJ","bV",()=>{A.EK() -return B.wQ.gah6()}) -s($,"aMU","bW",()=>A.aAZ(0,$.aL())) -s($,"aJk","TF",()=>A.atA("_$dart_dartClosure")) -s($,"aMG","ajH",()=>B.ae.f_(new A.ajf())) -s($,"aKn","auU",()=>A.kE(A.aae({ -toString:function(){return"$receiver$"}}))) -s($,"aKo","auV",()=>A.kE(A.aae({$method$:null, -toString:function(){return"$receiver$"}}))) -s($,"aKp","auW",()=>A.kE(A.aae(null))) -s($,"aKq","auX",()=>A.kE(function(){var $argumentsExpr$="$arguments$" -try{null.$method$($argumentsExpr$)}catch(q){return q.message}}())) -s($,"aKt","av_",()=>A.kE(A.aae(void 0))) -s($,"aKu","av0",()=>A.kE(function(){var $argumentsExpr$="$arguments$" -try{(void 0).$method$($argumentsExpr$)}catch(q){return q.message}}())) -s($,"aKs","auZ",()=>A.kE(A.arl(null))) -s($,"aKr","auY",()=>A.kE(function(){try{null.$method$}catch(q){return q.message}}())) -s($,"aKw","av2",()=>A.kE(A.arl(void 0))) -s($,"aKv","av1",()=>A.kE(function(){try{(void 0).$method$}catch(q){return q.message}}())) -s($,"aKH","amH",()=>A.aEf()) -s($,"aJE","EL",()=>A.a_("a4").a($.ajH())) -s($,"aKy","av3",()=>new A.aaw().$0()) -s($,"aKz","av4",()=>new A.aav().$0()) -s($,"aKI","av8",()=>A.aCb(A.kZ(A.b([-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-2,-2,-2,-2,62,-2,62,-2,63,52,53,54,55,56,57,58,59,60,61,-2,-2,-2,-1,-2,-2,-2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-2,-2,-2,-2,63,-2,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-2,-2,-2,-2,-2],t.t)))) -s($,"aL6","amQ",()=>typeof process!="undefined"&&Object.prototype.toString.call(process)=="[object process]"&&process.platform=="win32") -s($,"aL7","avi",()=>A.bZ("^[\\-\\.0-9A-Z_a-z~]*$",!0)) -r($,"aLC","avA",()=>new Error().stack!=void 0) -s($,"aLD","dp",()=>A.mL(B.RJ)) -s($,"aKd","TH",()=>{A.aCJ() -return $.a41}) -s($,"aM3","avU",()=>A.aFH()) -s($,"aJh","aun",()=>({})) -s($,"aKU","avd",()=>A.k7(["A","ABBR","ACRONYM","ADDRESS","AREA","ARTICLE","ASIDE","AUDIO","B","BDI","BDO","BIG","BLOCKQUOTE","BR","BUTTON","CANVAS","CAPTION","CENTER","CITE","CODE","COL","COLGROUP","COMMAND","DATA","DATALIST","DD","DEL","DETAILS","DFN","DIR","DIV","DL","DT","EM","FIELDSET","FIGCAPTION","FIGURE","FONT","FOOTER","FORM","H1","H2","H3","H4","H5","H6","HEADER","HGROUP","HR","I","IFRAME","IMG","INPUT","INS","KBD","LABEL","LEGEND","LI","MAP","MARK","MENU","METER","NAV","NOBR","OL","OPTGROUP","OPTION","OUTPUT","P","PRE","PROGRESS","Q","S","SAMP","SECTION","SELECT","SMALL","SOURCE","SPAN","STRIKE","STRONG","SUB","SUMMARY","SUP","TABLE","TBODY","TD","TEXTAREA","TFOOT","TH","THEAD","TIME","TR","TRACK","TT","U","UL","VAR","VIDEO","WBR"],t.N)) -s($,"aJr","ajz",()=>B.b.lG(A.WL(),"Opera",0)) -s($,"aJq","aur",()=>!$.ajz()&&B.b.lG(A.WL(),"Trident/",0)) -s($,"aJp","auq",()=>B.b.lG(A.WL(),"Firefox",0)) -s($,"aJs","aus",()=>!$.ajz()&&B.b.lG(A.WL(),"WebKit",0)) -s($,"aJo","aup",()=>"-"+$.aut()+"-") -s($,"aJt","aut",()=>{if($.auq())var q="moz" -else if($.aur())q="ms" -else q=$.ajz()?"o":"webkit" -return q}) -s($,"aLt","pJ",()=>A.aFw(A.aiu(self))) -s($,"aKQ","amN",()=>A.atA("_$dart_dartObject")) -s($,"aLu","amR",()=>function DartObject(a){this.o=a}) -s($,"aJw","dd",()=>A.kd(A.apX(A.b([1],t.t)).buffer,0,null).getInt8(0)===1?B.ad:B.wY) -s($,"aMv","EO",()=>new A.Vy(A.z(t.N,A.a_("kL")))) -s($,"aMI","awg",()=>new A.a3F()) -s($,"aLn","avr",()=>A.bZ("^[\\x00-\\x7F]+$",!0)) -s($,"aLH","avD",()=>A.aqX(1,1,500)) -s($,"aMx","awc",()=>new A.ac1()) -s($,"aLS","avO",()=>A.ec(B.cB,B.j,t.EP)) -s($,"aLR","avN",()=>A.ec(B.j,B.K8,t.EP)) -r($,"aKP","av9",()=>new A.GE(B.SY,B.SX)) -s($,"aMy","awd",()=>new A.Wp()) -s($,"aMq","aw8",()=>new A.aio().$0()) -s($,"aLq","avt",()=>new A.ahC().$0()) -r($,"aJz","hx",()=>$.aB9) -s($,"aJ8","b4",()=>A.b7(0,null,!1,t.Nw)) -s($,"aLv","TL",()=>A.j2(null,t.N)) -s($,"aLw","amS",()=>A.aDx()) -s($,"aKE","av7",()=>A.aCc(8)) -s($,"aKc","auQ",()=>A.bZ("^\\s*at ([^\\s]+).*$",!0)) -s($,"aKJ","amI",()=>A.ec(1,1.5,t.i)) -s($,"aMA","an1",()=>new A.acr()) -s($,"aL2","avf",()=>A.ec(0.75,1,t.i)) -s($,"aL3","avg",()=>A.f0(B.R5)) -s($,"aJH","aux",()=>A.f0(B.au)) -s($,"aJI","auy",()=>A.f0(B.BX)) -s($,"aLg","avq",()=>{var q=t.i -return A.b([A.ark(A.ec(0,0.4,q).hh(A.f0(B.At)),0.166666,q),A.ark(A.ec(0.4,1,q).hh(A.f0(B.Av)),0.833334,q)],t.j7)}) -s($,"aLf","TJ",()=>A.arj($.avq(),t.i)) -s($,"aL8","avj",()=>A.ec(0,1,t.i).hh(A.f0(B.BW))) -s($,"aL9","avk",()=>A.ec(1.1,1,t.i).hh($.TJ())) -s($,"aLa","avl",()=>A.ec(0.85,1,t.i).hh($.TJ())) -s($,"aLb","avm",()=>A.ec(0,0.6,t.PM).hh(A.f0(B.C0))) -s($,"aLc","avn",()=>A.ec(1,0,t.i).hh(A.f0(B.C4))) -s($,"aLe","avp",()=>A.ec(1,1.05,t.i).hh($.TJ())) -s($,"aLd","avo",()=>A.ec(1,0.9,t.i).hh($.TJ())) -s($,"aKN","amL",()=>A.f0(B.C3).hh(A.f0(B.l8))) -s($,"aKO","amM",()=>A.f0(B.C2).hh(A.f0(B.l8))) -s($,"aKL","amJ",()=>A.f0(B.l8)) -s($,"aKM","amK",()=>A.f0(B.KM)) -s($,"aJY","auF",()=>A.ec(0,0.75,t.i)) -s($,"aJW","auD",()=>A.ec(0,1.5,t.i)) -s($,"aJX","auE",()=>A.ec(1,0,t.i)) -s($,"aKR","ava",()=>A.ec(0.875,1,t.i).hh(A.f0(B.cm))) -s($,"aMD","awe",()=>new A.a1Q()) -s($,"aKm","auT",()=>A.aDO()) -s($,"aKl","auS",()=>new A.O1(A.z(A.a_("uh"),t.we),5,A.a_("O1"))) -s($,"aJ3","auh",()=>A.bZ("/?(\\d+(\\.\\d*)?)x$",!0)) -s($,"aJM","ajB",()=>A.aCa(4)) -r($,"aJZ","auG",()=>B.zx) -r($,"aK0","auI",()=>{var q=null -return A.ara(q,B.my,q,q,q,q,"sans-serif",q,q,18,q,q,q,q,q,q,q,q,q,q)}) -r($,"aK_","auH",()=>{var q=null -return A.akQ(q,q,q,q,q,q,q,q,q,B.lp,B.q,q)}) -s($,"aL4","avh",()=>A.aC0()) -s($,"aK5","ajD",()=>A.oA()) -s($,"aK4","auM",()=>A.apV(0)) -s($,"aK6","auN",()=>A.apV(0)) -s($,"aK7","auO",()=>A.aC1().a) -s($,"aMK","TR",()=>{var q=t.N -return new A.a3w(A.z(q,A.a_("a7")),A.z(q,t.L0))}) -s($,"aJJ","auz",()=>A.aB([4294967562,B.Cf,4294967564,B.Cg,4294967556,B.Ce],t.S,t.SQ)) -s($,"aJU","ajC",()=>{var q=t.v3 -return new A.a4f(A.b([],A.a_("o<~(i3)>")),A.z(q,t.bd),A.aK(q))}) -s($,"aJT","auC",()=>{var q=t.v3 -return A.aB([B.Tp,A.bM([B.c4],q),B.Tq,A.bM([B.c6],q),B.Tr,A.bM([B.c4,B.c6],q),B.To,A.bM([B.c4],q),B.Tl,A.bM([B.c3],q),B.Tm,A.bM([B.cE],q),B.Tn,A.bM([B.c3,B.cE],q),B.Tk,A.bM([B.c3],q),B.Th,A.bM([B.c2],q),B.Ti,A.bM([B.cD],q),B.Tj,A.bM([B.c2,B.cD],q),B.Tg,A.bM([B.c2],q),B.Tt,A.bM([B.c5],q),B.Tu,A.bM([B.cF],q),B.Tv,A.bM([B.c5,B.cF],q),B.Ts,A.bM([B.c5],q),B.Tw,A.bM([B.dl],q),B.Tx,A.bM([B.dn],q),B.Ty,A.bM([B.dm],q),B.Tz,A.bM([B.dk],q)],A.a_("cs"),A.a_("b0"))}) -s($,"aJS","amD",()=>A.aB([B.c4,B.dc,B.c6,B.ev,B.c3,B.c0,B.cE,B.cz,B.c2,B.db,B.cD,B.eu,B.c5,B.dd,B.cF,B.ew,B.dl,B.ep,B.dn,B.eq,B.dm,B.er],t.v3,t.bd)) -s($,"aJR","auB",()=>{var q,p,o=A.z(t.v3,t.bd) -o.n(0,B.dk,B.he) -for(q=$.amD(),q=q.geP(q),q=q.ga1(q);q.t();){p=q.gH(q) -o.n(0,p.gcG(p),p.gl(p))}return o}) -s($,"aJy","auu",()=>new A.Hc("\n",!1,"")) -s($,"aKk","ei",()=>{var q=new A.LN(A.z(t.N,A.a_("aqH"))) -q.a=B.Kd -q.gZl().mv(q.ga3F()) -return q}) -r($,"aKD","av6",()=>{var q=A.a_("~(b_)") -return A.aB([B.Ru,A.aoW(!0),B.Sh,A.aoW(!1),B.RQ,new A.Kp(A.yi(q)),B.RG,new A.IE(A.yi(q)),B.RL,new A.JB(A.yi(q)),B.vN,new A.wh(!1,A.yi(q)),B.RR,new A.KE(A.yi(q)),B.RM,new A.JG(A.yi(q))],t.n,t.od)}) -s($,"aJm","auo",()=>{var q,p,o,n,m,l=t.vz,k=A.z(A.a_("rO"),l) -for(q=A.a_("aR"),p=0;p<2;++p){o=B.EY[p] -for(n=A.aB([A.oG(B.cw,!1,!1,!1,o),B.p,A.oG(B.c_,!1,!1,!1,o),B.p,A.oG(B.cw,!0,!1,!1,o),B.p,A.oG(B.c_,!0,!1,!1,o),B.p,A.oG(B.cw,!1,!0,!1,o),B.p,A.oG(B.c_,!1,!0,!1,o),B.p,A.oG(B.cw,!1,!1,!0,o),B.p,A.oG(B.c_,!1,!1,!0,o),B.p],q,l),n=n.geP(n),n=n.ga1(n);n.t();){m=n.gH(n) -k.n(0,m.gcG(m),m.gl(m))}}k.n(0,B.Lz,B.p) -k.n(0,B.LA,B.p) -k.n(0,B.LB,B.p) -k.n(0,B.LL,B.p) -k.n(0,B.LW,B.p) -k.n(0,B.M0,B.p) -k.n(0,B.M1,B.p) -k.n(0,B.M2,B.p) -k.n(0,B.lj,B.p) -k.n(0,B.lk,B.p) -k.n(0,B.ll,B.p) -k.n(0,B.li,B.p) -k.n(0,B.LC,B.p) -k.n(0,B.LD,B.p) -k.n(0,B.LE,B.p) -k.n(0,B.LF,B.p) -k.n(0,B.LG,B.p) -k.n(0,B.LH,B.p) -k.n(0,B.LI,B.p) -k.n(0,B.LJ,B.p) -k.n(0,B.LK,B.p) -k.n(0,B.LM,B.p) -k.n(0,B.LN,B.p) -k.n(0,B.LO,B.p) -k.n(0,B.LP,B.p) -k.n(0,B.LQ,B.p) -k.n(0,B.LR,B.p) -k.n(0,B.LS,B.p) -k.n(0,B.LT,B.p) -k.n(0,B.LU,B.p) -k.n(0,B.LV,B.p) -k.n(0,B.LX,B.p) -k.n(0,B.LY,B.p) -k.n(0,B.LZ,B.p) -k.n(0,B.vn,B.p) -k.n(0,B.vm,B.p) -k.n(0,B.M3,B.p) -k.n(0,B.M4,B.p) -k.n(0,B.M5,B.p) -k.n(0,B.M6,B.p) -k.n(0,B.M7,B.p) -k.n(0,B.M8,B.p) -k.n(0,B.M9,B.p) -k.n(0,B.Ma,B.p) -return k}) -r($,"aKW","amO",()=>new A.Pj(B.TA,B.a7)) -s($,"aKT","avc",()=>A.ec(1,0,t.i)) -r($,"aL0","ajE",()=>{var q=A.aE9(null),p=A.aAj(t.H) -return new A.Pi(B.l7,q,p)}) -s($,"aKS","avb",()=>A.bR(16667,0,0)) -s($,"aLx","avv",()=>A.aq1(0)) -s($,"aK2","auK",()=>A.aqX(0.5,1.1,100)) -s($,"aK3","auL",()=>{var q,p -A.aru() -q=$.bW() -p=q.gv8(q) -A.aru() -return new A.AI(1/q.gv8(q),1/(0.05*p))}) -s($,"aJd","aul",()=>A.atL(0.78)/A.atL(0.9)) -s($,"aMS","awj",()=>new A.a3G(A.z(t.N,A.a_("a7?(c1?)")))) -s($,"aLy","avw",()=>A.bZ('["\\x00-\\x1F\\x7F]',!0)) -s($,"aMP","awi",()=>A.bZ('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+',!0)) -s($,"aLU","avP",()=>A.bZ("(?:\\r\\n)?[ \\t]+",!0)) -s($,"aM1","avS",()=>A.bZ('"(?:[^"\\x00-\\x1F\\x7F]|\\\\.)*"',!0)) -s($,"aM0","avR",()=>A.bZ("\\\\(.)",!0)) -s($,"aME","awf",()=>A.bZ('[()<>@,;:"\\\\/\\[\\]?={} \\t\\x00-\\x1F\\x7F]',!0)) -s($,"aMT","awk",()=>A.bZ("(?:"+$.avP().a+")*",!0)) -s($,"aJP","auA",()=>new A.D()) -s($,"aMw","an0",()=>new A.Wa(A.a_("nS").a($.amF()),null)) -s($,"aKg","auR",()=>new A.JA(A.bZ("/",!0),A.bZ("[^/]$",!0),A.bZ("^/",!0))) -s($,"aKi","TI",()=>new A.Mj(A.bZ("[/\\\\]",!0),A.bZ("[^/\\\\]$",!0),A.bZ("^(\\\\\\\\[^\\\\]+\\\\[^\\\\/]+|[a-zA-Z]:[/\\\\])",!0),A.bZ("^[/\\\\](?![/\\\\])",!0))) -s($,"aKh","EM",()=>new A.M8(A.bZ("/",!0),A.bZ("(^[a-zA-Z][-+.a-zA-Z\\d]*://|[^/])$",!0),A.bZ("[a-zA-Z][-+.a-zA-Z\\d]*://[^/]*",!0),A.bZ("^/",!0))) -s($,"aKf","amF",()=>A.aDD()) -s($,"aLT","ajG",()=>A.aFG()) -s($,"aLz","amT",()=>A.aFF()) -r($,"aDf","amE",()=>new A.a1Z()) -r($,"aJL","l5",()=>{var q=new A.WK(),p=A.aCC() -q.a=B.no -return new A.a1A(q,p,new A.W6())}) -s($,"aKx","amG",()=>new A.D()) -r($,"aE6","aIX",()=>new A.a2_($.amG()))})();(function nativeSupport(){!function(){var s=function(a){var m={} -m[a]=1 -return Object.keys(hunkHelpers.convertToFastObject(m))[0]} -v.getIsolateTag=function(a){return s("___dart_"+a+v.isolateTag)} -var r="___dart_isolate_tags_" -var q=Object[r]||(Object[r]=Object.create(null)) -var p="_ZxYxX" -for(var o=0;;o++){var n=s(p+"_"+o+"_") -if(!(n in q)){q[n]=1 -v.isolateTag=n -break}}v.dispatchPropertyName=v.getIsolateTag("dispatch_record")}() -hunkHelpers.setOrUpdateInterceptorsByTag({WebGL:J.qT,AnimationEffectReadOnly:J.i,AnimationEffectTiming:J.i,AnimationEffectTimingReadOnly:J.i,AnimationTimeline:J.i,AnimationWorkletGlobalScope:J.i,AuthenticatorAssertionResponse:J.i,AuthenticatorAttestationResponse:J.i,AuthenticatorResponse:J.i,BackgroundFetchFetch:J.i,BackgroundFetchManager:J.i,BackgroundFetchSettledFetch:J.i,BarProp:J.i,BarcodeDetector:J.i,BluetoothRemoteGATTDescriptor:J.i,BudgetState:J.i,CacheStorage:J.i,CanvasGradient:J.i,CanvasPattern:J.i,Client:J.i,Clients:J.i,CookieStore:J.i,Coordinates:J.i,CredentialsContainer:J.i,Crypto:J.i,CryptoKey:J.i,CSS:J.i,CSSVariableReferenceValue:J.i,CustomElementRegistry:J.i,DataTransfer:J.i,DataTransferItem:J.i,DeprecatedStorageInfo:J.i,DeprecatedStorageQuota:J.i,DeprecationReport:J.i,DetectedBarcode:J.i,DetectedFace:J.i,DetectedText:J.i,DeviceAcceleration:J.i,DeviceRotationRate:J.i,DirectoryReader:J.i,WebKitDirectoryReader:J.i,webkitFileSystemDirectoryReader:J.i,FileSystemDirectoryReader:J.i,DocumentOrShadowRoot:J.i,DocumentTimeline:J.i,DOMImplementation:J.i,Iterator:J.i,DOMMatrix:J.i,DOMMatrixReadOnly:J.i,DOMParser:J.i,DOMPoint:J.i,DOMPointReadOnly:J.i,DOMQuad:J.i,DOMStringMap:J.i,External:J.i,FaceDetector:J.i,FontFaceSource:J.i,FormData:J.i,GamepadButton:J.i,GamepadPose:J.i,Geolocation:J.i,Position:J.i,GeolocationPosition:J.i,Headers:J.i,HTMLHyperlinkElementUtils:J.i,IdleDeadline:J.i,ImageBitmap:J.i,ImageBitmapRenderingContext:J.i,ImageCapture:J.i,InputDeviceCapabilities:J.i,IntersectionObserver:J.i,IntersectionObserverEntry:J.i,InterventionReport:J.i,KeyframeEffect:J.i,KeyframeEffectReadOnly:J.i,MediaCapabilities:J.i,MediaCapabilitiesInfo:J.i,MediaDeviceInfo:J.i,MediaError:J.i,MediaKeyStatusMap:J.i,MediaKeySystemAccess:J.i,MediaKeys:J.i,MediaKeysPolicy:J.i,MediaMetadata:J.i,MediaSession:J.i,MediaSettingsRange:J.i,MemoryInfo:J.i,MessageChannel:J.i,Metadata:J.i,NavigationPreloadManager:J.i,Navigator:J.i,NavigatorAutomationInformation:J.i,NavigatorConcurrentHardware:J.i,NavigatorCookies:J.i,NodeFilter:J.i,NodeIterator:J.i,NonDocumentTypeChildNode:J.i,NonElementParentNode:J.i,NoncedElement:J.i,OffscreenCanvasRenderingContext2D:J.i,PaintRenderingContext2D:J.i,PaintSize:J.i,PaintWorkletGlobalScope:J.i,Path2D:J.i,PaymentAddress:J.i,PaymentInstruments:J.i,PaymentManager:J.i,PaymentResponse:J.i,PerformanceNavigation:J.i,PerformanceObserver:J.i,PerformanceObserverEntryList:J.i,PerformanceTiming:J.i,Permissions:J.i,PhotoCapabilities:J.i,PositionError:J.i,GeolocationPositionError:J.i,Presentation:J.i,PresentationReceiver:J.i,PushManager:J.i,PushMessageData:J.i,PushSubscription:J.i,PushSubscriptionOptions:J.i,Range:J.i,RelatedApplication:J.i,ReportBody:J.i,ReportingObserver:J.i,ResizeObserver:J.i,ResizeObserverEntry:J.i,RTCCertificate:J.i,RTCIceCandidate:J.i,mozRTCIceCandidate:J.i,RTCLegacyStatsReport:J.i,RTCRtpContributingSource:J.i,RTCRtpReceiver:J.i,RTCRtpSender:J.i,RTCSessionDescription:J.i,mozRTCSessionDescription:J.i,RTCStatsResponse:J.i,Screen:J.i,ScrollState:J.i,ScrollTimeline:J.i,Selection:J.i,SharedArrayBuffer:J.i,SpeechRecognitionAlternative:J.i,StaticRange:J.i,StorageManager:J.i,StyleMedia:J.i,StylePropertyMap:J.i,StylePropertyMapReadonly:J.i,SyncManager:J.i,TextDetector:J.i,TextMetrics:J.i,TrackDefault:J.i,TreeWalker:J.i,TrustedHTML:J.i,TrustedScriptURL:J.i,TrustedURL:J.i,UnderlyingSourceBase:J.i,URLSearchParams:J.i,VRCoordinateSystem:J.i,VRDisplayCapabilities:J.i,VREyeParameters:J.i,VRFrameData:J.i,VRFrameOfReference:J.i,VRPose:J.i,VRStageBounds:J.i,VRStageBoundsPoint:J.i,VRStageParameters:J.i,ValidityState:J.i,VideoPlaybackQuality:J.i,VideoTrack:J.i,VTTRegion:J.i,WindowClient:J.i,WorkletAnimation:J.i,WorkletGlobalScope:J.i,XPathEvaluator:J.i,XPathExpression:J.i,XPathNSResolver:J.i,XPathResult:J.i,XMLSerializer:J.i,XSLTProcessor:J.i,Bluetooth:J.i,BluetoothCharacteristicProperties:J.i,BluetoothRemoteGATTServer:J.i,BluetoothRemoteGATTService:J.i,BluetoothUUID:J.i,BudgetService:J.i,Cache:J.i,DOMFileSystemSync:J.i,DirectoryEntrySync:J.i,DirectoryReaderSync:J.i,EntrySync:J.i,FileEntrySync:J.i,FileReaderSync:J.i,FileWriterSync:J.i,HTMLAllCollection:J.i,Mojo:J.i,MojoHandle:J.i,MojoWatcher:J.i,NFC:J.i,PagePopupController:J.i,Report:J.i,SubtleCrypto:J.i,USBAlternateInterface:J.i,USBConfiguration:J.i,USBDevice:J.i,USBEndpoint:J.i,USBInTransferResult:J.i,USBInterface:J.i,USBIsochronousInTransferPacket:J.i,USBIsochronousInTransferResult:J.i,USBIsochronousOutTransferPacket:J.i,USBIsochronousOutTransferResult:J.i,USBOutTransferResult:J.i,WorkerLocation:J.i,WorkerNavigator:J.i,Worklet:J.i,IDBCursor:J.i,IDBCursorWithValue:J.i,IDBFactory:J.i,IDBObservation:J.i,IDBObserver:J.i,IDBObserverChanges:J.i,SVGAngle:J.i,SVGAnimatedAngle:J.i,SVGAnimatedBoolean:J.i,SVGAnimatedEnumeration:J.i,SVGAnimatedInteger:J.i,SVGAnimatedLength:J.i,SVGAnimatedLengthList:J.i,SVGAnimatedNumber:J.i,SVGAnimatedNumberList:J.i,SVGAnimatedPreserveAspectRatio:J.i,SVGAnimatedRect:J.i,SVGAnimatedString:J.i,SVGAnimatedTransformList:J.i,SVGMatrix:J.i,SVGPoint:J.i,SVGPreserveAspectRatio:J.i,SVGRect:J.i,SVGUnitTypes:J.i,AudioListener:J.i,AudioParam:J.i,AudioTrack:J.i,AudioWorkletGlobalScope:J.i,AudioWorkletProcessor:J.i,PeriodicWave:J.i,ANGLEInstancedArrays:J.i,ANGLE_instanced_arrays:J.i,WebGLBuffer:J.i,WebGLCanvas:J.i,WebGLColorBufferFloat:J.i,WebGLCompressedTextureASTC:J.i,WebGLCompressedTextureATC:J.i,WEBGL_compressed_texture_atc:J.i,WebGLCompressedTextureETC1:J.i,WEBGL_compressed_texture_etc1:J.i,WebGLCompressedTextureETC:J.i,WebGLCompressedTexturePVRTC:J.i,WEBGL_compressed_texture_pvrtc:J.i,WebGLCompressedTextureS3TC:J.i,WEBGL_compressed_texture_s3tc:J.i,WebGLCompressedTextureS3TCsRGB:J.i,WebGLDebugRendererInfo:J.i,WEBGL_debug_renderer_info:J.i,WebGLDebugShaders:J.i,WEBGL_debug_shaders:J.i,WebGLDepthTexture:J.i,WEBGL_depth_texture:J.i,WebGLDrawBuffers:J.i,WEBGL_draw_buffers:J.i,EXTsRGB:J.i,EXT_sRGB:J.i,EXTBlendMinMax:J.i,EXT_blend_minmax:J.i,EXTColorBufferFloat:J.i,EXTColorBufferHalfFloat:J.i,EXTDisjointTimerQuery:J.i,EXTDisjointTimerQueryWebGL2:J.i,EXTFragDepth:J.i,EXT_frag_depth:J.i,EXTShaderTextureLOD:J.i,EXT_shader_texture_lod:J.i,EXTTextureFilterAnisotropic:J.i,EXT_texture_filter_anisotropic:J.i,WebGLFramebuffer:J.i,WebGLGetBufferSubDataAsync:J.i,WebGLLoseContext:J.i,WebGLExtensionLoseContext:J.i,WEBGL_lose_context:J.i,OESElementIndexUint:J.i,OES_element_index_uint:J.i,OESStandardDerivatives:J.i,OES_standard_derivatives:J.i,OESTextureFloat:J.i,OES_texture_float:J.i,OESTextureFloatLinear:J.i,OES_texture_float_linear:J.i,OESTextureHalfFloat:J.i,OES_texture_half_float:J.i,OESTextureHalfFloatLinear:J.i,OES_texture_half_float_linear:J.i,OESVertexArrayObject:J.i,OES_vertex_array_object:J.i,WebGLProgram:J.i,WebGLQuery:J.i,WebGLRenderbuffer:J.i,WebGLRenderingContext:J.i,WebGL2RenderingContext:J.i,WebGLSampler:J.i,WebGLShader:J.i,WebGLShaderPrecisionFormat:J.i,WebGLSync:J.i,WebGLTexture:J.i,WebGLTimerQueryEXT:J.i,WebGLTransformFeedback:J.i,WebGLUniformLocation:J.i,WebGLVertexArrayObject:J.i,WebGLVertexArrayObjectOES:J.i,WebGL2RenderingContextBase:J.i,ArrayBuffer:A.o6,ArrayBufferView:A.dj,DataView:A.y6,Float32Array:A.y7,Float64Array:A.Iy,Int16Array:A.Iz,Int32Array:A.y8,Int8Array:A.IA,Uint16Array:A.IB,Uint32Array:A.y9,Uint8ClampedArray:A.ya,CanvasPixelArray:A.ya,Uint8Array:A.o7,HTMLAudioElement:A.ad,HTMLBRElement:A.ad,HTMLContentElement:A.ad,HTMLDListElement:A.ad,HTMLDataElement:A.ad,HTMLDataListElement:A.ad,HTMLDetailsElement:A.ad,HTMLDialogElement:A.ad,HTMLHRElement:A.ad,HTMLHeadElement:A.ad,HTMLHeadingElement:A.ad,HTMLHtmlElement:A.ad,HTMLLIElement:A.ad,HTMLLegendElement:A.ad,HTMLMediaElement:A.ad,HTMLMenuElement:A.ad,HTMLMeterElement:A.ad,HTMLModElement:A.ad,HTMLOListElement:A.ad,HTMLOptGroupElement:A.ad,HTMLOptionElement:A.ad,HTMLPictureElement:A.ad,HTMLPreElement:A.ad,HTMLProgressElement:A.ad,HTMLQuoteElement:A.ad,HTMLShadowElement:A.ad,HTMLSourceElement:A.ad,HTMLSpanElement:A.ad,HTMLTableCaptionElement:A.ad,HTMLTableCellElement:A.ad,HTMLTableDataCellElement:A.ad,HTMLTableHeaderCellElement:A.ad,HTMLTableColElement:A.ad,HTMLTimeElement:A.ad,HTMLTitleElement:A.ad,HTMLTrackElement:A.ad,HTMLUListElement:A.ad,HTMLUnknownElement:A.ad,HTMLVideoElement:A.ad,HTMLDirectoryElement:A.ad,HTMLFontElement:A.ad,HTMLFrameElement:A.ad,HTMLFrameSetElement:A.ad,HTMLMarqueeElement:A.ad,HTMLElement:A.ad,AccessibleNodeList:A.U8,HTMLAnchorElement:A.F0,HTMLAreaElement:A.F6,HTMLBaseElement:A.pU,Blob:A.mX,BlobEvent:A.Fl,Body:A.fT,Request:A.fT,Response:A.fT,HTMLBodyElement:A.mY,BroadcastChannel:A.UX,HTMLButtonElement:A.Fw,HTMLCanvasElement:A.n2,CanvasRenderingContext2D:A.FB,CDATASection:A.iI,CharacterData:A.iI,Comment:A.iI,ProcessingInstruction:A.iI,Text:A.iI,CompositionEvent:A.Gn,PublicKeyCredential:A.w4,Credential:A.w4,CredentialUserData:A.We,CSSKeyframesRule:A.qb,MozCSSKeyframesRule:A.qb,WebKitCSSKeyframesRule:A.qb,CSSPerspective:A.Wf,CSSCharsetRule:A.c4,CSSConditionRule:A.c4,CSSFontFaceRule:A.c4,CSSGroupingRule:A.c4,CSSImportRule:A.c4,CSSKeyframeRule:A.c4,MozCSSKeyframeRule:A.c4,WebKitCSSKeyframeRule:A.c4,CSSMediaRule:A.c4,CSSNamespaceRule:A.c4,CSSPageRule:A.c4,CSSStyleRule:A.c4,CSSSupportsRule:A.c4,CSSViewportRule:A.c4,CSSRule:A.c4,CSSStyleDeclaration:A.qc,MSStyleCSSProperties:A.qc,CSS2Properties:A.qc,CSSStyleSheet:A.qd,CSSImageValue:A.hC,CSSKeywordValue:A.hC,CSSNumericValue:A.hC,CSSPositionValue:A.hC,CSSResourceValue:A.hC,CSSUnitValue:A.hC,CSSURLImageValue:A.hC,CSSStyleValue:A.hC,CSSMatrixComponent:A.jP,CSSRotation:A.jP,CSSScale:A.jP,CSSSkew:A.jP,CSSTranslation:A.jP,CSSTransformComponent:A.jP,CSSTransformValue:A.Wh,CSSUnparsedValue:A.Wi,DataTransferItemList:A.Ws,HTMLDivElement:A.wj,XMLDocument:A.iO,Document:A.iO,DOMError:A.Xv,DOMException:A.nh,ClientRectList:A.wn,DOMRectList:A.wn,DOMRectReadOnly:A.wo,DOMStringList:A.GQ,DOMTokenList:A.Xw,Element:A.am,HTMLEmbedElement:A.GT,DirectoryEntry:A.hG,webkitFileSystemDirectoryEntry:A.hG,FileSystemDirectoryEntry:A.hG,Entry:A.hG,webkitFileSystemEntry:A.hG,FileSystemEntry:A.hG,FileEntry:A.hG,webkitFileSystemFileEntry:A.hG,FileSystemFileEntry:A.hG,AnimationEvent:A.ah,AnimationPlaybackEvent:A.ah,ApplicationCacheErrorEvent:A.ah,BeforeInstallPromptEvent:A.ah,BeforeUnloadEvent:A.ah,ClipboardEvent:A.ah,CloseEvent:A.ah,CustomEvent:A.ah,DeviceMotionEvent:A.ah,DeviceOrientationEvent:A.ah,ErrorEvent:A.ah,FontFaceSetLoadEvent:A.ah,GamepadEvent:A.ah,HashChangeEvent:A.ah,MediaEncryptedEvent:A.ah,MediaKeyMessageEvent:A.ah,MediaStreamEvent:A.ah,MediaStreamTrackEvent:A.ah,MIDIConnectionEvent:A.ah,MutationEvent:A.ah,PageTransitionEvent:A.ah,PaymentRequestUpdateEvent:A.ah,PopStateEvent:A.ah,PresentationConnectionAvailableEvent:A.ah,PresentationConnectionCloseEvent:A.ah,PromiseRejectionEvent:A.ah,RTCDataChannelEvent:A.ah,RTCDTMFToneChangeEvent:A.ah,RTCPeerConnectionIceEvent:A.ah,RTCTrackEvent:A.ah,SecurityPolicyViolationEvent:A.ah,SensorErrorEvent:A.ah,SpeechRecognitionError:A.ah,SpeechRecognitionEvent:A.ah,StorageEvent:A.ah,TrackEvent:A.ah,TransitionEvent:A.ah,WebKitTransitionEvent:A.ah,VRDeviceEvent:A.ah,VRDisplayEvent:A.ah,VRSessionEvent:A.ah,MojoInterfaceRequestEvent:A.ah,USBConnectionEvent:A.ah,AudioProcessingEvent:A.ah,OfflineAudioCompletionEvent:A.ah,WebGLContextEvent:A.ah,Event:A.ah,InputEvent:A.ah,SubmitEvent:A.ah,AbsoluteOrientationSensor:A.a2,Accelerometer:A.a2,AccessibleNode:A.a2,AmbientLightSensor:A.a2,Animation:A.a2,ApplicationCache:A.a2,DOMApplicationCache:A.a2,OfflineResourceList:A.a2,BackgroundFetchRegistration:A.a2,BatteryManager:A.a2,CanvasCaptureMediaStreamTrack:A.a2,EventSource:A.a2,FileReader:A.a2,FontFaceSet:A.a2,Gyroscope:A.a2,LinearAccelerationSensor:A.a2,Magnetometer:A.a2,MediaDevices:A.a2,MediaRecorder:A.a2,MediaSource:A.a2,MediaStream:A.a2,MediaStreamTrack:A.a2,MIDIAccess:A.a2,NetworkInformation:A.a2,OrientationSensor:A.a2,PaymentRequest:A.a2,PermissionStatus:A.a2,PresentationAvailability:A.a2,PresentationConnection:A.a2,PresentationConnectionList:A.a2,PresentationRequest:A.a2,RelativeOrientationSensor:A.a2,RemotePlayback:A.a2,RTCDataChannel:A.a2,DataChannel:A.a2,RTCDTMFSender:A.a2,RTCPeerConnection:A.a2,webkitRTCPeerConnection:A.a2,mozRTCPeerConnection:A.a2,Sensor:A.a2,ServiceWorker:A.a2,ServiceWorkerContainer:A.a2,ServiceWorkerRegistration:A.a2,SharedWorker:A.a2,SpeechRecognition:A.a2,SpeechSynthesis:A.a2,SpeechSynthesisUtterance:A.a2,VR:A.a2,VRDevice:A.a2,VRDisplay:A.a2,VRSession:A.a2,VisualViewport:A.a2,WebSocket:A.a2,Worker:A.a2,WorkerPerformance:A.a2,BluetoothDevice:A.a2,BluetoothRemoteGATTCharacteristic:A.a2,Clipboard:A.a2,MojoInterfaceInterceptor:A.a2,USB:A.a2,IDBOpenDBRequest:A.a2,IDBVersionChangeRequest:A.a2,IDBRequest:A.a2,IDBTransaction:A.a2,AnalyserNode:A.a2,RealtimeAnalyserNode:A.a2,AudioBufferSourceNode:A.a2,AudioDestinationNode:A.a2,AudioNode:A.a2,AudioScheduledSourceNode:A.a2,AudioWorkletNode:A.a2,BiquadFilterNode:A.a2,ChannelMergerNode:A.a2,AudioChannelMerger:A.a2,ChannelSplitterNode:A.a2,AudioChannelSplitter:A.a2,ConstantSourceNode:A.a2,ConvolverNode:A.a2,DelayNode:A.a2,DynamicsCompressorNode:A.a2,GainNode:A.a2,AudioGainNode:A.a2,IIRFilterNode:A.a2,MediaElementAudioSourceNode:A.a2,MediaStreamAudioDestinationNode:A.a2,MediaStreamAudioSourceNode:A.a2,OscillatorNode:A.a2,Oscillator:A.a2,PannerNode:A.a2,AudioPannerNode:A.a2,webkitAudioPannerNode:A.a2,ScriptProcessorNode:A.a2,JavaScriptAudioNode:A.a2,StereoPannerNode:A.a2,WaveShaperNode:A.a2,EventTarget:A.a2,AbortPaymentEvent:A.dK,BackgroundFetchClickEvent:A.dK,BackgroundFetchEvent:A.dK,BackgroundFetchFailEvent:A.dK,BackgroundFetchedEvent:A.dK,CanMakePaymentEvent:A.dK,FetchEvent:A.dK,ForeignFetchEvent:A.dK,InstallEvent:A.dK,NotificationEvent:A.dK,PaymentRequestEvent:A.dK,SyncEvent:A.dK,ExtendableEvent:A.dK,ExtendableMessageEvent:A.H6,FederatedCredential:A.YO,HTMLFieldSetElement:A.H9,File:A.fq,FileList:A.qw,DOMFileSystem:A.qx,WebKitFileSystem:A.qx,webkitFileSystem:A.qx,FileSystem:A.qx,FileWriter:A.YQ,FontFace:A.ny,HTMLFormElement:A.jW,Gamepad:A.hJ,History:A.a_L,HTMLCollection:A.nF,HTMLFormControlsCollection:A.nF,HTMLOptionsCollection:A.nF,HTMLDocument:A.wZ,XMLHttpRequest:A.lt,XMLHttpRequestUpload:A.x0,XMLHttpRequestEventTarget:A.x0,HTMLIFrameElement:A.HH,ImageData:A.x7,HTMLImageElement:A.nK,HTMLInputElement:A.nP,KeyboardEvent:A.k4,HTMLLabelElement:A.xr,HTMLLinkElement:A.xw,Location:A.a1r,HTMLMapElement:A.Ig,MediaKeySession:A.a1S,MediaList:A.a1T,MediaQueryList:A.Ik,MediaQueryListEvent:A.r8,MessageEvent:A.Im,MessagePort:A.y_,HTMLMetaElement:A.lK,MIDIInputMap:A.In,MIDIMessageEvent:A.Io,MIDIOutputMap:A.Ip,MIDIInput:A.y0,MIDIOutput:A.y0,MIDIPort:A.y0,MimeType:A.hT,MimeTypeArray:A.Iq,MouseEvent:A.eK,DragEvent:A.eK,MutationObserver:A.kc,WebKitMutationObserver:A.kc,MutationRecord:A.y4,NavigatorUserMediaError:A.a2B,DocumentFragment:A.a6,ShadowRoot:A.a6,DocumentType:A.a6,Node:A.a6,NodeList:A.ra,RadioNodeList:A.ra,Notification:A.a2K,HTMLObjectElement:A.IK,OffscreenCanvas:A.IL,HTMLOutputElement:A.IS,OverconstrainedError:A.a2X,HTMLParagraphElement:A.yw,HTMLParamElement:A.Jd,PasswordCredential:A.a3h,Performance:A.Jg,PerformanceEntry:A.j8,PerformanceLongTaskTiming:A.j8,PerformanceMark:A.j8,PerformanceMeasure:A.j8,PerformanceNavigationTiming:A.j8,PerformancePaintTiming:A.j8,PerformanceResourceTiming:A.j8,TaskAttributionTiming:A.j8,PerformanceServerTiming:A.a3m,Plugin:A.i_,PluginArray:A.Jw,PointerEvent:A.kj,ProgressEvent:A.fy,ResourceProgressEvent:A.fy,PushEvent:A.JI,RTCStatsReport:A.Kv,ScreenOrientation:A.a6d,HTMLScriptElement:A.zD,HTMLSelectElement:A.KK,SharedWorkerGlobalScope:A.KS,HTMLSlotElement:A.Le,SourceBuffer:A.i9,SourceBufferList:A.Li,SpeechGrammar:A.ib,SpeechGrammarList:A.Lo,SpeechRecognitionResult:A.ic,SpeechSynthesisEvent:A.Lp,SpeechSynthesisVoice:A.a8A,Storage:A.Ae,HTMLStyleElement:A.Ag,StyleSheet:A.fE,HTMLTableElement:A.Am,HTMLTableRowElement:A.LA,HTMLTableSectionElement:A.LB,HTMLTemplateElement:A.tq,HTMLTextAreaElement:A.ts,TextEvent:A.LK,TextTrack:A.ii,TextTrackCue:A.fG,VTTCue:A.fG,TextTrackCueList:A.LR,TextTrackList:A.LS,TimeRanges:A.a9V,Touch:A.ij,TouchEvent:A.mr,TouchList:A.AM,TrackDefaultList:A.aa6,FocusEvent:A.oY,UIEvent:A.oY,URL:A.aao,VideoTrackList:A.aaA,WheelEvent:A.p1,Window:A.p3,DOMWindow:A.p3,DedicatedWorkerGlobalScope:A.jx,ServiceWorkerGlobalScope:A.jx,WorkerGlobalScope:A.jx,Attr:A.tM,CSSRuleList:A.Nj,ClientRect:A.Bm,DOMRect:A.Bm,GamepadList:A.Oi,NamedNodeMap:A.Cm,MozNamedAttrMap:A.Cm,SpeechRecognitionResultList:A.Re,StyleSheetList:A.Rs,IDBDatabase:A.Wt,IDBIndex:A.a0r,IDBKeyRange:A.xo,IDBObjectStore:A.a2R,IDBVersionChangeEvent:A.Md,SVGClipPathElement:A.q4,SVGDefsElement:A.qg,SVGFEBlendElement:A.qs,SVGFEColorMatrixElement:A.qt,SVGFECompositeElement:A.qu,SVGFEFloodElement:A.qv,SVGFilterElement:A.qy,SVGCircleElement:A.h1,SVGEllipseElement:A.h1,SVGLineElement:A.h1,SVGPolygonElement:A.h1,SVGPolylineElement:A.h1,SVGRectElement:A.h1,SVGGeometryElement:A.h1,SVGAElement:A.e1,SVGForeignObjectElement:A.e1,SVGGElement:A.e1,SVGImageElement:A.e1,SVGSwitchElement:A.e1,SVGTSpanElement:A.e1,SVGTextContentElement:A.e1,SVGTextElement:A.e1,SVGTextPathElement:A.e1,SVGTextPositioningElement:A.e1,SVGUseElement:A.e1,SVGGraphicsElement:A.e1,SVGLength:A.k6,SVGLengthList:A.I9,SVGNumber:A.kf,SVGNumberList:A.IJ,SVGPathElement:A.rg,SVGPointList:A.a3H,SVGScriptElement:A.rB,SVGStringList:A.Lu,SVGAnimateElement:A.aH,SVGAnimateMotionElement:A.aH,SVGAnimateTransformElement:A.aH,SVGAnimationElement:A.aH,SVGDescElement:A.aH,SVGDiscardElement:A.aH,SVGFEComponentTransferElement:A.aH,SVGFEConvolveMatrixElement:A.aH,SVGFEDiffuseLightingElement:A.aH,SVGFEDisplacementMapElement:A.aH,SVGFEDistantLightElement:A.aH,SVGFEFuncAElement:A.aH,SVGFEFuncBElement:A.aH,SVGFEFuncGElement:A.aH,SVGFEFuncRElement:A.aH,SVGFEGaussianBlurElement:A.aH,SVGFEImageElement:A.aH,SVGFEMergeElement:A.aH,SVGFEMergeNodeElement:A.aH,SVGFEMorphologyElement:A.aH,SVGFEOffsetElement:A.aH,SVGFEPointLightElement:A.aH,SVGFESpecularLightingElement:A.aH,SVGFESpotLightElement:A.aH,SVGFETileElement:A.aH,SVGFETurbulenceElement:A.aH,SVGLinearGradientElement:A.aH,SVGMarkerElement:A.aH,SVGMaskElement:A.aH,SVGMetadataElement:A.aH,SVGPatternElement:A.aH,SVGRadialGradientElement:A.aH,SVGSetElement:A.aH,SVGStopElement:A.aH,SVGStyleElement:A.aH,SVGSymbolElement:A.aH,SVGTitleElement:A.aH,SVGViewElement:A.aH,SVGGradientElement:A.aH,SVGComponentTransferFunctionElement:A.aH,SVGFEDropShadowElement:A.aH,SVGMPathElement:A.aH,SVGElement:A.aH,SVGSVGElement:A.oM,SVGTransform:A.kC,SVGTransformList:A.M1,AudioBuffer:A.UI,AudioParamMap:A.Fa,AudioTrackList:A.UL,AudioContext:A.pT,webkitAudioContext:A.pT,BaseAudioContext:A.pT,OfflineAudioContext:A.a2T,WebGLActiveInfo:A.Uf}) -hunkHelpers.setOrUpdateLeafTags({WebGL:true,AnimationEffectReadOnly:true,AnimationEffectTiming:true,AnimationEffectTimingReadOnly:true,AnimationTimeline:true,AnimationWorkletGlobalScope:true,AuthenticatorAssertionResponse:true,AuthenticatorAttestationResponse:true,AuthenticatorResponse:true,BackgroundFetchFetch:true,BackgroundFetchManager:true,BackgroundFetchSettledFetch:true,BarProp:true,BarcodeDetector:true,BluetoothRemoteGATTDescriptor:true,BudgetState:true,CacheStorage:true,CanvasGradient:true,CanvasPattern:true,Client:true,Clients:true,CookieStore:true,Coordinates:true,CredentialsContainer:true,Crypto:true,CryptoKey:true,CSS:true,CSSVariableReferenceValue:true,CustomElementRegistry:true,DataTransfer:true,DataTransferItem:true,DeprecatedStorageInfo:true,DeprecatedStorageQuota:true,DeprecationReport:true,DetectedBarcode:true,DetectedFace:true,DetectedText:true,DeviceAcceleration:true,DeviceRotationRate:true,DirectoryReader:true,WebKitDirectoryReader:true,webkitFileSystemDirectoryReader:true,FileSystemDirectoryReader:true,DocumentOrShadowRoot:true,DocumentTimeline:true,DOMImplementation:true,Iterator:true,DOMMatrix:true,DOMMatrixReadOnly:true,DOMParser:true,DOMPoint:true,DOMPointReadOnly:true,DOMQuad:true,DOMStringMap:true,External:true,FaceDetector:true,FontFaceSource:true,FormData:true,GamepadButton:true,GamepadPose:true,Geolocation:true,Position:true,GeolocationPosition:true,Headers:true,HTMLHyperlinkElementUtils:true,IdleDeadline:true,ImageBitmap:true,ImageBitmapRenderingContext:true,ImageCapture:true,InputDeviceCapabilities:true,IntersectionObserver:true,IntersectionObserverEntry:true,InterventionReport:true,KeyframeEffect:true,KeyframeEffectReadOnly:true,MediaCapabilities:true,MediaCapabilitiesInfo:true,MediaDeviceInfo:true,MediaError:true,MediaKeyStatusMap:true,MediaKeySystemAccess:true,MediaKeys:true,MediaKeysPolicy:true,MediaMetadata:true,MediaSession:true,MediaSettingsRange:true,MemoryInfo:true,MessageChannel:true,Metadata:true,NavigationPreloadManager:true,Navigator:true,NavigatorAutomationInformation:true,NavigatorConcurrentHardware:true,NavigatorCookies:true,NodeFilter:true,NodeIterator:true,NonDocumentTypeChildNode:true,NonElementParentNode:true,NoncedElement:true,OffscreenCanvasRenderingContext2D:true,PaintRenderingContext2D:true,PaintSize:true,PaintWorkletGlobalScope:true,Path2D:true,PaymentAddress:true,PaymentInstruments:true,PaymentManager:true,PaymentResponse:true,PerformanceNavigation:true,PerformanceObserver:true,PerformanceObserverEntryList:true,PerformanceTiming:true,Permissions:true,PhotoCapabilities:true,PositionError:true,GeolocationPositionError:true,Presentation:true,PresentationReceiver:true,PushManager:true,PushMessageData:true,PushSubscription:true,PushSubscriptionOptions:true,Range:true,RelatedApplication:true,ReportBody:true,ReportingObserver:true,ResizeObserver:true,ResizeObserverEntry:true,RTCCertificate:true,RTCIceCandidate:true,mozRTCIceCandidate:true,RTCLegacyStatsReport:true,RTCRtpContributingSource:true,RTCRtpReceiver:true,RTCRtpSender:true,RTCSessionDescription:true,mozRTCSessionDescription:true,RTCStatsResponse:true,Screen:true,ScrollState:true,ScrollTimeline:true,Selection:true,SharedArrayBuffer:true,SpeechRecognitionAlternative:true,StaticRange:true,StorageManager:true,StyleMedia:true,StylePropertyMap:true,StylePropertyMapReadonly:true,SyncManager:true,TextDetector:true,TextMetrics:true,TrackDefault:true,TreeWalker:true,TrustedHTML:true,TrustedScriptURL:true,TrustedURL:true,UnderlyingSourceBase:true,URLSearchParams:true,VRCoordinateSystem:true,VRDisplayCapabilities:true,VREyeParameters:true,VRFrameData:true,VRFrameOfReference:true,VRPose:true,VRStageBounds:true,VRStageBoundsPoint:true,VRStageParameters:true,ValidityState:true,VideoPlaybackQuality:true,VideoTrack:true,VTTRegion:true,WindowClient:true,WorkletAnimation:true,WorkletGlobalScope:true,XPathEvaluator:true,XPathExpression:true,XPathNSResolver:true,XPathResult:true,XMLSerializer:true,XSLTProcessor:true,Bluetooth:true,BluetoothCharacteristicProperties:true,BluetoothRemoteGATTServer:true,BluetoothRemoteGATTService:true,BluetoothUUID:true,BudgetService:true,Cache:true,DOMFileSystemSync:true,DirectoryEntrySync:true,DirectoryReaderSync:true,EntrySync:true,FileEntrySync:true,FileReaderSync:true,FileWriterSync:true,HTMLAllCollection:true,Mojo:true,MojoHandle:true,MojoWatcher:true,NFC:true,PagePopupController:true,Report:true,SubtleCrypto:true,USBAlternateInterface:true,USBConfiguration:true,USBDevice:true,USBEndpoint:true,USBInTransferResult:true,USBInterface:true,USBIsochronousInTransferPacket:true,USBIsochronousInTransferResult:true,USBIsochronousOutTransferPacket:true,USBIsochronousOutTransferResult:true,USBOutTransferResult:true,WorkerLocation:true,WorkerNavigator:true,Worklet:true,IDBCursor:true,IDBCursorWithValue:true,IDBFactory:true,IDBObservation:true,IDBObserver:true,IDBObserverChanges:true,SVGAngle:true,SVGAnimatedAngle:true,SVGAnimatedBoolean:true,SVGAnimatedEnumeration:true,SVGAnimatedInteger:true,SVGAnimatedLength:true,SVGAnimatedLengthList:true,SVGAnimatedNumber:true,SVGAnimatedNumberList:true,SVGAnimatedPreserveAspectRatio:true,SVGAnimatedRect:true,SVGAnimatedString:true,SVGAnimatedTransformList:true,SVGMatrix:true,SVGPoint:true,SVGPreserveAspectRatio:true,SVGRect:true,SVGUnitTypes:true,AudioListener:true,AudioParam:true,AudioTrack:true,AudioWorkletGlobalScope:true,AudioWorkletProcessor:true,PeriodicWave:true,ANGLEInstancedArrays:true,ANGLE_instanced_arrays:true,WebGLBuffer:true,WebGLCanvas:true,WebGLColorBufferFloat:true,WebGLCompressedTextureASTC:true,WebGLCompressedTextureATC:true,WEBGL_compressed_texture_atc:true,WebGLCompressedTextureETC1:true,WEBGL_compressed_texture_etc1:true,WebGLCompressedTextureETC:true,WebGLCompressedTexturePVRTC:true,WEBGL_compressed_texture_pvrtc:true,WebGLCompressedTextureS3TC:true,WEBGL_compressed_texture_s3tc:true,WebGLCompressedTextureS3TCsRGB:true,WebGLDebugRendererInfo:true,WEBGL_debug_renderer_info:true,WebGLDebugShaders:true,WEBGL_debug_shaders:true,WebGLDepthTexture:true,WEBGL_depth_texture:true,WebGLDrawBuffers:true,WEBGL_draw_buffers:true,EXTsRGB:true,EXT_sRGB:true,EXTBlendMinMax:true,EXT_blend_minmax:true,EXTColorBufferFloat:true,EXTColorBufferHalfFloat:true,EXTDisjointTimerQuery:true,EXTDisjointTimerQueryWebGL2:true,EXTFragDepth:true,EXT_frag_depth:true,EXTShaderTextureLOD:true,EXT_shader_texture_lod:true,EXTTextureFilterAnisotropic:true,EXT_texture_filter_anisotropic:true,WebGLFramebuffer:true,WebGLGetBufferSubDataAsync:true,WebGLLoseContext:true,WebGLExtensionLoseContext:true,WEBGL_lose_context:true,OESElementIndexUint:true,OES_element_index_uint:true,OESStandardDerivatives:true,OES_standard_derivatives:true,OESTextureFloat:true,OES_texture_float:true,OESTextureFloatLinear:true,OES_texture_float_linear:true,OESTextureHalfFloat:true,OES_texture_half_float:true,OESTextureHalfFloatLinear:true,OES_texture_half_float_linear:true,OESVertexArrayObject:true,OES_vertex_array_object:true,WebGLProgram:true,WebGLQuery:true,WebGLRenderbuffer:true,WebGLRenderingContext:true,WebGL2RenderingContext:true,WebGLSampler:true,WebGLShader:true,WebGLShaderPrecisionFormat:true,WebGLSync:true,WebGLTexture:true,WebGLTimerQueryEXT:true,WebGLTransformFeedback:true,WebGLUniformLocation:true,WebGLVertexArrayObject:true,WebGLVertexArrayObjectOES:true,WebGL2RenderingContextBase:true,ArrayBuffer:true,ArrayBufferView:false,DataView:true,Float32Array:true,Float64Array:true,Int16Array:true,Int32Array:true,Int8Array:true,Uint16Array:true,Uint32Array:true,Uint8ClampedArray:true,CanvasPixelArray:true,Uint8Array:false,HTMLAudioElement:true,HTMLBRElement:true,HTMLContentElement:true,HTMLDListElement:true,HTMLDataElement:true,HTMLDataListElement:true,HTMLDetailsElement:true,HTMLDialogElement:true,HTMLHRElement:true,HTMLHeadElement:true,HTMLHeadingElement:true,HTMLHtmlElement:true,HTMLLIElement:true,HTMLLegendElement:true,HTMLMediaElement:true,HTMLMenuElement:true,HTMLMeterElement:true,HTMLModElement:true,HTMLOListElement:true,HTMLOptGroupElement:true,HTMLOptionElement:true,HTMLPictureElement:true,HTMLPreElement:true,HTMLProgressElement:true,HTMLQuoteElement:true,HTMLShadowElement:true,HTMLSourceElement:true,HTMLSpanElement:true,HTMLTableCaptionElement:true,HTMLTableCellElement:true,HTMLTableDataCellElement:true,HTMLTableHeaderCellElement:true,HTMLTableColElement:true,HTMLTimeElement:true,HTMLTitleElement:true,HTMLTrackElement:true,HTMLUListElement:true,HTMLUnknownElement:true,HTMLVideoElement:true,HTMLDirectoryElement:true,HTMLFontElement:true,HTMLFrameElement:true,HTMLFrameSetElement:true,HTMLMarqueeElement:true,HTMLElement:false,AccessibleNodeList:true,HTMLAnchorElement:true,HTMLAreaElement:true,HTMLBaseElement:true,Blob:false,BlobEvent:true,Body:true,Request:true,Response:true,HTMLBodyElement:true,BroadcastChannel:true,HTMLButtonElement:true,HTMLCanvasElement:true,CanvasRenderingContext2D:true,CDATASection:true,CharacterData:true,Comment:true,ProcessingInstruction:true,Text:true,CompositionEvent:true,PublicKeyCredential:true,Credential:false,CredentialUserData:true,CSSKeyframesRule:true,MozCSSKeyframesRule:true,WebKitCSSKeyframesRule:true,CSSPerspective:true,CSSCharsetRule:true,CSSConditionRule:true,CSSFontFaceRule:true,CSSGroupingRule:true,CSSImportRule:true,CSSKeyframeRule:true,MozCSSKeyframeRule:true,WebKitCSSKeyframeRule:true,CSSMediaRule:true,CSSNamespaceRule:true,CSSPageRule:true,CSSStyleRule:true,CSSSupportsRule:true,CSSViewportRule:true,CSSRule:false,CSSStyleDeclaration:true,MSStyleCSSProperties:true,CSS2Properties:true,CSSStyleSheet:true,CSSImageValue:true,CSSKeywordValue:true,CSSNumericValue:true,CSSPositionValue:true,CSSResourceValue:true,CSSUnitValue:true,CSSURLImageValue:true,CSSStyleValue:false,CSSMatrixComponent:true,CSSRotation:true,CSSScale:true,CSSSkew:true,CSSTranslation:true,CSSTransformComponent:false,CSSTransformValue:true,CSSUnparsedValue:true,DataTransferItemList:true,HTMLDivElement:true,XMLDocument:true,Document:false,DOMError:true,DOMException:true,ClientRectList:true,DOMRectList:true,DOMRectReadOnly:false,DOMStringList:true,DOMTokenList:true,Element:false,HTMLEmbedElement:true,DirectoryEntry:true,webkitFileSystemDirectoryEntry:true,FileSystemDirectoryEntry:true,Entry:true,webkitFileSystemEntry:true,FileSystemEntry:true,FileEntry:true,webkitFileSystemFileEntry:true,FileSystemFileEntry:true,AnimationEvent:true,AnimationPlaybackEvent:true,ApplicationCacheErrorEvent:true,BeforeInstallPromptEvent:true,BeforeUnloadEvent:true,ClipboardEvent:true,CloseEvent:true,CustomEvent:true,DeviceMotionEvent:true,DeviceOrientationEvent:true,ErrorEvent:true,FontFaceSetLoadEvent:true,GamepadEvent:true,HashChangeEvent:true,MediaEncryptedEvent:true,MediaKeyMessageEvent:true,MediaStreamEvent:true,MediaStreamTrackEvent:true,MIDIConnectionEvent:true,MutationEvent:true,PageTransitionEvent:true,PaymentRequestUpdateEvent:true,PopStateEvent:true,PresentationConnectionAvailableEvent:true,PresentationConnectionCloseEvent:true,PromiseRejectionEvent:true,RTCDataChannelEvent:true,RTCDTMFToneChangeEvent:true,RTCPeerConnectionIceEvent:true,RTCTrackEvent:true,SecurityPolicyViolationEvent:true,SensorErrorEvent:true,SpeechRecognitionError:true,SpeechRecognitionEvent:true,StorageEvent:true,TrackEvent:true,TransitionEvent:true,WebKitTransitionEvent:true,VRDeviceEvent:true,VRDisplayEvent:true,VRSessionEvent:true,MojoInterfaceRequestEvent:true,USBConnectionEvent:true,AudioProcessingEvent:true,OfflineAudioCompletionEvent:true,WebGLContextEvent:true,Event:false,InputEvent:false,SubmitEvent:false,AbsoluteOrientationSensor:true,Accelerometer:true,AccessibleNode:true,AmbientLightSensor:true,Animation:true,ApplicationCache:true,DOMApplicationCache:true,OfflineResourceList:true,BackgroundFetchRegistration:true,BatteryManager:true,CanvasCaptureMediaStreamTrack:true,EventSource:true,FileReader:true,FontFaceSet:true,Gyroscope:true,LinearAccelerationSensor:true,Magnetometer:true,MediaDevices:true,MediaRecorder:true,MediaSource:true,MediaStream:true,MediaStreamTrack:true,MIDIAccess:true,NetworkInformation:true,OrientationSensor:true,PaymentRequest:true,PermissionStatus:true,PresentationAvailability:true,PresentationConnection:true,PresentationConnectionList:true,PresentationRequest:true,RelativeOrientationSensor:true,RemotePlayback:true,RTCDataChannel:true,DataChannel:true,RTCDTMFSender:true,RTCPeerConnection:true,webkitRTCPeerConnection:true,mozRTCPeerConnection:true,Sensor:true,ServiceWorker:true,ServiceWorkerContainer:true,ServiceWorkerRegistration:true,SharedWorker:true,SpeechRecognition:true,SpeechSynthesis:true,SpeechSynthesisUtterance:true,VR:true,VRDevice:true,VRDisplay:true,VRSession:true,VisualViewport:true,WebSocket:true,Worker:true,WorkerPerformance:true,BluetoothDevice:true,BluetoothRemoteGATTCharacteristic:true,Clipboard:true,MojoInterfaceInterceptor:true,USB:true,IDBOpenDBRequest:true,IDBVersionChangeRequest:true,IDBRequest:true,IDBTransaction:true,AnalyserNode:true,RealtimeAnalyserNode:true,AudioBufferSourceNode:true,AudioDestinationNode:true,AudioNode:true,AudioScheduledSourceNode:true,AudioWorkletNode:true,BiquadFilterNode:true,ChannelMergerNode:true,AudioChannelMerger:true,ChannelSplitterNode:true,AudioChannelSplitter:true,ConstantSourceNode:true,ConvolverNode:true,DelayNode:true,DynamicsCompressorNode:true,GainNode:true,AudioGainNode:true,IIRFilterNode:true,MediaElementAudioSourceNode:true,MediaStreamAudioDestinationNode:true,MediaStreamAudioSourceNode:true,OscillatorNode:true,Oscillator:true,PannerNode:true,AudioPannerNode:true,webkitAudioPannerNode:true,ScriptProcessorNode:true,JavaScriptAudioNode:true,StereoPannerNode:true,WaveShaperNode:true,EventTarget:false,AbortPaymentEvent:true,BackgroundFetchClickEvent:true,BackgroundFetchEvent:true,BackgroundFetchFailEvent:true,BackgroundFetchedEvent:true,CanMakePaymentEvent:true,FetchEvent:true,ForeignFetchEvent:true,InstallEvent:true,NotificationEvent:true,PaymentRequestEvent:true,SyncEvent:true,ExtendableEvent:false,ExtendableMessageEvent:true,FederatedCredential:true,HTMLFieldSetElement:true,File:true,FileList:true,DOMFileSystem:true,WebKitFileSystem:true,webkitFileSystem:true,FileSystem:true,FileWriter:true,FontFace:true,HTMLFormElement:true,Gamepad:true,History:true,HTMLCollection:true,HTMLFormControlsCollection:true,HTMLOptionsCollection:true,HTMLDocument:true,XMLHttpRequest:true,XMLHttpRequestUpload:true,XMLHttpRequestEventTarget:false,HTMLIFrameElement:true,ImageData:true,HTMLImageElement:true,HTMLInputElement:true,KeyboardEvent:true,HTMLLabelElement:true,HTMLLinkElement:true,Location:true,HTMLMapElement:true,MediaKeySession:true,MediaList:true,MediaQueryList:true,MediaQueryListEvent:true,MessageEvent:true,MessagePort:true,HTMLMetaElement:true,MIDIInputMap:true,MIDIMessageEvent:true,MIDIOutputMap:true,MIDIInput:true,MIDIOutput:true,MIDIPort:true,MimeType:true,MimeTypeArray:true,MouseEvent:false,DragEvent:false,MutationObserver:true,WebKitMutationObserver:true,MutationRecord:true,NavigatorUserMediaError:true,DocumentFragment:true,ShadowRoot:true,DocumentType:true,Node:false,NodeList:true,RadioNodeList:true,Notification:true,HTMLObjectElement:true,OffscreenCanvas:true,HTMLOutputElement:true,OverconstrainedError:true,HTMLParagraphElement:true,HTMLParamElement:true,PasswordCredential:true,Performance:true,PerformanceEntry:true,PerformanceLongTaskTiming:true,PerformanceMark:true,PerformanceMeasure:true,PerformanceNavigationTiming:true,PerformancePaintTiming:true,PerformanceResourceTiming:true,TaskAttributionTiming:true,PerformanceServerTiming:true,Plugin:true,PluginArray:true,PointerEvent:true,ProgressEvent:true,ResourceProgressEvent:true,PushEvent:true,RTCStatsReport:true,ScreenOrientation:true,HTMLScriptElement:true,HTMLSelectElement:true,SharedWorkerGlobalScope:true,HTMLSlotElement:true,SourceBuffer:true,SourceBufferList:true,SpeechGrammar:true,SpeechGrammarList:true,SpeechRecognitionResult:true,SpeechSynthesisEvent:true,SpeechSynthesisVoice:true,Storage:true,HTMLStyleElement:true,StyleSheet:false,HTMLTableElement:true,HTMLTableRowElement:true,HTMLTableSectionElement:true,HTMLTemplateElement:true,HTMLTextAreaElement:true,TextEvent:true,TextTrack:true,TextTrackCue:true,VTTCue:true,TextTrackCueList:true,TextTrackList:true,TimeRanges:true,Touch:true,TouchEvent:true,TouchList:true,TrackDefaultList:true,FocusEvent:true,UIEvent:false,URL:true,VideoTrackList:true,WheelEvent:true,Window:true,DOMWindow:true,DedicatedWorkerGlobalScope:true,ServiceWorkerGlobalScope:true,WorkerGlobalScope:false,Attr:true,CSSRuleList:true,ClientRect:true,DOMRect:true,GamepadList:true,NamedNodeMap:true,MozNamedAttrMap:true,SpeechRecognitionResultList:true,StyleSheetList:true,IDBDatabase:true,IDBIndex:true,IDBKeyRange:true,IDBObjectStore:true,IDBVersionChangeEvent:true,SVGClipPathElement:true,SVGDefsElement:true,SVGFEBlendElement:true,SVGFEColorMatrixElement:true,SVGFECompositeElement:true,SVGFEFloodElement:true,SVGFilterElement:true,SVGCircleElement:true,SVGEllipseElement:true,SVGLineElement:true,SVGPolygonElement:true,SVGPolylineElement:true,SVGRectElement:true,SVGGeometryElement:false,SVGAElement:true,SVGForeignObjectElement:true,SVGGElement:true,SVGImageElement:true,SVGSwitchElement:true,SVGTSpanElement:true,SVGTextContentElement:true,SVGTextElement:true,SVGTextPathElement:true,SVGTextPositioningElement:true,SVGUseElement:true,SVGGraphicsElement:false,SVGLength:true,SVGLengthList:true,SVGNumber:true,SVGNumberList:true,SVGPathElement:true,SVGPointList:true,SVGScriptElement:true,SVGStringList:true,SVGAnimateElement:true,SVGAnimateMotionElement:true,SVGAnimateTransformElement:true,SVGAnimationElement:true,SVGDescElement:true,SVGDiscardElement:true,SVGFEComponentTransferElement:true,SVGFEConvolveMatrixElement:true,SVGFEDiffuseLightingElement:true,SVGFEDisplacementMapElement:true,SVGFEDistantLightElement:true,SVGFEFuncAElement:true,SVGFEFuncBElement:true,SVGFEFuncGElement:true,SVGFEFuncRElement:true,SVGFEGaussianBlurElement:true,SVGFEImageElement:true,SVGFEMergeElement:true,SVGFEMergeNodeElement:true,SVGFEMorphologyElement:true,SVGFEOffsetElement:true,SVGFEPointLightElement:true,SVGFESpecularLightingElement:true,SVGFESpotLightElement:true,SVGFETileElement:true,SVGFETurbulenceElement:true,SVGLinearGradientElement:true,SVGMarkerElement:true,SVGMaskElement:true,SVGMetadataElement:true,SVGPatternElement:true,SVGRadialGradientElement:true,SVGSetElement:true,SVGStopElement:true,SVGStyleElement:true,SVGSymbolElement:true,SVGTitleElement:true,SVGViewElement:true,SVGGradientElement:true,SVGComponentTransferFunctionElement:true,SVGFEDropShadowElement:true,SVGMPathElement:true,SVGElement:false,SVGSVGElement:true,SVGTransform:true,SVGTransformList:true,AudioBuffer:true,AudioParamMap:true,AudioTrackList:true,AudioContext:true,webkitAudioContext:true,BaseAudioContext:false,OfflineAudioContext:true,WebGLActiveInfo:true}) -A.r9.$nativeSuperclassTag="ArrayBufferView" -A.Cn.$nativeSuperclassTag="ArrayBufferView" -A.Co.$nativeSuperclassTag="ArrayBufferView" -A.lN.$nativeSuperclassTag="ArrayBufferView" -A.Cp.$nativeSuperclassTag="ArrayBufferView" -A.Cq.$nativeSuperclassTag="ArrayBufferView" -A.fw.$nativeSuperclassTag="ArrayBufferView" -A.Dg.$nativeSuperclassTag="EventTarget" -A.Dh.$nativeSuperclassTag="EventTarget" -A.DD.$nativeSuperclassTag="EventTarget" -A.DE.$nativeSuperclassTag="EventTarget"})() -Function.prototype.$1=function(a){return this(a)} -Function.prototype.$2=function(a,b){return this(a,b)} -Function.prototype.$0=function(){return this()} -Function.prototype.$3=function(a,b,c){return this(a,b,c)} -Function.prototype.$4=function(a,b,c,d){return this(a,b,c,d)} -Function.prototype.$1$1=function(a){return this(a)} -Function.prototype.$1$0=function(){return this()} -Function.prototype.$5=function(a,b,c,d,e){return this(a,b,c,d,e)} -Function.prototype.$2$1=function(a){return this(a)} -Function.prototype.$1$2=function(a,b){return this(a,b)} -Function.prototype.$1$5=function(a,b,c,d,e){return this(a,b,c,d,e)} -Function.prototype.$2$0=function(){return this()} -Function.prototype.$7=function(a,b,c,d,e,f,g){return this(a,b,c,d,e,f,g)} -Function.prototype.$6=function(a,b,c,d,e,f){return this(a,b,c,d,e,f)} -Function.prototype.$9=function(a,b,c,d,e,f,g,h,i){return this(a,b,c,d,e,f,g,h,i)} -convertAllToFastObject(w) -convertToFastObject($);(function(a){if(typeof document==="undefined"){a(null) -return}if(typeof document.currentScript!="undefined"){a(document.currentScript) -return}var s=document.scripts -function onLoad(b){for(var q=0;q