diff --git a/DingDong.Core/DingDong/DingDongCore.cs b/DingDong.Core/DingDong/DingDongCore.cs index 00ff03d..9dc541e 100644 --- a/DingDong.Core/DingDong/DingDongCore.cs +++ b/DingDong.Core/DingDong/DingDongCore.cs @@ -90,7 +90,7 @@ public void CheckOrder(New_Order_Product_List2 cart) bodys.Add("showData", "true"); var result = RequestPost(url, GetCommonParams(bodys)); var obj = JObject.Parse(result); - if (obj["success"].ToString() != "true") + if (obj["success"].ToString().ToLower() != "true") { _log?.Invoke($"检查订单失败. {obj["msg"]}"); throw new DingDongException(obj["msg"].ToString()); @@ -142,7 +142,7 @@ public void CreateNewOrder(CartData data, (long startTime, long endTime) reserve var result = RequestPost(url, GetCommonParams(bodys)); // {"success":true,"code":0,"msg":"success","data":{"pay_url":"{\"timeStamp\":\"1650182341\",\"package\":\"prepay_id=wx17155901110395404e2ec64b5eccda0000\",\"appId\":\"wx1e113254eda17715\",\"sign\":\"082F7C89FE3FBFB545D9E82EB3712FBF\",\"signType\":\"MD5\",\"nonceStr\":\"70MAHai08O9KqLbll7RVMTAovjgGsj03\"}","pay_online":true,"order_number":"2204171874886872238","cart_count":28,"station_id":"5c8879d1716de1f6468b456d","event_tracking":{"post_product_algo":"{}"}},"tradeTag":"success","server_time":1650182341,"is_trade":1} var obj = JObject.Parse(result); - if (obj["success"].ToString() != "true") + if (obj["success"].ToString().ToLower() != "true") { _log?.Invoke($"创建订单失败. {obj["msg"]}"); throw new DingDongException(""); diff --git a/DingDong.Core/Models/DingDongUtils.cs b/DingDong.Core/Models/DingDongUtils.cs index 5ec2452..d189d54 100644 --- a/DingDong.Core/Models/DingDongUtils.cs +++ b/DingDong.Core/Models/DingDongUtils.cs @@ -1,4 +1,5 @@ -using System.Text; +using RestSharp; +using System.Text; using System.Web; namespace DingDong.Monitor.Models @@ -70,6 +71,24 @@ public static string ToBody(this Dictionary body) public static long NowTimeStamp => new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds(); - + /// + /// + /// + /// + /// + public static void Push(string url, string message) + { + if (string.IsNullOrWhiteSpace(url)) + { + return; + } + var groupName = HttpUtility.UrlEncode("叮咚助手"); + var msg = HttpUtility.UrlEncode(message); + var client = new RestClient($"{url.TrimEnd('/')}/{groupName}/{msg}?group={groupName}"); + client.Timeout = -1; + var request = new RestRequest(Method.GET); + IRestResponse response = client.Execute(request); + Console.WriteLine(response.Content); + } } } diff --git a/DingDong.Monitor/DingDong.Monitor.csproj b/DingDong.Monitor/DingDong.Monitor.csproj index 86e0349..f733e80 100644 --- a/DingDong.Monitor/DingDong.Monitor.csproj +++ b/DingDong.Monitor/DingDong.Monitor.csproj @@ -16,4 +16,10 @@ + + + PreserveNewest + + + \ No newline at end of file diff --git a/DingDong.Monitor/MainFrm.Designer.cs b/DingDong.Monitor/MainFrm.Designer.cs index 6be1cb2..6b3f71d 100644 --- a/DingDong.Monitor/MainFrm.Designer.cs +++ b/DingDong.Monitor/MainFrm.Designer.cs @@ -28,6 +28,8 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrm)); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.nudContinue = new System.Windows.Forms.NumericUpDown(); this.cbContinue = new System.Windows.Forms.CheckBox(); @@ -57,6 +59,7 @@ private void InitializeComponent() this.dvg_TotalPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dgv_Status = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.btnClearLog = new System.Windows.Forms.Button(); this.cbTrackLog = new System.Windows.Forms.CheckBox(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.btnSaveAllConfig = new System.Windows.Forms.Button(); @@ -64,6 +67,7 @@ private void InitializeComponent() this.txtPushUrl = new System.Windows.Forms.TextBox(); this.btnTestPush = new System.Windows.Forms.Button(); this.cbPlayMusic = new System.Windows.Forms.CheckBox(); + this.niDingDong = new System.Windows.Forms.NotifyIcon(this.components); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudContinue)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudInterval)).BeginInit(); @@ -96,6 +100,7 @@ private void InitializeComponent() // // nudContinue // + this.nudContinue.Enabled = false; this.nudContinue.Location = new System.Drawing.Point(121, 387); this.nudContinue.Name = "nudContinue"; this.nudContinue.Size = new System.Drawing.Size(89, 23); @@ -110,6 +115,7 @@ private void InitializeComponent() this.cbContinue.TabIndex = 10; this.cbContinue.Text = "监控持续(分钟)"; this.cbContinue.UseVisualStyleBackColor = true; + this.cbContinue.CheckedChanged += new System.EventHandler(this.cbContinue_CheckedChanged); // // cbCartMonitor // @@ -130,6 +136,7 @@ private void InitializeComponent() this.cbCategoryMonitor.TabIndex = 8; this.cbCategoryMonitor.Text = "分类菜系监控"; this.cbCategoryMonitor.UseVisualStyleBackColor = true; + this.cbCategoryMonitor.CheckedChanged += new System.EventHandler(this.cbCategoryMonitor_CheckedChanged); // // btnStartMonitor // @@ -139,9 +146,11 @@ private void InitializeComponent() this.btnStartMonitor.TabIndex = 7; this.btnStartMonitor.Text = "开始监控"; this.btnStartMonitor.UseVisualStyleBackColor = true; + this.btnStartMonitor.Click += new System.EventHandler(this.btnStartMonitor_Click); // // dtpBeginTime // + this.dtpBeginTime.Enabled = false; this.dtpBeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Time; this.dtpBeginTime.Location = new System.Drawing.Point(121, 343); this.dtpBeginTime.Name = "dtpBeginTime"; @@ -157,9 +166,11 @@ private void InitializeComponent() this.cbTimeStart.TabIndex = 5; this.cbTimeStart.Text = "定时开始:"; this.cbTimeStart.UseVisualStyleBackColor = true; + this.cbTimeStart.CheckedChanged += new System.EventHandler(this.cbTimeStart_CheckedChanged); // // txtExclude // + this.txtExclude.Enabled = false; this.txtExclude.Location = new System.Drawing.Point(121, 238); this.txtExclude.Multiline = true; this.txtExclude.Name = "txtExclude"; @@ -215,6 +226,7 @@ private void InitializeComponent() this.dgv_Category_Check, this.dgv_Category_Name, this.dgv_Category_Status}); + this.dgvCategory.Enabled = false; this.dgvCategory.Location = new System.Drawing.Point(8, 32); this.dgvCategory.Name = "dgvCategory"; this.dgvCategory.RowTemplate.Height = 25; @@ -227,7 +239,7 @@ private void InitializeComponent() this.dgv_Category_Check.HeaderText = "#"; this.dgv_Category_Check.Name = "dgv_Category_Check"; this.dgv_Category_Check.ReadOnly = true; - this.dgv_Category_Check.Width = 50; + this.dgv_Category_Check.Width = 120; // // dgv_Category_Name // @@ -368,6 +380,7 @@ private void InitializeComponent() // // groupBox3 // + this.groupBox3.Controls.Add(this.btnClearLog); this.groupBox3.Controls.Add(this.cbTrackLog); this.groupBox3.Controls.Add(this.richTextBox1); this.groupBox3.Location = new System.Drawing.Point(12, 464); @@ -377,12 +390,22 @@ private void InitializeComponent() this.groupBox3.TabStop = false; this.groupBox3.Text = "日志"; // + // btnClearLog + // + this.btnClearLog.Location = new System.Drawing.Point(830, 231); + this.btnClearLog.Name = "btnClearLog"; + this.btnClearLog.Size = new System.Drawing.Size(75, 23); + this.btnClearLog.TabIndex = 7; + this.btnClearLog.Text = "清空日志"; + this.btnClearLog.UseVisualStyleBackColor = false; + this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click); + // // cbTrackLog // this.cbTrackLog.AutoSize = true; this.cbTrackLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(73)))), ((int)(((byte)(74))))); this.cbTrackLog.ForeColor = System.Drawing.Color.White; - this.cbTrackLog.Location = new System.Drawing.Point(931, 277); + this.cbTrackLog.Location = new System.Drawing.Point(920, 231); this.cbTrackLog.Name = "cbTrackLog"; this.cbTrackLog.Size = new System.Drawing.Size(85, 21); this.cbTrackLog.TabIndex = 6; @@ -397,6 +420,7 @@ private void InitializeComponent() this.richTextBox1.ForeColor = System.Drawing.Color.White; this.richTextBox1.Location = new System.Drawing.Point(3, 19); this.richTextBox1.Name = "richTextBox1"; + this.richTextBox1.ReadOnly = true; this.richTextBox1.Size = new System.Drawing.Size(1019, 245); this.richTextBox1.TabIndex = 0; this.richTextBox1.Text = ""; @@ -415,7 +439,7 @@ private void InitializeComponent() // label3 // this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(476, 386); + this.label3.Location = new System.Drawing.Point(476, 376); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(75, 17); this.label3.TabIndex = 4; @@ -423,9 +447,10 @@ private void InitializeComponent() // // txtPushUrl // - this.txtPushUrl.Location = new System.Drawing.Point(568, 380); + this.txtPushUrl.Location = new System.Drawing.Point(557, 373); + this.txtPushUrl.Multiline = true; this.txtPushUrl.Name = "txtPushUrl"; - this.txtPushUrl.Size = new System.Drawing.Size(290, 23); + this.txtPushUrl.Size = new System.Drawing.Size(308, 49); this.txtPushUrl.TabIndex = 5; // // btnTestPush @@ -434,8 +459,9 @@ private void InitializeComponent() this.btnTestPush.Name = "btnTestPush"; this.btnTestPush.Size = new System.Drawing.Size(127, 37); this.btnTestPush.TabIndex = 6; - this.btnTestPush.Text = "测试推送"; + this.btnTestPush.Text = "测试提醒"; this.btnTestPush.UseVisualStyleBackColor = true; + this.btnTestPush.Click += new System.EventHandler(this.btnTestPush_Click); // // cbPlayMusic // @@ -447,6 +473,12 @@ private void InitializeComponent() this.cbPlayMusic.Text = "播放音乐"; this.cbPlayMusic.UseVisualStyleBackColor = true; // + // niDingDong + // + this.niDingDong.Icon = ((System.Drawing.Icon)(resources.GetObject("niDingDong.Icon"))); + this.niDingDong.Text = "DingDong"; + this.niDingDong.Visible = true; + // // MainFrm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); @@ -485,9 +517,6 @@ private void InitializeComponent() private DataGridView dgvCategory; private GroupBox groupBox2; private DataGridView dgvCart; - private DataGridViewTextBoxColumn dgv_Category_Check; - private DataGridViewTextBoxColumn dgv_Category_Name; - private DataGridViewCheckBoxColumn dgv_Category_Status; private GroupBox groupBox3; private Button btnRefreshCart; private Label label1; @@ -517,5 +546,10 @@ private void InitializeComponent() private CheckBox cbTimeStart; private NumericUpDown nudContinue; private CheckBox cbContinue; + private Button btnClearLog; + private DataGridViewTextBoxColumn dgv_Category_Check; + private DataGridViewTextBoxColumn dgv_Category_Name; + private DataGridViewCheckBoxColumn dgv_Category_Status; + private NotifyIcon niDingDong; } } \ No newline at end of file diff --git a/DingDong.Monitor/MainFrm.cs b/DingDong.Monitor/MainFrm.cs index 4598862..98fe77d 100644 --- a/DingDong.Monitor/MainFrm.cs +++ b/DingDong.Monitor/MainFrm.cs @@ -2,6 +2,7 @@ using DingDong.Monitor.DingDong; using DingDong.Monitor.Models; using Newtonsoft.Json; +using System.Web; namespace DingDong.Monitor { @@ -14,10 +15,13 @@ public MainFrm() private static Config DdConfig = null; private static DingDongCore DdCore = null; - private static List Categories = null; + private static bool IsMonitoring = false; + private static CancellationTokenSource MonitorTokenSource = null; + private static DateTime? MonitorBeginTime = null; private void MainFrm_Shown(object sender, EventArgs e) { + WriteLog("所有配置的更改,只有保存配置之后才会生效。。。"); if (File.Exists("config.json")) { DdConfig = JsonConvert.DeserializeObject(File.ReadAllText("config.json")); @@ -26,13 +30,34 @@ private void MainFrm_Shown(object sender, EventArgs e) { new LoginFrm(SaveConfig).ShowDialog(); } + if (DdConfig != null && DdConfig.SoftConfig != null) + { + RefreshUiConfig(); + } + if (DdConfig != null && DdConfig.DdConfig != null) { DdCore = new DingDongCore(DdConfig.DdConfig, WriteLog); + DdCore._track = DdConfig.SoftConfig.TrackLog; RefreshCategories(); } } + private void RefreshUiConfig() + { + txtExclude.Text = String.Join(",", DdConfig.SoftConfig.ExcludeKeywords?? new List()); + dtpBeginTime.Text= DdConfig.SoftConfig.TimeBegin; + cbTimeStart.Checked= DdConfig.SoftConfig.IsTimeBegin; + cbContinue.Checked = DdConfig.SoftConfig.MonitorContinue; + nudContinue.Value= DdConfig.SoftConfig.MonitorContinueMins; + nudInterval.Value= DdConfig.SoftConfig.MonitorInterval; + txtPushUrl.Text = String.Join("\r\n", DdConfig.SoftConfig.PushUrls ?? new List()); + cbPlayMusic.Checked= DdConfig.SoftConfig.PlayMusic; + cbCartMonitor.Checked= DdConfig.SoftConfig.MonitorCart; + cbCategoryMonitor.Checked= DdConfig.SoftConfig.MonitorCategory; + cbTrackLog.Checked = DdConfig.SoftConfig.TrackLog; + } + private void SaveConfig(DingDongConfig config) { if (DdConfig == null) @@ -40,61 +65,73 @@ private void SaveConfig(DingDongConfig config) DdConfig = new Config(); } DdConfig.DdConfig = config; + WriteConfig(); + } + + private static void WriteConfig() + { File.WriteAllText("config.json", JsonConvert.SerializeObject(DdConfig)); } private void RefreshCategories() { - if (DdCore == null) + if (DdConfig.Categories == null) { - return; + if (DdCore == null) + { + return; + } + DdConfig.Categories = DdCore.GetAllCategories() + .OrderByDescending(d => d.Monitor) + .ToList(); } dgvCart.Rows.Clear(); - Categories = DdCore.GetAllCategories() - .OrderByDescending(d => d.Monitor) - .ToList(); - dgvCategory.DataSource = Categories; + dgvCategory.DataSource = DdConfig.Categories; WriteLog("刷新分类成功.."); } - private void RefreshCart() + private CartData? RefreshCart() { if (DdCore == null) { - return; + return null; } var cart = DdCore.GetCartInfo(); RefreshCartUi(cart); + return cart; } private void RefreshCartUi(CartData? cart) { - if (cart != null + Invoke(() => + { + if (cart != null && cart.new_order_product_list != null && cart.new_order_product_list.Count > 0 && cart.new_order_product_list.FirstOrDefault()?.products != null && cart.new_order_product_list.FirstOrDefault()?.products.Count > 0) - { - dgvCart.Rows.Clear(); - foreach (var item in cart.new_order_product_list?.FirstOrDefault()?.products ?? new List()) { - var row = new DataGridViewRow(); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.product_name }); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.count }); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.origin_price }); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.total_origin_price }); - row.Cells.Add(new DataGridViewCheckBoxCell { Value = true }); - row.Tag = item; - dgvCart.Rows.Add(row); + dgvCart.Rows.Clear(); + foreach (var item in cart.new_order_product_list?.FirstOrDefault()?.products ?? new List()) + { + var row = new DataGridViewRow(); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.product_name }); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.count }); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.origin_price }); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.total_origin_price }); + row.Cells.Add(new DataGridViewCheckBoxCell { Value = true }); + row.Tag = item; + dgvCart.Rows.Add(row); + } + dgvCart.Tag = cart; + label1.Text = $"总金额:{cart.new_order_product_list.FirstOrDefault().total_origin_money}"; + WriteLog($"刷新购物车成功.已勾选:{cart.new_order_product_list.FirstOrDefault().products.Count} 件商品 {label1.Text}."); } - dgvCart.Tag = cart; - label1.Text = $"总金额:{cart.new_order_product_list.FirstOrDefault().total_origin_money}"; - WriteLog($"刷新购物车成功.已勾选:{cart.new_order_product_list.FirstOrDefault().products.Count} 件商品 {label1.Text}."); - } - else - { - WriteLog("刷新购物车失败.."); - } + else + { + WriteLog("刷新购物车失败.."); + } + }); } private void btnRefreshCart_Click(object sender, EventArgs e) @@ -104,19 +141,19 @@ private void btnRefreshCart_Click(object sender, EventArgs e) private void btnExportCart_Click(object sender, EventArgs e) { - + MessageBox.Show("未实现..."); } private void btnImportCart_Click(object sender, EventArgs e) { - + MessageBox.Show("未实现..."); } private void WriteLog(string message) { Invoke(new Action(() => { - richTextBox1.AppendText($"{DateTime.Now.ToString("MM-dd HH:mm:ss")} {message}\r\n"); + richTextBox1.AppendText($"{DateTime.Now.ToString("MM-dd HH:mm:ss")} \t {message}\r\n"); //让文本框获取焦点 this.richTextBox1.Focus(); //设置光标的位置到文本尾 @@ -167,21 +204,27 @@ private void dgvCart_CurrentCellDirtyStateChanged(object sender, EventArgs e) private void btnCreateOrder_Click(object sender, EventArgs e) { - var cart = dgvCart.Tag as CartData; - if (cart == null) + var cart = dgvCart.Tag as CartData; + MakeOrder(cart); + } + + private bool MakeOrder(CartData? cart) + { + if (cart == null || cart.new_order_product_list.FirstOrDefault() == null) { - return; + WriteLog("洗车单为空,无法下单."); + return false; } var reserveTimes = DdCore.GetMultiReserveTime(cart.new_order_product_list.FirstOrDefault().products); if (reserveTimes.Count <= 0) { WriteLog("暂无运力..."); - return; + return false; } if (reserveTimes.FirstOrDefault(d => d.closed).closed) { WriteLog("今天关门了..."); - return; + return false; } WriteLog($"有运力:{reserveTimes.FirstOrDefault().arrival_time_msg} ..."); @@ -199,16 +242,203 @@ private void btnCreateOrder_Click(object sender, EventArgs e) DdCore.CreateNewOrder(cart, (reserveTimes.FirstOrDefault().start_timestamp.Value, reserveTimes.FirstOrDefault().end_timestamp.Value)); WriteLog("下单成功,快去付款。。"); + this.NotifyIcon_ShowBalloonTip(30_000, "叮咚助手", "下单成功,快去付款", ToolTipIcon.Info); + if (DdConfig.SoftConfig.PlayMusic) + { + PlayMusic(); + } + for (int i = 0; i < 3; i++) + { + foreach (var pushUrl in DdConfig.SoftConfig.PushUrls ?? new List()) + { + DingDongUtils.Push(pushUrl, "下单成功,快去付款"); + } + Thread.Sleep(1000); + } + return true; + } + + private static void PlayMusic() + { + using (System.Media.SoundPlayer player = new System.Media.SoundPlayer()) + { + player.SoundLocation = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Music", "order.wav"); + player.Play(); + } } private void cbTrackLog_CheckedChanged(object sender, EventArgs e) { - DdCore._track = cbTrackLog.Checked; + if (DdCore != null) + { + DdCore._track = cbTrackLog.Checked; + } } private void btnSaveAllConfig_Click(object sender, EventArgs e) { + if (DdConfig.SoftConfig == null) + { + DdConfig.SoftConfig = new SoftConfig(); + } + DdConfig.SoftConfig.ExcludeKeywords = (txtExclude.Text ?? string.Empty).Split(',').ToList(); + DdConfig.SoftConfig.TimeBegin = dtpBeginTime.Text; + DdConfig.SoftConfig.IsTimeBegin = cbTimeStart.Checked; + DdConfig.SoftConfig.MonitorContinue = cbContinue.Checked; + DdConfig.SoftConfig.MonitorContinueMins = (int)nudContinue.Value; + DdConfig.SoftConfig.MonitorInterval = (int)nudInterval.Value; + DdConfig.SoftConfig.PushUrls = (txtPushUrl.Text ?? String.Empty).Split(new[] { "\r\n" }, StringSplitOptions.None).ToList(); + DdConfig.SoftConfig.PlayMusic = cbPlayMusic.Checked; + DdConfig.SoftConfig.MonitorCart = cbCartMonitor.Checked; + DdConfig.SoftConfig.MonitorCategory = cbCategoryMonitor.Checked; + DdConfig.SoftConfig.TrackLog = cbTrackLog.Checked; + WriteConfig(); + RefreshUiConfig(); + WriteLog("配置保存成功..."); + } + + private void btnTestPush_Click(object sender, EventArgs e) + { + PlayMusic(); + this.NotifyIcon_ShowBalloonTip(3000, "叮咚助手", "测试提醒", ToolTipIcon.Info); + var url = txtPushUrl.Text; + if (string.IsNullOrWhiteSpace(url)) + { + MessageBox.Show("推送地址必填,请先去 IOS 商店下载 Bark APP"); + return; + } + DingDongUtils.Push(url, "测试推送"); + } + + private void cbCategoryMonitor_CheckedChanged(object sender, EventArgs e) + { + //MessageBox.Show("未实现..."); + //return; + txtExclude.Enabled = dgvCategory.Enabled = cbCategoryMonitor.Checked; + } + + private void cbTimeStart_CheckedChanged(object sender, EventArgs e) + { + dtpBeginTime.Enabled = cbTimeStart.Checked; + } + + private void cbContinue_CheckedChanged(object sender, EventArgs e) + { + nudContinue.Enabled = cbContinue.Checked; + } + + private void btnClearLog_Click(object sender, EventArgs e) + { + richTextBox1.Clear(); + } + + private void btnStartMonitor_Click(object sender, EventArgs e) + { + if (IsMonitoring) + { + IsMonitoring = false; + btnStartMonitor.Text = "开始监控"; + WriteLog("停止监控"); + MonitorTokenSource.Cancel(); + MonitorTokenSource.Dispose(); + } + else + { + IsMonitoring = true; + btnStartMonitor.Text = "停止监控"; + WriteLog("开始监控"); + MonitorTokenSource = new CancellationTokenSource(); + CancellationToken ct = MonitorTokenSource.Token; + Task.Run(() => + { + ct.ThrowIfCancellationRequested(); + while (true) + { + if (ct.IsCancellationRequested) + { + // Clean up here, then... + ct.ThrowIfCancellationRequested(); + } + if (!DdConfig.SoftConfig.IsTimeBegin) + { + break; + } + if (DateTime.TryParse($"{DateTime.Now.ToString("yyyy-MM-dd")} {DdConfig.SoftConfig.TimeBegin}" + , out var beginTime)) + { + if (beginTime > DateTime.Now // 设置的时间比现在晚 + || DdConfig.SoftConfig.MonitorContinue + && DdConfig.SoftConfig.MonitorContinueMins > 0 + && DateTime.Now > beginTime.AddMinutes(DdConfig.SoftConfig.MonitorContinueMins)) // 设置的时间比现在早,但是超过了持续时间 + { + // + } + else + { + break; + } + // 要执行 + } + else + { + break; + } + Thread.Sleep(1000); + } + MonitorBeginTime = DateTime.Now; + while (IsMonitoring) + { + if (ct.IsCancellationRequested) + { + // Clean up here, then... + ct.ThrowIfCancellationRequested(); + } + if (DdConfig.SoftConfig.MonitorContinue + && DdConfig.SoftConfig.MonitorContinueMins > 0 + && MonitorBeginTime.Value.AddMinutes(DdConfig.SoftConfig.MonitorContinueMins) < DateTime.Now) + { + WriteLog($"持续监控 {DdConfig.SoftConfig.MonitorContinueMins} 分钟后自动终止..."); + IsMonitoring = false; + Invoke(new Action(() => + { + btnStartMonitor.Text = "开始监控"; + })); + MonitorTokenSource.Cancel(); + } + else + { + if (DdConfig.SoftConfig.MonitorCart) + { + var cart = RefreshCart(); + if (MakeOrder(cart)) + { + WriteLog($"已经提交订单,自动终止..."); + IsMonitoring = false; + Invoke(new Action(() => + { + btnStartMonitor.Text = "开始监控"; + })); + MonitorTokenSource.Cancel(); + } + } + if (DdConfig.SoftConfig.MonitorCategory) + { + } + } + Thread.Sleep(DdConfig.SoftConfig.MonitorInterval); + } + }, MonitorTokenSource.Token); + } + } + + + public void NotifyIcon_ShowBalloonTip(int tipDisplayTime, String tipTitle, String tipText, ToolTipIcon tipIcon) + { + Invoke(new Action(() => + { + this.niDingDong.ShowBalloonTip(tipDisplayTime, tipTitle, tipText, tipIcon); + })); } } } diff --git a/DingDong.Monitor/MainFrm.resx b/DingDong.Monitor/MainFrm.resx index bc9c091..2baa094 100644 --- a/DingDong.Monitor/MainFrm.resx +++ b/DingDong.Monitor/MainFrm.resx @@ -66,15 +66,6 @@ True - - True - - - True - - - True - True @@ -90,19 +81,1140 @@ True - - True - - - True - - - True - - - True - - - True + + 17, 26 + + + + AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABAMMOAADDDgAAAAAAAAAA + AAAtJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/y4nHv8vKB//Lygf/y8o + H/8vKB//Lygf/y8oH/8uJx7/Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Licd/y4nHf8uJx3/Licd/y4nHf8uJx3/Licd/y4nHf8uJx3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYe/y0mHv8tJh3/LSYd/y0n + Hf8uKSD/Lygf/y4oH/8qIxr/KSIY/ycfFf8kHRP/JR0U/yQdFP8lHRT/Jx8W/yoiGP8rJBv/LSge/y8p + IP8tKB//LCYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8sJR//LScc/ywmHf8tJCD/LCQe/y4mHv8uJx3/LSce/ywlHf8qJB7/KSMd/ykiHf8qIR7/KSEf/ygg + H/8pIR7/KSMe/yskHv8sJR7/LSce/y4oHP8uJx3/LCYe/y0mH/8tJh7/LCYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywl + HP8tJh3/LSYd/y0mHf8rJR7/LCUe/y0nHv8xKiH/LCUb/yMcE/8gGRD/JyAZ/zQtJv9DPTX/VU9H/11X + T/9fWVH/X1lR/1xVTf9QSkL/Pjgv/zErIv8kHRT/HhcP/yYgF/8uJx7/MCkg/y4nHf8tJh3/LCYd/y0m + Hv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4lHf8uJR7/LCUd/y0nGv8uKB3/KyYe/yki + HP8oHx7/KyQa/zAqHP82Mhz/Pzsa/0I+GP9CQBb/Q0AW/0I+Gf8+Nhr/NzAa/y8oG/8pHyD/Jx4e/yol + Hf8tKB//LSgb/y0nG/8vJSD/LiUg/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nH/8vKSD/KiMa/xwV + DP8tJR3/Vk5H/4F7dv+1sa7/0s/O/9zb2v/r6+r/8vHx//Ly8f/z8vL/8fHw/+jn5v/X19b/zcvJ/6ik + oP91cGv/SkQ8/yggFv8hGA7/LSUb/y8oH/8tJh7/LCYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LiUd/y8kH/8uKBv/KyUc/yYcIP8vKRr/QDwa/1NVE/9mcQv/c4IF/3mIBf9+jQX/gJAE/4KQ + Bf+CkQX/gY8F/32JBf95hAX/bXsJ/11kD/9KSxX/NzAc/yofH/8oHx7/LCYd/y4pHP8tJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0nHv8vKB//KSMa/yAbE/83Miz/hYF8/83MyP/29vL///////////////////////// + ///+/////f////7////+///////////////////////////////v7+z/vr64/3FtZ/8tJyH/Ix0W/ywl + Hf8vKB7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHf8sJiD/KCQc/ywhHf81Lxn/VlsS/3J9 + CP+ClAT/iZsA/4mYAP+JlQL/iJQC/4mUAP+IkwD/h5IC/4aTAv+HlQD/h5UB/4iUAv+KlQH/iZoA/4Sa + AP98jQX/ZnUL/0dHFf8uJB7/KCIe/yonHP8uJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//LSYd/yMcFP8/OzT/jouG/+Lg + 3v/////////////+///8+/z/+vv7//v8/P/7/Pz/+vr6//r7+v/7+/v/+/z7//v7/P/6+vr/+/z8//z9 + /P/7/Pz//Pz9/////////////////87NzP93dG//NC0l/yQdFP8vKB//Lice/y0lHf8sJh3/LCYd/y4n + HP8uJx3/LCUe/ycgHv84NRj/XF8R/36MA/+LmwD/iZgA/4aUAP+DkAL/hJED/4aRA/+GkgL/hJIC/4SR + Av+FkQL/hpIC/4aSAf+HkgL/hpIC/4SSAf+DjwX/hZID/4iWAf+LmgH/iJoB/217Cf9KSRb/MScd/ysj + Hf8tJx7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8rJRz/LSce/ywl + HP8tJh7/MCgf/ykhF/8qIxv/dnFr/9bV0/////////////v6+//8+/v//f38//z7+//+/f3///////// + //////////////////////////////////////////////z8/f/8+/z//fz8//z8+//6+vz///////// + ///CwL7/W1VR/yYeF/8tJhz/Ligf/yklHv8rJxz/Licd/ygiIP8vKBv/TlES/3WGBf+JmAL/iZYC/4WS + Af+GkgL/hpEE/4WRAv+FlAD/iJcA/4mZAP+ImgH/h5sA/4mcAP+KmwH/ipoC/4qZAP+JmAD/h5UA/4ST + AP+EkQH/hZMB/4aSAv+FkQP/hpkB/4SWAP9qcwn/QDwX/ygdIf8rJx7/LSYb/y0mHv8sJhz/LCQe/y0l + Hv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJR3/LCUc/zApH/8mHhb/OzQs/7Swq//9+/r///////v7 + /P/8/Pz/+vz7//r8/f/////////////////o5+P/0c/L/7OxrP+dm5f/lJKN/5WTj/+koZ7/vry5/9jW + 0v/w7uz/////////////////+fr8//79/v/7/f3//P79///////z8PD/lJGM/yskHf8oIRj/MSki/zEm + Hf8nIR7/MTAc/250DP+MlwP/iJQF/4ORAP+EkgX/hJIC/4iSAv+JlwH/jZwA/4mUBv98ign/cH0G/2Zu + Cv9fYw3/W10P/1xfEP9faAr/aXYI/3aECP+GkQT/i5wA/4mZAf+FkwT/hZEB/4iSBf+HlQH/hpIE/4eW + Bf99jwP/U1oP/yokGv8pJB//LScc/y0oGf8tKBv/LCQe/y0lH/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywl + Hf8xKiH/JB4V/0pFPv/V0s7///////3+/v/9/P3//Pz8//7+/v///////////93c3P+YlpL/XFhT/zs2 + Lv8sKB//Ix4V/yAbEv8hHBP/IRsU/yIcFf8jHRf/Lyki/0Q/OP9rZ2H/raun/+zs6/////////////z8 + /f/7/Pz//Pz7//79/v//////uLay/zQuJ/8nIhn/LCce/0RBE/96iQX/hpkC/4aRAv+FkwL/g5UB/4eR + A/+LlwH/hZQD/3WEBv9WXg3/Pz4Y/zQtHv8rIhv/KR8e/yofIf8pHx7/KiAd/yshHv8uIh7/MCce/zc0 + Gf9LTRT/aHAL/3+RBf+HmwH/hpMD/4aQAv+GkwD/h5QC/4iVAf+FmwD/XmkO/y4nG/8tJCD/LyYi/ywm + Gv8tJxv/LCUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/MCkg/yQdFP9XUUr/4N/e///////3+Pr//v////v8 + /P///////vz5/8rGwv97d3D/NS8n/x0XDv8iGxL/JyAX/ywkG/8uJx7/Lygf/y8oH/8wKSD/Lice/y4n + Hv8rJBv/JR0U/yIbEv8gGhL/R0I7/5OPiv/d29r///////3////7+/z//f38//v8/P//////w7++/zw3 + L/8hHRf/Tk8Z/4eUBf+FlAD/gZID/4WSAf+ImAD/g5MC/213C/9KTRP/MScd/yceIf8kIR3/KCQa/yom + HP8tJx7/LSgb/ysoGv8sKRz/LCYe/ywlHP8qJRz/JiMe/ycfIf8rIB3/PTgZ/1hfEv94iwT/iZgC/4eT + Af+FkwP/h5IE/4aQAv+Hlwf/aHEL/zAtFf8qIiD/Lycf/y0nGv8tJh7/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYd/zAp + IP8jHBT/WVNN/+nn4///////+fr8//v9/v/7/Pz//////9/e2v95dW7/Mywk/yIaEf8rIxn/MSog/zAo + H/8vKB//Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8vKB//MSkf/zEpIP8nIBf/IRoS/z45 + M/+XlZD/9PTy///////7+/v//f37//z7+///////zMnE/0E6MP8iGxn/VVYX/4WUAf+IkQP/iJgC/3OA + CP9KTRL/LCYa/ycgHv8rJhv/Lika/y8oHP8uJhz/LiYc/y8lHf8vJR7/LiYe/y0mHv8tJh7/LSYd/y4m + Hf8vJxv/Lika/y0oHf8oIhz/KSAe/zoyHP9gaQr/gpMC/4eWAv+FkgL/hpQC/4WTAP+JmAT/aXUM/zQt + FP8sIyD/Licc/y0lHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKSD/IxwT/1BKRP/n5eT///////v8+v/7+/z/+/v7//// + //+6trT/REA5/yMdFP8rJBv/MCkg/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oH/8wKR//KiIX/yYgGP9gXFj/3dza///////8+/v//v39//v8 + +v//////x8LC/zUwIv8pHRv/Y2oQ/4meAP9kbgn/NjAb/ykhHv8tJh7/Licd/y4nHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHf8tKBv/KSEe/y0k + Hf9MSxL/fI0D/4aZAf+EkAT/hpMC/4WSAf+KmQT/aXER/zEmHP8rJBz/LScc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/yoi + Gf87Ni7/1NLO///////6+/v//f38//38/P//////oqCa/y0mHf8oIBf/Lygf/ywlHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8wJx7/MCcf/yIcFv9AOjb/zszL///////4+fv//v/9//n7+v//////saul/yoiHP8zLBf/T1MV/zAm + HP8qISD/Kyca/ywoGv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0kIP8tJx//Kygb/yggHf87Nxn/dYYL/4iYAP+HkAP/g5MC/4WT + Af+FlwP/XWMO/ywhHv8tJh//LSYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHv8uJx3/KyQd/6ejoP//////+/v7//z8/P/7+/v//////5eT + jv8gGhH/LCUb/zAoIP8tJR3/Lice/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0lHP8uJx7/Lygg/yQeFf83MCn/xMG+//// + ///6+/z//P77//r9/P///fr/enpy/yIbE/8tICT/LCYd/y0nHv8sJxv/LSYe/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSUg/ywo + Gf8sJh3/LCkc/ykfIP85MRr/c4QF/4eXBP+EkgT/hpMD/4iVAP+DlAP/SEkU/ykiHP8uJx3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYd/ywmHf8tJh3/MCkf/yIb + Ev9saWX//Pv6//z8/f/8/Pv//f39//////+cmJX/JiAY/y0mHP8tKB//LCUf/y0lH/8tJhz/Licd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/ywlHP8tJx3/MSsg/ykfE/8+Ny7/x8fG///////8/Pv//vz9///////m6Ob/SkU7/ykh + Ff8wKB//LSUd/y4nHv8tJR//LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJxz/LCQg/y0mG/8vJxz/Lygc/ykfHf86NBr/coQG/4iY + AP+DkQH/h5IB/4mVA/9yhAn/NjQV/ysjHv8tJx3/LSYd/y0lHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8sJh7/KyYe/y8nHf8rIxr/ODEr/9bX1v///////Pv7//r8/P//////ubSz/zIq + Iv8tJRz/LCcf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJh3/LCUc/y0mHf8tJhz/Mysf/yIb + Ev9LSUT/5OPg///////8/Pz//Pz8//////+vrqv/IhwU/y8oH/8uJx7/Lice/ywmHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh7/LSYd/y0mHv8uJRz/MCkb/yghHv9EQhP/f44F/4eUAv+HlAH/hZED/4iYBf9fYw7/KR8d/yso + HP8sJR3/LCYf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywmHf8tJx7/MCkg/x4X + D/+VkYz///////v7/P/9/f3//////+Lj3/9FQjn/Jh8U/y8nHv8sJh//LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LCUc/y0nHv8tJh7/Lice/yIbEv+hnpn/aWZf/xUOA/96dnD//f7+//z9/f/9/f3//v39///+ + /f9nYlz/IhsS/y8oH/8uJx7/LSYe/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8lHv8uJhv/LCYg/yse + IP9VVxL/h5gD/4aSAv+HkAL/hpQC/4GUBP8/Ohb/KCEd/y4oG/8sJxv/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8nIBj/PDgx/+Xl4f///////Pz9//z8/P//////gX53/x8Z + D/8yKyH/LCUc/ywlHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh7/LCUd/y8oHv8nIBf/TEdC//X2 + 9v/a2db/QDkv/x8YEv+5trX///////z8/P/8/Pz//////8G/vP8nIhv/LSUc/y0mHf8tJh7/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LiYf/y0lHf8rJxv/LCYd/zAnHP9ufAn/iJsB/4iRAP+FkgH/iZsC/2Nu + Cv8qICD/Ligc/ywlHv8tJh7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJRz/MCgf/yIb + E/+FgXz///////z8+//6+/z//////8nHw/8sJh7/LSUe/y0mH/8sJRz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8rJR7/MCge/yQdFP+UkYz///////////+loZ7/IhkT/1BGQP/v7uz////+//z8 + /P/+/v//8fDv/1xXUf8lHRP/MCkg/ysmHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYd/y0n + HP8uKB3/KB8d/0VCFv+AlQP/h5QD/4WSAv+IlQH/fY0H/zo7Fv8qIR7/LScf/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8rJBv/Mywk/8bFwf///////f38//r8/f//////aGNd/yEZ + EP8xKSH/LSUd/y4mHf8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nH/8sJBn/PDUs/9LQ + zv///////v7+/+vr6f9XUUv/HBML/6Cem///////+/v8//38/P//////mZaT/ycfFf8xKR3/Kycg/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywmHP8uJx7/LSQg/y4mHf8tJxz/Kx4f/2VyCv+LmQL/h5IB/4SQ + A/+HmAH/VFoO/ygfH/8tJxz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Ligf/yUe + Ff9XUUn/7e/q///////7+/r//////9XU0/8yLCT/LCQa/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lygf/yUdE/9lYFn/9vb1///+/v/8/Pv//////6OemP8fFw//W1dT//r5 + 9////////Pz8///////OzMv/ODAn/y0lGf8sJh//LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4oHf8pHx3/SUkQ/4eXAf+HkgH/hZIC/4mZAP9pcgv/Licd/ywlHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//JB0V/356dP/9//3///3+//z7/P//////kY6L/yMd + FP8xKR//LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//JR8W/4+L + hf///////fz9//38/f////7/h4N8/yYeFP80Lyn/z83K///////7+/v//////+3s7P9UT0f/KCAV/ywn + H/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LScc/y0lH/81LBv/d4QI/4iV + Af+FlAD/iJQD/3qJBf85Nhb/LCMg/y0mHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4n + Hv8oIRr/oJ6a///////8+/z///////r59/9hXVj/IhsT/zAoH/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lice/y0mHf8pJB3/sa6q///////8+/z//////+/v7f9TTkj/KSAX/yki + Gv+ZlpL///////z8/P/+/v3/+/z8/3FuaP8jHBL/Ligg/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJhz/LCYe/ysjH/9jag7/i5kD/4STAP+IkgL/hJID/0VEE/8pIR7/Licd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LCQb/zIrI//FxML///////v7+///////4+Dd/0hC + O/8nIRj/Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//KiMa/zUw + Kv/U0tD///////v7+v//////1NTR/z03L/8sJRz/Jh4V/3JuaP/8+/r//v7+//z8+///////kY+K/yQd + E/8vJyD/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHv8sJhv/KCQc/1BT + Ev+HlgP/hZIB/4eSAv+JlQT/UVIS/ycfHP8tJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4n + Hv8rIxn/QToy/9zb2///////+/v7///////Mycb/Ni8n/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oHv8oIRf/R0M+/+rp6P///////Pz7//////+9urb/MCke/y0n + IP8nHxf/WlRL/+/u7v//////+/v6//////+hn5r/Jh4V/zAoIP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYe/y4nG/8pJBv/REUW/4OSAv+IlAH/hZEC/4mYAf9aXg3/JyAd/y0n + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/ykiGP9JQjr/6ejo///////7+/v//////766 + t/8tJR7/LiYe/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lyce/ygg + Fv9WUUz/9PPy//7+/v/8/Pv//////6uopf8oIRf/Ligg/ykgGP9KQzv/5ubl///////8/Pr//////7a0 + r/8rIxr/Lycf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh7/LiYe/ygh + G/8+PRX/f40D/4mUAv+EkgH/iZkA/2BnDP8qIxz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8uJx//KCAW/1FLQ//v7u7///////z8/P//////sq6s/yskHf8sJRz/Lice/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB7/Jh4U/1xYU//5+Pb//f39//z8+///////oJ2a/yYe + FP8xKiP/KSEY/0Q9Nf/c3Nz///////z8+v//////x8bA/zAnH/8uJh7/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh7/KiQd/zw4GP99iQX/ipQD/4aSAf+KmAD/ZnAK/y0l + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4oH/8nHxX/V1BI//Pz8v/+/////Pz8//// + //+ppaL/KSIb/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/zAo + H/8lHRP/YV1Y//78+//9/f3//f38//////+Wk5D/JR0U/y8pIv8rIhr/Pzgv/9XV1P///////Pz6//// + ///NzMb/Mioh/y0lHv8tJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYc/y4m + Hv8qJRz/OTQY/3yHBf+JkwP/h5IB/4uYAf9ncgj/LSUe/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Ligf/yYeFf9WT0f/8/Ly//7////8/Pz//////6imov8pJBz/LiYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lykg/yUdFP9kXVb/+/v6//v9/f/9/fz//////5qX + k/8oIBb/Lycg/ysiGf9BOjL/2NjX///////8/Pr//////83LyP8xKiH/LyUd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJh7/Licd/yYjHP87Nxj/fIgF/4iVAf+FkQP/i5gA/2xz + Cf8sJxv/LCYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/KSEX/09JQP/t7Oz///////z8 + /P//////s7Gt/ykkHP8tJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8uJx//KCAX/15XT//39/f//f////z8+///////paKf/yohF/8xKSH/KSEX/0hBOP/g4N////////z8 + +v//////zcvI/zEpIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJxr/JyMf/z45G/9+iwX/h5UA/4WRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4nHv8qIhj/RkA3/+bl5f///////Pz8///////Avrv/LSgg/y0mHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oH/8nHxb/VE1G//Ly8f/+////+/z5//// + //+vran/KiEY/zAoIf8oIBb/TkY+/+no6P///////Pz6///////Ny8j/MSkh/y8lHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSUd/y4nGv8nIh7/Qj0Y/4GOA/+HlQD/hZEE/4qY + AP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/yskGv88Ni7/1tfW//// + ///8/Pz//////9TRzv85Myz/KyQb/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Lygf/ygfFv9HQDj/5eXl///////8/Pn//////8XCvv81LSP/Licf/yggFf9jXFP/9PPz//// + ///9/Pv//////83LyP8xKSH/LyUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJR7/Lice/ykkGv9LShX/hJMC/4aTAf+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh7/LSYc/y4nH/+8urn///////v8/P//////6+jm/05JQf8oIRf/Licd/y0m + Hf8tJh3/LSYd/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSUe/zIsJf/Kysf///////z7 + +///////3dvY/0Q9Nf8sJBv/JR0T/314cv///v7//v7+//38+///////zcvI/zEpIf8vJR3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0lHv8uJiD/KiYZ/1hZE/+ImAP/hZIB/4aR + BP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//Jx4X/5mU + kf///////Pz8//38/v//////b2tl/yIcE/8vKB7/LSYd/y0mHf8tJh3/LSYe/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8uJx//JyIa/6mnov///////Pv8//7+/v/29vT/YFxW/yYcFP8rIxv/p6Wi//// + ///9/Pz//fz7///////Ny8j/MSkh/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tKBv/aXML/4qaAf+FkwD/hpIE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oH/8mHhb/dW5q//n7+f/+/v7//Pv7//////+mpKH/JiAY/y8n + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/zApIP8kHhb/g396//// + ///9/f3//Pz8//////+YlI7/JBsS/0A4M//d3Nn///////z8/P/9/fz//////83LyP8xKSH/LyUd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uKBz/KyQd/zsyHP99kAP/hpYB/4WT + AP+GkgT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lygf/ygf + F/9NRT//5eXi///////7+/r//////+jn5v8+ODL/KSEY/y8oH/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lygf/yYeFf9ZUkz/7Ozr///////8/Pv//////42Jgv8dFQ3/cGpm//// + ///9/v7//v3+//39/P//////zcvI/zEpIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4oHf8oIB3/VVMR/4eYAP+GkgP/h5QB/4aSBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJh3/LyYd/y0jG/+5uLT///////v8+//4+vv//////4WB + ev8dFQz/MSoh/y0lHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJhv/LSUb/zQs + Jv/GxsP////////////b29n/QDw1/yEYEP++urf///////v7/P///v///f37///////Ny8j/MSkh/y8l + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx3/LCUd/ywlH/91gAj/ipcC/4SR + Af+HlAH/hZIE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ysl + Hf8vKR//IxsQ/29qZP///v7//f39//z8/f//////5+Xi/z86NP8qIhf/MCge/y8nHf8rJR3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/yslHf8xKR7/IRoQ/4B9ef/+/v///v79/4SAff8YEQn/cWli//z9 + /f/+/v3//v7+//7+/v/9/Pv//////83LyP8xKSH/LyUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4m + HP8uJB//LCYe/y0nHf8pHx3/U1MT/4aaA/+HkQT/hpQA/4WTAv+GkgT/ipgA/2xzCv8sJxr/LCYc/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSce/y0mHP8tJBr/Miwl/9bU0v//////+/v7//v7 + +///////paGd/yMdFf8wKR//Licd/ywlHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCUd/zEo + Hv8pIRf/OzYw/+ro6P+8t7P/KyIX/zYvJ//X1dL///////z8/P///////v7+//39/P//////zcvI/zEp + If8vJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LScd/ywmHf8sKB3/LCMf/zkxGf96iQX/h5YB/4iP + B/+GkwD/hZUA/4aRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LiYd/zEqIf8eGBD/eXVv///////7+/r//f7+/////v/39fP/aWZi/yIcFf8wKSD/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8sJRz/LiYd/zApH/8jHRX/dnFs/01EPf8hGAz/oZ2X//// + ///8/Pz//v7+//7+/v/+/v7//f38///////Ny8j/MSkh/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh7/LCYe/ywmHf8xJRv/ZG0K/4iXAP+IkAT/iZUB/4WTAP+FkwH/hpIE/4qYAP9scwr/LCca/ywm + HP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0lHP8uJR3/LCUc/y4nHv8lHxX/vLq2//// + ///6+/z//f79///////f3t3/R0I7/yUeFv8wKSH/LCUc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4m + Hf8uJx7/LSYd/y4mHf8rIhX/IBgP/3Fva//6+vn//v7////////9/f3//v7+///////9/fv//////83L + yP8xKiH/LyUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8mHv8vJx3/KSAd/1NWD/+HlwD/hY8G/4aV + Av+FkwH/hpMC/4aUAf+GkgT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0lHP8uJx7/MCkg/yUeFP9TT0n/7evp//7////9/f3//Pz8///////FxML/NzEq/ygg + Ff8vKB//LSYd/y0mHf8sJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYe/y0mHf8tJhz/MSkf/yUcEf9bVlD/5+jo//// + ///+/f3//v39//7+/v///////v////39/P//////zcvI/zEqIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJxv/LiUe/y8l + HP8tJhz/LCce/ycgHP9HRRb/gJIF/4WSAv+EkwD/g5QB/4WSBf+FlAH/hpQA/4aSBP+KmAD/bHMK/ywn + Gv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lygf/yUf + Fv+Bf3r//f38//v7+//+/f3/+vr7///////BwLz/Pzox/ycgF/8vKB//LSYe/y4nHf8tJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJR3/LSYe/y4n + Hv8tJRz/Lygf/y4oIP8jHRP/YltV/+Ti3///////+/z7//78/f/+/v7/+vv5//f39f/+/v///Pz8//// + ///Ny8j/MSog/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8rJBz/LScg/ywnGv8qIB7/SEwU/3+RBP+HlwD/g5IC/4aS + Af+FlAH/g5ID/4SRAv+GkwH/hpIE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSYc/y0nH/+vrKn///////r7+//8/vz/+Pr7//// + ///S0c//UEtF/yEaEv8uJh3/MSke/y4mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8sJRz/LSYd/y4nHv8sJR3/Lice/zEpHv8qIhn/IhsU/3dxav/y8ev///////n6 + +v/8+/v///39//39/f+enZr/1dLP///////8/Pv//////83LyP8xKiH/LyUd/y0nHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LiQd/y0p + G/8mJB3/KyEf/1dXFf9/kAP/iJUC/4eQBP+GlAH/h5QE/4CVAP9eYAz/eoMH/4mWAf+FkQT/ipgA/2xz + Cv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8vKB//KiIa/y4pIv/HxcL///////f6+P/6/Pv/+fn7///////t7Or/cGxo/yEbFP8mHRP/MCge/y8o + H/8uJx7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8uJx7/Lice/y4n + Hv8uJx7/IhsS/y4oIv+cmZX//Pv5/////v/8/Pz//Pv9//r7+///////lpOP/zQvKf/Z1ND///////v7 + +///////zcvI/zEqIf8vJRz/LSce/y4nHf8uJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Licd/y4nHf8tJhv/KSAd/zQqGv9kbQ//hZgE/4WVAf+GkgP/hpAG/4SR + Av+InQL/U1UV/zcqIP96hwT/ipgA/4WRBP+LmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywmHv8uKCD/JyAX/zYyKv/Dwr7///////38 + +//9/Pv//vz8///////9/fz/rqql/1JNRf8qIxv/Ix0U/ykjGv8uJx7/MCkg/y8oH/8vKB//Lice/y4m + Hv8tJx7/LSce/y8oIP8vKCD/MCkh/y0mHf8oIBj/IxwU/zApIv9mYVv/zsvI///////7/P7/+/z8//38 + /f/+/v///f7+/5eYlP8gGxP/PjYw/9vW0v//////+vv7///////Ny8j/MSog/y8mHf8tJhz/KiEd/ysl + Hv8tJx3/Ligc/y4oHf8tJx3/LSYc/y4mHv8tJR7/LSYd/y0mHf8uJx3/Licc/y0nG/8rJB3/KiEd/y8q + G/9JTBT/dIIH/4maAf+EkwD/hJAG/4aSBP+FlAD/hJUD/1hZEP8oHB//NjYX/3mIBf+KkwP/hZEE/4uY + AP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/ywlHP8wKSD/Jh4V/zozLP+7uLT///////z8/P/8/Pz//P3+//7+/v//////7+7s/6ak + oP9jX1r/ODMs/yMdFf8jGxL/JRwT/ycfFv8rIhn/KyMa/ysjGv8qIhn/Jh4W/yMbE/8iGxL/JyEY/0M+ + N/90b2v/wr+8//z8/P//////+/z7//79/f/8/Pr///////n4+P+Pi4j/JyEZ/yghGP8/ODP/2NTR//// + ///6+vv//////87MyP8wJyL/ODQa/1piD/9DQBj/LiwZ/yohHP8rIR//KiEe/yoiH/8rJB7/KyUe/ysk + Hv8rIx7/KiEe/ykgH/8nIBz/LSUZ/zoyG/9QUhP/bnkJ/4WXBP+GmgD/g5EC/4SUAP+FkAP/jpUC/4SR + Bf9RUhP/KyEd/ykkHP84NBj/eYYG/4mVAf+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSYd/ywlHP8wKSD/KSIZ/zQu + Jv+gnZn////////////5+vz/+/z9//r7+/////////////b18//S0M3/qqej/3hzbf9aU0r/SEE4/zsz + K/82Lyb/NjAn/z85L/9NRj7/YFhR/4mEfv+1s7D/3d3Z//z9+////////P39//n5+f/8/f3/+Pr7//// + ///w7+7/d3Rx/yUgGf8vJx7/KiMb/z02Mf/Y1NH///////r6+///////zs3I/y8mIv89OBf/gpAG/4CP + BP9wgAb/ZGgQ/01LF/8/PRT/OTUY/zQuGf8vKRn/MSsZ/zcxF/8+ORj/REEX/1NYEP9odAv/eYYI/4aX + A/+LmgD/h5EC/4eQBf+FkgP/hZEC/4uaAP97iwb/SkgU/ysjG/8tJB7/KiUc/zgzGv95hgb/iZYA/4WR + BP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8uJx7/LSYd/ywlHP8vJx7/LCQb/yQeFv90cGr/6ujm//////////7//Pz8//z8 + /P/9/f3////////////////////+//n5+f/x8fH/4+Pj/9zc2//c3dv/5ebk//b19f/5+fn///////// + /////////P7+//n6/P/8/Pz//Pz8////////////zczK/1BMRv8jHRb/Licd/zApH/8pIhn/Pjcx/9jU + 0f//////+vr7///////Ozcj/LyYi/z03F/+DjQX/jZYE/4eVAf+KmAH/iJgC/4OUA/99jgX/eIkF/3aF + Bv93hgf/e4sF/4GRBf+HlgX/jZgD/4mXAP+FlQD/hJME/4OSBP+DlQD/hZQB/4mVAf+KlwL/bnYL/zoz + F/8oISH/KSYc/y4mHv8qJR3/ODMa/3mGBv+JlQD/hZEE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSYd/ywm + Hv8sJh7/MSke/x8XDv9GQTr/sa6q//Ty7v////////////z8+//8+/v/+vr6//z8/P/9/f3//f////// + /////////////////////////v////z+/v/7/P3/+/v7//z7+//7+vr//Pz9////////////5uTh/5OO + if8tJyD/IxwT/zIpH/8vJx3/LScf/ykiGf8+NzH/2NTR///////6+vv//////87NyP8wJiL/PDcY/3yN + BP+HlAH/hJEC/4WSAf+FkQP/hpIF/4iUBP+IlgL/iJcB/4iXAf+HlQH/hpQB/4WSAf+FkQL/hpEE/4aR + A/+EkgH/hpAD/4iXAf+EmgH/d4YJ/1RXEf8uIxz/LCId/y0lH/8vJx//LiYe/yslHf84Mxr/eYYG/4mV + AP+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYe/y0mHv8tJhz/MSog/ycgFv8nIBj/Y15X/7az + r//r6uj//////////////////f39//v7+//8+/v//fz8//z8+//8+/v//Pz7//z8+v/9/Pz//Pv7//z8 + +//9/f3/////////////////39/e/5yamP9JRT//IxwT/yskG/8xKSD/LSYc/y0mHf8uJx7/KSIZ/z43 + Mf/Y1NH///////v7+///////zszG/y8mIv8/Ohf/gJIH/4iaAv+ElAH/hJIC/4WRAv+EkQD/g5EA/4OR + AP+DkQH/hZAC/4WRAv+FkQL/hJEC/4GRAv+CkQL/h5cA/4yaAP+KlwD/eIMG/1hfEf83Mxf/KR8e/ysn + Gv8vKBv/LiYc/y0mHf8uJR7/KiQd/zgzGv95hgX/iZYA/4WRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lygf/y4nHv8kHRT/LCcg/1FMRv+IhYD/w8G+//Du7P////////////// + //////////////////////////////////////////////79/P/l5OH/sK6r/3Vxbf9DPjj/JB8Y/ycg + GP8vKB//Lice/y0mHf8tJh3/LSYd/y8nHv8pIhn/Pjcx/9jU0f//////+/v7///////NzMf/MSkh/zQr + G/9SWQ//bnoH/4KPBf+LmQD/i5wA/4ucAP+KmQH/iZcC/4uXA/+MmAL/i5oA/4ucAP+MnAH/jZkA/4aX + Af95iQb/YWkO/0tKE/83MBz/KCId/ykkHP8tJiD/LiYd/y0mHf8tJh3/LSYd/y4mHf8rJB3/ODMb/3mG + Bf+JlgD/hZEE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYe/y8o + H/8uJx3/KCAV/yMbEf8tJhz/RkA4/2xpY/+PjIj/q6mm/8bDwf/PzMn/0s/N/9LPzP/Oy8n/vry5/6Ge + nP+Gg3//XVpV/zw3MP8nIBf/JR0T/ywkGf8wKB7/Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/yki + Gf8+NzH/2NTR///////7+/v//////83Lx/8yKiH/LiMe/ykhHP8vJhv/PDQa/0tJFv9YXQ3/ZGwO/255 + Df9zggf/c4EG/3R+C/9wfA7/Z3MN/15oDf9TVRH/QzwY/zUrHP8rIh7/KiEj/ykmGv8rJxr/LiUg/y0k + Hf8tJh3/LSYd/y0mHf8tJh3/LiUd/yskHf84Mxv/eYYF/4mWAP+FkQT/ipgA/2xzCv8sJxr/LCYc/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx//MCkf/y4mHP8lHhX/HhcP/x0W + Dv8iGhP/KB8Y/ysjHP8tJR7/LSQe/yoiHP8nHxj/IBgR/x0WD/8gGhL/JyAY/y8nHv8wKB//LSce/y0m + Hv8tJh3/LCUc/y0mHf8tJh3/LSYd/y0mHf8uJx7/KSIZ/z43Mf/Y1NH///////v7+///////zcvH/zIq + Iv8wJR3/LiYg/ykoGf8nJBv/JR4f/ygeHf8qIB7/LCId/y0lHP8vJhr/MCca/y0kG/8rIB7/KB0e/yUe + Hf8oICH/KiQb/y4oGv8uJx//LSYe/y0lHv8uJhz/Licb/y0mHf8tJh3/LSYd/y0mHf8uJh3/KyQd/zgz + G/95hgX/iZYA/4WRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywl + HP8tJh3/LSYe/ywlHv8sJR3/Lice/y8oH/8wKSD/MCkg/y8pH/8uJx3/LScc/ywmHP8sJRv/LSYc/y4o + Hv8wKR//MCkg/zApIP8vKB//LCUd/ywmHf8rJR7/LScf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4n + Hv8pIhn/Pjcx/9jU0f//////+/v6///////Ny8f/Mioi/y8lG/8uJh//LCYd/y8mHv8xJh7/Lygc/y4n + Hf8tJh3/LCce/ywmHv8sJR3/LCYb/y4nHP8vKBz/MCgb/zAnHv8uJxz/LSYc/y0mHf8tJh3/LCYd/ysm + HP8rJR3/LSYd/y0mHf8tJh3/LSYd/y4mHf8rJB3/ODMb/3mGBf+JlgD/hZEE/4qYAP9scwr/LCca/ywm + HP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/ykiGf8+NzH/2NTR///////7+/r//////83L + yP8xKSH/LyUd/y0nHv8tJh7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LiYd/ysk + Hf84Mxv/eYYF/4mWAP+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8uJx7/KSIZ/z43Mf/Y1NH///////v7+v//////zcvI/zEpIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJh3/KyQd/zgzG/95hgX/iZYA/4WRBP+KmAD/bHMK/ywn + Gv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8pIhn/Pjcx/9jU0f//////+/v6//// + ///Ny8j/MSkh/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4m + Hf8rJB3/ODMb/3mGBf+JlgD/hZEE/4qYAP9scwn/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Lice/ykiGv8+NzH/2NTR///////6+/r//////83MyP8xKSH/LyUd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSUc/yskHf84Mxr/eYYG/4mVAf+FkQX/ipgA/21z + Cv8tJhz/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB7/KSIZ/zw3Mf/W1NH///////r7 + +///////zczH/zAqIv8uJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + HP8wJx7/KiQe/zYzF/94hQj/iZYE/4OSA/+MmgD/b3IK/y0mGf8sJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y8nHv8qIhn/PTgy/9bV0///////+Pn8///////NzMf/MCkh/y4nHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8qIh7/OjEd/3uHBv+KmQD/hZED/4mW + A/9rdAr/Kycc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lyce/yoiGf89ODH/19XR//// + ///49/j//////8zLxv8wKiH/LSUc/y0mHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJR3/Lice/ywlHP87Mxr/eoYJ/4iWAf+FkAb/hpkC/2t3Bv8uJhr/LCUe/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8uJx7/LCUc/zEqIv9oYVn/dnBo/3NsZf90cGn/Y15X/ywlHv8uJh7/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHP8vJRz/LCYc/y8sGP9GRxb/TU0T/0pL + Fv9KTxD/REEX/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCUc/yUd + E/8kGxL/JBwS/yIbEf8lHhb/LCUd/y0lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4mHP8tJR7/KyYd/ykgHf8pIR3/JyEf/ycgH/8qISD/KyYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lygf/y8oIP8vKB//Lygg/y8oH/8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Licd/y4n + Hf8uJxz/Licd/y4nHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + \ No newline at end of file diff --git a/DingDong.Monitor/Models/Config.cs b/DingDong.Monitor/Models/Config.cs index 803b934..7284d20 100644 --- a/DingDong.Monitor/Models/Config.cs +++ b/DingDong.Monitor/Models/Config.cs @@ -1,13 +1,38 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using DingDong.Core.Models; namespace DingDong.Monitor.Models { public class Config { public DingDongConfig DdConfig { get; set; } + + public List Categories { get; set; } + + public SoftConfig SoftConfig { get; set; } + } + + public class SoftConfig + { + public List PushUrls { get; set; } + + public bool PlayMusic { get; set; } + + public bool MonitorCategory { get; set; } + + public bool MonitorCart { get; set; } + + public bool IsTimeBegin { get; set; } + + public string TimeBegin { get; set; } + + public bool MonitorContinue { get; set; } + + public int MonitorContinueMins { get; set; } + + public int MonitorInterval { get; set; } + + public List ExcludeKeywords { get; set; } + + public bool TrackLog { get; set; } } } diff --git a/DingDong.Monitor/Music/order.wav b/DingDong.Monitor/Music/order.wav new file mode 100644 index 0000000..c746fa8 Binary files /dev/null and b/DingDong.Monitor/Music/order.wav differ