| | |
| | | <!--ロード中...--> |
| | | <aura:renderIf isTrue="{!v.login}"> |
| | | <aura:renderIf isTrue="{!!v.loginEdit}"> |
| | | <lightning:spinner alternativeText="Loading" size="medium" /> |
| | | <!-- <lightning:spinner alternativeText="Loading" size="medium" /> --> |
| | | <div class="slds-spinner_container" id="spinner" style="position: fixed;top:123px;"> |
| | | <div |
| | | role="status" |
| | | class="slds-spinner slds-spinner_medium slds-spinner_brand" |
| | | > |
| | | <span class="slds-assistive-text">Loading</span> |
| | | <div class="slds-spinner__dot-a"></div> |
| | | <div class="slds-spinner__dot-b"></div> |
| | | </div> |
| | | </div> |
| | | </aura:renderIf> |
| | | </aura:renderIf> |
| | | <div aura:id="report" id="report"> |
| New file |
| | |
| | | @isTest |
| | | private class LexArriveGoodsControllerTest { |
| | | @IsTest |
| | | static void test1(){ |
| | | NoteStay__c n = new NoteStay__c(Name = 'NoteStay',IsStay__c = true); |
| | | insert n; |
| | | List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '販売店']; |
| | | if (rectCo.size() == 0) { |
| | | return; |
| | | } |
| | | // Profile prof = [select Id from Profile where Name ='901_经销商社区普通权限_2重验证(ET Email)']; |
| | | Profile prof = [select Id from Profile where Name ='901_经销商社区普通权限_2重验证(ET)']; |
| | | |
| | | Account myAccount2 = new Account(name='Testaccount002',Dealer_discount__c =20,RecordTypeId = rectCo[0].Id,AgentCode_Ext__c = '9999900'); |
| | | Account myAccount1 = new Account(name='Testaccount001',Dealer_discount__c =30,RecordTypeId = rectCo[0].Id); |
| | | insert new account[]{myAccount1,myAccount2}; |
| | | |
| | | Contact core = new Contact(email='jplumber@salesforce.com', firstname='Joe',lastname='Plumber',accountid=myAccount1.id); |
| | | insert core; |
| | | user MyUser_Test = New User(ContactId = core.id,Alias = 'newUser',Email='newuser@testorg.com',EmailEncodingKey='UTF-8', LastName='TestUser', LanguageLocaleKey='zh_CN',LocaleSidKey='zh_CN', ProfileId = prof.Id,TimeZoneSidKey='Asia/Shanghai', UserName='testUser@testorg.com',UserPro_Type__c = 'ET'); |
| | | System.runAs(new User(Id = UserInfo.getUserId())){ |
| | | insert MyUser_Test; |
| | | } |
| | | |
| | | // User MyUser_Test = [select id,Contact.accountid from User WHERE ProfileId = :prof.Id and IsActive = true and UserPro_Type__c = 'ET' limit 1 ]; |
| | | // Product2 prod01 = new Product2(Name='Test01',ProductCode='Test01',Asset_Model_No__c = 'Test01',SFDA_Status__c = '有効',JANCODE__c = '04953170200311',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | // Product2 prod02 = new Product2(Name='Test02',ProductCode='Test02',Asset_Model_No__c = 'Test02',SFDA_Status__c = '有効',JANCODE__c = '04953170200312',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | // insert new Product2[] {prod01,prod02}; |
| | | system.runAs(MyUser_Test){ |
| | | Product2 prod01 = new Product2(Name='Test01',ProductCode='Test01',Asset_Model_No__c = 'Test01',SFDA_Status__c = '有効',JANCODE__c = '04953170200311',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | Product2 prod02 = new Product2(Name='Test02',ProductCode='Test02',Asset_Model_No__c = 'Test02',SFDA_Status__c = '有効',JANCODE__c = '04953170200312',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | insert new Product2[] {prod01,prod02}; |
| | | Product2__c pro1 = new Product2__c(Name='Pro001',OT_CODE_Text__c='Test001',Product2__c = prod01.Id); |
| | | Product2__c pro2 = new Product2__c(Name='Pro002',OT_CODE_Text__c='Test002',Product2__c = prod02.Id); |
| | | insert new Product2__c[] {pro1, pro2}; |
| | | //订单 |
| | | Consumable_order__c Order1 = new Consumable_order__c(); |
| | | Order1.Name = 'OCM_01_001'; |
| | | Order1.Order_status__c = '批准'; |
| | | Order1.Order_type__c = '订单'; |
| | | // Order1.Dealer_Info__c = myAccount1.id; |
| | | Order1.Dealer_Info__c = myAccount1.id; |
| | | Order1.RecordTypeid = System.Label.RT_ConOrder_Delivery; |
| | | Order1.Total_num__c = 3; |
| | | Order1.OrderNumber_arrived__c =1; |
| | | Order1.Delivery_detail_count__c=1; |
| | | Order1.Order_ProType__c = 'ET'; |
| | | insert Order1; |
| | | |
| | | //订单明细 |
| | | //fahuo |
| | | Consumable_orderdetails__c Orderdet = new Consumable_orderdetails__c(); |
| | | Orderdet.Name = 'OCM_01_00101'; |
| | | Orderdet.Consumable_order__c = Order1.Id; |
| | | Orderdet.RecordTypeId = System.Label.RT_ConOrderDetail1_Order; |
| | | Orderdet.Consumable_Product__c = pro1.Id; |
| | | Orderdet.Consumable_count__c = 40; |
| | | insert Orderdet; |
| | | |
| | | //发货明细 |
| | | //到货正确信息 |
| | | Consumable_order_details2__c Orderdet1 = new Consumable_order_details2__c(); |
| | | Orderdet1.Name = 'OCM_01_001002'; |
| | | Orderdet1.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet1.Consumable_Product__c = pro1.Id; |
| | | Orderdet1.Asset_Model_No__c = 'Test01'; |
| | | Orderdet1.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet1.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRA'; |
| | | Orderdet1.TracingCode__c = 'BXJRA'; |
| | | |
| | | //取消产品 |
| | | Consumable_order_details2__c Orderdet2 = new Consumable_order_details2__c(); |
| | | Orderdet2.Name = 'OCM_01_001003'; |
| | | Orderdet2.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet2.Consumable_Product__c = pro1.Id; |
| | | Orderdet2.Asset_Model_No__c = 'Test01'; |
| | | //Orderdet2.Consumable_Arrived_order__c = Order1.Id; |
| | | Orderdet2.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet2.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRB'; |
| | | Orderdet2.Cancellation_Date__c= Date.today(); |
| | | Orderdet2.TracingCode__c = 'BXJRB'; |
| | | //销售产品 |
| | | Consumable_order_details2__c Orderdet3 = new Consumable_order_details2__c(); |
| | | Orderdet3.Name = 'OCM_01_001004'; |
| | | Orderdet3.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet3.Consumable_Product__c = pro1.Id; |
| | | Orderdet3.Asset_Model_No__c = 'Test01'; |
| | | Orderdet3.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet3.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRC'; |
| | | Orderdet3.Used_date__c = Date.today(); |
| | | Orderdet3.Arrive_date__c = Date.today(); |
| | | Orderdet3.TracingCode__c = 'BXJRC'; |
| | | //Orderdet3.Box_Piece__c = '盒'; |
| | | |
| | | |
| | | //出库产品 |
| | | Consumable_order_details2__c Orderdet4 = new Consumable_order_details2__c(); |
| | | Orderdet4.Name = 'OCM_01_001005'; |
| | | Orderdet4.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet4.Consumable_Product__c = pro1.Id; |
| | | Orderdet4.Asset_Model_No__c = 'Test01'; |
| | | Orderdet4.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet4.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRD'; |
| | | Orderdet4.Send_Date__c = Date.today(); |
| | | Orderdet4.Arrive_date__c = Date.today(); |
| | | Orderdet4.TracingCode__c = 'BXJRD'; |
| | | |
| | | //已到货产品 |
| | | Consumable_order_details2__c Orderdet5 = new Consumable_order_details2__c(); |
| | | Orderdet5.Name = 'OCM_01_001006'; |
| | | Orderdet5.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet5.Consumable_Product__c = pro1.Id; |
| | | Orderdet5.Asset_Model_No__c = 'Test01'; |
| | | Orderdet5.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet5.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRE'; |
| | | Orderdet5.Arrive_date__c = Date.today(); |
| | | Orderdet5.TracingCode__c = 'BXJRE'; |
| | | |
| | | //发货明细 |
| | | //管理编码包含数字 |
| | | Consumable_order_details2__c Orderdet6 = new Consumable_order_details2__c(); |
| | | Orderdet6.Name = 'OCM_01_001002'; |
| | | Orderdet6.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet6.Consumable_Product__c = pro1.Id; |
| | | Orderdet6.Asset_Model_No__c = 'Test01'; |
| | | Orderdet6.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet6.Bar_Code__c = '01049531702003111115120017181000105ZK250BX123'; |
| | | Orderdet6.TracingCode__c = 'BX123'; |
| | | |
| | | //发错库 未到货 |
| | | Consumable_order_details2__c Orderdets8 = new Consumable_order_details2__c(); |
| | | Orderdets8.Name = 'OCM_01_001011'; |
| | | Orderdets8.Consumable_order_minor__c = Order1.Id; |
| | | Orderdets8.Consumable_Product__c = pro1.Id; |
| | | Orderdets8.Asset_Model_No__c = 'Test01'; |
| | | Orderdets8.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdets8.Bar_Code__c = '01049531702003111115120017181000105ZK250BXsys'; |
| | | Orderdets8.Box_Piece__c = '盒'; |
| | | Orderdets8.TracingCode__c = 'BXsys'; |
| | | |
| | | insert new Consumable_order_details2__c[] {Orderdet1, Orderdet2,Orderdet3,Orderdet4,Orderdet5,Orderdet6,Orderdets8}; |
| | | |
| | | List<Consumable_orderdetails__c> cod1 = [select Id from Consumable_orderdetails__c WHERE Consumable_order__c = :Order1.Id]; |
| | | System.assertEquals(1, cod1.size()); |
| | | |
| | | PageReference page = new PageReference('/apex/ArriveGoods?Esetid=' + Order1.Id); |
| | | |
| | | System.Test.setCurrentPage(page); |
| | | ArriveGoodsController Controller = new ArriveGoodsController(); |
| | | //初始化测试 |
| | | System.Test.startTest(); |
| | | LexArriveGoodsController.Results re = LexArriveGoodsController.init('Arr', Order1.Id); |
| | | String arrControllerStr = re.arrGoodCon; |
| | | LexArriveGoodsController.searchProduct('', arrControllerStr); |
| | | re = LexArriveGoodsController.searchProduct('01049531702003111115120017181000105ZK250BXJRA\n01049531702003111115120017181000105ZK250BXsys\n01049531702003111115120017181000105ZK250BXsun\n01049531702003111115120017181000105ZK250BXJRB\n01049531702003111115120017181000105ZK250BXJRC\n01049531702003111115120017181000105ZK250BX111\n01049531702003111115120017181000105ZK250BXJRD\n01049531702003111115120017181000105ZK250BXJRE\n01049531702003111115120017181000105ZK250BXJRF\n01049531702003111115120017181000105ZK250BXJRG\n01049531702003111115120017181000105ZK250BX123', arrControllerStr); |
| | | arrControllerStr = re.arrGoodCon; |
| | | LexArriveGoodsController.arriveGoodsConfim(arrControllerStr); |
| | | System.Test.stopTest(); |
| | | } |
| | | } |
| | | |
| | | @IsTest |
| | | static void test2(){ |
| | | NoteStay__c n = new NoteStay__c(Name = 'NoteStay',IsStay__c = true); |
| | | insert n; |
| | | List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '販売店']; |
| | | if (rectCo.size() == 0) { |
| | | return; |
| | | } |
| | | // Profile prof = [select Id from Profile where Name ='901_经销商社区普通权限_2重验证(ET Email)']; |
| | | Profile prof = [select Id from Profile where Name ='901_经销商社区普通权限_2重验证(ET)']; |
| | | |
| | | |
| | | Account myAccount2 = new Account(name='Testaccount002',Dealer_discount__c =20,RecordTypeId = rectCo[0].Id,AgentCode_Ext__c = '9999900'); |
| | | Account myAccount1 = new Account(name='Testaccount001',Dealer_discount__c =30,RecordTypeId = rectCo[0].Id); |
| | | insert new account[]{myAccount1,myAccount2}; |
| | | |
| | | Contact core = new Contact(email='jplumber@salesforce.com', firstname='Joe',lastname='Plumber',accountid=myAccount1.id); |
| | | insert core; |
| | | user MyUser_Test = New User(ContactId = core.id,Alias = 'newUser',Email='newuser@testorg.com',EmailEncodingKey='UTF-8', LastName='TestUser', LanguageLocaleKey='zh_CN',LocaleSidKey='zh_CN', ProfileId = prof.Id,TimeZoneSidKey='Asia/Shanghai', UserName='testUser@testorg.com',UserPro_Type__c = 'ET'); |
| | | System.runAs(new User(Id = UserInfo.getUserId())){ |
| | | insert MyUser_Test; |
| | | } |
| | | |
| | | // User MyUser_Test = [select id,Contact.accountid from User WHERE ProfileId = :prof.Id and IsActive = true and UserPro_Type__c = 'ET' limit 1 ]; |
| | | // Product2 prod01 = new Product2(Name='Test01',ProductCode='Test01',Asset_Model_No__c = 'Test01',SFDA_Status__c = '有効',JANCODE__c = '04953170200311',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | // Product2 prod02 = new Product2(Name='Test02',ProductCode='Test02',Asset_Model_No__c = 'Test02',SFDA_Status__c = '有効',JANCODE__c = '04953170200312',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | // insert new Product2[] {prod01,prod02}; |
| | | system.runAs(MyUser_Test){ |
| | | Product2 prod01 = new Product2(Name='Test01',ProductCode='Test01',Asset_Model_No__c = 'Test01',SFDA_Status__c = '有効',JANCODE__c = '04953170200311',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | Product2 prod02 = new Product2(Name='Test02',ProductCode='Test02',Asset_Model_No__c = 'Test02',SFDA_Status__c = '有効',JANCODE__c = '04953170200312',Dealer_special_Object__c = true,Manual_Entry__c = false); |
| | | insert new Product2[] {prod01,prod02}; |
| | | Product2__c pro1 = new Product2__c(Name='Pro001',OT_CODE_Text__c='Test001',Product2__c = prod01.Id); |
| | | Product2__c pro2 = new Product2__c(Name='Pro002',OT_CODE_Text__c='Test002',Product2__c = prod02.Id); |
| | | insert new Product2__c[] {pro1, pro2}; |
| | | //订单 |
| | | |
| | | Consumable_order__c Order1 = new Consumable_order__c(); |
| | | Order1.Name = 'OCM_01_001'; |
| | | Order1.Order_status__c = '批准'; |
| | | Order1.Order_type__c = '订单'; |
| | | Order1.Dealer_Info__c = myAccount1.id; |
| | | Order1.RecordTypeid = System.Label.RT_ConOrder_Delivery; |
| | | |
| | | //返品订单 |
| | | |
| | | Consumable_order__c Order2 = new Consumable_order__c(); |
| | | Order2.Name = 'OCM_01_002'; |
| | | Order2.Order_status__c = '批准'; |
| | | Order2.Order_type__c = '返品'; |
| | | Order2.Dealer_Info__c = myAccount1.id; |
| | | Order2.RecordTypeid = System.Label.Dealer_Returned_Label; |
| | | insert Order1; |
| | | insert Order2; |
| | | |
| | | //订单明细 |
| | | //fahuo |
| | | Consumable_orderdetails__c Orderdet = new Consumable_orderdetails__c(); |
| | | Orderdet.Name = 'OCM_01_00101'; |
| | | Orderdet.Consumable_order__c = Order1.Id; |
| | | Orderdet.RecordTypeId = System.Label.RT_ConOrderDetail1_Order; |
| | | Orderdet.Consumable_Product__c = pro1.Id; |
| | | Orderdet.Consumable_count__c = 4; |
| | | insert Orderdet; |
| | | |
| | | //发货明细 |
| | | //没出库,没销售,就是在库 |
| | | Consumable_order_details2__c Orderdet1 = new Consumable_order_details2__c(); |
| | | Orderdet1.Name = 'OCM_01_001001'; |
| | | Orderdet1.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet1.Consumable_Product__c = pro1.Id; |
| | | Orderdet1.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet1.Arrive_date__c = date.today(); |
| | | Orderdet1.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet1.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRF'; |
| | | Orderdet1.TracingCode__c = 'BXSYS'; |
| | | |
| | | //daohuo |
| | | Consumable_order_details2__c Orderdet2 = new Consumable_order_details2__c(); |
| | | Orderdet2.Name = 'OCM_01_001002'; |
| | | Orderdet2.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet2.Consumable_Product__c = pro1.Id; |
| | | Orderdet2.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet2.Consumable_Arrived_order__c = Order1.Id; |
| | | Orderdet2.Arrive_date__c = date.today(); |
| | | Orderdet2.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet2.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRI'; |
| | | Orderdet2.TracingCode__c = 'BXSYS'; |
| | | //sale |
| | | Consumable_order_details2__c Orderdet3 = new Consumable_order_details2__c(); |
| | | Orderdet3.Name = 'OCM_01_001003'; |
| | | Orderdet3.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet3.Consumable_Product__c = pro1.Id; |
| | | Orderdet3.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet3.Consumable_Arrived_order__c = Order1.Id; |
| | | Orderdet3.Arrive_date__c = date.today(); |
| | | Orderdet3.Used_date__c = date.today(); |
| | | Orderdet3.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet3.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRJ'; |
| | | Orderdet3.TracingCode__c = 'BXSYS'; |
| | | //出库 |
| | | Consumable_order_details2__c Orderdet4 = new Consumable_order_details2__c(); |
| | | Orderdet4.Name = 'OCM_01_001004'; |
| | | Orderdet4.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet4.Consumable_Product__c = pro1.Id; |
| | | Orderdet4.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet4.Consumable_Arrived_order__c = Order1.Id; |
| | | Orderdet4.Consumable_Shipment_order__c = Order1.Id; |
| | | Orderdet4.Send_Date__c = date.today(); |
| | | Orderdet4.Arrive_date__c = date.today(); |
| | | Orderdet4.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet4.Bar_Code__c = '01049531702003111115120017181000105ZK250BX222'; |
| | | Orderdet4.TracingCode__c = 'BXSYS'; |
| | | //quxiao |
| | | Consumable_order_details2__c Orderdet5 = new Consumable_order_details2__c(); |
| | | Orderdet5.Name = 'OCM_01_001005'; |
| | | Orderdet5.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet5.Consumable_Product__c = pro1.Id; |
| | | Orderdet5.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet5.Cancellation_Date__c = Date.today(); |
| | | Orderdet5.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet5.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRZ'; |
| | | Orderdet5.Box_Piece__c ='个'; |
| | | Orderdet5.TracingCode__c = 'BXSYS'; |
| | | //fanpin |
| | | Consumable_order_details2__c Orderdet6 = new Consumable_order_details2__c(); |
| | | Orderdet6.Name = 'OCM_01_001006'; |
| | | Orderdet6.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet6.Consumable_Product__c = pro1.Id; |
| | | Orderdet6.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet6.Consumable_Return_order__c = Order2.Id; |
| | | Orderdet6.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet6.Bar_Code__c = '01049531702003111115120017181000105ZK250BXJRA'; |
| | | Orderdet6.Box_Piece__c ='个'; |
| | | Orderdet6.TracingCode__c = 'BXSYS'; |
| | | |
| | | Consumable_order_details2__c Orderdet7 = new Consumable_order_details2__c(); |
| | | Orderdet7.Name = 'OCM_01_001001'; |
| | | Orderdet7.Consumable_order_minor__c = Order1.Id; |
| | | Orderdet7.Consumable_Product__c = pro1.Id; |
| | | Orderdet7.Asset_Model_No__c = 'Pro001'; |
| | | Orderdet7.RecordTypeId = System.Label.RT_ConOrderDetail2_Delivery; |
| | | Orderdet7.Bar_Code__c = '01049531702003111115120017181000105ZK250BX333'; |
| | | Orderdet7.TracingCode__c = 'BXSYS'; |
| | | insert new Consumable_order_details2__c[] {Orderdet1, Orderdet2,Orderdet3,Orderdet4,Orderdet5,Orderdet6,Orderdet7}; |
| | | ArriveGoodsController Controller = new ArriveGoodsController(); |
| | | System.Test.startTest(); |
| | | Controller.init(); |
| | | Controller.barcode = '01049531702003111115120017181000105ZK250BXAAA\n01049531702003111115120017181000105ZK250BXJRJ\n01049531702003111115120017181000105ZK250BXJRF\n01049531702003111115120017181000105ZK250BX123\n01049531702003111115120017181000105ZK250BX222'; |
| | | Controller.SearchPro(); |
| | | Controller.ArriveGoodsConfim(); |
| | | Controller.UpdateGoodsOfReturn(); |
| | | controller.getinventorysize(); |
| | | LexArriveGoodsController.Results re = LexArriveGoodsController.init('Arr',''); |
| | | String arrControllerStr = re.arrGoodCon; |
| | | re = LexArriveGoodsController.searchProduct('01049531702003111115120017181000105ZK250BXAAA\n01049531702003111115120017181000105ZK250BXJRJ\n01049531702003111115120017181000105ZK250BXJRF\n01049531702003111115120017181000105ZK250BX123\n01049531702003111115120017181000105ZK250BX222', arrControllerStr); |
| | | arrControllerStr = re.arrGoodCon; |
| | | LexArriveGoodsController.arriveGoodsConfim(arrControllerStr); |
| | | LexArriveGoodsController.updateGoodsOfReturn(re.arrGoodCon, JSON.serialize(re.showGoodsofReturnList)); |
| | | LexArriveGoodsController.ConsumableorderdetailsInfo con = new LexArriveGoodsController.ConsumableorderdetailsInfo(); |
| | | List<LexArriveGoodsController.ConsumableorderdetailsInfo> conList = new List<LexArriveGoodsController.ConsumableorderdetailsInfo>(); |
| | | conList.add(con); |
| | | LexArriveGoodsController.changeType2(conList); |
| | | System.Test.stopTest(); |
| | | } |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>57.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | <tbody> |
| | | <tr> |
| | | <td style="width: 10px"></td> |
| | | <td style="width: 60px"> |
| | | <td style="width: 74px"> |
| | | <div |
| | | style=" |
| | | color: #696969; |
| | | font-size: 12px; |
| | | font-size: 16px; |
| | | " |
| | | > |
| | | 订单名称 |
| | | </div> |
| | | </td> |
| | | <td style="width: 200px"> |
| | | <lightning-formatted-text |
| | | <lightning-formatted-text style="font-size: 16px;" |
| | | value={coc.Name} |
| | | ></lightning-formatted-text> |
| | | </td> |
| | | <td style="width: 30px"></td> |
| | | <td style="width: 60px"> |
| | | <td style="width: 74px"> |
| | | <div |
| | | style=" |
| | | color: #696969; |
| | | font-size: 12px; |
| | | font-size: 16px; |
| | | " |
| | | > |
| | | 订单总数 |
| | | </div> |
| | | </td> |
| | | <td style="width: 100px"> |
| | | <lightning-formatted-number |
| | | <lightning-formatted-number style="font-size: 16px;" |
| | | value={coc.Total_num__c} |
| | | ></lightning-formatted-number> |
| | | </td> |
| | | <td style="width: 30px"></td> |
| | | <td style="width: 72px"> |
| | | <td style="width: 90px"> |
| | | <div |
| | | style=" |
| | | color: #696969; |
| | | font-size: 12px; |
| | | font-size: 16px; |
| | | " |
| | | > |
| | | 已到货数量 |
| | | </div> |
| | | </td> |
| | | <td style="width: 100px"> |
| | | <lightning-formatted-number |
| | | <lightning-formatted-number style="font-size: 16px;" |
| | | value={coc.OrderNumber_arrived__c} |
| | | ></lightning-formatted-number> |
| | | </td> |
| | | <td style="width: 30px"></td> |
| | | <td style="width: 84px"> |
| | | <td style="width: 106px"> |
| | | <div |
| | | style=" |
| | | color: #696969; |
| | | font-size: 12px; |
| | | font-size: 16px; |
| | | " |
| | | > |
| | | 还没发货数量 |
| | | </div> |
| | | </td> |
| | | <td style="width: 100px"> |
| | | <lightning-formatted-number |
| | | <lightning-formatted-number style="font-size: 16px;" |
| | | value={coc.OrderNumber_notarrive__c} |
| | | ></lightning-formatted-number> |
| | | </td> |
| | |
| | | }, |
| | | hideDefaultActions: true, |
| | | wrapText: true, |
| | | initialWidth: 180 |
| | | initialWidth: 95 |
| | | }); |
| | | // cols.push({label:'出库单' , fieldName:'orderNo', hideDefaultActions: true}); |
| | | cols.push({ |
| | |
| | | fieldName: 'prodName', |
| | | wrapText: true, |
| | | hideDefaultActions: true, |
| | | wrapText: true, |
| | | initialWidth: 190 |
| | | wrapText: true |
| | | // initialWidth: 190 |
| | | }); |
| | | cols.push({ |
| | | label: '出库目的', |
| | | fieldName: 'summonsForDirctionDet', |
| | | wrapText: true, |
| | | hideDefaultActions: true, |
| | | initialWidth: 130 |
| | | initialWidth: 85 |
| | | }); |
| | | cols.push({ |
| | | label: '客户名', |
| | | fieldName: 'hospitalName', |
| | | hideDefaultActions: true, |
| | | wrapText: true, |
| | | initialWidth: 130 |
| | | initialWidth: 85 |
| | | }); |
| | | cols.push({ |
| | | label: '经销商', |
| | |
| | | .siteforcePrmBody .cHeader .cBrandingLogo{ |
| | | width: 140px !important; |
| | | height: 40px !important; |
| | | pointer-events:none; |
| | | } |
| | | |
| | | .siteforcePrmBody .comm-navigation{ |
| | |
| | | .siteforcePrmBody .cHeader .forceSearchInputDesktop input, .siteforcePrmBody .cHeader .forceSearchInputDesktop input::placeholder{ |
| | | font-size:14px !important; |
| | | } |
| | | .slds-button_icon-more{ |
| | | display:none; |
| | | } |
| | | a.slds-button{ |
| | | display:none; |
| | | } |
| | | .forcePageBlockItemView .slds-form-element .slds-button_icon { |
| | | display: none; |
| | | } |
| | | .siteforcePrmBody .forceCommunityRecordDetail .forceRecordLayout .forcePageBlockSectionView .full.forcePageBlockItemView{ |
| | | pointer-events:none |
| | | } |
| | | .slds-nav-vertical .slds-nav-vertical__section.navItems.entityItems:nth-child(3){ |
| | | display: none!important; |
| | | } |
| | | .null.comm-page-list-00O .slds-table_header-fixed thead th:nth-child(6){ |
| | | display:none!important; |
| | | } |
| | | .null.comm-page-list-00O .slds-align_absolute-center{ |
| | | display:none!important; |
| | | } |
| | | :root { --dxp-c-section-columns-max-width: 1170px; } |
| | |
| | | function launchModal(_ref){var id=_ref.id,titleLabel=_ref.titleLabel,contentLabel=_ref.contentLabel,buttonLabel=_ref.buttonLabel,callback=_ref.callback;var modalTemplate="<div id=\"".concat(id,"\">\n <section\n role=\"alertdialog\"\n tabindex=\"-1\"\n aria-labelledby=\"prompt-heading-id\"\n aria-describedby=\"prompt-message-wrapper\"\n class=\"slds-modal slds-fade-in-open slds-modal_prompt\"\n aria-modal=\"true\"\n style=\"color: rgb(62, 62, 60)\"\n >\n <div class=\"slds-modal__container\">\n <header class=\"slds-modal__header slds-theme_info slds-theme_alert-texture\">\n <h2 class=\"slds-text-heading_medium\">").concat(titleLabel,"</h2>\n </header>\n <div class=\"slds-modal__content slds-p-around_medium\">\n <p id=\"prompt-message-id\">").concat(contentLabel,"</p>\n </div>\n <footer class=\"slds-modal__footer slds-theme_default\">\n <button class=\"slds-button slds-button_neutral js-button\">").concat(buttonLabel,"</button>\n </footer>\n </div>\n </section>\n <div class=\"slds-backdrop slds-backdrop_open\"></div>\n </div>");var div=document.createElement("div");div.innerHTML=modalTemplate;div.querySelector(".js-button").addEventListener("click",callback);if(!document.body){document.createElement("body")}document.body.appendChild(div.querySelector("#".concat(id)))}window.onload=function(){if(!window.isBrowserSupportedByWebruntime){var WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID="webruntime-browser-not-supported-message";launchModal({id:WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID,titleLabel:"Your browser isn't supported",contentLabel:"Your browser doesn\u2019t support some features on this site. For the best experience, update your browser to the latest version, or switch to another browser.",buttonLabel:"Got It",callback:function callback(){var modal=document.querySelector("#".concat(WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID));document.body.removeChild(modal)}})}};window.document.addEventListener("client-error",function(error){if(error.detail.type==="FAILED_TO_LOAD_RESOURCE"){launchModal({id:"webruntime-client-error-failed-to-load-resource",titleLabel:"Oops!",contentLabel:"Something went wrong. Please try refreshing the app",buttonLabel:"Refresh",callback:function callback(){var url=new URL(window.location);url.searchParams.set("lwr.cachebust",new Date().getTime());window.location=url.href}})}else if(error.detail.type==="TOO_MANY_REQUESTS"){window.document.cookie="TooManyRequests=true;max-age=30;";window.location.reload()}}); |
| | | </script> |
| | | |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | </script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">globalThis.LWR = globalThis.LWR || {}; |
| | | globalThis.LWR.customInit = (lwr) => { |
| | | |
| | | LWR.define('@app/apexApiBasePath', [], function() { return "webruntime/api"; }); |
| | |
| | | LWR.define('@app/guestUuidCookieName', [], function() { return null; }); |
| | | LWR.define('@app/isDesignMode', [], function() { return false; }); |
| | | LWR.define('@app/isPreviewMode', [], function() { return false; }); |
| | | LWR.define('@app/o11yApiEndpoint', [], function() { return "/services/data/v57.0/connect/proxy/ui-telemetry"; }); |
| | | LWR.define('@app/o11yFalconEnabled', [], function() { return false; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjgyMDQ1NDAzNDI0LDIwMjMtMDYtMDJUMDc6MTQ6NDQuMTc4NDM2Wg\u003d\u003d.V--s11L26mqgs2srEzr69YlqIeqjCWKXQ7XAdJu7MUmcDD1GiaIMLJ8msWLyc8hBl2rh3m3tIYGkY5htmSNWmw|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/o11ySamplingRate', [], function() { return 1.0; }); |
| | | LWR.define('@app/publicApiBasePath', [], function() { return "webruntime/api/public"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Service Not Available","isPublic":true,"viewId":"ade687ac-f20d-466f-871e-e572909e9daf","hasVanityURL":false,"patterns":["\\/service-not-available\\/?"],"id":"067c4c82-e769-43df-bd08-8933d726358b","path":"/maintenance.html","view":"service_Not_Available","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Service_Not_Available"}}}]; }); |
| | | LWR.define('@app/o11yConfiguration', [], function() { return "{\"falconSamplingRate\":1.0,\"coreSamplingRate\":1.0,\"falconAbsoluteEndpoint\":\"O11Y_ENDPOINT_NOT_CONFIGURED\",\"coreRelativeEndpoint\":\"/webruntime/log/metrics\",\"falconEnabled\":false,\"coreEnabled\":true,\"traceSamplingRate\":0.0}"; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjg0NzIzNjMzMjM4LDIwMjMtMDctMTFUMDY6NDQ6MjIuMjg5NDUzWg\u003d\u003d.vLFgq3xzLBx4E31L4Gdc30oarxHnZdEXFMoqJ6lUb02heLHGpuU579pYsfQBq9_pvcxMROEp-VmuyiuH1X2syg|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Service Not Available","isPublic":true,"viewId":"ade687ac-f20d-466f-871e-e572909e9daf","hasVanityURL":false,"patternMap":{},"id":"067c4c82-e769-43df-bd08-8933d726358b","path":"/maintenance.html","view":"service_Not_Available","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Service_Not_Available"}}}]; }); |
| | | LWR.define('@app/uiBasePath', [], function() { return ""; }); |
| | | LWR.define('@app/versionKey', [], function() { return "0DB0l0000001Z3M:244"; }); |
| | | LWR.define('@app/viewToThemeLayoutMap', [], function() { return {"service_Not_Available":"serviceNotAvailable"}; }); |
| | | LWR.define('@salesforce/i18n/lang', [], function() { return "zh_CN"; }); |
| | | LWR.define('@salesforce/site/Id', [], function() { return "0DM0l000000085DGAQ"; }); |
| | | lwr.define("webruntime/dispatcher", [], function(){ return function o11yDipatcherInit(dispatcher) { typeof lwr !== 'undefined' && lwr.attachDispatcher(dispatcher); };}); |
| | | lwr.initializeApp(); |
| | | globalThis.process = { env: { NODE_ENV: "dev" } };};</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">globalThis.LWR = globalThis.LWR || {}; |
| | | Object.assign(globalThis.LWR, { |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_8_14", |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_9_0", |
| | | "autoBoot": false, |
| | | "rootComponents": [ |
| | | "webruntime/app/v/1" |
| | | ], |
| | | "requiredModules": [ |
| | | "lwc/v/2_31_2", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_8_14" |
| | | "lwc/v/2_41_4", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_9_0" |
| | | ], |
| | | "importMappings": { |
| | | "default": "webruntime/component/latest/prod/zh_CN/", |
| | | "imports": { |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/af5a5d856d/prod/lwr_lwc", |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/bca8ebb77c/prod/lwr_lwc", |
| | | "@app/csrfToken": "webruntime/module/@app/csrfToken", |
| | | "@app/user": "webruntime/module/@app/user", |
| | | "@perm/": "webruntime/perm/", |
| | |
| | | "@salesforce/user/Id": "webruntime/module/@salesforce/user/Id", |
| | | "@salesforce/user/isGuest": "webruntime/module/@salesforce/user/isGuest", |
| | | "@salesforce/userPermission/": "webruntime/perm/", |
| | | "@view/serviceNotAvailable": "webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable", |
| | | "@view/service_Not_Available": "webruntime/view/967f56cf2c/prod/zh_CN/service_Not_Available", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/ca37d29c6e/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/c0858f2bcf/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/8fc26faacf/prod/zh_CN/o11y/simple_collector" |
| | | "@udd/": "webruntime/module/@udd/", |
| | | "@view/serviceNotAvailable": "webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable", |
| | | "@view/service_Not_Available": "webruntime/view/0787350070d229e72b0393da8c96d8a8/prod/zh_CN/service_Not_Available", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/59e2ab2c74/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/e4d4aa4dee14ef293440f4f2fc57f259/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/11cb43e9d62f62f751bc72d247bf5e1d/prod/zh_CN/o11y/simple_collector" |
| | | } |
| | | } |
| | | });</script> |
| | | <script src="webruntime/framework/eb908c3442/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/bc00fb7571/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/af5a5d856d/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/23e2eae4b4/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('lwc', ['lwc/v/2_31_2'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222"> |
| | | <script src="webruntime/framework/5b16fcfd07/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/937df7cedb/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/bca8ebb77c/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/0bb99fae78/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('lwc', ['lwc/v/2_41_4'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56"> |
| | | LWR.define('@app/authenticationCookieName', [], function() { return "__Secure-has-sid"; }); |
| | | LWR.define('@app/extraRouteParams', [], function() { return {}; }); |
| | | LWR.define('@app/isMobileAppMode', [], function() { return false; }); |
| | | LWR.define('@app/loginPath', [], function() { return null; }); |
| | | LWR.define('@app/user', [], function() { return {"isGuest":true,"id":null,"csrfToken":null}; }); |
| | | LWR.define('@salesforce/community/basePath', [], function() { return ""; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('o11y/simple_collector/v/242_8_1', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('o11y/collectors/v/242_8_1', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="36228bf0-5fe3-4da6-af7c-4bb84f698222">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/967f56cf2c/prod/zh_CN/service_Not_Available"></script> |
| | | <script src="webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;--dxp-g-neutral-contrast-3:#fff;--dxp-s-body-font-family:sans-serif;--dxp-g-neutral-contrast-2:#000;--dxp-g-neutral:#ecebea;--dxp-g-neutral-contrast-1:#000;--dxp-g-root:rgb(255, 255, 255);--dxp-g-root-contrast-1:rgb(31, 31, 31);--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-g-root-contrast-2:rgb(0, 0, 0);--dxp-g-root-contrast-3:rgb(0, 0, 0);--dxp-g-neutral-contrast:#000;--dxp-g-root-1:rgb(235, 235, 235);--dxp-g-root-2:rgb(194, 194, 194);--dxp-g-root-3:rgb(133, 133, 133);--dxp-g-brand-contrast-1:rgb(255, 255, 255);--dxp-g-brand-contrast:rgb(255, 255, 255);--dxp-g-neutral-3:rgb(118, 113, 107);--dxp-g-neutral-2:rgb(178, 174, 170);--dxp-g-brand-contrast-3:rgb(255, 255, 255);--dxp-g-brand-contrast-2:rgb(255, 255, 255);--dxp-g-neutral-1:rgb(217, 215, 213);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-brand-1:rgb(8, 106, 184);--dxp-g-brand-2:rgb(5, 61, 106);--dxp-g-brand-3:rgb(0, 0, 0);}</style> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('o11y/simple_collector/v/244_9_0', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('o11y/collectors/v/244_9_0', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/isDesignMode/v/1', ['@app/isDesignMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/isMobileAppMode/v/1', ['@app/isMobileAppMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/isPreviewMode/v/1', ['@app/isPreviewMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/o11yConfiguration/v/1', ['@app/o11yConfiguration'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/uiBasePath/v/1', ['@app/uiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@app/versionKey/v/1', ['@app/versionKey'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('@salesforce/site/Id/v/1', ['@salesforce/site/Id'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="c74e2738-0c2c-482d-8c1c-a0e4b4f31a56">LWR.define('webruntime/dispatcher/v/1', ['webruntime/dispatcher'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/0787350070d229e72b0393da8c96d8a8/prod/zh_CN/service_Not_Available"></script> |
| | | <script src="webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;--dxp-g-neutral-contrast-3:#fff;--dxp-s-body-font-family:sans-serif;--dxp-g-neutral-contrast-2:#000;--dxp-g-neutral:#ecebea;--dxp-g-neutral-contrast-1:#000;--dxp-g-root:rgb(255, 255, 255);--dxp-g-root-contrast-1:rgb(31, 31, 31);--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-g-root-contrast-2:rgb(0, 0, 0);--dxp-g-root-contrast-3:rgb(0, 0, 0);--dxp-g-neutral-contrast:#000;--dxp-g-root-1:rgb(235, 235, 235);--dxp-g-root-2:rgb(194, 194, 194);--dxp-g-root-3:rgb(133, 133, 133);--dxp-g-brand-contrast-1:rgb(255, 255, 255);--dxp-g-brand-contrast:rgb(255, 255, 255);--dxp-g-neutral-3:rgb(118, 113, 107);--dxp-g-neutral-2:rgb(178, 174, 170);--dxp-g-brand-contrast-3:rgb(255, 255, 255);--dxp-g-brand-contrast-2:rgb(255, 255, 255);--dxp-g-neutral-1:rgb(217, 215, 213);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-brand-1:rgb(8, 106, 184);--dxp-g-brand-2:rgb(5, 61, 106);--dxp-g-brand-3:rgb(0, 0, 0);}</style> |
| | | <script> |
| | | var homeWindowLocation = '/consumable/s/'; |
| | | var reportwindowLocation = 'report' |
| | | window.onload = function() { |
| | | console.log('URL' +window.location.pathname); |
| | | if(homeWindowLocation ==window.location.pathname ){ |
| | |
| | | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| | | <title>Service Not Available</title> |
| | | |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB0l0000001Z3M:244" /> |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB0l0000001Z3M:244" /> |
| | | |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB0l0000001Z3M:244" /> |
| | | </head> |
| | | <body> |
| | | <div id="webruntime-browser-not-supported-message" style="display: none;"> |
| | |
| | | function launchModal(_ref){var id=_ref.id,titleLabel=_ref.titleLabel,contentLabel=_ref.contentLabel,buttonLabel=_ref.buttonLabel,callback=_ref.callback;var modalTemplate="<div id=\"".concat(id,"\">\n <section\n role=\"alertdialog\"\n tabindex=\"-1\"\n aria-labelledby=\"prompt-heading-id\"\n aria-describedby=\"prompt-message-wrapper\"\n class=\"slds-modal slds-fade-in-open slds-modal_prompt\"\n aria-modal=\"true\"\n style=\"color: rgb(62, 62, 60)\"\n >\n <div class=\"slds-modal__container\">\n <header class=\"slds-modal__header slds-theme_info slds-theme_alert-texture\">\n <h2 class=\"slds-text-heading_medium\">").concat(titleLabel,"</h2>\n </header>\n <div class=\"slds-modal__content slds-p-around_medium\">\n <p id=\"prompt-message-id\">").concat(contentLabel,"</p>\n </div>\n <footer class=\"slds-modal__footer slds-theme_default\">\n <button class=\"slds-button slds-button_neutral js-button\">").concat(buttonLabel,"</button>\n </footer>\n </div>\n </section>\n <div class=\"slds-backdrop slds-backdrop_open\"></div>\n </div>");var div=document.createElement("div");div.innerHTML=modalTemplate;div.querySelector(".js-button").addEventListener("click",callback);if(!document.body){document.createElement("body")}document.body.appendChild(div.querySelector("#".concat(id)))}window.onload=function(){if(!window.isBrowserSupportedByWebruntime){var WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID="webruntime-browser-not-supported-message";launchModal({id:WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID,titleLabel:"Your browser isn't supported",contentLabel:"Your browser doesn\u2019t support some features on this site. For the best experience, update your browser to the latest version, or switch to another browser.",buttonLabel:"Got It",callback:function callback(){var modal=document.querySelector("#".concat(WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID));document.body.removeChild(modal)}})}};window.document.addEventListener("client-error",function(error){if(error.detail.type==="FAILED_TO_LOAD_RESOURCE"){launchModal({id:"webruntime-client-error-failed-to-load-resource",titleLabel:"Oops!",contentLabel:"Something went wrong. Please try refreshing the app",buttonLabel:"Refresh",callback:function callback(){var url=new URL(window.location);url.searchParams.set("lwr.cachebust",new Date().getTime());window.location=url.href}})}else if(error.detail.type==="TOO_MANY_REQUESTS"){window.document.cookie="TooManyRequests=true;max-age=30;";window.location.reload()}}); |
| | | </script> |
| | | |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | </script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">globalThis.LWR = globalThis.LWR || {}; |
| | | globalThis.LWR.customInit = (lwr) => { |
| | | |
| | | LWR.define('@app/apexApiBasePath', [], function() { return "webruntime/api"; }); |
| | |
| | | LWR.define('@app/guestUuidCookieName', [], function() { return null; }); |
| | | LWR.define('@app/isDesignMode', [], function() { return false; }); |
| | | LWR.define('@app/isPreviewMode', [], function() { return false; }); |
| | | LWR.define('@app/o11yApiEndpoint', [], function() { return "/services/data/v57.0/connect/proxy/ui-telemetry"; }); |
| | | LWR.define('@app/o11yFalconEnabled', [], function() { return false; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjgyMDQ1NDAzNDI0LDIwMjMtMDYtMDJUMDc6MTQ6NDQuNTUzNTEyWg\u003d\u003d.WvJM0unhEktdCD_F71VL4hJzWvgVhG5v9gwgCH-EwFfuniIfm3t3_Z2cICXcuOqCm-9-43zNaaJ9nYNNItA-5w|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/o11ySamplingRate', [], function() { return 1.0; }); |
| | | LWR.define('@app/publicApiBasePath', [], function() { return "webruntime/api/public"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Too Many Requests","isPublic":true,"viewId":"24d12862-7e6f-42da-b1c0-d3ebcaea9751","hasVanityURL":false,"patterns":["\\/too-many-requests\\/?"],"id":"50d68f68-49b3-464b-8ba6-105d8e2d4f7a","path":"/toomanyrequests.html","view":"too_Many_Requests","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Too_Many_Requests"}}}]; }); |
| | | LWR.define('@app/o11yConfiguration', [], function() { return "{\"falconSamplingRate\":1.0,\"coreSamplingRate\":1.0,\"falconAbsoluteEndpoint\":\"O11Y_ENDPOINT_NOT_CONFIGURED\",\"coreRelativeEndpoint\":\"/webruntime/log/metrics\",\"falconEnabled\":false,\"coreEnabled\":true,\"traceSamplingRate\":0.0}"; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjg0NzIzNjMzMjM4LDIwMjMtMDctMTFUMDY6NDQ6MjIuODUxNzk3Wg\u003d\u003d.8awLsbeRnXJmxYzLN2kZ1gA5kLg5run6vpmmyfFxJ57q50hknNYOtcIybP78Afhsmfp6GBYfheSUYtcqeeRU3w|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Too Many Requests","isPublic":true,"viewId":"24d12862-7e6f-42da-b1c0-d3ebcaea9751","hasVanityURL":false,"patternMap":{},"id":"50d68f68-49b3-464b-8ba6-105d8e2d4f7a","path":"/toomanyrequests.html","view":"too_Many_Requests","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Too_Many_Requests"}}}]; }); |
| | | LWR.define('@app/uiBasePath', [], function() { return ""; }); |
| | | LWR.define('@app/versionKey', [], function() { return "0DB0l0000001Z3M:244"; }); |
| | | LWR.define('@app/viewToThemeLayoutMap', [], function() { return {"too_Many_Requests":"serviceNotAvailable"}; }); |
| | | LWR.define('@salesforce/i18n/lang', [], function() { return "zh_CN"; }); |
| | | LWR.define('@salesforce/site/Id', [], function() { return "0DM0l000000085DGAQ"; }); |
| | | lwr.define("webruntime/dispatcher", [], function(){ return function o11yDipatcherInit(dispatcher) { typeof lwr !== 'undefined' && lwr.attachDispatcher(dispatcher); };}); |
| | | lwr.initializeApp(); |
| | | globalThis.process = { env: { NODE_ENV: "dev" } };};</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">globalThis.LWR = globalThis.LWR || {}; |
| | | Object.assign(globalThis.LWR, { |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_8_14", |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_9_0", |
| | | "autoBoot": false, |
| | | "rootComponents": [ |
| | | "webruntime/app/v/1" |
| | | ], |
| | | "requiredModules": [ |
| | | "lwc/v/2_31_2", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_8_14" |
| | | "lwc/v/2_41_4", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_9_0" |
| | | ], |
| | | "importMappings": { |
| | | "default": "webruntime/component/latest/prod/zh_CN/", |
| | | "imports": { |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/af5a5d856d/prod/lwr_lwc", |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/bca8ebb77c/prod/lwr_lwc", |
| | | "@app/csrfToken": "webruntime/module/@app/csrfToken", |
| | | "@app/user": "webruntime/module/@app/user", |
| | | "@perm/": "webruntime/perm/", |
| | |
| | | "@salesforce/user/Id": "webruntime/module/@salesforce/user/Id", |
| | | "@salesforce/user/isGuest": "webruntime/module/@salesforce/user/isGuest", |
| | | "@salesforce/userPermission/": "webruntime/perm/", |
| | | "@view/serviceNotAvailable": "webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable", |
| | | "@view/too_Many_Requests": "webruntime/view/7cfd898557/prod/zh_CN/too_Many_Requests", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/ca37d29c6e/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/c0858f2bcf/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/8fc26faacf/prod/zh_CN/o11y/simple_collector" |
| | | "@udd/": "webruntime/module/@udd/", |
| | | "@view/serviceNotAvailable": "webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable", |
| | | "@view/too_Many_Requests": "webruntime/view/73c08863e9f80794e7d58b2ba7869a4b/prod/zh_CN/too_Many_Requests", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/59e2ab2c74/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/e4d4aa4dee14ef293440f4f2fc57f259/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/11cb43e9d62f62f751bc72d247bf5e1d/prod/zh_CN/o11y/simple_collector" |
| | | } |
| | | } |
| | | });</script> |
| | | <script src="webruntime/framework/eb908c3442/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/bc00fb7571/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/af5a5d856d/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/23e2eae4b4/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('lwc', ['lwc/v/2_31_2'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06"> |
| | | <script src="webruntime/framework/5b16fcfd07/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/937df7cedb/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/bca8ebb77c/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/0bb99fae78/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('lwc', ['lwc/v/2_41_4'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5"> |
| | | LWR.define('@app/authenticationCookieName', [], function() { return "__Secure-has-sid"; }); |
| | | LWR.define('@app/extraRouteParams', [], function() { return {}; }); |
| | | LWR.define('@app/isMobileAppMode', [], function() { return false; }); |
| | | LWR.define('@app/loginPath', [], function() { return null; }); |
| | | LWR.define('@app/user', [], function() { return {"isGuest":true,"id":null,"csrfToken":null}; }); |
| | | LWR.define('@salesforce/community/basePath', [], function() { return ""; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('o11y/simple_collector/v/242_8_1', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('o11y/collectors/v/242_8_1', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f1f37b61-cf1d-4b7c-b91e-6d7452ee7d06">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/7cfd898557/prod/zh_CN/too_Many_Requests"></script> |
| | | <script src="webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;--dxp-g-neutral-contrast-3:#fff;--dxp-s-body-font-family:sans-serif;--dxp-g-neutral-contrast-2:#000;--dxp-g-neutral:#ecebea;--dxp-g-neutral-contrast-1:#000;--dxp-g-root:rgb(255, 255, 255);--dxp-g-root-contrast-1:rgb(31, 31, 31);--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-g-root-contrast-2:rgb(0, 0, 0);--dxp-g-root-contrast-3:rgb(0, 0, 0);--dxp-g-neutral-contrast:#000;--dxp-g-root-1:rgb(235, 235, 235);--dxp-g-root-2:rgb(194, 194, 194);--dxp-g-root-3:rgb(133, 133, 133);--dxp-g-brand-contrast-1:rgb(255, 255, 255);--dxp-g-brand-contrast:rgb(255, 255, 255);--dxp-g-neutral-3:rgb(118, 113, 107);--dxp-g-neutral-2:rgb(178, 174, 170);--dxp-g-brand-contrast-3:rgb(255, 255, 255);--dxp-g-brand-contrast-2:rgb(255, 255, 255);--dxp-g-neutral-1:rgb(217, 215, 213);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-brand-1:rgb(8, 106, 184);--dxp-g-brand-2:rgb(5, 61, 106);--dxp-g-brand-3:rgb(0, 0, 0);}</style> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('o11y/simple_collector/v/244_9_0', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('o11y/collectors/v/244_9_0', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/isDesignMode/v/1', ['@app/isDesignMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/isMobileAppMode/v/1', ['@app/isMobileAppMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/isPreviewMode/v/1', ['@app/isPreviewMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/o11yConfiguration/v/1', ['@app/o11yConfiguration'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/uiBasePath/v/1', ['@app/uiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@app/versionKey/v/1', ['@app/versionKey'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('@salesforce/site/Id/v/1', ['@salesforce/site/Id'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b97c5b1c-9adc-4888-9d65-e98b7fa0e7c5">LWR.define('webruntime/dispatcher/v/1', ['webruntime/dispatcher'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/73c08863e9f80794e7d58b2ba7869a4b/prod/zh_CN/too_Many_Requests"></script> |
| | | <script src="webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;--dxp-g-neutral-contrast-3:#fff;--dxp-s-body-font-family:sans-serif;--dxp-g-neutral-contrast-2:#000;--dxp-g-neutral:#ecebea;--dxp-g-neutral-contrast-1:#000;--dxp-g-root:rgb(255, 255, 255);--dxp-g-root-contrast-1:rgb(31, 31, 31);--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-g-root-contrast-2:rgb(0, 0, 0);--dxp-g-root-contrast-3:rgb(0, 0, 0);--dxp-g-neutral-contrast:#000;--dxp-g-root-1:rgb(235, 235, 235);--dxp-g-root-2:rgb(194, 194, 194);--dxp-g-root-3:rgb(133, 133, 133);--dxp-g-brand-contrast-1:rgb(255, 255, 255);--dxp-g-brand-contrast:rgb(255, 255, 255);--dxp-g-neutral-3:rgb(118, 113, 107);--dxp-g-neutral-2:rgb(178, 174, 170);--dxp-g-brand-contrast-3:rgb(255, 255, 255);--dxp-g-brand-contrast-2:rgb(255, 255, 255);--dxp-g-neutral-1:rgb(217, 215, 213);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-brand-1:rgb(8, 106, 184);--dxp-g-brand-2:rgb(5, 61, 106);--dxp-g-brand-3:rgb(0, 0, 0);}</style> |
| | | <script> |
| | | var homeWindowLocation = '/consumable/s/'; |
| | | var reportwindowLocation = 'report' |
| | | window.onload = function() { |
| | | console.log('URL' +window.location.pathname); |
| | | if(homeWindowLocation ==window.location.pathname ){ |
| | |
| | | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| | | <title>Service Not Available</title> |
| | | |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB0l0000001Z3M:244" /> |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB0l0000001Z3M:244" /> |
| | | |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB0l0000001Z3M:196" /> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB0l0000001Z3M:244" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB0l0000001Z3M:244" /> |
| | | </head> |
| | | <body> |
| | | <div id="webruntime-browser-not-supported-message" style="display: none;"> |
| New file |
| | |
| | | LWR.define("lwr/lockerDefine/v/0_9_0",["exports"],function(Ot){"use strict";/*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */var Ee;const{apply:c,construct:We,defineProperty:Se,deleteProperty:fe,get:Ht,getOwnPropertyDescriptor:yt,getPrototypeOf:Ct,has:oe,isExtensible:pt,ownKeys:bn,preventExtensions:un,set:Dt,setPrototypeOf:It}=Reflect,Jn=Object,{assign:Fe,freeze:Ve,defineProperties:So,getOwnPropertyDescriptors:Fn,getOwnPropertySymbols:ur,keys:vi,preventExtensions:ze,prototype:Pn}=Jn,{hasOwn:ge}=Jn,{__lookupGetter__:go,__lookupSetter__:fr,hasOwnProperty:Hl}=Pn,{toString:Me}=Pn;function fn(t){return typeof t=="object"&&t!==null}function Qn(t){return typeof t=="object"&&t!==null||typeof t=="function"}const ke=typeof ge=="function"?ge:function(e,n){return c(Hl,e,[n])};function V(t,e){return t==null||!ke(t,e)?void 0:c(go,t,[e])}function de(t,e){return t==null||!ke(t,e)?void 0:c(fr,t,[e])}function k(t,e){return t==null||!ke(t,e)?void 0:t[e]}const dr=Symbol,{asyncIterator:Ul,for:ee,iterator:On,toStringTag:pr,unscopables:ba}=dr,{toString:$a,valueOf:jl}=dr.prototype,lt=Array,{prototype:Lt}=lt,{at:hr,concat:mr,copyWithin:Gn,entries:Es,every:Ws,fill:_a,findIndex:Sr,flat:Ea,flatMap:yo,forEach:Ts,keys:Wa,lastIndexOf:vs,map:wi,pop:Et,reduce:$n,reduceRight:ws,reverse:As,some:Cs,splice:ye,toLocaleString:Te,values:gr,[On]:Bl}=Lt,Ta=Ve(Fe({__proto__:null},Lt[ba])),{includes:va,sort:wa,unshift:Ps}=Lt,{filter:Bo,find:Vo,indexOf:Lo,join:Ai,push:Os,shift:Ci,slice:tn,toString:Rs}=Lt,{isArray:bo}=lt;function yr(t,...e){const n=c(tn,t,[0]);for(let i=0,{length:s}=e;i<s;i+=1){const l=e[i];bo(l)?c(Os,n,l):n[n.length]=l}return n}function zo(t){return It(t,null),t.at=hr,t.concat=mr,t.copyWithin=Gn,t.entries=Es,t.every=Ws,t.fill=_a,t.filter=Bo,t.find=Vo,t.findIndex=Sr,t.flat=Ea,t.flatMap=yo,t.forEach=Ts,t.includes=va,t.indexOf=Lo,t.join=Ai,t.keys=Wa,t.lastIndexOf=vs,t.map=wi,t.pop=Et,t.push=Os,t.reduce=$n,t.reduceRight=ws,t.reverse=As,t.shift=Ci,t.slice=tn,t.some=Cs,t.sort=wa,t.splice=ye,t.toLocaleString=Te,t.toString=Rs,t.unshift=Ps,t.values=gr,t[On]=Bl,t[ba]=Ta,It(t,Lt),t}const Pi=ArrayBuffer,{isView:Aa}=Pi,Ns=V(Pi.prototype,"byteLength"),Ds=typeof BigInt=="function",Rn=Ds?BigInt.prototype.valueOf:void 0,{valueOf:Oi}=Boolean.prototype,Nn="$LWS",Ri=`${function t(){return t.name}()}`.includes("LOCKER_UNMINIFIED_FLAG"),Ge="LSKey",Ni="lskey",Xr='"',Is="'",Dn=`uncompiledLocation${Nn}`,Lr=`uncompiledTop${Nn}`,br="__webpack_require__",en="Illegal property access.",In="Invalid sandbox key.",$r=ee("@@lockerNearMembraneProxyMasked"),Di=ee("@@lockerNearMembraneSerializedValue"),Ms=ee("@@lockerNearMembrane"),ks=ee("@@lockerLiveValue"),xs="[object Array]",Ca="[object ArrayBuffer]",_r="[object BigInt]",$o="[object Boolean]",Fs="[object Date]",Er="[object Function]",Ii="[object Map]",Yr="[object Null]",Ko="[object Number]",Gs="[object Object]",qo="[object RegExp]",Xo="[object Set]",Mi="[object String]",ki="[object Symbol]",Jr="[object Undefined]",_o="[object WeakMap]",Yo="[object WeakSet]",Wr="$lockerEvalContext$",Qr="$lockerEvalHelpers$",xi=Date,{now:Hs}=xi,{valueOf:Us}=xi.prototype,Zn=Error,Vt=TypeError;class bt extends Error{constructor(e){super(`Lightning Web Security: ${e}`)}}const ln=Proxy,{revocable:ve}=ln;function Tr(t){const e=ve(t,{__proto__:null});return e.revoke(),e.proxy}const{bind:tr,toString:Hn}=Function.prototype;function Un(t){return typeof t=="function"&&!($r in t)&&t[$r]===!0}function Wt(){}function jn(t,e,n){let i=c,s=We,l=Se,u=Ht,p=yt,L=oe,E=Dt;n&&({apply:i=c,construct:s=We,defineProperty:l=Se,get:u=Ht,getOwnPropertyDescriptor:p=yt,has:L=oe,set:E=Dt}=n);let N=!1,O=!1,H=0;const J=new ln(e,{apply(x,Z,st){return H=1,(Z===J||Z===e)&&(Z=t),i(t,Z,st)},construct(x,Z,st){return H=2,(st===J||st===e)&&(st=t),s(t,Z,st)},defineProperty(x,Z,st){if(H=4,Z===$r)throw new Vt(en);return l(x,Z,st)},deleteProperty(x,Z){return H=32,fe(x,Z)},get(x,Z,st){N&&(N=H===128),O&&(O=N),H=16;const Pt=Z===$r;if(O&&Pt)return!0;const wt=u(x,Z,st,N);if(wt!==void 0&&Pt)throw new Vt(en);return wt},getOwnPropertyDescriptor(x,Z){H=32;const st=p(x,Z);if(st&&Z===$r)throw new Vt(en);return st},getPrototypeOf(x){return H=64,Ct(x)},has(x,Z){H=128;const st=L(x,Z),Pt=Z===$r;if(st){if(N=!1,Pt)throw new Vt(en)}else N=!0,O=Pt;return st},isExtensible(x){return H=256,pt(x)},ownKeys(x){return H=512,bn(x)},preventExtensions(x){return H=1024,un(x)},set(x,Z,st,Pt){if(H=2048,Z===$r)throw new Vt(en);return E(x,Z,st,Pt)},setPrototypeOf(x,Z){return H=4096,It(x,Z)}});return J}const dn=Map,{prototype:Bn}=dn,{clear:Fi,delete:js,forEach:Gi,get:Pa,has:Eo,keys:Jo,values:Wo,[On]:Oa,[pr]:Vl}=Bn,{entries:To,set:Qo}=Bn,vr=V(Bn,"size");function Vn(t){return It(t,null),t.clear=Fi,t.delete=js,t.entries=To,t.forEach=Gi,t.get=Pa,t.has=Eo,t.keys=Jo,t.set=Qo,Se(t,"size",{__proto__:null,configurable:!0,enumerable:!0,get:vr,set:void 0}),t.values=Wo,t[On]=Oa,t[pr]=Vl,It(t,Bn),t}const vo=Number,{isFinite:_n,isInteger:Ra}=vo,{toFixed:zl,valueOf:Na}=vo.prototype,Bs=String,{prototype:Da}=Bs,{endsWith:Ia,includes:He,indexOf:Ma,match:Zo,replace:ne,slice:zt,split:Zr,startsWith:Ue,toLowerCase:Mn,toUpperCase:wr,valueOf:Vs}=Da,zs={__proto__:null,[Xr]:/\\?"/g,[Is]:/\\?'/g},wo=typeof URL=="function"?URL:void 0,ka=wo==null||(Ee=wo.prototype)==null?void 0:Ee.toString,xa=/^[\s\S]+?\{[\t ]*(?:\r?\n)?([\s\S]*?)(?:\r?\n)?[\t ]*\}$|[\s\S]+?=>\s*([\s\S]+?)\s*$/;function Qt(t){const{length:e}=t;if(e){const n=c(wr,t[0],[]);return e===1?n:n+c(zt,t,[1])}return""}function nn(t,e=Is){return e+c(ne,t,[zs[e],`\\${e}`])+e}function Ar(t){var e,n;const i=c(Hn,t,[]),s=c(Zo,i,[xa]);return(e=(n=s==null?void 0:s[1])!=null?n:s==null?void 0:s[2])!=null?e:""}function we(t){if(typeof t!="symbol")try{return`${t}`!==void 0}catch(e){}return!1}function xt(t){return typeof t=="string"?t:`${t}`}function er(t){if(typeof t=="string")return t;try{if(typeof t=="function")return c(Hn,t,[]);if(typeof t=="object"&&t!==null){if(wo&&t instanceof wo)return c(ka,t,[]);const e=c(Me,t,[]);return e===ki?c($a,t,[]):e}return typeof t=="symbol"?c($a,t,[]):Bs(t)}catch(e){}return"[object Unknown]"}const Ae=RegExp,{prototype:nr}=Ae,{exec:pn,test:Ce}=nr,Hi=V(nr,"source"),Ks=/[\\^$.*+?()[\]{}|]/g;function Ke(t){return c(ne,t,[Ks,"\\$&"])}const rn=Set,{prototype:Cr}=rn,{clear:ti,delete:qs,entries:to,forEach:ei,has:Ui,keys:ji,[On]:Fa,[pr]:ni}=Cr,{add:Bi,values:Vi}=Cr,Xs=V(Cr,"size");function eo(t){return It(t,null),t.add=Bi,t.clear=ti,t.delete=qs,t.entries=to,t.forEach=ei,t.has=Ui,t.keys=ji,Se(t,"size",{__proto__:null,configurable:!0,enumerable:!0,get:Xs,set:void 0}),t.values=Vi,t[On]=Fa,t[pr]=ni,It(t,Cr),t}const kt=WeakMap,{prototype:zi}=kt,{has:Ao}=zi,{delete:Ki,get:Pr,set:Co,[pr]:Or}=zi;function Yt(t){return It(t,null),t.delete=Ki,t.get=Pr,t.has=Ao,t.set=Co,t[pr]=Or,It(t,zi),t}const no=WeakSet,{prototype:zn}=no,{has:Po}=zn,{add:ie,delete:Kn,[pr]:rr}=zn;function ro(t){return It(t,null),t.add=ie,t.delete=Kn,t.has=Po,t[pr]=rr,It(t,zn),t}const{toStringTag:Ga}=Symbol,Ha=/[(`.[+\-/*%<>=,?^&]/,Ua=/\r\n?|\n|\u2028|\u2029/,or=/(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g,ja=/^(?:'((?:\\.|[^'\\])*?)'|"((?:\\.|[^"\\])*?)")/;function Ba(t){try{if("byteLength"in t)return c(Ns,t,[]),Ca}catch(e){}try{if("toLocaleDateString"in t)return c(Us,t,[]),Fs}catch(e){}try{if("get"in t&&"size"in t)return c(vr,t,[]),Ii}catch(e){}try{if("add"in t&&"size"in t)return c(Xs,t,[]),Xo}catch(e){}try{if("get"in t&&!("size"in t))return c(Ao,t,[]),_o}catch(e){}try{if("add"in t&&!("size"in t))return c(Po,t,[]),Yo}catch(e){}try{if("toPrecision"in t)return c(Na,t,[]),Ko}catch(e){}try{if("description"in t)return c(jl,t,[]),ki}catch(e){}try{if(ke(t,"lastIndex"))return c(Hi,t,[]),qo}catch(e){}try{if(ke(t,"length"))return c(Vs,t,[]),Mi}catch(e){}try{return c(Oi,t,[]),$o}catch(e){}if(Ds)try{return c(Rn,t,[]),_r}catch(e){}return Gs}function _(t){if(t===null)return Yr;if(t===void 0)return Jr;switch(typeof t){case"bigint":return _r;case"boolean":return $o;case"function":return Er;case"number":return Ko;case"string":return Mi;case"symbol":return ki}return bo(t)?xs:Ga in t?Ba(t):c(Me,t,[])}typeof performance=="undefined"||c(tr,performance.now,[performance]);function o(t,e){let n=0;for(;;){or.lastIndex=n,n+=c(pn,or,[t])[0].length;const i=c(pn,ja,[c(zt,t,[n])]);if(i===null)return-1;if((i[1]||i[2])===e){or.lastIndex=n+i[0].length;const s=c(pn,or,[t]),l=s.index+s[0].length,u=t[l];if(u===";"||u==="}")return n;const p=l+1;if(c(Ce,Ua,[s[0]])&&!(u==="!"&&p<t.length&&t[p]==="="||c(Ce,Ha,[u])))return n}n+=i[0].length,or.lastIndex=n,n+=c(pn,or,[t])[0].length,t[n]===";"&&(n+=1)}}const{parse:a}=JSON;function d(t){if(typeof t=="object"&&t!==null||typeof t=="function")return Di in t?void 0:t[Di]}function m(t){return typeof t=="object"&&t!==null||typeof t=="function"?!(Ms in t)&&t[Ms]===!0:!1}const g=Vn(new dn);function T(t){return Jn(d(t))}function j(t,e){const n=new dn,i=c(To,t,[]);let{length:s}=e;for(;;){const{done:l,value:u}=i.next();if(l)break;const{0:p,1:L}=u;let E;e[s++]=[N=>{E=N},p],e[s++]=[N=>{c(Qo,n,[E,N])},L]}return n}function rt(t){const{flags:e,source:n}=a(d(t));return new Ae(n,e)}function q(t,e){const n=new rn,i=c(Vi,t,[]);let{length:s}=e;for(;;){const{done:l,value:u}=i.next();if(l)break;e[s++]=[p=>{c(Bi,n,[p])},u]}return n}function At(t,e,n){const i=vi(e);let{length:s}=t;for(let l=0,{length:u}=i;l<u;l+=1){const p=i[l],L=e[p];t[s++]=[E=>{n[p]=E},L]}}function gt(t){let e;const n=[[i=>{e=i},t]];t:for(;n.length;){const{0:i,1:s}=c(Ci,n,[]);if(s==null||typeof s=="boolean"||typeof s=="number"||typeof s=="string"||typeof s=="bigint"){i(s);continue t}if(typeof s=="symbol"){i(s);break t}let l=g.get(s);if(l){i(l);continue t}const u=_(s);switch(u){case Gs:{const p=Ct(s);(p===Pn||p===null||Ct(p)===null)&&(l={},At(n,s,l));break}case xs:l=lt(s.length),At(n,s,l);break;case Ii:l=j(s,n);break;case Xo:l=q(s,n);break}if(l===void 0){if(!m(s)){g.set(s,s),i(s);continue t}switch(u){case qo:l=rt(s);break;case $o:case Ko:case _r:case Mi:l=T(s);break}}if(l===void 0){i(s);break t}g.set(s,l),i(l)}return e}function Rt(t){let e=t;if(typeof t=="object"&&t!==null){try{e=gt(t)}catch(n){}g.clear()}return e}function Ut(t){return c(tn,t,[0])}function Pe(t){const e=bn(t),n={__proto__:null};for(let i=0,{length:s}=e;i<s;i+=1){const l=e[i];n[l]=t[l]}return n}const En=console,{warn:Rr}=En;function ri(...t){c(Rr,En,t)}const Ys=ro(new no);function Va(t,e=0){if(e&1||e&2||e&64||t===null||t===void 0||t===Pn||t===nr)return!1;if(typeof t=="function"){try{return Ys.has(t)||ke(t,ks)}catch(n){}return!1}if(typeof t=="object"){try{if(Ys.has(t)||ke(t,ks))return!0}catch(i){}let n;try{if({constructor:n}=t,n===Jn)return!0}catch(i){}try{if(Ct(t)===null&&(typeof n!="function"||n.prototype!==t))return!0}catch(i){}if(e===0){try{if(bo(t))return!0}catch(i){return!1}if(Aa(t))return!0}try{if(ke(t,"lastIndex"))return c(Hi,t,[]),!0}catch(i){}try{if("byteLength"in t)return c(Ns,t,[]),!0}catch(i){}}return!1}function ir(t){return Ys.add(t),t}const Kl=`${Ge}-`,ql="$",Xl=`${Ge}[`,Yl="]";function qi(t){return`${Kl}${t}${ql}`}function Js(t){return`${Xl}${t}${Yl}`}function sr(t,e){return`${qi(e)}${t}`}function Nr(t,e){return`${Js(e)}${t}`}function za(t,e){if(typeof t=="string"){const n=qi(e);return c(Ue,t,[n])?c(zt,t,[n.length]):t}return""}function Jl(t,e){if(typeof t=="string"){const n=Js(e);return c(Ue,t,[n])?c(zt,t,[n.length]):t}return""}function Qs(t,e){return typeof t=="string"&&c(Ue,t,[qi(e)])}function Oo(t,e){return typeof t=="string"&&c(Ue,t,[Js(e)])}const Dr=Promise,{catch:su,then:kn}=Dr.prototype,qn=Dr.resolve.bind(Dr),Ro=Dr.reject.bind(Dr);/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */var oi;const pe=AbortController,{prototype:Xn}=pe,{abort:le}=Xn,Ka=V(Xn,"signal"),{prototype:Zs}=Attr,ii=V(Zs,"name"),No=V(Zs,"namespaceURI"),Xi=V(Zs,"ownerElement"),{get:oo,set:au}=yt(Zs,"value"),Do=document,{prototype:si}=Document,{createComment:ai,createElement:li,createElementNS:ci,getElementById:Yi}=si,qa=V(si,"body"),{get:lu,set:cu}=yt(si,"cookie"),ta=V(si,"defaultView"),Xa=V(si,"documentElement"),Ql=V(si,"head"),Zl=V(si,"implementation"),{prototype:Ji}=Element,{closest:uu,getAttribute:hn,getAttributeNode:Ya,getAttributeNodeNS:Ja,hasAttribute:ui,querySelector:Qa,querySelectorAll:fu,removeAttribute:fi,removeAttributeNode:ea,removeAttributeNS:nd,setAttribute:io,setAttributeNS:tc,toggleAttribute:Qi}=Ji,{get:Zi,set:Io}=yt(Ji,"innerHTML"),du=V(Ji,"namespaceURI"),{get:Za}=yt(Ji,"outerHTML"),na=V(Ji,"tagName"),ra=V(HTMLTemplateElement.prototype,"content"),{prototype:so}=Node,{appendChild:ao,cloneNode:pu,isEqualNode:hu}=so,ec=V(so,"childNodes"),mu=V(so,"firstChild"),nc=V(so,"isConnected");V(so,"lastChild");const qt=V(so,"nodeName"),ts=V(so,"ownerDocument");yt(so,"textContent");const je=window,{location:tl,top:rd}=je,{setTimeout:rc}=je,{clearInterval:oc,decodeURIComponent:ic,encodeURIComponent:od,fetch:el,setInterval:Su,top:sc}=je,gu=(()=>{const{queueMicrotask:t}=je;return typeof t=="function"?t:function(n){let i=qn();i=c(kn,i,[n]),c(su,i,[s=>rc(()=>{throw s},0)])}})(),nl=V(je,"document"),ac=V(je,"frameElement"),es=V(je,"length"),lc=V(je,"location");function rl(t){if(typeof t=="object"&&t!==null&&ke(t,"window")&&t.window===t)try{return c(lc,t,[]),!0}catch(e){}return!1}class cc{constructor(e,{HTMLLinkElement:n,HTMLScriptElement:i}){this.isAllowedSharedElementChild=s=>s instanceof this._constructors.HTMLLinkElement||s instanceof this._constructors.HTMLScriptElement,this.isEqualDomString=(s,l)=>(c(Io,this._templates.left,[s]),c(Io,this._templates.right,[l]),uc(this._templates.left,this._templates.right)),this.isSharedElement=s=>s===c(Ql,this._document,[])||s===c(qa,this._document,[])||s===c(Xa,this._document,[]),this._constructors={HTMLLinkElement:n,HTMLScriptElement:i},this._document=e,this._templates={left:c(li,this._document,["template"]),right:c(li,this._document,["template"])}}}function uc(t,e){const n=t instanceof HTMLTemplateElement?c(ra,t,[]):t,i=e instanceof HTMLTemplateElement?c(ra,e,[]):e;if(c(hu,n,[i])){const s=c(ec,n,[]),l=s.length;if(l>0){const u=c(ec,i,[]);for(let p=0;p<l;p+=1)if(uc(s[p],u[p])===!1)return!1}return!0}return!1}const se=new cc(Do,je),fc=Yt(new kt([[Do,se]]));function yu(t,e){if(e===void 0||e===je)return se;let n=fc.get(t);return n===void 0&&(n=new cc(t,e),fc.set(t,n)),n}const dc=Blob,{prototype:ol}=dc,{slice:pc}=ol,ns=V(ol,"size"),Lu=V(ol,"type"),{navigator:hc,navigator:{userAgentData:il}}=je,di=il==null?void 0:il.brands,bu=/ (?:Headless)?Chrome\/\d+/,mc=/WebKit/i;let oa;function Sc(){return oa===void 0&&(oa=hc.userAgent),oa}const rs=Ni,al=!(bo(di)&&di.length?c(Vo,di,[t=>(t==null?void 0:t.brand)==="Chromium"])!==void 0:c(Ce,bu,[Sc()]))&&(bo(di)&&di.length?c(Vo,di,[t=>{const e=t==null?void 0:t.brand;return typeof e=="string"&&c(Ce,mc,[e])}])!==void 0:c(Ce,mc,[Sc()])),Ir=je==null||(oi=je.CustomElementRegistry)==null?void 0:oi.prototype,os=Ir==null?void 0:Ir.define,gc=Ir==null?void 0:Ir.get,ll=Ir==null?void 0:Ir.whenDefined,{getElementById:$u}=DocumentFragment.prototype;V(DOMException.prototype,"code");const{createDocument:yc}=DOMImplementation.prototype,Lc=V(DOMTokenList.prototype,"value"),Eu=Event,{prototype:bc}=Eu,{stopPropagation:$c}=bc,_c=V(bc,"currentTarget"),{addEventListener:lo,dispatchEvent:Wu,removeEventListener:pi}=EventTarget.prototype,{get:Ec,set:cl}=yt(HTMLAnchorElement.prototype,"href"),Tu=V(HTMLAnchorElement.prototype,"pathname"),Wc=V(HTMLAnchorElement.prototype,"protocol");V(HTMLElement.prototype,"style");const{prototype:Tc}=HTMLIFrameElement;V(Tc,"contentWindow");const vu=de(Tc,"src"),ul=HTMLScriptElement,{prototype:vc}=ul,{get:wc,set:wu}=yt(vc,"src"),qe="default",Ac="http://www.w3.org/2000/svg",ia="http://www.w3.org/1999/xhtml",is="http://www.w3.org/1999/xlink",Au=V(Request.prototype,"url"),f=Response.prototype,h=V(f,"ok");V(f,"status"),V(f,"statusText");const{text:S}=f,{createObjectURL:P,revokeObjectURL:Y}=URL,jt="$evaluator$",Xt=`document.currentScript.${jt}`,re=ro(new no),be=Yt(new kt),Wn=Yt(new kt);function Cu(t,e,n,i){Se(t,e,{__proto__:null,configurable:!0,enumerable:!0,get:n,set:i})}function fl(t,e){if(!Se(t,jt,{__proto__:null,configurable:!0,get:c(tr,()=>{re.add(t),Fh(t);const n=c(ts,t,[]),i=c(ta,n,[]),s={[Dn]:i.location,[Lr]:i.top};e(s,i,n)},[])}))throw new bt(`Cannot evaluate ${c(qt,t,[])}`)}function xh(t){be.delete(t)}function Fh(t){fe(t,jt)}function Gh(t){return be.get(t)}function Hh(t){return re.has(t)}function Uh(t){return Wn.has(t)}function jh(t){return be.has(t)}function Bh(t,e){return be.set(t,e)}const id="document",Pu="document\\.defaultView|frames|globalThis|self|window",sd=`${Pu}|global`,Vh=`${id}|global.document`,zh=Cc(`${id}|${Pu}`,"location"),Kh=Cc(`${Vh}|${sd}`,"location"),qh=new Ae(`(?:^|\\W)${Ke(Wr)}(?:\\W|$)`),Xh=new Ae(`\\b${Ke(br)}\\b`),Yh=Cc(Pu,"top"),Jh=Cc(sd,"top");function Cc(t,e){return new Ae(`\\b(?:${t})\\.${e}(\\s*(?:[?*/%&^|+-]|>>>?|<<)*=(?=[^=]))?`,"g")}function Qh(t){const e={location:!1,windowTop:!1};if(c(Ce,qh,[t]))return{code:t,transforms:e};let n,i;return c(Ce,Xh,[t])?(n=Kh,i=Jh):(n=zh,i=Yh),t=c(ne,t,[n,(s,l)=>(e.location=!0,l?`${Dn}.href${l}`:Dn)]),t=c(ne,t,[i,()=>(e.windowTop=!0,Lr)]),{code:t,transforms:e}}function Zh(t){return t[t.length]="location",t[t.length]="top",`const {${c(Rs,t,[])}}=${Wr}`}function tm(t){const e=zo([]);return t.location&&(e[e.length]=Dn),t.windowTop&&(e[e.length]=Lr),e}function ss(t){const{code:e,transforms:n}=Qh(t),i=tm(n);if(!i.length)return e;const s=`${Zh(i)};`,l=o(e,"use strict");if(l===-1)return s+e;let u=l+12;return u<e.length&&e[u]===";"&&(u+=1),c(zt,e,[0,u])+s+c(zt,e,[u])}const{key:em,getItem:nm,removeItem:ad,setItem:ld}=Storage.prototype;yt(SVGScriptElement.prototype,"href");const Ou=XMLHttpRequest,{prototype:Pc}=Ou,{abort:M_,open:cd,send:ud}=Pc,fd=V(Pc,"responseText"),rm=V(Pc,"status");de(Pc,"withCredentials");/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */const dd=["application/octet-stream","application/json","application/pdf","video/","audio/","image/","font/","text/plain","text/markdown","application/zip","application/x-bzip","application/x-rar-compressed","application/x-tar"],om=/^[a-z]+\/[a-z0-9.+-]+$/;function im(t){if(c(Ce,om,[t])){for(let e=0,{length:n}=dd;e<n;e+=1)if(c(Ue,t,[dd[e]]))return!0}return!1}const Ru=["/aura","/webruntime"],pd=zo(["http:","https:"]),sm=/[\u2028\u2029\n\r\t]/g,hi=c(li,Do,["a"]);function Oc(t){const e=c(Mn,t.pathname,[]);for(let n=0,{length:i}=Ru;n<i;n+=1)if(c(Ia,e,[Ru[n]])||c(He,e,[`${Ru[n]}/`]))return!1;return!0}function hd(t){return c(cl,hi,[t]),pd.includes(c(Wc,hi,[]))}function dl(t){return{normalizedURL:Nu(t),pathname:ic(c(Tu,hi,[]))}}function Rc(t){return c(cl,hi,[t]),c(Ec,hi,[])}function Nu(t){return Rc(am(t))}function am(t){return t===""?t:c(ne,t,[sm,""])}/*! version: 0.18.14 *//*! @license DOMPurify 2.4.0 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.4.0/LICENSE */function mi(t){return mi=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},mi(t)}function Du(t,e){return Du=Object.setPrototypeOf||function(i,s){return i.__proto__=s,i},Du(t,e)}function lm(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function Nc(t,e,n){return lm()?Nc=Reflect.construct:Nc=function(s,l,u){var p=[null];p.push.apply(p,l);var L=Function.bind.apply(s,p),E=new L;return u&&Du(E,u.prototype),E},Nc.apply(null,arguments)}function Mr(t){return cm(t)||um(t)||fm(t)||dm()}function cm(t){if(Array.isArray(t))return Iu(t)}function um(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function fm(t,e){if(!!t){if(typeof t=="string")return Iu(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Iu(t,e)}}function Iu(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n<e;n++)i[n]=t[n];return i}function dm(){throw new TypeError(`Invalid attempt to spread non-iterable instance. |
| | | In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var pm=Object.hasOwnProperty,md=Object.setPrototypeOf,hm=Object.isFrozen,mm=Object.getPrototypeOf,Sm=Object.getOwnPropertyDescriptor,Tn=Object.freeze,co=Object.seal,gm=Object.create,Sd=typeof Reflect!="undefined"&&Reflect,Dc=Sd.apply,Mu=Sd.construct;Dc||(Dc=function(e,n,i){return e.apply(n,i)}),Tn||(Tn=function(e){return e}),co||(co=function(e){return e}),Mu||(Mu=function(e,n){return Nc(e,Mr(n))});var ym=kr(Array.prototype.forEach),gd=kr(Array.prototype.pop),pl=kr(Array.prototype.push),Ic=kr(String.prototype.toLowerCase),Lm=kr(String.prototype.match),Si=kr(String.prototype.replace),bm=kr(String.prototype.indexOf),$m=kr(String.prototype.trim),vn=kr(RegExp.prototype.test),ku=_m(TypeError);function kr(t){return function(e){for(var n=arguments.length,i=new Array(n>1?n-1:0),s=1;s<n;s++)i[s-1]=arguments[s];return Dc(t,e,i)}}function _m(t){return function(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return Mu(t,n)}}function Ft(t,e,n){n=n||Ic,md&&md(t,null);for(var i=e.length;i--;){var s=e[i];if(typeof s=="string"){var l=n(s);l!==s&&(hm(e)||(e[i]=l),s=l)}t[s]=!0}return t}function as(t){var e=gm(null),n;for(n in t)Dc(pm,t,[n])&&(e[n]=t[n]);return e}function Mc(t,e){for(;t!==null;){var n=Sm(t,e);if(n){if(n.get)return kr(n.get);if(typeof n.value=="function")return kr(n.value)}t=mm(t)}function i(s){return console.warn("fallback value for",s),null}return i}var yd=Tn(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),xu=Tn(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Fu=Tn(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),Em=Tn(["animate","color-profile","cursor","discard","fedropshadow","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Gu=Tn(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover"]),Wm=Tn(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Ld=Tn(["#text"]),bd=Tn(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),Hu=Tn(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),$d=Tn(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),kc=Tn(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),Tm=co(/\{\{[\w\W]*|[\w\W]*\}\}/gm),vm=co(/<%[\w\W]*|[\w\W]*%>/gm),wm=co(/^data-[\-\w.\u00B7-\uFFFF]/),Am=co(/^aria-[\-\w]+$/),Cm=co(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Pm=co(/^(?:\w+script|data):/i),Om=co(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Rm=co(/^html$/i),Nm=function(){return typeof window=="undefined"?null:window},Dm=function(e,n){if(mi(e)!=="object"||typeof e.createPolicy!="function")return null;var i=null,s="data-tt-policy-suffix";n.currentScript&&n.currentScript.hasAttribute(s)&&(i=n.currentScript.getAttribute(s));var l="dompurify"+(i?"#"+i:"");try{return e.createPolicy(l,{createHTML:function(p){return p},createScriptURL:function(p){return p}})}catch(u){return console.warn("TrustedTypes policy "+l+" could not be created."),null}};function _d(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Nm(),e=function(w){return _d(w)};if(e.version="2.4.0",e.removed=[],!t||!t.document||t.document.nodeType!==9)return e.isSupported=!1,e;var n=t.document,i=t.document,s=t.DocumentFragment,l=t.HTMLTemplateElement,u=t.Node,p=t.Element,L=t.NodeFilter,E=t.NamedNodeMap,N=E===void 0?t.NamedNodeMap||t.MozNamedAttrMap:E,O=t.HTMLFormElement,H=t.DOMParser,J=t.trustedTypes,x=p.prototype,Z=Mc(x,"cloneNode"),st=Mc(x,"nextSibling"),Pt=Mc(x,"childNodes"),wt=Mc(x,"parentNode");if(typeof l=="function"){var $t=i.createElement("template");$t.content&&$t.content.ownerDocument&&(i=$t.content.ownerDocument)}var U=Dm(J,n),z=U?U.createHTML(""):"",Mt=i,K=Mt.implementation,it=Mt.createNodeIterator,Tt=Mt.createDocumentFragment,Nt=Mt.getElementsByTagName,Gt=n.importNode,mn={};try{mn=as(i).documentMode?i.documentMode:{}}catch(_t){}var he={};e.isSupported=typeof wt=="function"&&K&&typeof K.createHTMLDocument!="undefined"&&mn!==9;var ce=Tm,on=vm,Sn=wm,Le=Am,Tl=Pm,ua=Om,hs=Cm,Re=null,ms=Ft({},[].concat(Mr(yd),Mr(xu),Mr(Fu),Mr(Gu),Mr(Ld))),xe=null,fa=Ft({},[].concat(Mr(bd),Mr(Hu),Mr($d),Mr(kc))),me=Object.seal(Object.create(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),sn=null,Ss=null,da=!0,Li=!0,Go=!1,Gr=!1,Hr=!1,gs=!1,Ur=!1,jr=!1,uo=!1,An=!1,mt=!0,Ne=!1,vl="user-content-",ys=!0,ar=!1,Yn={},vt=null,bi=Ft({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),$i=null,Ho=Ft({},["audio","video","img","source","image","track"]),fo=null,pa=Ft({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),De="http://www.w3.org/1998/Math/MathML",Uo="http://www.w3.org/2000/svg",gn="http://www.w3.org/1999/xhtml",po=gn,Ls=!1,Br,ha=["application/xhtml+xml","text/html"],wl="text/html",Ie,ho=null,$e=i.createElement("form"),yn=function(w){return w instanceof RegExp||w instanceof Function},Vr=function(w){ho&&ho===w||((!w||mi(w)!=="object")&&(w={}),w=as(w),Br=ha.indexOf(w.PARSER_MEDIA_TYPE)===-1?Br=wl:Br=w.PARSER_MEDIA_TYPE,Ie=Br==="application/xhtml+xml"?function(X){return X}:Ic,Re="ALLOWED_TAGS"in w?Ft({},w.ALLOWED_TAGS,Ie):ms,xe="ALLOWED_ATTR"in w?Ft({},w.ALLOWED_ATTR,Ie):fa,fo="ADD_URI_SAFE_ATTR"in w?Ft(as(pa),w.ADD_URI_SAFE_ATTR,Ie):pa,$i="ADD_DATA_URI_TAGS"in w?Ft(as(Ho),w.ADD_DATA_URI_TAGS,Ie):Ho,vt="FORBID_CONTENTS"in w?Ft({},w.FORBID_CONTENTS,Ie):bi,sn="FORBID_TAGS"in w?Ft({},w.FORBID_TAGS,Ie):{},Ss="FORBID_ATTR"in w?Ft({},w.FORBID_ATTR,Ie):{},Yn="USE_PROFILES"in w?w.USE_PROFILES:!1,da=w.ALLOW_ARIA_ATTR!==!1,Li=w.ALLOW_DATA_ATTR!==!1,Go=w.ALLOW_UNKNOWN_PROTOCOLS||!1,Gr=w.SAFE_FOR_TEMPLATES||!1,Hr=w.WHOLE_DOCUMENT||!1,jr=w.RETURN_DOM||!1,uo=w.RETURN_DOM_FRAGMENT||!1,An=w.RETURN_TRUSTED_TYPE||!1,Ur=w.FORCE_BODY||!1,mt=w.SANITIZE_DOM!==!1,Ne=w.SANITIZE_NAMED_PROPS||!1,ys=w.KEEP_CONTENT!==!1,ar=w.IN_PLACE||!1,hs=w.ALLOWED_URI_REGEXP||hs,po=w.NAMESPACE||gn,w.CUSTOM_ELEMENT_HANDLING&&yn(w.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(me.tagNameCheck=w.CUSTOM_ELEMENT_HANDLING.tagNameCheck),w.CUSTOM_ELEMENT_HANDLING&&yn(w.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(me.attributeNameCheck=w.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),w.CUSTOM_ELEMENT_HANDLING&&typeof w.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(me.allowCustomizedBuiltInElements=w.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Gr&&(Li=!1),uo&&(jr=!0),Yn&&(Re=Ft({},Mr(Ld)),xe=[],Yn.html===!0&&(Ft(Re,yd),Ft(xe,bd)),Yn.svg===!0&&(Ft(Re,xu),Ft(xe,Hu),Ft(xe,kc)),Yn.svgFilters===!0&&(Ft(Re,Fu),Ft(xe,Hu),Ft(xe,kc)),Yn.mathMl===!0&&(Ft(Re,Gu),Ft(xe,$d),Ft(xe,kc))),w.ADD_TAGS&&(Re===ms&&(Re=as(Re)),Ft(Re,w.ADD_TAGS,Ie)),w.ADD_ATTR&&(xe===fa&&(xe=as(xe)),Ft(xe,w.ADD_ATTR,Ie)),w.ADD_URI_SAFE_ATTR&&Ft(fo,w.ADD_URI_SAFE_ATTR,Ie),w.FORBID_CONTENTS&&(vt===bi&&(vt=as(vt)),Ft(vt,w.FORBID_CONTENTS,Ie)),ys&&(Re["#text"]=!0),Hr&&Ft(Re,["html","head","body"]),Re.table&&(Ft(Re,["tbody"]),delete sn.tbody),Tn&&Tn(w),ho=w)},lr=Ft({},["mi","mo","mn","ms","mtext"]),xn=Ft({},["foreignobject","desc","title","annotation-xml"]),Of=Ft({},["title","style","font","a","script"]),mo=Ft({},xu);Ft(mo,Fu),Ft(mo,Em);var Al=Ft({},Gu);Ft(Al,Wm);var Qc=function(w){var X=wt(w);(!X||!X.tagName)&&(X={namespaceURI:gn,tagName:"template"});var at=Ic(w.tagName),Kt=Ic(X.tagName);return w.namespaceURI===Uo?X.namespaceURI===gn?at==="svg":X.namespaceURI===De?at==="svg"&&(Kt==="annotation-xml"||lr[Kt]):Boolean(mo[at]):w.namespaceURI===De?X.namespaceURI===gn?at==="math":X.namespaceURI===Uo?at==="math"&&xn[Kt]:Boolean(Al[at]):w.namespaceURI===gn?X.namespaceURI===Uo&&!xn[Kt]||X.namespaceURI===De&&!lr[Kt]?!1:!Al[at]&&(Of[at]||!mo[at]):!1},zr=function(w){pl(e.removed,{element:w});try{w.parentNode.removeChild(w)}catch(X){try{w.outerHTML=z}catch(at){w.remove()}}},Cl=function(w,X){try{pl(e.removed,{attribute:X.getAttributeNode(w),from:X})}catch(at){pl(e.removed,{attribute:null,from:X})}if(X.removeAttribute(w),w==="is"&&!xe[w])if(jr||uo)try{zr(X)}catch(at){}else try{X.setAttribute(w,"")}catch(at){}},Zc=function(w){var X,at;if(Ur)w="<remove></remove>"+w;else{var Kt=Lm(w,/^[\r\n\t ]+/);at=Kt&&Kt[0]}Br==="application/xhtml+xml"&&(w='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+w+"</body></html>");var Ln=U?U.createHTML(w):w;if(po===gn)try{X=new H().parseFromString(Ln,Br)}catch(Je){}if(!X||!X.documentElement){X=K.createDocument(po,"template",null);try{X.documentElement.innerHTML=Ls?"":Ln}catch(Je){}}var Ye=X.body||X.documentElement;return w&&at&&Ye.insertBefore(i.createTextNode(at),Ye.childNodes[0]||null),po===gn?Nt.call(X,Hr?"html":"body")[0]:Hr?X.documentElement:Ye},tu=function(w){return it.call(w.ownerDocument||w,w,L.SHOW_ELEMENT|L.SHOW_COMMENT|L.SHOW_TEXT,null,!1)},eu=function(w){return w instanceof O&&(typeof w.nodeName!="string"||typeof w.textContent!="string"||typeof w.removeChild!="function"||!(w.attributes instanceof N)||typeof w.removeAttribute!="function"||typeof w.setAttribute!="function"||typeof w.namespaceURI!="string"||typeof w.insertBefore!="function")},bs=function(w){return mi(u)==="object"?w instanceof u:w&&mi(w)==="object"&&typeof w.nodeType=="number"&&typeof w.nodeName=="string"},Kr=function(w,X,at){!he[w]||ym(he[w],function(Kt){Kt.call(e,X,at,ho)})},nu=function(w){var X;if(Kr("beforeSanitizeElements",w,null),eu(w)||vn(/[\u0080-\uFFFF]/,w.nodeName))return zr(w),!0;var at=Ie(w.nodeName);if(Kr("uponSanitizeElement",w,{tagName:at,allowedTags:Re}),w.hasChildNodes()&&!bs(w.firstElementChild)&&(!bs(w.content)||!bs(w.content.firstElementChild))&&vn(/<[/\w]/g,w.innerHTML)&&vn(/<[/\w]/g,w.textContent)||at==="select"&&vn(/<template/i,w.innerHTML))return zr(w),!0;if(!Re[at]||sn[at]){if(!sn[at]&&Ol(at)&&(me.tagNameCheck instanceof RegExp&&vn(me.tagNameCheck,at)||me.tagNameCheck instanceof Function&&me.tagNameCheck(at)))return!1;if(ys&&!vt[at]){var Kt=wt(w)||w.parentNode,Ln=Pt(w)||w.childNodes;if(Ln&&Kt)for(var Ye=Ln.length,Je=Ye-1;Je>=0;--Je)Kt.insertBefore(Z(Ln[Je],!0),st(w))}return zr(w),!0}return w instanceof p&&!Qc(w)||(at==="noscript"||at==="noembed")&&vn(/<\/no(script|embed)/i,w.innerHTML)?(zr(w),!0):(Gr&&w.nodeType===3&&(X=w.textContent,X=Si(X,ce," "),X=Si(X,on," "),w.textContent!==X&&(pl(e.removed,{element:w.cloneNode()}),w.textContent=X)),Kr("afterSanitizeElements",w,null),!1)},Pl=function(w,X,at){if(mt&&(X==="id"||X==="name")&&(at in i||at in $e))return!1;if(!(Li&&!Ss[X]&&vn(Sn,X))){if(!(da&&vn(Le,X))){if(!xe[X]||Ss[X]){if(!(Ol(w)&&(me.tagNameCheck instanceof RegExp&&vn(me.tagNameCheck,w)||me.tagNameCheck instanceof Function&&me.tagNameCheck(w))&&(me.attributeNameCheck instanceof RegExp&&vn(me.attributeNameCheck,X)||me.attributeNameCheck instanceof Function&&me.attributeNameCheck(X))||X==="is"&&me.allowCustomizedBuiltInElements&&(me.tagNameCheck instanceof RegExp&&vn(me.tagNameCheck,at)||me.tagNameCheck instanceof Function&&me.tagNameCheck(at))))return!1}else if(!fo[X]){if(!vn(hs,Si(at,ua,""))){if(!((X==="src"||X==="xlink:href"||X==="href")&&w!=="script"&&bm(at,"data:")===0&&$i[w])){if(!(Go&&!vn(Tl,Si(at,ua,"")))){if(at)return!1}}}}}}return!0},Ol=function(w){return w.indexOf("-")>0},ru=function(w){var X,at,Kt,Ln;Kr("beforeSanitizeAttributes",w,null);var Ye=w.attributes;if(!!Ye){var Je={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:xe};for(Ln=Ye.length;Ln--;){X=Ye[Ln];var $s=X,an=$s.name,Rl=$s.namespaceURI;if(at=an==="value"?X.value:$m(X.value),Kt=Ie(an),Je.attrName=Kt,Je.attrValue=at,Je.keepAttr=!0,Je.forceKeepAttr=void 0,Kr("uponSanitizeAttribute",w,Je),at=Je.attrValue,!Je.forceKeepAttr&&(Cl(an,w),!!Je.keepAttr)){if(vn(/\/>/i,at)){Cl(an,w);continue}Gr&&(at=Si(at,ce," "),at=Si(at,on," "));var ou=Ie(w.nodeName);if(!!Pl(ou,Kt,at)){if(Ne&&(Kt==="id"||Kt==="name")&&(Cl(an,w),at=vl+at),U&&mi(J)==="object"&&typeof J.getAttributeType=="function"&&!Rl)switch(J.getAttributeType(ou,Kt)){case"TrustedHTML":at=U.createHTML(at);break;case"TrustedScriptURL":at=U.createScriptURL(at);break}try{Rl?w.setAttributeNS(Rl,an,at):w.setAttribute(an,at),gd(e.removed)}catch(Xp){}}}}Kr("afterSanitizeAttributes",w,null)}},Rf=function _t(w){var X,at=tu(w);for(Kr("beforeSanitizeShadowDOM",w,null);X=at.nextNode();)Kr("uponSanitizeShadowNode",X,null),!nu(X)&&(X.content instanceof s&&_t(X.content),ru(X));Kr("afterSanitizeShadowDOM",w,null)};return e.sanitize=function(_t){var w=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},X,at,Kt,Ln,Ye;if(Ls=!_t,Ls&&(_t="<!-->"),typeof _t!="string"&&!bs(_t)){if(typeof _t.toString!="function")throw ku("toString is not a function");if(_t=_t.toString(),typeof _t!="string")throw ku("dirty is not a string, aborting")}if(!e.isSupported){if(mi(t.toStaticHTML)==="object"||typeof t.toStaticHTML=="function"){if(typeof _t=="string")return t.toStaticHTML(_t);if(bs(_t))return t.toStaticHTML(_t.outerHTML)}return _t}if(gs||Vr(w),e.removed=[],typeof _t=="string"&&(ar=!1),ar){if(_t.nodeName){var Je=Ie(_t.nodeName);if(!Re[Je]||sn[Je])throw ku("root node is forbidden and cannot be sanitized in-place")}}else if(_t instanceof u)X=Zc("<!---->"),at=X.ownerDocument.importNode(_t,!0),at.nodeType===1&&at.nodeName==="BODY"||at.nodeName==="HTML"?X=at:X.appendChild(at);else{if(!jr&&!Gr&&!Hr&&_t.indexOf("<")===-1)return U&&An?U.createHTML(_t):_t;if(X=Zc(_t),!X)return jr?null:An?z:""}X&&Ur&&zr(X.firstChild);for(var $s=tu(ar?_t:X);Kt=$s.nextNode();)Kt.nodeType===3&&Kt===Ln||nu(Kt)||(Kt.content instanceof s&&Rf(Kt.content),ru(Kt),Ln=Kt);if(Ln=null,ar)return _t;if(jr){if(uo)for(Ye=Tt.call(X.ownerDocument);X.firstChild;)Ye.appendChild(X.firstChild);else Ye=X;return xe.shadowroot&&(Ye=Gt.call(n,Ye,!0)),Ye}var an=Hr?X.outerHTML:X.innerHTML;return Hr&&Re["!doctype"]&&X.ownerDocument&&X.ownerDocument.doctype&&X.ownerDocument.doctype.name&&vn(Rm,X.ownerDocument.doctype.name)&&(an="<!DOCTYPE "+X.ownerDocument.doctype.name+`> |
| | | `+an),Gr&&(an=Si(an,ce," "),an=Si(an,on," ")),U&&An?U.createHTML(an):an},e.setConfig=function(_t){Vr(_t),gs=!0},e.clearConfig=function(){ho=null,gs=!1},e.isValidAttribute=function(_t,w,X){ho||Vr({});var at=Ie(_t),Kt=Ie(w);return Pl(at,Kt,X)},e.addHook=function(_t,w){typeof w=="function"&&(he[_t]=he[_t]||[],pl(he[_t],w))},e.removeHook=function(_t){if(he[_t])return gd(he[_t])},e.removeHooks=function(_t){he[_t]&&(he[_t]=[])},e.removeAllHooks=function(){he={}},e}var Im=_d();/*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */const Uu=["aria-activedescendant","aria-atomic","aria-autocomplete","aria-busy","aria-checked","aria-controls","aria-describedby","aria-disabled","aria-readonly","aria-dropeffect","aria-expanded","aria-flowto","aria-grabbed","aria-haspopup","aria-hidden","aria-disabled","aria-invalid","aria-label","aria-labelledby","aria-level","aria-live","aria-multiline","aria-multiselectable","aria-orientation","aria-owns","aria-posinset","aria-pressed","aria-readonly","aria-relevant","aria-required","aria-selected","aria-setsize","aria-sort","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext","role","target"],Mm=["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blockquote","body","br","button","caption","canvas","center","cite","code","col","colgroup","command","datalist","dd","del","details","dfn","dir","div","dl","dt","em","fieldset","figure","figcaption","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","i","iframe","img","input","ins","keygen","kbd","label","legend","li","map","mark","menu","meter","nav","ol","optgroup","option","output","p","pre","progress","q","rp","rt","ruby","s","samp","section","select","small","source","span","strike","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"],Ed=["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","audio","canvas","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","switch","symbol","text","textpath","title","tref","tspan","video","view","vkern","use"],Wd=yr(Mm,Ed),ju={attributeNameCheck:/.+/,allowCustomizedBuiltInElements:!1,tagNameCheck:/^[a-z][-_.\w]*-[-.0-9_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u37D0\u37F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u10000-\uEFFFF]*$/},km={ADD_ATTR:Ut(Uu),ALLOWED_TAGS:yr(Wd,"#document-fragment"),CUSTOM_ELEMENT_HANDLING:Fe({},ju),IN_PLACE:!0},xm={ADD_ATTR:Ut(Uu),ALLOWED_TAGS:Ut(Ed),CUSTOM_ELEMENT_HANDLING:Fe({},ju),RETURN_DOM_FRAGMENT:!0,SANITIZE_DOM:!1},Fm={ADD_ATTR:Ut(Uu),ALLOWED_TAGS:c(Bo,Wd,[t=>t!=="iframe"]),CUSTOM_ELEMENT_HANDLING:Fe({},ju),SANITIZE_DOM:!1};var Gm=Object.freeze({__proto__:null,NODE_ALL_IN_PLACE:km,NODE_SVG:xm,STRING_BLOB_HTML:Fm});const Td={__proto__:null},Hm=zo(["href","xlink:href"]),Um="SHARED_SVG_SANITIZER_KEY",Bu=c(li,document,["template"]),xc=eo(new rn),vd=/[^a-z0-9]+/gi;function jm(t){return{__proto__:null,uponSanitizeAttribute:qm,uponSanitizeElement(e,n,i){var s;const{tagName:l}=n,u=i==null||(s=i.CUSTOM_ELEMENT_HANDLING)==null?void 0:s.tagNameCheck;u&&c(Ce,u,[l])&&!c(ui,e,[rs])&&c(io,e,[rs,t])}}}function Bm(t){const e=c(li,document,["div"]);c(io,e,["style","display:none"]),c(io,e,["id",t]);const n=c(qa,document,[]);return c(ao,n,[e]),e}function Vu(t,e){if(typeof t!="string")throw new bt(In);if(typeof e!="string")throw new bt("Invalid config name.");let n=Td[t];n===void 0&&(n=Td[t]={__proto__:null});let i=n[e];if(i===void 0){const s=Gm[e];i=Im(),i.setConfig(s);const l=jm(t);for(const u in l)i.addHook(u,l[u]);n[e]=i}return i}function wd(t){return Vu(Um,"NODE_SVG").sanitize(t)}function ls(t){const e=xt(t);if(c(Ue,e,["#"]))return t;const n=Km(e);if(pd.includes(n.protocol)){const i=c(Yi,document,[n.normalizedURL]);return i&&n.normalizedFragment?Vm(i,n):i||zm(n),n.requestedFragment?`#${n.normalizedFragment}`:`#${n.normalizedURL}`}return t}function Ad(t,e){const{normalizedFragment:n,requestedFragment:i}=e;let s=c(Qa,t,[`#${n}`]);if(s===null)try{s=c(Qa,t,[`#${i}`]),c(io,s,["id",n])}catch(l){}}function Vm(t,e){if(xc.has(e.normalizedURL)){const n=Su(()=>{xc.has(e.normalizedURL)||(Ad(t,e),oc(n))},50)}else Ad(t,e)}function zm(t){const e=Bm(t.normalizedURL);xc.add(t.normalizedURL);const n=new Ou;c(lo,n,["load",()=>{if(c(rm,n,[])===200){const s=c(fd,n,[]),l=wd(s);if(t.requestedFragment){const u=c($u,l,[t.requestedFragment]);u&&c(io,u,["id",t.normalizedFragment])}c(ao,e,[l]),xc.delete(t.normalizedURL)}}]),c(cd,n,["GET",t.requestedURL]),c(ud,n,[])}function Km(t){c(cl,hi,[t]);const e=c(Ec,hi,[]),n=c(Wc,hi,[]),{0:i,1:s}=c(Zr,e,["#"]),l=c(Mn,i,[]),u=c(ne,l,[vd,""]);return{normalizedFragment:s?`${u}_${c(ne,s,[vd,""])}`:"",normalizedURL:u,protocol:n,requestedFragment:s,requestedURL:i}}function qm(t,e,n){const{attrValue:i,attrName:s}=e;return i&&c(wr,c(qt,t,[]),[])==="USE"&&Hm.includes(s)&&(e.attrValue=ls(i)),e}function Xm(t){if(typeof t!="string")throw new bt(In);return Vu(t,"STRING_BLOB_HTML")}function zu(t,e){if(typeof e!="string")throw new bt(In);c(Io,Bu,[t]);const n=c(ra,Bu,[]);return Vu(e,"NODE_ALL_IN_PLACE").sanitize(n),c(Zi,Bu,[])}function Cd(t,e){const n=c(Xa,t,[]),i=c(Za,n,[]),s=c(Zl,t,[]),l=c(yc,s,[ia,"html"]),u=c(Xa,l,[]);return c(Io,u,[zu(i,e)]),l}function Pd(t){return c(ci,t,[Ac,"svg"])}function Od(t,e=""){const n=typeof t=="string"?document:c(ts,t,[]);let i;if(typeof t=="string")e=t,i=Pd(n);else{const E=c(uu,t,["svg"]);i=E?c(pu,E,[!1]):Pd(n)}const s=c(ai,n,[""]);c(ao,i,[s]);const l=c(Za,i,[]),u=c(ne,l,["<!---->",e]),p=wd(u),L=c(mu,p,[]);return c(Zi,L,[])}/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2023 salesforce.com, inc. |
| | | */const Ku=Yt(new kt);async function Ym(t,e){Jm(e);const n=new pe,i=c(Ka,n,[]);Ku.set(e,n);const s=await el(t,{__proto__:null,method:"GET",credentials:"include",signal:i});if(Ku.delete(e),!c(h,s,[]))throw new Zn("Request failed.");return await c(S,s,[])}function Jm(t){const e=Ku.get(t);e&&c(le,e,[])}const qu="$evaluator$",Qm=`document.currentScript['${qu}']`,Zm=typeof trustedTypes!="undefined";function tS(t,e){return trustedTypes.createPolicy(t,e)}function eS(t,e){return e}const Rd=Zm?tS:eS,cs=Rd("trusted",{createHTML(t){return t},createScript(t){return t},createScriptURL(t){return t}}),Xu=ro(new no),sa=Yt(new kt),gi=Rd("lwsInternal",{createHTML(t,e,n){if(t==null)return"";switch(n){case 0:return zu(t,e);case 1:return"";case 2:return t;default:return""}},createScript(t,e){return""},createScriptURL(t,e,n){const i=oS(n);if(t=`${t}`,Xu.has(n)||t===""||t==="undefined"||t==="null")return i(cs.createScriptURL(t)),t;const s=c(nc,n,[]),l=Rc(t);if(s){if(rS(n))return Xu.add(n),i(cs.createScriptURL(t)),t;if(sa.has(n))return""}const u=Ym(l,n);sa.set(n,l);const p=nS();return c(kn,u,[N=>{Se(n,qu,{__proto__:null,configurable:!0,get:c(tr,()=>{fe(n,qu),Y(p);const O=sa.get(n);sa.delete(n),Xu.add(n),i(cs.createScriptURL(O)),e(N)},[n]),set:void 0}),i(cs.createScriptURL(p))},N=>{Y(p);const O=sa.get(n);sa.delete(n),i(cs.createScriptURL("blob:http://localhost/not-found"));const H=()=>{i(cs.createScriptURL(O)),c(pi,n,["error",H])};c(lo,n,["error",H])}]),""}});function nS(){return P(new dc([Qm],{__proto__:null,type:"text/javascript"}))}function rS(t){return t instanceof ul?c(hn,t,["src"]):c(ui,t,["href"])?c(hn,t,["href"]):c(hn,t,["xlink:href"])}function oS(t){const n=c(du,t,[])===ia?"":is,i=t instanceof ul?"src":"href";return function(s){c(tc,t,[n,i,s])}}/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */const Fc="Illegal constructor.",us="Illegal invocation.",Nd="Failed to construct 'HTMLElement': Please use the 'new' operator, this DOM object constructor cannot be called as a function.",fs=ee("@@lockerOriginalHTMLElementCtor");let Yu,Ju;const Gc=Yt(new kt),Qu=Yt(new kt),Dd=Yt(new kt),Id=Vn(new dn),Zu=Yt(new kt);class Md{constructor(e){this._awaitingUpgrade=Vn(new dn),this._definedCtors=eo(new rn),this._definitionByElement=Yt(new kt),this._definitionByTag=Vn(new dn),this._pendingRegistryByElement=Yt(new kt),this._document=e,this._HTMLElement=Qu.get(e)}applyDefine(e,n){const{0:i,1:s,2:l}=n;if(l&&l.extends)throw new DOMException("NotSupportedError: 'extends' key in customElements.define() options is not supported.");if(this._definitionByTag.has(i))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${i}" has already been used with this registry.`);if(this._definedCtors.has(s))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry.");const u=lS(s);let p=Id.get(i);p===void 0&&(p=sS(this._document,this._HTMLElement,u,i),c(os,e,[i,p])),Gc.set(s,u),Id.set(i,p),this._definitionByTag.set(i,u),this._definedCtors.add(s),u.PivotCtor=p;const L=this._awaitingUpgrade.get(i);L&&L.forEach(E=>{const N=this._pendingRegistryByElement.get(E);N&&(this._pendingRegistryByElement.delete(E),this.upgrade(E,N,u))})}applyGet(e,n){const{0:i}=n,s=this._definitionByTag.get(i);return s&&s.LocalCtor||c(gc,e,[i])}applyWhenDefined(e,n){const{0:i}=n,s=c(ll,e,n);return new Dr((l,u)=>{c(kn,s,[()=>{const p=this._definitionByTag.get(i);p&&l(p.LocalCtor)},u])})}getDefinition(e){return this._definitionByElement.get(e)}newCtor(e){const n=Ju;if(n)return Ju=void 0,n;const{constructor:i}=e,s=Gc.get(i);if(s===void 0||typeof s.PivotCtor!="function"){let l;try{l=c(na,e,[])}catch(u){}if(l)return e;throw new Vt(Fc)}return new s.PivotCtor(this,s)}scheduleConnectedCallback(e,n){let i=this._awaitingUpgrade.get(n);i===void 0&&(i=eo(new rn),this._awaitingUpgrade.set(n,i)),i.add(e)}scheduleDisconnectedCallback(e,n){const i=this._awaitingUpgrade.get(n);i&&i.delete(e)}scheduleOrUpgrade(e,n,i){const s=this._definitionByTag.get(n);s?this.upgrade(e,i,s):(this._pendingRegistryByElement.set(e,i),It(e,this._HTMLElement.prototype))}setDefinition(e,n){It(e,n.LocalCtor.prototype),this._definitionByElement.set(e,n)}upgrade(e,n,i){const{LocalCtor:s,connectedCallback:l}=i;this.setDefinition(e,i),i!==n&&fS(e,n,i),Ju=e,We(s,[]);const u=c(na,e,[]),p=c(Mn,u,[]),L=this._awaitingUpgrade.get(p);L&&L.size&&(hS(e,n),L.has(e)&&c(nc,e,[])&&(l&&c(l,e,[]),L.delete(e),L.size||this._awaitingUpgrade.delete(p)))}}function iS(t){const{connectedCallback:e,disconnectedCallback:n,adoptedCallback:i,attributeChangedCallback:s}=t.prototype,l=eo(new rn(t.observedAttributes||[]));return{adoptedCallback:i,attributeChangedCallback:s,connectedCallback:e,disconnectedCallback:n,LocalCtor:t,observedAttributes:l,PivotCtor:void 0}}function sS(t,e,n,i){var s;return s=class extends e{constructor(u,p){super();u&&p?(this.instanceRegistry=u,u.setDefinition(this,p)):(this.instanceRegistry=cS(t,this)||aS()||kd(t),this.instanceRegistry.scheduleOrUpgrade(this,i,n))}connectedCallback(){const{instanceRegistry:u}=this,p=u.getDefinition(this);if(p){const{connectedCallback:L}=p;L&&c(L,this,[])}else u.scheduleConnectedCallback(this,i)}disconnectedCallback(){const{instanceRegistry:u}=this,p=u.getDefinition(this);if(p){const{disconnectedCallback:L}=p;L&&c(L,this,[])}else u.scheduleDisconnectedCallback(this,i)}adoptedCallback(){const u=this.instanceRegistry.getDefinition(this);if(u){const{adoptedCallback:p}=u;p&&c(p,this,[])}}attributeChangedCallback(u,p,L){const E=this.instanceRegistry.getDefinition(this),N=E==null?void 0:E.attributeChangedCallback,O=E==null?void 0:E.observedAttributes;typeof N=="function"&&(n===E||O!=null&&O.has(u))&&c(N,this,[u,p,L])}},s.observedAttributes=[...n.observedAttributes],s}function aS(){const t=Yu;return Yu=void 0,t}function lS(t){const e=typeof t=="function"?t.prototype:void 0;if(!fn(e))throw new Vt("Invalid custom element constructor.");let n=Gc.get(t);return n===void 0&&(n=iS(t),Gc.set(t,n)),n}function kd(t){let e=Dd.get(t);return e||(e=new Md(t),Dd.set(t,e),e)}function cS(t,e){const n=c(hn,e,[rs]);if(n===null||(c(fi,e,[rs]),c(ts,e,[])!==t))return;const s=Zu.get(t);return s?s.get(n):void 0}function uS(t,e){return eo(new rn([...e.observedAttributes].filter(n=>!t.observedAttributes.has(n))))}function fS(t,e,n){const{observedAttributes:i,attributeChangedCallback:s}=n;if(i.size===0||typeof s!="function")return;const l=uS(e,n);!l.size||(t.removeAttribute=jn(function(p){const L=[p];if(l.has(p)){const E=c(hn,this,L);c(fi,this,L),L[1]=E,L[2]=null,c(s,this,L)}else c(fi,this,L)},fi),t.setAttribute=jn(function(p,L){const E=[p],N=xt(L),O=[p,N];if(l.has(p)){const H=c(hn,this,E);c(io,this,O),E[1]=H,E[2]=N,c(s,this,E)}else c(io,this,O)},io),t.toggleAttribute=jn(function(p){const L=[p];let E;if(l.has(p)){const N=c(ui,this,L),O=N?c(hn,this,L):null;E=c(Qi,this,L),L[1]=O,N&&(L[2]=null),c(s,this,L)}else E=c(Qi,this,L);return E},Qi))}function dS(t,e){const{CustomElementRegistry:{prototype:n},customElements:i}=t;n.get=jn(function(...l){if(this!==i)throw new Vt(us);return e.applyGet(this,l)},n.get),n.define=jn(function(...l){if(this!==i)throw new Vt(us);return e.applyDefine(this,l)},n.define),n.whenDefined=jn(function(...l){return this!==i?Ro(new Vt(us)):e.applyWhenDefined(this,l)},n.whenDefined)}function pS(t,e){let n=!1;const{HTMLElement:i}=t;t.HTMLElement=jn(function s(){if(new.target===void 0)throw new Vt(Nd);if(new.target===s)throw new Vt(Fc);return e.newCtor(this)},i,{defineProperty(s,l,u){if(l===fs)throw new Vt(en);return Se(s,l,u)},get(s,l,u,p=!1){n&&(n=p);const L=l===fs;if(n&&L)return i;const E=Ht(s,l,u);if(E!==void 0&&L)throw new Vt(en);return E},getOwnPropertyDescriptor(s,l){const u=yt(s,l);if(u&&l===fs)throw new Vt(en);return u},has(s,l){const u=oe(s,l),p=l===fs;if(u){if(n=!1,p)throw new Vt(en)}else n=p;return u},set(s,l,u,p){if(l===fs)throw new Vt(en);return Dt(s,l,u,p)}})}function hS(t,e){const{observedAttributes:n}=e,i=n.size?e.attributeChangedCallback:void 0;i&&n.forEach(s=>{if(c(ui,t,[s])){const l=c(hn,t,[s]);c(i,t,[s,null,l])}})}function mS(t){return fs in t?void 0:t[fs]}function hl(t,e){let n=Zu.get(t);n===void 0&&(n=Vn(new dn),Zu.set(t,n));let i=n.get(e);return i||(i=new Md(t),n.set(e,i),i)}function SS(t,e){let{HTMLElement:n}=e;const{CustomElementRegistry:{prototype:{get:i}}}=e,s=Un(n),l=Un(i);if(s){if(n=mS(n),typeof n!="function")throw new Vt("Invalid HTMLElement constructor.");Qu.set(t,n)}else Qu.set(t,n);const u=!s||!l?kd(t):void 0;s||pS(e,u),l||dS(e,u)}function xr(t,e){Yu=hl(t,e)}const Hc=Vn(new dn),tf=Yt(new kt);function gS(t){const e=Hc.get(t);if(e===void 0)return;Hc.delete(t);const{document:n,key:i}=t;let s=tf.get(n);s===void 0&&(s={__proto__:null},tf.set(n,s));const l={__proto__:null};s[i]=l;for(let u=0,{length:p}=e;u<p;u+=1)e[u](l)}function Fr(t,e,n,i=qe){const{document:s,key:l}=t,u=tf.get(s);if(u===void 0)return;const p=u[l];if(p===void 0)return;const L=p[c(Mn,n,[])];if(L===void 0)return;const E=L[i];if(E===void 0)return;const N=E.entries();for(const{0:O,1:H}of N)if(e instanceof O)return H}function ds(t){return t==null||t===""?qe:t}function wn(t,e,n,i,s){let l=Hc.get(t);l===void 0&&(l=[],Hc.set(t,l));const u=c(Mn,n,[]);l[l.length]=p=>{let L=p[u];L===void 0&&(L={__proto__:null},p[u]=L);let E=L[i];E===void 0&&(E=Vn(new dn),L[i]=E),E.set(e,s)}}function yS({globalObject:{Attr:t}}){const e=de(t.prototype,"value");return function(i){return[e,function(l){const u=c(Xi,this,[]);if(u){const p=c(ii,this,[]),L=c(No,this,[]),E=ds(L),N=Fr(i,u,p,E);if(N){c(N,u,[l]);return}}c(e,this,[l])}]}}function LS({UNCOMPILED_CONTEXT:t,globalObject:e}){var n,i;const s=(n=e.aura)==null||(i=n.util)==null?void 0:i.globalEval;return typeof s!="function"?Wt:function({sandboxEvaluator:u}){return[s,function(L,E,N){let O=`(function s(){return(${L})})()`;if(typeof E=="string"){const H=c(Zr,E,["://"]),{length:J}=H,x=J?H[H.length-1]:"";O+=this.sourceComment+(N==="lib"?`/libraries/${c(ne,x,[".","/"])}`:`/components/${c(ne,x,[":","/"])}.js`)}return u(ss(O),t)}]}}function bS({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.delete;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){if(u.length){const{0:p}=u;we(p)&&(u[0]=sr(p,s))}return c(n,this,u)}]}}function $S({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.has;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){if(u.length){const{0:p}=u;we(p)&&(u[0]=sr(p,s))}return c(n,this,u)}]}}function _S({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.keys;return typeof n!="function"?Wt:function({key:s}){return[n,function(){const u=c(n,this,[]);return c(kn,u,[p=>{const L=[];for(let E=0,N=0,{length:O}=p;E<O;E+=1){const H=p[E];Qs(H,s)&&(L[N++]=za(H,s))}return L}])}]}}function ES({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.match;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const{length:p}=u;if(!p)return c(n,this,u);const L=p>=2?u[1]:void 0;if(Qn(L)&&"cacheName"in L){const{cacheName:E}=L;if(we(E)){const N=Pe(L);return N.cacheName=sr(E,s),u[1]=N,c(n,this,u)}}return Ro(new bt("caches.match() expects 'options.cacheName' to be present."))}]}}function WS({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.open;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){if(u.length){const{0:p}=u;we(p)&&(u[0]=sr(p,s))}return c(n,this,u)}]}}const Uc="; ";function ef(t,e){if(Qn(t)){const n=Pe(t);return n.name=sr(n.name,e),n}return sr(t,e)}function TS(t,e){if(!Qs(t,e))return null;const n=qi(e),{length:i}=n,s=t.length>i&&t[i]==="="?i+1:i;return c(zt,t,[s])}function vS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.delete;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const p=u.length?u[0]:void 0;return p!=null&&(u[0]=ef(p,s)),c(n,this,u)}]}}function wS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.get;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const p=u.length?u[0]:void 0;p!=null&&(u[0]=ef(p,s));const L=c(n,this,u);return c(kn,L,[E=>{if(E){const{name:N}=E;if(Qs(N,s))return E.name=za(N,s),E}return null}])}]}}function AS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.getAll;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const p=u.length?u[0]:void 0;p!=null&&(u[0]=ef(u[0],s));const L=c(n,this,u);return c(kn,L,[E=>{const N=[];let O=0;for(let H=0,{length:J}=E;H<J;H+=1){const x=E[H];if(x){const{name:Z}=x;Qs(Z,s)&&(x.name=za(Z,s),N[O++]=x)}}return N}])}]}}const nf={__proto__:null};function xd(t,e,n){const{key:i}=t,{[i]:s}=nf;return s===void 0||s[n]===void 0?!1:s[n].has(e.constructor)}function CS(t,e,n){if(xd(t,e.prototype,n))return;const{key:i}=t,{[i]:s={__proto__:null}}=nf,{[n]:l=ro(new no)}=s;l.add(e),s[n]=l,nf[i]=s}function PS(t,e){let n=`Cannot set '${e}' event handler`;const i=yt(t.constructor,"name");if(i){It(i,null);const{value:s}=i;typeof s=="string"&&(n+=` on ${s} object`)}return`${n}.`}function OS(t,e){let n=`Cannot add '${e}' event listener`;const i=yt(t.constructor,"name");if(i){It(i,null);const{value:s}=i;typeof s=="string"&&(n+=` to ${s} object`)}return`${n}.`}function jc(t,e,n){const i=`on${n}`,s=de(t,i);if(typeof s!="function")return Wt;const l=PS(t,i),u=[s,function(){throw new bt(l)}];return function(L){return CS(L,e,n),u}}function RS({globalObject:{CookieStore:t}}){return jc(t==null?void 0:t.prototype,t,"change")}function NS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.set;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const{length:p}=u;if(p>1)u[0]=sr(u[0],s);else if(p){const{0:L}=u;if(Qn(L)){const E=Pe(L);E.name=sr(E.name,s),u[0]=E}}return c(n,this,u)}]}}function DS({globalObject:{CSSStyleRule:t}}){const e=V(t.prototype,"style"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function IS({document:t,globalObject:{CustomElementRegistry:e,customElements:n}}){var i;const s=e==null||(i=e.prototype)==null?void 0:i.define;return typeof s!="function"?Wt:function({key:u}){const p=hl(t,u);return[s,function(...E){if(this!==n)throw new Vt(us);return p.applyDefine(this,E)}]}}function MS({document:t,globalObject:{CustomElementRegistry:e,customElements:n}}){var i;const s=e==null||(i=e.prototype)==null?void 0:i.get;return typeof s!="function"?Wt:function({key:u}){const p=hl(t,u);return[s,function(...E){if(this!==n)throw new Vt(us);return p.applyGet(this,E)}]}}function kS({document:t,globalObject:{CustomElementRegistry:e,customElements:n}}){var i;const s=e==null||(i=e.prototype)==null?void 0:i.whenDefined;return typeof s!="function"?Wt:function({key:u}){const p=hl(t,u);return[s,function(...E){return this!==n?Ro(new Vt(us)):p.applyWhenDefined(this,E)}]}}function xS({globalObject:{Document:t}}){const e=V(t.prototype,"cookie");return function({key:i}){return[e,function(){const l=c(lu,this,[]),u=c(Zr,l,[Uc]),p=[];let L=0;for(let E=0,{length:N}=u;E<N;E+=1){const O=TS(u[E],i);O&&(p[L++]=O)}return c(Ai,p,[Uc])}]}}function FS({globalObject:{Document:t}}){const e=de(t.prototype,"cookie");return function({key:i}){return[e,function(l){const u=c(Zr,l,[Uc]);let{0:p}=u;p.length&&p[0]==="="&&(p=c(zt,p,[1])),u[0]=sr(p,i);const L=c(Ai,u,[Uc]);c(cu,this,[L])}]}}function GS({document:t,globalObject:{Document:{prototype:{createElement:e}}}}){return function({key:i}){return[e,function(...s){const{0:l}=s;return c(He,l,["-"])&&xr(t,i),c(e,this,s)}]}}function HS({document:t,globalObject:{Document:{prototype:{createElementNS:e}}}}){return function({key:i}){return[e,function(...s){const{1:l}=s;return c(He,l,["-"])&&xr(t,i),c(e,this,s)}]}}function US(){throw new bt("Cannot set document.domain.")}function jS({globalObject:{Document:t}}){const n=[de(t.prototype,"domain"),US];return function(){return n}}const{isSharedElement:BS}=se;function VS({document:t,globalObject:{Document:{prototype:{execCommand:e}},HTMLElement:n}}){const i=V(Document.prototype,"activeElement"),s=V(n.prototype,"isContentEditable");return function({key:u,type:p}){return[e,function(...E){if(E.length>2){const{2:N}=E;if(N!=null){const O=xt(E[0]);if(c(Mn,O,[])==="inserthtml"){if(p===0){const H=c(i,this,[]);if(BS(H)&&c(s,H,[]))throw new bt(`Cannot execute command '${O}' on ${c(qt,H,[])}.`)}xr(t,u),E[0]=O,E[2]=gi.createHTML(N,u,0)}}}return c(e,this,E)}]}}function zS({globalObject:{Document:{prototype:t},HTMLDocument:e}}){return jc(t,e,"securitypolicyviolation")}const Fd=/(^|,)(\s*noopener\s*=\s*(?:yes|1)\s*)(,|$)/g;function Gd(t){const e=Ut(t);if(e.length>2){const n=xt(e[2]);let i=c(Mn,n,[]);c(Ce,Fd,[n])&&(i=c(ne,i,[Fd,(s,l,u,p)=>`${l}noopener${p}`])),e[2]=i}return e}function KS({globalObject:{Document:{prototype:{open:t}}}}){const e=[t,function(...i){if(i.length>=3){const s=Gd(i);return c(t,this,s)}return c(t,this,i)}];return function(){return e}}const{isSharedElement:qS}=se;function XS({globalObject:{Document:{prototype:{replaceChildren:t}}}}){const e=[t,function(...i){if(qS(c(Ql,this,[])))throw new bt("Cannot replace children of document.");return c(t,this,i)}];return function(){return e}}function YS({document:t,globalObject:{DOMParser:{prototype:{parseFromString:e}}}}){return function({key:i}){return[e,function(...l){if(l.length>=2){const u=xt(l[0]),p=xt(l[1]);xr(t,i),l[0]=p==="image/svg+xml"?Od(u):p==="application/xhtml+xml"||p==="application/xml"||p==="text/xml"?gi.createHTML(u,i,2):gi.createHTML(u,i,0)}return c(e,this,l)}]}}const{isSharedElement:JS,isAllowedSharedElementChild:QS}=se;function ZS({globalObject:{Element:{prototype:{after:t}},Node:e}}){const n=[t,function(...s){if(JS(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!QS(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot insert ${L} after ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}const{isSharedElement:tg,isAllowedSharedElementChild:eg}=se;function ng({globalObject:{Element:{prototype:{append:t}},Node:e}}){const n=[t,function(...s){if(tg(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!eg(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot append ${L} to ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}function rg({globalObject:{Element:{prototype:{attachShadow:t}}}}){const e=[t,function(...i){if(i.length){const{0:s}=i;if(s!=null){const{mode:l}=s;if(l!=="closed")throw new bt("Shadow root mode cannot be 'open.'");const u=Fe({},s,{mode:l}),p=Ct(s);It(u,p),i[0]=u}}return c(t,this,i)}];return function(){return e}}const Hd=Yt(new kt);function og(t,e){Hd.set(t,e)}function Ud(t,e,n,i){const s=Hd.get(n);if(s){const l=c(ii,i,[]),u=c(No,i,[]),p=ds(u),L=Fr(t,s,l,p);if(L){const E=c(oo,i,[]);return c(L,s,[E])}}return c(e,n,[i])}function ig({globalObject:{Element:t}}){const e=V(t.prototype,"attributes"),n=[e,function(){const s=c(e,this,[]);return og(s,this),s}];return function(){return n}}const{isSharedElement:sg,isAllowedSharedElementChild:ag}=se;function lg({globalObject:{Element:{prototype:{before:t}},Node:e}}){const n=[t,function(...s){if(sg(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!ag(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot insert ${L} before ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}const{isSharedElement:cg}=se;function ug({document:t,globalObject:{Element:e,SVGElement:n,XMLDocument:i}}){const s=de(e.prototype,"innerHTML");return function({key:u}){return[s,function(L){if(!(c(ts,this,[])instanceof i)){if(cg(this))throw new bt(`Cannot set innerHTML of ${c(qt,this,[])}.`);xr(t,u),L=this instanceof n?Od(this,L):zu(L,u)}c(s,this,[L])}]}}const{isSharedElement:fg,isAllowedSharedElementChild:dg}=se;function pg({globalObject:{Element:{prototype:{insertAdjacentElement:t}}}}){const e=[t,function(...i){if(i.length>1){const{1:s}=i;if(fg(this)&&!dg(s))throw new bt(`Cannot insert ${c(qt,s,[])} adjacent to ${c(qt,this,[])}.`)}return c(t,this,i)}];return function(){return e}}const{isSharedElement:hg}=se;function mg({document:t,globalObject:{Element:{prototype:{insertAdjacentHTML:e}}}}){return function({key:i}){return[e,function(...l){if(hg(this))throw new bt(`Cannot insert adjacent HTML to ${c(qt,this,[])}`);l.length>1&&(xr(t,i),l[1]=gi.createHTML(l[1],i,0)),c(e,this,l)}]}}const{isSharedElement:Sg}=se;function gg({document:t,globalObject:{Element:e}}){const n=de(e.prototype,"outerHTML");return function({key:s}){return[n,function(u){if(Sg(this))throw new bt(`Cannot set outerHTML of ${c(qt,this,[])}.`);xr(t,s),c(n,this,[gi.createHTML(u,s,0)])}]}}const{isSharedElement:yg,isAllowedSharedElementChild:Lg}=se;function bg({globalObject:{Element:{prototype:{prepend:t}},Node:e}}){const n=[t,function(...s){if(yg(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!Lg(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot prepend ${L} to ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}const{isSharedElement:$g}=se;function _g({globalObject:{Element:{prototype:{remove:t}}}}){const e=[t,function(){if($g(this))throw new bt(`Cannot remove ${c(qt,this,[])}.`);c(t,this,[])}];return function(){return e}}const{isSharedElement:Eg}=se;function Wg({globalObject:{Element:{prototype:{replaceChildren:t}}}}){const e=[t,function(...i){if(Eg(this))throw new bt(`Cannot replace children of ${c(qt,this,[])}.`);return c(t,this,i)}];return function(){return e}}const{isSharedElement:Tg}=se;function vg({globalObject:{Element:{prototype:{replaceWith:t}}}}){const e=[t,function(...i){if(Tg(this))throw new bt(`Cannot replace ${c(qt,this,[])}.`);return c(t,this,i)}];return function(){return e}}function wg({globalObject:{Element:{prototype:{setAttribute:t}}}}){return function(n){return[t,function(...s){if(s.length>1){const l=xt(s[0]),u=xt(s[1]),p=Fr(n,this,l);if(p){c(p,this,[u]);return}s[0]=l,s[1]=u}c(t,this,s)}]}}function Ag({globalObject:{Attr:t,Element:{prototype:{setAttributeNode:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;if(!(u instanceof t))return c(e,this,l);if(c(Xi,u,[]))return c(e,this,l);const p=c(ii,u,[]),L=c(No,u,[]),E=ds(L),N=Fr(i,this,p,E);if(N){const O=c(Ya,this,[p]);O&&c(ea,this,[O]);const H=c(oo,u,[]);c(N,this,[H]);const J=c(Ya,this,[p]);if(J&&c(ea,this,[J]),O&&c(e,this,[O]),J){const x=c(oo,J,[]);return c(au,u,[x]),c(e,this,[u])}return}return c(e,this,l)}]}}function Cg({globalObject:{Attr:t,Element:{prototype:{setAttributeNodeNS:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;if(!(u instanceof t))return c(e,this,l);if(c(Xi,u,[]))return c(e,this,l);const p=c(ii,u,[]),L=c(No,u,[]),E=ds(L),N=Fr(i,this,p,E);if(N){const O=c(Ja,this,[L,p]);O&&c(ea,this,[O]);const H=c(oo,u,[]);c(N,this,[H]);const J=c(Ja,this,[L,p]);if(J&&c(ea,this,[J]),O&&c(e,this,[O]),J){const x=c(oo,J,[]);return c(au,u,[x]),c(e,this,[u])}return null}return c(e,this,[u])}]}}function Pg({globalObject:{Element:{prototype:{setAttributeNS:t}}}}){return function(n){return[t,function(...s){if(s.length<3){c(t,this,s);return}let{0:l}=s;l!=null&&(l=xt(l));const u=xt(s[1]),p=xt(s[2]),L=ds(l),E=Fr(n,this,u,L);if(E){c(E,this,[p]);return}s[0]=l,s[1]=u,s[2]=p,c(t,this,s)}]}}function Og(){return null}function Rg({globalObject:{Element:t}}){const n=[V(t.prototype,"shadowRoot"),Og];return function(){return n}}function Ng({globalObject:{Element:{prototype:{hasAttribute:t,toggleAttribute:e}}}}){return function(i){return[e,function(...l){const{length:u}=l;if(u>0){const p=xt(l[0]),L=Fr(i,this,p);if(L){const E=u>1?[l[1]]:[];return c(L,this,E),c(t,this,[p])}l[0]=p}return c(e,this,l)}]}}function Dg(){return jd(this)}function jd(t){const e=c(_c,t,[]),{composedPath:n}=Event.prototype,i=c(n,t,[]),s=c(Lo,i,[e]);let l=i;for(let u=s;u>-1;u-=1)if(i[u]instanceof ShadowRoot){l=c(tn,i,[u+1]);break}return l}function Ig({globalObject:{Event:{prototype:{composedPath:t}}}}){const e=[t,Dg];return function(){return e}}function Mg(){return jd(this)}function kg({globalObject:{Event:t}}){const e=V(t.prototype,"path");if(typeof e!="function")return Wt;const n=[e,Mg];return function(){return n}}function xg({globalObject:{EventTarget:{prototype:{addEventListener:t}}}}){return function(n){function i(...s){const{length:l}=s;if(l>1){const u=xt(s[0]);if(xd(n,this,u))throw new bt(OS(this,u));s[0]=u}return c(t,this,s)}return[t,i]}}function Fg({UNCOMPILED_CONTEXT:t,globalObject:{Function:e}}){return function({sandboxEvaluator:i}){return[e,function(...l){const{length:u}=l;if(u){const L=u-1;l[L]=ss(xt(l[L]))}const p=i("(...args) => Function(...args)",t);return c(p,this,l)}]}}function Gg({globalObject:{DOMException:t,History:{prototype:{pushState:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function Hg({globalObject:{DOMException:t,History:{prototype:{replaceState:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function Ug({document:t,globalObject:{HTMLElement:e}}){return function({key:i}){let s;return[e,function l(){if(new.target===void 0)throw new Vt(Nd);if(new.target===l)throw new Vt(Fc);return s===void 0&&(s=hl(t,i)),s.newCtor(this)}]}}function jg({globalObject:{HTMLElement:t}}){const e=V(t.prototype,"dataset"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}const{isSharedElement:Bg}=se;function Vg({globalObject:{HTMLElement:t}}){const e=de(t.prototype,"innerText");if(typeof e!="function")return Wt;const n=[e,function(s){if(Bg(this))throw new bt(`Cannot set innerText of ${c(qt,this,[])}.`);c(e,this,[s])}];return function(){return n}}const{isSharedElement:zg}=se;function Kg({globalObject:{HTMLElement:t}}){const e=de(t.prototype,"outerText");if(typeof e!="function")return Wt;const n=[e,function(s){if(zg(this))throw new bt(`Cannot set outerText of ${c(qt,this,[])}.`);c(e,this,[s])}];return function(){return n}}function qg({globalObject:{HTMLElement:t}}){const e=V(t.prototype,"style"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function Bd(t){const e=Nu(t);if(!hd(e))throw new bt("HTMLIFrameElement.src supports http://, https:// schemes and relative urls.");c(vu,this,[e])}function Xg({globalObject:{HTMLIFrameElement:t}}){const n=[de(t.prototype,"src"),Bd];return function(s){return wn(s,t,"src",qe,Bd),n}}const Yg=/import/i,Vd='HTMLLinkElement does not allow setting "rel" property to "import" value.';function zd(t){return typeof t!="string"||!c(Ce,Yg,[t])}function Jg({globalObject:{HTMLLinkElement:t}}){const e=de(t.prototype,"rel");function n(s){const l=xt(s);if(zd(l)){c(e,this,[l]);return}ri(Vd)}const i=[e,n];return function(l){return wn(l,t,"rel",qe,n),i}}function Qg({globalObject:{DOMTokenList:t,HTMLLinkElement:e}}){const n=de(e.prototype,"relList"),i=[n,function s(l){const u=s instanceof t?c(Lc,l,[]):xt(l);if(zd(u)){c(n,this,[u]);return}ri(Vd)}];return function(){return i}}function Zg({globalObject:{HTMLObjectElement:t}}){const e=de(t.prototype,"data");function n(s){const l=Nu(s);if(!hd(l))throw new bt("HTMLObjectElement.data supports http://, https:// schemes and relative urls.");const u=dl(l);if(!Oc(u))throw new bt(`Cannot request disallowed endpoint: ${u.normalizedURL}`);c(e,this,[l])}const i=[e,n];return function(l){return wn(l,t,"data",qe,n),i}}const Kd=Yt(new kt);function ty(t,e,n){return function(){const s=nn(n),l=`blocked${Qt(n)}Attribute`,{[l]:u}={[l]:()=>{throw new bt(`Attribute ${s} not allowed on ${e}.`)}};return function(L){wn(L,t,n,qe,u)}}}function ey(t,e){const n=V(t,e),i=er(e),s=[n,function(){throw new bt(`Cannot access ${i}.`)}];function l(){return s}return function(){return l}}function ny(t,e){const n=de(t,e),i=er(e),s=[n,function(){throw new bt(`Cannot access ${i}.`)}];function l(){return s}return function(){return l}}function ry(t,e){const{[e]:n}=t,i=er(e),s=[n,function(){throw new bt(`Cannot access ${i}.`)}];function l(){return s}return function(){return l}}function Bc(t,e,n,i){let{length:s}=i;for(let l=0,{length:u}=n;l<u;l+=1)i[s++]=ty(t,e,n[l])}function Mo({document:t},e,n,i){let{length:s}=i,l=Kd.get(t);l===void 0&&(l=Yt(new kt),Kd.set(t,l));let u=l.get(e);u===void 0&&(u={__proto__:null},l.set(e,u));for(let L=0,{length:E}=n;L<E;L+=1){const N=n[L];let O=u[N];if(O===void 0){var p;O=(p=yt(e,N))!=null?p:null,O&&It(O,null),u[N]=O}if(O){const{value:H}=O;if("get"in O||"set"in O){const{get:J,set:x}=O;J&&(i[s++]=ey(e,N)),x&&(i[s++]=ny(e,N))}else typeof H=="function"&&(i[s++]=ry(e,N))}}}const qd=Yt(new kt);function oy(t,e){qd.set(t,e)}function Xd(t){return qd.get(t)}function rf({sandboxEvaluator:t},e){const n=`script${Qt(e)}`,{[n]:i}={[n](s){oy(this,Rc(s));const l=this,u=function(L){const E=c(ts,l,[]),N=c(ta,E,[]),O={[Dn]:N.location,[Lr]:N.top};return L=ss(L),t(L,O,N,E)};gi.createScriptURL(s,u,l)}};return i}function iy({globalObject:{HTMLScriptElement:t}}){const e=V(t.prototype,"src"),n=[e,function(){var s;return(s=Xd(this))!=null?s:c(e,this,[])}];return function(){return n}}function sy({globalObject:{HTMLScriptElement:t}}){const{set:e}=yt(t.prototype,"src");return function(i){const s=rf(i,"src");return wn(i,t,"src",qe,s),[e,s]}}function ay({globalObject:{DOMException:t,IDBObjectStore:{prototype:{add:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function ly({globalObject:{DOMException:t,IDBObjectStore:{prototype:{put:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function cy({globalObject:{JSON:{parse:t}}}){return function({trackAsFastTarget:n}){return[t,function(...s){const{length:l}=s;if(!l)return c(t,this,s);const{0:u}=s,p=l>1?s[1]:void 0,L=typeof p=="function";return c(t,this,[u,function(N,O){return typeof O=="object"&&O!==null&&(n(O),ir(O)),L?c(p,this,[N,O]):O}])}]}}function uy({globalObject:{DOMException:t,MessagePort:e}}){const{postMessage:n}=e.prototype,i=[n,function(...l){try{return c(n,this,l)}catch(u){const{length:p}=l;if(p&&u instanceof t){const L=l[0];if(fn(L))return p>1?l=Rt(l):l[0]=Rt(L),c(n,this,l)}throw u}}];return function(){return i}}function fy({globalObject:{Attr:t,NamedNodeMap:{prototype:{setNamedItem:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;return u&&u instanceof t?Ud(i,e,this,u):c(e,this,l)}]}}function dy({globalObject:{Attr:t,NamedNodeMap:{prototype:{setNamedItemNS:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;return u&&u instanceof t?Ud(i,e,this,u):c(e,this,l)}]}}function py({globalObject:{Navigator:{prototype:{sendBeacon:t}}}}){const e=[t,function(...i){if(i.length){const s=dl(xt(i[0]));if(!Oc(s))throw new bt(`Cannot request disallowed endpoint: ${s.normalizedURL}`);i[0]=s.normalizedURL}return c(t,this,i)}];return function(){return e}}function hy({globalObject:{Navigator:t}}){const e=V(t.prototype,"serviceWorker");if(typeof e!="function")return Wt;const n=[e,Wt];return function(){return n}}const{isSharedElement:my,isAllowedSharedElementChild:Sy}=se;function gy({globalObject:{Node:{prototype:{insertBefore:t}}}}){const e=[t,function(...i){if(i.length){const{0:s}=i;if(my(this)&&!Sy(s))throw new bt(`Cannot insert child ${c(qt,s,[])} into ${c(qt,this,[])},`)}return c(t,this,i)}];return function(){return e}}function yy({globalObject:{Attr:t,Node:e}}){const n=de(e.prototype,"nodeValue");return function(s){return[n,function(u){if(this instanceof t){const p=c(Xi,this,[]);if(p===null){c(n,this,[u]);return}const L=c(ii,this,[]),E=c(No,this,[]),N=ds(E),O=Fr(s,p,L,N);if(O){c(O,p,[u]);return}}c(n,this,[u])}]}}const{isSharedElement:Ly}=se;function by({globalObject:{Node:{prototype:{removeChild:t}}}}){const e=[t,function(...i){if(i.length){const{0:s}=i;if(Ly(s))throw new bt(`Cannot remove ${c(qt,s,[])}.`)}return c(t,this,i)}];return function(){return e}}const{isSharedElement:$y}=se;function _y({globalObject:{Node:{prototype:{replaceChild:t}}}}){const e=[t,function(...i){const{length:s}=i;if(s>1){const{1:l}=i;if($y(l))throw new bt(`Cannot replace ${c(qt,l,[])}.`)}return c(t,this,i)}];return function(){return e}}function Ey({globalObject:{HTMLScriptElement:t,Node:e,SVGScriptElement:n}}){const i=V(e.prototype,"textContent"),s=[i,function(){if(this instanceof t||this instanceof n){var u;return(u=Gh(this))!=null?u:c(i,this,[])}return c(i,this,[])}];return function(){return s}}const{isSharedElement:Wy}=se;function Ty({globalObject:{Attr:t,Node:e,HTMLScriptElement:n,SVGScriptElement:i},root:{distortions:s}}){const{get:l,set:u}=yt(e.prototype,"textContent");let p;return function(E){const{sandboxEvaluator:N}=E;return[u,function(H){const J=xt(H);if(this instanceof t){const x=c(Xi,this,[]);if(x===null){c(u,this,[J]);return}const Z=c(ii,this,[]),st=c(No,this,[]),Pt=ds(st),wt=Fr(E,x,Z,Pt);if(wt){c(wt,x,[J]);return}}else if(this instanceof n||this instanceof i){if(jh(this)||(p===void 0&&(p=s.get(l)),Cu(this,"textContent",p,u)),Bh(this,J),!Hh(this)){Uh(this)||(fl(this,(x,Z,st)=>{xh(this),fe(this,"textContent"),c(u,this,[J]),N(ss(J),x,Z,st)}),c(u,this,[Xt]));return}}else if(Wy(this))throw new bt(`Cannot set textContent of ${c(qt,this,[])} elements.`);c(u,this,[J])}]}}function vy({globalObject:{DOMException:t,Notification:e}}){if(typeof e!="function")return Wt;const n=[e,function(...s){try{return We(e,s)}catch(l){if(s.length>1&&l instanceof t){const u=s[1];if(Qn(u)){const{data:p}=u;if(fn(p))return s[1]={__proto__:u,data:Rt(p)},We(e,s)}}throw l}}];return function(){return n}}function wy({document:t,globalObject:{Range:{prototype:{createContextualFragment:e}}}}){return function({key:i}){return[e,function(...l){if(l.length){const{0:u}=l;u!=null&&(xr(t,i),l[0]=gi.createHTML(u,i,0))}return c(e,this,l)}]}}const{isSharedElement:Ay}=se;function Cy({globalObject:{AbstractRange:t,Range:{prototype:{deleteContents:e}}}}){const{prototype:n}=t??Range,i=V(n,"endContainer"),s=V(n,"startContainer"),l=[e,function(...p){const L=[c(i,this,[]),c(s,this,[])];for(let E=0,{length:N}=L;E<N;E+=1){const O=L[E];if(Ay(O))throw new bt(`Cannot delete contents of ${c(qt,O,[])}.`)}return c(e,this,p)}];return function(){return l}}const{isSharedElement:Py}=se;function Oy({globalObject:{AbstractRange:t,Range:{prototype:{extractContents:e}}}}){const{prototype:n}=t??Range,i=V(n,"endContainer"),s=V(n,"startContainer"),l=[e,function(...p){const L=[c(i,this,[]),c(s,this,[])];for(let E=0,{length:N}=L;E<N;E+=1){const O=L[E];if(Py(O))throw new bt(`Cannot extract contents of ${c(qt,O,[])}.`)}return c(e,this,p)}];return function(){return l}}const{isSharedElement:Ry,isAllowedSharedElementChild:Ny}=se;function Dy({globalObject:{Range:{prototype:{insertNode:t}}}}){const e=V(Range.prototype,"commonAncestorContainer"),n=[t,function(...s){if(s.length){const l=c(e,this,[]);if(l&&Ry(l)&&!Ny(s[0]))throw new bt(`Cannot insert a new child node of ${c(qt,l,[])}.`)}return c(t,this,s)}];return function(){return n}}const{isSharedElement:Iy}=se;function ko(t){return function({globalObject:{Range:{prototype:{[t]:n}}}}){const{[t]:i}={[t](...l){if(l.length){const{0:u}=l;if(Iy(u))throw new bt(`Cannot call ${t} with ${c(qt,u,[])}.`)}return c(n,this,l)}},s=[n,i];return function(){return s}}}const My=ko("setEnd"),ky=ko("selectNode"),xy=ko("selectNodeContents"),Fy=ko("setEndAfter"),Gy=ko("setEndBefore"),Hy=ko("setStart"),Uy=ko("setStartAfter"),jy=ko("setStartBefore"),By=ko("surroundContents");function Vy({globalObject:{ServiceWorkerContainer:t}}){if(typeof t!="function")return Wt;const{prototype:e}=t,n=[e,Tr(e)];return function(){return n}}function zy({document:t,globalObject:{ShadowRoot:e}}){const n=de(e.prototype,"innerHTML");return function({key:s}){return[n,function(u){xr(t,s),c(n,this,[gi.createHTML(u,s,0)])}]}}function Ky(){return"closed"}function qy({globalObject:{ShadowRoot:t}}){const n=[V(t.prototype,"mode"),Ky];return function(){return n}}function Xy(t){throw new bt(`Cannot create SharedWorker with ${er(t)}.`)}function Yy({globalObject:{SharedWorker:t}}){if(typeof t!="function")return Wt;const e=[t,Xy];return function(){return e}}function Jy({globalObject:{SharedWorker:t}}){if(typeof t!="function")return Wt;const{prototype:e}=t,n=[e,Tr(e)];return function(){return n}}function Vc(t,e){const n=vi(t),i=[];let s=0;for(let l=0,{length:u}=n;l<u;l+=1){const p=n[l];Oo(p,e)&&(i[s++]=p)}return i}function Qy(t,e){const{length:n}=t,i=lt(n);for(let s=0;s<n;s+=1){const l=t[s];i[s]=Jl(l,e)}return i}const xo=Yt(new kt);function aa(t){const e=xo.get(t);if(e===void 0)throw new bt(us);return e}function Zy(t){const e=new ln(t,{get(n,i,s){if(typeof i=="symbol")return Ht(n,i,s);const{namespace:l,storage:u}=xo.get(e),p=Nr(i,l);if(ke(u,p))return Ht(u,p);const L=Ct(n);return L===null?void 0:Ht(L,i,s)},set(n,i,s){if(typeof i=="symbol")return Dt(n,i,s);const{namespace:l,storage:u}=xo.get(e),p=Nr(i,l);return c(ld,u,[p,s]),!0},defineProperty(n,i,s){const l=s;if(It(l,null),typeof i=="symbol")return Se(n,i,l);const{namespace:u,storage:p}=xo.get(e),L=Nr(i,u);return Se(p,L,l)},deleteProperty(n,i){if(typeof i=="symbol")return fe(n,i);const{namespace:s,storage:l}=xo.get(e),u=Nr(i,s);return fe(l,u)},getOwnPropertyDescriptor(n,i){let s;if(typeof i=="symbol")s=yt(n,i);else{const{namespace:l,storage:u}=xo.get(e),p=Nr(i,l);s=yt(u,p)}return s&&It(s,null),s},ownKeys(n){const{namespace:i,storage:s}=xo.get(e),l=Vc(s,i),u=Qy(l,i),p=ur(n);return yr(u,p)},has(n,i){if(typeof i=="symbol")return oe(n,i);const{namespace:s,storage:l}=xo.get(e),u=Nr(i,s);if(ke(l,u))return!0;const p=Ct(n);return p===null?!1:oe(p,i)},preventExtensions(n){return!1}});return e}class of{constructor(){throw new bt(Fc)}get length(){const{namespace:e,storage:n}=aa(this);return Vc(n,e).length}key(...e){const{namespace:n,storage:i}=aa(this);if(e.length){const s=Vc(i,n),l=e[0],u=s[l],p=s[0],L=u||p;return typeof L!="string"?null:Jl(L,n)}return c(em,i,e)}getItem(...e){const{namespace:n,storage:i}=aa(this);return e.length&&(e[0]=Nr(xt(e[0]),n)),c(nm,i,e)}setItem(...e){const{namespace:n,storage:i}=aa(this);e.length>1&&(e[0]=Nr(xt(e[0]),n),e[1]=xt(e[1])),c(ld,i,e)}removeItem(...e){const{namespace:n,storage:i}=aa(this);e.length&&(e[0]=Nr(xt(e[0]),n)),c(ad,i,e)}clear(){const{namespace:e,storage:n}=aa(this),i=Vc(n,e);for(let s=0,{length:l}=i;s<l;s+=1){const u=i[s];c(ad,n,[u])}}}function tL(t,e){const n=Zy({__proto__:of.prototype});return ir(n),xo.set(n,{namespace:e,storage:t}),n}const{prototype:Yd}=of,{clear:eL,getItem:nL,key:rL,removeItem:oL,setItem:iL}=Yd,sL=V(Yd,"length");function Jd(t){return function({globalObject:n}){let i;try{i=n[t]}catch(s){}return fn(i)?function({key:l}){return[i,tL(i,l)]}:Wt}}function aL({globalObject:{Storage:t}}){const n=[V(t.prototype,"length"),sL];return function(){return n}}function lL({globalObject:{Storage:{prototype:{getItem:t}}}}){const e=[t,nL];return function(){return e}}function cL({globalObject:{Storage:{prototype:{setItem:t}}}}){const e=[t,iL];return function(){return e}}function uL({globalObject:{Storage:{prototype:{key:t}}}}){const e=[t,rL];return function(){return e}}function fL({globalObject:{Storage:{prototype:{removeItem:t}}}}){const e=[t,oL];return function(){return e}}function dL({globalObject:{Storage:{prototype:{clear:t}}}}){const e=[t,eL];return function(){return e}}function pL({globalObject:{Storage:t}}){const e=[t,of];return function(){return e}}const hL=Jd("localStorage"),mL=Jd("sessionStorage");function SL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){return function(i){function s(l,u){if(c(ui,l,[u])){const p=c(hn,l,[u]);if(p){const L=Fr(i,l,u);L&&c(L,l,[p])}}}wn(i,e,"attributeName",qe,function(u){c(t,this,["attributeName",u]),u==="href"&&(s(this,"from"),s(this,"to"),s(this,"values"))})}}function gL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){function n(i){c(hn,this,["attributeName"])==="href"&&(i=ls(i)),c(t,this,["from",i])}return function(s){wn(s,e,"from",qe,n)}}function yL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){function n(i){c(hn,this,["attributeName"])==="href"&&(i=ls(i)),c(t,this,["to",i])}return function(s){wn(s,e,"to",qe,n)}}function LL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){function n(i){let s=i;if(c(hn,this,["attributeName"])==="href"){const l=c(Zr,i,[";"]),{length:u}=l;for(let p=0;p<u;p+=1)l[p]=ls(l[p]);s=c(Ai,l,[";"])}c(t,this,["values",s])}return function(s){wn(s,e,"values",qe,n)}}function bL({globalObject:{SVGElement:t}}){const e=V(t.prototype,"dataset"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function $L({globalObject:{SVGElement:t}}){const e=V(t.prototype,"style"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function _L({globalObject:{SVGScriptElement:t}}){const e=V(t.prototype,"href"),n=[e,function(){var s;return(s=Xd(this))!=null?s:c(e,this,[])}];return function(){return n}}function EL({globalObject:{SVGScriptElement:t}}){return function(n){wn(n,t,"href",is,rf(n,"href")),wn(n,t,"xlink:href",is,rf(n,"xlink:href"))}}function WL({globalObject:{Element:{prototype:{setAttribute:t}},SVGSetElement:e}}){return function(i){function s(u,p){if(c(ui,u,[p])){const L=c(hn,u,[p]);if(L){const E=Fr(i,u,p);E&&c(E,u,[L])}}}function l(u){c(t,this,["attributeName",u]),u==="href"&&s(this,"to")}wn(i,e,"attributeName",qe,l)}}function TL({globalObject:{Element:{prototype:{setAttribute:t}},SVGSetElement:e}}){function n(i){c(hn,this,["attributeName"])==="href"&&(i=ls(i)),c(t,this,["to",i])}return function(s){wn(s,e,"to",qe,n)}}function Qd(t){return function({globalObject:{Element:{prototype:{setAttribute:n,setAttributeNS:i}},SVGUseElement:s}}){function l(u){const p=u==null||u===""?u:ls(u);c(i,this,[is,t,p])}return function(p){wn(p,s,t,is,l),t==="href"&&wn(p,s,t,qe,function(N){const O=N==null||N===""?N:ls(N);c(n,this,[t,O])})}}}const vL=Qd("href"),wL=Qd("xlink:href");function AL({globalObject:{TrustedTypePolicyFactory:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.createPolicy;if(typeof n!="function")return Wt;const i=[n,function(...l){const u=l.length?l[0]:void 0;if(u==="default")throw new bt(`Cannot create TrustedTypePolicy with '${u}' policy name.`);return c(n,this,l)}];return function(){return i}}const CL=zo(["text/html","image/svg+xml","text/xml"]);function PL({document:t,globalObject:e,globalObject:{MediaSource:n,URL:{createObjectURL:i}}}){const{isEqualDomString:s}=yu(t,e);return function({key:u}){const p=Xm(u);return[i,function(E){let N=c(i,this,[E]);if(n&&E instanceof n)return N;const O=c(Lu,E,[]);if(O===""){const J=c(pc,E,[0,void 0,"text/plain"]);return c(i,this,[J])}const H=c(Mn,O,[]);if(CL.includes(H)){const J=c(ns,E,[]),x=c(pc,E,[0,J,`${H};charset=utf-8`]);Y(N),N=c(i,this,[x]);const Z=new Ou;c(cd,Z,["GET",N,!1]),c(ud,Z,[]);const st=c(fd,Z,[]),Pt=p.sanitize(st);if(!s(st,Pt))throw Y(N),new bt(`Cannot 'createObjectURL' using a unsecure ${er(E)}.`);return N}if(im(H))return N;throw Y(N),new bt("Unsupported MIME type.")}]}}function OL({globalObject:{fetch:t}}){const e=[t,function(...i){let{0:s}=i;if(s!=null){let l;if(s instanceof Request?l=dl(c(Au,s,[])):(l=dl(xt(s)),s=l.normalizedURL,i[0]=s),!Oc(l)){const{normalizedURL:u}=l;return Ro(new bt(`Cannot request disallowed endpoint: ${er(u)}`))}}return c(t,this,i)}];return function(){return e}}class sf{defineProperty(e,n,i){return!0}deleteProperty(e,n){return!0}getOwnPropertyDescriptor(e,n){}isExtensible(e){return!0}ownKeys(e){return[]}preventExtensions(e){return!0}set(e,n,i,s){return!0}setPrototypeOf(e){return!1}}It(sf.prototype,null);class Zd extends sf{}function RL({globalObject:t}){const e=V(t,"frames");if(typeof e!="function")return Wt;const n=()=>{const l=Ct(t),u=Ct(l),p=c(tr,es,[t]),L=c(tr,Wt,[]),E=Mt=>{const K=typeof Mt=="string"?+Mt:-1;if(K>-1&&Ra(K)&&K<c(es,t,[])){const it=k(t,Mt);if(rl(it))return it}},N=Mt=>{if(typeof Mt=="string"&&!ke(t,Mt)&&!ke(l,Mt)){const K=k(u,Mt);if(rl(K))return K}},O=Mt=>Mt==="length"?c(es,t,[]):E(Mt);class H extends sf{get(K,it,Tt){const Nt=O(it);return Nt===void 0?Ht(K,it,Tt):Nt}getOwnPropertyDescriptor(K,it){if(it==="length")return{__proto__:null,configurable:!0,enumerable:!0,get:p,set:L};const Tt=E(it);if(Tt)return{__proto__:null,configurable:!0,enumerable:!0,value:Tt,writable:!1}}has(K,it){return oe(K,it)||O(it)!==void 0}ownKeys(){const{length:K}=t,it=lt(K+1);for(let Tt=0;Tt<K;Tt+=1)it[Tt]=`${Tt}`;return it[K]="length",it}}class J extends Zd{get(K,it,Tt){const Nt=N(it);return Nt===void 0?Ht(K,it,Tt):Nt}getOwnPropertyDescriptor(K,it){const Tt=N(it);return Tt===void 0?Tt:{__proto__:null,configurable:!0,enumerable:!0,value:Tt,writable:!1}}has(K,it){return oe(K,it)||N(it)!==void 0}ownKeys(){const K=[];let it=0;const Tt=Fn(u);It(Tt,null);for(const Nt in Tt)if(typeof Nt=="string"){const Gt=Tt[Nt];ke(Gt,"value")&&rl(Gt.value)&&(K[it++]=Nt)}return K}}const x={},Z={},st={},Pt=new H,wt=new Zd,$t=new J,U=new ln(Z,wt),z=new ln(st,$t);return It(x,U),It(Z,z),new ln(x,Pt)};let i;const s=[e,function(){return i===void 0&&(i=n()),i}];return function(){return s}}function NL({globalObject:{getComputedStyle:t}}){const e=[t,function(...i){return ir(c(t,this,i))}];return function(){return e}}function DL(){return 0}function IL({globalObject:t}){const e=V(t,"length");if(typeof e!="function")return Wt;const n=[e,DL];return function(){return n}}function ML({globalObject:t,globalObject:{Window:e}}){return jc(t,e,"securitypolicyviolation")}function kL({globalObject:t,globalObject:{Window:e}}){return jc(t,e,"storage")}function xL({globalObject:{open:t}}){const e=[t,function(...i){const s=Gd(i);return c(t,this,s)}];return function(){return e}}function tp({globalObject:{postMessage:t}}){const e=[t,function(...i){try{return c(t,this,i)}catch(s){const{length:l}=i;if(l){const u=i[0];if(fn(u)){const p=l>1?i[1]:void 0;if(Qn(p)){const{transfer:L}=p;i[1]={__proto__:p,transfer:L},i=Rt(i)}else i[0]=Rt(u);return c(t,this,i)}}throw s}}];return function(){return e}}function FL({UNCOMPILED_CONTEXT:t,globalObject:{setInterval:e}}){return function({sandboxEvaluator:i}){return[e,function(...l){if(l.length){const{0:u}=l;if(u!=null&&typeof u!="function"){const p=xt(u);let L;l[0]=()=>{L===void 0&&(L=ss(p)),i(L,t)}}}return c(e,this,l)}]}}function GL({UNCOMPILED_CONTEXT:t,globalObject:{setTimeout:e}}){return function({sandboxEvaluator:i}){return[e,function(...l){if(l.length){const{0:u}=l;if(u!=null&&typeof u!="function"){const p=xt(u);l[0]=()=>{i(ss(p),t)}}}return c(e,this,l)}]}}function HL({globalObject:{DOMException:t,structuredClone:e}}){if(typeof e!="function")return Wt;const n=[e,function(...s){try{return c(e,this,s)}catch(l){const{length:u}=s;if(u&&l instanceof t){const p=s[0];if(fn(p)){const L=u>1?s[1]:void 0;if(Qn(L)){const{transfer:E}=L;s[1]={__proto__:L,transfer:E},s=Rt(s)}else s[0]=Rt(p);return c(e,this,s)}}throw l}}];return function(){return n}}function UL(t){throw new bt(`Cannot create Worker with ${er(t)}.`)}function jL({globalObject:{Worker:t}}){const e=[t,UL];return function(){return e}}function BL({globalObject:{Worker:{prototype:t}}}){const e=[t,Tr(t)];return function(){return e}}function VL({globalObject:{XMLHttpRequest:{prototype:{open:t}}}}){const e=[t,function(...i){const s=i.length>1?i[1]:void 0;if(s!=null){const l=dl(xt(s));if(!Oc(l))throw new bt(`Cannot request disallowed endpoint: ${l.normalizedURL}`);i[1]=l.normalizedURL}c(t,this,i)}];return function(){return e}}function zL({document:t,globalObject:{Document:e,XMLHttpRequest:n}}){const i=V(n.prototype,"response");return function({key:l}){return[i,function(){const p=c(i,this,[]);return xr(t,l),p instanceof e?Cd(p,l):p}]}}function KL({document:t,globalObject:{XMLHttpRequest:e}}){const n=V(e.prototype,"responseXML");return function({key:s}){return[n,function(){const u=c(n,this,[]);return xr(t,s),Cd(u,s)}]}}const ep=[DS,jS,zS,KS,rg,ig,_g,Wg,vg,Fg,Gg,Hg,jg,Vg,Kg,qg,Xg,Jg,Qg,Zg,iy,ay,ly,uy,py,hy,by,_y,vy,Cy,Oy,Dy,ky,xy,My,Fy,Gy,Hy,Uy,jy,By,Vy,qy,Yy,Jy,pL,dL,lL,uL,aL,fL,cL,gL,yL,LL,bL,$L,TL,vL,wL,AL,OL,RL,NL,IL,ML,kL,xL,tp,HL,jL,BL,VL],np=[yS,LS,bS,$S,_S,ES,WS,vS,wS,AS,RS,NS,xS,FS,GS,HS,VS,XS,YS,IS,MS,kS,ug,mg,gg,wg,Ag,Cg,Pg,Ng,Ig,kg,xg,Ug,sy,cy,fy,dy,yy,Ey,Ty,wy,zy,hL,mL,SL,_L,EL,WL,PL,FL,GL,zL,KL],qL=yr(ep,[ZS,ng,lg,pg,bg,Rg,gy]),XL=np,YL=["createProcessingInstruction","exitFullscreen","fullscreen","fullscreenElement","fullscreenEnabled","mozCancelFullScreen","mozFullScreen","mozFullScreenElement","mozFullScreenEnabled","onfullscreenchange","onfullscreenerror","onmozfullscreenchange","onmozfullscreenerror","onrejectionhandled","onunhandledrejection","releaseCapture","releaseEvents","webkitFullScreenKeyboardInputAllowed","write","writeln"],JL=["mozRequestFullScreen","onfullscreenchange","onfullscreenerror","requestFullscreen","webkitRequestFullScreen","webkitRequestFullscreen"];function QL({UNCOMPILED_CONTEXT:t,globalObject:{eval:e}}){return function({sandboxEvaluator:i}){return[e,s=>i(ss(xt(s)),t)]}}const ZL=["nonce"],tb=["nonce","onrejectionhandled","onunhandledrejection"],eb=["getSVGDocument"],nb=["allowpaymentrequest","referrerpolicy","srcdoc"],rb=["allowPaymentRequest","csp","featurePolicy","getSVGDocument","referrerPolicy","srcdoc"],ob=["getSVGDocument"],ib=["nonce"],sb=["nonce"],ab=["nonce"],lb=["nonce"],cb=["transformToDocument","transformToFragment"],rp=Yt(new kt),op=Yt(new kt),ip=Yt(new kt),ub=!al;function sp(t,e){const n=[];for(let i=0,{length:s}=e;i<s;i+=1){const l=e[i],u=l(t);if(u){const{0:p,1:L}=u;typeof p=="function"?n[n.length]=[p,lf(t,l,L,p)]:typeof p=="object"&&p!==null&&(n[n.length]=u)}}return n}function af(t){return ub?Yt(new kt(t)):Vn(new dn(t))}function ap(t){const{document:e,globalObject:n,type:i}=t;let s=rp.get(e);if(s)return s;const{Document:l,Element:u,HTMLElement:p,HTMLIFrameElement:L,HTMLScriptElement:E,SVGElement:N,XSLTProcessor:O}=n,H=i===1?yr(ep,np):yr(qL,XL);Bc(p,"HTMLElement",ZL,H),Bc(L,"HTMLIFrameElement",nb,H),Bc(E,"HTMLScriptElement",ib,H),Bc(N,"SVGElement",ab,H),Mo(t,l.prototype,YL,H),Mo(t,u.prototype,JL,H),Mo(t,p.prototype,tb,H),Mo(t,L.prototype,rb,H),Mo(t,HTMLEmbedElement.prototype,eb,H),Mo(t,HTMLObjectElement.prototype,ob,H),Mo(t,E.prototype,sb,H),Mo(t,N.prototype,lb,H),typeof O=="function"&&Mo(t,O.prototype,cb,H),SS(e,n),s=H;for(let J=0,{length:x}=s;J<x;J+=1)s[J]=H[J](t);return s[s.length]=gS,rp.set(e,s),s}function fb(t){const{document:e}=t;let n=op.get(e);return n||(n=QL(t),op.set(e,n),n)}function db(t){const{globalObject:e}=t;let n=ip.get(e);return n||(n=tp(t),ip.set(e,n),n)}function lf({BASIC_INSTRUMENTATION_DATA:t,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:e,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:n,instrumentation:i,key:s},l,u,p){let L,E;if(n){({startActivity:E}=i);const{name:N}=l;L=N?c(ne,N,[Nn,""]):"<unknown>"}return jn(u,p,{apply:function(N,O,H){let J;n&&(J=E(L,t));try{return c(N,O,H)}catch(x){throw e&&J.error({sandboxKey:s,error:x}),x}finally{n&&J.stop()}},construct:function(N,O,H){let J;n&&(J=E(L,t));try{return We(N,O,H)}catch(x){throw e&&J.error({sandboxKey:s,error:x}),x}finally{n&&J.stop()}}})}let cf,uf;function ff(){const t=cf;return cf=void 0,t}function lp(){const t=uf;return uf=void 0,t}function df(t){cf=t}function cp(t){uf=t}const pb="lws-core-sandbox",up={[Wr]:{__proto__:null,get(){return ff()}},[Qr]:{__proto__:null,get(){return lp()}}},hb=af(),Xe={},mb={[Dn]:tl,[Lr]:sc},{apply:Jt,defineProperty:pf,deleteProperty:ml,getPrototypeOf:la,ownKeys:Sl,setPrototypeOf:yi}=Reflect,fp=Object,{assign:gl,freeze:Sb,keys:dp,prototype:pp}=fp,{hasOwn:hp}=fp,{__lookupGetter__:gb,__lookupSetter__:F_,hasOwnProperty:yb}=pp,Lb=typeof hp=="function"?hp:function(e,n){return Jt(yb,e,[n])},{toString:bb}=pp;function mp(t){return typeof t=="object"&&t!==null}function Fo(t,e){return t==null||!Lb(t,e)?void 0:Jt(gb,t,[e])}const $b=Symbol,{for:yl,iterator:zc,toStringTag:ca,unscopables:Sp}=$b,Ll=Array,{prototype:bl}=Ll,{at:_b,concat:Eb,copyWithin:Wb,entries:Tb,every:vb,fill:wb,findIndex:Ab,flat:Cb,flatMap:Pb,forEach:Ob,indexOf:Rb,join:Nb,keys:Db,lastIndexOf:Ib,map:Mb,pop:kb,reduce:xb,reduceRight:Fb,reverse:Gb,slice:Hb,some:Ub,splice:jb,toLocaleString:Bb,toString:Vb,values:zb,[zc]:Kb}=bl,qb=Sb(gl({__proto__:null},bl[Sp])),{filter:gp,find:yp,includes:hf,shift:Xb,sort:Lp,unshift:bp}=bl,{push:$l}=bl,{isArray:_l}=Ll;function Yb(t){return yi(t,null),t.at=_b,t.concat=Eb,t.copyWithin=Wb,t.entries=Tb,t.every=vb,t.fill=wb,t.filter=gp,t.find=yp,t.findIndex=Ab,t.flat=Cb,t.flatMap=Pb,t.forEach=Ob,t.includes=hf,t.indexOf=Rb,t.join=Nb,t.keys=Db,t.lastIndexOf=Ib,t.map=Mb,t.pop=kb,t.push=$l,t.reduce=xb,t.reduceRight=Fb,t.reverse=Gb,t.shift=Xb,t.slice=Hb,t.some=Ub,t.sort=Lp,t.splice=jb,t.toLocaleString=Bb,t.toString=Vb,t.unshift=bp,t.values=zb,t[zc]=Kb,t[Sp]=qb,yi(t,bl),t}Fo(ArrayBuffer.prototype,"byteLength");const Jb=`${function t(){return t.name}()}`.includes("LOCKER_UNMINIFIED_FLAG"),Kc="\u2026",$p=yl("@@lockerNearMembraneSerializedValue"),_p=yl("@@lockerNearMembrane");yl("@@lockerLiveValue");const Ep="[object BigInt]",Qb="[object Boolean]",Zb="[object Number]",Wp="[object String]",mf="[object Symbol]",Tp=Map,{prototype:qc}=Tp,{clear:t$,delete:e$,forEach:n$,get:r$,has:o$,keys:i$,values:s$,[zc]:a$,[ca]:l$}=qc,{entries:c$,set:u$}=qc,f$=Fo(qc,"size");function d$(t){return yi(t,null),t.clear=t$,t.delete=e$,t.entries=c$,t.forEach=n$,t.get=r$,t.has=o$,t.keys=i$,t.set=u$,pf(t,"size",{__proto__:null,configurable:!0,enumerable:!0,get:f$,set:void 0}),t.values=s$,t[zc]=a$,t[ca]=l$,yi(t,qc),t}const p$=Number,{isFinite:h$,isInteger:m$}=p$,S$=RegExp,{prototype:vp}=S$,{test:g$}=vp;Fo(vp,"source");const y$=Set,{prototype:L$}=y$;Fo(L$,"size");const El=String,{prototype:b$}=El,{slice:Sf,valueOf:G_}=b$,gf=WeakMap,{prototype:yf}=gf,{has:$$}=yf,{delete:_$,get:E$,set:W$,[ca]:T$}=yf;function Lf(t){return yi(t,null),t.delete=_$,t.get=E$,t.has=$$,t.set=W$,t[ca]=T$,yi(t,yf),t}const wp=WeakSet,{prototype:bf}=wp,{has:v$}=bf,{add:w$,delete:A$,[ca]:C$}=bf;function P$(t){return yi(t,null),t.add=w$,t.delete=A$,t.has=v$,t[ca]=C$,yi(t,bf),t}const{stringify:O$}=JSON;function R$(t){if(typeof t=="object"&&t!==null||typeof t=="function")return $p in t?void 0:t[$p]}function N$(t){return typeof t=="object"&&t!==null||typeof t=="function"?!(_p in t)&&t[_p]===!0:!1}d$(new Tp);const D$=Error,Xc=TypeError;function Oe(){}const{min:Ap}=Math,Wl=window,{navigator:I$,navigator:{userAgentData:$f}}=Wl,_f=$f==null?void 0:$f.brands,M$=/ (?:Headless)?Chrome\/\d+/;let Ef;function k$(){return Ef===void 0&&(Ef=I$.userAgent),Ef}const Cp=_l(_f)&&_f.length?Jt(yp,_f,[t=>(t==null?void 0:t.brand)==="Chromium"])!==void 0:Jt(g$,M$,[k$()]),x$=Cp&&$f===void 0,{prototype:Pp}=Document,{close:F$,createElement:G$,open:H$}=Pp,U$=Fo(Pp,"body");Fo(DOMException.prototype,"code");const{remove:j$,setAttribute:B$}=Element.prototype,V$=Fo(HTMLElement.prototype,"style"),z$=Fo(HTMLIFrameElement.prototype,"contentWindow"),{prototype:Op}=Node,{appendChild:K$}=Op,q$=Fo(Op,"lastChild");if(Jb){let t=!0;const e=yl("@@lockerDebugMode"),n=100,i=5,s=100,l=s/2,u="display: inline-block; margin-bottom: 3px; margin-left: -3px; word-break: break-all; word-wrap: wrap;",p={style:"margin-left:11px; margin-bottom: 3px;"},L={style:"display: inline-block; margin-left:12px; word-break: break-all; word-wrap: wrap;"},E={style:"color: #9d288c; font-weight: bold"},N={style:"color: #b17ab0"},O={style:"color: #16239f"},H={style:"color: #236d25"},J={style:"color: #606367"},x={style:"color: #b82619"},Z=function(U){if(U==null)return["span",J,`${U}`];if(typeof U=="boolean")return["span",O,U];if(typeof U=="number")return h$(U)?["span",O,U]:["span",O,`${U>=0?"":"-"}Infinity`];if(typeof U=="string"){let z=U;const{length:Mt}=z;if(Mt>s){const K=Jt(Sf,z,[0,l]),it=Jt(Sf,z,[Mt-l-1,Mt]);z=K+Kc+it}return["span",x,O$(z)]}return _l(U)?["span",{},`Array(${U.length})`]:mp(U)?["span",{},`{${Kc}}`]:["span",x,El(U)]},st=function(U,z){const Mt=z==null?void 0:z.isChildElement,K=[];let it=0;Mt&&(K[it++]=["span",E,z.childKey],K[it++]=["span",{},": "]);const Tt=Jt(bb,U,[]);let Nt=dp(U);if(Tt===mf)Jt(hf,Nt,["description"])||Jt(bp,Nt,["description"]);else if(Tt===Wp){const{length:ce}=U;Nt=Jt(gp,Nt,[on=>{const Sn=typeof on=="string"?+on:-1;return Sn<0||Sn>=ce||!m$(Sn)}])}const{length:Gt}=Nt;if(_l(U)){K[it++]=["span",Mt?J:{},`(${U.length}) [`];for(let ce=0,on=Ap(Gt,n);ce<on;ce+=1){const Sn=Nt[ce],Le=U[Sn];K[it++]=["span",{},ce?", ":""],K[it++]=Z(Le)}return Gt>n&&(K[it++]=["span",null,["span",{},`, ${Kc}`]]),K[it++]=["span",{},"]"],K}let mn,he="{";switch(Tt){case Ep:case Qb:case Zb:case Wp:case mf:{let ce=O;Tt===Ep?ce=H:Tt===mf&&(ce=x),he=`${Jt(Sf,Tt,[8,-1])} {`,mn=["span",ce,`${El(R$(U))}`];break}}K[it++]=["span",{},he],mn&&(K[it++]=mn,Gt&&(K[it++]=["span",{},", "]));for(let ce=0,on=Ap(Gt,i);ce<on;ce+=1){const Sn=Nt[ce],Le=U[Sn];K[it++]=["span",{},ce?", ":""],K[it++]=["span",J,Sn],K[it++]=["span",{},": "],K[it++]=Z(Le)}return Gt>i&&(K[it++]=["span",null,["span",{},`, ${Kc}`]]),K[it++]=["span",{},"}"],K},Pt=function(U){const z=dp(U),Mt=Sl(U);_l(U)||Jt(Lp,Mt,[]);const K=[];let it=0;for(let Tt=0,{length:Nt}=Mt;Tt<Nt;Tt+=1){const Gt=Mt[Tt],mn=U[Gt];if(mp(mn))K[it++]=["div",{},["object",{object:mn,config:{childKey:El(Gt),isChildElement:!0}}]];else{let he=E;(typeof Gt=="symbol"||!Jt(hf,z,[Gt]))&&(he=N),K[it++]=["div",p,["span",he,El(Gt)],["span",{},": "],Z(mn)]}}return K};let{devtoolsFormatters:wt}=Wl;_l(wt)||(wt=[],pf(Wl,"devtoolsFormatters",{__proto__:null,configurable:!0,value:wt,writable:!0})),wt[wt.length]={header($t,U){if(t&&(t=!1,pf(Wl,e,{__proto__:null,configurable:!0,value:!0,writable:!0})),!N$($t))return null;const z=["div",{style:`${u}${U!=null&&U.isChildElement?"":"font-style: italic;"}`}];return Jt($l,z,st($t,U)),["div",{},z]},hasBody(){return!0},body($t){const U=["div",L];return Jt($l,U,Pt($t)),U}}}const Rp=Lf(new gf);function Np(t){var e,n,i,s,l;const u=Array,p=ArrayBuffer,L=Error,E=Number,N=Object,O=Proxy,H=Reflect,J=RegExp,x=String,Z=Symbol,st=TypeError,Pt=WeakMap,wt=WeakSet,{for:$t,toStringTag:U}=Z,{apply:z,construct:Mt,defineProperty:K,deleteProperty:it,get:Tt,getOwnPropertyDescriptor:Nt,getPrototypeOf:Gt,has:mn,isExtensible:he,ownKeys:ce,preventExtensions:on,set:Sn,setPrototypeOf:Le}=H,{assign:Tl,defineProperties:ua,freeze:hs,getOwnPropertyDescriptor:Re,getOwnPropertyDescriptors:ms,isFrozen:xe,isSealed:fa,keys:me,prototype:sn,seal:Ss}=N,{hasOwnProperty:da,propertyIsEnumerable:Li,toString:Go}=sn,{hasOwn:Gr}=N,{__defineGetter__:Hr,__defineSetter__:gs,__lookupGetter__:Ur,__lookupSetter__:jr}=sn,uo=typeof Gr=="function"?Gr:(St,Qe)=>z(da,St,[Qe]),An=(e=(n=t??(typeof globalThis!="undefined"?globalThis:void 0))!=null?n:typeof self!="undefined"?self:void 0)!=null?e:(K(sn,"globalThis",{__proto__:null,configurable:!0,get(){return it(sn,"globalThis"),this!=null?this:self}}),globalThis),mt=typeof t!="object"||t===null,Ne=!mt,vl=Ne?$t("@@lockerDebugMode"):void 0,ys="$LWS",ar=Ne?$t("@@lockerNearMembraneSerializedValue"):void 0,Yn=Ne?$t("@@lockerNearMembrane"):void 0,vt=$t("@@lockerNearMembraneUndefinedValue"),bi=20,$i=`${function St(){return St.name}()}`.includes("LOCKER_UNMINIFIED_FLAG"),Ho=$i&&Ne,fo="Illegal property access.",pa=mt?/\w*$/:void 0;let De;const Uo=typeof BigInt=="function",{isArray:gn}=u,{includes:po,indexOf:Ls,slice:Br}=u.prototype,{isView:ha}=p,wl=Uo?BigInt.prototype.valueOf:void 0,{valueOf:Ie}=Boolean.prototype,{toString:ho}=L.prototype,{bind:$e,toString:yn}=Function.prototype,{stringify:Vr}=JSON,{isInteger:lr}=E,{valueOf:xn}=E.prototype,{revocable:Of}=O,{prototype:mo}=J,{exec:Al,test:Qc,toString:zr}=mo,Cl=mt?(i=z(Ur,mo,["flags"]))!=null?i:function(){const Qe=z(zr,this,[]);return z(Al,pa,[Qe])[0]}:void 0,Zc=z(Ur,mo,["source"]),{replace:tu,slice:eu,valueOf:bs}=x.prototype,{toString:Kr,valueOf:nu}=Z.prototype,Pl=(s=An.BigInt64Array)==null?void 0:s.prototype,Ol=(l=An.BigUint64Array)==null?void 0:l.prototype,{prototype:ru}=Float32Array,{prototype:Rf}=Float64Array,{prototype:_t}=Int8Array,{prototype:w}=Int16Array,{prototype:X}=Int32Array,{prototype:at}=Uint8Array,{prototype:Kt}=Uint16Array,{prototype:Ln}=Uint32Array,Ye=at.__proto__,Je=z(Ur,Ye,["length"]),{prototype:$s}=Pt,{delete:an,has:Rl,set:ou,[U]:Xp}=$s,{prototype:Yp}=wt,{add:E_,has:W_,delete:T_,[U]:v_}=Yp,Nf=Ne&&typeof console=="object"&&console!==null?console:void 0,w_=Nf==null?void 0:Nf.info,A_=mt?eval:void 0;let Jp=!1,Qp=!1;function Be(){return!1}const Zp=$i?()=>{if(Jp)return;Jp=!0;const St=(()=>{try{var cr;L.prepareStackTrace=(nt,Zt)=>Zt;const qr=new L().stack;return it(L,"prepareStackTrace"),gn(qr)&&qr.length>0?(cr=qr[0])==null?void 0:cr.constructor:void 0}catch(qr){}})();if(typeof St!="function")return;const{getEvalOrigin:Qe,getFunctionName:Nl,toString:iu}=St.prototype,Dl=new J(`${z(tu,ys,[/[\\^$.*+?()[\]{}|]/g,"\\$&"])}(?=\\.|$)`),Il=function(qr,nt){let Zt="";try{Zt=z(ho,qr,[])}catch(_i){Zt="<error>"}let ue=!1;for(let _i=0,{length:Ei}=nt;_i<Ei;_i+=1){const ae=nt[_i],ma=z(Nl,ae,[]);let _s=!1;if(typeof ma=="string"&&ma!=="eval"&&z(Qc,Dl,[ma])&&(_s=!0),!_s){const Cn=z(Qe,ae,[]);typeof Cn=="string"&&z(Qc,Dl,[Cn])&&(_s=!0)}if(_s){ue||(ue=!0,Zt+=` |
| | | at LWS`);continue}else ue=!1;try{Zt+=` |
| | | at ${z(iu,ae,[])}`}catch(Cn){}}return Zt};try{L.prepareStackTrace=function(qr,nt){return Il(qr,nt)}}catch(cr){}try{const{stackTraceLimit:cr}=L;(typeof cr!="number"||cr<bi)&&(L.stackTraceLimit=bi)}catch(cr){}}:Bt;function Bt(){}const th=mt?St=>z(wl,St,[]):Bt,eh=mt?St=>z(Ie,St,[]):Bt,nh=mt?St=>z(xn,St,[]):Bt,rh=mt?St=>{if(St!==mo){const Qe=z(Zc,St,[]);return Vr({__proto__:null,flags:z(Cl,St,[]),source:Qe})}}:Bt,oh=mt?St=>z(bs,St,[]):Bt,ih=mt?St=>z(nu,St,[]):Bt,C_=mt?St=>{switch(z(Go,St,[])){case"[object Boolean]":return eh(St);case"[object Number]":return nh(St);case"[object RegExp]":return rh(St);case"[object String]":return oh(St);case"[object Object]":try{return ih(St)}catch(Nl){}if(Uo)try{return th(St)}catch(Nl){}default:return}}:Bt,P_=mt?St=>{try{return ih(St)}catch(Qe){}if(Uo)try{return th(St)}catch(Qe){}try{return eh(St)}catch(Qe){}try{return nh(St)}catch(Qe){}try{return rh(St)}catch(Qe){}try{return oh(St)}catch(Qe){}}:Bt;function O_(St){if(typeof St=="string")return St;try{if(typeof St=="object"&&St!==null){const Qe=z(Go,St,[]);return Qe==="[object Symbol]"?z(Kr,St,[]):Qe}return typeof St=="function"?z(yn,St,[]):x(St)}catch(Qe){}return"[Object Unknown]"}function sh(St){return Le(St,null),St.delete=an,St.has=Rl,St.set=ou,St[U]=Xp,Le(St,$s),St}function R_(St){return Le(St,null),St.add=E_,St.delete=T_,St.has=W_,St[U]=v_,Le(St,Yp),St}return function(Qe,Nl,iu){mt&&(iu=void 0);const{distortionCallback:Dl,instrumentation:Il,liveTargetCallback:cr,revokedProxyCallback:qr}=Tl({__proto__:null},iu),nt=Ne&&typeof Il=="object"&&Il!==null,Zt={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},ue={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},_i=sh(new Pt),Ei=sh(new Pt),ae=nt?Il.startActivity:void 0;let ma,_s,Cn,Wi,ah,lh,Df,If,ch,uh,fh,dh,ph,hh,mh,Sh,Mf,gh,yh,kf,Lh,Sa,bh,$h,_h,Eh,Wh,Th,ga,xf,Ff,Gf,Hf,Uf,jf,Bf,Vf,zf,Kf,qf,Xf,W,Ze=0,Ml=!1,jo=mt,kl=mt;const vh=mt?(v,b,y)=>{y[b]=!1;const $=ot(v);let A;try{If($,b,(C,D,M,F,ft,ct,I)=>{A=ya(D,M,F,ft,ct,I)})}catch(C){var R;const D=(R=W)!=null?R:C;throw W=void 0,D}A?K(v,b,A):it(v,b)}:Bt;let xl=Ho?()=>{try{uo(An,vl)&&(xl=()=>!0,Zp(),Lh())}catch(v){xl=Be}return!1}:Be;const wh=mt?()=>{ga=R_(new wt)}:Bt;function Yf(v,b){let y;nt&&(y=ae("copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget"));let $;try{$=Eh(v,(...C)=>{const D={};for(let M=0,{length:F}=C;M<F;M+=7){const ft=C[M];D[ft]=ya(C[M+1],C[M+2],C[M+3],C[M+4],C[M+5],C[M+6])}ua(b,D)})}catch(C){var A;const D=(A=W)!=null?A:C;throw W=void 0,nt&&y.error(D),D}let R;typeof $=="function"?($(),R=W,W=void 0):R=null,Le(b,R),nt&&y.stop()}function Ah(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}()`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==0){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Ch(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(1)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==1){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Ph(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(2)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==2){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Oh(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(3)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==3){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut,2:te}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut,typeof te=="object"&&te!==null||typeof te=="function"?ot(te):typeof te=="undefined"?void 0:te)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Rh(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(4)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==4){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut,2:te,3:cn}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut,typeof te=="object"&&te!==null||typeof te=="function"?ot(te):typeof te=="undefined"?void 0:te,typeof cn=="object"&&cn!==null||typeof cn=="function"?ot(cn):typeof cn=="undefined"?void 0:cn)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Nh(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(5)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==5){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut,2:te,3:cn,4:Ti}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut,typeof te=="object"&&te!==null||typeof te=="function"?ot(te):typeof te=="undefined"?void 0:te,typeof cn=="object"&&cn!==null||typeof cn=="function"?ot(cn):typeof cn=="undefined"?void 0:cn,typeof Ti=="object"&&Ti!==null||typeof Ti=="function"?ot(Ti):typeof Ti=="undefined"?void 0:Ti)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Dh(v){const b=v&1,y=b?"apply":"construct",$=b?Cn:Wi;return function(R,C,D){Ze=v;const{foreignTargetPointer:M}=this,F=b?D:C,{length:ft}=F;let ct;nt&&(ct=ae(`Reflect.${y}(${ft})`));const I=b?C:D;let Q=2;const G=new u(ft+Q);G[0]=M;let B;try{G[1]=typeof I=="object"&&I!==null||typeof I=="function"?ot(I):typeof I=="undefined"?void 0:I;for(let et=0;et<ft;et+=1){const ut=F[et];G[Q++]=typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut}B=z($,void 0,G)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&ct.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&ct.stop(),ht}}function ya(v,b,y,$,A,R){const C={__proto__:null};return v!==vt&&(C.configurable=v),b!==vt&&(C.enumerable=b),y!==vt&&(C.writable=y),A!==vt&&(typeof A=="function"?(A(),C.get=W,W=void 0):C.get=void 0),R!==vt&&(typeof R=="function"?(R(),C.set=W,W=void 0):C.set=void 0),$!==vt&&(typeof $=="function"?($(),C.value=W,W=void 0):C.value=$),C}function Fl(v){return()=>{W=v}}const Jf=mt?()=>{jo=!1,kl=!1,wh()}:Bt,Gl=mt?v=>{let b=_i.get(v);if(b===void 0){const y=gh(ot(v));typeof y=="function"&&(y(),b=W,W=void 0,b&&_i.set(v,b))}return b}:Bt,Qf=mt?v=>v===(Vf===void 0?Vf=ot(sn):Vf):Be,Zf=mt?v=>v===(Gf===void 0?Gf=ot(ru):Gf)||v===(Hf===void 0?Hf=ot(Rf):Hf)||v===(Uf===void 0?Uf=ot(_t):Uf)||v===(jf===void 0?jf=ot(w):jf)||v===(Bf===void 0?Bf=ot(X):Bf)||v===(Kf===void 0?Kf=ot(at):Kf)||v===(qf===void 0?qf=ot(Kt):qf)||v===(Xf===void 0?Xf=ot(Ln):Xf)||v===(zf===void 0?zf=ot(Ye):zf)||v===(xf===void 0?xf=Pl?ot(Pl):Bt:xf)||v===(Ff===void 0?Ff=Ol?ot(Ol):Bt:Ff):Be;function ot(v,b=_s){let y=Ei.get(v);if(y)return y;let $=0,A="",R=0;if(qr&&qr(v))return y=b(Fl(v),64,$,A,R),Ei.set(v,y),y;let C,D=16;if(Dl){if(C=Dl(v),C!==v&&typeof C!=typeof v)throw new st(`Invalid distortion ${O_(v)}.`)}else C=v;let M=!0;if(typeof C=="function"){M=!1,$=0,D=4;try{"prototype"in C||(D|=8);const F=Nt(v,"length");if(F){Le(F,null);const{value:ct}=F;typeof ct=="number"&&($=ct)}const ft=void 0}catch(F){M=!0}}else if(ha(C)){M=!1,D=2;try{R=z(Je,C,[]),D|=32}catch(F){M=!0}}if(M)try{gn(C)&&(D=1)}catch(F){D=64}return y=b(Fl(C),D,$,A,R),Ei.set(v,y),y}const N_=mt?v=>{if(Qp)return;Qp=!0;const b=gn(v)&&v.length>0,y=b?{__proto__:null}:void 0,$=b?(I,Q)=>z(po,v,[Q])?{configurable:!1,enumerable:z(Li,I,[Q]),get:A(Q),set:void 0}:Nt(I,Q):void 0,A=b?I=>{let Q=y[I];return Q===void 0&&(Q=z($e,D,[]),y[I]=Q),Q}:void 0,R=b?(I,Q)=>z(po,v,[Q])?A(Q):z(Ur,I,[Q]):void 0,C=b?(I,Q)=>z(po,v,[Q])?void 0:z(jr,I,[Q]):void 0,D=b?()=>An:void 0,M=I=>{const{length:Q}=I,G=Q===2;return new O(I,{apply(B,dt,ht){if(ht.length>=Q){const et=G?dt:ht[0];if(typeof et=="object"&&et!==null||typeof et=="function"){const ut=G?ht[0]:ht[1],te=Gl(et);te!=null&&te[ut]&&et[ut]}}return z(I,dt,ht)}})},F=(I,Q)=>new O(I,{apply(G,B,dt){if(dt.length&&(typeof B=="object"&&B!==null||typeof B=="function")){const{0:ht}=dt,et=Gl(B);if(et!=null&&et[ht]&&B[ht],b&&B===An)return Q(B,ht)}return z(I,B,dt)}}),ft=I=>new O(I,{apply(Q,G,B){if(B.length>1){const{0:dt,1:ht}=B;if(typeof dt=="object"&&dt!==null||typeof dt=="function"){const et=Gl(dt);if(et!=null&&et[ht]&&dt[ht],b&&dt===An)return $(dt,ht)}}return z(I,G,B)}}),ct=I=>new O(I,{apply(Q,G,B){const dt=B.length?B[0]:void 0;if(!(typeof dt=="object"&&dt!==null||typeof dt=="function"))return z(I,G,B);const ht=Gl(dt),et=dt===An&&b,ut=et?{}:z(I,G,B);if(!et&&ht===void 0)return ut;const te=ce(et?dt:ut);for(let cn=0,{length:Ti}=te;cn<Ti;cn+=1){const La=te[cn],Mh=!!(ht!=null&&ht[La]);if(Mh&&dt[La],Mh||et){const kh=et?$(dt,La):Nt(dt,La);kh?ut[La]=kh:et||it(ut,La)}}return ut}});try{H.defineProperty=M(K)}catch(I){}try{H.getOwnPropertyDescriptor=ft(Nt)}catch(I){}try{N.getOwnPropertyDescriptor=ft(Re)}catch(I){}try{N.getOwnPropertyDescriptors=ct(ms)}catch(I){}try{sn.__defineGetter__=M(Hr)}catch(I){}try{sn.__defineSetter__=M(gs)}catch(I){}try{sn.__lookupGetter__=F(Ur,R)}catch(I){}try{sn.__lookupSetter__=F(jr,C)}catch(I){}}:Bt;function td(v,b,y){let $;nt&&($=ae("lookupForeignDescriptor"));let A,R;try{A=Th(v,y,(M,F,ft,ct,I,Q,G)=>{R={__proto__:null,foreign:!0},F!==vt&&(R.configurable=F),ft!==vt&&(R.enumerable=ft),ct!==vt&&(R.writable=ct),Q!==vt&&(typeof Q=="function"?(Q(),R.get=W,W=void 0):R.get=void 0),G!==vt&&(typeof G=="function"?(G(),R.set=W,W=void 0):R.set=void 0),I!==vt&&(typeof I=="function"?(I(),R.value=W,W=void 0):R.value=I),F===!1&&K(b,M,R)})}catch(M){var C;const F=(C=W)!=null?C:M;throw W=void 0,nt&&$.error(F),F}if(R===void 0){let M;for(typeof A=="function"?(A(),M=W,W=void 0):M=null;M;){if(R=Nt(M,y),R){Le(R,null);break}M=Gt(M)}if(R){var D;const{get:F,set:ft,value:ct}=R,I=(D=F??ft)!=null?D:ct;R.foreign=(typeof I=="object"&&I!==null||typeof I=="function")&&Ei.get(I)!==void 0}}return nt&&$.stop(),R}function D_(v,b,y,$,A){const R=td(v,b,y);if(R){if("get"in R||"set"in R){const{set:D}=R;return D?(R.foreign?Cn(ot(D),typeof A=="object"&&A!==null||typeof A=="function"?ot(A):typeof A=="undefined"?void 0:A,typeof $=="object"&&$!==null||typeof $=="function"?ot($):typeof $=="undefined"?void 0:$):z(D,A,[$]),!0):!1}if(R.writable===!1)return!1}if(!(typeof A=="object"&&A!==null||typeof A=="function"))return!1;const C=Nt(A,y);return C?(Le(C,null),"get"in C||"set"in C||C.writable===!1?!1:(K(A,y,{__proto__:null,value:$}),!0)):K(A,y,{__proto__:null,configurable:!0,enumerable:!0,value:$,writable:!0})}function _e(v){return Ho&&xl(),(typeof v=="object"&&v!==null||typeof v=="function")&&ot(v,ma)(),v}function ed(v,b,y,$,A){const{proxy:R}=new tt(v,b,y,$,A);return Ei.set(R,v),Fl(R)}const I_=mt?(v,b)=>{_i.set(v,b),_h(ot(v),ot(b))}:Bt;class tt{constructor(b,y,$,A,R){this.makeProxyLive=mt?function(){this.deleteProperty=tt.passthruDeletePropertyTrap,this.defineProperty=tt.passthruDefinePropertyTrap,this.preventExtensions=tt.passthruPreventExtensionsTrap,this.set=tt.passthruSetTrap,this.setPrototypeOf=tt.passthruSetPrototypeOfTrap}:Bt,this.makeProxyStatic=mt?function(){this.defineProperty=tt.staticDefinePropertyTrap,this.deleteProperty=tt.staticDeletePropertyTrap,this.get=tt.staticGetTrap,this.getOwnPropertyDescriptor=tt.staticGetOwnPropertyDescriptorTrap,this.getPrototypeOf=tt.staticGetPrototypeOfTrap,this.has=tt.staticHasTrap,this.isExtensible=tt.staticIsExtensibleTrap,this.ownKeys=tt.staticOwnKeysTrap,this.preventExtensions=tt.staticPreventExtensionsTrap,this.set=tt.staticSetTrap,this.setPrototypeOf=tt.staticSetPrototypeOfTrap;const{foreignTargetPointer:Q,foreignTargetTraits:G,shadowTarget:B}=this;jo&&ga.delete(Q);const dt=yh(Q);if(dt&8){this.revoke();return}try{Yf(Q,B)}catch(ht){if(bh(Q)){this.revoke();return}}if(G&16&&!(U in B)){let ht="Object";try{ht=kf(Q)}catch(et){}this.staticToStringTag=ht}dt&4?hs(B):(dt&2?Ss(B):dt&1&&on(B),$i&&Sh("Mutations on the membrane of an object originating outside of the sandbox will not be reflected on the object itself:",Q))}:Bt;let C;const D=y&1,M=y&4;M?C=y&8?()=>{}:function(){}:D?C=[]:C={};const{proxy:F,revoke:ft}=Of(C,this);if(this.foreignTargetPointer=b,this.foreignTargetTraits=y,this.foreignTargetTypedArrayLength=R,this.nonConfigurableDescriptorCallback=(Q,G,B,dt,ht,et,ut)=>{K(this.shadowTarget,Q,ya(G,B,dt,ht,et,ut))},this.proxy=F,this.revoke=ft,this.serialize=Bt,this.shadowTarget=C,this.staticToStringTag="Object",M){var ct,I;this.apply=this[(ct=Zt[$])!=null?ct:Zt.n],this.construct=this[(I=ue[$])!=null?I:ue.n]}if(this.defineProperty=tt.defaultDefinePropertyTrap,this.deleteProperty=tt.defaultDeletePropertyTrap,this.isExtensible=tt.defaultIsExtensibleTrap,this.getOwnPropertyDescriptor=tt.defaultGetOwnPropertyDescriptorTrap,this.getPrototypeOf=tt.defaultGetPrototypeOfTrap,this.get=y&32?tt.hybridGetTrapForTypedArray:tt.defaultGetTrap,this.has=tt.defaultHasTrap,this.ownKeys=tt.defaultOwnKeysTrap,this.preventExtensions=tt.defaultPreventExtensionsTrap,this.setPrototypeOf=tt.defaultSetPrototypeOfTrap,this.set=tt.defaultSetTrap,y&64)this.revoke();else if(mt)(D||y&2)&&this.makeProxyLive();else if(y&16){let Q=vt;this.serialize=()=>(Q===vt&&(Q=$h(this.foreignTargetPointer)),Q)}}static passthruDefinePropertyTrap(b,y,$){Ze=4;let A;nt&&(A=ae("Reflect.defineProperty"));const{foreignTargetPointer:R,nonConfigurableDescriptorCallback:C}=this,D=$;Le(D,null);const{get:M,set:F,value:ft}=D,ct="value"in D?typeof ft=="object"&&ft!==null||typeof ft=="function"?ot(ft):typeof ft=="undefined"?void 0:ft:vt,I="get"in D?typeof M=="function"?ot(M):M:vt,Q="set"in D?typeof F=="function"?ot(F):F:vt;let G=!1;try{G=ah(R,y,"configurable"in D?!!D.configurable:vt,"enumerable"in D?!!D.enumerable:vt,"writable"in D?!!D.writable:vt,ct,I,Q,C)}catch(dt){var B;const ht=(B=W)!=null?B:dt;throw W=void 0,nt&&A.error(ht),ht}return nt&&A.stop(),jo&&G&&(typeof I=="function"||typeof Q=="function")&&ga.delete(R),G}static passthruDeletePropertyTrap(b,y){Ze=8;let $;nt&&($=ae("Reflect.deleteProperty"));let A=!1;try{A=lh(this.foreignTargetPointer,y)}catch(C){var R;const D=(R=W)!=null?R:C;throw W=void 0,nt&&$.error(D),D}return nt&&$.stop(),A}static passthruGetPrototypeOfTrap(b){Ze=64;let y;nt&&(y=ae("Reflect.getPrototypeOf"));let $;try{$=ch(this.foreignTargetPointer)}catch(C){var A;const D=(A=W)!=null?A:C;throw W=void 0,nt&&y.error(D),D}let R;return typeof $=="function"?($(),R=W,W=void 0):R=null,nt&&y.stop(),R}static passthruIsExtensibleTrap(b){Ze=256;let y;nt&&(y=ae("Reflect.isExtensible"));const{shadowTarget:$}=this;let A=!1;if(he($)){const{foreignTargetPointer:C}=this;try{A=fh(C)}catch(D){var R;const M=(R=W)!=null?R:D;throw W=void 0,nt&&y.error(M),M}A||(Yf(C,$),on($))}return nt&&y.stop(),A}static passthruOwnKeysTrap(b){Ze=512;let y;nt&&(y=ae("Reflect.ownKeys"));let $;try{dh(this.foreignTargetPointer,(...R)=>{$=R})}catch(R){var A;const C=(A=W)!=null?A:R;throw W=void 0,nt&&y.error(C),C}return nt&&y.stop(),$||[]}static passthruGetOwnPropertyDescriptorTrap(b,y){Ze=32;let $;nt&&($=ae("Reflect.getOwnPropertyDescriptor"));const{foreignTargetPointer:A,shadowTarget:R}=this;let C;try{If(A,y,(M,F,ft,ct,I,Q,G)=>{C=ya(F,ft,ct,I,Q,G),C.configurable===!1&&K(R,M,C)})}catch(M){var D;const F=(D=W)!=null?D:M;throw W=void 0,nt&&$.error(F),F}if(nt&&$.stop(),Ne&&C&&(y===Yn||y===ar))throw new st(fo);return C}static passthruPreventExtensionsTrap(b){Ze=1024;let y;nt&&(y=ae("Reflect.preventExtensions"));const{foreignTargetPointer:$,shadowTarget:A}=this;let R=!0;if(he(A)){let D=0;try{D=ph($)}catch(M){var C;const F=(C=W)!=null?C:M;throw W=void 0,nt&&y.error(F),F}D&1||(Yf($,A),on(A)),R=!(D&2)}return nt&&y.stop(),R}static passthruSetPrototypeOfTrap(b,y){Ze=4096;let $;nt&&($=ae("Reflect.setPrototypeOf"));const{foreignTargetPointer:A}=this,R=y&&ot(y);let C=!1;try{C=mh(A,R)}catch(M){var D;const F=(D=W)!=null?D:M;throw W=void 0,nt&&$.error(F),F}return nt&&$.stop(),jo&&C&&ga.delete(A),C}static passthruSetTrap(b,y,$,A){Ze=2048;const{foreignTargetPointer:R,proxy:C,shadowTarget:D}=this;if(typeof $=="undefined"&&($=void 0),typeof A=="undefined"&&(A=C),Ne&&(y===Yn||y===ar))throw new st(fo);const M=C===A;let F;nt&&(F=ae(M?"Reflect.set":"passthruForeignTraversedSet"));let ft=!1;try{ft=M?hh(R,y,typeof $=="object"&&$!==null||typeof $=="function"?ot($):$,vt):D_(R,D,y,$,A)}catch(I){var ct;const Q=(ct=W)!=null?ct:I;throw W=void 0,nt&&F.error(Q),Q}return nt&&F.stop(),ft}}tt.hybridGetTrap=mt?function(v,b,y){let $;nt&&($=ae("hybridGetTrap"));const{foreignTargetPointer:A,foreignTargetTraits:R,proxy:C,shadowTarget:D}=this;let M,F;if(jo&&ga.has(A)){let G;try{G=Mf(A,b)}catch(B){var ft;const dt=(ft=W)!=null?ft:B;throw W=void 0,nt&&$.error(dt),dt}typeof G=="function"?(G(),F=W,W=void 0):F=G}else if(M=td(A,D,b),M){const{get:G,value:B}=M;if(G)if(M.foreign){const dt=ot(G),ht=C===y?A:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let et;try{et=Cn(dt,ht)}catch(ut){var ct;const te=(ct=W)!=null?ct:ut;throw W=void 0,nt&&$.error(te),te}typeof et=="function"?(et(),F=W,W=void 0):F=et}else F=z(G,y,[]);else F=B}else{const G=C===y?A:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let B;try{B=Df(A,R,b,G)}catch(dt){var I;const ht=(I=W)!=null?I:dt;throw W=void 0,nt&&$.error(ht),ht}typeof B=="function"?(B(),F=W,W=void 0):F=B}if(M===void 0&&F===void 0&&b===U&&R&16){let G;try{G=kf(A)}catch(B){var Q;const dt=(Q=W)!=null?Q:B;throw W=void 0,nt&&$.error(dt),dt}G!=="Object"&&(F=G)}return nt&&$.stop(),F}:Bt,tt.hybridGetTrapForTypedArray=mt?function(v,b,y){let $;nt&&($=ae("hybridGetTrapForTypedArray"));const{foreignTargetPointer:A,foreignTargetTypedArrayLength:R,proxy:C,shadowTarget:D}=this;let M=kl;if(!M&&typeof b=="string"){const I=+b;M=I>-1&&I<R&&lr(I)}let F;if(M){let I;try{I=Mf(A,b)}catch(Q){var ft;const G=(ft=W)!=null?ft:Q;throw W=void 0,nt&&$.error(G),G}typeof I=="function"?(I(),F=W,W=void 0):F=I}else{const I=td(A,D,b);if(I){const{get:Q,value:G}=I;if(Q)if(I.foreign){const B=ot(Q),dt=C===y?A:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let ht;try{ht=Cn(B,dt)}catch(et){var ct;const ut=(ct=W)!=null?ct:et;throw W=void 0,nt&&$.error(ut),ut}typeof ht=="function"?(ht(),F=W,W=void 0):F=ht}else F=z(Q,y,[]);else F=G}}return nt&&$.stop(),F}:Bt,tt.hybridHasTrap=mt?function(v,b){let y;nt&&(y=ae("hybridHasTrap"));let $;try{$=Wh(this.foreignTargetPointer,b)}catch(C){var A;const D=(A=W)!=null?A:C;throw W=void 0,nt&&y.error(D),D}let R=!1;if($===!0)R=!0;else{let C;for(typeof $=="function"?($(),C=W,W=void 0):C=null;C;){if(uo(C,b)){R=!0;break}C=Gt(C)}}return nt&&y.stop(),R}:Be,tt.passthruGetTrap=Ne?function(v,b,y){Ml&&(Ml=Ze===128),Ze=16;const $=b===Yn,A=b===ar;if(Ml){if($)return!0;if(A)return this.serialize()}let R;nt&&(R=ae("Reflect.get"));const{foreignTargetPointer:C,foreignTargetTraits:D,proxy:M}=this;typeof y=="undefined"&&(y=M);const F=M===y?vt:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let ft;try{ft=Df(C,D,b,F)}catch(Q){var ct;const G=(ct=W)!=null?ct:Q;throw W=void 0,nt&&R.error(G),G}let I;if(typeof ft=="function"?(ft(),I=W,W=void 0):I=ft,nt&&R.stop(),I!==void 0&&($||A))throw new st(fo);return I}:Bt,tt.passthruHasTrap=Ne?function(v,b){Ze=128;let y;nt&&(y=ae("Reflect.has"));let $;try{$=uh(this.foreignTargetPointer,b)}catch(D){var A;const M=(A=W)!=null?A:D;throw W=void 0,nt&&y.error(M),M}const R=b===Yn,C=b===ar;if($){if(Ml=!1,R||C)throw new st(fo)}else Ml=R||C;return nt&&y.stop(),$}:Be,tt.pendingDefinePropertyTrap=mt?function(v,b,y){const{foreignTargetPointer:$,foreignTargetTraits:A}=this;return Sa($,A)?this.makeProxyLive():(jo&&(Qf($)?Jf():Zf($)&&(kl=!1)),this.makeProxyStatic()),this.defineProperty(v,b,y)}:Be,tt.pendingDeletePropertyTrap=mt?function(v,b){return Sa(this.foreignTargetPointer,this.foreignTargetTraits)?this.makeProxyLive():this.makeProxyStatic(),this.deleteProperty(v,b)}:Be,tt.pendingPreventExtensionsTrap=mt?function(v){return Sa(this.foreignTargetPointer,this.foreignTargetTraits)?this.makeProxyLive():this.makeProxyStatic(),this.preventExtensions(v)}:Be,tt.pendingSetPrototypeOfTrap=mt?function(v,b){const{foreignTargetPointer:y,foreignTargetTraits:$}=this;return Sa(y,$)?this.makeProxyLive():(jo&&(Qf(y)?Jf():Zf(y)&&(kl=!1)),this.makeProxyStatic()),this.setPrototypeOf(v,b)}:Be,tt.pendingSetTrap=mt?function(v,b,y,$){const{foreignTargetPointer:A,foreignTargetTraits:R}=this;return Sa(A,R)?this.makeProxyLive():(jo&&(Qf(A)?Jf():Zf(A)&&(kl=!1)),this.makeProxyStatic()),this.set(v,b,y,$)}:Be,tt.staticDefinePropertyTrap=mt?K:Be,tt.staticDeletePropertyTrap=mt?it:Be,tt.staticGetOwnPropertyDescriptorTrap=mt?Nt:Bt,tt.staticGetPrototypeOfTrap=mt?Gt:()=>null,tt.staticGetTrap=mt?function(v,b,y){const{foreignTargetTraits:$,staticToStringTag:A}=this,R=Tt(v,b,y);return R===void 0&&b===U&&$&16&&A!=="Object"&&!(b in v)?A:R}:Bt,tt.staticHasTrap=mt?mn:Be,tt.staticIsExtensibleTrap=mt?he:Be,tt.staticOwnKeysTrap=mt?ce:()=>[],tt.staticPreventExtensionsTrap=mt?on:Be,tt.staticSetPrototypeOfTrap=mt?Le:Be,tt.staticSetTrap=mt?Sn:Be,tt.defaultDefinePropertyTrap=mt?tt.pendingDefinePropertyTrap:tt.passthruDefinePropertyTrap,tt.defaultDeletePropertyTrap=mt?tt.pendingDeletePropertyTrap:tt.passthruDeletePropertyTrap,tt.defaultGetOwnPropertyDescriptorTrap=tt.passthruGetOwnPropertyDescriptorTrap,tt.defaultGetPrototypeOfTrap=tt.passthruGetPrototypeOfTrap,tt.defaultGetTrap=mt?tt.hybridGetTrap:tt.passthruGetTrap,tt.defaultHasTrap=mt?tt.hybridHasTrap:tt.passthruHasTrap,tt.defaultIsExtensibleTrap=tt.passthruIsExtensibleTrap,tt.defaultOwnKeysTrap=tt.passthruOwnKeysTrap,tt.defaultPreventExtensionsTrap=mt?tt.pendingPreventExtensionsTrap:tt.passthruPreventExtensionsTrap,tt.defaultSetTrap=mt?tt.pendingSetTrap:tt.passthruSetTrap,tt.defaultSetPrototypeOfTrap=mt?tt.pendingSetPrototypeOfTrap:tt.passthruSetPrototypeOfTrap,mt&&wh(),Nl(Fl(An),Ne?()=>{const v=W;return W=void 0,v}:Bt,v=>typeof v=="object"&&v!==null||typeof v=="function"?ot(v):typeof v=="undefined"?void 0:v,(v,b)=>{v();const y=W;W=void 0;const $=y==null?void 0:y[b];return Fl(typeof $=="undefined"?void 0:$)},mt?v=>{let b;try{b=A_(v)}catch(y){throw _e(y)}return typeof b=="object"&&b!==null||typeof b=="function"?ot(b):b}:Bt,(v,b)=>{v();const y=W;W=void 0,(typeof y=="object"&&y!==null||typeof y=="function")&&Ei.set(y,b)},Ho?(v,b,y,$,A)=>{const R=ed(v,b,y,$,A);return()=>(xl(),R())}:ed,ed,(v,b,...y)=>{v();const $=W;W=void 0;let A;typeof b=="function"&&(b(),A=W,W=void 0);for(let C=0,{length:D}=y;C<D;C+=1){const M=y[C];typeof M=="function"&&(M(),y[C]=W,W=void 0)}let R;try{R=z($,A,y)}catch(C){throw _e(C)}return typeof R=="object"&&R!==null||typeof R=="function"?ot(R):typeof R=="undefined"?void 0:R},(v,b,...y)=>{v();const $=W;W=void 0;let A;typeof b=="function"&&(b(),A=W,W=void 0);for(let C=0,{length:D}=y;C<D;C+=1){const M=y[C];typeof M=="function"&&(M(),y[C]=W,W=void 0)}let R;try{R=Mt($,y,A)}catch(C){throw _e(C)}return typeof R=="object"&&R!==null||typeof R=="function"?ot(R):typeof R=="undefined"?void 0:R},(v,b,y,$,A,R,C,D,M)=>{v();const F=W;W=void 0;const ft=ya(y,$,A,R,C,D);let ct=!1;try{ct=K(F,b,ft)}catch(I){throw _e(I)}if(ct&&y===!1){let I;try{I=Nt(F,b)}catch(Q){throw _e(Q)}if(I&&(Le(I,null),I.configurable===!1)){const{get:Q,set:G,value:B}=I;M(b,!1,"enumerable"in I?I.enumerable:vt,"writable"in I?I.writable:vt,"value"in I?typeof B=="object"&&B!==null||typeof B=="function"?ot(B):B:vt,"get"in I?typeof Q=="function"?ot(Q):Q:vt,"set"in I?typeof G=="function"?ot(G):G:vt)}}return ct},(v,b)=>{v();const y=W;W=void 0;try{return it(y,b)}catch($){throw _e($)}},(v,b,y,$)=>{v();const A=W;W=void 0;let R;typeof $=="function"?($(),R=W,W=void 0):R=$===vt?A:$;let C;try{C=Tt(A,y,R)}catch(D){throw _e(D)}if(typeof C=="object"&&C!==null||typeof C=="function")return ot(C);if(C===void 0&&y===U&&b&16)try{if(!(y in A)){const D=z(Go,A,[]);D!=="[object Object]"&&(C=z(eu,D,[8,-1]))}}catch(D){throw _e(D)}return typeof C=="undefined"?void 0:C},(v,b,y)=>{v();const $=W;W=void 0;let A;try{A=Nt($,b)}catch(R){throw _e(R)}if(A){Le(A,null);const{get:R,set:C,value:D}=A;y(b,"configurable"in A?A.configurable:vt,"enumerable"in A?A.enumerable:vt,"writable"in A?A.writable:vt,"value"in A?typeof D=="object"&&D!==null||typeof D=="function"?ot(D):typeof D=="undefined"?void 0:D:vt,"get"in A?typeof R=="function"?ot(R):R:vt,"set"in A?typeof C=="function"?ot(C):C:vt)}},v=>{v();const b=W;W=void 0;let y;try{y=Gt(b)}catch($){throw _e($)}return typeof y=="undefined"?null:y&&ot(y)},(v,b)=>{v();const y=W;W=void 0;try{return b in y}catch($){throw _e($)}},v=>{v();const b=W;W=void 0;try{return he(b)}catch(y){throw _e(y)}},(v,b)=>{v();const y=W;W=void 0;let $;try{$=ce(y)}catch(A){throw _e(A)}z(b,void 0,$)},v=>{v();const b=W;W=void 0;let y=2;try{on(b)?y=4:he(b)&&(y|=1)}catch($){throw _e($)}return y},(v,b,y,$)=>{v();const A=W;W=void 0;let R;typeof y=="function"?(y(),R=W,W=void 0):R=y;let C;typeof $=="function"?($(),C=W,W=void 0):C=$===vt?A:$;try{return Sn(A,b,R,C)}catch(D){throw _e(D)}},(v,b=null)=>{v();const y=W;W=void 0;let $;typeof b=="function"?(b(),$=W,W=void 0):$=null;try{return Le(y,$)}catch(A){throw _e(A)}},Ho?(...v)=>{if(xl()){for(let b=0,{length:y}=v;b<y;b+=1){const $=v[b];typeof $=="function"&&($(),v[b]=W,W=void 0)}try{z(w_,Nf,v)}catch(b){}}}:Bt,mt?(v,...b)=>{v();const y=W;W=void 0;for(let $=0,{length:A}=b;$<A;$+=7)K(y,b[$],ya(b[$+1],b[$+2],b[$+3],b[$+4],b[$+5],b[$+6]))}:Bt,Ne?v=>{v();const b=W;W=void 0;const y=Rp.get(b);return y&&ot(y)}:Bt,Ne?(v,b)=>{v();const y=W;W=void 0;let $;try{$=y[b]}catch(A){throw _e(A)}return typeof $=="object"&&$!==null||typeof $=="function"?ot($):$}:Bt,Ne?v=>{v();const b=W;W=void 0;try{if(!he(b))return xe(b)?4&2&1:fa(b)?2&1:1}catch(y){try{gn(b)}catch($){return 8}}return 0}:()=>0,v=>{v();const b=W;W=void 0;try{const y=z(Go,b,[]);return y==="[object Object]"?"Object":z(eu,y,[8,-1])}catch(y){throw _e(y)}},Zp,mt?(v,...b)=>{const y=z(Ls,b,[vt]);let $,A;y===-1?$=b:($=z(Br,b,[0,y]),A=z(Br,b,[y+1])),v();const R=W;W=void 0;let C=Gl(R);C===void 0&&(C={__proto__:null},I_(R,C));for(let D=0,{length:M}=$;D<M;D+=1){const F=$[D];C[F]=!0,K(R,F,{__proto__:null,configurable:!0,get(){return vh(R,F,C),R[F]},set(ft){vh(R,F,C),Sn(R,F,ft)}})}N_(A)}:Bt,Ne&&cr?(v,b)=>{v();const y=W;if(W=void 0,y!==sn&&y!==mo)try{return cr(y,b)}catch($){}return!1}:Be,Ne?v=>{v();const b=W;W=void 0;try{return gn(b),!1}catch(y){}return!0}:Be,mt?v=>{v();const b=W;W=void 0;try{return U in b?P_(b):C_(b)}catch(y){}}:Bt,Ne?(v,b)=>{v();const y=W;W=void 0,b();const $=W;W=void 0,Rp.set(y,$)}:Bt,mt?v=>{v();const b=W;W=void 0,jo&&ga.add(ot(b))}:Bt,(v,b)=>{v();const y=W;W=void 0;let $;try{$=ms(y)}catch(M){throw _e(M)}const A=ce($),{length:R}=A,C=new u(R*7);for(let M=0,F=0;M<R;M+=1,F+=7){const ft=A[M],ct=$[ft];Le(ct,null);const{get:I,set:Q,value:G}=ct;C[F]=ft,C[F+1]="configurable"in ct?ct.configurable:vt,C[F+2]="enumerable"in ct?ct.enumerable:vt,C[F+3]="writable"in ct?ct.writable:vt,C[F+4]="value"in ct?typeof G=="object"&&G!==null||typeof G=="function"?ot(G):G:vt,C[F+5]="get"in ct?typeof I=="function"?ot(I):I:vt,C[F+6]="set"in ct?typeof Q=="function"?ot(Q):Q:vt}z(b,void 0,C);let D;try{D=Gt(y)}catch(M){throw _e(M)}return typeof D=="undefined"?null:D&&ot(D)},(v,b)=>{v();const y=W;W=void 0;let $;try{if(uo(y,b))return!0;$=Gt(y)}catch(A){throw _e(A)}return typeof $=="undefined"?null:$&&ot($)},(v,b,y)=>{v();const $=W;W=void 0;let A;try{A=Nt($,b)}catch(C){throw _e(C)}if(A){Le(A,null);const{get:C,set:D,value:M}=A;y(b,"configurable"in A?A.configurable:vt,"enumerable"in A?A.enumerable:vt,"writable"in A?A.writable:vt,"value"in A?typeof M=="object"&&M!==null||typeof M=="function"?ot(M):typeof M=="undefined"?void 0:M:vt,"get"in A?typeof C=="function"?ot(C):C:vt,"set"in A?typeof D=="function"?ot(D):D:vt);return}let R;try{R=Gt($)}catch(C){throw _e(C)}return typeof R=="undefined"?null:R&&ot(R)});let Ih=!1;return(...v)=>{if(Ih)return;Ih=!0,{6:ma,7:_s,8:Cn,9:Wi,10:ah,11:lh,12:Df,13:If,14:ch,15:uh,16:fh,17:dh,18:ph,19:hh,20:mh,21:Sh,23:gh,24:Mf,25:yh,26:kf,27:Lh,29:Sa,30:bh,31:$h,32:_h,34:Eh,35:Wh,36:Th}=v;const b=Ah(1),y=Ch(1),$=Ph(1),A=Oh(1),R=Rh(1),C=Nh(1),D=Dh(1),M=Ah(2),F=Ch(2),ft=Ph(2),ct=Oh(2),I=Rh(2),Q=Nh(2),G=Dh(2);De===void 0&&(De=me({applyTrapForZeroOrMoreArgs:b,applyTrapForOneOrMoreArgs:y,applyTrapForTwoOrMoreArgs:$,applyTrapForThreeOrMoreArgs:A,applyTrapForFourOrMoreArgs:R,applyTrapForFiveOrMoreArgs:C,applyTrapForAnyNumberOfArgs:D,constructTrapForZeroOrMoreArgs:M,constructTrapForOneOrMoreArgs:F,constructTrapForTwoOrMoreArgs:ft,constructTrapForThreeOrMoreArgs:ct,constructTrapForFourOrMoreArgs:I,constructTrapForFiveOrMoreArgs:Q,constructTrapForAnyNumberOfArgs:G})),Zt[0]=De[0],Zt[1]=De[1],Zt[2]=De[2],Zt[3]=De[3],Zt[4]=De[4],Zt[5]=De[5],Zt.n=De[6],ue[0]=De[7],ue[1]=De[8],ue[2]=De[9],ue[3]=De[10],ue[4]=De[11],ue[5]=De[12],ue.n=De[13];const{prototype:B}=tt;B[Zt[0]]=b,B[Zt[1]]=y,B[Zt[2]]=$,B[Zt[3]]=A,B[Zt[4]]=R,B[Zt[5]]=C,B[Zt.n]=D,B[ue[0]]=M,B[ue[1]]=F,B[ue[2]]=ft,B[ue[3]]=ct,B[ue[4]]=I,B[ue[5]]=Q,B[ue.n]=G,Le(B,null)}}}const X$=` |
| | | 'use strict'; |
| | | (${Np})`;function Y$(t){if(typeof t!="object"||t===null)throw new Xc("Missing globalObject.");return Np(t)}function J$(t){if(typeof t!="function")throw new Xc("Missing evaluator function.");return t(X$)()}const ps=yl("@@lockerNearMembraneUndefinedValue");class Q${constructor(e){if(e===void 0)throw new D$("Missing required VirtualEnvironment options.");const{blueConnector:n,redConnector:i,distortionCallback:s,instrumentation:l,liveTargetCallback:u,revokedProxyCallback:p,signSourceCallback:L}=gl({__proto__:null},e);let E;const N=n("blue",(...$e)=>{E=$e},{distortionCallback:s,instrumentation:l,liveTargetCallback:u,revokedProxyCallback:p}),{0:O,1:H,2:J,3:x,5:Z,6:st,7:Pt,8:wt,9:$t,10:U,11:z,12:Mt,13:K,14:it,15:Tt,16:Nt,17:Gt,18:mn,19:he,20:ce,23:on,24:Sn,25:Le,26:Tl,27:ua,29:hs,32:Re,34:ms,35:xe,36:fa}=E;let me;const sn=i("red",(...$e)=>{me=$e}),{0:Ss,3:da,4:Li,5:Go,6:Gr,7:Hr,8:gs,9:Ur,10:jr,11:uo,12:An,13:mt,14:Ne,15:vl,16:ys,17:ar,18:Yn,19:vt,20:bi,21:$i,22:Ho,23:fo,25:pa,26:De,27:Uo,28:gn,30:po,31:Ls,32:Br,33:ha,34:wl,35:Ie,36:ho}=me;N(Oe,Oe,Oe,Oe,Oe,Oe,Gr,Hr,gs,Ur,jr,uo,An,mt,Ne,vl,ys,ar,Yn,vt,bi,$i,Oe,fo,Oe,pa,De,Uo,Oe,Oe,po,Ls,Br,ha,wl,Ie,ho),sn(Oe,Oe,Oe,Oe,Oe,Oe,st,Pt,wt,$t,U,z,Mt,K,it,Tt,Nt,Gt,mn,he,ce,Oe,Oe,on,Sn,Le,Tl,ua,Oe,hs,Oe,Oe,Re,Oe,ms,xe,fa),this.blueGlobalThisPointer=O,this.blueGetSelectedTarget=H,this.blueGetTransferableValue=J,this.blueCallableGetPropertyValuePointer=x,this.blueCallableLinkPointers=Z,this.redGlobalThisPointer=()=>Ss(),this.redCallableGetPropertyValuePointer=($e,yn)=>da($e,yn),this.redCallableEvaluate=L?$e=>Li(L($e)):$e=>Li($e),this.redCallableLinkPointers=($e,yn)=>Go($e,yn),this.redCallableSetPrototypeOf=($e,yn)=>bi($e,yn),this.redCallableDefineProperties=($e,...yn)=>{const{length:Vr}=yn,lr=new Ll(Vr+1);lr[0]=$e;for(let xn=0;xn<Vr;xn+=1)lr[xn+1]=yn[xn];Jt(Ho,void 0,lr)},this.redCallableInstallLazyPropertyDescriptors=($e,...yn)=>{const{length:Vr}=yn,lr=new Ll(Vr+1);lr[0]=$e;for(let xn=0;xn<Vr;xn+=1)lr[xn+1]=yn[xn];Jt(gn,void 0,lr)},this.redCallableTrackAsFastTarget=$e=>ha($e)}evaluate(e){try{const i=this.redCallableEvaluate(e);return typeof i=="function"?(i(),this.blueGetSelectedTarget()):i}catch(i){var n;throw(n=this.blueGetSelectedTarget())!=null?n:i}}lazyRemapProperties(e,n,i){if(typeof e=="object"&&e!==null||typeof e=="function"){const s=[this.blueGetTransferableValue(e)];Jt($l,s,n),i!=null&&i.length&&(s[s.length]=ps,Jt($l,s,i)),Jt(this.redCallableInstallLazyPropertyDescriptors,void 0,s)}}link(...e){let n=this.blueGlobalThisPointer,i=this.redGlobalThisPointer;for(let s=0,{length:l}=e;s<l;s+=1){const u=e[s];n=this.blueCallableGetPropertyValuePointer(n,u),i=this.redCallableGetPropertyValuePointer(i,u),this.redCallableLinkPointers(i,n),this.blueCallableLinkPointers(n,i)}}remapProperties(e,n){if(typeof e=="object"&&e!==null||typeof e=="function"){const i=this.blueGetTransferableValue(e),s=Sl(n),{length:l}=s,u=new Ll(1+l*7);u[0]=i;for(let p=0,L=1;p<l;p+=1,L+=7){const E=s[p],N=n[E],O=gl({__proto__:null},N);u[L]=E,u[L+1]="configurable"in O?!!O.configurable:ps,u[L+2]="enumerable"in O?!!O.enumerable:ps,u[L+3]="writable"in O?!!O.writable:ps,u[L+4]="value"in O?this.blueGetTransferableValue(O.value):ps,u[L+5]="get"in O?this.blueGetTransferableValue(O.get):ps,u[L+6]="set"in O?this.blueGetTransferableValue(O.set):ps}Jt(this.redCallableDefineProperties,this,u)}}remapProto(e,n){if(typeof e=="object"&&e!==null||typeof e=="function"){const i=this.blueGetTransferableValue(e),s=n&&this.blueGetTransferableValue(n);this.redCallableSetPrototypeOf(i,s)}}trackAsFastTarget(e){(typeof e=="object"&&e!==null||typeof e=="function")&&this.redCallableTrackAsFastTarget(this.blueGetTransferableValue(e))}}const Z$=["globalThis","Infinity","NaN","undefined","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","BigInt","Boolean","FinalizationRegistry","Number","RegExp","String","Symbol","WeakRef","Math","Reflect","escape","unescape"],Wf=["AggregateError","Array","Error","EvalError","Function","Object","Proxy","RangeError","ReferenceError","SyntaxError","TypeError","URIError","eval","globalThis"],Dp=Yb([...Z$,...Wf]);function t_(t,e){const n=Sl(e);for(let i=0,{length:s}=n;i<s;i+=1){const l=n[i];if(!Dp.includes(l)){const u=e[l];u&&(t[l]=gl({__proto__:null},u))}}return t}function Ip(t){const e=[];let n=0;const i=Sl(t);for(let s=0,{length:l}=i;s<l;s+=1){const u=i[s];Dp.includes(u)||(e[n++]=u)}return e}function e_(t,e){for(let n=0,{length:i}=Wf;n<i;n+=1){const s=Wf[n],l=e[s];l&&(l.prototype?t.link(s,"prototype"):t.link(s))}}const Mp=Lf(new WeakMap),n_=Cp?["window"]:void 0;function kp(t){const{window:e}=t;let n,i;try{({document:i}=t),n=Mp.get(i)}catch(p){return}if(n)return n;const s=la(e),l=la(s),u=la(l);return n={document:i,DocumentProto:la(i),window:e,WindowProto:la(e),WindowPropertiesProto:la(s),EventTargetProto:u,EventTargetProtoOwnKeys:Sl(u)},Mp.set(i,n),n}function xp(t){const e=[];let n=0;for(let i=0,{length:s}=t;i<s;i+=1){const l=t[i];l!=="document"&&l!=="location "&&l!=="top"&&l!=="window"&&l!=="chrome"&&(e[n++]=l)}return e}function r_(t){return ml(t,"document"),ml(t,"location"),ml(t,"top"),ml(t,"window"),ml(t,"chrome"),t}kp(Wl);const o_="allow-same-origin allow-scripts",Fp=P$(new wp),Gp=Lf(new gf);let Tf=null;function i_(t){var e;const n=Jt(G$,t,["iframe"]),i=(e=Jt(U$,t,[]))!=null?e:Jt(q$,t,[]),s=Jt(V$,n,[]);return s.display="none",Jt(B$,n,["sandbox",o_]),Jt(K$,i,[n]),n}function s_(t,e){if(typeof t!="object"||t===null)throw new Xc("Missing global object virtualization target.");const n=kp(t);if(typeof n!="object"||n===null)throw new Xc("Invalid virtualization target.");const{distortionCallback:i,endowments:s,globalObjectShape:l,instrumentation:u,keepAlive:p=!0,liveTargetCallback:L,signSourceCallback:E}=gl({__proto__:null},e),N=i_(n.document),O=Jt(z$,N,[]),H=typeof l!="object"||l===null;H&&Tf===null&&(Tf=xp(Ip(O)));let J=Gp.get(n.document);J===void 0&&(J=Y$(t),Gp.set(n.document,J));const{eval:x}=O,Z=new Q$({blueConnector:J,redConnector:J$(E?st=>x(E(st)):x),distortionCallback:i,instrumentation:u,liveTargetCallback:L,revokedProxyCallback:p?a_:void 0,signSourceCallback:E});if(e_(Z,t),typeof globalThis=="undefined"?Z.link("window","document"):Z.link("document"),Z.link("__proto__","__proto__","__proto__"),Z.remapProto(n.document,n.DocumentProto),Z.lazyRemapProperties(n.window,H?Tf:xp(Ip(l)),p?void 0:n_),s){const st={};t_(st,s),r_(st),Z.remapProperties(n.window,st)}if(Z.lazyRemapProperties(n.EventTargetProto,n.EventTargetProtoOwnKeys),p){Fp.add(N);const{document:st}=O;Jt(H$,st,[]),Jt(F$,st,[])}else x$&&x("window"),Jt(j$,N,[]);return Z}function a_(t){return Fp.has(t)}function vf(t){return new bt(`platformResourceLoader error loading ${nn(t)}.`)}const Yc={asyncToGen:Wt,makeRedResyncImports:Wt,forAwaitOf:Wt,genToAsync:Wt,loadScript:Wt,loadStyle:Wt,makeRedGet:Wt,makeRedSyncImports:Wt,namespace:Wt,spreadable:Wt,super:Wt},l_=`'use strict'; |
| | | ${Wr}(${function(e,n,i,s){const l=Array,{iterator:u}=Symbol,{[u]:p}=l.prototype,L=function*(){}.constructor.prototype.prototype,{next:E,throw:N}=L,{defineProperties:O,freeze:H}=Object,{apply:J,get:x,getPrototypeOf:Z,setPrototypeOf:st}=Reflect;function Pt(K,it){let Tt;const Nt=Gt=>mn=>(Tt===void 0&&(Tt=J(K,it,[])),J(Gt,Tt,[mn]));return e(Nt(E),Nt(N))}function wt(...K){const{length:it}=K,Tt=l(it),Nt={};for(let Gt=0;Gt<it;Gt+=1)Nt[Gt]={__proto__:null,get:K[Gt]};return O(Tt,Nt),Tt}function $t(K){return function(...it){for(let Tt=0,{length:Nt}=K;Tt<Nt;Tt+=1)try{K[Tt]}catch(Gt){}return z(it)}}function U(K){return H(K)}function z(K){return st(K,null),K[u]=p,K}function Mt(K,it,Tt,Nt){const Gt=Z(K);if(Gt!==null)return Nt?J(Gt[it],Tt,Nt):x(Gt,it,Tt)}return{asyncToGen:Pt,makeRedResyncImports:$t,forAwaitOf:n,genToAsync:Pt,loadScript:i,loadStyle:s,makeRedGet:wt,makeRedSyncImports:$t,namespace:U,spreadable:z,super:Mt}}})`;function c_(t){const{document:e,document:{head:n},distortions:i,globalObject:{HTMLScriptElement:{prototype:s}},root:l}=t,u=t===l,p=Vn(new dn),L=Yt(new kt),E=Yt(new kt),N=i.get(u?wc:V(s,"src")),O=i.get(u?wu:de(s,"src"));function H(x,Z,st,Pt,wt,$t){let U,z;try{U=wt($t),z=U.value}catch(Mt){Z(Mt);return}U.done?x(z):c(kn,qn(z),[st,Pt])}function J(x,Z){const st=new Dr((Pt,wt)=>{function $t(z){c(pi,x,["error",$t]),c(pi,x,["load",U]),c($c,z,[]),E.set(x,1),wt(vf(Z))}function U(){c(pi,x,["error",$t]),c(pi,x,["load",U]),E.set(x,3),Pt(void 0)}c(lo,x,["error",$t]),c(lo,x,["load",U])});return E.set(x,2),L.set(x,st),c(ao,n,[x]),st}return[function(Z,st){return new Dr((Pt,wt)=>{function $t(z){H(Pt,wt,$t,U,Z,z)}function U(z){H(Pt,wt,$t,U,st,z)}$t(void 0)})},function(Z,st,Pt){if(st===0){let $t=!1,{[Ul]:U}=Pt;if(U==null&&($t=!0,{[On]:U}=Pt),typeof U!="function")throw new Vt("Object is not iterable.");p.set(Z,{iterable:c(U,Pt,[]),step:void 0,sync:$t});return}const wt=p.get(Z);if(st===1){const $t=wt.iterable.next();return wt.sync?new Dr(U=>{wt.step=$t,U()}):c(kn,$t,[U=>{wt.step=U}])}if(st===2)return wt.step.value;if(st===3){const $t=!!wt.step.done;return $t&&p.delete(Z),$t}},function(Z,st){const Pt=xt(st),wt=Rc(Pt),$t=c(fu,n,["script"]);for(let Mt=0,{length:K}=$t;Mt<K;Mt+=1){const it=$t[Mt];if(c(N,it,[])===wt){var U;const Tt=(U=E.get(it))!=null?U:0;if(Tt===3)return qn(void 0);if(Tt===1)return Ro(vf(Pt));if(Tt===2)return L.get(it)}}const z=c(li,e,["script"]);return z.type="text/javascript",c(O,z,[Pt]),J(z,Pt)},function(Z,st){const Pt=xt(st);let wt=c(Qa,n,[`link[href=${nn(Pt)}]`]);if(wt){var $t;const U=($t=E.get(wt))!=null?$t:0;if(U===0||U===3)return qn(void 0);if(U===1)return Ro(vf(Pt));const z=U===2?L.get(wt):void 0;return z??qn(void 0)}return wt=c(li,e,["link"]),wt.type="text/css",wt.rel="stylesheet",wt.href=Pt,J(wt,Pt)}]}function u_(t,e){let n=typeof t=="function"?Ar(t):xt(t);return n=c(ne,n,[/\/\/# sandbox(?=MappingURL=.*?\s*$)/,"//# source"]),e===1&&o(n,"use strict")===-1?`'use strict';${n}`:n}const Jc={__proto__:null},Hp=Yt(new kt([[Do,Jc]])),Up=Yt(new kt);function f_(t){let e=Up.get(t);return e===void 0&&(e={__proto__:null},Up.set(t,e)),e}function d_(t){let e=Hp.get(t);return e===void 0&&(e={__proto__:null},Hp.set(t,e)),e}const p_=Ri&&!0,h_=[[Do,Do],[tl,tl],[je,je]],jp=Yt(new kt),wf=ro(new no);function Bp(t){let e;return()=>(e===void 0&&(e=m_(t)),e)}function Vp(t){let e;return n=>{e===void 0&&(e=t()),e.trackAsFastTarget(n)}}function zp(t,e){let n;return i=>{if(n===void 0){n=e();const s=ff();if(df(l=>{const u=c(l,void 0,c_(t));t.helpers=u,cp(u)}),n.evaluate(l_),typeof s=="object"&&s!==null){n.trackAsFastTarget(s);const l=bn(s);for(let u=0,{length:p}=l;u<p;u+=1){const L=s[l[u]];typeof L=="object"&&L!==null&&n.trackAsFastTarget(L)}}df(s)}return n.evaluate(i)}}function Kp({LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:t,document:e,globalObject:n,instrumentation:i,key:s,type:l}){return(u,p,L=n,E=e)=>qp({context:p,document:E,endowments:Xe,globalObject:L,instrumentation:i,key:s,source:u,sourceType:0,type:l,verboseInstrumentation:t})}function m_(t){const{LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:e,distortions:n,endowments:i,globalObject:s,instrumentation:l,key:u,root:p,root:{distortions:L},type:E}=t,N=t===p;return s_(s,{distortionCallback(O){const H=L.get(O);if(H)return N?H:n.get(O)||H;if(typeof O=="function")return O;try{if(!ke(O,"location"))return O}catch(Z){return O}let J,x;if(ke(O,"window")&&O.window===O)try{J=c(nl,O,[]),x=O}catch(Z){try{if(c(lc,O,[]))return Cf({globalObject:O,key:u,type:E},p),O}catch(st){}}else if("defaultView"in O){let Z;try{Z=c(ta,O,[])}catch(st){}Z&&(J=O,x=Z)}return x&&Pf({context:Xe,document:J,globalObject:x,key:u,type:E},p),O},endowments:i&&i!==Xe?Fe({},up,Fn(i)):up,instrumentation:e?l:void 0,keepAlive:p_,liveTargetCallback:Va,signSourceCallback:O=>cs.createScript(O)})}function Af(t){return t===pb?1:0}function S_({context:t=Xe,endowments:e=Xe,instrumentation:n=Xe,key:i,type:s=Af(i),verboseInstrumentation:l=!1}){let u=Jc[i];if(u)return u;const p=n!==Xe&&typeof n=="object"&&n!==null,L=af(h_);u={BASIC_INSTRUMENTATION_DATA:p?{sandboxKey:i}:Xe,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:p,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:l&&p,UNCOMPILED_CONTEXT:mb,context:t,document:Do,distortions:L,endowments:e,globalObject:je,helpers:Yc,instrumentation:n,key:i,root:Xe,sandboxEvaluator:Wt,trackAsFastTarget:Wt,type:s,virtualEnvironmentEvaluator:Wt};const E=Bp(u);u.root=u,u.sandboxEvaluator=Kp(u),u.trackAsFastTarget=Vp(E),u.virtualEnvironmentEvaluator=zp(u,E);const N=sp(u,ap(u));for(let O=0,{length:H}=N;O<H;O+=1){const{0:J,1:x}=N[O];L.set(J,x)}return Jc[i]=u,u}function Cf({globalObject:t,key:e,type:n=Af(e)},i){const s=f_(t);let l=s[e];if(l)return l;const{BASIC_INSTRUMENTATION_DATA:u,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:p,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:L,distortions:E,instrumentation:N}=i;l={BASIC_INSTRUMENTATION_DATA:u,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:p,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:L,UNCOMPILED_CONTEXT:Xe,context:Xe,document,distortions:hb,endowments:Xe,globalObject:t,helpers:Yc,instrumentation:N,key:e,root:i,sandboxEvaluator:Wt,trackAsFastTarget:Wt,type:n,virtualEnvironmentEvaluator:Wt};const{location:O}=t;E.set(O,O),wf.has(t)||E.set(t,t);const H=db(l),J=H(l),x=J[0];return E.set(x,lf(l,H,J[1],x)),s[e]=l,l}function Pf({globalObject:t,document:e,context:n=Xe,key:i,type:s=Af(i)},l){const u=d_(e);let p=u[i];if(p)return p;const{BASIC_INSTRUMENTATION_DATA:L,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:E,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:N,distortions:O,instrumentation:H}=l,{location:J}=t,x=af();p={BASIC_INSTRUMENTATION_DATA:L,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:E,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:N,UNCOMPILED_CONTEXT:{[Dn]:J,[Lr]:t.top},context:n,document:e,distortions:x,endowments:Xe,globalObject:t,helpers:Yc,instrumentation:H,key:i,root:l,sandboxEvaluator:Wt,trackAsFastTarget:Wt,type:s,virtualEnvironmentEvaluator:Wt};const Z=Bp(p);p.sandboxEvaluator=Kp(p),p.trackAsFastTarget=Vp(Z),p.virtualEnvironmentEvaluator=zp(p,Z),O.set(e,e),O.set(J,J);const st=wf.has(t);st||O.set(t,t);const Pt=sp(p,ap(p));for(let K=0,{length:it}=Pt;K<it;K+=1){const{0:Tt,1:Nt}=Pt[K];O.set(Tt,Nt)}const wt=fb(p),$t=wt(p),U=$t[0];if(O.set(U,lf(p,wt,$t[1],U)),x.set(U,U),u[i]=p,st)return p;wf.add(t);const z=()=>{try{const{document:K}=t;e!==K&&Pf({context:Xe,document:K,globalObject:t,key:i,type:s},l)}catch(K){Cf({globalObject:t,key:i,type:s},l)}},Mt=c(ac,t,[]);return Mt?c(lo,Mt,["load",z,!0]):c(lo,t,["unload",function K(){gu(()=>{try{const{document:it}=t;e!==it&&(c(lo,t,["DOMContentLoaded",z,!0]),c(lo,t,["unload",K,!0]))}catch(it){Cf({globalObject:t,key:i,type:s},l)}})},!0]),p}function qp(t){const{document:e,context:n,endowments:i,globalObject:s,instrumentation:l,key:u,source:p,sourceType:L,type:E,verboseInstrumentation:N}=t;if(typeof u!="string")throw new bt(In);const{BASIC_INSTRUMENTATION_DATA:O,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:H,helpers:J,virtualEnvironmentEvaluator:x}=s===je?S_({context:n,endowments:i,instrumentation:l,key:u,type:E,verboseInstrumentation:N}):Pf({context:n,document:e,globalObject:s,key:u,type:E},Jc[u]);if(n!==Xe){if(ke(n,"renderer")&&ke(n,"rendererFactory")){const{rendererFactory:$t}=n;let U=jp.get($t);U===void 0&&(U=x(`'use strict'; |
| | | (${c(Hn,$t,[])})`)(n.renderer),jp.set($t,U)),n.renderer=U,fe(n,"rendererFactory")}df(n)}J!==Yc&&cp(J);let Z;const st=u_(p,L),Pt=H?l.startActivity:void 0;let wt;H&&(wt=Pt("evaluateInSandbox",O));try{Z=x(st)}catch($t){throw H&&wt.error({sandboxKey:u,error:$t}),$t}finally{ff(),lp()}return H&&wt.stop(),Z}function g_(t,e,n=Xe,i=Xe,s=Xe,l=!1){return qp({context:n,document:Do,endowments:i,globalObject:je,instrumentation:s,key:t,source:e,sourceType:1,type:0,verboseInstrumentation:l})}const y_=globalThis.LWR.define;function L_(t){return Reflect.defineProperty(t,Symbol.for("@@lockerLiveValue"),{}),t}function b_(t,e,n){let i;const s=`"use strict";$lockerEvalContext$(${n.toString()}); |
| | | //# sourceURL=modules/${e}.js |
| | | `;return g_(t,s,l=>{i=l}),i}function $_(t,e,n,i){const[s,l]=t.split("/");if(i.includes(s)||i.includes(`${s}/*`)||i.includes(`${s}/${l}`))return n;const u=b_(s,t,n),p=e.indexOf("exports");return p>=0?function(...L){const E=L.map((N,O)=>O===p&&L_(N)||N);return u.apply(this,E)}:u}function __(t){globalThis.LWR=Object.freeze(Object.assign(Object.assign({},globalThis.LWR),{define:function(e,n,i,s){typeof n=="function"&&(s=i,i=n,n=[]),y_(e,n,$_(e,n,i,t),s)}}))}Ot.registerLockerDefine=__,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("lwr/metrics/v/0_9_0",["exports"],function(Ot){"use strict";const Ee="lwr.bootstrap.",c=`${Ee}end`,We=`${Ee}error`,Se=`${We}.count`,fe=`${Ee}duration`,Ht="lwr.loader.",yt=`${Ht}module.define`,Ct=`${yt}.count`,oe=`${Ht}module.fetch`,pt=`${oe}.count`,bn=`${oe}.duration`,un=`${Ht}module.error`,Dt=`${un}.count`,It=`${Ht}mappings.fetch`,Jn=`${It}.count`,Fe=`${It}.duration`,Ve=`${Ht}mappings.error`,So=`${Ve}.count`,Fn="lwr.router.",ur=`${Fn}navigate`,vi=`${ur}.count`,ze=`${ur}.duration`,Pn=`${Fn}view`,ge=`${Pn}.duration`,go=`${Fn}error`,fr=`${go}.count`;Ot.BOOTSTRAP_DURATION=fe,Ot.BOOTSTRAP_END=c,Ot.BOOTSTRAP_ERROR=We,Ot.BOOTSTRAP_ERROR_COUNT=Se,Ot.BOOTSTRAP_PREFIX=Ee,Ot.LOADER_PREFIX=Ht,Ot.MAPPINGS_ERROR=Ve,Ot.MAPPINGS_ERROR_COUNT=So,Ot.MAPPINGS_FETCH=It,Ot.MAPPINGS_FETCH_COUNT=Jn,Ot.MAPPINGS_FETCH_DURATION=Fe,Ot.MODULE_DEFINE=yt,Ot.MODULE_DEFINE_COUNT=Ct,Ot.MODULE_ERROR=un,Ot.MODULE_ERROR_COUNT=Dt,Ot.MODULE_FETCH=oe,Ot.MODULE_FETCH_COUNT=pt,Ot.MODULE_FETCH_DURATION=bn,Ot.ROUTER_ERROR=go,Ot.ROUTER_ERROR_COUNT=fr,Ot.ROUTER_NAV=ur,Ot.ROUTER_NAV_COUNT=vi,Ot.ROUTER_NAV_DURATION=ze,Ot.ROUTER_PREFIX=Fn,Ot.ROUTER_VIEW=Pn,Ot.ROUTER_VIEW_DURATION=ge,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("lwr/init/v/0_9_0",["exports","lwr/metrics/v/0_9_0","lwr/profiler/v/0_9_0","lwc/v/2_41_4"],function(Ot,Ee,c,We){"use strict";function Se(oe,pt){return We.createElement(oe,{is:pt})}function fe(oe){return oe.replace(/\/v\/[a-zA-Z0-9-_.]+$/,"").replace("/","-").replace(/([A-Z])/g,pt=>`-${pt.toLowerCase()}`)}const Ht=/-([a-z])/g;function yt(oe){return oe.replace(Ht,pt=>pt[1].toUpperCase())}function Ct(oe){if(typeof customElements!="undefined"&&typeof document!="undefined"){const pt=document.querySelector("[lwr-root]");oe.forEach(([bn,un])=>{const Dt=fe(bn);let It=document.body.querySelector(Dt);It?document.querySelectorAll(Dt).forEach(Fe=>{const Ve=Se(Dt,un);for(const{name:So,value:Fn}of Fe.attributes){Ve.setAttribute(So,Fn);const ur=yt(So);ur in Ve&&(Ve[ur]=Fn)}for(;Fe.childNodes.length>0;)Ve.appendChild(Fe.childNodes[0]);Fe.parentElement.replaceChild(Ve,Fe)}):(It=Se(Dt,un),pt?pt.appendChild(It):document.body.appendChild(It))})}c.logOperationStart({id:Ee.BOOTSTRAP_END})}Ot.getPropFromAttrName=yt,Ot.init=Ct,Ot.toKebabCase=fe,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("webruntime/dynamicImportResourceHook/v/1_66_319-244_0",["exports","@app/basePath/v/1","@app/versionKey/v/1"],function(Ot,Ee,c){"use strict";function We(yt){return yt&&typeof yt=="object"&&"default"in yt?yt:{default:yt}}var Se=We(Ee),fe=We(c);function Ht(yt){const Ct="@salesforce/resourceUrl/",oe="resourceUrl://";yt.addLoaderPlugin({resolveModule:async pt=>pt.startsWith(Ct)?{url:`${oe}${pt}`}:null,loadModule:async pt=>{if(pt.startsWith(oe)){const bn=pt.split("/"),un=bn[bn.length-1];return{data:`LWR.define('${Ct}${un}', ['exports'], function(exports) { |
| | | exports.default = '${Se.default}/webruntime/org-asset/${fe.default}/resource-name/${un}'; |
| | | });`,status:200}}return null}})}Ot.default=Ht,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("webruntime/o11yHook/v/1_66_319-244_0",["exports","lwr/loaderLegacy/v/0_9_0","@app/basePath/v/1","@app/apiBasePath/v/1","@salesforce/i18n/lang/v/1","webruntime/dispatcher/v/1","@app/o11yConfiguration/v/1","@app/o11yGuestToken/v/1","@app/isDesignMode/v/1","@app/isMobileAppMode/v/1","@app/isPreviewMode/v/1","@app/versionKey/v/1","@salesforce/site/Id/v/1"],function(Ot,Ee,c,We,Se,fe,Ht,yt,Ct,oe,pt,bn,un){"use strict";function Dt(_){return _&&typeof _=="object"&&"default"in _?_:{default:_}}var It=Dt(c),Jn=Dt(We),Fe=Dt(Se),Ve=Dt(fe),So=Dt(Ht),Fn=Dt(yt),ur=Dt(Ct),vi=Dt(oe),ze=Dt(pt),Pn=Dt(bn),ge=Dt(un);function go(_,o){var a=Object.keys(_);if(Object.getOwnPropertySymbols){var d=Object.getOwnPropertySymbols(_);o&&(d=d.filter(function(m){return Object.getOwnPropertyDescriptor(_,m).enumerable})),a.push.apply(a,d)}return a}function fr(_){for(var o=1;o<arguments.length;o++){var a=arguments[o]!=null?arguments[o]:{};o%2?go(Object(a),!0).forEach(function(d){Hl(_,d,a[d])}):Object.getOwnPropertyDescriptors?Object.defineProperties(_,Object.getOwnPropertyDescriptors(a)):go(Object(a)).forEach(function(d){Object.defineProperty(_,d,Object.getOwnPropertyDescriptor(a,d))})}return _}function Hl(_,o,a){return o=Me(o),o in _?Object.defineProperty(_,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):_[o]=a,_}function Me(_){var o=fn(_,"string");return typeof o=="symbol"?o:String(o)}function fn(_,o){if(typeof _!="object"||_===null)return _;var a=_[Symbol.toPrimitive];if(a!==void 0){var d=a.call(_,o||"default");if(typeof d!="object")return d;throw new TypeError("@@toPrimitive must return a primitive value.")}return(o==="string"?String:Number)(_)}const Qn={};var ke=Object.freeze({__proto__:null,_o11y:Qn});class V{constructor(o){if(this._lazyMap=new Map,o!==void 0){if(typeof o=="number"&&o>0){this._maxSize=Math.ceil(o);return}throw new Error("maxSize must be a positive number")}}get maxSize(){return this._maxSize}get size(){return this._lazyMap.size}push(o,a){let d=this._lazyMap.get(o);if(!d){if(this.maxSize!==void 0&&this.size===this.maxSize)return!1;d=new Array,this._lazyMap.set(o,d)}return d.push(a),!0}getMessages(o,a){const d=this._lazyMap.get(o);return a&&this._lazyMap.has(o)&&this._lazyMap.set(o,[]),d||[]}getAllMessages(o){const a=new Map;for(const[d,m]of this._lazyMap.entries())m.length&&a.set(d,this.getMessages(d,o));return a}extractMessages(o){return this.getMessages(o,!0)}extractAllMessages(){return this.getAllMessages(!0)}get totalItemCount(){let o=0;for(const a of this._lazyMap.values())o+=a.length;return o}}class de{constructor(){this.notImplemented="Method not implemented.";const o=typeof performance!="undefined";o?performance.timeOrigin?this._timeOrigin=performance.timeOrigin:this._timeOrigin=Date.now():this._timeOrigin=Date.now();const a=this._timeOrigin;o&&typeof performance.now=="function"?(this.perfNow=performance.now.bind(performance),this.time=()=>{const d=this.perfNow();return{tsNow:a+d,perfNow:d,timeOrigin:a}}):(this.perfNow=()=>Date.now()-a,this.time=()=>{const d=this.perfNow();return{tsNow:Date.now(),perfNow:d,timeOrigin:a}})}get isProduction(){return de._isProduction}markProduction(){de._isProduction=!0}_checkArgument(o,a){if(typeof a=="string")return typeof o===a;if(typeof a=="function")return o instanceof a;if(Array.isArray(a))return a.some(d=>this._checkArgument(o,d));throw new Error(`Invalid argKind ${a}`)}requireArgument(o,a,d){let m=o==null||o==="";const g=d!==void 0;if(!m&&g&&(m=!this._checkArgument(o,d)),m)throw new Error(`${a} argument is required${g?" and must be of a supported type.":"."}`)}requireArgumentIfDefined(o,a,d){if(o===void 0)return!1;if(o===null||o===""||!this._checkArgument(o,d))throw new Error(`${a} argument, if defined, must be of a supported type.`);return!0}checkForDenyListedValues(o,a,d){if(d.some(m=>o===m))throw new Error(`The value ${o} isn't allowed for ${a} argument.`)}checkForReservedCharacters(o,a,d){if(o&&d.some(m=>o.indexOf(m)>=0))throw new Error(`The argument ${a} isn't allowed to contain characters from ['${d.join(", ")}']. Received: ${o}.`)}generateUniqueId(o=16){const a=[],d="0123456789abcdef";if(!(o===void 0||o>0))throw new Error('If specified, the argument "length" must be a positive integer');for(let m=0;m<o;m++){const g=Math.floor(Math.random()*16);a.push(d[g])}return a.join("")}getXpath(o){function a(g){const T=g.localName;for(;g.nextElementSibling;)if(g=g.nextElementSibling,g.localName===T)return!0;return!1}function d(g,T){return g?d(g.previousElementSibling,T||g.localName)+(g.localName===T?1:0):1}function m(g){if(!g||g.nodeType!==1)return[""];const T=d(g)>1||a(g)?`${g.localName.toLowerCase()}[${d(g)}]`:g.localName.toLowerCase();return[...m(g.parentNode),T]}return m(o).join("/")}getAge(o){return o-this._timeOrigin}getConnectionType(){var o;let a;if(typeof navigator!="undefined"){const d=navigator;a=(o=d==null?void 0:d.connection)===null||o===void 0?void 0:o.effectiveType}return a}clone(o){return JSON.parse(JSON.stringify(o))}definedValueOrDefault(o,a){return o!==void 0?o:a}getGlobal(){if(typeof globalThis=="object")return globalThis;if(typeof self=="object")return self;throw new Error("Unable to locate globalThis or self")}getIsBeaconSupported(){var o;const a=this.getGlobal();return typeof((o=a.navigator)===null||o===void 0?void 0:o.sendBeacon)=="function"&&typeof a.Blob=="function"}estimateObjectSize(o){const a=new Set,d=[o];let m=0;for(;d.length;){const g=d.pop();if(typeof g=="boolean")m+=4;else if(typeof g=="string")m+=g.length*2;else if(typeof g=="number")m+=8;else if(g instanceof Uint8Array||g instanceof Uint8ClampedArray||g instanceof Uint16Array||g instanceof Uint32Array||g instanceof Int8Array||g instanceof Int16Array||g instanceof Int32Array||g instanceof Float32Array||g instanceof Float64Array)m+=g.byteLength;else if(typeof g=="object"){const T=g;if(!a.has(T)){a.add(T);for(const j in T)d.push(T[j])}}}return m}noProdThrow(o){if(!k.isProduction)throw o}}de._isProduction=!1;const k=Object.freeze(new de);class dr{constructor(o){this._errorCounter=o,this._safeCatchMode=!1}tryCatch(o){try{o()}catch(a){this._prodSafeCatch(a)}}tryCatchReturn(o,a){try{return k.requireArgument(a,"noopValue"),o()}catch(d){return this._prodSafeCatch(d),a}}_prodSafeCatch(o){let a;try{if(a=!k.isProduction,a)throw o;if(this._safeCatchMode)throw this._safeCatchMode=!1,new Error("Internal error in prodSafeCatch.");if(this._safeCatchMode=!0,this._errorCounter&&this._errorCounter.increment(),!(o instanceof Error)){const d=o&&o.message||(typeof o.toString=="function"?o.toString():"");o=new Error(d)}this._safeCatchMode=!1}catch(d){if(a)throw d;if(d&&console&&typeof console.error=="function")try{console.error(d)}catch(m){}this._safeCatchMode=!1}}}class Ul{getSchemaId(o){return`${o.namespace}.${o.name}`}isInternal(o){return(o==null?void 0:o.namespace)==="sf.instrumentation"}makePayload(o,a,d=!0){if(!d||o!==void 0&&a!==void 0)return{schema:o,payload:a}}checkSchema(o){k.requireArgument(o,"schema","object"),k.requireArgument(o.namespace,"schema.namespace","string"),k.requireArgument(o.name,"schema.name","string"),k.requireArgument(o.pbjsSchema,"schema.pbjsSchema","object");const a=o.namespace.split(".");if(a.length!==2)throw new Error(`Schema "${this.getSchemaId(o)}" must have a namespace of the form "domain.feature".`);return{domain:a[0],feature:a[1],message:o.name}}_getAnyNestedObject(o,a){return a.reduce((d,m)=>{const g=d.nested;if(g){const T=g[m];if(T)return T}throw new Error(`Cannot locate ${a.join(".")} in schema with ID ${this.getSchemaId(o)}`)},o.pbjsSchema)}getTypes(o){const a=this.checkSchema(o),m=this._getAnyNestedObject(o,[a.domain,a.feature]).nested;if(!m)throw new Error(`Cannot parse schema with ID ${this.getSchemaId(o)}`);return m}getType(o,a){k.requireArgument(a,"messageName","string");const m=this.getTypes(o)[a];if(!m)throw new Error(`Cannot locate message ${a} in schema with ID ${this.getSchemaId(o)}`);return m}getOptions(o,a,d){d&&k.requireArgument(a,"messageName","string");const m=this.checkSchema(o);if(!a)return this._getAnyNestedObject(o,[m.domain,m.feature]).options;const g=this.getType(o,a);if(!d)return g.options;const T=g.fields[d];if(!T){const j=this.getSchemaId(o);throw new Error(`Cannot locate field ${d} in message ${a} in schema with ID ${j}`)}return T.options}}const ee=new Ul;var On=Object.freeze({__proto__:null,LazyMapToList:V,PublicSafety:dr,schemaUtil:ee,utility:k});const pr={namespace:"sf.instrumentation",name:"Activity",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Activity:{reserved:[[5,5],[7,7]],fields:{duration:{id:3,type:"double"},stopReason:{id:6,type:"string"},isRoot:{id:8,type:"bool"},timerOverridden:{id:12,type:"uint32"},name:{options:{"(meta.max_length)":25},id:2,type:"string"},isSampled:{id:11,type:"bool"},preRootId:{id:9,type:"string"},id:{id:1,type:"string"},userPayload:{id:4,type:"Payload"},errorCount:{id:10,type:"uint32"},parentId:{id:13,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},ba={namespace:"sf.instrumentation",name:"Error",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Error:{reserved:[[5,5],[7,7]],fields:{activityId:{id:6,type:"string"},stack:{id:3,type:"string"},name:{id:1,type:"string"},message:{options:{"(meta.max_length)":200},id:2,type:"string"},userPayload:{id:4,type:"Payload"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},$a={namespace:"sf.instrumentation",name:"IdleDetectorReport",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{IdleDetectorReport:{fields:{listenerCount:{id:3,type:"uint32"},busyTasks:{rule:"repeated",id:5,type:"string"},busyDurations:{rule:"repeated",id:6,type:"double"},pollableCount:{id:4,type:"uint32"},pollCounts:{rule:"repeated",id:8,type:"double"},logThreshold:{id:2,type:"double"},maxDuration:{id:1,type:"double"},pollables:{rule:"repeated",id:7,type:"string"}}}}}}}}}},jl={namespace:"sf.instrumentation",name:"InstrumentedEvent",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{MouseEvent:{fields:{cancelable:{id:5,type:"bool"},ctrlKey:{id:9,type:"bool"},type:{id:25,type:"string"},button:{id:3,type:"uint32"},offsetX:{id:17,type:"uint32"},eventPhase:{id:12,type:"uint32"},shiftKey:{id:23,type:"bool"},offsetY:{id:18,type:"uint32"},composed:{id:8,type:"bool"},altKey:{id:1,type:"bool"},isTrusted:{id:13,type:"bool"},buttons:{id:4,type:"uint32"},movementY:{id:16,type:"uint32"},clientY:{id:7,type:"uint32"},clientX:{id:6,type:"uint32"},movementX:{id:15,type:"uint32"},defaultPrevented:{id:10,type:"bool"},metaKey:{id:14,type:"bool"},timeStamp:{id:24,type:"double"},bubbles:{id:2,type:"bool"},detail:{id:11,type:"int64"},pageY:{id:20,type:"uint32"},pageX:{id:19,type:"uint32"},screenX:{id:21,type:"uint32"},screenY:{id:22,type:"uint32"}}},InstrumentedEvent:{oneofs:{event:{oneof:["mouseEvent"]}},reserved:[[4,4],"xpath",[6,6],[8,8]],fields:{mouseEvent:{id:7,type:"MouseEvent"},auto:{id:3,type:"bool"},parentComponent:{id:2,type:"string"},ownerComponent:{id:1,type:"string"},userPayload:{id:5,type:"Payload"},simplePath:{id:9,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},lt={namespace:"sf.instrumentation",name:"Simple",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Simple:{fields:{text:{options:{"(meta.max_length)":25},id:1,type:"string"}}}}}}}}}};class Lt{get isBusy(){return this._isOk?this._busyCount>0:void 0}constructor(o,a,d,m){this.name=o,this._doneCallback=d,this._overDoneCallback=m,this._busyCount=0,this._isOk=!0,this._busyCount=a}add(){this._isOk&&(this._busyCount+=1)}done(){this._isOk&&(this._busyCount>0?(this._busyCount-=1,this._busyCount||this._doneCallback()):(this._isOk=!1,this._overDoneCallback()))}}const hr=300;class mr{constructor(o){this._taskers=new Map,this._listeners=new Set,this._busyCheckers=new Map,this._logThreshold=hr,this._endedTasks=new Array,this._pollableReport=new Array,k.requireArgumentIfDefined(o==null?void 0:o.logThreshold,"options.logThreshold","number")&&(this._logThreshold=o.logThreshold),k.requireArgumentIfDefined(o==null?void 0:o.reportListener,"options.reportListener","function")&&(this._reportListener=o.reportListener),k.requireArgumentIfDefined(o==null?void 0:o.errorListener,"options.errorListener","function")&&(this._errorListener=o.errorListener)}requestIdleDetectedCallback(o){k.requireArgument(o,"callback","function"),this._listeners.size===0&&(this._firstCallbackTime=k.time().perfNow),this._listeners.add(o),this._checkIfLoaded()}_reportTaskEnded(o){if(this._listeners.size){const a=Object.assign({},this._taskers.get(o));this._endedTasks.push(a)}}declareNotifierTaskSingle(o){k.requireArgument(o,"name","string");const a=this._addTasker(o,1);return{get isBusy(){return a.isBusy},done:()=>{a.done(),this._taskers.delete(a)}}}declareNotifierTaskMulti(o,a=0){if(k.requireArgument(o,"name","string"),a!==void 0&&(k.requireArgument(a,"existingBusyCount","number"),!Number.isInteger(a)||a<0))throw new Error("existingBusyCount accepts only non-negative integers");const d=this._addTasker(o,a);return{get isBusy(){return d.isBusy},add:()=>{if(!d.isBusy){const g=this._taskers.get(d);g.start=k.time().perfNow,g.end=void 0}d.add()},done:d.done.bind(d)}}declarePollableTaskMulti(o,a){k.requireArgument(o,"name","string"),k.requireArgument(a,"isBusyChecker","function"),this._busyCheckers.set(a,o)}_addTasker(o,a){const d=new Lt(o,a,()=>{this._taskers.get(d).end=k.time().perfNow,this._reportTaskEnded(d),this._checkIfLoaded()},()=>{var m;(m=this._errorListener)===null||m===void 0||m.call(this,`Overdone: ${d.name}`),k.noProdThrow(`Tasker '${d.name}' is done too many times.`)});return this._taskers.set(d,{name:o,start:a>0?k.time().perfNow:void 0,end:void 0}),d}_areAllNotifiersIdle(){return!Array.from(this._taskers.keys()).some(o=>o.isBusy)}_getFirstBusyPollable(){const o=Array.from(this._busyCheckers).find(a=>{var d;const m=a[0],g=a[1];try{return m()}catch(T){return(d=this._errorListener)===null||d===void 0||d.call(this,T,`BusyChecker ${g}`),k.noProdThrow(T),!1}});return o?o[1]:void 0}_checkIfLoaded(){!this._listeners.size||(this._timerCheckQueued&&clearTimeout(this._timerCheckQueued),this._areAllNotifiersIdle()&&(this._timerCheckQueued=setTimeout(()=>{this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},40)},0)))}_doubleCheck(){if(this._timerCheckQueued=void 0,this._areAllNotifiersIdle()){const o=this._getFirstBusyPollable();if(o!==void 0)this._addToPollableReport(o),this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},15);else{const a=k.time().perfNow-this._firstCallbackTime,d=Array.from(this._listeners.values());this._listeners.clear(),this._firstCallbackTime=void 0;const m=this._endedTasks.splice(0),g=this._pollableReport.splice(0);this._notify(d,a,m,g)}}}_addToPollableReport(o){const a=this._pollableReport.length?this._pollableReport[this._pollableReport.length-1]:void 0;(a==null?void 0:a.name)===o?a.count+=1:this._pollableReport.push({name:o,count:1})}_notify(o,a,d,m){var g;if(a>=this._logThreshold&&this._reportListener){const j=this._getReport(a,o.length,d,m);this._reportListener(j)}o.reverse();const T=k.time().tsNow;for(const[j,rt]of o.entries())try{rt(T)}catch(q){(g=this._errorListener)===null||g===void 0||g.call(this,q,`Listener #${o.length-1-j}`),k.noProdThrow(q)}}getReport(){const o=k.time().perfNow,a=this._firstCallbackTime>0?o-this._firstCallbackTime:void 0,d=Array.from(this._taskers.entries()).filter(m=>m[0].isBusy).map(m=>({name:m[1].name,start:m[1].start,end:o}));return this._getReport(a,this._listeners.size,this._endedTasks.concat(d),this._pollableReport)}_getReport(o,a,d,m){const g=d.map(T=>({name:T.name,duration:T.end-T.start})).sort((T,j)=>j.duration-T.duration);return{logThreshold:this._logThreshold,maxDuration:o,listenerCount:a,pollableCount:this._busyCheckers.size,busyTasks:g.map(T=>T.name),busyDurations:g.map(T=>T.duration),pollables:m.map(T=>T.name),pollCounts:m.map(T=>T.count)}}}const Gn=32,Es=16,Ws=16,_a="traceparent",Sr="b3",Ea="X-B3-TraceId",yo="X-B3-SpanId",Ts="X-B3-Sampled",Wa="X-B3-ParentSpanId",vs="fetch",wi="xhr_send";class Et{constructor(o,a){this._instr=o,this._idleDetector=a,k.requireArgument(o,"_instr","object"),k.requireArgument(a,"_idleDetector","object")}static _getB3CompactFormat(o,a,d,m){let g=`${o}-${a}`;return(d!==void 0||m!==void 0)&&(g+=d?"-1":"-0",m!==void 0&&(g+=`-${m}`)),g}static _getW3CompactFormat(o,a,d){return`00-${o}-${a}-${d?"01":"00"}`}static _conformTextAsId(o,a){o=o.toLowerCase();const d=o.length;for(let m=0;m<d;m+=1){const g=o[m];if(!(g>="a"&&g<="f")&&!(g>="0"&&g<="9"))throw new Error(`The text '${o}' has an invalid character at index #${m}`)}return d>a?o.substr(d-a):d<a?o.padStart(a,"0"):o}static getHeaders(o,a,d,m){k.requireArgument(o,"traceId","string"),k.requireArgument(a,"spanId","string");const g=m==null?void 0:m.useB3Headers;o=this._conformTextAsId(o,(m==null?void 0:m.traceIdEffectiveLength)!==void 0?m.traceIdEffectiveLength:g?Es:Gn),a=this._conformTextAsId(a,Ws);const T=m&&m.parentSpanId!==void 0&&this._conformTextAsId(m.parentSpanId,Ws)||void 0,j={};return g?(m==null?void 0:m.useCompactHeader)?j[Sr]=this._getB3CompactFormat(o,a,d,T):(j[Ea]=o,j[yo]=a,T!==void 0&&(j[Wa]=T),d!==void 0&&(j[Ts]=d?"1":"0")):j[_a]=this._getW3CompactFormat(o,a,d),j}_disableNetworkInstrumentation(){Et._isNetworkInstrumentationEnabled&&(Et._originalFetch&&(Et._global.fetch=Et._originalFetch,Et._originalFetch=void 0),Et._originalXhr&&(Et._global.XMLHttpRequest=Et._originalXhr,Et._originalXhr=void 0),Et._originalXhrOpen&&(Et._global.XMLHttpRequest.prototype.open=Et._originalXhrOpen,Et._originalXhrOpen=void 0),Et._originalXhrSend&&(Et._global.XMLHttpRequest.prototype.send=Et._originalXhrSend,Et._originalXhrSend=void 0),Et._isNetworkInstrumentationEnabled=!1)}_enableNetworkInstrumentation(o,a,d,m,g,T){typeof Et._global.fetch=="function"&&(this._overrideFetch(o,a,d,m,g,T),Et._isNetworkInstrumentationEnabled=!0),typeof Et._global.XMLHttpRequest=="function"&&(this._overrideXhr(o,a,d,m,g,T),Et._isNetworkInstrumentationEnabled=!0)}static _getTraceHeaders(o,a,d,m){let g=(o==null?void 0:o.getTraceHeaders(a))||{};if(typeof(a==null?void 0:a.headerProcessor)=="function")g=a.headerProcessor({method:d,url:m,defaultHeaders:g});else if(typeof window=="object"){let T;try{T=new URL(m)}catch(j){}T&&T.host!==window.location.host&&(g=void 0)}return g||{}}_overrideFetch(o,a,d,m,g,T){Et._originalFetch=Et._global.fetch;const j=async(rt,q,...At)=>{let gt;try{T==null||T.add();const Rt=q==null?void 0:q.o11y;if(!(Rt==null?void 0:Rt.skipInstr))gt=o.startActivity(d||vs);else{Et._reqIndex+=1;try{if(rt instanceof URL)rt.searchParams.append("o11y",Et._reqIndex.toString());else if(typeof rt=="string"){const Ut=new URL(rt),Pe=`o11y=${Et._reqIndex}`;Ut.search+=Ut.search.startsWith("?")?`&${Pe}`:Pe,rt=Ut.toString()}}catch(Ut){}}if(q==null||delete q.o11y,m){let Ut=q==null?void 0:q.method,Pe=rt==null?void 0:rt.toString();rt instanceof Request&&(Ut||(Ut=rt.method),Pe=rt.url);const En=Et._getTraceHeaders(gt,g,Ut,Pe);!this._applyTraceHeaders(rt,q,En)&&q===void 0&&(q={headers:En})}return await Et._originalFetch.call(Et._global,rt,q,...At)}catch(Rt){throw a&&(gt?gt.error(Rt):o.error(Rt)),Rt}finally{gt==null||gt.stop(),T==null||T.done()}};Et._global.fetch=j}_overrideXhr(o,a,d,m,g,T){Et._originalXhr=Et._global.XMLHttpRequest,Et._originalXhrOpen=Et._originalXhr.prototype.open,Et._originalXhrSend=Et._originalXhr.prototype.send,Et._originalXhr.prototype.open=function(rt,q,At,gt,Rt){this._o11y={method:rt,url:q==null?void 0:q.toString()},Et._originalXhrOpen.call(this,rt,q,At,gt,Rt)},Et._originalXhr.prototype.send=function(...rt){let q;try{T==null||T.add();const At=this;if(At._o11y=At._o11y||{},At._o11y.activity=q=o.startActivity(d||wi),m){const gt=Et._getTraceHeaders(q,g,At._o11y.method,At._o11y.url);Object.entries(gt).forEach(Rt=>{At.setRequestHeader(Rt[0],Rt[1])})}Et._originalXhrSend.call(this,...rt)}catch(At){throw a&&(q?q.error(At):o.error(At)),q==null||q.stop(),T==null||T.done(),At}};const j=new Proxy(Et._originalXhr,{construct(rt){const q=new rt;return q.addEventListener("load",()=>{var At,gt;(gt=(At=q._o11y)===null||At===void 0?void 0:At.activity)===null||gt===void 0||gt.stop(),T==null||T.done()}),q.addEventListener("error",At=>{var gt;const Rt=new Error("XHR Network-Level Error"),Ut=(gt=q._o11y)===null||gt===void 0?void 0:gt.activity;Ut?(a&&Ut.error(Rt),Ut.stop()):a&&o.error(Rt),T==null||T.done()}),q.addEventListener("abort",()=>{var At,gt;(gt=(At=q._o11y)===null||At===void 0?void 0:At.activity)===null||gt===void 0||gt.discard(),T==null||T.done()}),q}});Et._global.XMLHttpRequest=j}networkInstrumentation(o){var a;if(k.requireArgument(o,"options",["boolean","object"]),this._disableNetworkInstrumentation(),o){const d=typeof o=="object"?o:{};let m;k.definedValueOrDefault(d.useTasker,!0)&&(m=(a=this._idleDetector)===null||a===void 0?void 0:a.declareNotifierTaskMulti("o11y network")),this._enableNetworkInstrumentation(k.definedValueOrDefault(d.instrumentation,this._instr),k.definedValueOrDefault(d.logErrors,!0),d.activityName,k.definedValueOrDefault(d.useTracing,!0),d.tracingHeadersOptions,m)}}resetRequestCounter(){Et._reqIndex=0}_applyTraceHeaders(o,a,d){if((a==null?void 0:a.headers)!==void 0){if(a.headers instanceof Headers&&typeof a.headers.set=="function")return Object.entries(d).forEach(([m,g])=>{a.headers.set(m,g)}),!0;if(Array.isArray(a.headers))return Object.entries(d).forEach(m=>{a.headers.push(m)}),!0;if(typeof a.headers=="object")return a.headers=Object.assign(a.headers,d),!0}else{if(o instanceof Request&&o.headers instanceof Headers)return Object.entries(d).forEach(([m,g])=>{o.headers.set(m,g)}),!0;if(a)return a.headers=Object.assign({},d),!0}return!1}}Et._global=k.getGlobal(),Et._isNetworkInstrumentationEnabled=!1,Et._reqIndex=0;var $n;(function(_){_[_.none=0]="none",_[_.start=1]="start",_[_.stop=2]="stop",_[_.both=3]="both"})($n||($n={}));const ws="timedout",As="terminated",Cs="discarded",ye={timedout:ws,terminated:As,discarded:Cs};class Te{constructor(o,a,d,m,g,T,j){this._name=o,this._rootId=a,this._onStopped=d,this._onError=m,this._isSampled=j,this._errorCount=0,this._timerOverridden=$n.none;const{tsNow:rt,perfNow:q}=k.time();if(Te._count+=1,this._id=T||k.generateUniqueId(),this._usePerf=typeof performance!="undefined"&&typeof performance.mark=="function"&&typeof performance.measure=="function",this._usePerf){this._perfName=`${this._name}__${Te._count}`,this._perfId=`${this._name}__${this.id}`;try{performance.mark(this._perfId)}catch(At){this._usePerf=!1}}this._startTimestamp=rt,this._startPerfTime=q,g>0&&(this._timer=setTimeout(()=>{this._stopReason=this._stopReason||ye.timedout,this.stop()},g)),this._safety=new dr}get id(){return this._id}getId(){return this.id}getRootId(){return this._rootId}get stopReason(){return this._stopReason}error(o,a,d){this._safety.tryCatch(()=>{this._errorCount+=1,typeof o=="string"&&(o=new Error(o)),this._onError(o,this._getDetail(a,d))})}stop(o,a,d){this._safety.tryCatch(()=>{if(k.requireArgumentIfDefined(o,"userSchemaOrText",["object","string"]),k.requireArgumentIfDefined(a,"userData","object"),d){const m=d.perfStartOverride,g=k.requireArgumentIfDefined(m,"options.perfStartOverride","number"),T=d.perfStopOverride,j=k.requireArgumentIfDefined(T,"options.perfStopOverride","number");if(g&&m<0)throw new Error("perfStartOverride, if defined, must be >= 0");if(j&&(T<0||T<(g?m:this._startPerfTime)))throw new Error("perfStopOverride, if defined, must be >= 0 and >= startTime")}this._stopInternal(o,a,d)})}_overrideTimer(o,a){o!==void 0&&(this._startTimestamp=Math.round(this._startTimestamp-(this._startPerfTime-o)),this._startPerfTime=o,this._setTimerOverride($n.start)),a!==void 0&&(this._stopPerfTime=a,this._setTimerOverride($n.stop))}_setTimerOverride(o){this._timerOverridden===$n.both||this._timerOverridden===o||o===$n.none||(this._timerOverridden=this._timerOverridden===$n.none?o:$n.both)}_stopInternal(o,a,d){const m=k.perfNow();if(this._usePerf)try{this._stopReason!==ye.discarded&&performance.measure(this._perfName,this._perfId),performance.clearMarks(this._perfId),performance.clearMeasures(this._perfName)}catch(T){}if(this._timer&&(clearTimeout(this._timer),this._timer=void 0),this.isStopped)return;d&&this._overrideTimer(d.perfStartOverride,d.perfStopOverride),this._stopPerfTime=this._timerOverridden===$n.none||this._timerOverridden===$n.start?m:this._stopPerfTime;const g=this._getDetail(o,a);this._onStopped(g)}get isStopped(){return this._stopPerfTime!==void 0}discard(){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||ye.discarded,this.stop()})}terminate(o,a,d){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||ye.terminated,this.stop(o,a,d)})}getIsSampled(){return this._isSampled||!1}_getDetail(o,a){return{id:this._id,rootId:this._rootId,name:this._name,userSchemaOrText:o,userData:a,stopReason:this._stopReason,startTimestamp:this._startTimestamp,startPerfTime:this._startPerfTime,stopPerfTime:this._stopPerfTime,errorCount:this._errorCount,isSampled:this.getIsSampled(),timerOverridden:this._timerOverridden}}getTraceHeaders(o){const a=this.id,d=this._rootId||a;return Et.getHeaders(d,a,this.getIsSampled(),o)}getStartTimestamp(){return this._startTimestamp}getStartPerfTime(){return this._startPerfTime}getStopPerfTime(){return this._stopPerfTime}}Te._count=0;const gr=new Array(16).fill(0).join("");class Bl{getId(){return gr}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(o){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const Ta=Object.freeze(new Bl);class va{getInstrumentedEventData(o,a,d){var m;const g={ownerComponent:a.tagName,parentComponent:((m=a.parentElement)===null||m===void 0?void 0:m.tagName)||void 0,event:o,simplePath:k.getXpath(a)};return d&&(g.userPayload=ee.makePayload(d.schema,d.payload,!0)),g}getMouseEventData(o){return{altKey:o.altKey,bubbles:o.bubbles,button:o.button,buttons:o.buttons,cancelable:o.cancelable,clientX:o.clientX,clientY:o.clientY,composed:o.composed,defaultPrevented:o.defaultPrevented,detail:o.detail,eventPhase:o.eventPhase,isTrusted:o.isTrusted,timeStamp:o.timeStamp,type:o.type,ctrlKey:o.ctrlKey,metaKey:o.metaKey,movementX:o.movementX,movementY:o.movementY,offsetX:o.offsetX,offsetY:o.offsetY,pageX:o.pageX,pageY:o.pageY,screenX:o.screenX,screenY:o.screenY,shiftKey:o.shiftKey}}}const Ps=new va,Bo=1e4,Vo=1e4,Lo=0,Ai=2147483647,Os=-2147483648,Ci=4294967295,tn=9223372036854776e3,Rs=-9223372036854776e3,bo=18446744073709552e3;class yr{constructor(o,a,d,m){this.errorCode=o,this.fields=a,this.expected=d,this.received=m}asMessage(o){const a=this.fields[0]+this.fields.slice(1).reduce((m,g)=>Number(g)>=0?`${m}[${g}]`:`${m}.${g}`,"");let d;switch(this.errorCode){case 1:d="Repeated field must be an array";break;case 2:d=`Expected type ${this.expected} but received type ${this.received}`;break;case 3:d="Value must be finite";break;case 4:d="Value is out of range for its type";break;case 5:d="Bytes array is malformed";break;case 6:d="Exceeded app limit for maximum string length";break;case 7:d="Exceeded app limit for item count";break;case 12:d="Value must be an integer";break;case 13:d="Values like null or undefined are not allowed for items in repeated fields";break;default:d=`Unknown error code: ${this.errorCode}`;break}return`Schema ${o} on field "${a}": ${d}`}}class zo{validate(o,a,d=!1){const m=ee.checkSchema(o);k.requireArgument(a,"data","object");const g=ee.getSchemaId(o),T=new Array,j=ee.getTypes(o);if(this._validateFields(T,[],a,j[m.message],j,g),T.length&&!d)throw new Error(T[0].asMessage(g));return T}_validateFields(o,a,d,m,g,T){const j=m.oneofs||{},rt=m.fields||{};for(const q in d){const At=d[q];if(At!=null){const gt=(Rt,Ut,Pe)=>this._matchFieldTypes(o,[...a,q],At,Rt,g,T,q,Ut,Pe);j[q]?gt(rt[j[q].oneof[0]].type):rt[q]&>(rt[q].type,rt[q].rule==="repeated")}}}_matchFieldTypes(o,a,d,m,g,T,j,rt,q){let At;if(rt)Array.isArray(d)?(d.length>Vo&&(At=7),d.forEach((gt,Rt)=>{this._matchFieldTypes(o,[...a,Rt.toString()],gt,m,g,T,j,void 0,!0)})):At=1;else if(d==null||d===void 0)q&&(At=13);else{let gt,Rt;switch(m){case"string":Rt="string",d.length>Bo&&(At=6);break;case"bytes":Rt="object",d instanceof Uint8Array||(At=5);break;case"bool":Rt="boolean";break;case"uint32":Rt="number",gt={min:Lo,max:Ci,isInt:!0,isItem:q};break;case"int32":case"sint32":case"fixed32":case"sfixed32":Rt="number",gt={min:Os,max:Ai,isInt:!0,isItem:q};break;case"uint64":Rt="number",gt={min:Lo,max:bo,isInt:!0,isItem:q};break;case"fixed64":case"sfixed64":case"int64":case"sint64":Rt="number",gt={min:Rs,max:tn,isInt:!0,isItem:q};break;case"double":case"float":Rt="number",gt={min:Number.NEGATIVE_INFINITY,max:Number.POSITIVE_INFINITY,isInt:!1,isItem:q};break;default:new Set(Object.keys(g)).has(m)&&(this._validateFields(o,a,d,g[m],g,T),Rt="object");break}typeof d!==Rt?o.push(new yr(2,a,m,typeof d)):gt&&(gt.isInt&&!Number.isFinite(d)?At=3:gt.isInt&&!Number.isInteger(d)?At=12:!(!gt.isInt&&Number.isNaN(d))&&!(d>=gt.min&&d<=gt.max)&&(At=4))}At&&o.push(new yr(At,a))}}const Pi=new zo;class Aa{constructor(o,a,d,m,g){this._name=o,this._ownerName=a,this._ownerAppName=d,this._tags=m,this._buckets=g,this._values=new Array,this._createdOn=k.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}getBuckets(){return this.buckets}get buckets(){return this._buckets.slice(0,this._buckets.length)}get values(){return this._values.slice(0,this._values.length)}record(o){if(typeof o=="number"){this._values.push(o),this._lastUpdatedOn=k.time().tsNow;return}throw new Error("BucketHistogram can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class Ns{constructor(o,a,d,m){this._name=o,this._ownerName=a,this._ownerAppName=d,this._tags=m,this._value=0,this._createdOn=k.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this._value}increment(o=1){if(typeof o=="number"&&o>0){this._value+=Math.round(o),this._lastUpdatedOn=k.time().tsNow;return}throw new Error("UpCounter can only increment positive numbers.")}reset(){this._lastUpdatedOn=void 0,this._value=0}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class Ds{constructor(o,a,d,m){this._name=o,this._ownerName=a,this._ownerAppName=d,this._tags=m,this._values=new Array,this._createdOn=k.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}get values(){return this._values.slice(0,this._values.length)}record(o){if(typeof o=="number"){this._values.push(o),this._lastUpdatedOn=k.time().tsNow;return}throw new Error("ValueRecorder can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class Rn{constructor(o){if(this._map=new Map,typeof o=="number"&&o>0){this._maxSize=Math.ceil(o);return}throw new Error("maxSize must be a positive number")}get maxSize(){return this._maxSize}get(o){return this._map.get(o)}has(o){return this._map.has(o)}set(o,a){return this.has(o)||this._map.size<this.maxSize?(this._map.set(o,a),!0):!1}getElements(){return Array.from(this._map.values())}clear(){this._map.clear()}}const Oi=1e3,Nn=500,Ri=500;var Ge;(function(_){_[_.Counter=0]="Counter",_[_.Percentile=1]="Percentile",_[_.BucketHistogram=2]="BucketHistogram"})(Ge||(Ge={}));class Ni{constructor(o,a){this._ownerName=o,this._getOwnerAppName=a,this._upCounters=new Rn(Oi),this._valueRecorders=new Rn(Nn),this._bucketHistograms=new Rn(Ri)}incrementCounter(o,a,d=!1,m={}){this._tagError(m,d),this._upCounter(o,m).increment(a)}trackValue(o,a,d=!1,m={}){this._tagError(m,d),this._valueRecorder(o,m).record(a)}bucketValue(o,a,d,m=!1,g={}){this._tagError(g,m),this._bucketHistogram(o,g,d).record(a)}_bucketHistogram(o,a,d){const{key:m,sortedTags:g}=this._getKeyAndSortedTags(o,a,Ge.BucketHistogram);let T=this._bucketHistograms.get(m);if(!T&&(T=new Aa(o,this._ownerName,this._getOwnerAppName(),g,d),!this._bucketHistograms.set(m,T)))throw new Error(`Max size of ${Ri} exceeded for BucketHistograms`);return T}_upCounter(o,a){const{key:d,sortedTags:m}=this._getKeyAndSortedTags(o,a,Ge.Counter);let g=this._upCounters.get(d);if(!g&&(g=new Ns(o,this._ownerName,this._getOwnerAppName(),m),!this._upCounters.set(d,g)))throw new Error(`Max size of ${Oi} exceeded for UpCounters`);return g}_valueRecorder(o,a){const{key:d,sortedTags:m}=this._getKeyAndSortedTags(o,a,Ge.Percentile);let g=this._valueRecorders.get(d);if(!g&&(g=new Ds(o,this._ownerName,this._getOwnerAppName(),m),!this._valueRecorders.set(d,g)))throw new Error(`Max size of ${Nn} exceeded for ValueRecorders`);return g}getUpCounters(){return this._upCounters.getElements()}getValueRecorders(){return this._valueRecorders.getElements()}getBucketHistograms(){return this._bucketHistograms.getElements()}_tagError(o,a){o.status=a===!0?"error":"success"}_getKeyAndSortedTags(o,a,d){const m=Object.keys(a).sort().reduce((T,j)=>(T[j]=a[j],T),{});return{key:`${Ge[d]}:${o}${JSON.stringify(m)}`,sortedTags:m}}}class Xr{constructor(){this.isMock=!0}}const Is=void 0,Dn=["`"],Lr={internalError:"o11y-error"},br=Object.freeze(Array.from(Object.values(Lr)));class en{constructor(o,a){this._nextGen=o,this._name=a,this._onActivityStoppedCallback=this._handleActivityStop.bind(this),this._onActivityErrorCallback=this._handleActivityError.bind(this);for(const m of Dn)if(this._name.indexOf(m)>=0)throw new Error(`Name cannot include the reserved character "${m}"`);this._safety=new dr({increment:m=>this._incrementError(m)}),this._metrics=this._initMetrics();const d=ee.getOptions(lt,"Simple","text");this._simpleTextMaxLength=d?d["(meta.max_length)"]:Bo}_initMetrics(){return new Ni(this.name,()=>this._nextGen.appName||en.defaultAppName)}_incrementError(o=1){this._metrics.incrementCounter(Lr.internalError,o,!1)}get name(){return this._name}_wrapUserPayload(o,a,d=!1){let m;return typeof o=="string"?(m=lt,o?a={text:o.substring(0,this._simpleTextMaxLength)}:a=void 0):m=o,ee.makePayload(m,a,d)}_getEffectiveRootId(o){var a,d;return(d=(a=o==null?void 0:o.instrumentationContext)===null||a===void 0?void 0:a.rootId)!==null&&d!==void 0?d:this._nextGen.getDefaultInstrumentationContext().rootId}log(o,a,d){this._safety.tryCatch(()=>{const m=k.time().tsNow;k.requireArgument(o,"userSchemaOrText",["object","string"]),k.requireArgumentIfDefined(a,"userData","object"),k.requireArgumentIfDefined(d,"options","object");const g=this._wrapUserPayload(o,a);(g==null?void 0:g.payload)&&this._logInternal(this.name,g.schema,g.payload,m,this._getEffectiveRootId(d))})}_logInternal(o,a,d,m,g){this._checkInputs(a,d);const T=this._getPayloadFromProvider(this._nextGen.appPayloadProvider),j=this._getPayloadFromProvider(this._nextGen.pagePayloadProvider);return this._nextGen.addLog(o,a,d,m,g,j,T)}error(o,a,d,m){return this._safety.tryCatch(()=>{k.requireArgumentIfDefined(a,"userSchemaOrText",["object","string"]),k.requireArgumentIfDefined(d,"userData","object"),k.requireArgumentIfDefined(m,"options","object");const g=this._getEffectiveRootId(m);this._errorInternal(o,a,d,void 0,g)})}_errorInternal(o,a,d,m,g){const T=k.time().tsNow;let j;if(o instanceof Error)j=o;else{let At;o==null||typeof o.toString!="function"?At="UNKNOWN":At=o.toString(),j=new Error(At)}const rt=this._wrapUserPayload(a,d,!0),q={name:j.name,message:j.message,stack:j.stack,userPayload:rt,activityId:m};return this._logInternal(this.name,ba,q,T,g)}startActivity(o,a){return this._safety.tryCatchReturn(()=>{var d;k.requireArgument(o,"name"),k.requireArgumentIfDefined(a,"options","object");let m;const g=(d=a==null?void 0:a.instrumentationContext)===null||d===void 0?void 0:d.rootId;return g?m={rootId:g,isRootActivitySampled:a.instrumentationContext.isRootActivitySampled}:m=this._nextGen.getDefaultInstrumentationContext(),new Te(o,m.rootId,this._onActivityStoppedCallback,this._onActivityErrorCallback,Is,void 0,m.isRootActivitySampled)},Ta)}_getActivityData(o){const a=this._wrapUserPayload(o.userSchemaOrText,o.userData,!0);return{id:o.id,name:o.name,duration:o.stopPerfTime-o.startPerfTime,stopReason:o.stopReason,userPayload:a,errorCount:o.errorCount,isSampled:o.isSampled,timerOverridden:o.timerOverridden}}_handleActivityStop(o){if(o.stopReason===Cs)return;const a=this._getActivityData(o);this._logActivity(a,o.startTimestamp,o.rootId)}_logActivity(o,a,d){this._logInternal(this.name,pr,o,a,d)}_handleActivityError(o,a){this._errorInternal(o,a.userSchemaOrText,a.userData,a.id,a.rootId)}_getPayloadFromProvider(o){const a=(o==null?void 0:o.getPayload())||void 0;return a&&this._checkInputs(a.schema,a.payload),a}domEvent(o,a,d,m,g){this._safety.tryCatch(()=>{var T;const j=k.time().tsNow;k.requireArgument(o,"event",[Event,Xr]),k.requireArgument(a,"handledBy",[HTMLElement,"object"]);let rt;a instanceof HTMLElement?rt=a:(a=a,((T=a.template)===null||T===void 0?void 0:T.host)instanceof HTMLElement?rt=a.template.host:k.requireArgument(void 0,"handledBy"));const q=this._wrapUserPayload(d,m,!0),At=this._getEffectiveRootId(g);switch(o.type){case"click":{const gt=o,Rt=this._nextGen.getClickTracker();Rt&&Rt.markEventHandled(gt);const Ut=Ps.getMouseEventData(gt),Pe=Ps.getInstrumentedEventData(Ut,rt,q);Pe.auto=g==null?void 0:g._auto,this._logInternal(this.name,jl,Pe,j,At);break}default:throw new Error(k.notImplemented)}})}incrementCounter(o,a=1,d=!1,m={}){this._safety.tryCatch(()=>{k.requireArgument(o,"operation","string"),k.checkForDenyListedValues(o,"operation",br),k.checkForReservedCharacters(o,"operation",Dn),k.requireArgument(a,"increment","number"),k.requireArgument(d,"hasError","boolean"),k.requireArgument(m,"tags","object"),Object.entries(m).forEach(g=>{k.requireArgument(g[1],`Tag value for '${g[0]}'`,["string","number","boolean"])}),this._metrics.incrementCounter(o,a,d,m)})}trackValue(o,a,d=!1,m={}){this._safety.tryCatch(()=>{k.requireArgument(o,"operation","string"),k.checkForDenyListedValues(o,"operation",br),k.checkForReservedCharacters(o,"operation",Dn),k.requireArgument(a,"value","number"),k.requireArgument(d,"hasError","boolean"),k.requireArgument(m,"tags","object"),Object.entries(m).forEach(g=>{k.requireArgument(g[1],`Tag value for '${g[0]}'`,["string","number","boolean"])}),this._metrics.trackValue(o,a,d,m)})}bucketValue(o,a,d=[],m=!1,g={}){this._safety.tryCatch(()=>{k.requireArgument(o,"operation","string"),k.checkForDenyListedValues(o,"operation",br),k.checkForReservedCharacters(o,"operation",Dn),k.requireArgument(a,"value","number"),k.requireArgument(d,"buckets",Array),Object.entries(d).forEach(T=>{k.requireArgument(T[1],`Bucket value for '${T[0]}'`,"number")}),k.requireArgument(m,"hasError","boolean"),k.requireArgument(g,"tags","object"),Object.entries(g).forEach(T=>{k.requireArgument(T[1],`Tag value for '${T[0]}'`,["string","number","boolean"])}),this._metrics.bucketValue(o,a,d,m,g)})}_checkInputs(o,a){ee.checkSchema(o),k.requireArgument(a,"data","object");let d,m;a.userPayload!==void 0&&ee.isInternal(o)&&(m=a.userPayload,d=Pi.validate(m.schema,m.payload,!0),this._processValidationResults(ee.getSchemaId(m.schema),m.payload,d),a.userPayload=void 0),d=Pi.validate(o,a,!0),this._processValidationResults(ee.getSchemaId(o),a,d),m!==void 0&&(a.userPayload=m)}_processValidationResults(o,a,d){for(let m=0;m<d.length;m+=1){const g=d[m];if(g.errorCode==6||g.errorCode==7){const T=g.fields.length-1,j=this._traverseFields(a,g.fields.slice(0,T)),rt=g.fields[T];g.errorCode==6?j[rt]=j[rt].substring(0,Bo):j[rt].splice(Vo)}else throw new Error(g.asMessage(o))}}_traverseFields(o,a){return a.length?this._traverseFields(o[a[0]],a.slice(1)):o}getUpCounters(){return this._metrics.getUpCounters().filter(o=>o.getLastUpdatedOn())}getValueRecorders(){return this._metrics.getValueRecorders().filter(o=>o.getLastUpdatedOn())}getBucketHistograms(){return this._metrics.getBucketHistograms().filter(o=>o.getLastUpdatedOn())}registerForLogPrompt(o){k.requireArgument(o,"listener","function"),this._nextGen.registerForLogPrompt(o)}activity(o,a,d){var m,g,T,j;const rt=this.startActivity(o,d);try{return a(rt)}catch(q){throw rt.error(q,(m=d==null?void 0:d.errorPayload)===null||m===void 0?void 0:m.schema,(g=d==null?void 0:d.errorPayload)===null||g===void 0?void 0:g.payload),q}finally{rt.stop((T=d==null?void 0:d.stopPayload)===null||T===void 0?void 0:T.schema,(j=d==null?void 0:d.stopPayload)===null||j===void 0?void 0:j.payload)}}async activityAsync(o,a,d){var m,g,T,j;const rt=this.startActivity(o,d);try{return await a(rt)}catch(q){throw rt.error(q,(m=d==null?void 0:d.errorPayload)===null||m===void 0?void 0:m.schema,(g=d==null?void 0:d.errorPayload)===null||g===void 0?void 0:g.payload),q}finally{rt.stop((T=d==null?void 0:d.stopPayload)===null||T===void 0?void 0:T.schema,(j=d==null?void 0:d.stopPayload)===null||j===void 0?void 0:j.payload)}}}en.defaultAppName="APP_NOT_REGISTERED";class In extends Te{constructor(o,a,d,m,g){super(o,void 0,a,d,void 0,m||k.generateUniqueId(32),g)}get preRootId(){return this._preRootId}set preRootId(o){this._preRootId=o}_getDetail(o,a){const d=super._getDetail(o,a);return d.isRoot=!0,d.preRootId=this.preRootId,d}}const $r=new Array(32).fill(0).join("");class Di{getId(){return $r}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(o){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const Ms=Object.freeze(new Di);class ks extends en{constructor(o,a,d){super(o,a);this._allowMulti=d,this._onRootActivityStoppedCallback=this._handleRootActivityStop.bind(this)}startRootActivity(o,a,d){return this._safety.tryCatchReturn(()=>{k.requireArgument(o,"name");const m=new In(o,this._onRootActivityStoppedCallback,this._onActivityErrorCallback,a,d);if(!this._allowMulti){if(this._singleRootActivity&&!this._singleRootActivity.isStopped){const g=this._singleRootActivity.getId();this._singleRootActivity.terminate(),m.preRootId=g}this._singleRootActivity=m}return m},Ms)}_handleRootActivityStop(o){if(o.stopReason===Cs)return;const a=this._getActivityData(o);this._logActivity(a,o.startTimestamp),this._singleRootActivity=void 0}_getActivityData(o){const a=super._getActivityData(o);return a.isRoot=o.isRoot,a.preRootId=o.preRootId,a}getSingleRootActivityId(){var o;return(o=this._singleRootActivity)===null||o===void 0?void 0:o.getId()}isSingleRootActivitySampled(){var o;return(o=this._singleRootActivity)===null||o===void 0?void 0:o.getIsSampled()}_initMetrics(){return new Ni(this.name,()=>this.name)}}const xs=5;class Ca{constructor(o,a){this._instr=o,this._doc=a,this._isActive=!1,this._boundClickListener=this._clickListener.bind(this),k.requireArgument(o,"_instr"),k.requireArgument(a,"_doc")}activate(){this._isActive||(this._doc.addEventListener("click",this._boundClickListener,!0),this._isActive=!0)}deactivate(){this._isActive&&(this._doc.removeEventListener("click",this._boundClickListener,!0),this._isActive=!1)}markEventHandled(o){this._ignoredEvent=o}_clickListener(o){var a;let d=(a=o.composedPath)===null||a===void 0?void 0:a.call(o);(!d||!d.length)&&(d=o.path);const m=this._getClickableElement(d);m&&setTimeout(()=>{o!==this._ignoredEvent&&this._instr.domEvent(o,m,void 0,void 0,{_auto:!0})})}_getClickableElement(o){var a,d;const m=o?Math.min(o.length,xs):0;for(let g=0;g<m;g+=1){const T=o[g],j=(a=T.tagName)===null||a===void 0?void 0:a.toLowerCase();if(j==="a"||j==="button")return T;if(j==="input"){const rt=T;if(((d=rt.type)===null||d===void 0?void 0:d.toLowerCase())==="button")return rt}}}}const _r=80,$o="_CUT",Fs=_r-$o.length;class Er{get pagePayloadProvider(){return this._pagePayloadProvider}set pagePayloadProvider(o){this._pagePayloadProvider=o}get appPayloadProvider(){return this._appPayloadProvider}set appPayloadProvider(o){this._appPayloadProvider=o}constructor(o){this._idleDetector=o,this._logCollectors=new Set,this._instruments=new Map,this._seqBySchema=new Map,this._sequence=0,this._forceDisabledLogCollectors=new Set,this._logCollectorFailures=new Map,this._isBufferingEnabled=!1,this._buffer=[],this._logCollectionListeners=new Set}registerApp(o,a){var d;if(k.requireArgument(o,"name","string"),this._appInstr)throw new Error("An app has already been registered with instrumentation.");if(this._instruments.get(o))throw new Error(`The instrumentation name ${o} is already taken`);this._clientSessionId=((d=a==null?void 0:a.clientSessionId)===null||d===void 0?void 0:d.toString())||k.generateUniqueId(),this._appInstr=new ks(this,o,a==null?void 0:a.allowMultipleRootActivities),this._instruments.set(o,this._appInstr),this._isBufferingEnabled=a==null?void 0:a.enableBuffering;const g=new Et(this.getInstrumentation("Network"),this._idleDetector);return{log:this._appInstr.log.bind(this._appInstr),error:this._appInstr.error.bind(this._appInstr),startActivity:this._appInstr.startActivity.bind(this._appInstr),domEvent:this._appInstr.domEvent.bind(this._appInstr),incrementCounter:this._appInstr.incrementCounter.bind(this._appInstr),trackValue:this._appInstr.trackValue.bind(this._appInstr),bucketValue:this._appInstr.bucketValue.bind(this._appInstr),networkInstrumentation:g.networkInstrumentation.bind(g),registerForLogPrompt:this._appInstr.registerForLogPrompt.bind(this._appInstr),activity:this._appInstr.activity.bind(this._appInstr),activityAsync:this._appInstr.activityAsync.bind(this._appInstr),startRootActivity:this._appInstr.startRootActivity.bind(this._appInstr),registerLogCollector:this.registerLogCollector.bind(this),registerMetricsCollector:this.registerMetricsCollector.bind(this),activateClickTracker:this.activateClickTracker.bind(this),deactivateClickTracker:this.deactivateClickTracker.bind(this),disableBuffering:this.disableBuffering.bind(this),promptLogCollection:this.promptLogCollection.bind(this),getClientSessionId:this.getClientSessionId.bind(this)}}getInstrumentation(o){k.requireArgument(o,"name","string"),o.length>_r&&(o=o.substr(0,Fs)+$o);let a=this._instruments.get(o);if(!a)a=new en(this,o),this._instruments.set(o,a);else if(a===this._appInstr)throw new Error(`The instrumentation name ${o} is being used by the app.`);return a}get appName(){var o;return(o=this._appInstr)===null||o===void 0?void 0:o.name}addLog(o,a,d,m,g,T,j){this._sequence+=1;const rt=ee.isInternal(a)&&(d==null?void 0:d.userPayload)?d.userPayload.schema:a,q=ee.getSchemaId(rt);let At=this._seqBySchema.get(q)||0;At+=1,this._seqBySchema.set(q,At);const gt={timestamp:m,rootId:g,sequence:this._sequence,schemaSequence:At,loggerName:o,pagePayload:T?k.clone(T):void 0,appPayload:j?k.clone(j):void 0,loggerAppName:this.appName,connectionType:k.getConnectionType(),clientSessionId:this._clientSessionId};this._isBufferingEnabled&&this._buffer.push({schema:a,data:k.clone(d),logMeta:gt});const Rt=Array.from(this._logCollectors).filter(Ut=>{var Pe;return!this._forceDisabledLogCollectors.has(Ut)&&!((Pe=Ut.getIsCollectDisabled)===null||Pe===void 0?void 0:Pe.call(Ut))});if(Rt.length>0)for(const Ut of Rt){const Pe=k.clone(d);let En=this._logCollectorFailures.get(Ut)||0;try{Ut.collect(a,Pe,gt),En>0&&this._logCollectorFailures.set(Ut,En-1)}catch(Rr){En+=1,En>=Er._collectorFailureLimit?(this._forceDisabledLogCollectors.add(Ut),this._appInstr&&(typeof Rr=="string"||Rr instanceof Error)&&this._appInstr.error(Rr)):this._logCollectorFailures.set(Ut,En)}}return this._sequence}getBuffer(){return this._buffer}disableBuffering(){this._isBufferingEnabled=!1,this._buffer=[]}getClickTracker(){return this._autoClickTracker}getDefaultInstrumentationContext(){var o,a;return{rootId:(o=this._appInstr)===null||o===void 0?void 0:o.getSingleRootActivityId(),isRootActivitySampled:(a=this._appInstr)===null||a===void 0?void 0:a.isSingleRootActivitySampled()}}activateClickTracker(){typeof document!="undefined"&&(this._autoClickTracker||(this._autoClickTracker=new Ca(this._appInstr,document)),this._autoClickTracker.activate())}deactivateClickTracker(){this._autoClickTracker&&(this._autoClickTracker.deactivate(),this._autoClickTracker=void 0)}registerLogCollector(o,a){if(k.requireArgument(o,"collector"),!this._logCollectors.has(o)&&(this._logCollectors.add(o),this._logCollectorFailures.set(o,0),(!o.getIsCollectDisabled||!o.getIsCollectDisabled())&&a&&a.retroactive))for(const d of this._buffer)o.collect(d.schema,d.data,d.logMeta)}registerMetricsCollector(o){if(k.requireArgument(o,"collector"),this._metricsCollector)throw new Error("A metrics Collector is already registered.");this._metricsCollector=o,this._metricsCollector.receiveMetricsExtractors({getAllUpCounters:this._getAllUpCounters.bind(this),getAllValueRecorders:this._getAllValueRecorders.bind(this),getAllBucketHistograms:this._getAllBucketHistograms.bind(this)})}_getAllUpCounters(){return Array.from(this._instruments.values()).map(a=>a.getUpCounters()).reduce((a,d)=>a.concat(d),[])}_getAllValueRecorders(){return Array.from(this._instruments.values()).map(a=>a.getValueRecorders()).reduce((a,d)=>a.concat(d),[])}_getAllBucketHistograms(){return Array.from(this._instruments.values()).map(a=>a.getBucketHistograms()).reduce((a,d)=>a.concat(d),[])}registerForLogPrompt(o){this._logCollectionListeners.add(o)}promptLogCollection(o){for(const a of this._logCollectionListeners.keys())try{a(o)}catch(d){if(!k.isProduction)throw d}}getClientSessionId(){return this._clientSessionId}}Er._collectorFailureLimit=5;class Ii{get _lazyNextGen(){return this._nextgen||(this._nextgen=new Er(this._idleDetector)),this._nextgen}constructor(o){this._idleDetector=o,k.requireArgument(o,"_idleDetector")}registerInstrumentedApp(o,a){(!a||a.isProduction!==!1)&&k.markProduction();const d=this._lazyNextGen.registerApp(o,a);return a&&(this._nextgen.appPayloadProvider=a.appPayloadProvider,this._nextgen.pagePayloadProvider=a.pagePayloadProvider),d}getInstrumentation(o){return this._lazyNextGen.getInstrumentation(o)}}const Yr=k.time.bind(k),Ko={Error:"Crimson",Activity:"CadetBlue",InstrumentedEvent:"DarkOliveGreen",O11ySample:"BlueViolet"},Gs={Error:"white",Activity:"white",InstrumentedEvent:"white",O11ySample:"white"},qo="black",Xo="Gainsboro";let Mi=class{constructor(o){o&&this._log("ConsoleCollector",o)}collect(o,a,d){let m,g,T;o.namespace==="sf.instrumentation"?(m=o.name,g=Gs[o.name]||qo,T=Ko[o.name]||Xo):m=ee.getSchemaId(o),this._log(m,a,d,g,T)}_log(o,a,d,m=qo,g=Xo){const T=`color:${m};background-color:${g}`;console.log(`%cO11Y%c ${o}`,"color:white;background-color:#FF6600;font-weight:bold",T,a||"",d||"")}};const ki="244.9.0",Jr=new mr({logThreshold:300,reportListener:_=>{Qr==null||Qr.log($a,_)},errorListener:(_,o)=>{Qr==null||Qr.error(_,o)}}),_o=new Ii(Jr),Yo=_o.registerInstrumentedApp.bind(_o),Wr=_o.getInstrumentation.bind(_o),Qr=Wr("IdleDetector");var xi=Object.freeze({__proto__:null,ConsoleCollector:Mi,_version:ki,getInstrumentation:Wr,idleDetector:Jr,registerInstrumentedApp:Yo,time:Yr});const Hs="244.39.0",Us={namespace:"sf.instrumentation",name:"WebVitals",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{WebVitals:{fields:{name:{id:1,type:"string"},delta:{id:3,type:"double"},value:{id:2,type:"double"}}}}}}}}}};var Zn,Vt,bt,ln,ve=function(_,o){return{name:_,value:o===void 0?-1:o,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},Tr=function(_,o){try{if(PerformanceObserver.supportedEntryTypes.includes(_)){if(_==="first-input"&&!("PerformanceEventTiming"in self))return;var a=new PerformanceObserver(function(d){return d.getEntries().map(o)});return a.observe({type:_,buffered:!0}),a}}catch(d){}},tr=function(_,o){var a=function d(m){m.type!=="pagehide"&&document.visibilityState!=="hidden"||(_(m),o&&(removeEventListener("visibilitychange",d,!0),removeEventListener("pagehide",d,!0)))};addEventListener("visibilitychange",a,!0),addEventListener("pagehide",a,!0)},Hn=function(_){addEventListener("pageshow",function(o){o.persisted&&_(o)},!0)},Un=function(_,o,a){var d;return function(m){o.value>=0&&(m||a)&&(o.delta=o.value-(d||0),(o.delta||d===void 0)&&(d=o.value,_(o)))}},Wt=-1,jn=function(){return document.visibilityState==="hidden"?0:1/0},dn=function(){tr(function(_){var o=_.timeStamp;Wt=o},!0)},Bn=function(){return Wt<0&&(Wt=jn(),dn(),Hn(function(){setTimeout(function(){Wt=jn(),dn()},0)})),{get firstHiddenTime(){return Wt}}},Fi=function(_,o){var a,d=Bn(),m=ve("FCP"),g=function(rt){rt.name==="first-contentful-paint"&&(j&&j.disconnect(),rt.startTime<d.firstHiddenTime&&(m.value=rt.startTime,m.entries.push(rt),a(!0)))},T=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],j=T?null:Tr("paint",g);(T||j)&&(a=Un(_,m,o),T&&g(T),Hn(function(rt){m=ve("FCP"),a=Un(_,m,o),requestAnimationFrame(function(){requestAnimationFrame(function(){m.value=performance.now()-rt.timeStamp,a(!0)})})}))},js=!1,Gi=-1,Pa=function(_,o){js||(Fi(function(q){Gi=q.value}),js=!0);var a,d=function(q){Gi>-1&&_(q)},m=ve("CLS",0),g=0,T=[],j=function(q){if(!q.hadRecentInput){var At=T[0],gt=T[T.length-1];g&&q.startTime-gt.startTime<1e3&&q.startTime-At.startTime<5e3?(g+=q.value,T.push(q)):(g=q.value,T=[q]),g>m.value&&(m.value=g,m.entries=T,a())}},rt=Tr("layout-shift",j);rt&&(a=Un(d,m,o),tr(function(){rt.takeRecords().map(j),a(!0)}),Hn(function(){g=0,Gi=-1,m=ve("CLS",0),a=Un(d,m,o)}))},Eo={passive:!0,capture:!0},Jo=new Date,Wo=function(_,o){Zn||(Zn=o,Vt=_,bt=new Date,To(removeEventListener),Oa())},Oa=function(){if(Vt>=0&&Vt<bt-Jo){var _={entryType:"first-input",name:Zn.type,target:Zn.target,cancelable:Zn.cancelable,startTime:Zn.timeStamp,processingStart:Zn.timeStamp+Vt};ln.forEach(function(o){o(_)}),ln=[]}},Vl=function(_){if(_.cancelable){var o=(_.timeStamp>1e12?new Date:performance.now())-_.timeStamp;_.type=="pointerdown"?function(a,d){var m=function(){Wo(a,d),T()},g=function(){T()},T=function(){removeEventListener("pointerup",m,Eo),removeEventListener("pointercancel",g,Eo)};addEventListener("pointerup",m,Eo),addEventListener("pointercancel",g,Eo)}(o,_):Wo(o,_)}},To=function(_){["mousedown","keydown","touchstart","pointerdown"].forEach(function(o){return _(o,Vl,Eo)})},Qo=function(_,o){var a,d=Bn(),m=ve("FID"),g=function(j){j.startTime<d.firstHiddenTime&&(m.value=j.processingStart-j.startTime,m.entries.push(j),a(!0))},T=Tr("first-input",g);a=Un(_,m,o),T&&tr(function(){T.takeRecords().map(g),T.disconnect()},!0),T&&Hn(function(){var j;m=ve("FID"),a=Un(_,m,o),ln=[],Vt=-1,Zn=null,To(addEventListener),j=g,ln.push(j),Oa()})},vr={},Vn=function(_,o){var a,d=Bn(),m=ve("LCP"),g=function(rt){var q=rt.startTime;q<d.firstHiddenTime&&(m.value=q,m.entries.push(rt),a())},T=Tr("largest-contentful-paint",g);if(T){a=Un(_,m,o);var j=function(){vr[m.id]||(T.takeRecords().map(g),T.disconnect(),vr[m.id]=!0,a(!0))};["keydown","click"].forEach(function(rt){addEventListener(rt,j,{once:!0,capture:!0})}),tr(j,!0),Hn(function(rt){m=ve("LCP"),a=Un(_,m,o),requestAnimationFrame(function(){requestAnimationFrame(function(){m.value=performance.now()-rt.timeStamp,vr[m.id]=!0,a(!0)})})})}},vo=function(_){var o,a=ve("TTFB");o=function(){try{var d=performance.getEntriesByType("navigation")[0]||function(){var m=performance.timing,g={entryType:"navigation",startTime:0};for(var T in m)T!=="navigationStart"&&T!=="toJSON"&&(g[T]=Math.max(m[T]-m.navigationStart,0));return g}();if(a.value=a.delta=d.responseStart,a.value<0||a.value>performance.now())return;a.entries=[d],_(a)}catch(m){}},document.readyState==="complete"?setTimeout(o,0):addEventListener("load",function(){return setTimeout(o,0)})},_n;(function(_){_[_.CLS=0]="CLS",_[_.FCP=1]="FCP",_[_.FID=2]="FID",_[_.LCP=3]="LCP",_[_.TBT=4]="TBT",_[_.TTFB=5]="TTFB"})(_n||(_n={}));const Ra=[_n.CLS,_n.FCP,_n.FID,_n.LCP,_n.TTFB];class zl{constructor(){this._isInitialized=!1,this._safety=new dr,this._instr=Wr("WebVitals")}activate(o,a){this._safety.tryCatch(()=>{if(this._isInitialized)throw new Error("WebVitals is already activated.");k.requireArgumentIfDefined(a,"metrics",Array),this._isInitialized=!0;const d=new Set(a||Ra);if(d.delete(_n.CLS)&&Pa(this._logHandler.bind(this)),d.delete(_n.FCP)&&Fi(this._activityHandler.bind(this)),d.delete(_n.FID)&&Qo(this._logHandler.bind(this)),d.delete(_n.LCP)&&Vn(this._activityHandler.bind(this)),d.delete(_n.TTFB)&&vo(this._activityHandler.bind(this)),d.size>0){const m=JSON.stringify(Array.from(d.keys()));this._instr.error(`Unsupported WebVital metrics: ${m}`)}})}_logHandler(o){this._instr.log(Us,{name:o.name,value:o.value,delta:o.delta})}_activityHandler(o){this._instr.startActivity(o.name).stop(void 0,void 0,{perfStartOverride:0,perfStopOverride:o.value})}}const Na=new zl;function Bs(_,o){if(!_)throw new Error(o)}const Da={APEX_ACTION_ERROR:"APEX_ACTION_ERROR",FAILED_TO_LOAD_RESOURCE:"FAILED_TO_LOAD_RESOURCE",TOO_MANY_REQUESTS:"TOO_MANY_REQUESTS",UNKNOWN_ERROR:"UNKNOWN_ERROR"},Ia=["POST","PATCH","PUT","DELETE"],He="X-SFDC-Request-Id",Ma="X-Salesforce-Too-Many-Requests",Zo="asGuest",ne="language",zt="htmlEncode",{location:Zr,navigator:Ue}=globalThis;async function Mn(_,o={}){Bs(typeof _=="string","Valid path not provided for fetch request");const a=fr(fr({},o),{},{headers:fr({},o.headers),credentials:o.credentials||"same-origin"});o.credentials===null&&delete a.credentials;const d=a.isNonApiRequest===!0,m=a.asGuest===!0||await Qt(),g=a.basePath!==void 0?a.basePath:Jn.default,T=new URL(g+_,Zr);if(!d){const q=T.searchParams;q.has(ne)||q.append(ne,Fe.default),q.has(Zo)||q.append(Zo,m),q.has(zt)||q.append(zt,!1)}const j=a.headers["Content-Type"];j===null?delete a.headers["Content-Type"]:j?a.headers["Content-Type"]=j:o.body&&(a.headers["Content-Type"]="application/json; charset=utf-8"),a.headers[He]=ka(),await zs(a);const rt=await globalThis.fetch(T.toString(),a);return Vs(rt)&&wr(),rt}function wr(){document.dispatchEvent(new CustomEvent("client-error",{detail:{type:Da.TOO_MANY_REQUESTS}}))}function Vs(_){return!!((_.status===503||_.status===429)&&_.headers.get(Ma))}async function zs(_){if(_.method&&Ia.includes(_.method)){const{default:o}=await Ee.load("@app/user/v/1");_.headers["CSRF-Token"]=o.csrfToken}}async function wo({path:_,payload:o,contentType:a}){const d=It.default+_;Ue&&Ue.sendBeacon&&Ue.sendBeacon(d,o)||await globalThis.fetch(_,{headers:{"Content-Type":a},basePath:It.default,body:o,method:"POST",isNonApiRequest:!0})}function ka(){return(Date.now()+xa()+Math.round(Math.random()*1e8)).substring(0,18)}function xa(){function _(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return _()+_()}async function Qt(){const{default:_}=await Ee.load("@app/user/v/1");return _.isGuest}var nn=Object.freeze({__proto__:null,fetch:Mn,sendBeacon:wo});const Ar={namespace:"sf.clwr",name:"AppPayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{AppPayload:{fields:{visd:{id:1,type:"double"},isPreview:{id:4,type:"bool"},siteId:{id:6,type:"string"},isMobile:{id:3,type:"bool"},lang:{id:5,type:"string"},isDesign:{id:2,type:"bool"},vKey:{id:7,type:"string"}}}}}}}}}},we={namespace:"sf.clwr",name:"Nav",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Nav:{fields:{isIdleHit:{id:1,type:"bool"},isManual:{id:2,type:"bool"}}}}}}}}}},xt={namespace:"sf.clwr",name:"NavTransition",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{NavTransition:{fields:{code:{id:4,type:"string"},isSsr:{id:3,type:"bool"},level:{id:5,type:"string"},nextUrl:{id:1,type:"string"},type:{id:2,type:"string"}}}}}}}}}},er={namespace:"sf.clwr",name:"PagePayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{PagePayload:{fields:{isSsr:{id:3,type:"bool"},type:{id:2,type:"string"},url:{id:1,type:"string"}}}}}}}}}},Ae={namespace:"sf.clwr",name:"Root",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Root:{fields:{sequence:{id:1,type:"uint32"},navCount:{id:2,type:"uint32"},clickCount:{id:3,type:"uint32"},isManual:{id:4,type:"bool"}}}}}}}}}},nr=5e4,pn=3e3,Ce=300,Hi="O11Y_ENDPOINT_NOT_CONFIGURED",Ks=Math.random(),Ke={coreEnabled:!1,coreSamplingRate:0,coreRelativeEndpoint:"",falconEnabled:!1,falconSamplingRate:0,falconAbsoluteEndpoint:"",guestToken:"",traceSamplingRate:0},rn=!0;rn&&k.markProduction();let Cr,ti;new dr().tryCatch(()=>{const _=JSON.parse(So.default);Object.keys(Ke).forEach(o=>{const a=_[o],d=typeof Ke[o];(d==="string"&&a===""||k.requireArgumentIfDefined(a,`srvConfig.${o}`,d))&&(Ke[o]=_[o])}),Cr=Fa(Fn.default),Ke.guestToken=Cr.guestToken});function qs(){return Ke}function to(_,o){return _&&o!==""&&o!==Hi}function ei(_){return!rn||_>0&&_>=Ks}function Ui(){return!ti&&to(Ke.coreEnabled,Ke.coreRelativeEndpoint)&&ei(Ke.coreSamplingRate)}function ji(){return to(Ke.falconEnabled,Ke.falconAbsoluteEndpoint)&&ei(Ke.falconSamplingRate)}function Fa(_){if(!_)throw new Error("o11yGuestToken not set");const o={},a=_.indexOf("|");return a>=0?(o.guestToken=_.substring(0,a),o.meta=JSON.parse(_.substring(a+1))):o.guestToken=_,o}function ni(){const _=Ke.coreRelativeEndpoint?.indexOf("services/data/");return _===0||_===1}function Bi(){const _=Ke.coreRelativeEndpoint||"";return ni()&&_.length>1&&_[0]!=="/"}async function Vi(){if(ti===void 0&&(ti=!1,ni()&&!Cr.meta?.isGuestApiAccessEnabled)){const{default:_}=await Ee.load("@app/user/v/1");_.isGuest&&(ti=!0)}}function Xs(){const _=Math.random(),o=Ke.traceSamplingRate||0;return o>0&&o>=_}const eo={perfStartOverride:0};let kt;class zi{constructor(o){this._rootPayload={sequence:0,navCount:0,clickCount:0,isManual:!1},this._navPayload={isIdleHit:!1,isManual:!1},this._hadRootActivity=!1,this._hadNavActivity=!1,this._isFirstNavActivity=!0;const a=!1;kt=d=>a&&console.log(`O11YR ${d}`),kt("Started"),this._o11yApp=o,this._startRoot(),document.body.addEventListener("click",this._handleClick.bind(this),{capture:!0,passive:!0}),window.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleClick(){this._rootActivity?this._rootPayload.clickCount+=1:this._startRoot()}_handleVisibilityChange(){const o=document.visibilityState==="hidden";kt(o?"Hide":"Show"),o?(this._stopNavTransition(),this._stopNav(),this._stopRoot(!1)):(this._hadRootActivity&&this._startRoot(!0),this._hadNavActivity&&!this._navActivity&&this._startNav(this._navData,!0))}get _isFirstRootActivity(){return this._rootPayload.sequence===1}_startRoot(o=!1){this._rootActivity&&this._stopRoot(!1),this._rootPayload.clickCount=0,this._rootPayload.navCount=0,this._rootPayload.sequence+=1,this._rootPayload.isManual=o,this._rootActivity=this._o11yApp.startRootActivity("root",void 0,Xs()),this._hadRootActivity=!0,kt(`Root Started ${this._rootActivity.getId()}`),Jr.requestIdleDetectedCallback(()=>{this._stopRoot(!0)})}_stopRoot(o){if(!!this._rootActivity){kt(`Root Stop ${o?"idle":"busy"} ${this._rootActivity.getId()}`);try{if(!this._isFirstRootActivity&&this._rootPayload.navCount===0&&Yr().perfNow-this._rootActivity.getStartPerfTime()<Ce){this._rootActivity.discard(),this._rootPayload.sequence-=1;return}const a=this._isFirstRootActivity?eo:void 0;o?this._rootActivity.stop(Ae,this._rootPayload,a):this._rootActivity.terminate(Ae,this._rootPayload,a)}finally{this._rootActivity=void 0,this._hadRootActivity=!1}}}_startNav(o,a){this._stopNav(),this._navPayload.isIdleHit=!1,this._navPayload.isManual=a,this._rootPayload.navCount+=1,this._navData=o?{url:o.url,pageRef:o.pageRef,isSsr:o.isSsr}:void 0,this._navActivity=this._o11yApp.startActivity("navigation"),this._hadNavActivity=!0,kt(`Nav Started ${this._navActivity.getId()}`),Jr.requestIdleDetectedCallback(()=>{kt(`Nav Idle ${this._navActivity?.getId()}`),this._navPayload.isIdleHit=!0})}_stopNav(){if(this._navActivity){kt(`Nav Stop ${this._navActivity.getId()}`);try{const o=this._isFirstNavActivity?eo:void 0;this._isFirstNavActivity=!1,this._navActivity.stop(we,this._navPayload,o)}finally{this._navActivity=void 0}}}_startNavTransition(o){this._navTransitionActivity&&this._stopNavTransition(void 0,!0),this._navTransitionData=o,this._navTransitionActivity=this._o11yApp.startActivity("navigation transition"),kt(`Trans Started ${this._navTransitionActivity.getId()}`)}_stopNavTransition(o,a=!1){if(this._navTransitionActivity){kt(`Trans ${a?"Terminate":"Stop"} ${this._navTransitionActivity.getId()}`);try{if(o){const{code:m,message:g,level:T}=o,j=["Fatal","Error","Warning","Log"][T];this._navTransitionActivity.error(g,xt,{code:m?.toString(),level:j})}const d=this._navTransitionData?{nextUrl:this._navTransitionData.url,type:this._navTransitionData.pageRef?.type,isSsr:this._navTransitionData.isSsr}:void 0;a?this._navTransitionActivity.terminate(xt,d):this._navTransitionActivity.stop(xt,d)}finally{this._navTransitionActivity=void 0,this._navTransitionData=void 0}}}preNavigate(o){this._startNavTransition({url:o.next.url,pageRef:o.next.route.pageReference,isSsr:o.next.routeDefinition?.bootstrap?.ssr})}postNavigate(o){this._stopNavTransition(),this._startNav({url:o.url,pageRef:o.route.pageReference,isSsr:o.routeDefinition?.bootstrap?.ssr},!1)}errorNavigate(o){kt(`Err level ${o?.level}: ${o?.code}`),this._stopNavTransition(o)}getCurrentPageData(){if(this._navData){const{pageRef:o,url:a,isSsr:d}=this._navData;return{url:a,type:o?.type,isSsr:d}}}}class Ao{constructor(){this._totalVisibleDuration=0,this._isVisible=document?.visibilityState==="visible",this._isVisible&&(this._lastVisibleTime=0),window?.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleVisibilityChange(){if(document.visibilityState==="hidden"){if(this._isVisible=!1,this._lastVisibleTime!==void 0){const o=Yr().perfNow;this._totalVisibleDuration+=o-this._lastVisibleTime,this._lastVisibleTime=o}}else this._isVisible=!0,this._lastVisibleTime=Yr().perfNow}getPayload(){const o=this._isVisible&&this._lastVisibleTime!==void 0?Yr().perfNow-this._lastVisibleTime:0,a={isDesign:ur.default,isMobile:vi.default,isPreview:ze.default,lang:Fe.default,siteId:ge.default,vKey:Pn.default,visd:this._totalVisibleDuration+o};return{schema:Ar,payload:a}}}class Ki{linkWithRouterSupport(o){this._routingSupport=o}getPayload(){if(this._routingSupport){const o=this._routingSupport.getCurrentPageData();if(o)return{schema:er,payload:o}}}}const{ConsoleCollector:Pr,idleDetector:Co,registerInstrumentedApp:Or,_version:Yt}=xi,no="lwr_experience";let zn,Po;const ie=Qn;ie.clientVersion=Yt,ie.schemaVersion=Hs;const Kn=`${Yt}:${Hs}`,rr=Mn;globalThis.LWR?.define&&(globalThis.LWR.define("o11y/shared",[],()=>On),globalThis.LWR.define("o11y/client",[],()=>xi),globalThis.LWR.define("transport",[],()=>nn),globalThis.LWR.define("webruntime/o11y",[],()=>ke));async function ro(_){const o=!0;try{if(typeof window=="undefined"){ie.isUnavailable=!0;return}const a=Co.declareNotifierTaskMulti("o11y LWR module fetch");ie.willUpload=Ui()||ji();const d=new Ao,m=new Ki;ie.app=Or(no,{isProduction:o,enableBuffering:!0,appPayloadProvider:d,pagePayloadProvider:m}),Ve.default?.(T=>{T.id==="lwr.loader.module.fetch"&&(T.phase===0?a.add():a.done())}),ie.app.networkInstrumentation({tracingHeadersOptions:{useB3Headers:!0}}),Na.activate(),ie.routingSupport=new zi(ie.app),m.linkWithRouterSupport(ie.routingSupport);let g=!1;if(ie.initConsole=T=>{if(!g&&ie.app){const j=new Pr;ie.app.registerLogCollector(j,T),g=!0}},o||(ie.initConsole(),ie.app.log(`o11y ${Kn}`)),ie.upload=or,ie.willUpload){if(await Ha(),await Vi(),ie.willUpload=Ui()||ji(),!ie.willUpload)return;await Ua(ie.app,{appName:_.appMetadata.bootstrapModule,sdkVersion:`o11y ${Kn}`}),Ga(),await or(!0)}}catch(a){if(!o)throw a;try{console?.error("Failed to start o11y",a)}catch{}}finally{try{ie.app?.disableBuffering()}catch{}}}function Ga(){window.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&or(!0)})}async function Ha(){const _=o=>{let a=!1;setTimeout(()=>{a||(a=!0,o())},pn),Co.requestIdleDetectedCallback(()=>{a||(a=!0,o())})};return new Promise(o=>{document.readyState==="complete"?_(o):window.addEventListener("load",()=>_(o))})}async function Ua(_,o){const[a,d]=await Promise.all([Ee.load("o11y/simple_collector/v/244_9_0"),Ee.load("o11y/collectors/v/244_9_0")]);Po=(d.default||d).encodeCoreEnvelopeContentsRaw,zn=new(a.default||a).SimpleCollector({environment:o}),_.registerLogCollector(zn,{retroactive:!0}),_.registerMetricsCollector(zn)}function or(_=!1){const o=[],a=Ui(),d=ji();if(zn?.hasData&&(a||d)&&(_||zn.estimatedByteSize>=nr)){const m=zn.getRawContentsOfCoreEnvelope(),g=Po(m);a&&o.push(ja(g)),d&&o.push(Ba(g))}return Promise.allSettled(o)}function ja(_){const o=String.fromCharCode,a=[];for(let T=0,j=_.length;T<j;T++)a.push(o(_[T]));const d=window.btoa(a.join("")),m={method:"POST",body:JSON.stringify({base64Env:d}),keepalive:!0,isNonApiRequest:!ni(),o11y:{skipInstr:!0}};let g=qs().coreRelativeEndpoint;return Bi()?g[0]!=="/"&&(g=`/${g}`):m.basePath=It.default,rr(g,m)}function Ba(_){const o=qs(),a={method:"POST",body:_,headers:{"x-sfdc-o11y-token":o.guestToken||"","Content-Type":"application/octet-stream"},keepalive:!0,o11y:{skipInstr:!0}};return fetch(o.falconAbsoluteEndpoint,a)}Ot.default=ro,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("webruntime/hook/v/1_66_319-244_0",["exports"],function(Ot){"use strict";var Ee=["@app/apexApiBasePath","@app/apiBasePath","@app/authenticationCookieName","@app/basePath","@app/guestUuidCookieName","@app/isDesignMode","@app/isPreviewMode","@app/isMobileAppMode","@app/loginPath","@app/o11yGuestToken","@app/o11yConfiguration","@app/routes","@app/extraRouteParams","@app/uiBasePath","@app/versionKey","@app/viewToThemeLayoutMap","@app/views","@salesforce/community/basePath","@salesforce/i18n/lang","@salesforce/site/Id","@salesforce/webstore/Id","webruntime/dispatcher"],c=["@salesforce/cssvars/customProperties","aura-instrumentation","aura-storage","aura","instrumentation/service","instrumentation/utility","lightning/configProvider","lightning/navigation","transport","webruntime/transport","logger","assert","o11y/shared","o11y/client","webruntime/o11y","webruntime_navigation/link","webruntime/expressions","webruntime/routerContainer","webruntime/componentContainer","webruntime/slotContainer","webruntime/visibilityContainer","webruntime/routingService","webruntime/overrides","webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent","mobileruntime/hybridAppManager","wire-service","@salesforce/client/formFactor"];const We=["webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent"];function Se(fe){fe.addLoaderPlugin({resolveModule:async Ht=>{const[yt]=Ht.split("/v/");return yt==="webruntime/transport"?"transport":yt&&(c.includes(yt)||We.includes(yt)||Ee.includes(yt))?yt:yt==="@salesforce/loader"?"lwr/loaderLegacy/v/0_9_0":null}})}Ot.default=Se,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("@lwc/synthetic-shadow/v/2_41_4",function(){"use strict";function Ot(r,f){if(!r)throw new Error(`Invariant Violation: ${f}`)}function Ee(r,f){if(!r)throw new Error(`Assert Violation: ${f}`)}function c(r,f){if(r)throw new Error(`Assert Violation: ${f}`)}function We(r){throw new Error(r)}var Se=Object.freeze({__proto__:null,fail:We,invariant:Ot,isFalse:c,isTrue:Ee});const{assign:fe,create:Ht,defineProperties:yt,defineProperty:Ct,freeze:oe,getOwnPropertyDescriptor:pt,getOwnPropertyNames:bn,getPrototypeOf:un,hasOwnProperty:Dt,isFrozen:It,keys:Jn,seal:Fe,setPrototypeOf:Ve}=Object,{isArray:So}=Array,{concat:Fn,copyWithin:ur,fill:vi,filter:ze,find:Pn,indexOf:ge,join:go,map:fr,pop:Hl,push:Me,reduce:fn,reverse:Qn,shift:ke,slice:V,some:de,sort:k,splice:dr,unshift:Ul,forEach:ee}=Array.prototype,{charCodeAt:On,replace:pr,split:ba,slice:$a,toLowerCase:jl}=String.prototype;function lt(r){return r===void 0}function Lt(r){return r===null}function hr(r){return r===!0}function mr(r){return r===!1}function Gn(r){return typeof r=="function"}function Es(r){return typeof r=="object"}const Ws={}.toString;function _a(r){return r&&r.toString?So(r)?go.call(fr.call(r,_a),","):r.toString():typeof r=="object"?Ws.call(r):r+""}const Sr=typeof globalThis=="object"?globalThis:window,Ea="$isNativeShadowRootDefined$",yo="$shadowResolver$",Ts="$$ShadowResolverKey$$",Wa="$shadowStaticNode$",vs="$shadowStaticNodeKey$",wi="$shadowToken$",Et="$$ShadowTokenKey$$",$n="$$lwc-synthetic-mode",ws="$nativeGetElementById$",As="$nativeQuerySelectorAll$",Cs=(()=>Symbol("x").toString()==="Symbol(x)")();Sr.lwcRuntimeFlags||Object.defineProperty(Sr,"lwcRuntimeFlags",{value:Ht(null)});const ye=Node,Te=ye.prototype,{DOCUMENT_POSITION_CONTAINED_BY:gr,DOCUMENT_POSITION_CONTAINS:Bl,DOCUMENT_POSITION_PRECEDING:Ta,DOCUMENT_POSITION_FOLLOWING:va,ELEMENT_NODE:wa,TEXT_NODE:Ps,CDATA_SECTION_NODE:Bo,PROCESSING_INSTRUCTION_NODE:Vo,COMMENT_NODE:Lo,DOCUMENT_FRAGMENT_NODE:Ai}=ye,{appendChild:Os,cloneNode:Ci,compareDocumentPosition:tn,insertBefore:Rs,removeChild:bo,replaceChild:yr,hasChildNodes:zo}=Te,{contains:Pi}=HTMLElement.prototype,Aa=pt(Te,"firstChild").get,Ns=pt(Te,"lastChild").get,Ds=pt(Te,"textContent").get,Rn=pt(Te,"parentNode").get,Oi=pt(Te,"ownerDocument").get,Nn=Dt.call(Te,"parentElement")?pt(Te,"parentElement").get:pt(HTMLElement.prototype,"parentElement").get,Ri=pt(Te,"textContent").set,Ge=Dt.call(Te,"childNodes")?pt(Te,"childNodes").get:pt(HTMLElement.prototype,"childNodes").get,Ni=Dt.call(Te,"isConnected")?pt(Te,"isConnected").get:function(){const r=Oi.call(this);return r===null||(tn.call(r,this)&gr)!=0},{getAttribute:Xr,getBoundingClientRect:Is,getElementsByTagName:Dn,getElementsByTagNameNS:Lr,hasAttribute:br,querySelector:en,querySelectorAll:In,removeAttribute:$r,setAttribute:Di}=Element.prototype,Ms=Dt.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:()=>{throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},ks=pt(Element.prototype,"childElementCount").get,xs=pt(Element.prototype,"firstElementChild").get,Ca=pt(Element.prototype,"lastElementChild").get,_r=pt(HTMLElement.prototype,"innerText"),$o=_r?_r.get:null,Fs=_r?_r.set:null,Er=pt(HTMLElement.prototype,"outerText"),Ii=Er?Er.get:null,Yr=Er?Er.set:null,Ko=Dt.call(Element.prototype,"innerHTML")?pt(Element.prototype,"innerHTML"):pt(HTMLElement.prototype,"innerHTML"),Gs=Ko.get,qo=Ko.set,Xo=Dt.call(Element.prototype,"outerHTML")?pt(Element.prototype,"outerHTML"):pt(HTMLElement.prototype,"outerHTML"),Mi=Xo.get,ki=Xo.set,Jr=pt(Element.prototype,"tagName").get,_o=pt(HTMLElement.prototype,"tabIndex"),Yo=_o.get,Wr=_o.set,Qr=Dt.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xi=Dt.call(Element.prototype,"children")?pt(Element.prototype,"children").get:pt(HTMLElement.prototype,"children").get,{getElementsByClassName:Hs}=HTMLElement.prototype,Us=Dt.call(Element.prototype,"shadowRoot")?pt(Element.prototype,"shadowRoot").get:()=>null,Zn=Dt.call(Element.prototype,"assignedSlot")?pt(Element.prototype,"assignedSlot").get:()=>null;let Vt,bt;typeof HTMLSlotElement!="undefined"?(Vt=HTMLSlotElement.prototype.assignedNodes,bt=HTMLSlotElement.prototype.assignedElements):(Vt=()=>{throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},bt=()=>{throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});const ln=pt(Event.prototype,"target").get,ve=pt(Event.prototype,"currentTarget").get,Tr=pt(FocusEvent.prototype,"relatedTarget").get,tr=Dt.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],Hn=pt(Document.prototype,"activeElement").get,Un=Dt.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Wt=Dt.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,jn=pt(Document.prototype,"defaultView").get,{createComment:dn,querySelectorAll:Bn,getElementById:Fi,getElementsByClassName:js,getElementsByTagName:Gi,getElementsByTagNameNS:Pa}=Document.prototype,{getElementsByName:Eo}=HTMLDocument.prototype,{addEventListener:Jo,removeEventListener:Wo,getComputedStyle:Oa,getSelection:Vl}=window,To=MutationObserver,Qo=To.prototype.observe;let vr=null;typeof ShadowRoot!="undefined"&&(vr=ShadowRoot);const Vn=!Lt(vr),vo=Lt(vr)?()=>!1:r=>r instanceof vr;function _n(){return typeof HTMLSlotElement=="undefined"}const{createElement:Ra}=Document.prototype,zl=115,Na=108,Bs=111,Da=116;function Ia(){class r{}Ve(r,HTMLElement.constructor),Ve(r.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=r,Ct(Document.prototype,"createElement",{value:function(f,h){const S=Ra.apply(this,V.call(arguments));return f.length===4&&On.call(f,0)===zl&&On.call(f,1)===Na&&On.call(f,2)===Bs&&On.call(f,3)===Da&&Ve(S,r.prototype),S}})}_n()&&Ia();function He(r){const f=Oi.call(r);return f===null?r:f}function Ma(r){const f=He(r),h=jn.call(f);if(h===null)throw new TypeError;return h}let Zo;function ne(r){if(lt(Zo)){const f=He(r);Zo=f.body&&Xr.call(f.body,"data-global-patching-bypass")==="temporary-bypass"}return hr(Zo)}function zt(r){const f=r.length,h=[];if(f>0)for(let S=0;S<f;S++)h[S]=r[S];return h}const Zr=typeof EventTarget!="undefined"?EventTarget.prototype:ye.prototype,{addEventListener:Ue,dispatchEvent:Mn,removeEventListener:wr}=Zr,Vs="$$HostElementKey$$",zs="$$ShadowedNodeKey$$";function wo(r,f,h){const S=r;{const{value:P}=h;S[f]=P}}function ka(r,f){wo(r,Vs,{value:f,configurable:!0})}function xa(r,f){wo(r,zs,{value:f})}function Qt(r){return r[Vs]}function nn(r){let f=r,h;for(;!Lt(f);){if(h=Qt(f),!lt(h))return h;if(f=Rn.call(f),!Lt(f)&&nr(f))return}}function Ar(r){return r[zs]}function we(r){return!lt(Qt(r))}function xt(r){let f=Nn.call(r);for(;!Lt(f)&&pn(f);)r=f,f=Nn.call(r);return r}function er(r,f){const h=Ar(r);let S=f instanceof Element?f:Nn.call(f);for(;!Lt(S)&&S!==r;){const P=nn(S),Y=Nn.call(S);if(P===h)return pn(S);if(Y===r)return!1;if(!Lt(Y)&&nn(Y)!==P)if(pn(Y)){if(S=Ae(xt(Y)),!Lt(S)){if(S===r)return!0;if(nn(S)===h)return!0}}else return!1;else S=Y}return!1}function Ae(r){if(!(r instanceof ye))return null;const f=nn(r);if(lt(f))return null;let h=r;for(;!Lt(h)&&Ar(h)!==f;)h=Rn.call(h);return Lt(h)?null:h}function nr(r){return pn(r)&&we(r)}function pn(r){return r instanceof HTMLSlotElement}function Ce(r,f){const h=nn(f);if(lt(h)){const S=Rn.call(f);return!(!Lt(S)&&nr(S))}return Ar(r)===h}function Hi(r){const f=pe(r);return rn(f,zt(Ge.call(f)))}function Ks(r,f){const h=[];for(let S=0,P=f.length;S<P;S+=1){const Y=f[S];!Ce(r,Y)&&er(r,Y)&&Me.call(h,Y)}return h}function Ke(r,f){for(let h=0,S=f.length;h<S;h+=1){const P=f[h];if(!Ce(r,P)&&er(r,P))return P}return null}function rn(r,f){const h=[];for(let S=0,P=f.length;S<P;S+=1){const Y=f[S];Ce(r,Y)&&Me.call(h,Y)}return h}function Cr(r,f){for(let h=0,S=f.length;h<S;h+=1)if(Ce(r,f[h]))return f[h];return null}function ti(r,f){const h=pe(r),S=zt(In.call(h,f));return Cr(h,S)}function qs(r,f){const h=pe(r),S=In.call(h,f);return rn(h,zt(S))}function to(r){if(!le(r)&&!pn(r)){const f=Ge.call(r);return zt(f)}if(le(r)){const f=zt(In.call(r,"slot")),h=qn(Xn(r));return fn.call(f,(S,P)=>(h===qn(P)&&Me.apply(S,ei(P)),S),[])}else{const f=zt(Ge.call(r)),h=qn(r);return ze.call(f,S=>h===qn(S))}}function ei(r){const f=Ae(r);if(Lt(f))return[];const h=zt(Ge.call(r));return ze.call(h,S=>!we(S)||!Ce(f,S))}function Ui(r){let f="";const h=to(r);for(let S=0,P=h.length;S<P;S+=1)f+=Ao(h[S]);return f}const ji=/[&\u00A0"]/g,Fa=/[&\u00A0<>]/g,{replace:ni,toLowerCase:Bi}=String.prototype;function Vi(r){switch(r){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"\xA0":return" ";default:return""}}function Xs(r){return ni.call(r,ji,Vi)}function eo(r){return ni.call(r,Fa,Vi)}const kt=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),zi=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Ao(r){switch(r.nodeType){case wa:{const{attributes:f}=r,h=Jr.call(r);let S="<"+Bi.call(h);for(let P=0,Y;Y=f[P];P++)S+=" "+Y.name+'="'+Xs(Y.value)+'"';return S+=">",kt.has(h)?S:S+Ui(r)+"</"+Bi.call(h)+">"}case Ps:{const{data:f,parentNode:h}=r;return h instanceof Element&&zi.has(Jr.call(h))?f:eo(f)}case Bo:return`<!CDATA[[${r.data}]]>`;case Vo:return`<?${r.target} ${r.data}?>`;case Lo:return`<!--${r.data}-->`;default:return""}}function Ki(r){switch(r.nodeType){case wa:{const f=to(r);let h="";for(let S=0,P=f.length;S<P;S+=1){const Y=f[S];Y.nodeType!==Lo&&(h+=Ki(Y))}return h}default:return r.nodeValue}}const Pr=new WeakMap;function Co(){throw new TypeError("Illegal constructor")}Co.prototype=Ht(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:Co},item:{writable:!0,enumerable:!0,configurable:!0,value(r){return this[r]}},length:{enumerable:!0,configurable:!0,get(){return Pr.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(r,f){ee.call(Pr.get(this),r,f)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return fr.call(Pr.get(this),(r,f)=>[f,r])}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return fr.call(Pr.get(this),(r,f)=>f)}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return Pr.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let r=0;return{next:()=>{const f=Pr.get(this);return r<f.length?{value:f[r++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get(){return"NodeList"}},toString:{writable:!0,configurable:!0,value(){return"[object NodeList]"}}}),Ve(Co,NodeList);function Or(r){const f=Ht(Co.prototype);return Pr.set(f,r),ee.call(r,(h,S)=>{Ct(f,S,{value:h,enumerable:!0,configurable:!0})}),f}function Yt(r){var f;const h=[];let S=r.getRootNode();for(;!lt(S);)h.push(S),S=(f=S.host)===null||f===void 0?void 0:f.getRootNode();return h}const no=(r,f)=>{let h;for(;!lt(h=r.host);){const S=h.getRootNode();if(S===f)return h;r=S}};function zn(r,f,h,S){const P=Wt.call(f,h,S),Y=[],jt=Yt(r);if(!Lt(P))for(let Xt=0;Xt<P.length;Xt++){const re=P[Xt];if(nr(re))continue;const be=re.getRootNode();if(ge.call(jt,be)!==-1){Me.call(Y,re);continue}const Wn=no(be,jt[0]);!lt(Wn)&&ge.call(P,Wn)===-1&&ge.call(Y,Wn)===-1&&Me.call(Y,Wn)}return Y}const Po=new WeakMap;function ie(){throw new TypeError("Illegal constructor")}ie.prototype=Ht(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:ie},item:{writable:!0,enumerable:!0,configurable:!0,value(r){return this[r]}},length:{enumerable:!0,configurable:!0,get(){return Po.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(r){if(r==="")return null;const f=Po.get(this);for(let h=0,S=f.length;h<S;h++){const P=f[S];if(r===Xr.call(P,"id")||r===Xr.call(P,"name"))return P}return null}},[Symbol.toStringTag]:{configurable:!0,get(){return"HTMLCollection"}},toString:{writable:!0,configurable:!0,value(){return"[object HTMLCollection]"}}}),Ve(ie,HTMLCollection);function Kn(r){const f=Ht(ie.prototype);return Po.set(f,r),ee.call(r,(h,S)=>{Ct(f,S,{value:h,enumerable:!0,configurable:!0})}),f}function rr(r){return nr(r)||le(r)}function ro(r,f){const h=Ae(r);if(f===h)return Xn(h);if(f instanceof Element){if(nn(r)===nn(f))return f;if(!Lt(h)&&pn(f)){const S=Ae(f);if(!Lt(S)&&Ce(h,S))return S}}return null}function Ga(){return gt(this).length>0}function Ha(){return gt(this)[0]||null}function Ua(){const r=gt(this);return r[r.length-1]||null}function or(){return Ki(this)}function ja(r){Ri.call(this,r)}function Ba(){const r=Rn.call(this);return Lt(r)?r:ro(this,r)}function _(){const r=Rn.call(this);if(Lt(r))return null;const f=ro(this,r);return f instanceof Element?f:null}function o(r){return this===r?0:this.getRootNode()===r?10:Qt(this)!==Qt(r)?35:tn.call(this,r)}function a(r){return r==null||Qt(this)!==Qt(r)?!1:(tn.call(this,r)&gr)!=0}function d(r){const f=Ci.call(this,!1);if(!r)return f;const h=gt(this);for(let S=0,P=h.length;S<P;S+=1)f.appendChild(h[S].cloneNode(!0));return f}function m(){if(le(this)){const r=Ae(this),f=Lt(r)?[]:rn(r,to(this));return Or(f)}return Ge.call(this)}const g=ye.prototype.getRootNode,T=lt(g)?function(){let r=this,f;for(;!Lt(f=Rn.call(r));)r=f;return r}:g;function j(r){const f=Ae(r);return Lt(f)?T.call(r):Xn(f)}function rt(r){const f=lt(r)?!1:!!r.composed;return hr(f)?T.call(this,r):j(this)}yt(ye.prototype,{firstChild:{get(){return rr(this)?Ha.call(this):Aa.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return rr(this)?Ua.call(this):Ns.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return we(this)||le(this)?or.call(this):Ds.call(this)},set:ja,enumerable:!0,configurable:!0},parentNode:{get(){if(we(this))return Ba.call(this);const r=Rn.call(this);return!Lt(r)&&nr(r)?Ae(r):r},enumerable:!0,configurable:!0},parentElement:{get(){if(we(this))return _.call(this);const r=Nn.call(this);return!Lt(r)&&nr(r)?Ae(r):r},enumerable:!0,configurable:!0},childNodes:{get(){return rr(this)?m.call(this):Ge.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return rr(this)?Ga.call(this):zo.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(r){return ne(this)?tn.call(this,r):o.call(this,r)},enumerable:!0,writable:!0,configurable:!0},contains:{value(r){return this===r?!0:r==null?!1:we(this)||le(this)?a.call(this,r):Pi.call(this,r)},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(r){return we(this)||le(this)?d.call(this,r):Ci.call(this,r)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:rt,enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return Ni.call(this)}}});let q=!1;function At(){return!q}const gt=function(r){return r.childNodes};Dt.call(HTMLElement.prototype,"contains")&&Ct(HTMLElement.prototype,"contains",pt(ye.prototype,"contains")),Dt.call(HTMLElement.prototype,"parentElement")&&Ct(HTMLElement.prototype,"parentElement",pt(ye.prototype,"parentElement"));const Rt=new WeakMap,Ut=new WeakMap;function Pe(r){return Gn(r)||Es(r)&&!Lt(r)&&Gn(r.handleEvent)}function En(r,f,h){if(f===h)return!0;let S=Ut.get(r);return lt(S)&&(S=r.composedPath(),Ut.set(r,S)),S.includes(h)}function Rr(r){if(!Pe(r))return r;let f=Rt.get(r);return lt(f)&&(f=function(h){const S=ve.call(h),P=ir(h);if(!!En(h,P,S))return Gn(r)?r.call(this,h):r.handleEvent&&r.handleEvent(h)},Rt.set(r,f)),f}const ri=new WeakMap,Ys=new WeakMap;function Va(r){let f=Ys.get(r);return lt(f)&&(f=Ht(null),Ys.set(r,f)),f}function ir(r){var f;return(f=oo.get(r))!==null&&f!==void 0?f:ln.call(r)}const Kl=new WeakMap;function ql(r){if(!Gn(r))throw new TypeError;let f=Kl.get(r);return lt(f)&&(f=function(h){let S=ve.call(h);vo(S)||(S=Xn(S));const P=ir(h);En(h,P,S)&&r.call(S,h)},f.placement=1,Kl.set(r,f)),f}const Xl=new WeakMap;function Yl(r){if(!Gn(r))throw new TypeError;let f=Xl.get(r);return lt(f)&&(f=function(h){const S=ve.call(h),P=ir(h);En(h,P,S)&&r.call(S,h)},f.placement=0,Xl.set(r,f)),f}function qi(r){let f=!1,h=!1;const{type:S,stopImmediatePropagation:P,stopPropagation:Y}=r,jt=ve.call(r),re=Va(jt)[S];Ct(r,"stopImmediatePropagation",{value(){f=!0,P.call(r)},writable:!0,enumerable:!0,configurable:!0}),Ct(r,"stopPropagation",{value(){h=!0,Y.call(r)},writable:!0,enumerable:!0,configurable:!0});const be=V.call(re);function Wn(Cu){ee.call(be,fl=>{mr(f)&&fl.placement===Cu&&ge.call(re,fl)!==-1&&fl.call(void 0,r)})}ri.set(r,1),Wn(1),mr(f)&&mr(h)&&(ri.set(r,0),Wn(0)),ri.set(r,2)}function Js(r,f,h){const S=Va(r);let P=S[f];lt(P)&&(P=S[f]=[]),ge.call(P,h)===-1&&(P.length===0&&Ue.call(r,f,qi),Me.call(P,h))}function sr(r,f,h){const S=Va(r);let P,Y;!lt(Y=S[f])&&(P=ge.call(Y,h))!==-1&&(dr.call(Y,P,1),Y.length===0&&wr.call(r,f,qi))}function Nr(r,f,h){if(Gn(f)){const S=Yl(f);Js(this,r,S)}}function za(r,f,h){if(Gn(f)){const S=Yl(f);sr(this,r,S)}}function Jl(r,f,h,S){if(Gn(h)){const P=pe(r),Y=ql(h);Js(P,f,Y)}}function Qs(r,f,h,S){if(Gn(h)){const P=pe(r),Y=ql(h);sr(P,f,Y)}}const Oo=new WeakMap,{createDocumentFragment:Dr}=document;function su(r){return Oo.has(r)}function kn(r){const f=Oo.get(r);if(lt(f))throw new TypeError;return f}Ct(ye.prototype,yo,{set(r){lt(r)||(this[Ts]=r,ka(this,r.nodeKey))},get(){return this[Ts]},configurable:!0,enumerable:!0}),Ct(Sr,Ea,{value:Vn}),lt(Sr[ws])&&Ct(Sr,ws,{value:Fi,configurable:!0}),lt(Sr[As])&&Ct(Sr,As,{value:Bn,configurable:!0});function qn(r){return r[yo]}function Ro(r,f){r[yo]=f}function oi(r){return kn(r).delegatesFocus}function pe(r){return kn(r).host}function Xn(r){return kn(r).shadowRoot}function le(r){const f=Oo.get(r);return!lt(f)&&r===f.host}function Ka(r){const f=Oo.get(r);return!lt(f)&&r===f.shadowRoot}let Zs=0;function ii(r,f){if(Oo.has(r))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");const{mode:h,delegatesFocus:S}=f,P=He(r),Y=Dr.call(P),jt={mode:h,delegatesFocus:!!S,host:r,shadowRoot:Y};Oo.set(Y,jt),Oo.set(r,jt);const Xt=()=>Y,re=Xt.nodeKey=Zs++;return xa(r,re),Ro(Y,Xt),Ve(Y,ai.prototype),Y}const No={constructor:{writable:!0,configurable:!0,value:ai},toString:{writable:!0,configurable:!0,value(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},Xi={activeElement:{enumerable:!0,configurable:!0,get(){const r=pe(this),f=He(r),h=Hn.call(f);if(Lt(h))return h;if((tn.call(r,h)&gr)==0)return null;let S=h;for(;!Ce(r,S);)S=Nn.call(S);return pn(S)?null:S}},delegatesFocus:{configurable:!0,get(){return kn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(r,f){const h=pe(this),S=He(h);return qa(this,S,r,f)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(r,f){const h=pe(this),S=He(h);return zn(this,S,r,f)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return pe(this)}},mode:{configurable:!0,get(){return kn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},oo=new WeakMap;fe(No,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(r,f){return Rs.call(pe(this),r,f),r}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(r){return bo.call(pe(this),r),r}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(r){return Os.call(pe(this),r),r}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(r,f){return yr.call(pe(this),r,f),f}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(r,f,h){Jl(this,r,f)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(r){return oo.set(r,this),Mn.apply(pe(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(r,f,h){Qs(this,r,f)}},baseURI:{enumerable:!0,configurable:!0,get(){return pe(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return Or(Hi(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value(r){const f=pe(this);return this===r?0:this.contains(r)?20:tn.call(f,r)&gr?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(r){if(this===r)return!0;const f=pe(this);return(tn.call(f,r)&gr)!=0&&Ce(f,r)}},firstChild:{enumerable:!0,configurable:!0,get(){return gt(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const r=gt(this);return r[r.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return gt(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return Ni.call(pe(this))}},nextSibling:{enumerable:!0,configurable:!0,get(){return null}},previousSibling:{enumerable:!0,configurable:!0,get(){return null}},nodeName:{enumerable:!0,configurable:!0,get(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get(){return pe(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get(){return null}},parentNode:{enumerable:!0,configurable:!0,get(){return null}},textContent:{enumerable:!0,configurable:!0,get(){const r=gt(this);let f="";for(let h=0,S=r.length;h<S;h+=1){const P=r[h];P.nodeType!==Lo&&(f+=Ki(P))}return f},set(r){const f=pe(this);Ri.call(f,r)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(r){return!lt(r)&&hr(r.composed)?pe(this).getRootNode(r):this}}},{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return Kn(ze.call(Hi(this),r=>r instanceof Element))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:r}=this;return r.item(r.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value(r){return ti(this,r)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(r){return Or(qs(this,r))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const r=gt(this);let f="";for(let h=0,S=r.length;h<S;h+=1)f+=Ao(r[h]);return f},set(r){const f=pe(this);qo.call(f,r)}}},Xi);function ai(){throw new TypeError("Illegal constructor")}ai.prototype=Ht(DocumentFragment.prototype,No),Ct(ai,Symbol.hasInstance,{value:function(r){return Es(r)&&!Lt(r)&&(vo(r)||un(r)===ai.prototype)}});function li(r){const f=Xn(r);let h=f.$$placeholder$$;if(!lt(h))return h;const S=He(r);return h=f.$$placeholder$$=dn.call(S,""),yt(h,{childNodes:{get(){return f.childNodes},enumerable:!0,configurable:!0},tagName:{get(){return`#shadow-root (${f.mode})`},enumerable:!0,configurable:!0}}),h}function ci(r,f){const h=[];let S;if(r instanceof Window)S=r;else if(r instanceof ye)S=r.getRootNode();else return h;let P=r;for(;!Lt(P);)if(h.push(P),P instanceof Element||P instanceof Text){const jt=P.assignedSlot;Lt(jt)?P=P.parentNode:P=jt}else(Ka(P)||vo(P))&&(f||P!==S)?P=P.host:P instanceof ye?P=P.parentNode:P=null;let Y;return r instanceof Window?Y=r.document:Y=He(r),h[h.length-1]===Y&&h.push(window),h}/** |
| | | @license |
| | | Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
| | | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
| | | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| | | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
| | | Code distributed by Google as part of the polymer project is also |
| | | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
| | | */function Yi(r,f){if(Lt(r))return null;const h=ci(r,!0),S=f;for(let P=0,Y,jt,Xt,re;P<S.length;P++)if(Y=S[P],Xt=Y instanceof Window?Y:Y.getRootNode(),Xt!==jt&&(re=h.indexOf(Xt),jt=Xt),!Ka(Xt)||!lt(re)&&re>-1)return Y;return null}function qa(r,f,h,S){const P=Un.call(f,h,S);return Lt(P)?P:Yi(r,ci(P,!0))}function lu(r,f){return qa(this,this,r,f)}Document.prototype.elementFromPoint=lu;function cu(r,f){return zn(this,this,r,f)}Document.prototype.elementsFromPoint=cu,Ct(Document.prototype,"activeElement",{get(){let r=Hn.call(this);if(Lt(r))return r;for(;!lt(Qt(r));)if(r=Nn.call(r),Lt(r))return null;return r.tagName==="HTML"&&(r=this.body),r},enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementById",{value(){const r=Fi.apply(this,V.call(arguments));return Lt(r)?null:lt(Qt(r))||ne(r)?r:null},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"querySelector",{value(){const r=zt(Bn.apply(this,V.call(arguments))),f=Pn.call(r,h=>lt(Qt(h))||ne(h));return lt(f)?null:f},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"querySelectorAll",{value(){const r=zt(Bn.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Or(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementsByClassName",{value(){const r=zt(js.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Kn(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementsByTagName",{value(){const r=zt(Gi.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Kn(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementsByTagNameNS",{value(){const r=zt(Pa.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Kn(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(pt(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const r=zt(Eo.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Or(f)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ai,configurable:!0,writable:!0});const ta=Object.getOwnPropertyDescriptor(Event.prototype,"composed");function Xa(){if(!ta)return!1;let r=new Event("click");const f=document.createElement("button");return f.addEventListener("click",h=>r=h),f.click(),!ta.get.call(r)}const Ql=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function Zl(r){Object.defineProperty(r,"composed",{configurable:!0,enumerable:!0,get(){return!0}})}function Ji(){HTMLElement.prototype.click=function(){Ue.call(this,"click",Zl);try{Ql.value.call(this)}finally{wr.call(this,"click",Zl)}}}Xa()&&Ji();function uu(){return new Event("test",{composed:!0}).composed!==!0}function hn(){const r=fe(Ht(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),f=Event;function h(S,P){const Y=new f(S,P),jt=!!(P&&P.composed);return Object.defineProperties(Y,{composed:{get(){return jt},configurable:!0,enumerable:!0}}),Y}h.prototype=f.prototype,h.AT_TARGET=f.AT_TARGET,h.BUBBLING_PHASE=f.BUBBLING_PHASE,h.CAPTURING_PHASE=f.CAPTURING_PHASE,h.NONE=f.NONE,window.Event=h,Object.defineProperties(Event.prototype,{composed:{get(){const{type:S}=this;return r[S]===1},configurable:!0,enumerable:!0}})}uu()&&hn();const Ya=CustomEvent;function Ja(r,f){const h=new Ya(r,f),S=!!(f&&f.composed);return Object.defineProperties(h,{composed:{get(){return S},configurable:!0,enumerable:!0}}),h}if(Ja.prototype=Ya.prototype,window.CustomEvent=Ja,typeof ClipboardEvent!="undefined"){const r=fe(Ht(null),{copy:1,cut:1,paste:1});yt(ClipboardEvent.prototype,{composed:{get(){const{type:f}=this;return r[f]===1},configurable:!0,enumerable:!0}})}function ui(){const r=typeof HTMLIFrameElement!="undefined",f=typeof Proxy!="undefined"&&hr(Proxy.isCompat);return r&&f}function Qa(){const r=pt(HTMLIFrameElement.prototype,"contentWindow"),{get:f}=r;r.get=function(){const h=f.call(this);return Lt(h)||lt(Qt(this))?h:fu(h)},Ct(HTMLIFrameElement.prototype,"contentWindow",r)}function fu(r){return{addEventListener(){return r.addEventListener.apply(r,arguments)},blur(){return r.blur.apply(r,arguments)},close(){return r.close.apply(r,arguments)},focus(){return r.focus.apply(r,arguments)},postMessage(){return r.postMessage.apply(r,arguments)},removeEventListener(){return r.removeEventListener.apply(r,arguments)},get closed(){return r.closed},get frames(){return r.frames},get length(){return r.length},get location(){return r.location},set location(f){r.location=f},get opener(){return r.opener},get parent(){return r.parent},get self(){return r.self},get top(){return r.top},get window(){return r.window}}}ui()&&Qa();const fi=MutationObserver,{disconnect:ea,observe:nd,takeRecords:io}=fi.prototype,tc="$$lwcObserverCallbackWrapper$$",Qi="$$lwcNodeObservers$$",Zi=new WeakMap;function Io(r){return r[Qi]}function du(r,f){r[Qi]=f}function Za(r){const{addedNodes:f,removedNodes:h,target:S,type:P}=r,Y=Ht(MutationRecord.prototype);return yt(Y,{addedNodes:{get(){return f},enumerable:!0,configurable:!0},removedNodes:{get(){return h},enumerable:!0,configurable:!0},type:{get(){return P},enumerable:!0,configurable:!0},target:{get(){return S.shadowRoot},enumerable:!0,configurable:!0}}),Y}function na(r,f){let h=f;for(;!Lt(h);){const S=Io(h);if(!lt(S)&&(S[0]===r||ge.call(S,r)!==-1))return!0;h=h.parentNode}return!1}function ra(r,f){return fn.call(r,(h,S)=>{const{target:P,addedNodes:Y,removedNodes:jt,type:Xt}=S;if(Xt==="childList"&&!lt(Ar(P)))if(Y.length>0){const re=Y[0];if(na(f,re)){const be=Io(P);be&&(be[0]===f||ge.call(be,f)!==-1)?Me.call(h,S):Me.call(h,Za(S))}}else{const re=P.shadowRoot,be=jt[0];if(nn(P)===nn(be)&&na(f,P))Me.call(h,S);else if(re){const Wn=Io(re);Wn&&(Wn[0]===f||ge.call(Wn,f)!==-1)&&Me.call(h,Za(S))}}else na(f,P)&&Me.call(h,S);return h},[])}function so(r){let f=r[tc];return lt(f)&&(f=r[tc]=(h,S)=>{const P=ra(h,S);P.length!==0&&r.call(S,P,S)}),f}function ao(r){const f=so(r);return new fi(f)}function pu(){ea.call(this);const r=Zi.get(this);lt(r)||(ee.call(r,f=>{const h=f[Qi];if(!lt(h)){const S=ge.call(h,this);S!==-1&&dr.call(h,S,1)}}),r.length=0)}function hu(r,f){let h=Io(r);if(lt(h)&&(h=[],du(r,h)),ge.call(h,this)===-1&&Me.call(h,this),Ka(r)&&(r=r.host),Zi.has(this)){const S=Zi.get(this);ge.call(S,r)===-1&&Me.call(S,r)}else Zi.set(this,[r]);return nd.call(this,r,f)}function ec(){return ra(io.call(this),this)}ao.prototype=fi.prototype,ao.prototype.disconnect=pu,ao.prototype.observe=hu,ao.prototype.takeRecords=ec,Ct(window,"MutationObserver",{value:ao,configurable:!0,writable:!0});function mu(r,f,h){if(le(this))return Nr.apply(this,arguments);if(arguments.length<2){const P=V.call(arguments);return P.length>1&&(P[1]=Rr(P[1])),Ue.apply(this,P)}const S=Rr(f);return Ue.call(this,r,S,h)}function nc(r,f,h){if(le(this))return za.apply(this,arguments);const S=V.call(arguments);arguments.length>1&&(S[1]=Rr(S[1])),wr.apply(this,S),wr.apply(this,arguments)}yt(Zr,{addEventListener:{value:mu,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:nc,enumerable:!0,writable:!0,configurable:!0}});function qt(){return typeof EventTarget=="undefined"}function ts(r,f,h){if(arguments.length>1){const S=V.call(arguments);return S[1]=Rr(S[1]),Jo.apply(this,S)}return Jo.apply(this,arguments)}function je(r,f,h){if(arguments.length>1){const S=V.call(arguments);S[1]=Rr(S[1]),Wo.apply(this,S)}Wo.apply(this,arguments)}function tl(){yt(Window.prototype,{addEventListener:{value:ts,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:je,enumerable:!0,writable:!0,configurable:!0}})}qt()&&tl();function rd(){const r=ve.call(this);return Lt(r)?null:ri.get(this)===1?Xn(r):r}function rc(){const r=ln.call(this);if(!(r instanceof ye))return r;const f=He(r),h=ci(r,this.composed),S=ve.call(this);if(S instanceof ye){if(S===f||S===f.body)return lt(Qt(r))?r:Yi(f,h)}else return Lt(S)&<(Qt(r))?r:Yi(f,h);let P=S,Y=h;return le(S)&&ri.get(this)===1&&(P=Xn(S)),le(r)&&oo.has(this)&&(Y=ci(Xn(r),this.composed)),Yi(P,Y)}function oc(){const r=ln.call(this);if(!(r instanceof ye))return[];const f=Boolean(r.shadowRoot),h=su(r);if(f&&!h)return tr.call(this);const S=ve.call(this);if(Lt(S))return[];let P=r;return le(r)&&oo.has(this)&&(P=Xn(r)),ci(P,this.composed)}yt(Event.prototype,{target:{get:rc,enumerable:!0,configurable:!0},currentTarget:{get:rd,enumerable:!0,configurable:!0},composedPath:{value:oc,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:rc,enumerable:!0,configurable:!0},path:{get:oc,enumerable:!0,configurable:!0}});function ic(r){const f=pt(r.prototype,"relatedTarget").get;Ct(r.prototype,"relatedTarget",{get(){const h=f.call(this);if(Lt(h))return null;if(!(h instanceof ye)||!we(h))return h;let S=ve.call(this);return Lt(S)&&(S=He(h)),Yi(S,ci(h,!0))},enumerable:!0,configurable:!0})}ic(FocusEvent),ic(MouseEvent);const od=Dt.call(Text.prototype,"assignedSlot")?pt(Text.prototype,"assignedSlot").get:()=>null;let el;const Su={childList:!0},sc=new WeakMap;function gu(){return new To(r=>{const f=[];ee.call(r,h=>{const{target:S}=h;ge.call(f,S)===-1&&(Me.call(f,S),Mn.call(S,new CustomEvent("slotchange")))})})}function nl(r){const f=zt(Ge.call(r));return fn.call(f,(h,S)=>(S instanceof Element&&pn(S)?Me.apply(h,nl(S)):Me.call(h,S),h),[])}function ac(){const r=Rn.call(this);if(r instanceof Element){const f=Us.call(r);if(vo(f))return this instanceof Text?od.call(this):Zn.call(this)}return!Lt(r)&&pn(r)&&Qt(r)!==Qt(this)?r:null}yt(HTMLSlotElement.prototype,{addEventListener:{value(r,f,h){HTMLElement.prototype.addEventListener.call(this,r,f,h),r==="slotchange"&&!sc.get(this)&&(sc.set(this,!0),el||(el=gu()),Qo.call(el,this,Su))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(r){if(we(this)){const h=!lt(r)&&hr(r.flatten)?nl(this):ei(this);return ze.call(h,S=>S instanceof Element)}else return bt.apply(this,V.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(r){return we(this)?!lt(r)&&hr(r.flatten)?nl(this):ei(this):Vt.apply(this,V.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const r=Xr.call(this,"name");return Lt(r)?"":r},set(r){Di.call(this,"name",r)},enumerable:!0,configurable:!0},childNodes:{get(){if(we(this)){const r=Ae(this),f=Lt(r)?[]:rn(r,to(this));return Or(f)}return Ge.call(this)},enumerable:!0,configurable:!0}}),yt(Text.prototype,{assignedSlot:{get:ac,enumerable:!0,configurable:!0}});function es(r,f){let h;const S=Qt(r);if(lt(S))r instanceof HTMLBodyElement?h=ze.call(f,P=>lt(Qt(P))||ne(r)):h=V.call(f);else if(le(r)){const P=Ae(r);Lt(P)?h=[]:Ar(r)?h=Ks(r,f):h=rn(P,f)}else h=ze.call(f,P=>nn(P)===S);return h}function lc(){const r=gt(this);let f="";for(let h=0,S=r.length;h<S;h+=1)f+=Ao(r[h]);return f}function rl(){return Ao(this)}function cc(r){return r[$n]?ii(this,r):Ms.call(this,r)}function uc(){if(le(this)){const r=Xn(this);if(r.mode==="open")return r}return Us.call(this)}function se(){const r=Ae(this),f=Lt(r)?[]:rn(r,to(this));return Kn(ze.call(f,h=>h instanceof Element))}function fc(){return this.children.length}function yu(){return this.children[0]||null}function dc(){const{children:r}=this;return r.item(r.length-1)||null}yt(Element.prototype,{innerHTML:{get(){return we(this)||le(this)?lc.call(this):Gs.call(this)},set(r){qo.call(this,r)},enumerable:!0,configurable:!0},outerHTML:{get(){return we(this)||le(this)?rl.call(this):Mi.call(this)},set(r){ki.call(this,r)},enumerable:!0,configurable:!0},attachShadow:{value:cc,enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:uc,enumerable:!0,configurable:!0},children:{get(){return rr(this)?se.call(this):xi.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return rr(this)?fc.call(this):ks.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return rr(this)?yu.call(this):xs.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return rr(this)?dc.call(this):Ca.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:ac,enumerable:!0,configurable:!0}}),Dt.call(HTMLElement.prototype,"innerHTML")&&Ct(HTMLElement.prototype,"innerHTML",pt(Element.prototype,"innerHTML")),Dt.call(HTMLElement.prototype,"outerHTML")&&Ct(HTMLElement.prototype,"outerHTML",pt(Element.prototype,"outerHTML")),Dt.call(HTMLElement.prototype,"children")&&Ct(HTMLElement.prototype,"children",pt(Element.prototype,"children"));function ol(){const r=zt(In.apply(this,V.call(arguments)));if(le(this)){const f=Ae(this);return lt(Ar(this))?Lt(f)?null:Cr(f,r):Ke(this,r)}else if(we(this)){const f=Qt(this);if(lt(f))return r.length===0?null:r[0];{const h=Pn.call(r,S=>nn(S)===f);return lt(h)?null:h}}else{if(!(this instanceof HTMLBodyElement)){const h=r[0];return lt(h)?null:h}const f=Pn.call(r,h=>lt(Qt(h))||ne(this));return lt(f)?null:f}}function pc(r,f){let h;if(le(r)){const S=Ae(r);lt(Ar(r))?Lt(S)?h=[]:h=rn(S,f):h=Ks(r,f)}else if(we(r)){const S=Qt(r);lt(S)?h=V.call(f):h=ze.call(f,P=>nn(P)===S)}else r instanceof HTMLBodyElement?h=ze.call(f,S=>lt(Qt(S))||ne(r)):h=V.call(f);return h}yt(Element.prototype,{querySelector:{value:ol,writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const r=zt(In.apply(this,V.call(arguments))),f=pc(this,r);return Or(f)},writable:!0,enumerable:!0,configurable:!0}}),yt(Element.prototype,{getElementsByClassName:{value(){const r=zt(Hs.apply(this,V.call(arguments)));return Kn(es(this,r))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const r=zt(Dn.apply(this,V.call(arguments)));return Kn(es(this,r))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const r=zt(Lr.apply(this,V.call(arguments)));return Kn(es(this,r))},writable:!0,enumerable:!0,configurable:!0}}),Dt.call(HTMLElement.prototype,"getElementsByClassName")&&Ct(HTMLElement.prototype,"getElementsByClassName",pt(Element.prototype,"getElementsByClassName"));const ns=` |
| | | [contenteditable], |
| | | [tabindex], |
| | | a[href], |
| | | area[href], |
| | | audio[controls], |
| | | button, |
| | | iframe, |
| | | input, |
| | | select, |
| | | textarea, |
| | | video[controls] |
| | | `,Lu=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function hc(r){return r.filter(f=>br.call(f,"tabindex")?Xr.call(f,"tabindex")==="0":Lu.has(Jr.call(f))?!br.call(f,"disabled"):!0)}const il=new WeakMap;function di(r){const{width:f,height:h}=Is.call(r),S=f>0||h>0,P=r.tagName==="AREA";return(S||P)&&getComputedStyle(r).visibility!=="hidden"}function bu(r){return le(r)&&oi(r)?!1:Qr.call(r,ns)&&di(r)}function mc(){const r=this.getRootNode();if(r===this){const P=en.call(this,ns);Lt(P)||P.focus.apply(P,arguments);return}if(r.activeElement===this)return;const h=zt(In.call(this,ns));let S=!1;for(;!S&&h.length!==0;){const P=h.shift();P.focus.apply(P,arguments),S=P.getRootNode().activeElement===P}}function oa(r){const f=He(r),h=hc(zt(Bn.call(f,ns))),S=hc(zt(In.call(r,ns))),P=S[0],Y=S[S.length-1],jt=ge.call(h,r),Xt=jt>-1?jt:ge.call(h,P),re=S.length===0?Xt+1:ge.call(h,Y)+1,be=V.call(h,0,Xt),Wn=V.call(h,re);return{prev:be,inner:S,next:Wn}}function Sc(r){const f=He(r),h=Hn.call(f);return Lt(h)||(tn.call(r,h)&gr)!=0?h:null}function rs(r,f){const h=tn.call(r,f);return h&gr?0:h&Ta?1:h&va?2:-1}function sl(r){r.preventDefault(),r.stopPropagation()}function al(r,f){Jo.call(r,"focusin",sl,!0),Jo.call(r,"focusout",sl,!0),f(),Wo.call(r,"focusin",sl,!0),Wo.call(r,"focusout",sl,!0)}function Ir(r,f,h){const S=Ma(h),P=Eu(r,h);Lt(P)?al(S,()=>{f.blur()}):al(S,()=>{P.focus()})}let os=!1;function gc(){os=!0}function ll(){os=!1}function $u(){return!os}function _u(r){if(os)return;const f=ve.call(r),h=ln.call(r);if(f!==h)return;const S=Tr.call(r);if(Lt(S))return;const P=oa(f);if(rs(f,S)===1){const jt=Lc.bind(null,f.getRootNode()),Xt=Pn.call(P.inner,jt);if(lt(Xt))Ir(P.next,h,S);else{const re=Ma(Xt);al(re,()=>{Xt.focus()})}}else f===h&&Ir(Qn.call(P.prev),h,S)}function yc(r){if(os)return;const f=Tr.call(r);if(Lt(f))return;const h=ve.call(r),S=oa(h);if(ge.call(S.inner,f)!==-1)return;const P=ln.call(r),Y=rs(h,f);Y===1&&Ir(S.next,P,f),Y===2&&Ir(Qn.call(S.prev),P,f)}function Lc(r,f){if(!bu(f))return!1;const h=He(f);let S=f.getRootNode();for(;S!==h&&S!==r;){const Y=S.host;if(Xr.call(Y,"tabindex")==="-1")return!1;S=Y&&Y.getRootNode()}return!0}function Eu(r,f){const h=r.length;if(h>0)for(let S=0;S<h;S+=1){const P=r[S];if(Lc(f.getRootNode(),P))return P}return null}function bc(r){_c(r),Wu(r),Ue.call(r,"focusin",_u,!0)}function $c(r){wr.call(r,"focusin",_u,!0)}function _c(r){const f=He(r);il.get(f)||(il.set(f,!0),Ue.call(f,"mousedown",gc,!0),Ue.call(f,"mouseup",()=>{setTimeout(ll)},!0),Ue.call(f,"dragstart",ll,!0))}function lo(r){_c(r),$c(r),Ue.call(r,"focusin",yc,!0)}function Wu(r){wr.call(r,"focusin",yc,!0)}const{blur:pi,focus:Ec}=HTMLElement.prototype;function cl(){return oi(this)&&mr(br.call(this,"tabindex"))?0:Yo.call(this)}function Tu(r){const f=oi(this),h=Yo.call(this),S=br.call(this,"tabindex");Wr.call(this,r);const P=Yo.call(this),Y=br.call(this,"tabindex"),jt=h!==P;S&&(jt||mr(Y))&&(h===-1&&Wu(this),h===0&&f&&$c(this)),!mr(Y)&&(S&&Y&&mr(jt)||(P===-1&&lo(this),P===0&&f&&bc(this)))}function Wc(){if(oi(this)){const r=Sc(this);if(!Lt(r)){r.blur();return}}return pi.call(this)}function Tc(){const r=$u();if(r&&gc(),le(this)&&oi(this)){mc.call(this);return}Ec.apply(this,arguments),r&&ll()}yt(HTMLElement.prototype,{tabIndex:{get(){return le(this)?cl.call(this):Yo.call(this)},set(r){return le(this)?Tu.call(this,r):Wr.call(this,r)},enumerable:!0,configurable:!0},blur:{value(){if(le(this))return Wc.call(this);pi.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){Tc.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),$o!==null&&Fs!==null&&Ct(HTMLElement.prototype,"innerText",{get(){return $o.call(this)},set(r){Fs.call(this,r)},enumerable:!0,configurable:!0}),Ii!==null&&Yr!==null&&Ct(HTMLElement.prototype,"outerText",{get(){return Ii.call(this)},set(r){Yr.call(this,r)},enumerable:!0,configurable:!0});function vu(r){return r[wi]}function ul(r,f){r[wi]=f}Ct(Element.prototype,wi,{set(r){const f=this[Et];!lt(f)&&f!==r&&$r.call(this,f),lt(r)||Di.call(this,r,""),this[Et]=r},get(){return this[Et]},configurable:!0});function vc(r,f){r[yo]=f;const h=Ge.call(r);for(let S=0,P=h.length;S<P;S++)vc(h[S],f)}Ct(Element.prototype,Wa,{set(r){if(r){const f=this[yo];vc(this,f)}this[vs]=r},get(){return this[vs]},configurable:!0});const wc="$$DomManualKey$$",wu=function(){};let qe;const Ac={childList:!0};function ia(r,f,h){const S=qn(r);if(S!==f&&(Ro(r,f),r instanceof Element)){if(ul(r,h),le(r))return;lt(S)&&Qo.call(qe,r,Ac);const P=Ge.call(r);for(let Y=0,jt=P.length;Y<jt;Y+=1)ia(P[Y],f,h)}}function is(){return new To(r=>{ee.call(r,f=>{const{target:h,addedNodes:S,removedNodes:P}=f,Y=qn(h),jt=vu(h);for(let Xt=0,re=P.length;Xt<re;Xt+=1){const be=P[Xt];tn.call(h,be)&ye.DOCUMENT_POSITION_CONTAINED_BY||ia(be,wu,void 0)}for(let Xt=0,re=S.length;Xt<re;Xt+=1){const be=S[Xt];tn.call(h,be)&ye.DOCUMENT_POSITION_CONTAINED_BY&&ia(be,Y,jt)}})})}function Au(r){if(lt(qe)&&(qe=is()),lt(qn(r)))throw new Error("Invalid Element");Qo.call(qe,r,Ac)}Ct(Element.prototype,"$domManual$",{set(r){this[wc]=r,hr(r)&&Au(this)},get(){return this[wc]},configurable:!0})}),LWR.define("@lwrjs/app-service/communities_app/module/amd/v/0_9_0",["lwr/loaderLegacy/v/0_9_0","@lwc/synthetic-shadow/v/2_41_4","webruntime/hook/v/1_66_319-244_0","webruntime/o11yHook/v/1_66_319-244_0","webruntime/dynamicImportResourceHook/v/1_66_319-244_0","lwr/init/v/0_9_0","lwr/lockerDefine/v/0_9_0"],function(Ot,Ee,c,We,Se,fe,Ht){"use strict";function yt(It){return It&&typeof It=="object"&&"default"in It?It:{default:It}}var Ct=yt(c),oe=yt(We),pt=yt(Se);Ct.default(Ot.services),oe.default(Ot.services),pt.default(Ot.services),Ht.registerLockerDefine(["@locker/*","lwr/*","@lwrjs/*","lwc","@lwc/*","lwr","assert","logger","webruntime","webruntime/*","mobileruntime/hybridAppManager","@view","@view/*","@app","@app/*","@design","@design/*","@lwrjs","webruntimedesign","webruntimedesign/*","@luvio","@luvio/*","aura-instrumentation","aura","instrumentation/service","instrumentation/utility","aura-storage","transport","wire-service","force/ldsAdaptersAnalyticsDataService","force/ldsAdaptersAnalyticsSmartDataDiscovery","force/ldsAdaptersAnalyticsWave","force/ldsAdaptersAnalyticsWavePrivate","force/ldsAdaptersApex","force/ldsAdaptersCmsAuthoring","force/ldsAdaptersCmsDelivery","force/ldsAdaptersCmsType","force/ldsAdaptersCommerceCatalog","force/ldsAdaptersCommerceSearch","force/ldsAdaptersCommerceStorePricing","force/ldsAdaptersCommunityMicrobatching","force/ldsAdaptersCommunityNavigationMenu","force/ldsAdaptersCommunitySeo","force/ldsAdaptersCommunitySitesSearch","force/ldsAdaptersExperienceMarketingIntegration","force/ldsAdaptersGraphql","force/ldsAdaptersIndustriesCib","force/ldsAdaptersIndustriesClm","force/ldsAdaptersIndustriesDecisionMatrixDesigner","force/ldsAdaptersIndustriesEinsteinAiaccelerator","force/ldsAdaptersIndustriesExplainability","force/ldsAdaptersIndustriesHealthcloudHpi","force/ldsAdaptersIndustriesIdentityverification","force/ldsAdaptersIndustriesInteresttagging","force/ldsAdaptersIndustriesLoyaltyEngine","force/ldsAdaptersIndustriesPublicSector","force/ldsAdaptersIndustriesRcgTenantmanagement","force/ldsAdaptersIndustriesRuleBuilder","force/ldsAdaptersIndustriesSustainabilityBei","force/ldsAdaptersIndustriesSustainabilityDgf","force/ldsAdaptersIndustriesSustainabilityRecalculate","force/ldsAdaptersIndustriesSustainabilityRecordLockunlock","force/ldsAdaptersIndustriesSustainabilityReferenceData","force/ldsAdaptersIndustriesTimeline","force/ldsAdaptersIndustriesVideovisits","force/ldsAdaptersMarketingAssetcreation","force/ldsAdaptersPlatformAdminSuccessGuidance","force/ldsAdaptersPlatformFlow","force/ldsAdaptersPlatformFlowBuilder","force/ldsAdaptersPlatformInteractionOrchestrator","force/ldsAdaptersPlatformLearningContent","force/ldsAdaptersPlatformScaleCenter","force/ldsAdaptersRevenueBillingBatch","force/ldsAdaptersUiapi","force/ldsBindings","force/ldsEngine","force/ldsEngineCreator","force/ldsEngineWebruntime","force/ldsEnvironmentSettings","force/ldsInstrumentation","force/ldsNetwork","force/ldsRecordData","force/ldsStorage","force/mobileCapabilities","runtime_hybrid_capabilities/nativeCapabilities","o11y","o11y/*","@o11y","@o11y/*","@salesforce","@udd","@perm","@branding","@salesforce/*","@udd/*","@perm/*","@branding/*","trustedDesign/shadowDomUtils","community_builder/seoAssistant","community_case/supportQuickActionLayout","community_runtime/utils","community_user/userSettings","embeddedMessaging/container","experience_messaging/embeddedMessaging","community_login/checkEmail","community_login/forgotPassword","community_login/loginForm","community_login/loginUtils","community_login/selfRegister","community_login/socialLogin","b2c_lite_commerce/cartApi","b2c_lite_commerce/checkout","b2c_lite_commerce/checkoutApi","b2c_lite_commerce/checkoutApiDataSource","b2c_lite_commerce/checkoutRequestRetry","b2c_lite_commerce/context","b2c_lite_commerce/data","b2c_lite_commerce/einsteinActivitiesApi","b2c_lite_commerce/einsteinApi","b2c_lite_commerce/einsteinProductAndPriceApi","b2c_lite_commerce/heroBannerUi","b2c_lite_commerce/myAccountMenu","b2c_lite_commerce/orderSummary","b2c_lite_commerce/store","lightning","lightning/*","interop/button","interop/buttonIcon","dxp_page_layout/placeHolderDesign","community_builder/richTextEditor","dxp_form/baseForm","dxp_form/contactForm","dxp_form/dynamicForm","dxp_form/layoutUtils","dxp_form/leadForm","dxp_base/languageSelector","dxp_search/siteResults","dxp_flowruntime","dxp_flowruntime/*","flowruntime","flowruntime/*","experience/store","experience/data","experience/util","experience/cmsDeliveryApi","experience/userApi"]);const bn=globalThis.LWR,{rootComponents:un,ssrProps:Dt}=bn;Promise.all(un.map(async It=>{const Jn=fe.toKebabCase(It);return Ot.load(It,"@lwrjs/app-service/communities_app/module/amd/v/0_9_0").then(({default:Fe})=>{fe.init([[Jn,Fe]],Dt)})})),globalThis.LWR=Object.freeze({define:globalThis.LWR.define})}); |
| New file |
| | |
| | | LWR.define("webruntime/app/v/1",["exports","lwr/loaderLegacy/v/0_9_0","lwc/v/2_41_4","@app/authenticationCookieName/v/1","webruntime/transport/v/1_66_319-244_0","@app/basePath/v/1","@app/uiBasePath/v/1","@app/routes/v/1","@app/viewToThemeLayoutMap/v/1","webruntime/o11y/v/1_66_319-244_0","@app/extraRouteParams/v/1","@app/apiBasePath/v/1","@salesforce/i18n/lang/v/1","@app/apexApiBasePath/v/1","@app/isMobileAppMode/v/1","@app/isDesignMode/v/1","@app/guestUuidCookieName/v/1"],function(di,Ie,p,vd,nt,yd,wd,Td,Pd,Ed,_d,qg,Qg,Od,Cd,Sd,Nd){"use strict";function H(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}var li=H(vd),An=H(yd),rt=H(wd),Mn=H(Td),Rn=H(Pd),ci=H(_d),ui=H(Od),Ad=H(Cd),In=H(Sd),Dn=H(Nd),te=void 0;const{performance:J,console:Md}=window,kn=new WeakMap;let $n=!0,hi=!1;try{const t={randomInfo:123},e=J.mark("A",{detail:t})||J.getEntriesByType("mark").pop();$n=!!e.detail&&e.detail.randomInfo===t.randomInfo,hi=JSON.stringify(e).includes("randomInfo")}catch(t){$n=!1,Md.warn("PerformanceMarkOptions#detail & PerformanceMeasureOptions#detail are not supported",t)}finally{J.clearMarks("A")}function it(t,e,n){const r=t[e];t[e]=function(){return n.apply(this,[r.bind(this),...arguments])}}function Ln(t){return t.forEach(e=>{(e instanceof PerformanceMark||e instanceof PerformanceMeasure)&&(e.detail=kn.get(e)||null)}),t}function mi(){return{name:this.name||null,entryType:this.entryType||null,startTime:this.startTime||null,duration:this.duration||null,detail:this.detail||null}}hi||(PerformanceMark.prototype.toJSON=mi,PerformanceMeasure.prototype.toJSON=mi),$n||(it(J,"mark",(t,e,n)=>{const r=t(e)||J.getEntriesByType("mark").pop();if(n&&n.detail){const i=JSON.parse(JSON.stringify(n.detail));r.detail=i,kn.set(r,i)}return r}),it(J,"measure",(t,...e)=>{if(typeof e[1]!="string"&&e[1]&&e[1].detail){const n=e[1]&&e[1].start||null,r=t(e[0],n)||J.getEntriesByType("measure").sort((a,o)=>a.startTime+a.duration-(o.startTime+o.duration)).pop(),i=JSON.parse(JSON.stringify(e[1].detail));return r.detail=i,kn.set(r,i),r}return t(...e)}),it(J,"getEntries",t=>{const e=t();return Ln(e)}),it(J,"getEntriesByName",(t,e,n)=>{const r=t(e,n);return Ln(r)}),it(J,"getEntriesByType",(t,e)=>{const n=t(e);return Ln(n)}));const De="webruntime";function fi(t){return`/${De}${t}`}const Rd=fi("/log/metrics"),pi=fi("/log/errors"),at={APEX_ACTION_ERROR:"APEX_ACTION_ERROR",FAILED_TO_LOAD_RESOURCE:"FAILED_TO_LOAD_RESOURCE",TOO_MANY_REQUESTS:"TOO_MANY_REQUESTS",UNKNOWN_ERROR:"UNKNOWN_ERROR"},gi={PUBLISHER:"CommunityHybridContainer/",PLAYGROUND:"playgroundcommunity"},Id=8e3,Dd="@view";function bi(t){return`${Dd}/${t}`}const kd=["hasVanityURL","isDefault","isPublic","isRoot"],$d=[{type:"standard__search",params:[{name:"term",type:"state"}]},{type:"standard__objectPage",params:[{name:"filterName",type:"state"}]},{type:"standard__recordPage",params:[{name:"recordName",type:"state"},{name:"categoryPath",type:"state"}],match:({attributes:t},{name:e})=>t?.objectApiName==="ProductCategory"?e==="categoryPath":e!=="categoryPath"}];function Ld(t,e){const{match:n,params:r}=e;r.forEach(i=>{if(n&&!n(t.page,i))return;const{type:a,name:o}=i,s=a,l=s==="state"?"attributes":"state";!t.page?.[l]?.[o]||(t.page[s]||(t.page[s]={}),t.page[s][o]=t.page[l][o],delete t.page[l][o])})}function xd(t){let e=t;return["categoryPath","urlPath"].forEach(n=>{e=e.replace(new RegExp(`:${n}\\+?`),`:${n}+`)}),e}const jd=/\(.*\)/;function Fd(t){return t.map(e=>{if(e.uri||(e.uri=e.path),e.metadata||(e.metadata={}),kd.forEach(o=>{o in e&&(e.metadata[o]=e[o],delete e[o])}),e.uri){const o=e.uri.split("/");for(let s=0;s<o.length;s++)if(o[s]=o[s].replace(jd,""),o[s].startsWith(":")){const l=o[s].substring(1).replace(/[?+]/g,""),d=`:${l}`;e.page.attributes[l]||(e.page.attributes[l]=d)}e.uri=o.join("/")}e.patternMap&&(e.patterns=e.patternMap,delete e.patternMap);const n=e.page?.attributes?.objectApiName;n&&!n.startsWith(":")&&(e.uri=e.uri.replace(":objectApiName",n),e.patterns?.objectApiName&&delete e.patterns.objectApiName);const r=$d.find(o=>e.page?.type===o.type);r&&Ld(e,r);const i=e.page?.type;return i==="standard__recordPage"&&e.page.attributes?.objectApiName==="ProductCategory"&&(e.uri=xd(e.uri)),["standard__recordPage","standard__recordRelationshipPage"].includes(i)&&!e.page?.attributes?.actionName&&(e.page.attributes=e.page.attributes||{},e.page.attributes.actionName="view"),e})}const vi={MARK:"mark",RESOURCE:"resource",MEASURE:"measure",PAINT:"paint",NAVIGATION:"navigation",LONGTASK:"longtask",FRAME:"frame"},{window:k,document:Ud}=globalThis,de={hostname:Boolean(k?.location&&k?.location.hostname),pathname:Boolean(k?.location&&k?.location.pathname!==void 0&&k?.location.pathname!==null),rtt:Boolean(k?.navigator&&k?.navigator.connection&&k?.navigator.connection.rtt),PerformanceObserver:Boolean(k?.PerformanceObserver),PerformancePaintTiming:Boolean(k?.PerformancePaintTiming),PerformanceResourceTiming:Boolean(k?.PerformanceResourceTiming),getEntriesByType:Boolean(k?.performance.getEntriesByType),getEntriesByName:Boolean(k?.performance.getEntriesByName)};function Kd(t){let e=!1;k?.addEventListener("pagehide",n=>{e=!n.persisted}),k?.addEventListener("visibilitychange",()=>{Ud.visibilityState==="hidden"&&e&&t()})}function zd(t){return JSON.stringify(t).replace(/(":)(\d+\.\d{2,})/g,(n,r,i)=>r+Number(i).toFixed(2))}function Gd(){if(!de.getEntriesByName)return null;const t=window.performance.getEntriesByName(`${De}-app-bootstrap`),e=window.performance.getEntriesByName(`${De}-framework-bootstrap`);return[...t,...e]}function jt(){return de.PerformanceResourceTiming&&de.getEntriesByType?window.performance.getEntriesByType(vi.RESOURCE):null}function Vd(t){let e=jt().length;const n=setInterval(()=>{jt().length>e?e=jt().length:(clearInterval(n),t())},500)}function Bd(t,e,n){const r=window.performance.timing.navigationStart,i=jt().sort((o,s)=>o.startTime+o.duration>s.startTime+s.duration?-1:1)[0];let a=e-r;return i&&i.startTime+i.duration>t-r&&(a=i.startTime+i.duration),{entryType:"webruntime-navigation",startTime:t-r,duration:r+a-t,name:n&&n.id}}function yi(){return{hostname:de.hostname?window.location.hostname:null,pathname:de.pathname?window.location.pathname:null}}function Wd(){return de.rtt?{"connection.rtt":window.navigator.connection.rtt}:null}function Hd(){return de.PerformancePaintTiming&&de.getEntriesByType?window.performance.getEntriesByType(vi.PAINT):null}var le,ot,wi,Ft,Ti=-1,ke=function(t){addEventListener("pageshow",function(e){e.persisted&&(Ti=e.timeStamp,t(e))},!0)},xn=function(){return window.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0]},Ut=function(){var t=xn();return t&&t.activationStart||0},q=function(t,e){var n=xn(),r="navigate";return Ti>=0?r="back-forward-cache":n&&(r=document.prerendering||Ut()>0?"prerender":document.wasDiscarded?"restore":n.type.replace(/_/g,"-")),{name:t,value:e===void 0?-1:e,rating:"good",delta:0,entries:[],id:"v3-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},Kt=function(t,e,n){try{if(PerformanceObserver.supportedEntryTypes.includes(t)){var r=new PerformanceObserver(function(i){Promise.resolve().then(function(){e(i.getEntries())})});return r.observe(Object.assign({type:t,buffered:!0},n||{})),r}}catch(i){}},Q=function(t,e,n,r){var i,a;return function(o){e.value>=0&&(o||r)&&((a=e.value-(i||0))||i===void 0)&&(i=e.value,e.delta=a,e.rating=function(s,l){return s>l[1]?"poor":s>l[0]?"needs-improvement":"good"}(e.value,n),t(e))}},jn=function(t){requestAnimationFrame(function(){return requestAnimationFrame(function(){return t()})})},Fn=function(t){var e=function(n){n.type!=="pagehide"&&document.visibilityState!=="hidden"||t(n)};addEventListener("visibilitychange",e,!0),addEventListener("pagehide",e,!0)},Un=function(t){var e=!1;return function(n){e||(t(n),e=!0)}},$e=-1,Pi=function(){return document.visibilityState!=="hidden"||document.prerendering?1/0:0},zt=function(t){document.visibilityState==="hidden"&&$e>-1&&($e=t.type==="visibilitychange"?t.timeStamp:0,Jd())},Ei=function(){addEventListener("visibilitychange",zt,!0),addEventListener("prerenderingchange",zt,!0)},Jd=function(){removeEventListener("visibilitychange",zt,!0),removeEventListener("prerenderingchange",zt,!0)},Kn=function(){return $e<0&&($e=Pi(),Ei(),ke(function(){setTimeout(function(){$e=Pi(),Ei()},0)})),{get firstHiddenTime(){return $e}}},Gt=function(t){document.prerendering?addEventListener("prerenderingchange",function(){return t()},!0):t()},_i=[1800,3e3],Oi=function(t,e){e=e||{},Gt(function(){var n,r=Kn(),i=q("FCP"),a=Kt("paint",function(o){o.forEach(function(s){s.name==="first-contentful-paint"&&(a.disconnect(),s.startTime<r.firstHiddenTime&&(i.value=Math.max(s.startTime-Ut(),0),i.entries.push(s),n(!0)))})});a&&(n=Q(t,i,_i,e.reportAllChanges),ke(function(o){i=q("FCP"),n=Q(t,i,_i,e.reportAllChanges),jn(function(){i.value=performance.now()-o.timeStamp,n(!0)})}))})},Ci=[.1,.25],qd=function(t,e){e=e||{},Oi(Un(function(){var n,r=q("CLS",0),i=0,a=[],o=function(l){l.forEach(function(d){if(!d.hadRecentInput){var h=a[0],m=a[a.length-1];i&&d.startTime-m.startTime<1e3&&d.startTime-h.startTime<5e3?(i+=d.value,a.push(d)):(i=d.value,a=[d])}}),i>r.value&&(r.value=i,r.entries=a,n())},s=Kt("layout-shift",o);s&&(n=Q(t,r,Ci,e.reportAllChanges),Fn(function(){o(s.takeRecords()),n(!0)}),ke(function(){i=0,r=q("CLS",0),n=Q(t,r,Ci,e.reportAllChanges),jn(function(){return n()})}),setTimeout(n,0))}))},st={passive:!0,capture:!0},Qd=new Date,Si=function(t,e){le||(le=e,ot=t,wi=new Date,Ai(removeEventListener),Ni())},Ni=function(){if(ot>=0&&ot<wi-Qd){var t={entryType:"first-input",name:le.type,target:le.target,cancelable:le.cancelable,startTime:le.timeStamp,processingStart:le.timeStamp+ot};Ft.forEach(function(e){e(t)}),Ft=[]}},Xd=function(t){if(t.cancelable){var e=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;t.type=="pointerdown"?function(n,r){var i=function(){Si(n,r),o()},a=function(){o()},o=function(){removeEventListener("pointerup",i,st),removeEventListener("pointercancel",a,st)};addEventListener("pointerup",i,st),addEventListener("pointercancel",a,st)}(e,t):Si(e,t)}},Ai=function(t){["mousedown","keydown","touchstart","pointerdown"].forEach(function(e){return t(e,Xd,st)})},Mi=[100,300],Yd=function(t,e){e=e||{},Gt(function(){var n,r=Kn(),i=q("FID"),a=function(l){l.startTime<r.firstHiddenTime&&(i.value=l.processingStart-l.startTime,i.entries.push(l),n(!0))},o=function(l){l.forEach(a)},s=Kt("first-input",o);n=Q(t,i,Mi,e.reportAllChanges),s&&Fn(Un(function(){o(s.takeRecords()),s.disconnect()})),s&&ke(function(){var l;i=q("FID"),n=Q(t,i,Mi,e.reportAllChanges),Ft=[],ot=-1,le=null,Ai(addEventListener),l=a,Ft.push(l),Ni()})})},Ri=[2500,4e3],zn={},Zd=function(t,e){e=e||{},Gt(function(){var n,r=Kn(),i=q("LCP"),a=function(l){var d=l[l.length-1];d&&d.startTime<r.firstHiddenTime&&(i.value=Math.max(d.startTime-Ut(),0),i.entries=[d],n())},o=Kt("largest-contentful-paint",a);if(o){n=Q(t,i,Ri,e.reportAllChanges);var s=Un(function(){zn[i.id]||(a(o.takeRecords()),o.disconnect(),zn[i.id]=!0,n(!0))});["keydown","click"].forEach(function(l){addEventListener(l,s,!0)}),Fn(s),ke(function(l){i=q("LCP"),n=Q(t,i,Ri,e.reportAllChanges),jn(function(){i.value=performance.now()-l.timeStamp,zn[i.id]=!0,n(!0)})})}})},Ii=[800,1800],el=function t(e){document.prerendering?Gt(function(){return t(e)}):document.readyState!=="complete"?addEventListener("load",function(){return t(e)},!0):setTimeout(e,0)},tl=function(t,e){e=e||{};var n=q("TTFB"),r=Q(t,n,Ii,e.reportAllChanges);el(function(){var i=xn();if(i){var a=i.responseStart;if(a<=0||a>performance.now())return;n.value=Math.max(a-Ut(),0),n.entries=[i],r(!0),ke(function(){n=q("TTFB",0),(r=Q(t,n,Ii,e.reportAllChanges))(!0)})}})};let Di=!1;try{Di=PerformanceObserver.supportedEntryTypes.includes("layout-shift")}catch(t){}const ne={CLS:Di?{name:"CLS",value:0,delta:0}:null,LCP:null,FID:null,FCP:null,TTFB:null};function nl(){ne.CLS&&(ne.CLS.value=0,ne.CLS.delta=0)}function rl(){qd(il,!0),Zd(Vt,!0),Yd(Vt),Oi(Vt),tl(Vt)}function il(t){ne.CLS&&(ne.CLS.value+=t.delta,ne.CLS.delta=ne.CLS.value)}function Vt(t){const{name:e,value:n,delta:r}=t;ne[t.name]={name:e,value:n,delta:r}}function ki(){return ne}typeof document!="undefined"&&rl();let Gn=!0;const{window:$i}=globalThis;let Vn;function al(){return $i?.performance.timing&&$i?.performance.timing.navigationStart||0}function Li(){Vn=Gn?al():Date.now()}function ol(t){Gn=t}function sl(){return Gn}function dl(){return Vn===void 0&&Li(),Vn}function xi(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function ll(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?xi(Object(n),!0).forEach(function(r){cl(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):xi(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function cl(t,e,n){return e=ul(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function ul(t){var e=hl(t,"string");return typeof e=="symbol"?e:String(e)}function hl(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const Bn=typeof document!="undefined",ml=ll({},yi());function ji(t){!Bn||nt.sendBeacon({path:Rd,payload:zd(t),contentType:"text/plain;charset=UTF-8"})}function fl(){return{bootstrap:Gd(),navigator:Wd(),paint:Hd()}}function pl(t={}){if(!Bn)return;const e=dl(),n=Date.now();Vd(()=>{const r={pageView:t,location:yi(),navigation:Bd(e,n,t)},{CLS:i}=ki(),a={webVitals:{CLS:i}};let o={};sl()&&(o=fl(),ol(!1));const s=Object.assign({},r,o,a);ji(s),performance.clearResourceTimings(),nl()})}function gl(t){Kd(()=>{const{FID:e,LCP:n,TTFB:r,FCP:i}=ki();(e||n||r||i)&&ji({webVitals:{FID:e,LCP:n,TTFB:r,FCP:i},location:t})})}Bn&&gl(ml);function bl(t){const e=An.default+pi,n=JSON.stringify(t);if(!(window.navigator&&window.navigator.sendBeacon&&window.navigator.sendBeacon(e,n))){const i=new XMLHttpRequest;i.open("POST",e,!0),i.setRequestHeader("Content-Type","text/plain;charset=UTF-8"),i.send(n)}}function vl(t,e){document.dispatchEvent(new CustomEvent("client-error",{detail:{error:t,type:e}}))}function Fi({subject:t,error:e={},extra:n,type:r=at.UNKNOWN_ERROR}){let i,a,o;e?(i=e.message,a=e.stack,o=e.wcstack):n&&(i=n.message);const{pathname:s,hostname:l}=window.location,h={subject:t,message:i,stack:a,wcstack:o,extra:n,location:{pathname:s,hostname:l}};vl(h,r),bl(h)}window.addEventListener("error",(t={})=>{const{message:e,filename:n,lineno:r,colno:i,error:a}=t;Fi({subject:"window error",error:a,extra:{message:e,filename:n,lineno:r,colno:i}})}),window.addEventListener("unhandledrejection",(t={})=>{const{reason:e={}}=t;Fi({subject:"unhandledrejection",error:e})});function Ui(...t){console.log(...t)}function dt(...t){console.error(...t)}var Ki=Object.freeze({__proto__:null,log:Ui,logError:dt});function zi(t,e){return`${De}-${[t,e].filter(Boolean).join(":")}`}const{performance:Gi}=globalThis;function Vi(t){const e=JSON.stringify(t);return e&&JSON.parse(e)}function Bi(t,e,n){const r=zi(t,e);Gi.mark(r,{detail:{ctx:Vi(n)}})}function yl(t,e,n){Bi(t,e,n)}function wl(t,e,n){Bi(t,e,n)}function Tl(t,e,n){const r=zi(t,e);try{Gi.measure(r,{detail:{ctx:Vi(n)},start:r})}catch(i){dt(`[instrumentation] no startMark named ${r} found`,i.stack)}}function Pl(){return Date.now()}function El(t,e,n){}function _l(t,e,n){}function Ol(t,e,n,r,i){}function Cl(t){}function Sl(t,e){}function Nl(t){return{logHits(e){},logMisses(e){},unRegister(){}}}function Al(t,e,n){}function Ml(t){}function Rl(t){}function Il(t){}function Dl(t,e,n){}function kl(t){return{increment(e){},decrement(e){},getValue(){return 0},reset(){}}}function $l(t){return{setValue(e){},getValue(){return 0},reset(){}}}function Ll(t){return{update(e){},getValue(){return[]},reset(){}}}function xl(t){return{addDuration(){},time(){},getValue(){return[]},reset(){},get(){}}}var Wi=Object.freeze({__proto__:null,counter:kl,disablePlugin:Il,enablePlugin:Rl,error:Al,gauge:$l,interaction:Ol,mark:yl,markEnd:Tl,markStart:wl,percentileHistogram:Ll,perfEnd:_l,perfStart:El,registerCacheStats:Nl,registerPeriodicLogger:Sl,registerPlugin:Cl,removePeriodicLogger:Ml,time:Pl,timer:xl,trackScenario:Dl});function lt(t,e){if(!t)throw new Error(e)}function Hi(t){return document.cookie.split(";").map(e=>e.trim().split("=")).filter(([e])=>e===t).map(([,e])=>e)[0]}function jl(){return([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,t=>(t^window.crypto.getRandomValues(new Uint8Array(1))[0]&15>>t/4).toString(16))}function Fl(t){return typeof t=="string"&&/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i.test(t)}const Ul=new RegExp("^([a-z]+://|//)","i");function Wn(t){return t==null?!1:Ul.test(t)}class Kl{constructor(){this._registry={eptMarked:[],navToPage:[],navFromPage:[],windowUnload:[]}}get knownEvents(){return Object.keys(this._registry)}_checkEventName(e){if(!this._registry[e])throw new Error(`eventName ${e} isn't valid`)}register(e,n,r){return lt(e&&typeof e=="string","eventName must be a valid string"),this._checkEventName(e),lt(n&&typeof n=="string","listenerName must be a valid string"),lt(typeof r=="function","callback must be provided"),this._registry[e].push({name:n,func:r})}unregister(e,n){this._checkEventName(e);const r=n-1;lt(this._registry[e][r],`No listener found for ${e} with registration ID ${n}`),delete this._registry[e][r]}notify(e,n){this._checkEventName(e),this._registry[e].forEach(r=>r.func(n))}}const zl=new Kl;var Gl=Object.freeze({__proto__:null,notifications:zl});const Vl=/^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z){1})?)?)?$/i,Bl=/^\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z)?$/i,Wl="HH:mm:ss.SSS",Ji="YYYY-MM-DD",qi="T",Hl=/(Z|([+-])(\d{2}):(\d{2}))$/;function Qi(t){return ql(t)&&Yi(t)}function Jl(t){if(!Ql(t))return!1;const e=Xi(t);return Yi(`2018-09-09T${e}Z`)}function Xi(t){return typeof t=="string"?t.split(Hl)[0]:t}function ql(t){return typeof t!="string"?!1:Vl.test(t)}function Ql(t){return typeof t!="string"?!1:Bl.test(t)}function Yi(t){const e=Date.parse(t);return isFinite(e)}const Xl="in a few seconds",Yl="a few seconds ago",Zl="in {0} {1}",ec="{0} {1} ago",tc="s",U={SECONDS:{name:"second",threshold:45},MINUTES:{name:"minute",threshold:45},HOURS:{name:"hour",threshold:22},DAYS:{name:"day",threshold:26},MONTHS:{name:"month",threshold:11},YEARS:{name:"year"}},nc=1e3,rc=6e4,ic=36e5,Hn=864e5;let Zi=class{constructor(e){if(this.milliseconds=0,typeof e!="number"){this.isValid=!1,console.warn(`The value of milliseconds passed into Duration must be of type number, |
| | | but we are getting the ${typeof e} value "${e}" instead. |
| | | `);return}this.isValid=!0,this.milliseconds=e}humanize(e){if(!this.isValid)return"";const n=oc(this);return n===U.SECONDS?this.milliseconds>0?Xl:Yl:sc(e,this.asIn(n),n.name)}asIn(e){switch(e){case U.SECONDS:return Math.round(this.milliseconds/nc);case U.MINUTES:return Math.round(this.milliseconds/rc);case U.HOURS:return Math.round(this.milliseconds/ic);case U.DAYS:return Math.round(this.milliseconds/Hn);case U.MONTHS:return Math.round(ea(this.milliseconds/Hn));case U.YEARS:default:return Math.round(ea(this.milliseconds/Hn)/12)}}};p.registerDecorators(Zi,{fields:["milliseconds"]});var ac=p.registerComponent(Zi,{tmpl:te,sel:"lightningConfigProvider-localizationService"});function ea(t){const e=4800/146097;return t*e}function oc(t){const e=Object.keys(U).find(n=>{const r=U[n];return r===U.YEARS||Math.abs(t.asIn(r))<r.threshold});return U[e]}function sc(t,e,n){return"Intl"in window&&Intl.RelativeTimeFormat?new Intl.RelativeTimeFormat(t,{style:"long",numeric:"always"}).format(e,n):dc(e,n)}function dc(t,e){console.warn("The current environment does not support formatters for relative time.");const n=Math.abs(t),r=n!==1?e+tc:e,i=t>0?Zl:ec;return lc(i,n,r)}function lc(t,...e){return t.replace(/{(\d+)}/g,(n,r)=>e[r])}const Jn=["January","February","March","April","May","June","July","August","September","October","November","December"],ye={short:"M/d/yyyy",medium:"MMM d, yyyy",long:"MMMM d, yyyy"},qn={short:"h:mm a",medium:"h:mm:ss a",long:"h:mm:ss a"},cc={short:"h:m a",medium:"h:m:s a",long:"h:m:s a"};function uc(t,e){let n=!1,r=t;return typeof t=="string"&&(r=t.split(qi)[0],n=!0),ra(r,e,n)}function ta(t,e){return ra(t,e,!0)}function na(t,e){if(!Le(t))return new Date("");const n=(t.getHours()+11)%12+1,r=t.getHours()>=12?"PM":"AM";switch(e){case Wl:return`${K(t.getHours())}:${K(t.getMinutes())}:${K(t.getSeconds())}.${Ac(t.getMilliseconds())}`;case qn.short:return`${n}:${K(t.getMinutes())} ${r}`;case qn.medium:case qn.long:default:return`${n}:${K(t.getMinutes())}:${K(t.getSeconds())} ${r}`}}function hc(t){if(!Le(t))return new Date("");const e=new Date(t.getTime());return`${ta(e)}, ${na(ct(e))}`}function Bt(t){let e=null,n=!0;if(Jl(t)?e=`2014-03-20T${Qn(t)}`:Qi(t)&&(t.indexOf(qi)>0?(e=Qn(t),n=!1):e=`${t}T00:00:00.000Z`),e){const r=new Date(e);return n&&ct(r),r}return null}function mc(t,e){return e===Ji&&Qi(t)?Bt(t):Object.values(ye).includes(e)?Sc(t,e):Object.values(cc).includes(e)?Cc(t):null}function fc(t){return Bt(Qn(t))}function pc(t,e,n){const r=ut(t),i=ut(e);return!r||!i?!1:Wt(r,n).getTime()<Wt(i,n).getTime()}function gc(t,e,n){const r=ut(t),i=ut(e);return!r||!i?!1:Wt(r,n).getTime()>Wt(i,n).getTime()}function bc(t,e,n){const r=new Date(t.getTime());n(Nc(r))}function vc(t,e,n){const r=new Date(t.getTime());n(ct(r))}function yc(t){return t}function wc(t){return t}function Tc(t){return t}function Pc(t){return t}function Ec(){return{format:t=>(console.warn(`The current environment does not support large numbers and the original value of ${t} will be returned.`),t)}}function _c(t){return new ac(t*60*1e3)}function Oc(t){return t.humanize("en")}function Cc(t){const e=t.trim().split(/[:.\s*]/),n=e.length;if(!e||n<2||n>5)return null;const r=e[n-1],i=r.toLowerCase()==="am",a=r.toLowerCase()==="pm";e.splice(-1,1);const o=e.every(b=>!isNaN(b));if(!a&&!i||!o)return null;const s=e[0],l=K(a?s%12+12:s%12),d=n>=3&&e[1]||"0",h=n>=4&&e[2]||"0",m=n===5&&e[3]||"0",g=new Date("2014-03-20");return g.setHours(l,d,h,m),Le(g)?g:null}function Sc(t,e){let n=/^([a-zA-Z]{3})\s*(\d{1,2}),\s*(\d{4})$/;switch(e){case ye.short:n=/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/;break;case ye.long:n=/^([a-zA-Z]+)\s*(\d{1,2}),\s*(\d{4})$/;break}const r=n.exec(t.trim());if(!r)return null;let i=r[1];const a=r[2],o=r[3];e!==ye.short&&(i=Jn.findIndex(d=>d.toLowerCase().includes(i.toLowerCase())),i+=1);const s=`${o}-${K(i)}-${K(a)}`,l=new Date(`${s}T00:00:00.000Z`);return Le(l)?ct(l):null}function ra(t,e,n){const r=ut(t);if(!r)return new Date("");switch(n&&Le(t)&&ct(r),e){case Ji:return`${r.getFullYear()}-${K(r.getMonth()+1)}-${K(r.getDate())}`;case ye.short:return`${r.getMonth()+1}/${r.getDate()}/${r.getFullYear()}`;case ye.long:return`${Jn[r.getMonth()]} ${r.getDate()}, ${r.getFullYear()}`;case ye.medium:default:return`${Jn[r.getMonth()].substring(0,3)} ${r.getDate()}, ${r.getFullYear()}`}}function Wt(t,e){switch(e){case"day":t.setHours(0),t.setMinutes(0);case"minute":t.setSeconds(0),t.setMilliseconds(0);break}return t}function Le(t){return Object.prototype.toString.call(t)==="[object Date]"&&!isNaN(t.getTime())}function Qn(t){return`${Xi(t)}Z`}function ct(t){return t.setMinutes(t.getMinutes()+t.getTimezoneOffset()),t}function Nc(t){return t.setMinutes(t.getMinutes()-t.getTimezoneOffset()),t}function ut(t){return t?Le(t)?new Date(t.getTime()):isFinite(t)&&(typeof t=="number"||typeof t=="string")?new Date(parseInt(t,10)):typeof t=="string"?Bt(t):null:null}function K(t){return Number(t)<10?`0${t}`:t}function Ac(t){return Number(t)<10?`00${t}`:Number(t)<100?`0${t}`:t}var Mc={formatDate:uc,formatDateUTC:ta,formatTime:na,formatDateTimeUTC:hc,parseDateTimeISO8601:Bt,parseDateTime:mc,parseDateTimeUTC:fc,isBefore:pc,isAfter:gc,UTCToWallTime:bc,WallTimeToUTC:vc,translateToOtherCalendar:yc,translateFromOtherCalendar:wc,translateToLocalizedDigits:Tc,translateFromLocalizedDigits:Pc,getNumberFormat:Ec,duration:_c,displayDuration:Oc};function ia(){return Mc}function aa(){return An.default}function oa(){return null}function sa(){return null}function da(){return{densitySetting:""}}var Rc={getOneConfig:da,getIconSvgTemplates:sa,getToken:oa,getPathPrefix:aa,getLocalizationService:ia},Ic=Object.freeze({__proto__:null,default:Rc,getIconSvgTemplates:sa,getLocalizationService:ia,getOneConfig:da,getPathPrefix:aa,getToken:oa});function ht(t){if(t==null)throw new TypeError("Provider must be defined.")}class mt{constructor(e){this.infoMap=new WeakMap,this.defaultValue=e}getInfo(e){let n=this.infoMap.get(e);return n===void 0&&(n={consumers:new Set},this.infoMap.set(e,n)),n}setContext(e,n){ht(e);const r=n,i=this.getInfo(e);i.contextValue=n,i.consumers.forEach(a=>a.provide(r)),i.consumers.size===0&&r?.onComplete&&r.onComplete()}getContext(e){ht(e);const{contextValue:n}=this.getInfo(e);return n!==void 0?n:this.defaultValue}clearContext(e){ht(e),this.infoMap.delete(e)}subscribeContext(e,n){ht(e);const{consumers:r,contextValue:i}=this.getInfo(e);r.has(n)||(r.add(n),n.provide(i))}unsubscribeContext(e,n){ht(e),this.getInfo(e).consumers.delete(n)}}p.registerDecorators(mt,{fields:["infoMap"]});function la(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function ca(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?la(Object(n),!0).forEach(function(r){Dc(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):la(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Dc(t,e,n){return e=kc(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function kc(t){var e=$c(t,"string");return typeof e=="symbol"?e:String(e)}function $c(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const N="LWR",A={Fatal:0,Error:1,Warning:2,Log:3};function Ht(t,e){return Array.isArray(e)?t.replace(/\{([0-9]+)\}/g,(n,r)=>e[r]):t}function we(t,e){return`${t.code}: ${Ht(t.message,e)}`}function ce(t,e){const n=ca(ca({},t),{},{message:Ht(t.message,e)});return t.address&&(n.address=Ht(t.address,e)),t.stack&&(n.stack=Ht(t.stack,e)),n}function ue(t,e,n){if(!t)throw new Error(we(e,n))}const M={INVALID_MIXIN_CMP:{code:`${N}4001`,message:"{0} must be an Element type",level:A.Error},MISSING_CONTEXT:{code:`${N}4002`,message:"Could not find context to perform navigation action.",level:A.Error},INVALID_CONTEXT:{code:`${N}4003`,message:"Cannot register navigation context; it must have this shape: { navigate, generateUrl, subscribe }",level:A.Error},MULTIPLE_ROOTS:{code:`${N}4004`,message:"Router connection failed. There can only be one root router.",level:A.Error},MULTIPLE_CHILDREN:{code:`${N}4005`,message:"Could not add to the navigation hierarchy. There can only be one child per navigation node.",level:A.Error},MISSING_ROUTE:{code:`${N}4006`,message:'A route cannot be created to navigate to URL "{0}"',level:A.Error,address:"{0}"},MISSING_URL:{code:`${N}4007`,message:'A URL cannot be created to navigate to route "{0}"',level:A.Error,address:"{0}"},PRENAV_FAILED:{code:`${N}4008`,message:'A preNavigate hook listener blocked routing to "{0}"',level:A.Warning,address:"{0}"},MISSING_ROUTE_TEMPLATE:{code:`${N}4009`,message:'A route definition must contain a "uri" property.',level:A.Error},MISSING_ROUTE_CMP:{code:`${N}4016`,message:"Expected a route view component with a default export.",level:A.Error},MISSING_DATA_CONTEXT:{code:`${N}4018`,message:"Could not find context to retrieve navigation data.",level:A.Error},INVALID_ROUTE_QUERY:{code:`${N}4019`,message:"Invalid query param in route definition.",level:A.Error},MISSING_PAGE_BINDING:{code:`${N}4020`,message:"Route definition must provide page binding",level:A.Error},INVALID_PAGE_BINDING:{code:`${N}4021`,message:"Invalid page binding in route definition",level:A.Error},INVALID_URI_SYNTAX:{code:`${N}4022`,message:"Invalid uri syntax. URI cannot contain *, +, (, ), ",level:A.Error},VIEW_IMPORT_FAILED:{code:`${N}4023`,message:'Error importing view with name "{0}", failure was: {1}',level:A.Error,stack:"{2}"},VIEW_MISSING:{code:`${N}4024`,message:'Expected a view with name "{0}" in the viewset',level:A.Error},VIEW_IMPORT_FAILED_WITH_SPECIFIER:{code:`${N}4025`,message:'Error importing module "{0}" from view with name "{1}", failure was: {2}',level:A.Error,stack:"{3}"},NO_ROUTE_MATCH:{code:`${N}4026`,message:"A routing match cannot be found for: {0}",level:A.Error},INVALID_ROUTE_HANDLER:{code:`${N}4027`,message:'Route definition "{0}" does not have a valid route handler module',level:A.Error},DESTINATION_NOT_FOUND:{code:`${N}4028`,message:"Route handler returned 404: Not Found",level:A.Error},DESTINATION_ERROR:{code:`${N}4029`,message:"Route handler returned error status {0}: {1}",level:A.Error,stack:"{2}"}},ua=new WeakMap;function Xn(t){const e=ua.get(t);if(!e||!e.value)throw new Error(we(M.MISSING_CONTEXT));return e.value}function ha(t,e){const n={id:t,value:e,update:r=>{n.value=r}};return ua.set(n.id,n),n}function Jt(t){var e;return e=class{constructor(i){this._callback=i}connect(){}disconnect(){}update(i,a){a&&this._callback(a)}static setContext(i,a){t.setContext(i,a)}static getContext(i){return t.getContext(i)}static clearContext(i){t.clearContext(i)}static subscribeContext(i,a){t.subscribeContext(i,a)}static unsubscribeContext(i,a){t.unsubscribeContext(i,a)}},e.contextSchema={value:"required"},e}const Lc=new mt(void 0),Yn=Jt(Lc),xc=new mt(void 0),qt=Jt(xc),jc=new mt(void 0),ft=class extends Jt(jc){async update(e,n){if(n){const r=e&&e.viewName?e.viewName:"default",i=n.viewset[r],a=i,o=a&&a.module||i;let s;if(o)try{const l=await o(),d=l&&l.default;if(d&&d.constructor!==void 0)this._callback(d);else throw new Error("error occurred with view import")}catch(l){const d=l;a.specifier?s=ce(M.VIEW_IMPORT_FAILED_WITH_SPECIFIER,[a.specifier,r,d.message,d.stack||""]):s=ce(M.VIEW_IMPORT_FAILED,[r,d.message,d.stack||""])}else s=ce(M.VIEW_MISSING,[r]);n.onComplete&&n.onComplete(s)}}};function pt(t,e,n){Xn(t).navigate(e,n)}function ma(t,e){return Xn(t).generateUrl(e)}function fa(){const t=[],e=()=>t.length===0,n=a=>{typeof a=="function"&&t.push(a)};return{add:(a=[])=>{Array.isArray(a)?a.forEach(o=>n(o)):n(a)},compile:a=>t.length===0?Promise.resolve(!0):t.reduce((o,s)=>o.then(l=>l===!1?Promise.reject():Promise.resolve(s(a))),Promise.resolve(!0)).then(o=>o!==!1).catch(o=>{if(o instanceof Error)throw o;return!1}),empty:e}}function Fc(t=""){return t=t||"",encodeURIComponent(t)}function Te(t=""){return t=t||"",decodeURIComponent(t)}function Zn(t){t=t||"/",t.charAt(0)!=="/"&&(t="/"+t);const e=t.match(/^[^#?]+/);if(e!==null){const n=e[0];return n==="/"?"/":n.replace(/\/$/,"")}return"/"}function er(t){t=t||"";const e=t.indexOf("#");e>=0&&(t=t.substring(0,e));const n=t.indexOf("?"),r=n>=0?t.substr(n+1):null,i={};return r&&r.split("&").forEach(a=>{if(a.indexOf("=")>=0){const[o,s=""]=a.split("=");i[Te(o)]=Te(s)}else i[Te(a)]=null}),i}function Uc(t={}){const e=Object.keys(t);return e.length?`?${e.map(n=>{const r=t[n];return r===null?n:`${n}=${Fc(r)}`}).join("&")}`:""}function z(t){return t&&t.length>1?t.startsWith(":"):!1}function xe(t){return t&&z(t)?t.substr(1):!1}function pa(t){return Object.values(t).reduce((e,{routeParamName:n})=>{const r=xe(n);return r&&e.push(r),e},[])}function ga(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function gt(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ga(Object(n),!0).forEach(function(r){Kc(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ga(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Kc(t,e,n){return e=zc(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function zc(t){var e=Gc(t,"string");return typeof e=="symbol"?e:String(e)}function Gc(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Vc(t,e){if(!t)return null;const{type:n,attributes:r={},state:i={}}=t;if(n){const[a]=e.filter(o=>{const{original:{page:{type:s=null,attributes:l={},state:d={}}={}}}=o,h=s===n,m=Object.keys(l).every(_=>Object.keys(r).indexOf(_)>=0),g=Object.keys(l).length===Object.keys(r).length,b=Object.keys(d).every(_=>Object.keys(i).indexOf(_)>=0),T=Object.keys(l).filter(_=>{const I=l[_];return!I||!z(I)}).every(_=>l[_]===r[_]),E=Object.keys(d).filter(_=>{const I=d[_];return I===null||!z(I)}).every(_=>d[_]===i[_]);return h&&m&&g&&T&&b&&E});return a||null}return null}function ba(t,e){const{regex:n,params:r}=e,i=n.exec(t);if(i){const[,...a]=i,o={};return r.forEach((s,l)=>{const{name:d}=s,h=a[l];o[d]=h&&Te(h)}),o}return null}function va(t,e){if(t&&e){const{queryMatcher:n}=e,r=n(t);if(r){const i={};return Object.keys(r).forEach(a=>{const o=r[a],{value:s,routeParamName:l}=o,d=l?l.substr(1):a;i[d]=s&&Te(s)}),i}}return null}function Bc(t,e){const{compiledQuery:n}=e,r=Object.keys(n).filter(a=>{const{literalValue:o}=n[a];return!o}),i={};return Object.keys(t).forEach(a=>{const o=t[a];r.indexOf(a)<0&&(i[a]=o)}),i}function Wc(t,e){if(e){const{original:{page:{type:n="",attributes:r={},state:i={}}={}}={}}=e,a=Zn(t),o=er(t),s=ba(a,e),l=va(o,e);if(s&&l){const d=gt(gt({},s),l),h={};Object.keys(r).forEach(b=>{const T=r[b];let E;if(T&&z(T)){const _=T.substr(1);E=d[_]}else E=T;h[b]=E});const m={};Object.keys(i).forEach(b=>{const T=i[b];let E;if(T&&z(T)){const _=T.substr(1);E=d[_]}else E=T;m[b]=E});const g=Bc(o,e);return{type:n,attributes:gt({},h),state:gt(gt({},g),m)}}}return null}function ya(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function he(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ya(Object(n),!0).forEach(function(r){Hc(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ya(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Hc(t,e,n){return e=Jc(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Jc(t){var e=qc(t,"string");return typeof e=="symbol"?e:String(e)}function qc(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Qc(t,e,n){const{original:{patterns:r=null}={}}=n||{};if(r){const i=ba(t,n),a=va(e,n),o=he(he({},i),a);return Object.keys(r).every(s=>{const l=r[s],d=new RegExp(l),h=o[s]||"";return d.test(h)})}return!0}function Xc(t,e){const n=Zn(t),r=er(t),i=e?e.filter(o=>o.regex.test(n)):[],[a]=i.filter(o=>{const{queryMatcher:s}=o;return s(r)&&Qc(n,r,o)});return a||null}function wa(t,e,n=""){n&&t.indexOf(n)===0&&(t=t.replace(n,""));const r=Xc(t,e);let i;if(r){const a=Wc(t,r);if(a)return i={route:{id:r.original.id,attributes:he({},a.attributes),state:he({},a.state),pageReference:{type:a.type,attributes:he({},a.attributes),state:he({},a.state)}},routeDefinition:r},i}else return null;return null}function Yc(t,e,n=""){const r=Vc(t,e);return r?Pa(t,r,n):null}function Ta(t,e,n){const{attributeBindings:r,stateBindings:i}=n,{attributes:a,state:o}=e,s={};return t.forEach(l=>{const[d]=Object.keys(r).filter(h=>xe(r[h])===l);if(d)s[l]=a[d];else{const[h]=Object.keys(i).filter(m=>xe(i[m])===l);h&&(s[l]=o[h])}}),s}function Pa(t,e,n=""){const{params:r,original:{page:i={}}={},toPath:a,compiledQuery:o}=e,{attributes:s={},state:l={}}=i,d=r.filter(({name:_})=>typeof _=="string").map(({name:_})=>_),h=Ta(d,t,{attributeBindings:s,stateBindings:l}),m=a(h),g=pa(o),b=Ta(g,t,{attributeBindings:s,stateBindings:l}),T=Zc(t,b,e),E=Uc(T);return`${n}${m}${E}`}function Zc(t,e,n){const{compiledQuery:r,original:{page:{state:i={}}}}=n,{state:a={}}=t||{},o={};Object.keys(a).filter(l=>{const d=i[l];return!z(d)}).forEach(l=>o[l]=a[l]);const s={};return Object.keys(e).forEach(l=>{const d=e[l],[h]=Object.keys(r).filter(m=>{const g=r[m],{routeParamName:b}=g;return xe(b)===l});if(h){const m=h;s[m]=d}}),he(he({},o),s)}function eu(t,e,n=""){const r=wa(t,e,n);return r&&r.route&&r.route.pageReference?r.route.pageReference:null}function tu(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function nu(t,e){return e in t}function Ea(t,e=2){if(tu(t))try{Object.freeze(t),e>0&&Object.keys(t).forEach(n=>{if(nu(t,n)){const r=t[n];r&&typeof r=="object"&&Ea(r,e-1)}})}catch(n){}return t}function tr(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}function ru(t){const e=[];let n=0;for(;n<t.length;){const r=t[n];if(r==="*"||r==="+"||r==="?"){e.push({type:"MODIFIER",index:n,value:t[n++]});continue}if(r==="\\"){e.push({type:"ESCAPED_CHAR",index:n++,value:t[n++]});continue}if(r==="{"){e.push({type:"OPEN",index:n,value:t[n++]});continue}if(r==="}"){e.push({type:"CLOSE",index:n,value:t[n++]});continue}if(r===":"){let i="",a=n+1;for(;a<t.length;){const o=t.charCodeAt(a);if(o>=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122||o===95){i+=t[a++];continue}break}if(!i)throw new TypeError(`Missing parameter name at ${n}`);e.push({type:"NAME",index:n,value:i}),n=a;continue}if(r==="("){let i=1,a="",o=n+1;if(t[o]==="?")throw new TypeError(`Pattern cannot start with "?" at ${o}`);for(;o<t.length;){if(t[o]==="\\"){a+=t[o++]+t[o++];continue}if(t[o]===")"){if(i--,i===0){o++;break}}else if(t[o]==="("&&(i++,t[o+1]!=="?"))throw new TypeError(`Capturing groups are not allowed at ${o}`);a+=t[o++]}if(i)throw new TypeError(`Unbalanced pattern at ${n}`);if(!a)throw new TypeError(`Missing pattern at ${n}`);e.push({type:"PATTERN",index:n,value:a}),n=o;continue}e.push({type:"CHAR",index:n,value:t[n++]})}return e.push({type:"END",index:n,value:""}),e}function je(t){return t.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function nr(t){return t&&t.sensitive?"":"i"}function _a(t,e={}){const n=ru(t),{prefixes:r="./"}=e,i=`[^${je(e.delimiter||"/#?")}]+?`,a=[];let o=0,s=0,l="";const d=g=>{if(s<n.length&&n[s].type===g)return n[s++].value},h=g=>{const b=d(g);if(b!==void 0)return b;const{type:T,index:E}=n[s];throw new TypeError(`Unexpected ${T} at ${E}, expected ${g}`)},m=()=>{let g="",b;for(;b=d("CHAR")||d("ESCAPED_CHAR");)g+=b;return g};for(;s<n.length;){const g=d("CHAR"),b=d("NAME"),T=d("PATTERN");if(b||T){let I=g||"";r.indexOf(I)===-1&&(l+=I,I=""),l&&(a.push(l),l=""),a.push({name:b||o++,prefix:I,suffix:"",pattern:T||i,modifier:d("MODIFIER")||""});continue}const E=g||d("ESCAPED_CHAR");if(E){l+=E;continue}if(l&&(a.push(l),l=""),d("OPEN")){const I=m(),_n=d("NAME")||"",Ye=d("PATTERN")||"",It=m();h("CLOSE"),a.push({name:_n||(Ye?o++:""),pattern:_n&&!Ye?i:Ye,prefix:I,suffix:It,modifier:d("MODIFIER")||""});continue}h("END")}return a}function iu(t,e={}){const n=nr(e),{encode:r=o=>o,validate:i=!0}=e,a=t.map(o=>{if(typeof o=="object")return new RegExp(`^(?:${o.pattern})$`,n)});return o=>{let s="";for(let l=0;l<t.length;l++){const d=t[l];if(typeof d=="string"){s+=d;continue}const h=o?o[d.name]:void 0,m=d.modifier==="?"||d.modifier==="*",g=d.modifier==="*"||d.modifier==="+";if(Array.isArray(h)){if(!g)throw new TypeError(`Expected "${d.name}" to not repeat, but got an array`);if(h.length===0){if(m)continue;throw new TypeError(`Expected "${d.name}" to not be empty`)}for(let T=0;T<h.length;T++){const E=r(h[T],d);if(i&&!a[l].test(E))throw new TypeError(`Expected all "${d.name}" to match "${d.pattern}", but got "${E}"`);s+=d.prefix+E+d.suffix}continue}if(typeof h=="string"||typeof h=="number"){const T=r(String(h),d);if(i&&!a[l].test(T))throw new TypeError(`Expected "${d.name}" to match "${d.pattern}", but got "${T}"`);s+=d.prefix+T+d.suffix;continue}if(m)continue;const b=g?"an array":"a string";throw new TypeError(`Expected "${d.name}" to be ${b}`)}return s}}function au(t,e){return iu(_a(t,e),e)}function ou(t,e){if(!e)return t;const n=t.source.match(/\((?!\?)/g);if(n)for(let r=0;r<n.length;r++)e.push({name:r,prefix:"",suffix:"",modifier:"",pattern:""});return t}function su(t,e,n={}){const{strict:r=!1,start:i=!0,end:a=!0,encode:o=h=>h}=n,s=`[${je(n.endsWith||"")}]|$`,l=`[${je(n.delimiter||"/#?")}]`;let d=i?"^":"";for(const h of t)if(typeof h=="string")d+=je(o(h));else{const m=je(o(h.prefix)),g=je(o(h.suffix));if(h.pattern)if(e&&e.push(h),m||g)if(h.modifier==="+"||h.modifier==="*"){const b=h.modifier==="*"?"?":"";d+=`(?:${m}((?:${h.pattern})(?:${g}${m}(?:${h.pattern}))*)${g})${b}`}else d+=`(?:${m}(${h.pattern})${g})${h.modifier}`;else d+=`(${h.pattern})${h.modifier}`;else d+=`(?:${m}${g})${h.modifier}`}if(a)r||(d+=`${l}?`),d+=n.endsWith?`(?=${s})`:"$";else{const h=t[t.length-1],m=typeof h=="string"?l.indexOf(h[h.length-1])>-1:h===void 0;r||(d+=`(?:${l}(?=${s}))?`),m||(d+=`(?=${l}|${s})`)}return new RegExp(d,nr(n))}function du(t,e,n){return su(_a(t,n),e,n)}function Oa(t,e,n){return t instanceof RegExp?ou(t,e):Array.isArray(t)?lu(t,e,n):du(t,e,n)}function lu(t,e,n){const r=t.map(i=>Oa(i,e,n).source);return new RegExp(`(?:${r.join("|")})`,nr(n))}function Ca(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Sa(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ca(Object(n),!0).forEach(function(r){cu(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ca(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function cu(t,e,n){return e=uu(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function uu(t){var e=hu(t,"string");return typeof e=="symbol"?e:String(e)}function hu(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const{INVALID_ROUTE_QUERY:mu,MISSING_ROUTE_TEMPLATE:fu,MISSING_PAGE_BINDING:pu,INVALID_PAGE_BINDING:gu,INVALID_URI_SYNTAX:bu}=M;function vu(t){const{routes:e,caseSensitive:n}=t;return e.map(r=>yu(r,n))}function yu(t,e=!1){const n=[],{uri:r,page:i}=t;ue(!!r,fu),ue(wu(r),bu),ue(!!i,pu);const a=Zn(r),o=er(r),s=Oa(a,n,{sensitive:e,end:t.exact!==!1}),l=au(a,{encode:encodeURIComponent}),d=Pu(o),h=Eu(d,e),m={original:t,regex:s,params:n,toPath:l,compiledQuery:d,queryMatcher:h};return ue(Tu(m),gu),m}function wu(t=""){return!["*","(",")",";"].some(r=>t.indexOf(r)>=0)}function Tu(t){const{original:{page:e}={},params:n,compiledQuery:r}=t,i=e&&e.type,a=e&&e.attributes||{},o=e&&e.state||{};if(typeof i!="string"||typeof a!="object"||typeof o!="object")return!1;const s=Object.values(n).map(({name:T})=>T),l=pa(r),d=[...s,...l],h=Object.values(a).filter(z).map(xe),m=Object.values(o).filter(z).map(xe),g=d.every(T=>typeof T!="string"?!1:h.indexOf(T)>=0||m.indexOf(T)>=0),b=d.length===h.length+m.length;return!!(e&&i&&a&&o&&g&&b)}function Pu(t){const e={};return Object.keys(t).forEach(n=>{const r=t[n];ue(z(n)?r===null:!0,mu),z(n)?e[n.substr(1)]={routeParamName:n}:r&&z(r)?e[n]={routeParamName:r}:e[n]={literalValue:r===null?null:r}}),e}function Eu(t,e=!1){return r=>{const i=Object.keys(r),a=Object.keys(t);return a.every(s=>i.indexOf(s)>=0)?a.reduce((s,l)=>{if(s===null)return null;const{literalValue:d,routeParamName:h}=t[l],m=r[l];let g=!0;return typeof d=="string"?g=e?d===m:d.toUpperCase()===(m==null?m:m.toUpperCase()):d===null&&(g=m===d),g?s=Sa(Sa({},s),{},{[l]:{value:m,routeParamName:h}}):s=null,s},{}):null}}const re=typeof document!="undefined",Na=`universalcontainergetnavigationcontext${tr()}`,Aa=Symbol("Navigate"),Ma=Symbol("GenerateUrl"),Fe=Symbol("NavContext"),rr=Symbol("NavContext");function Qt(t){ue(typeof t.prototype.dispatchEvent=="function",M.INVALID_MIXIN_CMP,[t.toString()]);class e extends t{[rr](){if(!this[Fe]&&(this.dispatchEvent(new CustomEvent(Na,{bubbles:!0,composed:!0,detail:{callback:r=>{this[Fe]=r}}})),!this[Fe]))throw new Error(we(M.MISSING_CONTEXT))}[Aa](r,i){this[rr](),pt(this[Fe],r,i)}async[Ma](r){return this[rr](),ma(this[Fe],r)}}return e}Qt.Navigate=Aa,Qt.GenerateUrl=Ma,Qt.NavContext=Fe;var _u=Object.freeze({__proto__:null,ContextInfo:mt,CurrentPageReference:qt,CurrentView:ft,NavigationContext:Yn,NavigationMixin:Qt,generateContextualWireAdapter:Jt,generateUrl:ma,getNavigationHelm:Xn,navigate:pt,registerNavigationHelm:ha});const Ra="sf-aria-live",Ia="tabindex",{document:X}=globalThis;function Ou(t){if(X&&t?.routeDefinition){let e=X.body.querySelector(`#${Ra}`);e||(e=X.createElement("span"),e.id=Ra,e.setAttribute("aria-live","polite"),e.setAttribute("aria-atomic","true"),e.setAttribute("style","position: absolute; margin: -1px; border: 0; padding: 0; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); text-transform: none; white-space: nowrap;"),X.body.appendChild(e)),e.innerText=t.routeDefinition.label}}function Cu(t){X&&t?.routeDefinition&&(X.title=t.routeDefinition.label)}function Su(t){if(!X)return;const e=X.createTreeWalker(X.body,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>r.matches("webruntime-router-container")?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}),n=t?X.body:e.nextNode();n&&(n.setAttribute(Ia,"-1"),n.focus({preventScroll:!0}),n.removeAttribute(Ia))}function Da(){let t,e,n=[];const r=d=>{n.push(d)},i=d=>{n=[...n.slice(0,d),...n.slice(d+1)]},a=d=>{n.filter(h=>h!==null).forEach(h=>h.next&&h.next(d)),t=d,e=void 0},o=d=>{n.filter(h=>h!==null).forEach(h=>h.error&&h.error(d)),t=void 0,e=d};return{next:a,error:o,complete:()=>{n.filter(d=>d!==null).forEach(d=>d.complete&&d.complete()),n=[],t=void 0,e=void 0},subscribe:(d,h=!0)=>{r(d),t&&h&&d.next(t),e&&o(e);const m=n.length-1;return{unsubscribe:()=>i(m)}}}}function ka(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Xt(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ka(Object(n),!0).forEach(function(r){Nu(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ka(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Nu(t,e,n){return e=Au(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Au(t){var e=Mu(t,"string");return typeof e=="symbol"?e:String(e)}function Mu(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}class $a{constructor(e){this.deprecatedConfig={},this.routeHandlerId=0,this.compiledRoutes=[],this.routeObservable=Da(),this.config={basePath:e.basePath||"",caseSensitive:Boolean(e.caseSensitive),routes:e.routes||[],generateUrl:i=>Yc(i,this.compiledRoutes,this.config.basePath),parseUrl:i=>eu(i,this.compiledRoutes,this.config.basePath)};const{DEPRECATED_getRouteFromUrl:n,DEPRECATED_getUrlFromRoute:r}=e;n&&(this.deprecatedConfig.DEPRECATED_getRouteFromUrl=n),r&&(this.deprecatedConfig.DEPRECATED_getUrlFromRoute=r),this.compiledRoutes=vu(this.config)}generateUrl(e){const{DEPRECATED_getUrlFromRoute:n}=this.deprecatedConfig;return n?n(e,this.config.generateUrl):this.config.generateUrl(e)}parseUrl(e){const{DEPRECATED_getRouteFromUrl:n}=this.deprecatedConfig;return n?n(e,this.config.parseUrl):this.config.parseUrl(e)}matchRoute(e){const n=typeof e=="string"?e:this.generateUrl(e);if(n===null)return null;const r=wa(n,this.compiledRoutes,this.config.basePath),i=r&&Pa(r.route.pageReference,r.routeDefinition,this.config.basePath);return!r||!i?null:{pathMatch:i,route:r.route,routeDefinition:r.routeDefinition.original}}async resolveView(e){return new Promise((n,r)=>{const i=this.matchRoute(e);return i?i.routeDefinition.handler().then(a=>{const o=a.default;if(!o)return r(we(M.INVALID_ROUTE_HANDLER,[i.routeDefinition.id]));const s=new o(n);s&&s.update(i.route)}):r(we(M.NO_ROUTE_MATCH,[JSON.stringify(e)]))})}navigate(e){const n=this.matchRoute(e);if(!n)throw new Error(we(M.MISSING_ROUTE,[JSON.stringify(e)]));this.pendingRoute=Xt({},n),this._mapView(this.pendingRoute)}subscribe(e,n){return this.routeObservable.subscribe({next:e,error:()=>{},complete:()=>{}},Boolean(n))}async _mapView(e){const n=Math.random();this.routeHandlerId=n;const i=(await e.routeDefinition.handler()).default;if(!i)throw new Error(we(M.INVALID_ROUTE_HANDLER,[e.routeDefinition.id]));return this.routeHandler=new i(a=>{this._updateView(n,a)}),this.routeHandler&&this.routeHandler.update(e.route),!0}_updateView(e,n){if(!n||e!==this.routeHandlerId)return;if(!this.pendingRoute)throw new Error("Trying to commit route state without a route");const r=Ea(n.viewset);this.routeObservable.next(Xt(Xt(Xt({},this.pendingRoute),n),{},{viewset:r}))}}p.registerDecorators($a,{fields:["deprecatedConfig","routeHandlerId"]});function Ru(t={}){return new $a(t)}class Ue{constructor(){this.overrides=[]}add(e){this.overrides.push(e)}run(...e){return this.overrides.length===0?Promise.resolve(!0):this.overrides.reduce((n,r)=>n.then(i=>i===!1?Promise.resolve(!1):Promise.resolve(r(...e))),Promise.resolve(!0)).then(n=>Promise.resolve(n))}runSync(...e){return this.overrides.length===0?!0:this.overrides.reduce((n,r)=>n===!0?r(...e):!1,!0)}}p.registerDecorators(Ue,{fields:["overrides"]});const La=new Ue,xa=new Ue,ja=new Ue,Fa=new Ue;var Iu=Object.freeze({__proto__:null,NavigationOverrides:xa,Overrides:Ue,PageNavigationFailureOverrides:Fa,PreNavigateOverrides:La,SessionTimeoutOverrides:ja});function Ua(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function C(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ua(Object(n),!0).forEach(function(r){Du(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ua(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Du(t,e,n){return e=ku(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function ku(t){var e=$u(t,"string");return typeof e=="symbol"?e:String(e)}function $u(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Lu(t){const e=[],n=[];t.forEach(i=>{i.uri.includes("?")?n.push(i):e.push(i)});const r=[];return n.forEach(i=>{const a=[],o=i.uri.split("/");let s,l,d="";o.forEach(b=>{b.endsWith("?")?(s=b.substring(0,b.length-1),a.push({value:s,isOptional:!0}),l=s.substring(1),d=i.page.attributes?.[l]?"attributes":"state"):a.push({value:b,isOptional:!1})});const h=C(C({},i),{},{uri:a.map(b=>b.value).join("/")});r.push(h);const m={};Object.keys(i.page[d]).forEach(b=>{b!==l&&(m[b]=i.page[d][b])});const g=C(C({},i),{},{uri:a.filter(b=>!b.isOptional).map(b=>b.value).join("/"),page:C(C({},i.page),{},{[d]:m})});g.patterns&&(g.patterns=Object.fromEntries(Object.entries(g.patterns).filter(([b])=>b!==l))),r.push(g)}),[...e,...r]}function xu(t){const e=[],n=[];return t.forEach(r=>{const{type:i,attributes:a={},state:o={}}=r.page||{};if(i==="standard__objectPage")if(ju(a.actionName))e.push(r);else{let s;a.actionName==="list"?(s=C(C({},r),{},{page:C(C({},r.page),{},{attributes:C({},a),state:C({},o)})}),s.page.attributes.actionName="home"):a.actionName==="home"?(s=C(C({},r),{},{page:C(C({},r.page),{},{attributes:C({},a),state:C({},o)})}),s.page.attributes.actionName="list"):a.actionName||(r.page.attributes.actionName="home",s=C(C({},r),{},{page:C(C({},r.page),{},{attributes:C({},a),state:C({},o)})}),s.page.attributes.actionName="list"),e.push(r,s)}else n.push(r)}),[...e,...n]}function ju(t){return t&&t.length>1?t.startsWith(":"):!1}const Yt={};function Ka(t){const{pathname:e,search:n,hash:r}=new URL(t,window.location.origin);return{pathname:e,search:n,hash:r}}async function Fu(t){const{pathname:e,search:n,hash:r}=Ka(t);if(Yt[e])return Yt[e]+n+r;if(Object.values(Yt).includes(e))return t;try{const{redirected:i,url:a}=await nt.fetch(t,{basePath:"",method:"HEAD",isNonApiRequest:!0});if(i){const o=Ka(a).pathname;return Yt[e]=o,o+n+r}}catch(i){dt(`Unable to fetch canonical URL for ${t}`,`error: |
| | | `,i)}return null}async function Uu(t,e){const{route:n,routeDefinition:r}=e;if(r?.metadata?.hasVanityURL){const i=t.generateUrl(n.pageReference),a=await Fu(i);if(a&&a!==i){const o={type:"standard__webPage",attributes:{url:a}};return pt(t.contextId,o,!0),!0}}return!1}class za{constructor(e){this.callback=void 0,this.callback=e}dispose(){}update(e){const n=Mn.default.find(r=>r.id===e.id)?.view;this.callback({viewset:{default:()=>Ie.load(bi(n),"webruntime/app/v/1")}})}}p.registerDecorators(za,{fields:["callback"]});var Ku=p.registerComponent(za,{tmpl:te,sel:"webruntime-routingService"});function Ga(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Zt(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ga(Object(n),!0).forEach(function(r){zu(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ga(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function zu(t,e,n){return e=Gu(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Gu(t){var e=Vu(t,"string");return typeof e=="symbol"?e:String(e)}function Vu(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}let Va=!0;const en={};function ir(t){return t?.attributes?.urlName||t?.attributes?.urlPath}function Bu(t){t.extraRouteParams&&(Ba(t,t.extraRouteParams),delete t.extraRouteParams)}function Ba(t,e){const n=ir(t);!e||!n||(en[n]=e)}function Wu(t){const e=ir(t);if(e&&e in en){const n=en[e];return!(n&&Object.keys(n).length>0)}return!!e}function Hu(t={}){const{current:e,next:{url:n,route:{pageReference:r}={}}}=t;return e&&Wu(r)?(window.location.assign(n),!0):!1}function ar(t){if(Va)Wa(t,ci.default),Ba(t.pageReference,ci.default),Va=!1;else{const e=ir(t?.pageReference),n=en[e];Wa(t,n)}}function Wa(t,e){or(e)&&(or(t?.attributes)&&(t.attributes=Zt(Zt({},t.attributes),e)),or(t?.pageReference?.attributes)&&(t.pageReference.attributes=Zt(Zt({},t.pageReference.attributes),e)))}function or(t){return t&&typeof t=="object"}const Ha="redirectPageContext";function Ja(t){return t?.state?.[Ha]||null}function Ju(t,e,n={}){const{current:r,next:{route:i}={}}=n;return Ja(i)?(r?window.location.assign(qa(i)):pt(t,e.page,!0),!0):!1}function qa(t){if(!t)return null;const e=Ja(t)||window.btoa(window.encodeURIComponent(JSON.stringify(t)));return`${An.default}/?${Ha}=${e}`}const Qa="KnowledgeArticleVersion",qu=[{type:"standard__objectPage",params:[{name:"filterName",type:"state",value:"Default"}]},{type:"standard__search",params:[{name:"term",type:"state",value:" "}]},{type:"standard__recordPage",params:[{name:"recordName",type:"state",value:"detail"},{name:"categoryPath",type:"state",value:"detail"}],match:(t,{name:e})=>{const{attributes:n={}}=t;return n.urlName||n.urlPath?!1:n.objectApiName==="ProductCategory"?e==="categoryPath":n.objectApiName==="OrderSummary"?!1:e==="recordName"}}];function Qu(t){return qu.find(e=>t.type===e.type)}function Xu(t){return t.attributes&&t.attributes.contentKey&&(t.attributes.urlAlias=t.attributes.contentKey,delete t.attributes.contentKey),t}let tn;function Yu(t,e){t.attributes?.objectApiName===Qa&&(tn===void 0&&(tn=e.find(r=>r.page.attributes?.objectApiName?.endsWith("__kav"))?.page?.attributes?.objectApiName||null),tn&&(t.attributes.objectApiName=tn))}function Zu(t){return!t.attributes?.urlName&&!t.attributes?.urlPath||(t.type==="standard__recordPage"&&(Xa(t),delete t.attributes.recordId,delete t.state?.recordName,delete t.state?.categoryPath),t.type==="standard__recordRelationshipPage"&&(Xa(t),delete t.attributes.recordId)),t}function Xa(t){t.attributes.recordId&&(t.extraRouteParams={recordId:t.attributes.recordId})}function eh(t,e){return t.type==="standard__knowledgeArticlePage"&&(t.type="standard__recordPage",t.attributes.actionName="view",t.attributes.objectApiName=Qa,delete t.attributes.articleType),Yu(t,e),t}function th(t,e){const{params:n,match:r}=e;n.forEach(i=>{const{type:a,name:o,value:s}=i;r&&!r(t,i)||t?.[a]?.[o]||(t[a]||(t[a]={}),t[a][o]=s)})}function Ya(t={}){const e=Qu(t);e&&th(t,e)}function nh(t,e){if(t.state?.categoryPath?.includes("/")||t.attributes?.urlPath?.includes("/")){let[n,r]=e.split("?");return n=n.replace(/%2F/g,"/"),r=r?`?${r}`:"",n+r}return e}const{window:bt,performance:Za}=globalThis,sr=`${De}-framework-router`;Za?.mark(sr);const nn=xu(Lu(Fd(Mn.default)));nn.forEach(t=>{t.handler=()=>new Promise(e=>{e({default:Ku})})});const Pe=nn.find(t=>t.metadata.isDefault),eo=Mn.default.every(t=>t.metadata.isPublic!==!1),rh={basePath:rt.default,caseSensitive:!0,routes:nn,DEPRECATED_getRouteFromUrl:ih,DEPRECATED_getUrlFromRoute:ah},ie=Ru(rh);Za?.measure(sr,sr);let rn;function ih(t,e){const n=e(t);return n?(Ya(n),n):Pe?.page?Pe.page:null}function ah(t={type:"",attributes:{},state:{}},e){const{type:n,attributes:r}=t;let i;return n==="standard__webPage"?(i=r.url,i==null?"":to(i)):(n==="standard__managedContentPage"&&(t=Xu(t)),eh(t,nn),Zu(t),Ya(t),i=e(t),n==="standard__recordPage"&&(i=nh(t,i)),!i&&eo&&(i=qa(t)),i)}async function oh(t,e){const{route:n,routeDefinition:r}=t.next;if(r?.metadata?.isPublic!==!1)return!0;const{default:i}=await Ie.load("@app/user/v/1");if(i.isGuest){const a=no(n.pageReference);return a&&bt&&(e.preventDefault(),bt.location.href=a),!1}return!0}function sh(t){return Ju(ie.contextId,Pe,t)}async function dh(t){try{const{detail:{address:e,message:n,code:r}}=t;if(dt(`Routing error: ${n}`),r===M.PRENAV_FAILED.code)return;if(r===M.MISSING_ROUTE.code&&!Pe&&e?.includes("redirectPageContext=")){bt?.location.assign(e);return}if(Pe?.metadata?.isPublic===!1){const{default:i}=await Ie.load("@app/user/v/1");if(i.isGuest)return}an(Pe.page)}finally{rn?.errorNavigate(t.detail)}}function lh(t){const e=t.detail.address;if(!xa.runSync(e)){t.preventDefault();return}const{type:n,attributes:{url:r}={url:null}}=e;if(n==="standard__webPage"&&r!=null){if(Wn(r)){bt?.open(r),t.preventDefault();return}const i=ie.parseUrl(r);eo&&(!i||i===Pe?.page)&&(bt?.location.assign(to(r)),t.preventDefault())}Bu(e)}function to(t){return Wn(t)?t:rt.default&&t!==rt.default&&t.indexOf(`${rt.default}/`)!==0?`${rt.default}${t}`:t}function an(t){pt(ie.contextId,t)}function no(t){return ie.generateUrl(t)}function on(t,e=!0){return ie.subscribe(t,e)}let dr;async function ch(t){const e=t.detail,n=e.current?.routeDefinition.view;if(n?dr=Rn.default[n]:dr=null,rn?.preNavigate(e),La.run(e),oh(e,t),Li(),sh(e)){t.preventDefault();return}Hu(e)&&t.preventDefault()}async function uh(t){const e=t.detail,n=e.routeDefinition?.view,r=dr!==Rn.default[n];try{Ou(e),Cu(e),Su(r),await Uu(ie,e)}finally{rn?.postNavigate(e)}}function ro(t){rn=Ed._o11y.routingSupport,t.addEventListener("prenavigate",ch),t.addEventListener("handlenavigation",lh),t.addEventListener("postnavigate",uh),t.addEventListener("errornavigate",dh)}var hh=Object.freeze({__proto__:null,generateUrl:no,handleExtraRouteParams:ar,initializeRouterContainer:ro,navigate:an,router:ie,subscribe:on});function mh(){return typeof window!="undefined"&&window.matchMedia("only screen and (min-width: 48em) and (max-width: 64em)").matches}function fh(){return typeof window!="undefined"&&window.matchMedia("only screen and (max-width: 47.9375em)").matches}function lr(){return mh()?"Medium":fh()?"Small":"Large"}var ph=Object.freeze({__proto__:null,getFormFactor:lr});const c="/services/data/v58.0",gh={"CommerceCatalogController.getProductCategoryPath":{urlPath:c+"/commerce/webstores/${webstoreId}/product-category-path/product-categories/${productCategoryId}",urlPathParamNames:["productCategoryId","webstoreId"],method:"GET"},"CommerceCatalogController.getProducts":{urlPath:c+"/commerce/webstores/${webstoreId}/products",urlPathParamNames:["webstoreId"],method:"GET"},"CommerceCatalogController.getProduct":{urlPath:c+"/commerce/webstores/${webstoreId}/products/${productId}",urlPathParamNames:["productId","webstoreId"],method:"GET"},"HSRCommerceCatalogController.getProductCategoryPathHSR":{urlPath:c+"/commerce/webstores/${webstoreId}/versions/${versionId}/product-categories/${productCategoryId}/product-category-path",urlPathParamNames:["productCategoryId","versionId","webstoreId"],method:"GET"},"HSRCommerceCatalogController.getProductHSR":{urlPath:c+"/commerce/webstores/${webstoreId}/versions/${versionId}/products/${productId}",urlPathParamNames:["productId","versionId","webstoreId"],method:"GET"},"CommerceStorePricingController.getProductPrices":{urlPath:c+"/commerce/webstores/${webstoreId}/pricing/products",urlPathParamNames:["webstoreId"],method:"GET"},"CommerceStorePricingController.getProductPrice":{urlPath:c+"/commerce/webstores/${webstoreId}/pricing/products/${productId}",urlPathParamNames:["productId","webstoreId"],method:"GET"},"CommunitiesController.getCommunity":{urlPath:c+"/connect/communities/${communityId}",urlPathParamNames:["communityId"],method:"GET"},"CommunitiesController.ingestRecord":{urlPath:c+"/connect/communities/${communityId}/microbatching",urlPathParamNames:["communityId"],inputRepresentation:"requestIngestionInput",method:"POST"},"MissionsController.purgeUserMissionsActivities":{urlPath:c+"/connect/communities/${communityId}/missions/activities/purge-job",urlPathParamNames:["communityId"],method:"POST"},"CommerceCartController.upsertInventoryReservation":{urlPath:c+"/commerce/webstores/${webstoreId}/carts/${activeCartOrId}/inventory-reservations",urlPathParamNames:["activeCartOrId","webstoreId"],inputRepresentation:"cartInventoryReservationInput",method:"PUT"},"CommerceSearchController.searchProducts":{urlPath:c+"/commerce/webstores/${webstoreId}/search/product-search",urlPathParamNames:["webstoreId"],inputRepresentation:"productSearchInput",method:"POST"},"NavigationMenuController.getCommunityNavigationMenu":{urlPath:c+"/connect/communities/${communityId}/navigation-menu/navigation-menu-items",urlPathParamNames:["communityId"],method:"GET"},"MarketingIntegrationController.getForm":{urlPath:c+"/sites/${siteId}/marketing-integration/forms/${formId}",urlPathParamNames:["formId","siteId"],method:"GET"},"MarketingIntegrationController.saveForm":{urlPath:c+"/sites/${siteId}/marketing-integration/forms",urlPathParamNames:["siteId"],inputRepresentation:"formInput",method:"POST"},"MarketingIntegrationController.submitForm":{urlPath:c+"/sites/${siteId}/marketing-integration/forms/${formId}/data",urlPathParamNames:["formId","siteId"],inputRepresentation:"formSubmissionInput",method:"POST"},"SeoPropertiesController.getRecordSeoProperties":{urlPath:c+"/connect/communities/${communityId}/seo/properties/${recordId}",urlPathParamNames:["communityId","recordId"],method:"GET"},"FlowBuilderController.getRules":{urlPath:c+"/connect/interaction/builder/rules",urlPathParamNames:[],method:"GET"},"OrchestrationController.getOrchestrationInstanceCollection":{urlPath:c+"/connect/interaction/orchestration/instances",urlPathParamNames:[],method:"GET"},"FlowRuntimeConnectController.navigateFlow":{urlPath:c+"/connect/interaction/runtime/navigateFlow",urlPathParamNames:[],inputRepresentation:"request",method:"POST"},"FlowRuntimeConnectController.resumeFlow":{urlPath:c+"/connect/interaction/runtime/resumeFlow",urlPathParamNames:[],method:"POST"},"FlowRuntimeConnectController.startFlow":{urlPath:c+"/connect/interaction/runtime/startFlow",urlPathParamNames:[],method:"POST"},"ExperienceModelTypeSystemController.getBlockTypes":{urlPath:c+"/connect/experience-model/block-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getBlockType":{urlPath:c+"/connect/experience-model/block-types/${fullyQualifiedName}",urlPathParamNames:["fullyQualifiedName"],method:"GET"},"ExperienceModelTypeSystemController.getContentTypes":{urlPath:c+"/connect/experience-model/content-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getContentTypesByContextRecordId":{urlPath:c+"/connect/experience-model/content-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getContentType":{urlPath:c+"/connect/experience-model/content-types/${fullyQualifiedName}",urlPathParamNames:["fullyQualifiedName"],method:"GET"},"ExperienceModelTypeSystemController.getPropertyTypes":{urlPath:c+"/connect/experience-model/property-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getPropertyType":{urlPath:c+"/connect/experience-model/property-types/${fullyQualifiedName}",urlPathParamNames:["fullyQualifiedName"],method:"GET"},"ManagedContentController.getAllManagedContentChannels":{urlPath:c+"/connect/cms/management/channels",urlPathParamNames:[],method:"GET"},"ManagedContentController.postManagedContentChannel":{urlPath:c+"/connect/cms/management/channels",urlPathParamNames:[],inputRepresentation:"ManagedContentChannelInput",method:"POST"},"ManagedContentController.getManagedContentChannelRecordByChannelId":{urlPath:c+"/connect/cms/management/channels/${channelId}",urlPathParamNames:["channelId"],method:"GET"},"ManagedContentController.patchManagedContentChannelRecord":{urlPath:c+"/connect/cms/management/channels/${channelId}",urlPathParamNames:["channelId"],inputRepresentation:"ManagedContentChannelInput",method:"PATCH"},"ManagedContentController.getCollectionItems":{urlPath:c+"/connect/cms/collections/${collectionKeyOrId}",urlPathParamNames:["collectionKeyOrId"],method:"GET"},"ManagedContentController.getManagedContentByTopicsAndContentKeys":{urlPath:c+"/connect/communities/${communityId}/managed-content/delivery",urlPathParamNames:["communityId"],method:"GET"},"ManagedContentController.getPublishedManagedContentListByContentKey":{urlPath:c+"/connect/communities/${communityId}/managed-content/delivery/contents",urlPathParamNames:["communityId"],method:"GET"},"ManagedContentController.createDeployment":{urlPath:c+"/cms/deployments",urlPathParamNames:[],inputRepresentation:"DeploymentInput",method:"POST"},"ManagedContentController.createManagedContent":{urlPath:c+"/connect/cms/contents",urlPathParamNames:[],inputRepresentation:"ManagedContentInputParam",method:"POST"},"ManagedContentController.createManagedContentWithMedia":{urlPath:c+"/connect/cms/contents",urlPathParamNames:[],inputRepresentation:"ManagedContentInputParam",method:"POST"},"ManagedContentController.getManagedContent":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}",urlPathParamNames:["contentKeyOrId"],method:"GET"},"ManagedContentController.createManagedContentExportV2Job":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}/contents/export",urlPathParamNames:["contentSpaceId"],inputRepresentation:"managedContentV2JobRequest",method:"POST"},"ManagedContentController.createManagedContentImportV2Job":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}/contents/import",urlPathParamNames:["contentSpaceId"],inputRepresentation:"managedContentV2JobRequest",method:"POST"},"ManagedContentController.getManagedContentOrchestrationDefinitions":{urlPath:c+"/connect/cms/contents/orchestration-definitions",urlPathParamNames:[],method:"GET"},"ManagedContentController.getManagedContentOrchestrationInstances":{urlPath:c+"/connect/cms/contents/orchestration-instances",urlPathParamNames:[],method:"GET"},"ManagedContentController.createManagedContentOrchestrationInstance":{urlPath:c+"/connect/cms/contents/orchestration-instances",urlPathParamNames:[],inputRepresentation:"mContentOrchInstanceInput",method:"POST"},"ManagedContentController.getManagedContentPreviews":{urlPath:c+"/cms/spaces/${contentSpaceId}/preview-endpoints",urlPathParamNames:["contentSpaceId"],method:"GET"},"ManagedContentController.publish":{urlPath:c+"/connect/cms/contents/publish",urlPathParamNames:[],inputRepresentation:"publishInput",method:"POST"},"ManagedContentController.getManagedContentReferencedBy":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}/referenced-by",urlPathParamNames:["contentKeyOrId"],method:"GET"},"ManagedContentController.getManagedContentVariantRendition":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}/renditions/${renditionType}",urlPathParamNames:["contentKeyOrId","renditionType"],method:"GET"},"ManagedContentController.getManagedContentRunningOrchestrationHistoryEvents":{urlPath:c+"/connect/cms/contents/orchestration-history-events",urlPathParamNames:[],method:"GET"},"ManagedContentController.searchManagedContentForItems":{urlPath:c+"/connect/cms/items/search",urlPathParamNames:[],method:"GET"},"ManagedContentController.getManagedContentSpaces":{urlPath:c+"/connect/cms/spaces",urlPathParamNames:[],method:"GET"},"ManagedContentController.getManagedContentSpaceFolderItems":{urlPath:c+"/connect/cms/folders/${folderId}/items",urlPathParamNames:["folderId"],method:"GET"},"ManagedContentController.getManagedContentSpace":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}",urlPathParamNames:["contentSpaceId"],method:"GET"},"ManagedContentController.patchManagedContentSpace":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}",urlPathParamNames:["contentSpaceId"],inputRepresentation:"ManagedContentSpaceInput",method:"PATCH"},"ManagedContentController.createTranslationJob":{urlPath:c+"/connect/managed-content/translation",urlPathParamNames:[],inputRepresentation:"translationRequest",method:"POST"},"ManagedContentController.createTranslationV2Job":{urlPath:c+"/connect/cms/content/spaces/${contentSpaceId}/translation",urlPathParamNames:["contentSpaceId"],inputRepresentation:"translationV2Request",method:"POST"},"ManagedContentController.unpublish":{urlPath:c+"/connect/cms/contents/unpublish",urlPathParamNames:[],inputRepresentation:"unpublishInput",method:"POST"},"ManagedContentController.createManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants",urlPathParamNames:[],inputRepresentation:"ManagedContentVariantInputParam",method:"POST"},"ManagedContentController.getVariantReferences":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}/variants/references",urlPathParamNames:["contentKeyOrId"],method:"GET"},"ManagedContentController.deleteManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],method:"DELETE"},"ManagedContentController.getManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],method:"GET"},"ManagedContentController.replaceManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],inputRepresentation:"ManagedContentVariantInputParam",method:"PUT"},"ManagedContentController.replaceManagedContentVariantWithMedia":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],inputRepresentation:"ManagedContentVariantInputParam",method:"PUT"},"ManagedContentController.getManagedContentVariantVersions":{urlPath:c+"/connect/cms/contents/variants/${variantId}/versions",urlPathParamNames:["variantId"],method:"GET"},"ManagedContentDeliveryController.getCollectionItemsForChannel":{urlPath:c+"/connect/cms/delivery/channels/${channelId}/collections/${collectionKeyOrId}",urlPathParamNames:["channelId","collectionKeyOrId"],method:"GET"},"ManagedContentDeliveryController.getCollectionItemsForSite":{urlPath:c+"/connect/sites/${siteId}/cms/delivery/collections/${collectionKeyOrId}",urlPathParamNames:["collectionKeyOrId","siteId"],method:"GET"},"ManagedContentDeliveryController.getCollectionMetadata":{urlPath:c+"/connect/cms/collections/${collectionKeyOrId}/metadata",urlPathParamNames:["collectionKeyOrId"],method:"GET"},"ManagedContentDeliveryController.getCollectionMetadataForChannel":{urlPath:c+"/connect/cms/delivery/channels/${channelId}/collections/${collectionKeyOrId}/metadata",urlPathParamNames:["channelId","collectionKeyOrId"],method:"GET"},"ManagedContentDeliveryController.getCollectionMetadataForSite":{urlPath:c+"/connect/sites/${siteId}/cms/delivery/collections/${collectionKeyOrId}/metadata",urlPathParamNames:["collectionKeyOrId","siteId"],method:"GET"},"ManagedContentTypeController.getContentTypeSchema":{urlPath:c+"/connect/cms/content-types/${contentTypeFQN}",urlPathParamNames:["contentTypeFQN"],method:"GET"},"SitesController.searchSite":{urlPath:c+"/connect/sites/${siteId}/search",urlPathParamNames:["siteId"],method:"GET"},"ActionsController.getGlobalActions":{urlPath:c+"/ui-api/actions/global",urlPathParamNames:[],method:"GET"},"ActionsController.getActionLayout":{urlPath:c+"/ui-api/actions/layout/${actionApiName}",urlPathParamNames:["actionApiName"],method:"GET"},"ActionsController.getListViewActions":{urlPath:c+"/ui-api/actions/list-view/${listViewIds}",urlPathParamNames:["listViewIds"],method:"GET"},"ActionsController.getLookupActions":{urlPath:c+"/ui-api/actions/lookup/${objectApiNames}",urlPathParamNames:["objectApiNames"],method:"GET"},"ActionsController.getMRUListActions":{urlPath:c+"/ui-api/actions/mru-list/${objectApiNames}",urlPathParamNames:["objectApiNames"],method:"GET"},"ActionsController.getObjectCreateActions":{urlPath:c+"/ui-api/actions/object/${objectApiName}/record-create",urlPathParamNames:["objectApiName"],method:"GET"},"ActionsController.getActionOverrides":{urlPath:c+"/ui-api/actions/overrides/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"ActionsController.performUpdateRecordQuickAction":{urlPath:c+"/ui-api/actions/perform-quick-action/${actionApiName}",urlPathParamNames:["actionApiName"],inputRepresentation:"performQuickActionInput",method:"PATCH"},"ActionsController.performQuickAction":{urlPath:c+"/ui-api/actions/perform-quick-action/${actionApiName}",urlPathParamNames:["actionApiName"],inputRepresentation:"performQuickActionInput",method:"POST"},"ActionsController.getQuickActionDefaults":{urlPath:c+"/ui-api/actions/record-defaults/${actionApiName}",urlPathParamNames:["actionApiName"],method:"GET"},"ActionsController.getRecordEditActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/record-edit",urlPathParamNames:["recordIds"],method:"GET"},"ActionsController.getRecordActions":{urlPath:c+"/ui-api/actions/record/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"ActionsController.getRelatedListsActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/batch/${relatedListIds}",urlPathParamNames:["recordIds","relatedListIds"],method:"GET"},"ActionsController.postRelatedListsActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/batch",urlPathParamNames:["recordIds"],inputRepresentation:"listRecordActionsQuery",method:"POST"},"ActionsController.getRelatedListRecordActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list-record/${relatedListRecordIds}",urlPathParamNames:["recordIds","relatedListRecordIds"],method:"GET"},"ActionsController.getRelatedListActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/${relatedListId}",urlPathParamNames:["recordIds","relatedListId"],method:"GET"},"ActionsController.postRelatedListActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/${relatedListId}",urlPathParamNames:["recordIds","relatedListId"],inputRepresentation:"listRecordActionsQuery",method:"POST"},"AppsController.getAppByID":{urlPath:c+"/ui-api/apps/${appId}",urlPathParamNames:["appId"],method:"GET"},"AppsController.getAccessibleApps":{urlPath:c+"/ui-api/apps",urlPathParamNames:[],method:"GET"},"AppsController.getNavItems":{urlPath:c+"/ui-api/nav-items",urlPathParamNames:[],method:"GET"},"ListUiController.getListsByObjectName":{urlPath:c+"/ui-api/list-ui/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"ListUiController.getListInfosById":{urlPath:c+"/ui-api/list-info/batch",urlPathParamNames:[],method:"GET"},"ListUiController.getListInfosByName":{urlPath:c+"/ui-api/list-info/batch",urlPathParamNames:[],method:"GET"},"ListUiController.getListInfoById":{urlPath:c+"/ui-api/list-info/${listViewId}",urlPathParamNames:["listViewId"],method:"GET"},"ListUiController.getListInfoByName":{urlPath:c+"/ui-api/list-info/${objectApiName}/${listViewApiName}",urlPathParamNames:["listViewApiName","objectApiName"],method:"GET"},"ListUiController.getListRecordsById":{urlPath:c+"/ui-api/list-records/${listViewId}",urlPathParamNames:["listViewId"],method:"GET"},"ListUiController.getListRecordsByName":{urlPath:c+"/ui-api/list-records/${objectApiName}/${listViewApiName}",urlPathParamNames:["listViewApiName","objectApiName"],method:"GET"},"ListUiController.getListUiById":{urlPath:c+"/ui-api/list-ui/${listViewId}",urlPathParamNames:["listViewId"],method:"GET"},"ListUiController.getListUiByName":{urlPath:c+"/ui-api/list-ui/${objectApiName}/${listViewApiName}",urlPathParamNames:["listViewApiName","objectApiName"],method:"GET"},"MruListUiController.getMruListInfo":{urlPath:c+"/ui-api/mru-list-info/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"MruListUiController.getMruListRecords":{urlPath:c+"/ui-api/mru-list-records/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"MruListUiController.getMruListUi":{urlPath:c+"/ui-api/mru-list-ui/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getAggregateUi":{urlPath:c+"/ui-api/aggregate-ui",urlPathParamNames:[],method:"GET"},"RecordUiController.executeAggregateUi":{urlPath:c+"/ui-api/aggregate-ui",urlPathParamNames:[],inputRepresentation:"input",method:"POST"},"RecordUiController.getRecordsWithFields":{urlPath:c+"/ui-api/records/batch/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getRecordsWithLayouts":{urlPath:c+"/ui-api/records/batch/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getDedupeConfig":{urlPath:c+"/ui-api/duplicates/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getDuplicateConfig":{urlPath:c+"/ui-api/duplicates/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getFormByName":{urlPath:c+"/ui-api/forms/${apiName}",urlPathParamNames:["apiName"],method:"GET"},"RecordUiController.executeBatchGraphQL":{urlPath:c+"/graphql/batch",urlPathParamNames:[],inputRepresentation:"QUERY_INPUT_PARAMETER",method:"POST"},"RecordUiController.executeGraphQL":{urlPath:c+"/graphql",urlPathParamNames:[],inputRepresentation:"queryInput",method:"POST"},"RecordUiController.getLayout":{urlPath:c+"/ui-api/layout/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getLayoutUserState":{urlPath:c+"/ui-api/layout/${objectApiName}/user-state",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.updateLayoutUserState":{urlPath:c+"/ui-api/layout/${objectApiName}/user-state",urlPathParamNames:["objectApiName"],inputRepresentation:"userState",method:"PATCH"},"RecordUiController.getObjectInfos":{urlPath:c+"/ui-api/object-info/batch/${objectApiNames}",urlPathParamNames:["objectApiNames"],method:"GET"},"RecordUiController.getObjectInfo":{urlPath:c+"/ui-api/object-info/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getPicklistValuesByRecordType":{urlPath:c+"/ui-api/object-info/${objectApiName}/picklist-values/${recordTypeId}",urlPathParamNames:["objectApiName","recordTypeId"],method:"GET"},"RecordUiController.getPicklistValues":{urlPath:c+"/ui-api/object-info/${objectApiName}/picklist-values/${recordTypeId}/${fieldApiName}",urlPathParamNames:["fieldApiName","objectApiName","recordTypeId"],method:"GET"},"RecordUiController.findDuplicates":{urlPath:c+"/ui-api/predupe",urlPathParamNames:[],inputRepresentation:"recordInput",method:"POST"},"RecordUiController.postRecordAvatarAssociation":{urlPath:c+"/ui-api/record-avatars/${recordId}/association",urlPathParamNames:["recordId"],inputRepresentation:"input",method:"POST"},"RecordUiController.getRecordAvatars":{urlPath:c+"/ui-api/record-avatars/batch/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getRecordCloneDefaults":{urlPath:c+"/ui-api/record-defaults/clone/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.getRecordCreateDefaults":{urlPath:c+"/ui-api/record-defaults/create/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.createRecord":{urlPath:c+"/ui-api/records",urlPathParamNames:[],inputRepresentation:"recordInput",method:"POST"},"RecordUiController.deleteRecord":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],method:"DELETE"},"RecordUiController.getRecordWithFields":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.getRecordWithLayouts":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.updateRecord":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],inputRepresentation:"recordInput",method:"PATCH"},"RecordUiController.getRecordDefaultsTemplateClone":{urlPath:c+"/ui-api/record-defaults/template/clone/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.getRecordDefaultsTemplateForCreate":{urlPath:c+"/ui-api/record-defaults/template/create/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getRecordUis":{urlPath:c+"/ui-api/record-ui/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getValidationRulesInfo":{urlPath:c+"/ui-api/object-info/${objectApiName}/validation-rules-info",urlPathParamNames:["objectApiName"],method:"GET"},"RelatedListUiController.getRelatedListInfoBatch":{urlPath:c+"/ui-api/related-list-info/batch/${parentObjectApiName}/${relatedListNames}",urlPathParamNames:["parentObjectApiName","relatedListNames"],method:"GET"},"RelatedListUiController.getRelatedListInfoCollection":{urlPath:c+"/ui-api/related-list-info/${parentObjectApiName}",urlPathParamNames:["parentObjectApiName"],method:"GET"},"RelatedListUiController.getRelatedListInfo":{urlPath:c+"/ui-api/related-list-info/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],method:"GET"},"RelatedListUiController.getRelatedListInfoByApiName":{urlPath:c+"/ui-api/related-list-info/${parentObjectApiName}/${relatedListId}",urlPathParamNames:["parentObjectApiName","relatedListId"],method:"GET"},"RelatedListUiController.updateRelatedListInfoByApiName":{urlPath:c+"/ui-api/related-list-info/${parentObjectApiName}/${relatedListId}",urlPathParamNames:["parentObjectApiName","relatedListId"],inputRepresentation:"relatedListInfoInput",method:"PATCH"},"RelatedListUiController.getRelatedListPreferencesBatch":{urlPath:c+"/ui-api/related-list-preferences/batch/${preferencesIds}",urlPathParamNames:["preferencesIds"],method:"GET"},"RelatedListUiController.getRelatedListPreferences":{urlPath:c+"/ui-api/related-list-preferences/${preferencesId}",urlPathParamNames:["preferencesId"],method:"GET"},"RelatedListUiController.updateRelatedListPreferences":{urlPath:c+"/ui-api/related-list-preferences/${preferencesId}",urlPathParamNames:["preferencesId"],inputRepresentation:"relatedListUserPreferencesInput",method:"PATCH"},"RelatedListUiController.getRelatedListsRecordCount":{urlPath:c+"/ui-api/related-list-count/batch/${parentRecordId}/${relatedListNames}",urlPathParamNames:["parentRecordId","relatedListNames"],method:"GET"},"RelatedListUiController.getRelatedListRecordCount":{urlPath:c+"/ui-api/related-list-count/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],method:"GET"},"RelatedListUiController.getRelatedListRecordsBatch":{urlPath:c+"/ui-api/related-list-records/batch/${parentRecordId}/${relatedListIds}",urlPathParamNames:["parentRecordId","relatedListIds"],method:"GET"},"RelatedListUiController.postRelatedListRecordsBatch":{urlPath:c+"/ui-api/related-list-records/batch/${parentRecordId}",urlPathParamNames:["parentRecordId"],inputRepresentation:"listRecordsQuery",method:"POST"},"RelatedListUiController.getRelatedListRecords":{urlPath:c+"/ui-api/related-list-records/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],method:"GET"},"RelatedListUiController.postRelatedListRecords":{urlPath:c+"/ui-api/related-list-records/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],inputRepresentation:"listRecordsQuery",method:"POST"},"SearchUiController.searchResultsKeyword":{urlPath:c+"/ui-api/search/results/keyword",urlPathParamNames:[],inputRepresentation:"options",method:"POST"},"SearchUiController.getSearchFilterMetadata":{urlPath:c+"/ui-api/search-info/${objectApiName}/filters",urlPathParamNames:["objectApiName"],method:"GET"},"SearchUiController.getFilterOptions":{urlPath:c+"/ui-api/search-info/${objectApiName}/filters/${filterApiName}/options",urlPathParamNames:["filterApiName","objectApiName"],method:"GET"},"SearchUiController.searchResults":{urlPath:c+"/ui-api/search/results",urlPathParamNames:[],inputRepresentation:"options",method:"POST"},"LookupController.getLookupMetadata":{urlPath:c+"/ui-api/search-info/${objectApiName}/lookup/${fieldApiName}",urlPathParamNames:["fieldApiName","objectApiName"],method:"GET"},"LookupController.getLookupRecords":{urlPath:c+"/ui-api/lookups/${objectApiName}/${fieldApiName}",urlPathParamNames:["fieldApiName","objectApiName"],method:"GET"}};function bh(t){return gh[t]}function vh(t){nt.sendBeacon({path:pi,payload:JSON.stringify(t),contentType:"text/plain;charset=UTF-8"})}function yh(t,e){document.dispatchEvent(new CustomEvent("client-error",{detail:{error:t,type:e}}))}function vt({subject:t,error:e,wcstack:n,type:r=at.UNKNOWN_ERROR}){n=n||e.wcstack;const{message:i,stack:a}=e,{hostname:o,pathname:s}=globalThis.location||{},d={subject:t,message:i,stack:a,wcstack:n,location:{hostname:o,pathname:s}};dt(a||d),typeof document!="undefined"&&(yh(d,r),vh(d))}function io(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function sn(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?io(Object(n),!0).forEach(function(r){wh(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):io(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function wh(t,e,n){return e=Th(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Th(t){var e=Ph(t,"string");return typeof e=="symbol"?e:String(e)}function Ph(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}async function Eh(t,e){const[n,r]=t.split(".");if(n==="ApexActionController")return Oh(r,e);const i=bh(t);if(i)return _h(i,e);throw new Error(`Unsupported controller action: ${n}.${r}`)}async function _h({urlPath:t,urlPathParamNames:e,method:n,inputRepresentation:r},i){const a=i&&sn({},i)||{};let o=e.reduce((h,m)=>{const g=a[m];return delete a[m],h.replace(`\${${m}}`,encodeURIComponent(g))},t),s;(n==="POST"||n==="PATCH")&&a[r]&&(s=JSON.stringify(a[r]),delete a[r]),Object.keys(a).length&&(o+=`?${Object.entries(a).filter(([,h])=>h!=null&&(!Array.isArray(h)||h.length)).map(([h,m])=>`${encodeURIComponent(h)}=${encodeURIComponent(m)}`).join("&")}`);const l=await nt.fetch(o,{method:n,body:s});let d;if(l.status===401&&ao(),l.status!==204&&(d=await l.json()),d instanceof Array&&(d=d[0]),!l.ok){const h={status:l.status,data:sn(sn({},d),{},{statusCode:l.status})};throw so([h])}return oo(d)}async function Oh(t,e){if(t==="execute"){const{url:n,httpRequestOptions:r}=Ch(t,e);return nt.fetch(n,r).then(i=>(i.status===401&&ao(),i.status!==204?i.json():void 0)).then(i=>{if(i&&i.error&&i.error.length>0)throw so(i.error);return oo(i)})}throw new Error(`Unsupported Apex action: ${t}`)}function Ch(t,e){if((!e||typeof e!="object"||Object.keys(e).length===0)&&vt({subject:"Apex API action error - invalid params",type:at.APEX_ACTION_ERROR,error:new Error(`Apex ${t} action called with invalid params: '${JSON.stringify(e)}'.`)}),e&&e.cacheable===!0){const n=`/apex/${t}?${Sh(e)}`;if(n.length<=Id)return{url:n,httpRequestOptions:{method:"GET",basePath:ui.default}}}return{url:`/apex/${t}`,httpRequestOptions:{method:"POST",body:JSON.stringify(e),basePath:ui.default}}}function Sh(t){const e=sn({},t),n=e.params;if(n&&typeof n=="object"){const r=Object.keys(n).sort().reduce((i,a)=>(i[a]=n[a],i),{});e.params=JSON.stringify(r)}return Object.keys(e).filter(r=>e[r]!==void 0&&e[r]!=null).sort().map(r=>`${r}=${encodeURIComponent(e[r])}`).join("&")}function ao(){ja.runSync()}function oo(t){return{getReturnValue:()=>t}}function so(t){return{getError:()=>t}}var Nh=Object.freeze({__proto__:null,createComponent:null,executeGlobalControllerRawResponse:Eh,getDefinition:null,logger:Ki,renderComponent:null});function lo(t){return t===void 0}const Ah="ValueChangedEvent";class co{constructor(e){this.type=Ah,this.value=e}}const{freeze:uo,defineProperty:Mh,isExtensible:Rh}=Object,Ih="$$DeprecatedWiredElementHostKey$$",Dh="$$DeprecatedWiredParamsMetaKey$$";function kh(t,e){if(t==null||!Rh(t))throw new TypeError("adapter id must be extensible");if(typeof e!="function")throw new TypeError("adapter factory must be a callable");if("adapter"in t)throw new TypeError("adapter id is already associated to an adapter factory");const n=class extends Kh{constructor(r){super(r);e(this.eventTarget)}};uo(n),uo(n.prototype),Mh(t,"adapter",{writable:!1,configurable:!1,value:n})}function $h(){}const{forEach:cr,splice:Lh,indexOf:xh}=Array.prototype,ho="connect",mo="disconnect",fo="config";function ur(t,e){const n=xh.call(t,e);n>-1&&Lh.call(t,n,1)}function jh(t){return Object.keys(t).length===0}function Fh(t,e){return e.length===0||e.some(n=>!lo(t[n]))}function Uh(t,e,n){return n.some(r=>t[r]!==e[r])}class Kh{constructor(e){this.connecting=[],this.disconnecting=[],this.configuring=[],this.isFirstUpdate=!0,this.callback=e,this.wiredElementHost=e[Ih],this.dynamicParamsNames=e[Dh],this.eventTarget={addEventListener:(n,r)=>{switch(n){case ho:{this.connecting.push(r);break}case mo:{this.disconnecting.push(r);break}case fo:{this.configuring.push(r),this.currentConfig!==void 0&&r.call(void 0,this.currentConfig);break}default:throw new Error(`Invalid event type ${n}.`)}},removeEventListener:(n,r)=>{switch(n){case ho:{ur(this.connecting,r);break}case mo:{ur(this.disconnecting,r);break}case fo:{ur(this.configuring,r);break}default:throw new Error(`Invalid event type ${n}.`)}},dispatchEvent:n=>{if(n instanceof co){const r=n.value;this.callback(r)}else{if(n.type==="wirecontextevent")return this.wiredElementHost.dispatchEvent(n);throw new Error(`Invalid event type ${n.type}.`)}return!1}}}update(e){this.isFirstUpdate&&(this.isFirstUpdate=!1,!jh(e)&&!Fh(e,this.dynamicParamsNames))||(lo(this.currentConfig)||Uh(e,this.currentConfig,this.dynamicParamsNames))&&(this.currentConfig=e,cr.call(this.configuring,n=>{n.call(void 0,e)}))}connect(){cr.call(this.connecting,e=>e.call(void 0))}disconnect(){cr.call(this.disconnecting,e=>e.call(void 0))}}var zh=Object.freeze({__proto__:null,ValueChangedEvent:co,register:kh,registerWireService:$h});const Gh={hidden:""},Vh={lwc:{dom:"manual"}};function yt(t,e,n,r){const{shc:i,h:a}=t;return[a("div",{attrs:Gh,props:{innerHTML:r._rawHtml$0!==(r._rawHtml$0=e.scriptElement)?r._sanitizedHtml$0=i(e.scriptElement):r._sanitizedHtml$0},context:Vh,key:0})]}var Bh=p.registerTemplate(yt);yt.stylesheets=[],yt.renderMode="light",yt.stylesheetToken="experience-dataLayerObject_dataLayerObject",p.freezeTemplate(yt);function Wh(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}else return Array.from(t)}var Hh=Object.hasOwnProperty,po=Object.setPrototypeOf,Jh=Object.isFrozen,qh=Object.getPrototypeOf,Qh=Object.getOwnPropertyDescriptor,$=Object.freeze,ae=Object.seal,Xh=Object.create,go=typeof Reflect!="undefined"&&Reflect,dn=go.apply,hr=go.construct;dn||(dn=function(e,n,r){return e.apply(n,r)}),$||($=function(e){return e}),ae||(ae=function(e){return e}),hr||(hr=function(e,n){return new(Function.prototype.bind.apply(e,[null].concat(Wh(n))))});var Yh=G(Array.prototype.forEach),bo=G(Array.prototype.pop),wt=G(Array.prototype.push),Ee=G(String.prototype.toLowerCase),vo=G(String.prototype.match),me=G(String.prototype.replace),Zh=G(String.prototype.indexOf),em=G(String.prototype.trim),fe=G(RegExp.prototype.test),yo=tm(TypeError);function G(t){return function(e){for(var n=arguments.length,r=Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];return dn(t,e,r)}}function tm(t){return function(){for(var e=arguments.length,n=Array(e),r=0;r<e;r++)n[r]=arguments[r];return hr(t,n)}}function P(t,e){po&&po(t,null);for(var n=e.length;n--;){var r=e[n];if(typeof r=="string"){var i=Ee(r);i!==r&&(Jh(e)||(e[n]=i),r=i)}t[r]=!0}return t}function Ke(t){var e=Xh(null),n=void 0;for(n in t)dn(Hh,t,[n])&&(e[n]=t[n]);return e}function ln(t,e){for(;t!==null;){var n=Qh(t,e);if(n){if(n.get)return G(n.get);if(typeof n.value=="function")return G(n.value)}t=qh(t)}return null}var wo=$(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),mr=$(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),fr=$(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),nm=$(["animate","color-profile","cursor","discard","fedropshadow","feimage","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),pr=$(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover"]),rm=$(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),To=$(["#text"]),Po=$(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns"]),gr=$(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Eo=$(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),cn=$(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),im=ae(/\{\{[\s\S]*|[\s\S]*\}\}/gm),am=ae(/<%[\s\S]*|[\s\S]*%>/gm),om=ae(/^data-[\-\w.\u00B7-\uFFFF]/),sm=ae(/^aria-[\-\w]+$/),dm=ae(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),lm=ae(/^(?:\w+script|data):/i),cm=ae(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Tt=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};function Y(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}else return Array.from(t)}var um=function(){return typeof window=="undefined"?null:window},hm=function(e,n){if((typeof e=="undefined"?"undefined":Tt(e))!=="object"||typeof e.createPolicy!="function")return null;var r=null,i="data-tt-policy-suffix";n.currentScript&&n.currentScript.hasAttribute(i)&&(r=n.currentScript.getAttribute(i));var a="dompurify"+(r?"#"+r:"");try{return e.createPolicy(a,{createHTML:function(s){return s}})}catch(o){return console.warn("TrustedTypes policy "+a+" could not be created."),null}};function _o(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:um(),e=function(u){return _o(u)};if(e.version="2.2.6",e.removed=[],!t||!t.document||t.document.nodeType!==9)return e.isSupported=!1,e;var n=t.document,r=t.document,i=t.DocumentFragment,a=t.HTMLTemplateElement,o=t.Node,s=t.Element,l=t.NodeFilter,d=t.NamedNodeMap,h=d===void 0?t.NamedNodeMap||t.MozNamedAttrMap:d,m=t.Text,g=t.Comment,b=t.DOMParser,T=t.trustedTypes,E=s.prototype,_=ln(E,"cloneNode"),I=ln(E,"nextSibling"),_n=ln(E,"childNodes"),Ye=ln(E,"parentNode");if(typeof a=="function"){var It=r.createElement("template");It.content&&It.content.ownerDocument&&(r=It.content.ownerDocument)}var ve=hm(T,n),Qs=ve&&Cn?ve.createHTML(""):"",On=r,Hr=On.implementation,Lg=On.createNodeIterator,xg=On.getElementsByTagName,jg=On.createDocumentFragment,Fg=n.importNode,Xs={};try{Xs=Ke(r).documentMode?r.documentMode:{}}catch(y){}var Z={};e.isSupported=Hr&&typeof Hr.createHTMLDocument!="undefined"&&Xs!==9;var Jr=im,qr=am,Ug=om,Kg=sm,zg=lm,Ys=cm,Qr=dm,D=null,Zs=P({},[].concat(Y(wo),Y(mr),Y(fr),Y(pr),Y(To))),x=null,ed=P({},[].concat(Y(Po),Y(gr),Y(Eo),Y(cn))),Xr=null,td=null,nd=!0,Yr=!0,rd=!1,Ze=!1,Dt=!1,Zr=!1,ei=!1,kt=!1,ti=!1,id=!0,Cn=!1,ad=!0,ni=!0,$t=!1,et={},Gg=P({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),od=null,sd=P({},["audio","video","img","source","image","track"]),ri=null,dd=P({},["alt","class","for","id","label","name","pattern","placeholder","summary","title","value","style","xmlns"]),tt=null,Vg=r.createElement("form"),ii=function(u){tt&&tt===u||((!u||(typeof u=="undefined"?"undefined":Tt(u))!=="object")&&(u={}),u=Ke(u),D="ALLOWED_TAGS"in u?P({},u.ALLOWED_TAGS):Zs,x="ALLOWED_ATTR"in u?P({},u.ALLOWED_ATTR):ed,ri="ADD_URI_SAFE_ATTR"in u?P(Ke(dd),u.ADD_URI_SAFE_ATTR):dd,od="ADD_DATA_URI_TAGS"in u?P(Ke(sd),u.ADD_DATA_URI_TAGS):sd,Xr="FORBID_TAGS"in u?P({},u.FORBID_TAGS):{},td="FORBID_ATTR"in u?P({},u.FORBID_ATTR):{},et="USE_PROFILES"in u?u.USE_PROFILES:!1,nd=u.ALLOW_ARIA_ATTR!==!1,Yr=u.ALLOW_DATA_ATTR!==!1,rd=u.ALLOW_UNKNOWN_PROTOCOLS||!1,Ze=u.SAFE_FOR_TEMPLATES||!1,Dt=u.WHOLE_DOCUMENT||!1,kt=u.RETURN_DOM||!1,ti=u.RETURN_DOM_FRAGMENT||!1,id=u.RETURN_DOM_IMPORT!==!1,Cn=u.RETURN_TRUSTED_TYPE||!1,ei=u.FORCE_BODY||!1,ad=u.SANITIZE_DOM!==!1,ni=u.KEEP_CONTENT!==!1,$t=u.IN_PLACE||!1,Qr=u.ALLOWED_URI_REGEXP||Qr,Ze&&(Yr=!1),ti&&(kt=!0),et&&(D=P({},[].concat(Y(To))),x=[],et.html===!0&&(P(D,wo),P(x,Po)),et.svg===!0&&(P(D,mr),P(x,gr),P(x,cn)),et.svgFilters===!0&&(P(D,fr),P(x,gr),P(x,cn)),et.mathMl===!0&&(P(D,pr),P(x,Eo),P(x,cn))),u.ADD_TAGS&&(D===Zs&&(D=Ke(D)),P(D,u.ADD_TAGS)),u.ADD_ATTR&&(x===ed&&(x=Ke(x)),P(x,u.ADD_ATTR)),u.ADD_URI_SAFE_ATTR&&P(ri,u.ADD_URI_SAFE_ATTR),ni&&(D["#text"]=!0),Dt&&P(D,["html","head","body"]),D.table&&(P(D,["tbody"]),delete Xr.tbody),$&&$(u),tt=u)},ld=P({},["mi","mo","mn","ms","mtext"]),cd=P({},["foreignobject","desc","title","annotation-xml"]),Sn=P({},mr);P(Sn,fr),P(Sn,nm);var ai=P({},pr);P(ai,rm);var oi="http://www.w3.org/1998/Math/MathML",si="http://www.w3.org/2000/svg",Nn="http://www.w3.org/1999/xhtml",Bg=function(u){var f=Ye(u);(!f||!f.tagName)&&(f={namespaceURI:Nn,tagName:"template"});var v=Ee(u.tagName),O=Ee(f.tagName);if(u.namespaceURI===si)return f.namespaceURI===Nn?v==="svg":f.namespaceURI===oi?v==="svg"&&(O==="annotation-xml"||ld[O]):Boolean(Sn[v]);if(u.namespaceURI===oi)return f.namespaceURI===Nn?v==="math":f.namespaceURI===si?v==="math"&&cd[O]:Boolean(ai[v]);if(u.namespaceURI===Nn){if(f.namespaceURI===si&&!cd[O]||f.namespaceURI===oi&&!ld[O])return!1;var j=P({},["title","style","font","a","script"]);return!ai[v]&&(j[v]||!Sn[v])}return!1},Re=function(u){wt(e.removed,{element:u});try{u.parentNode.removeChild(u)}catch(f){try{u.outerHTML=Qs}catch(v){u.remove()}}},ud=function(u,f){try{wt(e.removed,{attribute:f.getAttributeNode(u),from:f})}catch(v){wt(e.removed,{attribute:null,from:f})}f.removeAttribute(u)},hd=function(u){var f=void 0,v=void 0;if(ei)u="<remove></remove>"+u;else{var O=vo(u,/^[\r\n\t ]+/);v=O&&O[0]}var j=ve?ve.createHTML(u):u;try{f=new b().parseFromString(j,"text/html")}catch(ee){}if(!f||!f.documentElement){f=Hr.createHTMLDocument("");var F=f,R=F.body;R.parentNode.removeChild(R.parentNode.firstElementChild),R.outerHTML=j}return u&&v&&f.body.insertBefore(r.createTextNode(v),f.body.childNodes[0]||null),xg.call(f,Dt?"html":"body")[0]},md=function(u){return Lg.call(u.ownerDocument||u,u,l.SHOW_ELEMENT|l.SHOW_COMMENT|l.SHOW_TEXT,function(){return l.FILTER_ACCEPT},!1)},Wg=function(u){return u instanceof m||u instanceof g?!1:typeof u.nodeName!="string"||typeof u.textContent!="string"||typeof u.removeChild!="function"||!(u.attributes instanceof h)||typeof u.removeAttribute!="function"||typeof u.setAttribute!="function"||typeof u.namespaceURI!="string"||typeof u.insertBefore!="function"},Lt=function(u){return(typeof o=="undefined"?"undefined":Tt(o))==="object"?u instanceof o:u&&(typeof u=="undefined"?"undefined":Tt(u))==="object"&&typeof u.nodeType=="number"&&typeof u.nodeName=="string"},se=function(u,f,v){!Z[u]||Yh(Z[u],function(O){O.call(e,f,v,tt)})},fd=function(u){var f=void 0;if(se("beforeSanitizeElements",u,null),Wg(u)||vo(u.nodeName,/[\u0080-\uFFFF]/))return Re(u),!0;var v=Ee(u.nodeName);if(se("uponSanitizeElement",u,{tagName:v,allowedTags:D}),!Lt(u.firstElementChild)&&(!Lt(u.content)||!Lt(u.content.firstElementChild))&&fe(/<[/\w]/g,u.innerHTML)&&fe(/<[/\w]/g,u.textContent))return Re(u),!0;if(!D[v]||Xr[v]){if(ni&&!Gg[v])for(var O=Ye(u),j=_n(u),F=j.length,R=F-1;R>=0;--R)O.insertBefore(_(j[R],!0),I(u));return Re(u),!0}return u instanceof s&&!Bg(u)||(v==="noscript"||v==="noembed")&&fe(/<\/no(script|embed)/i,u.innerHTML)?(Re(u),!0):(Ze&&u.nodeType===3&&(f=u.textContent,f=me(f,Jr," "),f=me(f,qr," "),u.textContent!==f&&(wt(e.removed,{element:u.cloneNode()}),u.textContent=f)),se("afterSanitizeElements",u,null),!1)},pd=function(u,f,v){if(ad&&(f==="id"||f==="name")&&(v in r||v in Vg))return!1;if(!(Yr&&fe(Ug,f))){if(!(nd&&fe(Kg,f))){if(!x[f]||td[f])return!1;if(!ri[f]){if(!fe(Qr,me(v,Ys,""))){if(!((f==="src"||f==="xlink:href"||f==="href")&&u!=="script"&&Zh(v,"data:")===0&&od[u])){if(!(rd&&!fe(zg,me(v,Ys,"")))){if(v)return!1}}}}}}return!0},gd=function(u){var f=void 0,v=void 0,O=void 0,j=void 0;se("beforeSanitizeAttributes",u,null);var F=u.attributes;if(!!F){var R={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:x};for(j=F.length;j--;){f=F[j];var ee=f,xt=ee.name,bd=ee.namespaceURI;if(v=em(f.value),O=Ee(xt),R.attrName=O,R.attrValue=v,R.keepAttr=!0,R.forceKeepAttr=void 0,se("uponSanitizeAttribute",u,R),v=R.attrValue,!R.forceKeepAttr&&(ud(xt,u),!!R.keepAttr)){if(fe(/\/>/i,v)){ud(xt,u);continue}Ze&&(v=me(v,Jr," "),v=me(v,qr," "));var Jg=u.nodeName.toLowerCase();if(!!pd(Jg,O,v))try{bd?u.setAttributeNS(bd,xt,v):u.setAttribute(xt,v),bo(e.removed)}catch(cb){}}}se("afterSanitizeAttributes",u,null)}},Hg=function y(u){var f=void 0,v=md(u);for(se("beforeSanitizeShadowDOM",u,null);f=v.nextNode();)se("uponSanitizeShadowNode",f,null),!fd(f)&&(f.content instanceof i&&y(f.content),gd(f));se("afterSanitizeShadowDOM",u,null)};return e.sanitize=function(y,u){var f=void 0,v=void 0,O=void 0,j=void 0,F=void 0;if(y||(y="<!-->"),typeof y!="string"&&!Lt(y)){if(typeof y.toString!="function")throw yo("toString is not a function");if(y=y.toString(),typeof y!="string")throw yo("dirty is not a string, aborting")}if(!e.isSupported){if(Tt(t.toStaticHTML)==="object"||typeof t.toStaticHTML=="function"){if(typeof y=="string")return t.toStaticHTML(y);if(Lt(y))return t.toStaticHTML(y.outerHTML)}return y}if(Zr||ii(u),e.removed=[],typeof y=="string"&&($t=!1),!$t)if(y instanceof o)f=hd("<!---->"),v=f.ownerDocument.importNode(y,!0),v.nodeType===1&&v.nodeName==="BODY"||v.nodeName==="HTML"?f=v:f.appendChild(v);else{if(!kt&&!Ze&&!Dt&&y.indexOf("<")===-1)return ve&&Cn?ve.createHTML(y):y;if(f=hd(y),!f)return kt?null:Qs}f&&ei&&Re(f.firstChild);for(var R=md($t?y:f);O=R.nextNode();)O.nodeType===3&&O===j||fd(O)||(O.content instanceof i&&Hg(O.content),gd(O),j=O);if(j=null,$t)return y;if(kt){if(ti)for(F=jg.call(f.ownerDocument);f.firstChild;)F.appendChild(f.firstChild);else F=f;return id&&(F=Fg.call(n,F,!0)),F}var ee=Dt?f.outerHTML:f.innerHTML;return Ze&&(ee=me(ee,Jr," "),ee=me(ee,qr," ")),ve&&Cn?ve.createHTML(ee):ee},e.setConfig=function(y){ii(y),Zr=!0},e.clearConfig=function(){tt=null,Zr=!1},e.isValidAttribute=function(y,u,f){tt||ii({});var v=Ee(y),O=Ee(u);return pd(v,O,f)},e.addHook=function(y,u){typeof u=="function"&&(Z[y]=Z[y]||[],wt(Z[y],u))},e.removeHook=function(y){Z[y]&&bo(Z[y])},e.removeHooks=function(y){Z[y]&&(Z[y]=[])},e.removeAllHooks=function(){Z={}},e}var mm=_o(),fm=p.registerComponent(mm,{tmpl:te,sel:"lightning-purifyLib"});function pm(t,e){return fm.sanitize(t,e)}const gm=Object.freeze({ALLOWED_TAGS:[],ALLOWED_ATTR:[]});function bm(t){return pm(t,gm)}class br extends p.LightningElement{constructor(...e){super(...e);this._scriptDataAttributes={},this._catalogObjectId=void 0,this._catalogObjectType=void 0,this._catalogObjectAttributes=void 0,this._relatedCatalogObjects=void 0,this._customObject=void 0}set scriptDataAttributes(e){this._scriptDataAttributes=e}get scriptDataAttributes(){return this._scriptDataAttributes}set catalogObjectId(e){this._catalogObjectId=e}get catalogObjectId(){return this._catalogObjectId}set catalogObjectType(e){this._catalogObjectType=e}get catalogObjectType(){return this._catalogObjectType}set catalogObjectAttributes(e){this._catalogObjectAttributes=e}get catalogObjectAttributes(){return this._catalogObjectAttributes}set relatedCatalogObjects(e){this._relatedCatalogObjects=e}get relatedCatalogObjects(){return this._relatedCatalogObjects}set customObject(e){this._customObject=e}get customObject(){return this._customObject}get scriptElement(){return this.scriptDataAttributes?.providerType&&(this.isCustomObject()||this.isCatalogObject())?`<script type="application/json" data-provider-type=${this.scriptDataAttributes?.providerType}>${bm(this.scriptElementContent())}</script>`:""}scriptElementContent(){const e=this.isCustomObject()?this.customObject:this.buildCatalogObject();return JSON.stringify(e)}isCustomObject(){return!!this.customObject}isCatalogObject(){return!!(this.catalogObjectId&&this.catalogObjectType)}buildCatalogObject(){return{id:this.catalogObjectId,type:this.catalogObjectType,attributes:this.catalogObjectAttributes,relatedCatalogObjects:this.relatedCatalogObjects}}}br.renderMode="light",p.registerDecorators(br,{publicProps:{scriptDataAttributes:{config:3},catalogObjectId:{config:3},catalogObjectType:{config:3},catalogObjectAttributes:{config:3},relatedCatalogObjects:{config:3},customObject:{config:3},scriptElement:{config:1}},fields:["_scriptDataAttributes","_catalogObjectId","_catalogObjectType","_catalogObjectAttributes","_relatedCatalogObjects","_customObject"]});var vm=p.registerComponent(br,{tmpl:Bh,sel:"experience-dataLayerObject"});const ym=[];function Pt(t,e,n,r){return ym}var un=p.registerTemplate(Pt);Pt.stylesheets=[],Pt.renderMode="light",Pt.stylesheetToken="webruntime-innerApp_innerApp",p.freezeTemplate(Pt);function wm(t){return Ie.load(t,"webruntime/app/v/1")}function Oo(){const t=globalThis.navigator?.userAgent;return t&&(Ad.default&&t.includes(gi.PUBLISHER)||t.includes(gi.PLAYGROUND))}function Tm(){Pm(),on(Em)}function Pm(){document.addEventListener("notify-client-module",_m)}function Em(t){Om("navigationcompleted",{routeResult:t})}function _m({detail:t}){const{action:e,data:n}=t;switch(e){case"navigate":an(n.routeObj,n.replaceState);break;default:Ui(`No such action "${e}" exists.`);break}}function Om(t,e){document.dispatchEvent(new CustomEvent("notify-mobile-module",{bubbles:!0,composed:!0,detail:{action:t,data:e}}))}async function Cm(){if(!Oo())return;const{hybridAppManager:t}=await Ie.load("mobileruntime/hybridAppManager/v/1");t(),Tm()}async function Sm(){if(!In.default)return;const{start:t}=await Ie.load("webruntimedesign/designmode/v/1");/interactive|complete/.test(document.readyState)?t():document.addEventListener("DOMContentLoaded",t,!1)}function _e(t,e){}const Co=["activeDescendant","atomic","autoComplete","busy","checked","colCount","colIndex","colSpan","controls","current","describedAt","describedBy","description","details","disabled","dropEffect","errorMessage","expanded","flowTo","grabbed","hasPopup","hidden","invalid","keyShortcuts","label","labelledBy","level","live","modal","multiLine","multiSelectable","orientation","owns","placeholder","posInSet","pressed","readOnly","relevant","required","roleDescription","rowCount","rowIndex","rowSpan","selected","setSize","sort","valueMax","valueMin","valueNow","valueText"],So=(t,e="default")=>{if(!t||t.length===0)throw new Error("List of aria properties is required");const n={};return e==="default"?(t.forEach(r=>{const i=r.toUpperCase();n[i]||(n[i]=`aria-${r.toLowerCase()}`)}),n):(t.forEach(r=>{const i=`aria-${r.toLowerCase()}`,a=`aria${r.charAt(0).toUpperCase()}${r.slice(1)}`;n[i]||(n[i]=a)}),n)};So(Co),So(Co,"cc");const ze=typeof window!="undefined";function No(){function t(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()}ze&&Nm(navigator),ze&&Am(navigator),ze&&Mm(navigator);function Nm(t){return/Trident.*rv[ :]*11\./.test(t.userAgent)}function Am(t){return/Chrome/.test(t.userAgent)&&/Google Inc/.test(t.vendor)}function Mm(t){return/^((?!chrome|android).)*safari/i.test(t.userAgent)}function Ao(t,e={}){const{fallbackValue:n="",validValues:r,toLowerCase:i=!0}=e;let a=typeof t=="string"&&t.trim()||"";return a=i?a.toLowerCase():a,r&&r.indexOf(a)===-1&&(a=n),a}function Rm(t,e,n){t.tagName.match(/^LIGHTNING/i)?(e=e.replace(/-\w/g,r=>r[1].toUpperCase()),t[e]=n||null):n?t.setAttribute(e,n):t.removeAttribute(e)}function Im(t,e){if(!t)return;Object.keys(e).forEach(r=>{Rm(t,r,e[r])})}const Mo=9e3,Ro=100,Dm=Mo+Ro;function km(){const e=typeof window!="undefined"?(window.getComputedStyle(document.documentElement)||document.documentElement.style).getPropertyValue("--lwc-zIndexModal"):Mo,n=parseInt(e,10);return isNaN(n)?Dm:n+Ro}function $m(t){return t&&t.template&&t.template.constructor?!!String(t.template.constructor).match(/\[native code\]/):!1}function Lm(t,e,n){const r=n||{};let i=r.leading,a;return function(){const s=Array.prototype.slice.apply(arguments);i&&(t.apply(this,s),i=!1),clearTimeout(a),a=setTimeout(function(){t.apply(this,s),i=r.leading},e)}}var xm=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},jm=function(){function t(e,n){for(var r=0;r<n.length;r++){var i=n[r];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),vr=Object.freeze({DATA:Symbol("data"),STRING:Symbol("string"),NEWLINE:Symbol("newline"),GROUP:Symbol("group")});(function(){function t(e,n,r){xm(this,t),this.type=e,this.string=n,this.pattern=r}return jm(t,null,[{key:"string",value:function(n){return new t(vr.STRING,n)}},{key:"data",value:function(n){return new t(vr.DATA,void 0,n)}},{key:"newLine",value:function(){return new t(vr.NEWLINE)}}]),t})();var Ge={SALUTATION:Symbol("Salutation"),FIRST:Symbol("First Name"),MIDDLE:Symbol("Middle Name"),LAST:Symbol("Last Name"),SUFFIX:Symbol("Suffix"),INFORMAL:Symbol("Informal Name")},Fm=function(){function t(e,n){for(var r=0;r<n.length;r++){var i=n[r];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}();function hn(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var Um=function t(e){hn(this,t),this.parts=Object.freeze(e),Object.freeze(this)},Ve=function t(e){hn(this,t),this.field=e,this.type="field",Object.freeze(this)},Io=function t(e){hn(this,t),this.type="text",this.text=e,Object.freeze(this)},Be=Object.freeze({SALUTATION:new Ve(Ge.SALUTATION),FIRST:new Ve(Ge.FIRST),MIDDLE:new Ve(Ge.MIDDLE),LAST:new Ve(Ge.LAST),SUFFIX:new Ve(Ge.SUFFIX),INFORMAL:new Ve(Ge.INFORMAL)}),Km=function(){function t(){hn(this,t)}return Fm(t,[{key:"parse",value:function(n){for(var r=[],i="",a=0;a<n.length;a=a+1)if(n[a]==="%"){if(a=a+1,i.length>0&&(r.push(Object.freeze(new Io(i))),i=""),a>=n.length)throw new Error("Unexpected end of format. Symbol at "+(a-1)+" should be followed by a valid field code");var o=n[a];switch(o){case"S":r.push(Be.SALUTATION);break;case"F":r.push(Be.FIRST);break;case"M":r.push(Be.MIDDLE);break;case"L":r.push(Be.LAST);break;case"X":r.push(Be.SUFFIX);break;case"I":r.push(Be.INFORMAL);break}}else i+=n[a];return i.length>0&&r.push(new Io(i)),new Um(r)}}]),t}();new Km,p.registerComponent(JSON.parse('{"adlm":"\u{1E950}\u{1E951}\u{1E952}\u{1E953}\u{1E954}\u{1E955}\u{1E956}\u{1E957}\u{1E958}\u{1E959}","ahom":"\u{11730}\u{11731}\u{11732}\u{11733}\u{11734}\u{11735}\u{11736}\u{11737}\u{11738}\u{11739}","arab":"\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669","arabext":"\u06F0\u06F1\u06F2\u06F3\u06F4\u06F5\u06F6\u06F7\u06F8\u06F9","bali":"\u1B50\u1B51\u1B52\u1B53\u1B54\u1B55\u1B56\u1B57\u1B58\u1B59","beng":"\u09E6\u09E7\u09E8\u09E9\u09EA\u09EB\u09EC\u09ED\u09EE\u09EF","bhks":"\u{11C50}\u{11C51}\u{11C52}\u{11C53}\u{11C54}\u{11C55}\u{11C56}\u{11C57}\u{11C58}\u{11C59}","brah":"\u{11066}\u{11067}\u{11068}\u{11069}\u{1106A}\u{1106B}\u{1106C}\u{1106D}\u{1106E}\u{1106F}","cakm":"\u{11136}\u{11137}\u{11138}\u{11139}\u{1113A}\u{1113B}\u{1113C}\u{1113D}\u{1113E}\u{1113F}","cham":"\uAA50\uAA51\uAA52\uAA53\uAA54\uAA55\uAA56\uAA57\uAA58\uAA59","deva":"\u0966\u0967\u0968\u0969\u096A\u096B\u096C\u096D\u096E\u096F","fullwide":"\uFF10\uFF11\uFF12\uFF13\uFF14\uFF15\uFF16\uFF17\uFF18\uFF19","gong":"\u{11DA0}\u{11DA1}\u{11DA2}\u{11DA3}\u{11DA4}\u{11DA5}\u{11DA6}\u{11DA7}\u{11DA8}\u{11DA9}","gonm":"\u{11D50}\u{11D51}\u{11D52}\u{11D53}\u{11D54}\u{11D55}\u{11D56}\u{11D57}\u{11D58}\u{11D59}","gujr":"\u0AE6\u0AE7\u0AE8\u0AE9\u0AEA\u0AEB\u0AEC\u0AED\u0AEE\u0AEF","guru":"\u0A66\u0A67\u0A68\u0A69\u0A6A\u0A6B\u0A6C\u0A6D\u0A6E\u0A6F","hanidec":"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","hmng":"\u{16B50}\u{16B51}\u{16B52}\u{16B53}\u{16B54}\u{16B55}\u{16B56}\u{16B57}\u{16B58}\u{16B59}","hmnp":"\u{1E140}\u{1E141}\u{1E142}\u{1E143}\u{1E144}\u{1E145}\u{1E146}\u{1E147}\u{1E148}\u{1E149}","java":"\uA9D0\uA9D1\uA9D2\uA9D3\uA9D4\uA9D5\uA9D6\uA9D7\uA9D8\uA9D9","kali":"\uA900\uA901\uA902\uA903\uA904\uA905\uA906\uA907\uA908\uA909","khmr":"\u17E0\u17E1\u17E2\u17E3\u17E4\u17E5\u17E6\u17E7\u17E8\u17E9","knda":"\u0CE6\u0CE7\u0CE8\u0CE9\u0CEA\u0CEB\u0CEC\u0CED\u0CEE\u0CEF","lana":"\u1A80\u1A81\u1A82\u1A83\u1A84\u1A85\u1A86\u1A87\u1A88\u1A89","lanatham":"\u1A90\u1A91\u1A92\u1A93\u1A94\u1A95\u1A96\u1A97\u1A98\u1A99","laoo":"\u0ED0\u0ED1\u0ED2\u0ED3\u0ED4\u0ED5\u0ED6\u0ED7\u0ED8\u0ED9","latn":"0123456789","lepc":"\u1C40\u1C41\u1C42\u1C43\u1C44\u1C45\u1C46\u1C47\u1C48\u1C49","limb":"\u1946\u1947\u1948\u1949\u194A\u194B\u194C\u194D\u194E\u194F","mathbold":"\u{1D7CE}\u{1D7CF}\u{1D7D0}\u{1D7D1}\u{1D7D2}\u{1D7D3}\u{1D7D4}\u{1D7D5}\u{1D7D6}\u{1D7D7}","mathdbl":"\u{1D7D8}\u{1D7D9}\u{1D7DA}\u{1D7DB}\u{1D7DC}\u{1D7DD}\u{1D7DE}\u{1D7DF}\u{1D7E0}\u{1D7E1}","mathmono":"\u{1D7F6}\u{1D7F7}\u{1D7F8}\u{1D7F9}\u{1D7FA}\u{1D7FB}\u{1D7FC}\u{1D7FD}\u{1D7FE}\u{1D7FF}","mathsanb":"\u{1D7EC}\u{1D7ED}\u{1D7EE}\u{1D7EF}\u{1D7F0}\u{1D7F1}\u{1D7F2}\u{1D7F3}\u{1D7F4}\u{1D7F5}","mathsans":"\u{1D7E2}\u{1D7E3}\u{1D7E4}\u{1D7E5}\u{1D7E6}\u{1D7E7}\u{1D7E8}\u{1D7E9}\u{1D7EA}\u{1D7EB}","mlym":"\u0D66\u0D67\u0D68\u0D69\u0D6A\u0D6B\u0D6C\u0D6D\u0D6E\u0D6F","modi":"\u{11650}\u{11651}\u{11652}\u{11653}\u{11654}\u{11655}\u{11656}\u{11657}\u{11658}\u{11659}","mong":"\u1810\u1811\u1812\u1813\u1814\u1815\u1816\u1817\u1818\u1819","mroo":"\u{16A60}\u{16A61}\u{16A62}\u{16A63}\u{16A64}\u{16A65}\u{16A66}\u{16A67}\u{16A68}\u{16A69}","mtei":"\uABF0\uABF1\uABF2\uABF3\uABF4\uABF5\uABF6\uABF7\uABF8\uABF9","mymr":"\u1040\u1041\u1042\u1043\u1044\u1045\u1046\u1047\u1048\u1049","mymrshan":"\u1090\u1091\u1092\u1093\u1094\u1095\u1096\u1097\u1098\u1099","mymrtlng":"\uA9F0\uA9F1\uA9F2\uA9F3\uA9F4\uA9F5\uA9F6\uA9F7\uA9F8\uA9F9","newa":"\u{11450}\u{11451}\u{11452}\u{11453}\u{11454}\u{11455}\u{11456}\u{11457}\u{11458}\u{11459}","nkoo":"\u07C0\u07C1\u07C2\u07C3\u07C4\u07C5\u07C6\u07C7\u07C8\u07C9","olck":"\u1C50\u1C51\u1C52\u1C53\u1C54\u1C55\u1C56\u1C57\u1C58\u1C59","orya":"\u0B66\u0B67\u0B68\u0B69\u0B6A\u0B6B\u0B6C\u0B6D\u0B6E\u0B6F","osma":"\u{104A0}\u{104A1}\u{104A2}\u{104A3}\u{104A4}\u{104A5}\u{104A6}\u{104A7}\u{104A8}\u{104A9}","rohg":"\u{10D30}\u{10D31}\u{10D32}\u{10D33}\u{10D34}\u{10D35}\u{10D36}\u{10D37}\u{10D38}\u{10D39}","saur":"\uA8D0\uA8D1\uA8D2\uA8D3\uA8D4\uA8D5\uA8D6\uA8D7\uA8D8\uA8D9","shrd":"\u{111D0}\u{111D1}\u{111D2}\u{111D3}\u{111D4}\u{111D5}\u{111D6}\u{111D7}\u{111D8}\u{111D9}","sind":"\u{112F0}\u{112F1}\u{112F2}\u{112F3}\u{112F4}\u{112F5}\u{112F6}\u{112F7}\u{112F8}\u{112F9}","sinh":"\u0DE6\u0DE7\u0DE8\u0DE9\u0DEA\u0DEB\u0DEC\u0DED\u0DEE\u0DEF","sora":"\u{110F0}\u{110F1}\u{110F2}\u{110F3}\u{110F4}\u{110F5}\u{110F6}\u{110F7}\u{110F8}\u{110F9}","sund":"\u1BB0\u1BB1\u1BB2\u1BB3\u1BB4\u1BB5\u1BB6\u1BB7\u1BB8\u1BB9","takr":"\u{116C0}\u{116C1}\u{116C2}\u{116C3}\u{116C4}\u{116C5}\u{116C6}\u{116C7}\u{116C8}\u{116C9}","talu":"\u19D0\u19D1\u19D2\u19D3\u19D4\u19D5\u19D6\u19D7\u19D8\u19D9","tamldec":"\u0BE6\u0BE7\u0BE8\u0BE9\u0BEA\u0BEB\u0BEC\u0BED\u0BEE\u0BEF","telu":"\u0C66\u0C67\u0C68\u0C69\u0C6A\u0C6B\u0C6C\u0C6D\u0C6E\u0C6F","thai":"\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59","tibt":"\u0F20\u0F21\u0F22\u0F23\u0F24\u0F25\u0F26\u0F27\u0F28\u0F29","tirh":"\u{114D0}\u{114D1}\u{114D2}\u{114D3}\u{114D4}\u{114D5}\u{114D6}\u{114D7}\u{114D8}\u{114D9}","vaii":"\uA620\uA621\uA622\uA623\uA624\uA625\uA626\uA627\uA628\uA629","wara":"\u{118E0}\u{118E1}\u{118E2}\u{118E3}\u{118E4}\u{118E5}\u{118E6}\u{118E7}\u{118E8}\u{118E9}","wcho":"\u{1E2F0}\u{1E2F1}\u{1E2F2}\u{1E2F3}\u{1E2F4}\u{1E2F5}\u{1E2F6}\u{1E2F7}\u{1E2F8}\u{1E2F9}"}'),{tmpl:te,sel:"lwc-components-lightning-scopedImports"}),p.registerComponent(JSON.parse('{"buddhist":{"calendarSystem":"solar","eras":{"0":{"_start":"-542-01-01"}}},"ethiopic-amete-alem":{"eras":{"0":{"_end":"-5492-08-29"}}},"generic":{},"gregorian":{"calendarSystem":"solar","eras":{"0":{"_end":"0-12-31"},"1":{"_start":"1-01-01"}}},"indian":{"eras":{"0":{"_start":"79-01-01"}}},"japanese":{"calendarSystem":"solar","eras":{"0":{"_start":"645-6-19"},"1":{"_start":"650-2-15"},"2":{"_start":"672-1-1"},"3":{"_start":"686-7-20"},"4":{"_start":"701-3-21"},"5":{"_start":"704-5-10"},"6":{"_start":"708-1-11"},"7":{"_start":"715-9-2"},"8":{"_start":"717-11-17"},"9":{"_start":"724-2-4"},"10":{"_start":"729-8-5"},"11":{"_start":"749-4-14"},"12":{"_start":"749-7-2"},"13":{"_start":"757-8-18"},"14":{"_start":"765-1-7"},"15":{"_start":"767-8-16"},"16":{"_start":"770-10-1"},"17":{"_start":"781-1-1"},"18":{"_start":"782-8-19"},"19":{"_start":"806-5-18"},"20":{"_start":"810-9-19"},"21":{"_start":"824-1-5"},"22":{"_start":"834-1-3"},"23":{"_start":"848-6-13"},"24":{"_start":"851-4-28"},"25":{"_start":"854-11-30"},"26":{"_start":"857-2-21"},"27":{"_start":"859-4-15"},"28":{"_start":"877-4-16"},"29":{"_start":"885-2-21"},"30":{"_start":"889-4-27"},"31":{"_start":"898-4-26"},"32":{"_start":"901-7-15"},"33":{"_start":"923-4-11"},"34":{"_start":"931-4-26"},"35":{"_start":"938-5-22"},"36":{"_start":"947-4-22"},"37":{"_start":"957-10-27"},"38":{"_start":"961-2-16"},"39":{"_start":"964-7-10"},"40":{"_start":"968-8-13"},"41":{"_start":"970-3-25"},"42":{"_start":"973-12-20"},"43":{"_start":"976-7-13"},"44":{"_start":"978-11-29"},"45":{"_start":"983-4-15"},"46":{"_start":"985-4-27"},"47":{"_start":"987-4-5"},"48":{"_start":"989-8-8"},"49":{"_start":"990-11-7"},"50":{"_start":"995-2-22"},"51":{"_start":"999-1-13"},"52":{"_start":"1004-7-20"},"53":{"_start":"1012-12-25"},"54":{"_start":"1017-4-23"},"55":{"_start":"1021-2-2"},"56":{"_start":"1024-7-13"},"57":{"_start":"1028-7-25"},"58":{"_start":"1037-4-21"},"59":{"_start":"1040-11-10"},"60":{"_start":"1044-11-24"},"61":{"_start":"1046-4-14"},"62":{"_start":"1053-1-11"},"63":{"_start":"1058-8-29"},"64":{"_start":"1065-8-2"},"65":{"_start":"1069-4-13"},"66":{"_start":"1074-8-23"},"67":{"_start":"1077-11-17"},"68":{"_start":"1081-2-10"},"69":{"_start":"1084-2-7"},"70":{"_start":"1087-4-7"},"71":{"_start":"1094-12-15"},"72":{"_start":"1096-12-17"},"73":{"_start":"1097-11-21"},"74":{"_start":"1099-8-28"},"75":{"_start":"1104-2-10"},"76":{"_start":"1106-4-9"},"77":{"_start":"1108-8-3"},"78":{"_start":"1110-7-13"},"79":{"_start":"1113-7-13"},"80":{"_start":"1118-4-3"},"81":{"_start":"1120-4-10"},"82":{"_start":"1124-4-3"},"83":{"_start":"1126-1-22"},"84":{"_start":"1131-1-29"},"85":{"_start":"1132-8-11"},"86":{"_start":"1135-4-27"},"87":{"_start":"1141-7-10"},"88":{"_start":"1142-4-28"},"89":{"_start":"1144-2-23"},"90":{"_start":"1145-7-22"},"91":{"_start":"1151-1-26"},"92":{"_start":"1154-10-28"},"93":{"_start":"1156-4-27"},"94":{"_start":"1159-4-20"},"95":{"_start":"1160-1-10"},"96":{"_start":"1161-9-4"},"97":{"_start":"1163-3-29"},"98":{"_start":"1165-6-5"},"99":{"_start":"1166-8-27"},"100":{"_start":"1169-4-8"},"101":{"_start":"1171-4-21"},"102":{"_start":"1175-7-28"},"103":{"_start":"1177-8-4"},"104":{"_start":"1181-7-14"},"105":{"_start":"1182-5-27"},"106":{"_start":"1184-4-16"},"107":{"_start":"1185-8-14"},"108":{"_start":"1190-4-11"},"109":{"_start":"1199-4-27"},"110":{"_start":"1201-2-13"},"111":{"_start":"1204-2-20"},"112":{"_start":"1206-4-27"},"113":{"_start":"1207-10-25"},"114":{"_start":"1211-3-9"},"115":{"_start":"1213-12-6"},"116":{"_start":"1219-4-12"},"117":{"_start":"1222-4-13"},"118":{"_start":"1224-11-20"},"119":{"_start":"1225-4-20"},"120":{"_start":"1227-12-10"},"121":{"_start":"1229-3-5"},"122":{"_start":"1232-4-2"},"123":{"_start":"1233-4-15"},"124":{"_start":"1234-11-5"},"125":{"_start":"1235-9-19"},"126":{"_start":"1238-11-23"},"127":{"_start":"1239-2-7"},"128":{"_start":"1240-7-16"},"129":{"_start":"1243-2-26"},"130":{"_start":"1247-2-28"},"131":{"_start":"1249-3-18"},"132":{"_start":"1256-10-5"},"133":{"_start":"1257-3-14"},"134":{"_start":"1259-3-26"},"135":{"_start":"1260-4-13"},"136":{"_start":"1261-2-20"},"137":{"_start":"1264-2-28"},"138":{"_start":"1275-4-25"},"139":{"_start":"1278-2-29"},"140":{"_start":"1288-4-28"},"141":{"_start":"1293-8-5"},"142":{"_start":"1299-4-25"},"143":{"_start":"1302-11-21"},"144":{"_start":"1303-8-5"},"145":{"_start":"1306-12-14"},"146":{"_start":"1308-10-9"},"147":{"_start":"1311-4-28"},"148":{"_start":"1312-3-20"},"149":{"_start":"1317-2-3"},"150":{"_start":"1319-4-28"},"151":{"_start":"1321-2-23"},"152":{"_start":"1324-12-9"},"153":{"_start":"1326-4-26"},"154":{"_start":"1329-8-29"},"155":{"_start":"1331-8-9"},"156":{"_start":"1334-1-29"},"157":{"_start":"1336-2-29"},"158":{"_start":"1340-4-28"},"159":{"_start":"1346-12-8"},"160":{"_start":"1370-7-24"},"161":{"_start":"1372-4-1"},"162":{"_start":"1375-5-27"},"163":{"_start":"1379-3-22"},"164":{"_start":"1381-2-10"},"165":{"_start":"1384-4-28"},"166":{"_start":"1387-8-22"},"167":{"_start":"1387-8-23"},"168":{"_start":"1389-2-9"},"169":{"_start":"1390-3-26"},"170":{"_start":"1394-7-5"},"171":{"_start":"1428-4-27"},"172":{"_start":"1429-9-5"},"173":{"_start":"1441-2-17"},"174":{"_start":"1444-2-5"},"175":{"_start":"1449-7-28"},"176":{"_start":"1452-7-25"},"177":{"_start":"1455-7-25"},"178":{"_start":"1457-9-28"},"179":{"_start":"1460-12-21"},"180":{"_start":"1466-2-28"},"181":{"_start":"1467-3-3"},"182":{"_start":"1469-4-28"},"183":{"_start":"1487-7-29"},"184":{"_start":"1489-8-21"},"185":{"_start":"1492-7-19"},"186":{"_start":"1501-2-29"},"187":{"_start":"1504-2-30"},"188":{"_start":"1521-8-23"},"189":{"_start":"1528-8-20"},"190":{"_start":"1532-7-29"},"191":{"_start":"1555-10-23"},"192":{"_start":"1558-2-28"},"193":{"_start":"1570-4-23"},"194":{"_start":"1573-7-28"},"195":{"_start":"1592-12-8"},"196":{"_start":"1596-10-27"},"197":{"_start":"1615-7-13"},"198":{"_start":"1624-2-30"},"199":{"_start":"1644-12-16"},"200":{"_start":"1648-2-15"},"201":{"_start":"1652-9-18"},"202":{"_start":"1655-4-13"},"203":{"_start":"1658-7-23"},"204":{"_start":"1661-4-25"},"205":{"_start":"1673-9-21"},"206":{"_start":"1681-9-29"},"207":{"_start":"1684-2-21"},"208":{"_start":"1688-9-30"},"209":{"_start":"1704-3-13"},"210":{"_start":"1711-4-25"},"211":{"_start":"1716-6-22"},"212":{"_start":"1736-4-28"},"213":{"_start":"1741-2-27"},"214":{"_start":"1744-2-21"},"215":{"_start":"1748-7-12"},"216":{"_start":"1751-10-27"},"217":{"_start":"1764-6-2"},"218":{"_start":"1772-11-16"},"219":{"_start":"1781-4-2"},"220":{"_start":"1789-1-25"},"221":{"_start":"1801-2-5"},"222":{"_start":"1804-2-11"},"223":{"_start":"1818-4-22"},"224":{"_start":"1830-12-10"},"225":{"_start":"1844-12-2"},"226":{"_start":"1848-2-28"},"227":{"_start":"1854-11-27"},"228":{"_start":"1860-3-18"},"229":{"_start":"1861-2-19"},"230":{"_start":"1864-2-20"},"231":{"_start":"1865-4-7"},"232":{"_start":"1868-9-8"},"233":{"_start":"1912-7-30"},"234":{"_start":"1926-12-25"},"235":{"_start":"1989-1-8"},"236":{"_start":"2019-5-1"}}},"persian":{"calendarSystem":"solar","eras":{"0":{"_start":"622-01-01"}}},"roc":{"eras":{"0":{"_end":"1911-12-31"},"1":{"_start":"1912-01-01"}}}}'),{tmpl:te,sel:"lwc-components-lightning-scopedImports"}),p.registerComponent(JSON.parse('{"buddhist":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"BE"},"eraAbbr":{"0":"BE"},"eraNarrow":{"0":"BE"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"ethiopic-amete-alem":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"ERA0"},"eraAbbr":{"0":"ERA0"},"eraNarrow":{"0":"ERA0"}},"months":{"format":{"abbreviated":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12","13":"13"},"wide":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"}},"stand-alone":{"abbreviated":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12","13":"13"},"wide":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"generic":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"ERA0","1":"ERA1"},"eraAbbr":{"0":"ERA0","1":"ERA1"},"eraNarrow":{"0":"ERA0","1":"ERA1"}},"months":{"format":{"abbreviated":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"}},"stand-alone":{"abbreviated":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"gregorian":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Before Christ","1":"Anno Domini","0-alt-variant":"Before Common Era","1-alt-variant":"Common Era"},"eraAbbr":{"0":"BC","1":"AD","0-alt-variant":"BCE","1-alt-variant":"CE"},"eraNarrow":{"0":"B","1":"A","0-alt-variant":"BCE","1-alt-variant":"CE"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"indian":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Saka"},"eraAbbr":{"0":"Saka"},"eraNarrow":{"0":"Saka"}},"months":{"format":{"abbreviated":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"}},"stand-alone":{"abbreviated":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"japanese":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Taika (645\u2013650)","1":"Hakuchi (650\u2013671)","2":"Hakuh\u014D (672\u2013686)","3":"Shuch\u014D (686\u2013701)","4":"Taih\u014D (701\u2013704)","5":"Keiun (704\u2013708)","6":"Wad\u014D (708\u2013715)","7":"Reiki (715\u2013717)","8":"Y\u014Dr\u014D (717\u2013724)","9":"Jinki (724\u2013729)","10":"Tenpy\u014D (729\u2013749)","11":"Tenpy\u014D-kamp\u014D (749\u2013749)","12":"Tenpy\u014D-sh\u014Dh\u014D (749\u2013757)","13":"Tenpy\u014D-h\u014Dji (757\u2013765)","14":"Tenpy\u014D-jingo (765\u2013767)","15":"Jingo-keiun (767\u2013770)","16":"H\u014Dki (770\u2013780)","17":"Ten-\u014D (781\u2013782)","18":"Enryaku (782\u2013806)","19":"Daid\u014D (806\u2013810)","20":"K\u014Dnin (810\u2013824)","21":"Tench\u014D (824\u2013834)","22":"J\u014Dwa (834\u2013848)","23":"Kaj\u014D (848\u2013851)","24":"Ninju (851\u2013854)","25":"Saik\u014D (854\u2013857)","26":"Ten-an (857\u2013859)","27":"J\u014Dgan (859\u2013877)","28":"Gangy\u014D (877\u2013885)","29":"Ninna (885\u2013889)","30":"Kanpy\u014D (889\u2013898)","31":"Sh\u014Dtai (898\u2013901)","32":"Engi (901\u2013923)","33":"Ench\u014D (923\u2013931)","34":"J\u014Dhei (931\u2013938)","35":"Tengy\u014D (938\u2013947)","36":"Tenryaku (947\u2013957)","37":"Tentoku (957\u2013961)","38":"\u014Cwa (961\u2013964)","39":"K\u014Dh\u014D (964\u2013968)","40":"Anna (968\u2013970)","41":"Tenroku (970\u2013973)","42":"Ten\u2019en (973\u2013976)","43":"J\u014Dgen (976\u2013978)","44":"Tengen (978\u2013983)","45":"Eikan (983\u2013985)","46":"Kanna (985\u2013987)","47":"Eien (987\u2013989)","48":"Eiso (989\u2013990)","49":"Sh\u014Dryaku (990\u2013995)","50":"Ch\u014Dtoku (995\u2013999)","51":"Ch\u014Dh\u014D (999\u20131004)","52":"Kank\u014D (1004\u20131012)","53":"Ch\u014Dwa (1012\u20131017)","54":"Kannin (1017\u20131021)","55":"Jian (1021\u20131024)","56":"Manju (1024\u20131028)","57":"Ch\u014Dgen (1028\u20131037)","58":"Ch\u014Dryaku (1037\u20131040)","59":"Ch\u014Dky\u016B (1040\u20131044)","60":"Kantoku (1044\u20131046)","61":"Eish\u014D (1046\u20131053)","62":"Tengi (1053\u20131058)","63":"K\u014Dhei (1058\u20131065)","64":"Jiryaku (1065\u20131069)","65":"Enky\u016B (1069\u20131074)","66":"Sh\u014Dho (1074\u20131077)","67":"Sh\u014Dryaku (1077\u20131081)","68":"Eih\u014D (1081\u20131084)","69":"\u014Ctoku (1084\u20131087)","70":"Kanji (1087\u20131094)","71":"Kah\u014D (1094\u20131096)","72":"Eich\u014D (1096\u20131097)","73":"J\u014Dtoku (1097\u20131099)","74":"K\u014Dwa (1099\u20131104)","75":"Ch\u014Dji (1104\u20131106)","76":"Kash\u014D (1106\u20131108)","77":"Tennin (1108\u20131110)","78":"Ten-ei (1110\u20131113)","79":"Eiky\u016B (1113\u20131118)","80":"Gen\u2019ei (1118\u20131120)","81":"H\u014Dan (1120\u20131124)","82":"Tenji (1124\u20131126)","83":"Daiji (1126\u20131131)","84":"Tensh\u014D (1131\u20131132)","85":"Ch\u014Dsh\u014D (1132\u20131135)","86":"H\u014Den (1135\u20131141)","87":"Eiji (1141\u20131142)","88":"K\u014Dji (1142\u20131144)","89":"Ten\u2019y\u014D (1144\u20131145)","90":"Ky\u016Ban (1145\u20131151)","91":"Ninpei (1151\u20131154)","92":"Ky\u016Bju (1154\u20131156)","93":"H\u014Dgen (1156\u20131159)","94":"Heiji (1159\u20131160)","95":"Eiryaku (1160\u20131161)","96":"\u014Cho (1161\u20131163)","97":"Ch\u014Dkan (1163\u20131165)","98":"Eiman (1165\u20131166)","99":"Nin\u2019an (1166\u20131169)","100":"Ka\u014D (1169\u20131171)","101":"Sh\u014Dan (1171\u20131175)","102":"Angen (1175\u20131177)","103":"Jish\u014D (1177\u20131181)","104":"Y\u014Dwa (1181\u20131182)","105":"Juei (1182\u20131184)","106":"Genryaku (1184\u20131185)","107":"Bunji (1185\u20131190)","108":"Kenky\u016B (1190\u20131199)","109":"Sh\u014Dji (1199\u20131201)","110":"Kennin (1201\u20131204)","111":"Genky\u016B (1204\u20131206)","112":"Ken\u2019ei (1206\u20131207)","113":"J\u014Dgen (1207\u20131211)","114":"Kenryaku (1211\u20131213)","115":"Kenp\u014D (1213\u20131219)","116":"J\u014Dky\u016B (1219\u20131222)","117":"J\u014D\u014D (1222\u20131224)","118":"Gennin (1224\u20131225)","119":"Karoku (1225\u20131227)","120":"Antei (1227\u20131229)","121":"Kanki (1229\u20131232)","122":"J\u014Dei (1232\u20131233)","123":"Tenpuku (1233\u20131234)","124":"Bunryaku (1234\u20131235)","125":"Katei (1235\u20131238)","126":"Ryakunin (1238\u20131239)","127":"En\u2019\u014D (1239\u20131240)","128":"Ninji (1240\u20131243)","129":"Kangen (1243\u20131247)","130":"H\u014Dji (1247\u20131249)","131":"Kench\u014D (1249\u20131256)","132":"K\u014Dgen (1256\u20131257)","133":"Sh\u014Dka (1257\u20131259)","134":"Sh\u014Dgen (1259\u20131260)","135":"Bun\u2019\u014D (1260\u20131261)","136":"K\u014Dch\u014D (1261\u20131264)","137":"Bun\u2019ei (1264\u20131275)","138":"Kenji (1275\u20131278)","139":"K\u014Dan (1278\u20131288)","140":"Sh\u014D\u014D (1288\u20131293)","141":"Einin (1293\u20131299)","142":"Sh\u014Dan (1299\u20131302)","143":"Kengen (1302\u20131303)","144":"Kagen (1303\u20131306)","145":"Tokuji (1306\u20131308)","146":"Enky\u014D (1308\u20131311)","147":"\u014Cch\u014D (1311\u20131312)","148":"Sh\u014Dwa (1312\u20131317)","149":"Bunp\u014D (1317\u20131319)","150":"Gen\u014D (1319\u20131321)","151":"Genk\u014D (1321\u20131324)","152":"Sh\u014Dch\u016B (1324\u20131326)","153":"Karyaku (1326\u20131329)","154":"Gentoku (1329\u20131331)","155":"Genk\u014D (1331\u20131334)","156":"Kenmu (1334\u20131336)","157":"Engen (1336\u20131340)","158":"K\u014Dkoku (1340\u20131346)","159":"Sh\u014Dhei (1346\u20131370)","160":"Kentoku (1370\u20131372)","161":"Bunch\u016B (1372\u20131375)","162":"Tenju (1375\u20131379)","163":"K\u014Dryaku (1379\u20131381)","164":"K\u014Dwa (1381\u20131384)","165":"Gench\u016B (1384\u20131392)","166":"Meitoku (1384\u20131387)","167":"Kakei (1387\u20131389)","168":"K\u014D\u014D (1389\u20131390)","169":"Meitoku (1390\u20131394)","170":"\u014Cei (1394\u20131428)","171":"Sh\u014Dch\u014D (1428\u20131429)","172":"Eiky\u014D (1429\u20131441)","173":"Kakitsu (1441\u20131444)","174":"Bun\u2019an (1444\u20131449)","175":"H\u014Dtoku (1449\u20131452)","176":"Ky\u014Dtoku (1452\u20131455)","177":"K\u014Dsh\u014D (1455\u20131457)","178":"Ch\u014Droku (1457\u20131460)","179":"Kansh\u014D (1460\u20131466)","180":"Bunsh\u014D (1466\u20131467)","181":"\u014Cnin (1467\u20131469)","182":"Bunmei (1469\u20131487)","183":"Ch\u014Dky\u014D (1487\u20131489)","184":"Entoku (1489\u20131492)","185":"Mei\u014D (1492\u20131501)","186":"Bunki (1501\u20131504)","187":"Eish\u014D (1504\u20131521)","188":"Taiei (1521\u20131528)","189":"Ky\u014Droku (1528\u20131532)","190":"Tenbun (1532\u20131555)","191":"K\u014Dji (1555\u20131558)","192":"Eiroku (1558\u20131570)","193":"Genki (1570\u20131573)","194":"Tensh\u014D (1573\u20131592)","195":"Bunroku (1592\u20131596)","196":"Keich\u014D (1596\u20131615)","197":"Genna (1615\u20131624)","198":"Kan\u2019ei (1624\u20131644)","199":"Sh\u014Dho (1644\u20131648)","200":"Keian (1648\u20131652)","201":"J\u014D\u014D (1652\u20131655)","202":"Meireki (1655\u20131658)","203":"Manji (1658\u20131661)","204":"Kanbun (1661\u20131673)","205":"Enp\u014D (1673\u20131681)","206":"Tenna (1681\u20131684)","207":"J\u014Dky\u014D (1684\u20131688)","208":"Genroku (1688\u20131704)","209":"H\u014Dei (1704\u20131711)","210":"Sh\u014Dtoku (1711\u20131716)","211":"Ky\u014Dh\u014D (1716\u20131736)","212":"Genbun (1736\u20131741)","213":"Kanp\u014D (1741\u20131744)","214":"Enky\u014D (1744\u20131748)","215":"Kan\u2019en (1748\u20131751)","216":"H\u014Dreki (1751\u20131764)","217":"Meiwa (1764\u20131772)","218":"An\u2019ei (1772\u20131781)","219":"Tenmei (1781\u20131789)","220":"Kansei (1789\u20131801)","221":"Ky\u014Dwa (1801\u20131804)","222":"Bunka (1804\u20131818)","223":"Bunsei (1818\u20131830)","224":"Tenp\u014D (1830\u20131844)","225":"K\u014Dka (1844\u20131848)","226":"Kaei (1848\u20131854)","227":"Ansei (1854\u20131860)","228":"Man\u2019en (1860\u20131861)","229":"Bunky\u016B (1861\u20131864)","230":"Genji (1864\u20131865)","231":"Kei\u014D (1865\u20131868)","232":"Meiji","233":"Taish\u014D","234":"Sh\u014Dwa","235":"Heisei","236":"Reiwa"},"eraAbbr":{"0":"Taika (645\u2013650)","1":"Hakuchi (650\u2013671)","2":"Hakuh\u014D (672\u2013686)","3":"Shuch\u014D (686\u2013701)","4":"Taih\u014D (701\u2013704)","5":"Keiun (704\u2013708)","6":"Wad\u014D (708\u2013715)","7":"Reiki (715\u2013717)","8":"Y\u014Dr\u014D (717\u2013724)","9":"Jinki (724\u2013729)","10":"Tenpy\u014D (729\u2013749)","11":"Tenpy\u014D-kamp\u014D (749\u2013749)","12":"Tenpy\u014D-sh\u014Dh\u014D (749\u2013757)","13":"Tenpy\u014D-h\u014Dji (757\u2013765)","14":"Tenpy\u014D-jingo (765\u2013767)","15":"Jingo-keiun (767\u2013770)","16":"H\u014Dki (770\u2013780)","17":"Ten-\u014D (781\u2013782)","18":"Enryaku (782\u2013806)","19":"Daid\u014D (806\u2013810)","20":"K\u014Dnin (810\u2013824)","21":"Tench\u014D (824\u2013834)","22":"J\u014Dwa (834\u2013848)","23":"Kaj\u014D (848\u2013851)","24":"Ninju (851\u2013854)","25":"Saik\u014D (854\u2013857)","26":"Ten-an (857\u2013859)","27":"J\u014Dgan (859\u2013877)","28":"Gangy\u014D (877\u2013885)","29":"Ninna (885\u2013889)","30":"Kanpy\u014D (889\u2013898)","31":"Sh\u014Dtai (898\u2013901)","32":"Engi (901\u2013923)","33":"Ench\u014D (923\u2013931)","34":"J\u014Dhei (931\u2013938)","35":"Tengy\u014D (938\u2013947)","36":"Tenryaku (947\u2013957)","37":"Tentoku (957\u2013961)","38":"\u014Cwa (961\u2013964)","39":"K\u014Dh\u014D (964\u2013968)","40":"Anna (968\u2013970)","41":"Tenroku (970\u2013973)","42":"Ten\u2019en (973\u2013976)","43":"J\u014Dgen (976\u2013978)","44":"Tengen (978\u2013983)","45":"Eikan (983\u2013985)","46":"Kanna (985\u2013987)","47":"Eien (987\u2013989)","48":"Eiso (989\u2013990)","49":"Sh\u014Dryaku (990\u2013995)","50":"Ch\u014Dtoku (995\u2013999)","51":"Ch\u014Dh\u014D (999\u20131004)","52":"Kank\u014D (1004\u20131012)","53":"Ch\u014Dwa (1012\u20131017)","54":"Kannin (1017\u20131021)","55":"Jian (1021\u20131024)","56":"Manju (1024\u20131028)","57":"Ch\u014Dgen (1028\u20131037)","58":"Ch\u014Dryaku (1037\u20131040)","59":"Ch\u014Dky\u016B (1040\u20131044)","60":"Kantoku (1044\u20131046)","61":"Eish\u014D (1046\u20131053)","62":"Tengi (1053\u20131058)","63":"K\u014Dhei (1058\u20131065)","64":"Jiryaku (1065\u20131069)","65":"Enky\u016B (1069\u20131074)","66":"Sh\u014Dho (1074\u20131077)","67":"Sh\u014Dryaku (1077\u20131081)","68":"Eih\u014D (1081\u20131084)","69":"\u014Ctoku (1084\u20131087)","70":"Kanji (1087\u20131094)","71":"Kah\u014D (1094\u20131096)","72":"Eich\u014D (1096\u20131097)","73":"J\u014Dtoku (1097\u20131099)","74":"K\u014Dwa (1099\u20131104)","75":"Ch\u014Dji (1104\u20131106)","76":"Kash\u014D (1106\u20131108)","77":"Tennin (1108\u20131110)","78":"Ten-ei (1110\u20131113)","79":"Eiky\u016B (1113\u20131118)","80":"Gen\u2019ei (1118\u20131120)","81":"H\u014Dan (1120\u20131124)","82":"Tenji (1124\u20131126)","83":"Daiji (1126\u20131131)","84":"Tensh\u014D (1131\u20131132)","85":"Ch\u014Dsh\u014D (1132\u20131135)","86":"H\u014Den (1135\u20131141)","87":"Eiji (1141\u20131142)","88":"K\u014Dji (1142\u20131144)","89":"Ten\u2019y\u014D (1144\u20131145)","90":"Ky\u016Ban (1145\u20131151)","91":"Ninpei (1151\u20131154)","92":"Ky\u016Bju (1154\u20131156)","93":"H\u014Dgen (1156\u20131159)","94":"Heiji (1159\u20131160)","95":"Eiryaku (1160\u20131161)","96":"\u014Cho (1161\u20131163)","97":"Ch\u014Dkan (1163\u20131165)","98":"Eiman (1165\u20131166)","99":"Nin\u2019an (1166\u20131169)","100":"Ka\u014D (1169\u20131171)","101":"Sh\u014Dan (1171\u20131175)","102":"Angen (1175\u20131177)","103":"Jish\u014D (1177\u20131181)","104":"Y\u014Dwa (1181\u20131182)","105":"Juei (1182\u20131184)","106":"Genryaku (1184\u20131185)","107":"Bunji (1185\u20131190)","108":"Kenky\u016B (1190\u20131199)","109":"Sh\u014Dji (1199\u20131201)","110":"Kennin (1201\u20131204)","111":"Genky\u016B (1204\u20131206)","112":"Ken\u2019ei (1206\u20131207)","113":"J\u014Dgen (1207\u20131211)","114":"Kenryaku (1211\u20131213)","115":"Kenp\u014D (1213\u20131219)","116":"J\u014Dky\u016B (1219\u20131222)","117":"J\u014D\u014D (1222\u20131224)","118":"Gennin (1224\u20131225)","119":"Karoku (1225\u20131227)","120":"Antei (1227\u20131229)","121":"Kanki (1229\u20131232)","122":"J\u014Dei (1232\u20131233)","123":"Tenpuku (1233\u20131234)","124":"Bunryaku (1234\u20131235)","125":"Katei (1235\u20131238)","126":"Ryakunin (1238\u20131239)","127":"En\u2019\u014D (1239\u20131240)","128":"Ninji (1240\u20131243)","129":"Kangen (1243\u20131247)","130":"H\u014Dji (1247\u20131249)","131":"Kench\u014D (1249\u20131256)","132":"K\u014Dgen (1256\u20131257)","133":"Sh\u014Dka (1257\u20131259)","134":"Sh\u014Dgen (1259\u20131260)","135":"Bun\u2019\u014D (1260\u20131261)","136":"K\u014Dch\u014D (1261\u20131264)","137":"Bun\u2019ei (1264\u20131275)","138":"Kenji (1275\u20131278)","139":"K\u014Dan (1278\u20131288)","140":"Sh\u014D\u014D (1288\u20131293)","141":"Einin (1293\u20131299)","142":"Sh\u014Dan (1299\u20131302)","143":"Kengen (1302\u20131303)","144":"Kagen (1303\u20131306)","145":"Tokuji (1306\u20131308)","146":"Enky\u014D (1308\u20131311)","147":"\u014Cch\u014D (1311\u20131312)","148":"Sh\u014Dwa (1312\u20131317)","149":"Bunp\u014D (1317\u20131319)","150":"Gen\u014D (1319\u20131321)","151":"Genk\u014D (1321\u20131324)","152":"Sh\u014Dch\u016B (1324\u20131326)","153":"Karyaku (1326\u20131329)","154":"Gentoku (1329\u20131331)","155":"Genk\u014D (1331\u20131334)","156":"Kenmu (1334\u20131336)","157":"Engen (1336\u20131340)","158":"K\u014Dkoku (1340\u20131346)","159":"Sh\u014Dhei (1346\u20131370)","160":"Kentoku (1370\u20131372)","161":"Bunch\u016B (1372\u20131375)","162":"Tenju (1375\u20131379)","163":"K\u014Dryaku (1379\u20131381)","164":"K\u014Dwa (1381\u20131384)","165":"Gench\u016B (1384\u20131392)","166":"Meitoku (1384\u20131387)","167":"Kakei (1387\u20131389)","168":"K\u014D\u014D (1389\u20131390)","169":"Meitoku (1390\u20131394)","170":"\u014Cei (1394\u20131428)","171":"Sh\u014Dch\u014D (1428\u20131429)","172":"Eiky\u014D (1429\u20131441)","173":"Kakitsu (1441\u20131444)","174":"Bun\u2019an (1444\u20131449)","175":"H\u014Dtoku (1449\u20131452)","176":"Ky\u014Dtoku (1452\u20131455)","177":"K\u014Dsh\u014D (1455\u20131457)","178":"Ch\u014Droku (1457\u20131460)","179":"Kansh\u014D (1460\u20131466)","180":"Bunsh\u014D (1466\u20131467)","181":"\u014Cnin (1467\u20131469)","182":"Bunmei (1469\u20131487)","183":"Ch\u014Dky\u014D (1487\u20131489)","184":"Entoku (1489\u20131492)","185":"Mei\u014D (1492\u20131501)","186":"Bunki (1501\u20131504)","187":"Eish\u014D (1504\u20131521)","188":"Taiei (1521\u20131528)","189":"Ky\u014Droku (1528\u20131532)","190":"Tenbun (1532\u20131555)","191":"K\u014Dji (1555\u20131558)","192":"Eiroku (1558\u20131570)","193":"Genki (1570\u20131573)","194":"Tensh\u014D (1573\u20131592)","195":"Bunroku (1592\u20131596)","196":"Keich\u014D (1596\u20131615)","197":"Genna (1615\u20131624)","198":"Kan\u2019ei (1624\u20131644)","199":"Sh\u014Dho (1644\u20131648)","200":"Keian (1648\u20131652)","201":"J\u014D\u014D (1652\u20131655)","202":"Meireki (1655\u20131658)","203":"Manji (1658\u20131661)","204":"Kanbun (1661\u20131673)","205":"Enp\u014D (1673\u20131681)","206":"Tenna (1681\u20131684)","207":"J\u014Dky\u014D (1684\u20131688)","208":"Genroku (1688\u20131704)","209":"H\u014Dei (1704\u20131711)","210":"Sh\u014Dtoku (1711\u20131716)","211":"Ky\u014Dh\u014D (1716\u20131736)","212":"Genbun (1736\u20131741)","213":"Kanp\u014D (1741\u20131744)","214":"Enky\u014D (1744\u20131748)","215":"Kan\u2019en (1748\u20131751)","216":"H\u014Dreki (1751\u20131764)","217":"Meiwa (1764\u20131772)","218":"An\u2019ei (1772\u20131781)","219":"Tenmei (1781\u20131789)","220":"Kansei (1789\u20131801)","221":"Ky\u014Dwa (1801\u20131804)","222":"Bunka (1804\u20131818)","223":"Bunsei (1818\u20131830)","224":"Tenp\u014D (1830\u20131844)","225":"K\u014Dka (1844\u20131848)","226":"Kaei (1848\u20131854)","227":"Ansei (1854\u20131860)","228":"Man\u2019en (1860\u20131861)","229":"Bunky\u016B (1861\u20131864)","230":"Genji (1864\u20131865)","231":"Kei\u014D (1865\u20131868)","232":"Meiji","233":"Taish\u014D","234":"Sh\u014Dwa","235":"Heisei","236":"Reiwa"},"eraNarrow":{"0":"Taika (645\u2013650)","1":"Hakuchi (650\u2013671)","2":"Hakuh\u014D (672\u2013686)","3":"Shuch\u014D (686\u2013701)","4":"Taih\u014D (701\u2013704)","5":"Keiun (704\u2013708)","6":"Wad\u014D (708\u2013715)","7":"Reiki (715\u2013717)","8":"Y\u014Dr\u014D (717\u2013724)","9":"Jinki (724\u2013729)","10":"Tenpy\u014D (729\u2013749)","11":"Tenpy\u014D-kamp\u014D (749\u2013749)","12":"Tenpy\u014D-sh\u014Dh\u014D (749\u2013757)","13":"Tenpy\u014D-h\u014Dji (757\u2013765)","14":"Tenpy\u014D-jingo (765\u2013767)","15":"Jingo-keiun (767\u2013770)","16":"H\u014Dki (770\u2013780)","17":"Ten-\u014D (781\u2013782)","18":"Enryaku (782\u2013806)","19":"Daid\u014D (806\u2013810)","20":"K\u014Dnin (810\u2013824)","21":"Tench\u014D (824\u2013834)","22":"J\u014Dwa (834\u2013848)","23":"Kaj\u014D (848\u2013851)","24":"Ninju (851\u2013854)","25":"Saik\u014D (854\u2013857)","26":"Ten-an (857\u2013859)","27":"J\u014Dgan (859\u2013877)","28":"Gangy\u014D (877\u2013885)","29":"Ninna (885\u2013889)","30":"Kanpy\u014D (889\u2013898)","31":"Sh\u014Dtai (898\u2013901)","32":"Engi (901\u2013923)","33":"Ench\u014D (923\u2013931)","34":"J\u014Dhei (931\u2013938)","35":"Tengy\u014D (938\u2013947)","36":"Tenryaku (947\u2013957)","37":"Tentoku (957\u2013961)","38":"\u014Cwa (961\u2013964)","39":"K\u014Dh\u014D (964\u2013968)","40":"Anna (968\u2013970)","41":"Tenroku (970\u2013973)","42":"Ten\u2019en (973\u2013976)","43":"J\u014Dgen (976\u2013978)","44":"Tengen (978\u2013983)","45":"Eikan (983\u2013985)","46":"Kanna (985\u2013987)","47":"Eien (987\u2013989)","48":"Eiso (989\u2013990)","49":"Sh\u014Dryaku (990\u2013995)","50":"Ch\u014Dtoku (995\u2013999)","51":"Ch\u014Dh\u014D (999\u20131004)","52":"Kank\u014D (1004\u20131012)","53":"Ch\u014Dwa (1012\u20131017)","54":"Kannin (1017\u20131021)","55":"Jian (1021\u20131024)","56":"Manju (1024\u20131028)","57":"Ch\u014Dgen (1028\u20131037)","58":"Ch\u014Dryaku (1037\u20131040)","59":"Ch\u014Dky\u016B (1040\u20131044)","60":"Kantoku (1044\u20131046)","61":"Eish\u014D (1046\u20131053)","62":"Tengi (1053\u20131058)","63":"K\u014Dhei (1058\u20131065)","64":"Jiryaku (1065\u20131069)","65":"Enky\u016B (1069\u20131074)","66":"Sh\u014Dho (1074\u20131077)","67":"Sh\u014Dryaku (1077\u20131081)","68":"Eih\u014D (1081\u20131084)","69":"\u014Ctoku (1084\u20131087)","70":"Kanji (1087\u20131094)","71":"Kah\u014D (1094\u20131096)","72":"Eich\u014D (1096\u20131097)","73":"J\u014Dtoku (1097\u20131099)","74":"K\u014Dwa (1099\u20131104)","75":"Ch\u014Dji (1104\u20131106)","76":"Kash\u014D (1106\u20131108)","77":"Tennin (1108\u20131110)","78":"Ten-ei (1110\u20131113)","79":"Eiky\u016B (1113\u20131118)","80":"Gen\u2019ei (1118\u20131120)","81":"H\u014Dan (1120\u20131124)","82":"Tenji (1124\u20131126)","83":"Daiji (1126\u20131131)","84":"Tensh\u014D (1131\u20131132)","85":"Ch\u014Dsh\u014D (1132\u20131135)","86":"H\u014Den (1135\u20131141)","87":"Eiji (1141\u20131142)","88":"K\u014Dji (1142\u20131144)","89":"Ten\u2019y\u014D (1144\u20131145)","90":"Ky\u016Ban (1145\u20131151)","91":"Ninpei (1151\u20131154)","92":"Ky\u016Bju (1154\u20131156)","93":"H\u014Dgen (1156\u20131159)","94":"Heiji (1159\u20131160)","95":"Eiryaku (1160\u20131161)","96":"\u014Cho (1161\u20131163)","97":"Ch\u014Dkan (1163\u20131165)","98":"Eiman (1165\u20131166)","99":"Nin\u2019an (1166\u20131169)","100":"Ka\u014D (1169\u20131171)","101":"Sh\u014Dan (1171\u20131175)","102":"Angen (1175\u20131177)","103":"Jish\u014D (1177\u20131181)","104":"Y\u014Dwa (1181\u20131182)","105":"Juei (1182\u20131184)","106":"Genryaku (1184\u20131185)","107":"Bunji (1185\u20131190)","108":"Kenky\u016B (1190\u20131199)","109":"Sh\u014Dji (1199\u20131201)","110":"Kennin (1201\u20131204)","111":"Genky\u016B (1204\u20131206)","112":"Ken\u2019ei (1206\u20131207)","113":"J\u014Dgen (1207\u20131211)","114":"Kenryaku (1211\u20131213)","115":"Kenp\u014D (1213\u20131219)","116":"J\u014Dky\u016B (1219\u20131222)","117":"J\u014D\u014D (1222\u20131224)","118":"Gennin (1224\u20131225)","119":"Karoku (1225\u20131227)","120":"Antei (1227\u20131229)","121":"Kanki (1229\u20131232)","122":"J\u014Dei (1232\u20131233)","123":"Tenpuku (1233\u20131234)","124":"Bunryaku (1234\u20131235)","125":"Katei (1235\u20131238)","126":"Ryakunin (1238\u20131239)","127":"En\u2019\u014D (1239\u20131240)","128":"Ninji (1240\u20131243)","129":"Kangen (1243\u20131247)","130":"H\u014Dji (1247\u20131249)","131":"Kench\u014D (1249\u20131256)","132":"K\u014Dgen (1256\u20131257)","133":"Sh\u014Dka (1257\u20131259)","134":"Sh\u014Dgen (1259\u20131260)","135":"Bun\u2019\u014D (1260\u20131261)","136":"K\u014Dch\u014D (1261\u20131264)","137":"Bun\u2019ei (1264\u20131275)","138":"Kenji (1275\u20131278)","139":"K\u014Dan (1278\u20131288)","140":"Sh\u014D\u014D (1288\u20131293)","141":"Einin (1293\u20131299)","142":"Sh\u014Dan (1299\u20131302)","143":"Kengen (1302\u20131303)","144":"Kagen (1303\u20131306)","145":"Tokuji (1306\u20131308)","146":"Enky\u014D (1308\u20131311)","147":"\u014Cch\u014D (1311\u20131312)","148":"Sh\u014Dwa (1312\u20131317)","149":"Bunp\u014D (1317\u20131319)","150":"Gen\u014D (1319\u20131321)","151":"Genk\u014D (1321\u20131324)","152":"Sh\u014Dch\u016B (1324\u20131326)","153":"Karyaku (1326\u20131329)","154":"Gentoku (1329\u20131331)","155":"Genk\u014D (1331\u20131334)","156":"Kenmu (1334\u20131336)","157":"Engen (1336\u20131340)","158":"K\u014Dkoku (1340\u20131346)","159":"Sh\u014Dhei (1346\u20131370)","160":"Kentoku (1370\u20131372)","161":"Bunch\u016B (1372\u20131375)","162":"Tenju (1375\u20131379)","163":"K\u014Dryaku (1379\u20131381)","164":"K\u014Dwa (1381\u20131384)","165":"Gench\u016B (1384\u20131392)","166":"Meitoku (1384\u20131387)","167":"Kakei (1387\u20131389)","168":"K\u014D\u014D (1389\u20131390)","169":"Meitoku (1390\u20131394)","170":"\u014Cei (1394\u20131428)","171":"Sh\u014Dch\u014D (1428\u20131429)","172":"Eiky\u014D (1429\u20131441)","173":"Kakitsu (1441\u20131444)","174":"Bun\u2019an (1444\u20131449)","175":"H\u014Dtoku (1449\u20131452)","176":"Ky\u014Dtoku (1452\u20131455)","177":"K\u014Dsh\u014D (1455\u20131457)","178":"Ch\u014Droku (1457\u20131460)","179":"Kansh\u014D (1460\u20131466)","180":"Bunsh\u014D (1466\u20131467)","181":"\u014Cnin (1467\u20131469)","182":"Bunmei (1469\u20131487)","183":"Ch\u014Dky\u014D (1487\u20131489)","184":"Entoku (1489\u20131492)","185":"Mei\u014D (1492\u20131501)","186":"Bunki (1501\u20131504)","187":"Eish\u014D (1504\u20131521)","188":"Taiei (1521\u20131528)","189":"Ky\u014Droku (1528\u20131532)","190":"Tenbun (1532\u20131555)","191":"K\u014Dji (1555\u20131558)","192":"Eiroku (1558\u20131570)","193":"Genki (1570\u20131573)","194":"Tensh\u014D (1573\u20131592)","195":"Bunroku (1592\u20131596)","196":"Keich\u014D (1596\u20131615)","197":"Genna (1615\u20131624)","198":"Kan\u2019ei (1624\u20131644)","199":"Sh\u014Dho (1644\u20131648)","200":"Keian (1648\u20131652)","201":"J\u014D\u014D (1652\u20131655)","202":"Meireki (1655\u20131658)","203":"Manji (1658\u20131661)","204":"Kanbun (1661\u20131673)","205":"Enp\u014D (1673\u20131681)","206":"Tenna (1681\u20131684)","207":"J\u014Dky\u014D (1684\u20131688)","208":"Genroku (1688\u20131704)","209":"H\u014Dei (1704\u20131711)","210":"Sh\u014Dtoku (1711\u20131716)","211":"Ky\u014Dh\u014D (1716\u20131736)","212":"Genbun (1736\u20131741)","213":"Kanp\u014D (1741\u20131744)","214":"Enky\u014D (1744\u20131748)","215":"Kan\u2019en (1748\u20131751)","216":"H\u014Dreki (1751\u20131764)","217":"Meiwa (1764\u20131772)","218":"An\u2019ei (1772\u20131781)","219":"Tenmei (1781\u20131789)","220":"Kansei (1789\u20131801)","221":"Ky\u014Dwa (1801\u20131804)","222":"Bunka (1804\u20131818)","223":"Bunsei (1818\u20131830)","224":"Tenp\u014D (1830\u20131844)","225":"K\u014Dka (1844\u20131848)","226":"Kaei (1848\u20131854)","227":"Ansei (1854\u20131860)","228":"Man\u2019en (1860\u20131861)","229":"Bunky\u016B (1861\u20131864)","230":"Genji (1864\u20131865)","231":"Kei\u014D (1865\u20131868)","232":"M","233":"T","234":"S","235":"H","236":"R"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"persian":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"AP"},"eraAbbr":{"0":"AP"},"eraNarrow":{"0":"AP"}},"months":{"format":{"abbreviated":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"}},"stand-alone":{"abbreviated":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"roc":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Before R.O.C.","1":"Minguo"},"eraAbbr":{"0":"Before R.O.C.","1":"Minguo"},"eraNarrow":{"0":"Before R.O.C.","1":"Minguo"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}}}'),{tmpl:te,sel:"lwc-components-lightning-scopedImports"});const zm=/^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d[:]?\d\d)|Z)?)?)?)?$/i,Gm=/^\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d[:]?\d\d)|Z)?$/i,Vm="HH:mm:ss.SSS",Do="YYYY-MM-DD",ko="T",Bm=/(Z|([+-])(\d{2})[:]?(\d{2}))$/i;function $o(t){return Hm(t)&&xo(t)}function Wm(t){if(!Jm(t))return!1;const e=Lo(t);return xo(`2018-09-09T${e}Z`)}function Lo(t){return typeof t=="string"?t.split(Bm)[0]:t}function Hm(t){return typeof t!="string"?!1:zm.test(t)}function Jm(t){return typeof t!="string"?!1:Gm.test(t)}function xo(t){const e=Date.parse(t);return isFinite(e)}var qm="in a few seconds",Qm="a few seconds ago";const jo=t=>typeof t=="string"?t.trim().split(/\s+/).reduce((e,n)=>(e[n]=!0,e),{}):t,Xm={add(t){return Object.assign(this,jo(t)),this},invert(){return Object.keys(this).forEach(t=>{this[t]=!this[t]}),this},toString(){return Object.keys(this).filter(t=>this[t]).join(" ")}};function Ym(t){return Object.assign(Object.create(Xm),jo(t))}function Zm(t){const e=Array.prototype.slice.call(arguments,1);let n=e;return Array.isArray(e[0])&&([n]=e),t.replace(/{(\d+)}/g,(r,i)=>{const a=n[i];return a??""})}const ef="in {0} {1}",tf="{0} {1} ago",nf="s",V={SECONDS:{name:"second",threshold:45},MINUTES:{name:"minute",threshold:45},HOURS:{name:"hour",threshold:22},DAYS:{name:"day",threshold:26},MONTHS:{name:"month",threshold:11},YEARS:{name:"year"}},rf=1e3,af=6e4,of=36e5,yr=864e5;class Fo{constructor(e){if(this.milliseconds=0,typeof e!="number"){this.isValid=!1,console.warn(`The value of milliseconds passed into Duration must be of type number, |
| | | but we are getting the ${typeof e} value "${e}" instead. |
| | | `);return}this.isValid=!0,this.milliseconds=e}humanize(e){if(!this.isValid)return"";const n=df(this);return n===V.SECONDS?this.milliseconds>0?qm:Qm:lf(e,this.asIn(n),n.name)}asIn(e){switch(e){case V.SECONDS:return Math.round(this.milliseconds/rf);case V.MINUTES:return Math.round(this.milliseconds/af);case V.HOURS:return Math.round(this.milliseconds/of);case V.DAYS:return Math.round(this.milliseconds/yr);case V.MONTHS:return Math.round(Uo(this.milliseconds/yr));case V.YEARS:default:return Math.round(Uo(this.milliseconds/yr)/12)}}}p.registerDecorators(Fo,{fields:["milliseconds"]});var sf=p.registerComponent(Fo,{tmpl:te,sel:"lightning-configProvider"});function Uo(t){const e=4800/146097;return t*e}function df(t){const e=Object.keys(V).find(n=>{const r=V[n];return r===V.YEARS||Math.abs(t.asIn(r))<r.threshold});return V[e]}function lf(t,e,n){return"Intl"in window&&Intl.RelativeTimeFormat?new Intl.RelativeTimeFormat(t,{style:"long",numeric:"always"}).format(e,n):cf(e,n)}function cf(t,e){console.warn("The current environment does not support formatters for relative time.");const n=Math.abs(t),r=n!==1?e+nf:e,i=t>0?ef:tf;return Zm(i,n,r)}const wr=["January","February","March","April","May","June","July","August","September","October","November","December"],Oe={short:"M/d/yyyy",medium:"MMM d, yyyy",long:"MMMM d, yyyy"},Tr={short:"h:mm a",medium:"h:mm:ss a",long:"h:mm:ss a"},uf={short:"h:m a",medium:"h:m:s a",long:"h:m:s a"};function hf(t,e){let n=!1,r=t;return typeof t=="string"&&(r=t.split(ko)[0],n=!0),Go(r,e,n)}function Ko(t,e){return Go(t,e,!0)}function zo(t,e){if(!We(t))return new Date("");const n=(t.getHours()+11)%12+1,r=t.getHours()>=12?"PM":"AM";switch(e){case Vm:return`${B(t.getHours())}:${B(t.getMinutes())}:${B(t.getSeconds())}.${Mf(t.getMilliseconds())}`;case Tr.short:return`${n}:${B(t.getMinutes())} ${r}`;case Tr.medium:case Tr.long:default:return`${n}:${B(t.getMinutes())}:${B(t.getSeconds())} ${r}`}}function mf(t){if(!We(t))return new Date("");const e=new Date(t.getTime());return`${Ko(e)}, ${zo(Et(e))}`}function mn(t){let e=null,n=!0;if(Wm(t)?e=`${Vo()}T${Pr(t)}`:$o(t)&&(t.indexOf(ko)>0?(e=Pr(t),n=!1):e=`${t}T00:00:00.000Z`),e){const r=new Date(e);return n&&Et(r),r}return null}function ff(t,e){return e===Do&&$o(t)?mn(t):Object.values(Oe).includes(e)?Nf(t,e):Object.values(uf).includes(e)?Sf(t):null}function pf(t){return mn(Pr(t))}function gf(t,e,n){const r=_t(t),i=_t(e);return!r||!i?!1:fn(r,n).getTime()<fn(i,n).getTime()}function bf(t,e,n){const r=_t(t),i=_t(e);return!r||!i?!1:fn(r,n).getTime()>fn(i,n).getTime()}function vf(t,e,n){const r=new Date(t.getTime());n(Af(r))}function yf(t,e,n){const r=new Date(t.getTime());n(Et(r))}function wf(t){return t}function Tf(t){return t}function Pf(t){return t}function Ef(t){return t}function _f(){return{format:t=>(console.warn(`The current environment does not support large numbers and the original value of ${t} will be returned.`),t)}}function Of(t){return new sf(t*60*1e3)}function Cf(t){return t.humanize("en")}function Sf(t){const e=t.trim().split(/[:.\s*]/),n=e.length;if(!e||n<2||n>5)return null;const r=e[n-1],i=r.toLowerCase()==="am",a=r.toLowerCase()==="pm";e.splice(-1,1);const o=e.every(b=>!isNaN(b));if(!a&&!i||!o)return null;const s=e[0],l=B(a?s%12+12:s%12),d=n>=3&&e[1]||"0",h=n>=4&&e[2]||"0",m=n===5&&e[3]||"0",g=new Date(Vo());return g.setHours(l,d,h,m),We(g)?g:null}function Nf(t,e){let n=/^([a-zA-Z]{3})\s*(\d{1,2}),\s*(\d{4})$/;switch(e){case Oe.short:n=/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/;break;case Oe.long:n=/^([a-zA-Z]+)\s*(\d{1,2}),\s*(\d{4})$/;break}const r=n.exec(t.trim());if(!r)return null;let i=r[1];const a=r[2],o=r[3];e!==Oe.short&&(i=wr.findIndex(d=>d.toLowerCase().includes(i.toLowerCase())),i+=1);const s=`${o}-${B(i)}-${B(a)}`,l=new Date(`${s}T00:00:00.000Z`);return We(l)?Et(l):null}function Go(t,e,n){const r=_t(t);if(!r)return new Date("");switch(n&&We(t)&&Et(r),e){case Do:return`${r.getFullYear()}-${B(r.getMonth()+1)}-${B(r.getDate())}`;case Oe.short:return`${r.getMonth()+1}/${r.getDate()}/${r.getFullYear()}`;case Oe.long:return`${wr[r.getMonth()]} ${r.getDate()}, ${r.getFullYear()}`;case Oe.medium:default:return`${wr[r.getMonth()].substring(0,3)} ${r.getDate()}, ${r.getFullYear()}`}}function fn(t,e){switch(e){case"day":t.setHours(0),t.setMinutes(0);case"minute":t.setSeconds(0),t.setMilliseconds(0);break}return t}function We(t){return Object.prototype.toString.call(t)==="[object Date]"&&!isNaN(t.getTime())}function Pr(t){return Lo(t)+"Z"}function Et(t){return t.setMinutes(t.getMinutes()+t.getTimezoneOffset()),t}function Af(t){return t.setMinutes(t.getMinutes()-t.getTimezoneOffset()),t}function _t(t){return t?We(t)?new Date(t.getTime()):isFinite(t)&&(typeof t=="number"||typeof t=="string")?new Date(parseInt(t,10)):typeof t=="string"?mn(t):null:null}function Vo(){return new Date().toISOString().split("T")[0]}function B(t){return Number(t)<10?"0"+t:t}function Mf(t){return Number(t)<10?"00"+t:Number(t)<100?"0"+t:t}var Rf={formatDate:hf,formatDateUTC:Ko,formatTime:zo,formatDateTimeUTC:mf,parseDateTimeISO8601:mn,parseDateTime:ff,parseDateTimeUTC:pf,isBefore:gf,isAfter:bf,UTCToWallTime:vf,WallTimeToUTC:yf,translateToOtherCalendar:wf,translateFromOtherCalendar:Tf,translateToLocalizedDigits:Pf,translateFromLocalizedDigits:Ef,getNumberFormat:_f,duration:Of,displayDuration:Cf};function If(t){return{getLocalizationService(){return t.localizationService},getPathPrefix(){return t.getContext().getPathPrefix()},getToken(e){return t.getToken(e)}}}function Df(){return{getLocalizationService(){return Rf},getPathPrefix(){return""},getToken(){},getOneConfig(){return{densitySetting:""}}}}function kf(){return ze&&window.$A!==void 0&&window.$A.localizationService?If(window.$A):Df()}kf(),ze&&window.$A&&window.$A.localizationService,function(){try{Intl.DateTimeFormat("en-US",{timeZone:"America/Los_Angeles"})}catch(t){return!1}return!0}();const He="data-position-id";class $f{get window(){return this._window||(this._window=window,this.window.getComputedStyle||(this.window.getComputedStyle=e=>e.style)),this._window}mockWindow(e){this._window=e}get documentElement(){return _e(this.window.document,"Missing window.document"),this.window.document.documentElement}get MutationObserver(){return this.window.MutationObserver}isWindow(e){return e&&e.toString()==="[object Window]"}}const S=new $f;function Ot(t){return t&&t.nodeType===11}function Er(t,e,n){if(!t||t===e||t===document.body)return null;try{const r=S.window.getComputedStyle(t);return r?n(r)?t:Er(Ot(t.parentNode)?t.parentNode.host:t.parentNode,e,n):null}catch(r){return null}}function Lf(t,e){return Er(t,e,n=>{const r=n["overflow-y"];return r==="auto"||r==="scroll"})}function xf(t){var e,n;for(let r=0;r<t.length;r++){let i=t[r];if(i instanceof HTMLElement&&(e=S.window.getComputedStyle(i),n=e["overflow-y"],n==="auto"||n==="scroll"))return i}return null}function jf(t,e){return Er(t,e,n=>n["overflow-x"]==="hidden"||n["overflow-y"]==="hidden")}function _r(t){return t===S.window||!Ot(t.parentNode)&&t.parentNode&&t.parentNode.tagName&&t.parentNode.tagName.toUpperCase()==="BODY"?!0:Ot(t.parentNode)&&t.parentNode.host?_r(t.parentNode.host):t.parentNode?_r(t.parentNode):!1}function Bo(t){return t.nodeType&&(t.nodeType===1||t.nodeType===11)}function Ff(t){return new Promise(e=>{setTimeout(()=>{e()},t)})}function Uf(t){return t.tagName==="TEXTAREA"?Ot(t.parentNode)?t.parentNode.host:t.parentNode:t}let Kf=1e6;function zf(){return`lgcp-${Kf++}`}function pn(t){const e=zf();return t.setAttribute(He,e),t=document.querySelector(`[${He}="${e}"]`)||t,t}function Gf(t,e,n,r,i){const a=e.isInside||!i&&jf(r,S.window);return t.style.position=a?"fixed":"absolute",t.style.zIndex=n||0,t.style.left="-9999px",t.style.right="auto",t.style.top="0px",{element:t,overlay:e}}function Vf(){return new Promise(t=>{requestAnimationFrame(()=>t())})}function Bf(t){return t.slice(-2)==="px"}function Wo(t){return t&&Bf(t)?parseInt(t,10):0}const w={Center:"center",Middle:"middle",Right:"right",Left:"left",Bottom:"bottom",Top:"top",Default:"default"},Wf={top:w.Top,bottom:w.Bottom,center:w.Middle},Hf={left:w.Left,right:w.Right,center:w.Center},Jf={left:w.Right,right:w.Left,top:w.Bottom,bottom:w.Top,center:w.Center,default:w.Right};function Ho(t){if(t)return t.getBoundingClientRect();const e={width:S.window.innerWidth||document.body.clientWidth||0,height:S.window.innerHeight||document.body.clientHeight||0,top:0,left:0};return e.bottom=e.height,e.right=e.width,e}function Ce(t,e){return Ao(t,{fallbackValue:e||w.Default,validValues:[w.Center,w.Right,w.Left,w.Bottom,w.Top,w.Middle,w.Default]})}function qf(t){return t=Ce(t,w.Left),Hf[t]}function Qf(t){return t=Ce(t,w.Left),Wf[t]}function Je(t){return t=Ce(t,w.Left),Jf[t]}function Xf(t,e,n,r){const i=Ho(t),a=Ho(),o=e.getBoundingClientRect(),s=n.getBoundingClientRect(),l=typeof o.height!="undefined"?o.height:o.bottom-o.top,d=typeof o.width!="undefined"?o.width:o.right-o.left;let h=!1;document.dir==="rtl"&&(h=r,r=!1);let m=s.top-i.top-l,g=i.height-s.bottom-l,b=m>=0||t==null&&g<0&&m>g,T=g>=0||m<0&&g>m,E=!1;t?E=s.right-i.left>=d&&s.left+d>(h?s.right:i.width):E=s.right>=d&&s.left+d>(h?s.right:i.width);let _=!1;t?_=s.left+d<=i.right&&s.right-i.left-d<(r?s.left:0):_=s.left+d<=i.width&&s.right-d<(r?s.left:0),!_&&!E&&t&&(E=(s.right-i.left>=d||s.right>=d)&&s.left+d>(h?s.right:i.width),_=(s.left+d<=i.right||s.left+d<=a.width)&&s.right-d<(r?s.left:0)),!b&&!T&&t&&e.style&&e.style.position==="fixed"&&(b=s.top-a.top-l>0,T=a.height-s.bottom-l>0);const I={left:s.left-d*.5<0,right:s.right+d*.5>i.width,top:s.top-l*.5<0,bottom:s.bottom+l*.5>i.height};return{shouldAlignToLeft:_,shouldAlignToRight:E,hasSpaceAbove:b,hasSpaceBelow:T,centerOverflow:I}}class W{constructor(e,n,r,i){this.pad=e||0,this.boxDirections=n||{left:!0,right:!0},this.transformX=r||function(){},this.transformY=i||function(){}}transform(){}}class Yf extends W{transform(e,n){return{top:Math.floor(this.transformY(e.top,e,n)+this.pad)}}}class Zf extends W{transform(e,n){return{top:Math.floor(this.transformY(e.top,e,n)-n.height-this.pad)}}}class ep extends W{transform(e,n){return{left:Math.floor(this.transformX(e.left,e,n)-.5*n.width)}}}class tp extends W{transform(e,n){return{top:Math.floor(.5*(2*e.top+e.height-n.height))}}}class np extends W{transform(e,n){return{left:Math.floor(this.transformX(e.left,e,n)+this.pad)}}}class rp extends W{transform(e,n){return{left:Math.floor(this.transformX(e.left,e,n)-n.width-this.pad)}}}class ip extends W{transform(e,n){const r=e.top+e.height+this.pad;return n.top<r?{top:r}:{}}}const Jo=36,qo=36;class ap extends W{transform(e,n){const r={};return this.boxDirections.top&&n.top<e.top+this.pad&&(r.top=e.top+this.pad,r.height=Math.max(n.height-(r.top-n.top),Jo)),this.boxDirections.left&&n.left<e.left+this.pad&&(r.left=e.left+this.pad,r.width=Math.max(n.width-(r.left-n.left),qo)),this.boxDirections.right&&n.left+n.width>e.left+e.width-this.pad&&(r.right=e.left+e.width-this.pad,r.width=Math.max(r.right-(r.left||n.left),qo)),this.boxDirections.bottom&&n.top+n.height>e.top+e.height-this.pad&&(r.bottom=e.top+e.height-this.pad,r.height=Math.max(r.bottom-(r.top||n.top),Jo)),r}}class op extends W{transform(e,n){const r={};return this.boxDirections.top&&n.top<e.top+this.pad&&(r.top=e.top+this.pad),this.boxDirections.left&&n.left<e.left+this.pad&&(r.left=e.left+this.pad),this.boxDirections.right&&n.left+n.width>e.left+e.width-this.pad&&(r.left=e.left+e.width-n.width-this.pad),this.boxDirections.bottom&&n.top+n.height>e.top+e.height-this.pad&&(r.top=e.top+e.height-n.height-this.pad),r}}class sp extends W{transform(e,n){const r={};return this.boxDirections.left&&e.left-this.pad<n.left&&(r.left=e.left-this.pad),this.boxDirections.right&&n.left+n.width<e.left+e.width+this.pad&&(r.left=e.width+this.pad-n.width+e.left),this.boxDirections.top&&e.top<n.top+this.pad&&(r.top=e.top-this.pad),this.boxDirections.bottom&&n.top+n.height<e.top+e.height+this.pad&&(r.top=e.height+this.pad-n.height+e.top),r}}const Qo={center(t,e){return Math.floor(t+.5*e.width)},right(t,e){return t+e.width},left(t){return t},bottom(t,e){return t+e.height}},Or={top:Yf,bottom:Zf,center:ep,middle:tp,left:np,right:rp,below:ip,"bounding box":op,"shrinking box":ap,"inverse bounding box":sp,default:W};function gn(t){return Qo[t]||Qo.left}class dp{type(e){return this._type=e,this}align(e,n){return this._transformX=gn(e),this._transformY=gn(n),this}pad(e){return this._pad=parseInt(e,10),this}boxDirections(e){return this._boxDirections=e,this}build(){const e=Or[this._type]?Or[this._type]:Or[w.Default];return new e(this._pad||0,this._boxDirections||{},this._transformX||gn(w.left),this._transformY||gn(w.left))}}class Ct{constructor(e,n){const{target:r,element:i,pad:a,boxDirections:o}=n,{horizontal:s,vertical:l}=n.targetAlign;this._element=i,this._targetElement=r,this.destroyed=!1,this._transformer=new dp().type(e).align(s,l).pad(a).boxDirections(o).build()}detach(){this._disabled=!0}attach(){this._disabled=!1}computeDisplacement(){return this._disabled||(this._targetElement.refresh(),this._element.refresh(),this._pendingBox=this._transformer.transform(this._targetElement,this._element)),this}computePosition(){const e=this._element;return this._disabled||Object.keys(this._pendingBox).forEach(n=>{e.setDirection(n,this._pendingBox[n])}),this}destroy(){this._element.release(),this._targetElement.release(),this._disabled=!0,this.destroyed=!0}}class lp{constructor(e,n){if(this.id=n,this.width=0,this.height=0,this.left=0,this.top=0,this.right=0,this.bottom=0,this._dirty=!1,this._node=null,this._releaseCb=null,!e)throw new Error("Element missing");S.isWindow(e)&&(e=S.window),this._node=e,this.setupObserver(),this.refresh()}setupObserver(){S.MutationObserver&&!this._node.isObserved&&(this._observer=new S.MutationObserver(this.refresh.bind(this)),S.isWindow(this._node)||(this._observer.observe(this._node,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),this._node.isObserved=!0))}setReleaseCallback(e,n){const r=n||this;this._releaseCb=e.bind(r)}checkNodeIsInDom(){return!!_r(this._node)}refresh(){const e=S.window;if(!this.isDirty()){if(!this.checkNodeIsInDom())return this.release();let n,r,i,a;if(typeof e.pageYOffset!="undefined"?(i=e.pageYOffset,a=e.pageXOffset):(i=e.scrollY,a=e.scrollX),S.isWindow(this._node))n={},this.width=S.documentElement.clientWidth,this.height=S.documentElement.clientHeight,this.left=a,this.top=i,this.right=S.documentElement.clientWidth+a,this.bottom=S.documentElement.clientHeight;else{this._node.offsetHeight,n=this._node.getBoundingClientRect();for(r in n)this[r]=Math.floor(n[r]);this.top=Math.floor(this.top+i),this.bottom=Math.floor(this.top+n.height),this.left=Math.floor(this.left+a),this.right=Math.floor(this.left+n.width)}this._dirty=!1}return this._dirty}getNode(){return this._node}isDirty(){return this._dirty}bake(){const e=S.window,n=this._node.getBoundingClientRect(),r=e.getComputedStyle(this._node)||this._node.style,i=typeof e.pageYOffset!="undefined",a=i?e.pageYOffset:e.scrollY,o=i?e.pageXOffset:e.scrollX,s=r.left.match(/auto|fixed/)?"0":parseInt(r.left.replace("px",""),10),l=r.top.match(/auto|fixed/)?"0":parseInt(r.top.replace("px",""),10),d=this.top<n.top?Wo(r.marginBottom):Wo(r.marginTop)*-1;let h=Math.round(this.left-(n.left+o));const m=this.top-(n.top+d+a),g=e.innerWidth||document.body.clientWidth;let b=parseInt(r.right,10);s+h+parseInt(r.width,10)>g&&b<=0&&(b=b<0?-b:h,this._node.style.right=-b+"px",h=0),this._node.style.left=`${s+h}px`,this._node.style.top=`${l+m}px`,this._restoreSize&&(this.originalHeight===void 0&&(this.originalHeight=this._node.style.height),this.originalWidth===void 0&&(this.originalWidth=this._node.style.width),this._node.style.width=`${this.width}px`,this._node.style.height=`${this.height}px`),this._dirty=!1}setDirection(e,n){this[e]=n,this._dirty=!0,(e==="height"||e==="width")&&(this._restoreSize=!0)}release(){this._restoreSize&&(this._node.style.width=this.originalWidth,this._node.style.height=this.originalHeight,this._removeMinHeight&&(this._node.style.minHeight="")),this._releaseCb&&this._releaseCb(this),this._observer&&(this._observer.disconnect(),this._observer=null)}querySelectorAll(e){return this._node.querySelectorAll(e)}}class Xo{constructor(){this.proxyCache={}}get count(){return Object.keys(this.proxyCache).length}releaseOrphanProxies(){for(const e in this.proxyCache)this.proxyCache[e].el.checkNodeIsInDom()||this.proxyCache[e].el.release()}bakeOff(){for(const e in this.proxyCache)this.proxyCache[e].el.isDirty()&&this.proxyCache[e].el.bake()}getReferenceCount(e){const n=e.id;return!n||!this.proxyCache[n]?0:this.proxyCache[n].refCount}release(e){const n=this.proxyCache[e.id];n&&--n.refCount,n&&n.refCount<=0&&delete this.proxyCache[e.id]}reset(){this.proxyCache={}}create(e){let n="window";if(S.isWindow(e)||(n=e?e.getAttribute(He):null,_e(n&&e.nodeType&&(e.nodeType!==1||e.nodeType!==11),`Element Proxy requires an element and has property ${He}`)),this.proxyCache[n])return this.proxyCache[n].refCount++,this.proxyCache[n].el;const r=new lp(e,n);return r.setReleaseCallback(up,r),this.proxyCache[n]={el:r,refCount:1},Ff(0).then(()=>{this.releaseOrphanProxies()}),this.proxyCache[n].el}}p.registerDecorators(Xo,{fields:["proxyCache"]});const Cr=new Xo;function cp(){Cr.bakeOff()}function up(t){return Cr.release(t)}function bn(t){return Cr.create(t)}class Yo{constructor(){this.callbacks=[],this.repositionScheduled=!1,this._constraints=[],this.timeoutId=0,this.lastIndex=km(),this.eventsBound=!1}get nextIndex(){return this.lastIndex++}get constraints(){return this._constraints}set constraints(e){this._constraints=this._constraints.concat(e)}dispatchRepositionCallbacks(){for(;this.callbacks.length>0;)this.callbacks.shift()()}add(e){return typeof e=="function"?(this.callbacks.push(e),!0):!1}scheduleReposition(e){this.timeoutId===0&&(this.timeoutId=setTimeout(()=>{this.reposition(e)},10))}reposition(e){typeof e=="function"&&this.callbacks.push(e),clearTimeout(this.timeoutId),this.timeoutId=0,this.repositionScheduled||(requestAnimationFrame(()=>{this.repositionScheduled=!1,this._constraints=this._constraints.filter(n=>n.destroyed?!1:(n.computeDisplacement().computePosition(),!0)),cp(),this.dispatchRepositionCallbacks()}),this.repositionScheduled=!0)}get repositioning(){return this._reposition||(this._reposition=this.scheduleReposition.bind(this)),this._reposition}bindEvents(){this.eventsBound||(window.addEventListener("resize",this.repositioning),window.addEventListener("scroll",this.repositioning),this.eventsBound=!0)}detachEvents(){window.removeEventListener("resize",this.repositioning),window.removeEventListener("scroll",this.repositioning),this.eventsBound=!1}rebase(e){this.lastIndex<=e&&(this.lastIndex=e+1)}}p.registerDecorators(Yo,{fields:["callbacks","repositionScheduled","_constraints","timeoutId","lastIndex","eventsBound"]});const qe=new Yo;function Zo(t){qe.scheduleReposition(t)}function hp(){qe.bindEvents()}function mp(t){qe.constraints=t}function es(t){qe.reposition(t)}function fp(){return qe.nextIndex}function ts(t){return qe.rebase(t)}class pp{constructor(e,n,r,i){this.config=e,this.constraintList=n,this.scrollableParent=r,this.observer=i}disable(){this.constraintList.forEach(e=>{e.detach()})}enable(){this.constraintList.forEach(e=>{e.attach()})}destroy(){for(this.config.removeListeners&&(this.config.removeListeners(),this.config.removeListeners=void 0);this.constraintList.length>0;)this.constraintList.pop().destroy();if(this.config.appendToBody&&this.config.element){const e=document.querySelector(`[${He}="${this.config.element.getAttribute(He)}"]`);e&&e.parentNode.removeChild(e)}this.observer&&(this.observer.disconnect(),this.observer=null)}reposition(){return new Promise(e=>{es(()=>{e()})})}}const L={NONE:"none",MODAL:"uiModal",DIALOG:"lightning-dialog",POPOVER:"lightning-popover",PANEL:"uiPanel",SLDSMODAL:"slds-modal"};function gp(t){return t.localName===L.DIALOG?L.DIALOG:t.localName===L.POPOVER?L.POPOVER:t.classList&&t.classList.contains(L.MODAL)?L.MODAL:t.classList&&t.classList.contains(L.PANEL)?L.PANEL:t.classList&&t.classList.contains(L.SLDSMODAL)?L.SLDSMODAL:L.NONE}function ns(t){if(!t)return{isInside:!1,type:null,overlay:null};const e=gp(t);return e!==L.NONE?{isInside:!0,type:e,overlay:t}:t.parentNode?ns(Ot(t.parentNode)?t.parentNode.host:t.parentNode):{isInside:!1,type:null,overlay:null}}class rs{constructor(e){this._element=e,this._detection=ns(this._element)||{isInside:!1,overlay:null}}get isInsideModal(){return this.isInside&&(this._detection.type===L.MODAL||this._detection.type===L.DIALOG||this._detection.type===L.SLDSMODAL)}get isInside(){return this._detection.isInside}get overlay(){return this._detection.overlay}}const bp="1.875rem";function vp(t,e){const n=t.element;let r=null;return S.MutationObserver&&!n.isObserved&&(r=new S.MutationObserver(()=>{}),r.observe(n,{attributes:!0,subtree:!0,childList:!0}),n.isObserved=!0),e&&(e.addEventListener("scroll",Zo),t.removeListeners=()=>{e.removeEventListener("scroll",Zo)}),r}function yp(t){_e(t.element&&Bo(t.element),"Element is undefined or missing, or not a Dom Node"),_e(t.target&&(S.isWindow(t.target)||Bo(t.target)),"Target is undefined or missing")}function is(t,e,n){hp();let r=Lf(Uf(t.target),S.window);!r&&n&&(r=xf(n));const i=Ep(r,t);i.alignWidth&&i.element.style.position==="fixed"&&(i.element.style.width=i.target.getBoundingClientRect().width+"px");const a=[],o=vp(i,r);i.appendToBody&&document.body.appendChild(i.element),i.element=bn(i.element),i.target=bn(i.target);const s=Object.assign({},i);s.padLeft!==void 0&&(s.pad=s.padLeft);const l=Object.assign({},i);l.padTop!==void 0&&(l.pad=l.padTop),a.push(new Ct(qf(i.align.horizontal),s)),a.push(new Ct(Qf(i.align.vertical),l));const d=i.autoShrink.height||i.autoShrink.width;if(i.scrollableParentBound&&r){const h=pn(r),m={element:i.element,enabled:i.enabled,target:bn(h),align:{},targetAlign:{},pad:3,boxDirections:{top:!0,bottom:!0,left:!0,right:!0}};if(d){const g=m.element.getNode().style;g.minHeight||(g.minHeight=i.minHeight,m.element._removeMinHeight=!0),m.boxDirections={top:!!i.autoShrink.height,bottom:!!i.autoShrink.height,left:!!i.autoShrink.width,right:!!i.autoShrink.width},a.push(new Ct("shrinking box",m))}else a.push(new Ct("bounding box",m))}return i.keepInViewport&&a.push(new Ct("bounding box",{element:i.element,enabled:i.enabled,target:bn(window),align:{},targetAlign:{},pad:3,boxDirections:{top:!0,bottom:!0,left:!0,right:!0}})),mp(a),e||es(),new pp(i,a,r,o)}function wp(t){return t.autoFlip||t.autoFlipHorizontal}function Tp(t){return t.autoFlip||t.autoFlipVertical}function Pp(t,e){const n={horizontal:t.align.horizontal,vertical:t.align.vertical},r={horizontal:t.targetAlign.horizontal,vertical:t.targetAlign.vertical};document.dir==="rtl"&&(n.horizontal=Je(n.horizontal),r.horizontal=Je(r.horizontal));let i=!1;Tp(t)&&(n.vertical===w.Bottom?i=!e.hasSpaceAbove&&e.hasSpaceBelow:n.vertical===w.Top?i=e.hasSpaceAbove&&!e.hasSpaceBelow:n.vertical===w.Center&&(e.centerOverflow.top&&!e.centerOverflow.bottom?n.vertical=r.vertical=w.Top:e.centerOverflow.bottom&&!e.centerOverflow.top&&(n.vertical=r.vertical=w.Bottom)));let a=!1;return wp(t)&&(n.horizontal===w.Left?a=e.shouldAlignToRight&&!e.shouldAlignToLeft:n.horizontal===w.Right?a=e.shouldAlignToLeft&&!e.shouldAlignToRight:n.horizontal===w.Center&&(e.centerOverflow.left&&!e.centerOverflow.right?n.horizontal=r.horizontal=w.Left:e.centerOverflow.right&&!e.centerOverflow.left&&(n.horizontal=r.horizontal=w.Right))),{align:{horizontal:a?Je(n.horizontal):Ce(n.horizontal,w.Left),vertical:i?Je(n.vertical):Ce(n.vertical,w.Top)},targetAlign:{horizontal:a?Je(r.horizontal):Ce(r.horizontal,w.Left),vertical:i?Je(r.vertical):Ce(r.vertical,w.Bottom)}}}function Ep(t,e){e.align=e.align||{},e.targetAlign=e.targetAlign||{};const n=Xf(e.overlay.isInside?null:t,e.element,e.target,e.leftAsBoundary),{align:r,targetAlign:i}=Pp(e,n);return e.isInsideModal&&!n.hasSpaceAbove&&!n.hasSpaceBelow&&(e.scrollableParentBound=!0),{target:e.target,element:e.element,align:r,targetAlign:i,alignWidth:e.alignWidth,scrollableParentBound:e.scrollableParentBound,keepInViewport:e.keepInViewport,pad:e.pad,padTop:e.padTop,padLeft:e.padLeft,autoShrink:{height:e.autoShrink||e.autoShrinkHeight,width:e.autoShrink||e.autoShrinkWidth},minHeight:e.minHeight||bp}}function as(t,e){return e&&typeof e=="string"?t.querySelector(e):e&&typeof e=="function"?e():e}function _p(t,e,n){_e(t,"Root is undefined or missing"),_e(e,"Config is undefined or missing");const r=pn(t),i=as(r,e.target),a=as(r,e.element);if(!i||!a)return null;e.target=pn(i),e.element=pn(a);const o=new rs(e.element);if(e.isInsideModal=o.isInsideModal,e.isInsideModal&&o.overlay){const h=parseInt(o.overlay.style.zIndex,10);ts(h)}const s=new rs(e.target);if(s.isInsideModal&&s.overlay){const h=parseInt(s.overlay.style.zIndex,10);ts(h)}const l=Gf(e.element,o,fp(),e.target,e.alignWidth);e.element=l.element,e.overlay=l.overlay,yp(e);const d=is(e,n);return t.dispatchEvent(new CustomEvent("privatescrollablecontainer",{composed:!0,bubbles:!0,detail:{callback:h=>{var m=is(e,n,h);d.config.align.horizontal=m.config.align.horizontal,d.config.align.vertical=m.config.align.vertical}}})),d}function Op(t){t&&t.destroy()}class os{constructor(e){this._autoPositionUpdater=null,this._root=e}start(e){return Vf().then(()=>{let n=Promise.resolve();return this._autoPositionUpdater?n=n.then(()=>this._autoPositionUpdater.reposition()):this._autoPositionUpdater=_p(this._root,e),n.then(()=>this._autoPositionUpdater)})}stop(){return this._autoPositionUpdater&&(Op(this._autoPositionUpdater),this._autoPositionUpdater=null),Promise.resolve()}}p.registerDecorators(os,{fields:["_autoPositionUpdater"]});function Cp(t,e,n){var r=t?"["+t+"]":"";return["*",r,",",r,"::before,",r,"::after {box-sizing: border-box;}h1",r,",h2",r,",h3",r,",h4",r,",h5",r,",h6",r," {font-weight: var(--sds-s-heading-font-weight, inherit);margin-block-start: var(--sds-s-heading-spacing-block-start, var(--sds-s-heading-spacing-block));margin-block-end: var(--sds-s-heading-spacing-block-end, var(--sds-s-heading-spacing-block));font-size: 1em;}a",r," {color: var(--slds-g-link-color, var(--slds-g-color-brand-base-50, #0176d3));text-decoration: var(--_slds-g-font-decoration, none);transition: color 0.1s linear;background-color: transparent;}a:active",r,",a:hover",r," {outline: 0;}a:hover",r,",a:focus",r," {text-decoration: var(--_slds-g-font-decoration-hover, underline);color: var(--slds-g-link-color-hover, var(--slds-g-color-brand-base-30, #014486));}a:active",r," {color: var(--slds-g-link-color-active, var(--slds-g-color-brand-base-30, #014486));}a:focus-visible",r," {outline-color: var(--_slds-g-color-outline, var(--slds-g-color-brand-base-50, #0176d3));}a:focus",r," {box-shadow: var(--_slds-g-shadow);border-color: var(--_slds-g-color-border);border-width: var(--_slds-g-sizing-border);border-style: var(--_slds-g-style-border);outline: var(--_slds-g-font-decoration-hover);}a",r,",button",r," {cursor: pointer;}p",r,` {margin-block-start: var(--sds-s-content-spacing-block-start, |
| | | var(--sds-s-content-spacing-block, 0));margin-block-end: var(--sds-s-content-spacing-block-end, |
| | | var(--sds-s-content-spacing-block, 0));margin-inline-start: 0;margin-inline-end: 0;padding-block-start: 0;padding-block-end: 0;padding-inline-start: 0;padding-inline-end: 0;}ol`,r,",ul",r,` {list-style: none;padding: 0;margin-block-start: var(--sds-s-content-spacing-block-start, |
| | | var(--sds-s-content-spacing-block));margin-block-end: var(--sds-s-content-spacing-block-end, |
| | | var(--sds-s-content-spacing-block));}button`,r,",[type='button']",r,",[type='reset']",r,",[type='submit']",r," {-webkit-appearance: button;appearance: button;cursor: pointer;}[type='search']",r," {-webkit-appearance: textfield;outline-offset: -2px;}[type=search]",r,"::-webkit-search-decoration,[type=search]",r,"::-webkit-search-cancel-button,[type=search]",r,"::-webkit-search-results-button,[type=search]",r,"::-webkit-search-results-decoration {display: none;}select",r," {color: inherit;font: inherit;margin: 0;}input:focus",r,",button:focus",r,",select:focus",r,",textarea:focus",r," {outline-offset: 0;}",r,"::-moz-focus-inner {border-style: none;padding: 0;}",r,"::-webkit-search-decoration {-webkit-appearance: none;}",r,"::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}:-moz-focusring",r," {outline: 1px dotted ButtonText;}:-moz-ui-invalid",r," {box-shadow: none;}code",r,",kbd",r,",samp",r,",pre",r," {font-family: var(--sds-g-font-family-monospace, monospace);font-size: var(--sds-g-font-size-base, 1rem);}img",r,",[type='image']",r," {max-width: 100%;height: auto;border: 0;vertical-align: middle;}iframe",r," {border-style: none;}svg:not([fill])",r," {fill: currentColor;}abbr[title]",r," {text-decoration: none;cursor: help;}table",r," {border-collapse: collapse;border-spacing: 0;border: 0;width: 100%;}hr",r," {display: block;margin: var(--sds-g-spacing-6, 2rem) 0;border-top: var(--sds-g-sizing-border-1, 1px) solid var(--slds-g-color-border-base-1, #c9c9c9);height: var(--sds-g-sizing-border-1, 1px);clear: both;box-sizing: content-box;border: 0;padding: 0;}abbr[title]",r," {border-bottom: var(--sds-g-sizing-border-1, 1px) dotted;text-decoration: none;border: 0;cursor: help;}caption",r,",th",r,",td",r," {text-align: left;}td",r,",th",r," {padding: 0;}dl",r," {margin: 0;padding: 0;}dd",r," {margin: 0;}pre",r," {overflow: auto;}mark",r," {background-color: #ff0;color: #000;}small",r," {font-size: 80%;}sub",r,",sup",r," {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sup",r," {top: -0.5em;}sub",r," {bottom: -0.25em;}b",r,",strong",r,",dfn",r," {font-weight: var(--sds-g-font-weight-7, 700);}b",r,",strong",r," {font-weight: var(--sds-g-font-weight-bold, bold);}"].join("")}var Sp=[Cp];function Np(t,e,n){var r=t?"["+t+"]":"",i=t?"["+t+"-host]":"";return[e?`:host([data-render-mode="shadow"]) [part~='overlay']`:i+`[data-render-mode="shadow"] [part~='overlay']`,r,` {background-color: var( |
| | | --sds-c-overlay-color-background, |
| | | var(--sds-s-popup-color-background, var(--sds-g-color-neutral-base-1)) |
| | | );color: var( |
| | | --sds-c-overlay-text-color, |
| | | var(--sds-s-popup-text-color, var(--sds-g-color-neutral-base-contrast-4)) |
| | | );border-radius: var( |
| | | --sds-c-overlay-radius-border, |
| | | var(--sds-s-popup-radius-border, var(--sds-g-radius-border-2, 0.25rem)) |
| | | );border-width: var( |
| | | --sds-c-overlay-sizing-border, |
| | | var(--sds-s-popup-sizing-border, var(--sds-g-sizing-border-1, 1px)) |
| | | );border-color: var( |
| | | --sds-c-overlay-color-border, |
| | | var(--sds-s-popup-color-border, var(--sds-g-color-border-base-1, #c9c9c9)) |
| | | );box-shadow: var(--sds-c-overlay-shadow, var(--sds-s-popup-shadow, var(--sds-g-shadow-1, 0 0 2px 0 #18181814, 0 2px 4px 1px #18181828)));padding-left: var( |
| | | --sds-c-overlay-spacing-inline-start, |
| | | var(--sds-c-overlay-spacing-inline, var(--sds-s-popup-spacing-inline, var(--sds-g-spacing-3, 0.75rem))) |
| | | );padding-right: var( |
| | | --sds-c-overlay-spacing-inline-end, |
| | | var(--sds-c-overlay-spacing-inline, var(--sds-s-popup-spacing-inline, var(--sds-g-spacing-3, 0.75rem))) |
| | | );padding-top: var( |
| | | --sds-c-overlay-spacing-block-start, |
| | | var(--sds-c-overlay-spacing-block, var(--sds-s-popup-spacing-block, var(--sds-g-spacing-3, 0.75rem))) |
| | | );padding-bottom: var( |
| | | --sds-c-overlay-spacing-block-end, |
| | | var(--sds-c-overlay-spacing-block, var(--sds-s-popup-spacing-block, var(--sds-g-spacing-3, 0.75rem))) |
| | | );}@supports (--styling-hooks: '') {`,e?`:host([data-render-mode="shadow"]) [part~='overlay']`:i+`[data-render-mode="shadow"] [part~='overlay']`,r,` {--sds-c-overlay-color-background: var(--slds-c-tooltip-color-background, #032d60);--sds-c-overlay-text-color: var(--slds-c-tooltip-text-color, #fff);--sds-c-overlay-radius-border: var(--slds-c-tooltip-radius-border, 0.25rem);--sds-c-overlay-sizing-border: var(--slds-c-tooltip-sizing-border, 0);--sds-c-overlay-color-border: var(--slds-c-tooltip-color-border);--sds-c-overlay-shadow: var(--slds-c-tooltip-shadow, 0 2px 3px 0 rgb(0 0 0 / 16%));--sds-c-overlay-spacing-inline-start: var( |
| | | --slds-c-tooltip-spacing-inline-start, |
| | | var(--sds-c-tooltip-spacing-inline, 0.75rem) |
| | | );--sds-c-overlay-spacing-inline-end: var( |
| | | --slds-c-tooltip-spacing-inline-end, |
| | | var(--sds-c-tooltip-spacing-inline, 0.75rem) |
| | | );--sds-c-overlay-spacing-block-start: var( |
| | | --slds-c-tooltip-spacing-block-start, |
| | | var(--sds-c-tooltip-spacing-block, 0.5rem) |
| | | );--sds-c-overlay-spacing-block-end: var( |
| | | --slds-c-tooltip-spacing-block-end, |
| | | var(--sds-c-tooltip-spacing-block, 0.5rem) |
| | | );font-size: var(--slds-c-tooltip-font-size, 0.75rem);max-width: var(--slds-c-tooltip-sizing-width-max, 20rem);position: relative;}}`,e?`:host([data-render-mode="shadow"]) [part~='overlay']`:i+`[data-render-mode="shadow"] [part~='overlay']`,r,"::after {box-shadow: -1px -1px 0 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top':i+'[data-render-mode="shadow"] .slds-nubbin_top',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top':i+'[data-render-mode="shadow"] .slds-nubbin_top',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::after {left: 1.5rem;top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::after {left: auto;right: 1.5rem;top: -0.5rem;margin-right: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom':i+'[data-render-mode="shadow"] .slds-nubbin_bottom',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom':i+'[data-render-mode="shadow"] .slds-nubbin_bottom',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom':i+'[data-render-mode="shadow"] .slds-nubbin_bottom',r,"::after {-webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {-webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {left: 1.5rem;top: 100%;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {-webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {left: auto;right: 1.5rem;top: 100%;margin-top: -0.5rem;margin-right: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left':i+'[data-render-mode="shadow"] .slds-nubbin_left',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left':i+'[data-render-mode="shadow"] .slds-nubbin_left',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left':i+'[data-render-mode="shadow"] .slds-nubbin_left',r,"::after {-webkit-box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {-webkit-box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {top: 1.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::before {margin-bottom: -1px;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {-webkit-box-shadow: -1px 2px 3px 0 rgba(0, 0, 0, 0.16);box-shadow: -1px 2px 3px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {top: auto;bottom: 1rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right':i+'[data-render-mode="shadow"] .slds-nubbin_right',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right':i+'[data-render-mode="shadow"] .slds-nubbin_right',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right':i+'[data-render-mode="shadow"] .slds-nubbin_right',r,"::after {-webkit-box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {-webkit-box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {top: 1.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::before {margin-bottom: -1px;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {-webkit-box-shadow: 2px -1px 3px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px -1px 3px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {top: auto;bottom: 1rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r," {border-radius: 0.125rem 0.25rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::after {left: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r," {border-radius: 0.25rem 0.25rem 0.25rem 0.125rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {left: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r," {border-radius: 0.25rem 0.125rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::after {right: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r," {border-radius: 0.25rem 0.25rem 0.125rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {right: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r," {border-radius: 0.125rem 0.25rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {top: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r," {border-radius: 0.25rem 0.125rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {top: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r," {border-radius: 0.25rem 0.25rem 0.25rem 0.125rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {bottom: 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r," {border-radius: 0.25rem 0.25rem 0.125rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {bottom: 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-rise-from-ground':i+'[data-render-mode="shadow"] .slds-rise-from-ground',r," {visibility: visible;opacity: 1;transform: translate(0%, 0%);transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear;will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-fall-into-ground':i+'[data-render-mode="shadow"] .slds-fall-into-ground',r," {visibility: hidden;opacity: 0;transform: translate(0%, 0%);transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear;will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-bottom-to-top':i+'[data-render-mode="shadow"] .slds-slide-from-bottom-to-top',r," {transform: translateY(10%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-top-to-bottom':i+'[data-render-mode="shadow"] .slds-slide-from-top-to-bottom',r," {transform: translateY(-10%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-right-to-left':i+'[data-render-mode="shadow"] .slds-slide-from-right-to-left',r," {transform: translateX(5%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-left-to-right':i+'[data-render-mode="shadow"] .slds-slide-from-left-to-right',r," {transform: translateX(-5%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-hide':i+'[data-render-mode="shadow"] .slds-hide',r," {display: none;}"].join("")}var Ap=[Np];function Mp(t,e,n){var r=t?"["+t+"]":"";return".fix-popover_tooltip_alignment"+r+" {min-width: inherit;}"}var ss=[Sp,Ap,Mp];const Rp={part:"overlay"},Ip={"slds-popover__body":!0},Dp={lwc:{dom:"manual"}};function Qe(t,e,n,r){const{b:i,h:a}=t,{_m0:o,_m1:s}=r;return[a("div",{className:e.computedPopoverClass,attrs:Rp,key:0,on:{transitionend:o||(r._m0=i(e.handleTransitionEnd))}},[a("div",{classMap:Ip,context:Dp,key:1,on:{mouseleave:s||(r._m1=i(e.handleMouseLeave))}})])]}var kp=p.registerTemplate(Qe);Qe.stylesheets=[],ss&&Qe.stylesheets.push.apply(Qe.stylesheets,ss),Qe.stylesheetToken="lightning-primitiveBubble_primitiveBubble",p.freezeTemplate(Qe);const $p=[];function vn(t,e,n,r){return $p}var Lp=p.registerTemplate(vn);vn.stylesheets=[],vn.stylesheetToken="lightning-shadowBaseClassPrivate_shadowBaseClassPrivate",p.freezeTemplate(vn);class ds extends p.LightningElement{connectedCallback(){this.template.synthetic||this.setAttribute("data-render-mode","shadow")}}ds.shadowSupportMode="any";var xp=p.registerComponent(ds,{tmpl:Lp,sel:"lightning-shadowBaseClassPrivate"});const jp={horizontal:"left",vertical:"bottom"};class ls extends xp{constructor(...e){super(...e);this.state={visible:!1,hidden:!0,contentId:""},this.disableVisibilityChangeOnLeave=void 0}get contentId(){return this.state.contentId}set contentId(e){this.state.contentId=e,this.state.inDOM&&this.divEl.setAttribute("id",this.state.contentId)}connectedCallback(){super.connectedCallback(),this.setAttribute("role","tooltip"),this.state.inDOM=!0}disconnectedCallback(){this.state.inDOM=!1}renderedCallback(){this.setContentManually(),this.setIdManually()}set content(e){this.state.content=e,this.state.inDOM&&this.setContentManually()}get content(){return this.state.content||""}get align(){return this.state.align||jp}set align(e){this.state.align=e}get visible(){return this.state.visible}set visible(e){this.state.visible=e,this.state.visible&&(this.state.hidden=!1)}handleTransitionEnd(){this.state.visible||(this.state.hidden=!0)}setIdManually(){this.setAttribute("id",this.state.contentId)}setContentManually(){this.template.querySelector(".slds-popover__body").textContent=this.state.content}get computedPopoverClass(){const e=Ym("slds-popover").add("slds-popover_tooltip").add("fix-popover_tooltip_alignment");e.add({"slds-rise-from-ground":this.visible,"slds-fall-into-ground":!this.visible,"slds-hide":this.state.hidden});const{horizontal:n,vertical:r}=this.align;return e.add({"slds-nubbin_top-left":n==="left"&&r==="top","slds-nubbin_top-right":n==="right"&&r==="top","slds-nubbin_bottom-left":n==="left"&&r==="bottom","slds-nubbin_bottom-right":n==="right"&&r==="bottom","slds-nubbin_bottom":n==="center"&&r==="bottom","slds-nubbin_top":n==="center"&&r==="top","slds-nubbin_left":n==="left"&&r==="center","slds-nubbin_right":n==="right"&&r==="center"}),e.toString()}handleMouseLeave(){this.disableVisibilityChangeOnLeave||(this.visible=!1)}}p.registerDecorators(ls,{publicProps:{disableVisibilityChangeOnLeave:{config:0},contentId:{config:3},content:{config:3},align:{config:3},visible:{config:3}},track:{state:1}});var Fp=p.registerComponent(ls,{tmpl:kp,sel:"lightning-primitiveBubble"});const Up=` |
| | | position: absolute; |
| | | width: 1px; |
| | | height: 1px; |
| | | padding: 0; |
| | | margin: -1px; |
| | | overflow: hidden; |
| | | clip: rect(0,0,0,0); |
| | | border: 0; |
| | | `;let Sr=!1;const Nr=[];function Kp(){const t=[...Nr].sort((e,n)=>e.priority-n.priority);Nr.length=0,Sr=!1,t.forEach(({callback:e})=>e())}function cs(t,e){Nr.push({callback:e,priority:t}),!Sr&&(Sr=!0,Promise.resolve().then(Kp))}function us(t){if(t.shadowRoot)return t.shadowRoot.childNodes;if(typeof t.assignedNodes=="function"){const e=t.assignedNodes();return e.length?e:t.childNodes}return t.childNodes}function zp(t){if(typeof t.assignedNodes!="function"&&t.assignedSlot&&t.assignedSlot.parentElement)return t.assignedSlot.parentElement;if(t.parentElement)return t.parentElement;const e=t.getRootNode();return e!==document?e.host:null}function hs(t,e){let n=t;for(;n!=null;)if(n=zp(n),n===e)return!0;return!1}class Gp{constructor(e){this._observers=[],this._callbacks=[];const n=[],r=a=>n.some(o=>o.contains(a)),i=a=>{if(!r(a)){n.push(a);const o=new MutationObserver(()=>this._mutationCallback());o.observe(a,{subtree:!0,attributes:!0,childList:!0,characterData:!0}),this._observers.push(o)}us(a).forEach(o=>i(o))};i(e)}onMutation(e){this._callbacks.push(e)}_mutationCallback(){cs(0,()=>this._callbacks.forEach(e=>e()))}disconnect(){this._observers.forEach(e=>e.disconnect()),this._observers=void 0,this._callbacks=void 0}}function Vp(t){const e=new Map;return t.forEach(n=>{const{fromNode:r}=n,i=r.getRootNode();let a=e.get(i);a||(a={relationships:[],redundantChildNodes:new Set},e.set(i,a)),a.relationships.push(n)}),e.forEach(n=>{const{relationships:r,redundantChildNodes:i}=n,a=r.map(o=>o.toNodes).flat();for(let o=0;o<a.length;o++)for(let s=o+1;s<a.length;s++){const l=a[o],d=a[s];l&&d&&o!==s&&(hs(l,d)?i.add(l):hs(d,l)&&i.add(d))}}),e}function ms(t){const e={},{attributes:n}=t;for(let r=0;r<n.length;r++){const i=n[r];e[i.name]=i.value}return e}const fs=new WeakMap;function Bp(){return"shadow-aria-"+Math.floor(Math.random()*1e9).toString(16)}function Wp(t){let e=fs.get(t);return e||(e=Bp(),fs.set(t,e)),e}const Hp=new Set(["a","audio","button","details","input","select","summary","textarea","video"]);function Jp(t,e){t&&e&&qp(t,e)}function qp(t,e){t.addEventListener("focus",n=>{n.preventDefault(),n.stopImmediatePropagation(),e.dispatchEvent(new n.constructor(n.type,n)),e.focus()})}const Qp=["display","visibility"];function Xp(t,e){if(t.nodeType===Node.TEXT_NODE)return e&&e.nodeType===Node.TEXT_NODE?(e.textContent!==t.textContent&&(e.textContent=t.textContent),e):t.cloneNode();if(t.nodeType!==Node.ELEMENT_NODE)return document.createComment("shadow-aria-deleted");let{tagName:n}=t;if(["style","link","script"].includes(n.toLowerCase()))return document.createComment("shadow-aria-deleted");(n.includes("-")||n.toLowerCase()==="slot")&&(n="div");let r,i;e&&e.nodeType===Node.ELEMENT_NODE&&e.tagName.toLowerCase()===n.toLowerCase()?(i=e,r=ms(i)):i=document.createElement(n);const a=Object.fromEntries([...Object.entries(ms(t))].filter(([l])=>l.toLowerCase().startsWith("aria-")||l.toLowerCase()==="role")),o=getComputedStyle(t);let s="";return Qp.forEach(l=>s+=`${l}:${o[l]};`),o?.display!=="contents"&&(a.id=Wp(t)),a.style=s,Hp.has(n.toLowerCase())&&(a.tabindex="-1"),Object.entries(a).forEach(([l,d])=>{(!r||r[l]!==d)&&i.setAttribute(l,d)}),r&&Object.keys(r).forEach(l=>{l in a||i.removeAttribute(l)}),Jp(i,t),i}function Yp(t,e,n){const r=new Map,i=(o,s)=>{const l=Xp(o,s);if(l.nodeType===Node.COMMENT_NODE)return l;n.has(o)&&r.set(o,l);const d=us(o);if(s&&s.childNodes.length===d.length)for(let h=0;h<d.length;h++){const m=s.childNodes[h],g=d[h],b=i(g,m);b!==m&&s.replaceChild(b,m)}else{if(s)for(;s.childNodes.length;)s.childNodes[s.childNodes.length-1].remove();d.forEach(h=>{const m=i(h,null);l.appendChild(m)})}return l};return{mirroredNode:i(t,e),trackedNodesToMirroredNodes:r}}function ps(t,e,n){const r=e.map(s=>s.getAttribute("id")),i=Zp(t.getAttribute(n)),a=r.filter(s=>!i.includes(s)),o=i.filter(s=>!r.includes(s));return t.setAttribute(n,r.join(" ")),{linkedNodeIds:a,unlinkedNodeIds:o}}function Zp(t){return t?t.trim().split(/\s+/):[]}const e1=["aria-activedescendant","aria-errormessage"],gs=new WeakMap,Ar=[];function t1(t,e){const n=n1(t);r1(n,e),i1(n,e)}function n1(t){let e=gs.get(t);if(!e){const n=document.createElement("div");n.setAttribute("class","aria-element-reflection-mirror"),n.setAttribute("style",Up),(t.body||t).appendChild(n),e={redundantChildNodes:new Set,nodesToMirroredNodes:new Map,mirrorRoot:n},gs.set(t,e)}return e}function r1(t,e){const{redundantChildNodes:n,nodesToMirroredNodes:r,mirrorRoot:i}=t;e.redundantChildNodes.forEach(o=>n.add(o)),new Set(e.relationships.map(({toNodes:o})=>o).flat().filter(Boolean).filter(o=>!n.has(o))).forEach(o=>{const s=new Set([...n,o]),{node:l=null,usage:d=0}=r.get(o)||{},{mirroredNode:h,trackedNodesToMirroredNodes:m}=Yp(o,l,s);h!==l&&(l&&i.removeChild(l),i.appendChild(h)),m.forEach((g,b)=>r.set(b,{node:g,usage:d}))})}function i1(t,e){const{nodesToMirroredNodes:n}=t;e.relationships.forEach(r=>{const{fromNode:i,toNodes:a,relationship:o,track:s,signal:l,mirrorOnly:d}=r;if(a?.length){if(!d){const h=a.map(b=>n.get(b).node),{linkedNodeIds:m,unlinkedNodeIds:g}=ps(i,h,o);bs(t,g,m),s&&a1(i,a,l)}}else{const{unlinkedNodeIds:h}=ps(i,[],o);bs(t,h),i.removeAttribute(o)}})}function bs(t,e,n=[]){const{nodesToMirroredNodes:r,mirrorRoot:i}=t;r.forEach((a,o)=>{n.includes(a.node.id)?a.usage++:e.includes(a.node.id)&&--a.usage<=0&&(r.delete(o),a.node.parentElement===i&&i.removeChild(a.node))})}function a1(t,e,n){e.forEach(r=>{const i=new Gp(r);i.onMutation(()=>{s1(t,[r])}),n&&n.addEventListener("abort",()=>{i.disconnect()})})}function o1(){const t=Vp(Ar);Ar.length=0,t.forEach((e,n)=>t1(n,e))}function s1(t,e){vs({fromNode:t,toNodes:e,mirrorOnly:!0})}function vs(t){Ar.push(t),cs(1,o1)}function d1(t,e){return Array.isArray(t)||(t=[t]),t=t.filter(Boolean),t.length>1&&e1.includes(e)&&(console.warn(`Multiple targets passed to aria relationship "${e}". This API only accepts a single target. Ignoring elements beyond the first one.`),t=t.slice(0,1)),t}function yn(t,e,n,r={}){const{track:i,signal:a}=r;e=d1(e,n),vs({fromNode:t,toNodes:e,relationship:n,track:i,signal:a})}function l1(t,e,n){yn(t,e,"aria-activedescendant",n)}function c1(t,e,n){yn(t,e,"aria-controls",n)}function u1(t,e,n){yn(t,e,"aria-describedby",n)}function h1(t,e,n){yn(t,e,"aria-labelledby",n)}const ys=new Map([["aria-controls",{ariaReflection:"ariaControlsElements",polyfill:c1}],["aria-labelledby",{ariaReflection:"ariaLabelledByElements",polyfill:h1}],["aria-describedby",{ariaReflection:"ariaDescribedByElements",polyfill:u1}],["aria-activedescendant",{ariaReflection:"ariaActiveDescendantElement",polyfill:l1}]]);function m1(t,e){return typeof e!="string"||e===""?[]:Mr(e).map(n=>t.querySelector(`#${n}`)).filter(n=>!!n)}function Mr(t){return t?(t+"").trim().split(/\s+/):[]}class f1{constructor(e){this.component=e,this.template=e.template,this.isNativeShadow=$m(e),this.state={},this.liveIds={},this.guid=No(),this.placeholderContainer=null}connectLiveIdRef(e,n){const r=(e+"").trim().split(/\s+/).map(a=>`[id*="${a}"]`).join(","),i={refs:e,selector:r,callback:n};this.liveIds[e]=i}connect({attribute:e,targetSelector:n,targetNode:r,relatedNodeIds:i,relatedNodes:a}){this.state[e]=this.state[e]||{};const o=this.state[e];o.targetNode=r,o.targetSelector=n,o.relatedNodes=(Array.isArray(a)?a:[a]).filter(Boolean),o.relatedNodeIds=Array.isArray(i)?i.join(" "):i,this.component.isConnected&&this.privateUpdate(e)}sync(e){if(e!=null&&(this.isNativeShadow=e),!this.component.isConnected)throw new Error("Invalid sync invocation. It can only be invoked during renderedCallback().");this.root||(this.root=this.template&&this.template.host?this.template.host.getRootNode():null),this.privateUpdateLiveIds();for(const n in this.state)Object.prototype.hasOwnProperty.call(this.state,n)&&this.privateUpdate(n)}get privateIsMoRequired(){return this.isNativeShadow||Object.keys(this.liveIds).length!==0}get root(){return this._root}set root(e){this._root=e,this._root&&this.privateIsMoRequired&&this.privateCreateMutationObserver()}privateUpdate(e){const{targetSelector:n,targetNode:r=this.template.querySelector(n),relatedNodeIds:i,relatedNodes:a}=this.state[e];if(!r)return;const o=ys.get(e);if(!o)throw new Error(`${e} is not supported by AriaObserver. Supported attributes: ${Array.from(ys.keys())}`);if(this.isNativeShadow){const s=[...a,...m1(this.root,i)];r[o.ariaReflection]?(o.polyfill(r,null,e),r[o.ariaReflection]=a):o.polyfill(r,s,e)}else Im(r,{[e]:[...Mr(i),...a.map(s=>s.id)].join(" ")})}privateExtractCorrectElements(e="",n){const i=`(${e.split(/\s/g).join("|")})`,a=new RegExp(`^${i}(-[0-9]+)$`);return[...n].filter(o=>a.test(o.id))}privateCreateMutationObserver(){this.disconnect(),this.mo=new MutationObserver(()=>{!this.component.isConnected||this.sync()}),this.mo.observe(this.root,{characterData:!0,childList:!0,subtree:!0})}privateExtractIds(e){return e.map(n=>n.getAttribute("id")).join(" ")}privateUpdateLiveIds(){const e=this.template&&this.template.host?this.template.host.getRootNode():null;if(!!e){for(const n in this.liveIds)if(Object.prototype.hasOwnProperty.call(this.liveIds,n)){const r=this.liveIds[n];if(!r.elements||!r.elements.length){const o=Mr(n),s=[...e.querySelectorAll(r.selector)];r.elements=s.sort((l,d)=>{const h=l.getAttribute("id")?.replace(/-[0-9]+$/g,""),m=d.getAttribute("id")?.replace(/-[0-9]+$/g,"");return o.indexOf(h)-o.indexOf(m)})}const i=this.privateExtractCorrectElements(r.refs,r.elements),a=this.privateExtractIds(i);a.length&&a!==r.ids&&(r.callback(a),r.ids=a)}}}disconnect(){this.mo&&(this.mo.disconnect(),this.mo=void 0)}}var p1=p.registerComponent(f1,{tmpl:te,sel:"lightning-ariaObserver"});function ws(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function g1(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ws(Object(n),!0).forEach(function(r){b1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ws(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function b1(t,e,n){return e=v1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function v1(t){var e=y1(t,"string");return typeof e=="symbol"?e:String(e)}function y1(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const w1=`salesforce-lightning-tooltip-bubble_${No()}`;function Ts(){return window.ResizeObserver!=null}let Se,Ne;function Ps(){return Se||(Se=p.createElement("lightning-primitive-bubble",{is:Fp}),Se.contentId=w1,Se.style.position="absolute",Se.style.minWidth="75px",Se.disableVisibilityChangeOnLeave=!0),Se}const T1="aria-describedby",P1=16,E1=24,wn={Info:"info",Toggle:"toggle"};class _1{constructor(e,n){if(this._autoPosition=null,this._disabled=!0,this._initialized=!1,this._visible=!1,this._isFocusEvent=!1,this._initialResize=!0,this._ariaObserver=null,this._config={},_e(n.target,"target for tooltip is undefined or missing"),this.value=e,this._root=n.root,this._target=n.target,this._config=g1({},n),this._config.align=n.align||{},this._config.targetAlign=n.targetAlign||{},this._type=Ao(n.type,{fallbackValue:wn.Info,validValues:Object.values(wn)}),this._element=n.element,ze&&!this._element){this._element=Ps;const r=Ps();r.parentNode===null&&document.body.appendChild(r)}this.handleDocumentTouch=this.handleDocumentTouch.bind(this),this.handleEscape=this.handleEscape.bind(this),this.hide=this.hide.bind(this)}detach(){this._disabled=!0}attach(){this._disabled=!1}initialize(){const e=this._target();if(!this._initialized&&e){switch(this._type){case wn.Toggle:this.addToggleListeners();break;case wn.Info:default:this.addInfoListeners();break}this._ariaObserver=new p1(this._root),this._ariaObserver.connect({attribute:T1,targetNode:this._target(),relatedNodes:this._element()}),this._initialized=!0}}disconnect(){this._ariaObserver.disconnect()}addInfoListeners(){const e=this._target();!this._initialized&&e&&(["mouseenter","focus"].forEach(n=>e.addEventListener(n,()=>this.show())),["mouseleave","blur","click","keydown"].forEach(n=>e.addEventListener(n,r=>{!this._visible||(this.hideIfNotSelfCover(r),r.key==="Escape"&&r.stopPropagation())})))}hideIfNotSelfCover(e){if(!!this._visible){if(e.type==="mouseleave"&&e.clientX&&e.clientY)try{if((document.elementFromPoint?document.elementFromPoint(e.clientX,e.clientY):null)===this._element()){Ts()||this.startPositioning();return}}catch(n){}this.hide()}}handleDocumentTouch(){this._visible&&this.hide()}addToggleListeners(){const e=this._target();!this._initialized&&e&&(e.addEventListener("touchstart",n=>{n.stopPropagation(),this.toggle()}),["mouseenter","focus"].forEach(n=>e.addEventListener(n,r=>this.show(r))),["mouseleave","blur"].forEach(n=>e.addEventListener(n,r=>this.hideIfNotSelfCover(r))),e.addEventListener("keydown",n=>{n.keyCode===13&&!this._visible?this.toggle():this._visible&&(this.hide(),n.key==="Escape"&&n.stopPropagation())}))}handleEscape(e){e.key==="Escape"&&this._isFocusEvent&&(e.stopPropagation(),this.hideIfNotSelfCover(e))}get resizeObserver(){return this._resizeObserver||(this._resizeObserver=this._buildResizeObserver(()=>{if(this._visible&&this._autoPosition){const e=this._element();if(Ne!==this){this.hide(!1);return}this.startPositioning().then(()=>{this._initialResize&&(e.addEventListener("mouseleave",this.hide),this._initialResize=!1)})}})),this._resizeObserver}show(e){if(this._disabled||this._visible)return;Ne&&Ne!==this&&Ne._visible&&Ne.hide(!1),Ne=this,this._isFocusEvent=e&&e.type==="focus",this._visible=!0,this._initialResize=!0;const n=this._element();n.visible=this._visible,n.content=this._value,this._ariaObserver.sync(),this.startPositioning(),document.addEventListener("keydown",this.handleEscape),document.addEventListener("touchstart",this.handleDocumentTouch),this.resizeObserver.observe(n)}hide(e=!0){this._visible=!1;const n=this._element();e&&(n.visible=this._visible),this.stopPositioning(),document.removeEventListener("touchstart",this.handleDocumentTouch),document.removeEventListener("keydown",this.handleEscape),n.removeEventListener("mouseleave",this.hide),this.resizeObserver.unobserve(n),Ne=null}toggle(){this._visible?this.hide():this.show()}get value(){return this._value}set value(e){this._value=e,this._disabled=!e}get initialized(){return this._initialized}get visible(){return this._visible}startPositioning(){this._autoPosition||(this._autoPosition=new os(this._root));const e={horizontal:this._config.align.horizontal||w.Left,vertical:this._config.align.vertical||w.Bottom},n={horizontal:this._config.targetAlign.horizontal||w.Left,vertical:this._config.targetAlign.vertical||w.Top},i=this._target().getBoundingClientRect().width*.5-E1;return this._autoPosition.start({target:this._target,element:this._element,align:e,targetAlign:n,autoFlip:!0,padTop:P1,padLeft:i}).then(a=>{if(a){const o=this._element();o.align=a.config.align,o.visible=this._visible}})}stopPositioning(){this._autoPosition&&this._autoPosition.stop()}_buildResizeObserver(e){return Ts()?new ResizeObserver(e):{observe(){},unobserve(){}}}}p.registerDecorators(_1,{fields:["_autoPosition","_disabled","_initialized","_visible","_isFocusEvent","_initialResize","_ariaObserver","_config"]});function O1(t){const e=[];return St(t,n=>{try{M1({element:n,rootContainer:t})&&e.push(n)}catch(r){console.warn(r)}}),e}function St(t,e){if(!t)return;if(t.nodeType===Node.ELEMENT_NODE){if(t.hasAttribute("inert"))return;if(C1(t)){S1(t)?St(t.contentDocument,e):e&&e(t);return}if(e&&e(t),t.shadowRoot){St(t.shadowRoot,e);return}if(t.localName==="slot"){const r=t.assignedNodes({flatten:!0});for(let i=0;i<r.length;i++)St(r[i],e);return}}let n=t.firstChild;for(;n!==null;)St(n,e),n=n.nextSibling}function C1(t){return t.tagName==="IFRAME"||t instanceof HTMLIFrameElement}function S1(t){return!!t.contentDocument}const N1=["button","select","textarea","input"],A1=["a","select","textarea","input","button","iframe","object","area","frame"];function M1({element:t,rootContainer:e}){const n=t.localName;if(n==="input"&&n.type==="hidden")return!1;const r=t.getAttribute("tabindex");return r==="-1"||t.disabled&&N1.includes(t.localName)?!1:(r==="0"||t.tabIndex===0&&A1.includes(t.localName))&&R1(t)&&I1({element:t,rootContainer:e})}function R1(t){const{width:e,height:n}=t.getBoundingClientRect();return(e>0||n>0)&&getComputedStyle(t).visibility!=="hidden"}function I1({element:t,rootContainer:e}){const n=e.getRootNode(),r=t.ownerDocument;let i=t.getRootNode();for(;i!==n&&i!==r;){const a=i.host;if(a.getAttribute("tabindex")==="-1")return!1;i=a&&a.getRootNode()}return!0}function Es(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function _s(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Es(Object(n),!0).forEach(function(r){D1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Es(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function D1(t,e,n){return e=k1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function k1(t){var e=$1(t,"string");return typeof e=="symbol"?e:String(e)}function $1(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const L1=300,Os={navKey:"F6",f6RegionAttribute:"data-f6-region",f6RegionHighlightClass:"f6-highlight"},Rr=t=>t&&(t.shadowRoot?t.shadowRoot.activeElement?Rr(t.shadowRoot.activeElement):t:t.activeElement?Rr(t.activeElement):t);class Cs{constructor(e={}){this.regions=[],this.config=Os,this._debounceKeyDownHandler=void 0,this._styleElement=void 0,this.handleClick=()=>{this.clearRegionHighlights()},this.handleKeyDown=n=>{this.clearRegionHighlights();const{key:r,ctrlKey:i,metaKey:a}=n;r===this.config.navKey&&(i||a)&&(this.populateRegions(),this.handleNavigation(n))},this.elementFilter=n=>n.parentElement&&n.parentElement.matches(`*[${this.config.f6RegionAttribute}]`)?NodeFilter.FILTER_REJECT:n.matches(`*[${this.config.f6RegionAttribute}]`)&&this.isVisible(n)&&!this.isEmpty(n)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP,this._debounceKeyDownHandler=Lm(this.handleKeyDown.bind(this),L1),this.initialize(e)}appendStyleElement(){this._styleElement=document.createElement("style");const e=`[${this.config.f6RegionAttribute}].${this.config.f6RegionHighlightClass}`;this._styleElement.innerText=`${e} { position: relative; } ${e}::after { width: 100%; height: 100%; content: ''; outline: rgb(94, 158, 214) 3px solid; outline-offset: -3px; position: absolute; top: 0; left: 0; z-index: 9999; }`,this._styleElement.setAttribute("type","text/css"),document.head.appendChild(this._styleElement)}clearRegionHighlights(){!this.regions||!this.regions.length||this.regions.forEach(e=>{e.classList.remove(this.config.f6RegionHighlightClass)})}addRegionHighlight(e){e.classList.add(this.config.f6RegionHighlightClass)}findFocusableElement(e){if(!e||!e.isConnected)return;const n=O1(e);return n&&n.length?n[0]:(e.tabIndex="-1",e)}focusIn(e){const n=this.findFocusableElement(e);n&&n.focus()}handleNavigation(e){if(e.preventDefault(),!this.regions.length)return;const n=e.shiftKey,r=this.getElementRegionIndex(Rr(e.target)),i=this.getAdjacentRegionIndex(r,n);if(i===-1)return;const a=this.regions[i];this.focusIn(a),this.addRegionHighlight(a)}shadowContains(e,n){return e===n||e.contains(n)||e.shadowRoot&&this.isElementInContainerElements(e.shadowRoot.children,n)||e.tagName==="SLOT"&&this.isElementInContainerElements(e.assignedElements(),n)?!0:this.isElementInContainerElements(e.children,n)}isElementInContainerElements(e,n){if(!e||!e.length)return!1;const r=e.length;for(let i=0;i<r;i++)if(this.shadowContains(e[i],n))return!0;return!1}getElementRegionIndex(e){return!this.regions||!this.regions.length?-1:this.regions.findIndex(n=>this.shadowContains(n,e))}getAdjacentRegionIndex(e,n){const r=this.regions.length-1;return r<0?-1:n?e<=0?r:e-1:e===r?0:e+1}isVisible(e){if(e===document.body||!(e instanceof Element))return!0;try{const n=window.getComputedStyle(e)||e.style;if(!n)return!1;const{display:r,visibility:i}=n;return r&&r.toLowerCase()==="none"||i&&i.toLowerCase()==="hidden"?!1:this.isVisible(e.parentNode)}catch(n){return!1}}isEmpty(e){if(e.tagName==="SLOT"&&!this.isEmptyChildren(e.assignedElements()))return!1;let n=e.children;return(!n||!n.length)&&e.shadowRoot&&(n=e.shadowRoot.children),this.isEmptyChildren(n)}isEmptyChildren(e){if(!e||!e.length)return!0;const n=e.length;for(let r=0;r<n;r++){const i=e[r];if(i.tagName!=="SLOT"||!this.isEmpty(i))return!1}return!0}populateRegions(){this.regions=[];const e=document.createTreeWalker(document.body,NodeFilter.SHOW_ELEMENT,this.elementFilter,!1);for(;e.nextNode();)this.regions.push(e.currentNode)}initialize(e={}){document.addEventListener("keydown",this._debounceKeyDownHandler),document.addEventListener("click",this.handleClick),this.regions=[],this.config=_s(_s({},this.config),e),this.appendStyleElement()}cleanUp(){document.removeEventListener("keydown",this._debounceKeyDownHandler),document.removeEventListener("click",this.handleClick),this._regions=[],this._config=Os,this._debounceKeyDownHandler=null,this._styleElement&&(document.head.removeChild(this._styleElement),this._styleElement=null)}getConfig(){return Object.freeze(this.config)}}p.registerDecorators(Cs,{fields:["regions","config","_debounceKeyDownHandler","_styleElement","handleClick","handleKeyDown","elementFilter"]});let Ir;const x1=t=>(Ir||(Ir=new Cs(t)),Ir),j1={guestUuidCookieMaxAge:365*24*60*60},{document:Dr}=globalThis;if(Dr&&Dn.default){let t=Hi(Dn.default);Fl(t)||(t=jl()),Dr.cookie=`${Dn.default}=${t};Max-Age=${j1.guestUuidCookieMaxAge};SameSite=LAX;Path=/`;const e={name:"set-guest-uuid",guestUuid:t};Dr.dispatchEvent(new CustomEvent("experience_interaction",{bubbles:!0,composed:!0,detail:e}))}function Ss(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Tn(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ss(Object(n),!0).forEach(function(r){F1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ss(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function F1(t,e,n){return e=U1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function U1(t){var e=K1(t,"string");return typeof e=="symbol"?e:String(e)}function K1(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}class kr extends p.LightningElement{constructor(...e){super(...e);this.generatedTemplateHtml=un,this.attributes={},this.routeParams={},this.previousRouteId=null,this.route={},this.isInitialized=void 0,this._f6Controller=void 0}render(){return this.generatedTemplateHtml}renderedCallback(){if(this.generatedTemplateHtml!==un){const e=Tn(Tn({},this.route),{},{state:void 0});pl({route:e,previousRouteId:this.previousRouteId})}this.isInitialized||(this.isInitialized=!0,window.performance.measure(`${De}-app-bootstrap`))}updateTemplate(e){this.generatedTemplateHtml=e.html}updateRoute(e,n){ar(n);const{state:r,attributes:i}=n;this.previousRouteId=this.route?.id||null,this.routeParams=Tn(Tn({},r),i),this.attributes=e.attributes(this,this.routeParams),this.route=n}restoreDefaultTemplate(){this.generatedTemplateHtml=un}async connectedCallback(){await Sm(),await Cm(),this.subscription=on(this.loadThemeLayout.bind(this)),this._f6Controller=x1()}async loadThemeLayout(e){let n=!1;const r=e.routeDefinition.view,i=Rn.default[r];setTimeout(async()=>{!n&&this.themeLayout!==i&&this.restoreDefaultTemplate()},10);let a;try{a=await wm(bi(i))}catch(o){await this.handleFetchViewFailed(o,e.routeDefinition.metadata?.isPublic)}if(!!a)try{n=!0,window?.scrollTo(0,0),this.themeLayout!==i&&(this.themeLayout=i,this.updateTemplate(a.default)),this.updateRoute(a.default,e.route)}catch(o){vt({subject:"InnerApp.loadThemeLayout error",type:at.FAILED_TO_LOAD_RESOURCE,error:o})}}async handleFetchViewFailed(e,n){await Fa.run({error:e,isPublic:n})&&vt({subject:"InnerApp.loadThemeLayout#getViewModule error",type:at.FAILED_TO_LOAD_RESOURCE,error:e})}disconnectedCallback(){this.subscription&&this.subscription.unsubscribe(),this._f6Controller&&(this._f6Controller.cleanUp(),this._f6Controller=null)}}kr.renderMode="light",p.registerDecorators(kr,{publicMethods:["updateTemplate","updateRoute","restoreDefaultTemplate"],fields:["generatedTemplateHtml","attributes","routeParams","previousRouteId","route","isInitialized","_f6Controller"]});var z1=p.registerComponent(kr,{tmpl:un,sel:"webruntime-innerApp"});function G1(t,e,n){var r=t?"["+t+"]":"";return"span.router-title"+r+" {position: absolute;margin: -1px;border: 0;padding: 0;width: 1px;height: 1px;overflow: hidden;clip: rect(0 0 0 0);text-transform: none;white-space: nowrap;}"}var Ns=[G1];const V1=p.parseFragment`<span class="router-title${0}" aria-live="polite" aria-atomic="true"${2}></span>`,B1={key:0},W1=[];function pe(t,e,n,r){const{s:i,st:a,f:o}=t;return o([i("",B1,W1,n),a(V1(),2)])}var H1=p.registerTemplate(pe);pe.slots=[""],pe.stylesheets=[],pe.renderMode="light",Ns&&pe.stylesheets.push.apply(pe.stylesheets,Ns),pe.stylesheetToken="lwr-routerContainer_routerContainer",p.freezeTemplate(pe);const J1=re?p.createContextProvider(qt):void 0,q1=re?p.createContextProvider(ft):void 0,Q1=re?p.createContextProvider(Yn):void 0;function $r(t,e,n,r){n&&r&&(r.setContext(e,t),n(e,{consumerConnectedCallback:r.subscribeContext.bind(r,e),consumerDisconnectedCallback:r.unsubscribeContext.bind(r,e)}))}const Lr="lwr.router.",As=`${Lr}navigate`,Ms=`${Lr}view`,X1=`${Lr}error`;var Rs;(function(t){t[t.Start=0]="Start",t[t.End=1]="End"})(Rs||(Rs={}));const oe=globalThis.performance,Is=typeof oe!="undefined"&&typeof oe.mark=="function"&&typeof oe.clearMarks=="function"&&typeof oe.measure=="function"&&typeof oe.clearMeasures=="function";function xr({id:t,specifier:e}){Is&&oe.mark(t+(e?`.${e}`:""))}function Ds({id:t,specifier:e}){if(Is){const n=e?`.${e}`:"",r=t+n,i=`${t}.duration${n}`;oe.measure(i,r),oe.clearMarks(r),oe.clearMeasures(i)}}function ks(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Ae(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ks(Object(n),!0).forEach(function(r){Y1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ks(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Y1(t,e,n){return e=Z1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Z1(t){var e=eg(t,"string");return typeof e=="symbol"?e:String(e)}function eg(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const jr=`universalcontainernavigationevent${tr()}`,Fr=`universalcontainerparentevent${tr()}`;class Ur{constructor(e,n,r){this.pendingRoute=null,this.committedRoute=null,this.contextId=Object.freeze(()=>{}),this.connected=!1,this.preNavFilters=fa(),this.errorNavFilters=fa(),this._handleNavigationEvent=i=>{const a=i;if(a.detail&&typeof a.detail=="object"){const{url:o,replace:s,address:l}=a.detail;this.config.handleNavigation(l,s)?this.root&&!o?this.root.processError(ce(M.MISSING_URL,[JSON.stringify(l)])):this.parent||this.process(o,s):a.stopPropagation()}},this._handleParentEvent=i=>{i.stopImmediatePropagation();const a=i;a&&a.detail&&typeof a.detail=="function"&&a.detail(this)},this.config={handleNavigation:e.handleNavigation||(()=>!0)},this.target=r||window,this.router=n,this.router.contextId=this.contextId,this.routeObservable=Da()}get root(){if(!this.parent)return this;let e=this.parent;for(;e;){if(!e.parent)return e;e=e.parent}throw new Error("No root router could be found")}updateWires(e,n,r){if(r)this.processError(r);else{if(this.committedRoute&&e.route===this.committedRoute.route)return;Ds({id:Ms,specifier:this.eventId}),this.pendingRoute=this.pendingRoute||Ae(Ae({},e),{},{url:n}),this.committedRoute=Ae(Ae({},this.pendingRoute),e),qt.setContext(this.target,e.route.pageReference),this.routeObservable.next(Ae(Ae({},this.committedRoute),{},{viewset:e.viewset})),Ds({id:As,specifier:this.eventId}),this.child&&this.child.process(this._stripUrlForChild(this.committedRoute.url))}}connect(){this._sendEvent(Fr,n=>{this.parent=n,n.addChild(this)});const e={navigate:(n,r)=>this.navigate(n,r),generateUrl:n=>this.generateUrl(n),subscribe:(n,r)=>this.subscribe(n,r)};ha(this.contextId,e),$r(this.contextId,this.target,Q1,Yn),$r(void 0,this.target,J1,qt),$r(void 0,this.target,q1,ft),this.router.subscribe(n=>{if(n.status===404){this.processError(ce(M.DESTINATION_NOT_FOUND));return}if(n.status&&n.status>=400){const a=n.error||new Error;this.processError(ce(M.DESTINATION_ERROR,[n.status.toString(),a.message,a.stack||""]));return}const r=n.route.pageReference||{},i=this.router.generateUrl(r)||"";if(xr({id:Ms,specifier:this.eventId}),n.viewset){const a={viewset:n.viewset,onComplete:this.updateWires.bind(this,n,i)};ft.setContext(this.target,a)}else n.route.pageReference&&this.updateWires(n,i)},!0),re&&(this.target.addEventListener(jr,this._handleNavigationEvent),this.target.addEventListener(Fr,this._handleParentEvent),this.target.addEventListener(Na,n=>{const r=n;r.detail.callback&&r.detail.callback(this.contextId)})),this.connected=!0}disconnect(){this.target.removeEventListener(jr,this._handleNavigationEvent),this.target.removeEventListener(Fr,this._handleParentEvent),this.parent&&(this.parent.child=void 0),this.parent=void 0,this.child&&(this.child.parent=void 0),this.child=void 0,this.connected=!1}addPreNavigate(e){this.preNavFilters.add(e)}addErrorNavigate(e){this.errorNavFilters.add(e)}async addChild(e){if(await new Promise(n=>{setTimeout(()=>{ue(!this.child,M.MULTIPLE_CHILDREN),this.child=e,n()},0)}),this.child&&this.committedRoute){const n=this._stripUrlForChild(this.committedRoute.url);await this.child.preProcess(n)&&this.child.process(n)}}async process(e,n){this.eventId=new Date().getTime().toString(),xr({id:As,specifier:this.eventId});try{this.parent||await this.preProcess(e)}catch(i){if(i.code)return this.processError(i),!1;throw i}const r=this.router.parseUrl(e);return r&&this.router.navigate(r),!0}preProcess(e){const n=this.router.parseUrl(e),r=n&&this.router.matchRoute(n);return r?(this.pendingRoute=Ae({url:e},r),(this.preNavFilters.empty()?Promise.resolve(!0):this.preNavFilters.compile({current:this.committedRoute||void 0,next:this.pendingRoute})).then(a=>a&&this.child?this.child.preProcess(this._stripUrlForChild(e)):a).then(a=>a||Promise.reject(ce(M.PRENAV_FAILED,[e])))):Promise.reject(ce(M.MISSING_ROUTE,[e]))}processError(e){xr({id:X1}),this.errorNavFilters.compile(e),this.child&&this.child.processError(e)}navigate(e,n){let r=this.router.generateUrl(e);r&&(r=(this.parent&&this.parent.committedRoute&&this.parent.committedRoute.pathMatch||"").concat(r)),this._sendEvent(jr,{url:r,replace:n,address:e})}generateUrl(e){const n=this.router.generateUrl(e);return n?`${this.parent&&this.parent.committedRoute&&this.parent.committedRoute.pathMatch||""}${n}`:null}subscribe(e,n){return this.routeObservable.subscribe({next:e,error:()=>{},complete:()=>{}},Boolean(n))}_sendEvent(e,n){re&&this.target.dispatchEvent(new CustomEvent(e,{bubbles:!0,composed:!0,detail:n}))}_stripUrlForChild(e){return this.pendingRoute&&e.indexOf(this.pendingRoute.pathMatch)===0?e.replace(this.pendingRoute.pathMatch,""):e}}p.registerDecorators(Ur,{fields:["pendingRoute","committedRoute","contextId","connected","preNavFilters","errorNavFilters","_handleNavigationEvent","_handleParentEvent"]});function tg(t=""){if(t=t||"",t.indexOf("://")<0){const i=window.location.port?`:${window.location.port}`:"",a=`${window.location.protocol}//${window.location.hostname}${i}`,o=t.charAt(0)==="/"?"":"/";t=a+o+t}const e={},n=document.createElement("a");n.href=t;const r=n.search.substring(1);return r&&r.split("&").forEach(i=>{const[a,o=""]=i.split("=");e[Te(a)]=Te(o)}),{href:n.href,origin:`${n.protocol}//${n.hostname}${n.port?`:${n.port}`:""}`,pathname:n.pathname.replace(/(\/)?/,"/"),searchParams:e}}function ng(t){const e=tg(t),n=e.href.replace(/:\d+/,""),r=e.origin.replace(/:\d+/,"");return n.replace(r,"")}function rg(t,e){const n=e||{};window.history.pushState(n,"",t)}function ig(t,e){const n=e||{};window.history.replaceState(n,"",t)}class $s extends Ur{constructor(...e){super(...e);this.historyDisabled=!1}connect(){super.connect(),this.historyDisabled||(re&&window.addEventListener("popstate",this.onpopstate.bind(this)),this.onpopstate())}onpopstate(){!this.parent&&re&&this.catchBrowserUpdate(ng(document.location.href))}disconnect(){super.disconnect(),re&&window.removeEventListener("popstate",this.onpopstate)}async process(e,n,r=!0){const i=await super.process(e);return i&&!this.historyDisabled&&r&&this.connected&&!this.parent&&(n?ig(e):rg(e)),i}catchBrowserUpdate(e){this.process(e,!1,!1)}}p.registerDecorators($s,{fields:["historyDisabled"]});let Nt=!1;function ag(t,e={},n){const r=e.historyDisabled?new Ur(e,n,t):new $s(e,n,t),i={addPreNavigate:a=>(r.addPreNavigate(a),i),addPostNavigate:a=>(r.subscribe(a),i),addErrorNavigate:a=>(r.addErrorNavigate(a),i),connect:()=>{r.connect(),ue(!Nt||!!r.parent,M.MULTIPLE_ROOTS),Nt=Nt||!r.parent,i.id=r.contextId},disconnect:()=>{Nt=Nt&&!!r.parent,r.disconnect()}};return i}let Kr=class extends p.LightningElement{constructor(){super();this.router=void 0,this.historyDisabled=!1,this.currentTitle=re?document.title:""}connectedCallback(){const e={historyDisabled:this.historyDisabled,handleNavigation:this.handleNavigation.bind(this)};this.router&&(this.routerApi=ag(this,e,this.router),this.routerApi.addPreNavigate(this.preNavigate.bind(this)).addPostNavigate(this.postNavigate.bind(this)).addErrorNavigate(this.errorNavigate.bind(this)).connect())}preNavigate(e){const n=this._createEvent("prenavigate",e,!0);return this.dispatchEvent(n),!n.defaultPrevented}postNavigate(e){this.dispatchEvent(this._createEvent("postnavigate",e));const n=e.routeDefinition.metadata&&e.routeDefinition.metadata.title;n&&(this.currentTitle=n,document.title=n);const r=this.querySelector("span.router-title");r&&(r.innerHTML=this.currentTitle)}errorNavigate(e){return this.dispatchEvent(this._createEvent("errornavigate",e)),!0}handleNavigation(e,n){const r=this._createEvent("handlenavigation",{address:e,replace:n},!0);return this.dispatchEvent(r),!r.defaultPrevented}disconnectedCallback(){this.routerApi&&this.routerApi.disconnect()}_createEvent(e,n,r){return new CustomEvent(e,{detail:n,bubbles:!1,composed:!1,cancelable:r})}};Kr.renderMode="light",p.registerDecorators(Kr,{publicProps:{router:{config:0},historyDisabled:{config:0}}});var og=p.registerComponent(Kr,{tmpl:H1,sel:"lwr-routerContainer"});function At(t,e,n,r){const{c:i,b:a}=t,{_m0:o}=r;return[i("lwr-router-container",og,{props:{router:e.router},key:0},[i("experience-data-layer-object",vm,{props:{scriptDataAttributes:e.pageDataForDataLayer.scriptDataAttributes,customObject:e.pageDataForDataLayer.customObject},key:1}),i("webruntime-inner-app",z1,{key:2,on:{viewchange:o||(r._m0=a(e.handleViewChanged))}})])]}var Ls=p.registerTemplate(At);At.stylesheets=[],At.renderMode="light",At.stylesheetToken="webruntime-app_app",p.freezeTemplate(At);function xs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Pn(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?xs(Object(n),!0).forEach(function(r){sg(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):xs(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function sg(t,e,n){return e=dg(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function dg(t){var e=lg(t,"string");return typeof e=="symbol"?e:String(e)}function lg(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}p.setHooks({sanitizeHtmlContent(t){return t}});class zr extends p.LightningElement{constructor(...e){super(...e);this.themeLayout=void 0,this.isInitialized=void 0,this.router=ie,this.routerContainer=void 0,this.pageDataForDataLayer={scriptDataAttributes:{providerType:"page"}}}renderedCallback(){this.isInitialized||(this.routerContainer=this.querySelector("lwr-router-container"),ro(this.routerContainer),window?.addEventListener("click",this.handleClick),this.isInitialized=!0)}errorCallback(e,n){vt({subject:"app level error",error:e,wcstack:n})}disconnectedCallback(){document.body.removeEventListener("click",this.handleClick),this.isInitialized=!1}render(){return Ls}handleClick(e){const n=e.composedPath().find(m=>m.tagName==="A");if(!n||e.defaultPrevented||Oo())return;let r=n.getAttribute("href");if(!r||r.includes("#"))return;const i=new URL(r,window.location.href),a=i?.protocol==="http:"||i?.protocol==="https:",o=Wn(r);o||r.startsWith("/")||(r=window.location.pathname+r);const s=o||Boolean(ie.matchRoute(r)),l=n.getAttribute("target"),d=!l&&!o||l==="_self"||l===window.name||l==="_top"&&window.top===window||l==="_parent"&&window.parent===window;a&&s&&d^o&&(e.preventDefault(),an({type:"standard__webPage",attributes:{url:r}}))}handleViewChanged(e){const n=e.detail?.route?.attributes?.recordId;let r={type:e.detail?.route?.pageReference?.type,url:window.location.href,urlReferrer:document.referrer};n&&(r=Pn(Pn({},r),{},{recordId:n})),this.pageDataForDataLayer=Pn(Pn({},this.pageDataForDataLayer),{},{customObject:r})}}zr.renderMode="light",p.registerDecorators(zr,{fields:["themeLayout","isInitialized","router","routerContainer","pageDataForDataLayer"]});var cg=p.registerComponent(zr,{tmpl:Ls,sel:"webruntime-app"}),ug={};const hg=[];function Mt(t,e,n,r){return hg}var js=p.registerTemplate(Mt);Mt.stylesheets=[],Mt.renderMode="light",Mt.stylesheetToken="webruntime-routerContainer_routerContainer",p.freezeTemplate(Mt);function Fs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Us(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Fs(Object(n),!0).forEach(function(r){mg(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Fs(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function mg(t,e,n){return e=fg(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function fg(t){var e=pg(t,"string");return typeof e=="symbol"?e:String(e)}function pg(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}class Gr extends p.LightningElement{constructor(...e){super(...e);this.generatedTemplateHtml=js,this.attributes={},this.routeParams={},this.route={}}render(){return this.generatedTemplateHtml}connectedCallback(){this.subscription=on(this.routeChange.bind(this))}viewChange(e){ar(this.route),this.generatedTemplateHtml=e.html;const{state:n,attributes:r}=this.route;this.routeParams=Us(Us({},n),r),this.attributes=e.attributes(this,this.routeParams)}routeChange(e){this.route=e.route||null}disconnectedCallback(){this.subscription&&this.subscription.unsubscribe()}errorCallback(e,n){vt({subject:"router level error",error:e,wcstack:n})}renderedCallback(){this.dispatchEvent(new CustomEvent("viewchange",{bubbles:!0,composed:!0,detail:{route:this.route}})),this.dispatchEvent(new CustomEvent("experience_interaction",{bubbles:!0,composed:!0,detail:{name:"page-view"}}))}}Gr.renderMode="light",p.registerDecorators(Gr,{wire:{viewChange:{adapter:ft,method:1,config:function(t){return{}}}},fields:["generatedTemplateHtml","attributes","routeParams","route"]});var gg=p.registerComponent(Gr,{tmpl:js,sel:"webruntime-routerContainer"});function Ks(t,e,n){var r=t?"."+t+"-host":"";return(e?":host {":r+" {")+"display: flow-root;}"}Ks.$scoped$=!0;var zs=[Ks];const bg={key:0},vg=[];function ge(t,e,n,r){const{s:i}=t;return i("",bg,vg,n)}var yg=p.registerTemplate(ge);ge.slots=[""],ge.stylesheets=[],ge.renderMode="light",zs&&ge.stylesheets.push.apply(ge.stylesheets,zs),ge.stylesheetToken="webruntime-componentContainer_componentContainer",p.freezeTemplate(ge);class Gs extends p.LightningElement{}Gs.renderMode="light";var wg=p.registerComponent(Gs,{tmpl:yg,sel:"webruntime-componentContainer"});const Vs=[];function Xe(t,e,n,r){const{s:i}=t;return e.isVisible?i("",{key:0,slotData:e.variations},Vs,n):Vs}var Tg=p.registerTemplate(Xe);Xe.slots=[""],Xe.stylesheets=[],Xe.renderMode="light",Xe.stylesheetToken="webruntime-slotContainer_slotContainer",p.freezeTemplate(Xe);class Vr extends p.LightningElement{constructor(...e){super(...e);this.visibilityExpression=void 0,this.hidden=void 0,this.variationExpressions=void 0}get isVisible(){return this.hidden?!this.visibilityExpression:this.visibilityExpression}get variations(){const e={},n=this.variationExpressions?.find(a=>a===!0),r=this.variationExpressions?.findIndex(a=>a===!0),i=this.variationExpressions?.find(a=>typeof a=="undefined");return this.variationExpressions?.forEach(function(a,o){const s=`variation${o+1}`;i||n&&r!==o?e[s]=!1:a===!0?e[s]=!0:(typeof a=="undefined",e[s]=!1)}),e.variation0=!n&&!i,e}}Vr.renderMode="light",p.registerDecorators(Vr,{publicProps:{visibilityExpression:{config:0},hidden:{config:0},variationExpressions:{config:0}}});var Pg=p.registerComponent(Vr,{tmpl:Tg,sel:"webruntime-slotContainer"});function Bs(t,e,n){var r=t?"."+t+"-host":"";return"@media only screen and (max-width: 47.9375em) {"+(e?":host.webruntime-visibility-container.dxp-sm-hide {":r+".webruntime-visibility-container.dxp-sm-hide {")+"display: none;}}@media only screen and (min-width: 48em) and (max-width: 64em) {"+(e?":host.webruntime-visibility-container.dxp-md-hide {":r+".webruntime-visibility-container.dxp-md-hide {")+"display: none;}}@media only screen and (min-width: 64.0625em) {"+(e?":host.webruntime-visibility-container.dxp-lg-hide {":r+".webruntime-visibility-container.dxp-lg-hide {")+"display: none;}}"}Bs.$scoped$=!0;var Ws=[Bs];const Eg={key:0},Hs=[];function be(t,e,n,r){const{s:i}=t;return e.hidden?Hs:i("",Eg,Hs,n)}var _g=p.registerTemplate(be);be.slots=[""],be.stylesheets=[],be.renderMode="light",Ws&&be.stylesheets.push.apply(be.stylesheets,Ws),be.stylesheetToken="webruntime-visibilityContainer_visibilityContainer",p.freezeTemplate(be);class Br extends p.LightningElement{constructor(...e){super(...e);this.hiddenInDesktop=!1,this.hiddenInTablet=!1,this.hiddenInMobile=!1,this.hidden=!0}connectedCallback(){const e={Small:{isHidden:this.hiddenInMobile,mediaQuery:"only screen and (max-width: 47.9375em)",class:"dxp-sm-hide"},Medium:{isHidden:this.hiddenInTablet,mediaQuery:"only screen and (min-width: 48em) and (max-width: 64em)",class:"dxp-md-hide"},Large:{isHidden:this.hiddenInDesktop,mediaQuery:"only screen and (min-width: 64.0625em)",class:"dxp-lg-hide"}};let n="";Object.values(e).forEach(r=>{r.isHidden?this.classList.add(r.class):n+=n?`, ${r.mediaQuery}`:r.mediaQuery}),In.default?this.classList.add("interactions-element","webruntime-design-visibility-container"):this.classList.add("webruntime-visibility-container"),Promise.resolve().then(function(){return ph}).then(({getFormFactor:r})=>{if(typeof window!="undefined"&&!In.default&&e[r()].isHidden){if(n){const i=window.matchMedia(n),a=o=>{o.matches&&(this.hidden=!1,i.removeEventListener("change",a))};i.addEventListener("change",a)}}else this.hidden=!1})}}Br.renderMode="light",p.registerDecorators(Br,{publicProps:{hiddenInDesktop:{config:0},hiddenInTablet:{config:0},hiddenInMobile:{config:0}},track:{hidden:1}});var Og=p.registerComponent(Br,{tmpl:_g,sel:"webruntime-visibilityContainer"});let Me;const Cg="1970-01-01T",Sg="T00:00:00",Rt="provider",En="providers";function Js(t){return t!==null&&typeof t=="object"}function Wr(t){try{const e=t?.indexOf(":")>-1,n=t?.indexOf("-")>-1;return t===""||!e&&!n?null:(typeof t=="string"&&(n||(t=Cg+t),e||(t=t+Sg),t=t.trim().replace(" ","T"),t.endsWith("Z")||(t+="Z")),new Date(t))}catch(e){return null}}function Ng(t){try{const e=t(),n=Reflect.get(this,En);for(const r of n)if(!r?.hasData?.())throw new Error;return e??null}catch(e){return}}function Ag(t){return Js(this)&&(Reflect.set(this,Rt,t),Reflect.get(this,En).push(t)),t?.getData?.()}function Mg(t={},e){if(!!t&&Object.prototype.hasOwnProperty.call(t,e))return t[e]}function Rg(t,e){Array.isArray(t)||(t=[t]);const n=t.filter(e);if(!!n.length)return n.length===1?n[0]:n}function Ig(t,e){if(Js(this)&&Reflect.has(this,Rt)){const n=Reflect.get(this,Rt);if(Reflect.deleteProperty(this,Rt),!n?.hasData?.(e))throw new Error;const r=Reflect.get(this,En);r.indexOf(n)>=0&&r.splice(r.indexOf(n),1)}return typeof e=="string"&&Array.isArray(t)?(t=t.map(n=>n[e]).filter(n=>n!==void 0),t.length===0?void 0:t.length===1?t[0]:t):t?.[e]}function Dg(){}var kg=Object.freeze({__proto__:null,EXPR_CLOSURE:(...t)=>(Me={[En]:[],[Rt]:null},Ng.apply(Me,t)),EXPR_FILTER:(...t)=>Rg.apply(Me,t),EXPR_FUNCTION:(...t)=>Dg.apply(Me,t),EXPR_GLOBAL:(...t)=>Mg.apply(Me,t),EXPR_MEMBER:(...t)=>Ig.apply(Me,t),EXPR_PROVIDER:(...t)=>Ag.apply(Me,t),EXPR_RUNTIME:{toDate(t){if(t!=null){const e=Wr(t)?.setUTCHours(0,0,0,0);if(e!==void 0&&!isNaN(e))return new Date(e)}return null},toTime(t){if(t!=null){const e=Wr(t)?.setUTCFullYear(1970,0,1);if(e!==void 0&&!isNaN(e))return new Date(e)}return null},toDatetime(t){return t!=null?Wr(t):null},isBlank(t){return!t&&typeof t!="number"},contains(t,e){return t!=null?t.includes(e):!1}}});function qs(t){Object.entries(t).forEach(([e,n])=>{LWR.define(e,[],function(){return n})})}qs({"@salesforce/client/formFactor":lr(),"aura-instrumentation":Wi,"aura-storage":ug,"instrumentation/service":Wi,"instrumentation/utility":Gl,"webruntime/expressions":kg,"lightning/configProvider":Ic,"lightning/navigation":_u,"webruntime/routerContainer":gg,"webruntime/routingService":hh,"webruntime/slotContainer":Pg,"webruntime/visibilityContainer":Og,"webruntime/componentContainer":wg,"webruntime/formFactor":lr,"wire-service":zh,"webruntime/overrides":Iu,aura:Nh,logger:Ki,assert:lt}),li.default&&!Hi(li.default)&&qs({"@app/user":{isGuest:!0,id:null,csrfToken:null}});var $g=p.registerComponent(cg,{tmpl:te,sel:"client-src"});di.default=$g,Object.defineProperty(di,"__esModule",{value:!0})}); |
| New file |
| | |
| | | LWR.define("@salesforce/label/MyCommunities.errorInFileDownload/v/0_9_0",["exports"],function(f){"use strict";var p="MyCommunities.errorInFileDownload";f.default=p,Object.defineProperty(f,"__esModule",{value:!0})}),LWR.define("mobileruntime/hybridAppManager/v/1",["exports","lwr/loaderLegacy/v/0_9_0","logger/v/1_66_319-244_0","webruntime/routingService/v/1_66_319-244_0","@salesforce/site/Id/v/1","webruntime/transport/v/1_66_319-244_0","lwc/v/2_41_4","@app/basePath/v/1","@app/loginPath/v/1","@app/uiBasePath/v/1","@salesforce/label/MyCommunities.errorInFileDownload/v/0_9_0","webruntime/overrides/v/1_66_319-244_0"],function(f,p,l,R,x,B,d,V,_,W,H,g){"use strict";function h(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var G=h(x),M=h(V),y=h(_),J=h(W),q=h(H);function K(){if(window.navigator?.userAgent?.includes("android")){const{head:e}=document,t=document.createElement("script");t.src="/localhost/cordova.js",e.appendChild(t)}}function Y(){window.native={sendAILTNData:function(e){if(!e?.logLines)return new Promise(function(t,n){n("Received null or invalid payload")})},refreshNotifications:function(){document.dispatchEvent(new CustomEvent("refreshNotifications",{detail:{},bubbles:!0,cancelable:!0,composed:!1}))},navigateTo:function(e){return new Promise(function(t,n){if(!e){n("Received invalid pageReference payload");return}R.generateUrl(e).then(o=>{window.open(new URL(o,window.location.href)),t()},o=>n(o))})}}}const z=d.parseFragment`<div class="slds-backdrop slds-backdrop_open${0}"${2}></div>`,Q={key:0},X={"slds-modal":!0,"slds-fade-in-open":!0,"slds-modal_large":!0},Z={classMap:{"slds-modal__container":!0},key:2},$={classMap:{"slds-modal__header":!0},key:3},ee={"slds-modal__title":!0,"slds-hyphenate":!0},te={"slds-modal__content":!0,"slds-var-p-around_medium":!0},ne={classMap:{"slds-text-align_center":!0,"slds-text-heading_small":!0,"slds-var-p-around_medium":!0},key:6},oe={classMap:{"slds-modal__footer":!0},key:7},E={"slds-button":!0,"slds-button_brand":!0},ie={key:9},ae={key:11};function w(e,t,n,o){const{gid:i,d:a,t:r,h:s,b:c,st:u}=e,{_m0:m,_m1:U}=o;return[t.showModal?s("section",Q,[s("section",{classMap:X,attrs:{role:"dialog",tabindex:"-1","aria-labelledby":i("modal-heading-01"),"aria-modal":"true","aria-describedby":i("modal-content-id-1")},key:1},[s("div",Z,[s("header",$,[s("h2",{classMap:ee,attrs:{id:i("modal-heading-01")},key:4},[r(a(t.labels.ModalHeader))])]),s("div",{classMap:te,attrs:{id:i("modal-content-id-1")},key:5},[s("div",ne,[r(a(t.modalBody))])]),s("footer",oe,[t.forceAppUpdate?null:s("button",{classMap:E,key:8,on:{click:m||(o._m0=c(t.remindMeLater))}},[s("label",ie,[r(a(t.labels.RemindMeLater))])]),s("button",{classMap:E,key:10,on:{click:U||(o._m1=c(t.openStore))}},[s("label",ae,[r(a(t.labels.UpdateNow))])])])])]),u(z(),13)]):null]}var re=d.registerTemplate(w);w.stylesheets=[],w.stylesheetToken="mobileruntime-appUpdateModal_appUpdateModal",d.freezeTemplate(w);const se={ModalHeader:"Update Your App",ForceUpdateModalBody:"You must update to the latest version of this app to continue using it.",ModalBody:"A new version of this app is available.Find and install the latest version of the app for your device.",RemindMeLater:"Remind Me Later",UpdateNow:"Update Now"};class D extends d.LightningElement{constructor(...t){super(...t);this.showModal=!0,this.config={}}get labels(){return se}get modalBody(){return this.config.forceAppUpdate?this.labels.ForceUpdateModalBody:this.labels.ModalBody}openStore(){window.open(this.config?.minVersion?.url?.trim())}remindMeLater(){this.showModal=!1}}d.registerDecorators(D,{publicProps:{config:{config:0}},fields:["showModal"]});var le=d.registerComponent(D,{tmpl:re,sel:"mobileruntime-appUpdateModal"});const ce=["payload"];function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,o)}return n}function v(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?C(Object(n),!0).forEach(function(o){de(e,o,n[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):C(Object(n)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(n,o))})}return e}function de(e,t,n){return t=ue(t),t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ue(e){var t=fe(e,"string");return typeof t=="symbol"?t:String(t)}function fe(e,t){if(typeof e!="object"||e===null)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var o=n.call(e,t||"default");if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function pe(e,t){if(e==null)return{};var n=he(e,t),o,i;if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i<a.length;i++)o=a[i],!(t.indexOf(o)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,o)||(n[o]=e[o]))}return n}function he(e,t){if(e==null)return{};var n={},o=Object.keys(e),i,a;for(a=0;a<o.length;a++)i=o[a],!(t.indexOf(i)>=0)&&(n[i]=e[i]);return n}const me=`/services/data/v57.0/connect/sites/${G.default}/cms/delivery/contents?contentTypeFQN=sfdc_cms__mobilePublisherConfig&includeContentBody=true`;function P(e,t){if(!b()){l.log("Native JS API is not available");return}const{invokeNative:n}=window.mycommunities.nativejsapi;return n(e,t)}function ge(e=""){return new RegExp("^([a-z]+://)","i").test(e)}function we(e=""){if(!ge(e))return!1;const t=new URL(e),n=window.location.host;return t.host!==n}async function ve(){if(!b()){l.log("Native JS API is not available");return}K();try{const e=await B.fetch(me,{method:"GET"});if(e.status===200){const t=await e.json(),n=window.location.href.endsWith("/")?window.location.href.slice(0,-1):window.location.href,{nativeTabMenu:o,mobilePublisherAppUpdateConfig:i}=t.contents[0]?.contentBody||{};if(o?.menuItems?.forEach((a,r)=>{const{payload:s}=a,c=pe(a,ce);o.menuItems[r]=v(v({},c),{},{id:(r+1)*10,position:r+1,targetUrl:n+a.targetUrl,iconDetails:v(v({},c.iconDetails),{},{mimeType:"image/png",url:`data:image/png;base64,${s}`})})}),i){const{forceAppUpdate:a,enableAppUpdate:r,minVersion:s}=i,c=Me()?"ios":Ee()?"android":"",u={forceAppUpdate:a,enableAppUpdate:r,minVersion:s[c]};Oe("forceAppUpdate")?o.appUpdateConfig={enableAppUpdate:r,gracePeriod:a?0:15}:Ue(u)}L(o)}else l.log("Failed to fetch bottom tab bar. Status is: ",e.status),L(!0)}catch(e){l.log("Failed to fetch bottom tab bar",e),L(!0)}l.log("Initial load done! Splash Screen hidden")}function be(e,t){const n=new URL(e||"",window.location.origin);e=n.href;const o="/servlet/networks/switch",i=n.pathname,a=i.indexOf("/s/"),r=a===-1?i:i.substring(0,a+2);return[o,encodeURIComponent(o)].some(s=>e.includes(s))||!r.startsWith(t)}function ye(e){if(!e)return null;switch(e.length){case 15:return Ce(e);case 18:return e;default:return null}}function Pe(){const{cordova:e}=window;return typeof e!="undefined"&&e&&e.require("cordova/channel")&&e.require("cordova/channel").onDeviceReady&&e.require("cordova/channel").onDeviceReady.state===2}function A(){return Pe()?window.cordova.require("com.salesforce.plugin.oauth"):null}function Ae(e){if(!e)return!1;const t="/secur/logout.jsp";return e.includes(t)||e.includes(encodeURIComponent(t))}function Le(e){const t=A();t&&t.logout(e)}function T(){l.log("hybrid_app_manager_utils:handle_page_loaded"),Y(),b()&&(typeof window.mycommunities.nativejsapi.webAppPageLoadDone=="function"?(l.log("hybrid_app_manager_utils:handle_page_loaded: webAppPageLoadDone function called"),window.mycommunities.nativejsapi.webAppPageLoadDone()):l.log("hybrid_app_manager_utils:handle_page_loaded:webAppPageLoadDone function is not available"))}function L(e){const{webAppBootstrapDone:t}=window.mycommunities.nativejsapi;l.log("Triggering webAppBootstrapDone"),t(e)}function Oe(e){return b()?window.mycommunities.nativejsapi.clientFeatures?.[e]?.enabled:!1}function Ue(e){const t=De();if(e.enableAppUpdate&&t){const n=e.minVersion.version;if(Re(t,n)){const i=d.createElement("app-update-modal",{is:le});i.config=e,document.body.appendChild(i)}}}function Re(e,t){let n=e.split("."),o=t.split("."),i=0;for(;n.length<o.length;)n.push("0");for(;o.length<n.length;)o.push("0");n=n.map(Number),o=o.map(Number);for(let a=0;a<n.length;++a)if(n[a]!==o[a])if(n[a]>o[a]){i=1;break}else{i=-1;break}return i===-1}function Me(){const e=window.navigator.userAgent;return e.toLowerCase().includes("iphone")||e.toLowerCase().includes("ipad")}function Ee(){return window.navigator.userAgent.toLowerCase().includes("android")}function De(){const t=window.navigator.userAgent.split("CommunityHybridContainer/")[1];return t&&(t.match(/(\d{1,3}\.)?(\d{1,3}\.)?(\d{1,3})/)||[])[0]}function Ce(e){let t="";const n="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456";for(let o=0;o<3;++o){let i=0;for(let a=0;a<5;a++){const r=e.charAt(o*5+a);r>="A"&&r<="Z"&&(i+=1<<a)}t+=n.charAt(i)}return e+t}function b(){return window?.mycommunities?.nativejsapi}const Te="/secur/frontdoor.jsp";function ke({routeUrl:e}){const t=A();t?t.authenticate(function(n){n&&n.accessToken&&(document.cookie=`sid=${n.accessToken}; path=/; secure=true`,e!=null&&window.open(e))},function(){l.logError("Error in handler Session Timeout. Cordova OAuth Plugin authentication failed.")}):l.logError("Error in handler Session Timeout. OAuth Plugin is not available.")}async function Ne(){let e=!1;const t=await p.load("@app/user/v/1");try{await p.load(`@app/user?c=${crypto.randomUUID()}`,"mobileruntime/hybridAppManager/v/1")}catch(n){e=!t.isGuest}return e}function k(e){const t=new URL(y.default,window.location.href),n=new URL(e,window.location.href);return y.default&&t.pathname===n.pathname&&t.origin===n.origin}function N(e){const t=A();t?t.authenticate(function(n){window.location.href=`${n.loginUrl}${Te}?sid=${n.accessToken}&retURL=${encodeURIComponent(e||J.default)}&display=touch`},function(){throw new Error("Authentication via Cordova OAuth Plugin failed.")}):window.location.href=e||y.default}function Se(e){if(typeof e=="object"){const{attributes:{url:t}={url:null}}=e;if(k(t)){const n=new URL(t,window.location.href);return N(n.searchParams.get("startURL")),!1}}return!0}async function je({next:{route:e,data:t}={}}={}){if(t&&t.isPublic!==!1)return!0;const{default:n}=await p.load("@app/user/v/1");if(n.isGuest){const o=await R.generateUrl(e);if(o){const i=new URL(o,window.location.href);return N(i.pathname+i.search+i.hash),!1}}return!0}const Ie=["/sfc/servlet.shepherd","/servlet/servlet.FileDownload","/servlet/fileField","version/renditionDownload"];function O(){l.log("Handle showing of Toast Message for Error case.")}function Fe(e){const t="/sfc/servlet.:type/:contentType/download/:recordId",n=new RegExp(t.replace(/:[^\s/]+/g,"([\\w-]+)")),o=e.match(n);if(o&&o.length===4)return{recordId:o[3]};const i="/servlet/servlet.:type?file=:recordId",a=new RegExp(i.replace(/:[^\s/?]+/g,"([\\w-]+)").replace(/\?/g,"[?]")),r=e.match(a);if(r&&r.length===3)return{recordId:r[2]};const s="/servlet/fileField";if(e.includes(s)){const u=new URLSearchParams(decodeURIComponent(e).split("?")[1]),m=u.get("entityId"),U=u.get("field");return{recordId:m,fieldId:U}}const c="version/renditionDownload";if(e.includes(c)){const m=new URL(e).searchParams.get("versionId");return{recordId:ye(m)}}return null}function xe(e){const t=P("downloadFile",e);if(t)return t.catch(n=>{l.log(`Error while downloading file of record id: ${e.recordId} message: ${n}`&&n.message),O()})}function Be(e){if(!e){l.log(`${q.default}. URL is ${e}`),O();return}const t=Fe(e);if(!t){l.log(`Parsing the file URL "${e}" yielded null`),O();return}return xe(t)}function Ve(e){return e=e||"",Ie.some(t=>e.indexOf(t)>-1)}const _e=globalThis.open;function S(e){const t=new URL(e,window.location.href);if(e=t.href,e.indexOf("/")!==0&&e.indexOf("http://")!==0&&e.indexOf("https://")!==0)return _e(e,"_self");if(Ae(e))Le(e);else if(we(t))P("navigateToExternalURL",{url:e});else if(k(e))j({type:"standard__webPage",attributes:{url:t.pathname+t.searchParams+t.hash}},!1);else if(Ve(e))Be(e);else if(be(e,M.default))P("navigateToExternalURL",{url:e});else{const n=t.pathname,o=n==="/"||n===M.default;j({type:"standard__webPage",attributes:{url:n}},o)}}function j(e,t){return document.dispatchEvent(new CustomEvent("notify-client-module",{cancelable:!0,composed:!0,detail:{action:"navigate",data:{routeObj:e,replaceState:t}}}))}function We(){He()}function He(){document.addEventListener("click",Je),document.addEventListener("notify-mobile-module",qe)}function Ge({pathMatch:e,route:t,routeDefinition:n}){const{id:o}=t||{},{type:i}=t?.pageReference||{},{isRoot:a}=n?.metadata||{};document.dispatchEvent(new CustomEvent("routeChangeSuccess",{bubbles:!0,composed:!0,detail:{routeType:i,routeId:o,routeUrl:e,backNavigation:{canGoBack:!a}}}))}function Je(e){const t=e.composedPath()[0];if(t.tagName.toLowerCase()==="a")return e.preventDefault(),e.stopPropagation(),S(t.href)}function qe({detail:e}){const{action:t,data:n}=e||{action:"",data:null};switch(t){case"navigationcompleted":Ge(n?.routeResult||{});break;default:l.log(`No such ${t} exists in notify-mobile-module event. Please re-check!!`);break}}function Ke(){window.open=e=>S(e)}async function I(){return await ve(),/interactive|complete/.test(document.readyState)?T():document.addEventListener("DOMContentLoaded",T,!1),Ke(),We()}function F(){return ke({routeUrl:window.location.pathname}),!1}g.PreNavigateOverrides.add(e=>je(e)),g.NavigationOverrides.add(e=>Se(e)),g.PageNavigationFailureOverrides.add(async({error:e,isPublic:t})=>{const n=await Ne();return e?.constructor?.name==="LoaderError"&&!t&&n?F():!0}),g.SessionTimeoutOverrides.add(()=>F());function Ye(e){Object.entries(e).forEach(([t,n])=>{LWR.define(t,[],function(){return n})})}Ye({"mobileruntime/hybridAppManager":I}),f.hybridAppManager=I,Object.defineProperty(f,"__esModule",{value:!0})}); |
| New file |
| | |
| | | /** |
| | | * Copyright (c) 2021, salesforce.com, inc. |
| | | * All rights reserved. |
| | | * SPDX-License-Identifier: MIT |
| | | * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT |
| | | */ |
| | | /* LWR Legacy Module Loader Shim v0.9.0 */ |
| | | !function(){"use strict";var e;let t;function r(e){t=e}!function(e){e[e.Start=0]="Start",e[e.End=1]="End"}(e||(e={}));const o=globalThis.performance,s=void 0!==o&&"function"==typeof o.mark&&"function"==typeof o.clearMarks&&"function"==typeof o.measure&&"function"==typeof o.clearMeasures;function n({id:r,specifier:n}){t?t({id:r,phase:e.Start,specifier:n}):s&&o.mark(r+(n?`.${n}`:""))}function i({id:r,specifier:n}){if(t)t({id:r,phase:e.End,specifier:n});else if(s){const e=n?`.${n}`:"",t=r+e,s=`${r}.duration${e}`;o.measure(s,t),o.clearMarks(t),o.clearMeasures(s)}}function a(e,t,o,s){const{autoBoot:n,customInit:i}=e;if(function(e,t){if(!e&&!t)throw new Error("The customInit hook is required when autoBoot is false");if(e&&t)throw new Error("The customInit hook must not be defined when autoBoot is true")}(n,i),i){i({initializeApp:t,define:o,onBootstrapError:s,attachDispatcher:r},e)}}const l="function"==typeof setTimeout,d="undefined"!=typeof console;const c=globalThis;c.LWR.requiredModules=c.LWR.requiredModules||[],c.LWR.requiredModules.indexOf("lwr/loaderLegacy/v/0_9_0")<0&&c.LWR.requiredModules.push("lwr/loaderLegacy/v/0_9_0"),new class{constructor(e){this.defineCache={},this.orderedDefs=[],l&&(this.watchdogTimerId=this.startWatchdogTimer()),this.global=e,this.config=e.LWR,this.loaderModule="lwr/loaderLegacy/v/0_9_0",this.errorHandler=this.config.onError;const t=this.tempDefine.bind(this);e.LWR.define=t,this.bootReady=this.config.autoBoot;try{this.createProfilerModule(this.config),a(Object.freeze(this.config),this.postCustomInit.bind(this),t,(e=>{this.errorHandler=e}))}catch(e){this.enterErrorState(e)}}canInit(){const e=this.config.requiredModules.every((e=>this.orderedDefs.includes(e)));return this.bootReady&&e}tempDefine(...e){const t=e[0];this.defineCache[t]=e,this.orderedDefs.push(t),this.canInit()&&(l&&clearTimeout(this.watchdogTimerId),this.initApp())}postCustomInit(){this.bootReady=!0,this.canInit()&&this.initApp()}initApp(){try{const e={baseUrl:this.config.baseUrl,profiler:{logOperationStart:n,logOperationEnd:i},appMetadata:{appId:this.config.appId,bootstrapModule:this.config.bootstrapModule,rootComponent:this.config.rootComponent,rootComponents:this.config.rootComponents}},t=function(e,t,r,o){if(!t||"function"!=typeof t[2])throw new Error(`Expected loader with specifier "${e}" to be a module`);const s={};t[2].call(null,s);const{Loader:n}=s,i=new n(r);return o&&o.length&&i.registerExternalModules(o),i.define(e,["exports"],(e=>{Object.assign(e,{define:i.define.bind(i),load:i.load.bind(i),services:i.services})}),t[3]),i}(this.loaderModule,this.defineCache[this.loaderModule],e,this.config.preloadModules);this.mountApp(t)}catch(e){this.enterErrorState(e)}}waitForDOMContentLoaded(){return void 0===typeof document||"interactive"===document.readyState||"complete"===document.readyState?Promise.resolve():new Promise((e=>{document.addEventListener("DOMContentLoaded",(()=>{e()}))}))}createProfilerModule(e){e.define("lwr/profiler/v/0_9_0",["exports"],(e=>{Object.assign(e,{logOperationStart:n,logOperationEnd:i})}),{})}mountApp(e){const{bootstrapModule:t,rootComponent:r,importMappings:o,rootComponents:s,ssrProps:n,endpoints:i}=this.config;this.global.LWR=Object.freeze({define:e.define.bind(e),rootComponent:r,rootComponents:s,ssrProps:n,importMappings:o,endpoints:i}),this.orderedDefs.forEach((t=>{t!==this.loaderModule&&e.define(...this.defineCache[t])}));const{disableInitDefer:a}=this.config;e.registerImportMappings(o).then((()=>{if(!a)return this.waitForDOMContentLoaded()})).then((()=>e.load(t))).catch((e=>{this.enterErrorState(new Error(`Application ${r||t} could not be loaded: ${e}`))}))}enterErrorState(e){n({id:"lwr.bootstrap.error"}),this.errorHandler?this.errorHandler(e):d&&console.error(`An error occurred during LWR bootstrap. ${e.message}`,e.stack)}startWatchdogTimer(){return setTimeout((()=>{this.enterErrorState(new Error("Failed to load required modules - timed out"))}),3e5)}}(c)}(),LWR.define("lwr/loaderLegacy/v/0_9_0",["exports"],(function(exports){"use strict";const templateRegex=/\{([0-9]+)\}/g;function templateString(e,t){return e.replace(templateRegex,((e,r)=>t[r]))}function generateErrorMessage(e,t){const r=Array.isArray(t)?templateString(e.message,t):e.message;return`LWR${e.code}: ${r}`}class LoaderError extends Error{constructor(e,t){super(),this.message=generateErrorMessage(e,t)}}function invariant(e,t){if(!e)throw new LoaderError(t)}const MISSING_NAME=Object.freeze({code:3e3,message:"A module name is required.",level:0}),FAIL_INSTANTIATE=Object.freeze({code:3004,message:"Failed to instantiate module: {0}",level:0}),NO_AMD_REQUIRE=Object.freeze({code:3005,message:"AMD require not supported.",level:0}),FAILED_DEP=Object.freeze({code:3006,level:0,message:"Failed to load dependency: {0}"}),INVALID_DEPS=Object.freeze({code:3007,message:"Unexpected value received for dependencies argument; expected an array.",level:0}),FAIL_LOAD=Object.freeze({code:3008,level:0,message:"Error loading {0}"}),UNRESOLVED=Object.freeze({code:3009,level:0,message:"Unable to resolve bare specifier: {0}"}),NO_BASE_URL=Object.freeze({code:3010,level:0,message:"baseUrl not set"});Object.freeze({code:3011,level:0,message:"Cannot set a loader service multiple times"});const INVALID_HOOK=Object.freeze({code:3012,level:0,message:"Invalid hook received"}),INVALID_LOADER_SERVICE_RESPONSE=Object.freeze({code:3013,level:0,message:"Invalid response received from hook"}),MODULE_LOAD_TIMEOUT=Object.freeze({code:3014,level:0,message:"Error loading {0} - timed out"}),HTTP_FAIL_LOAD=Object.freeze({code:3015,level:0,message:"Error loading {0}, status code {1}"}),STALE_HOOK_ERROR=Object.freeze({code:3016,level:0,message:"An error occurred handling module conflict"});Object.freeze({code:3017,level:0,message:"Marking module(s) as externally loaded, but they are already loaded: {0}"});const FAIL_HOOK_LOAD=Object.freeze({code:3018,level:0,message:'Error loading "{0}" from hook'}),BAD_IMPORT_MAP=Object.freeze({code:3011,level:0,message:"import map is not valid"}),hasDocument="undefined"!=typeof document,hasSetTimeout="function"==typeof setTimeout,hasConsole="undefined"!=typeof console;function getBaseUrl(){let e;if(hasDocument){const t=document.querySelector("base[href]");e=t&&t.href}if(!e&&"undefined"!=typeof location){e=location.href.split("#")[0].split("?")[0];const t=e.lastIndexOf("/");-1!==t&&(e=e.slice(0,t+1))}return e}function isUrl(e){return-1!==e.indexOf("://")}function resolveIfNotPlainOrUrl(e,t){if(-1!==e.indexOf("\\")&&(e=e.replace(/\\/g,"/")),"/"===e[0]&&"/"===e[1])return t.slice(0,t.indexOf(":")+1)+e;if("."===e[0]&&("/"===e[1]||"."===e[1]&&("/"===e[2]||2===e.length&&(e+="/"))||1===e.length&&(e+="/"))||"/"===e[0]){const r=t.slice(0,t.indexOf(":")+1);let o;if("/"===t[r.length+1]?"file:"!==r?(o=t.slice(r.length+2),o=o.slice(o.indexOf("/")+1)):o=t.slice(8):o=t.slice(r.length+("/"===t[r.length]?1:0)),"/"===e[0])return t.slice(0,t.length-o.length-1)+e;const s=o.slice(0,o.lastIndexOf("/")+1)+e,n=[];let i=-1;for(let e=0;e<s.length;e++)-1!==i?"/"===s[e]&&(n.push(s.slice(i,e+1)),i=-1):"."===s[e]?"."!==s[e+1]||"/"!==s[e+2]&&e+2!==s.length?"/"===s[e+1]||e+1===s.length?e+=1:i=e:(n.pop(),e+=2):i=e;return-1!==i&&n.push(s.slice(i)),t.slice(0,t.length-o.length)+n.join("")}}function resolveUrl(e,t){return resolveIfNotPlainOrUrl(e,t)||(isUrl(e)?e:resolveIfNotPlainOrUrl("./"+e,t))}function createScript(e){const t=document.createElement("script");return t.async=!0,t.crossOrigin="anonymous",t.src=e,t}let lastWindowError$1,lastWindowErrorUrl;function loadModuleDef(e){return new Promise((function(t,r){if(hasDocument){const o=createScript(e);o.addEventListener("error",(()=>{r(new LoaderError(FAIL_LOAD,[e]))})),o.addEventListener("load",(()=>{document.head.removeChild(o),lastWindowErrorUrl===e?r(lastWindowError$1):t()})),document.head.appendChild(o)}}))}hasDocument&&window.addEventListener("error",(e=>{lastWindowErrorUrl=e.filename,lastWindowError$1=e.error}));const MODULE_LOAD_TIMEOUT_TIMER=3e5;let lastWindowError;function isCustomResponse(e){return Object.prototype.hasOwnProperty.call(e,"data")&&!Object.prototype.hasOwnProperty.call(e,"blob")}function isFetchResponse(e){return"function"==typeof e.blob}function isResponseAPromise(e){return!(!e||!e.then)}async function evaluateLoadHookResponse(response,id){return Promise.resolve().then((async()=>{if(!response.status)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);if(200!==response.status)throw new LoaderError(HTTP_FAIL_LOAD,[id,`${response.status}`]);const isResponse=isFetchResponse(response);let code;if(isCustomResponse(response))code=response.data;else{if(!isResponse)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);code=await response.text()}if(!code)throw new LoaderError(FAIL_LOAD,[id]);code=`${code}\n//# sourceURL=${id}`;try{eval(code)}catch(e){throw new LoaderError(FAIL_LOAD,[id])}if(lastWindowError)throw new LoaderError(FAIL_LOAD,[id]);return!0}))}async function evaluateLoadHook(e,t){return hasSetTimeout?new Promise(((r,o)=>{const s=setTimeout((()=>{o(new LoaderError(MODULE_LOAD_TIMEOUT,[e]))}),MODULE_LOAD_TIMEOUT_TIMER);t.then((e=>{r(e)})).catch((()=>{o(new LoaderError(FAIL_HOOK_LOAD,[e]))})).finally((()=>{clearTimeout(s)}))})):t}function reportError(e){hasConsole&&console.error(e)}function evaluateHandleStaleModuleHooks(e,t){const{name:r,oldHash:o,newHash:s}=t;for(let t=0;t<e.length;t++){const n=e[t];try{if(null!==n({name:r,oldHash:o,newHash:s}))break}catch(e){reportError(new LoaderError(STALE_HOOK_ERROR))}}}hasDocument&&globalThis.addEventListener("error",(e=>{lastWindowError=e.error}));const LOADER_PREFIX="lwr.loader.",MODULE_DEFINE=`${LOADER_PREFIX}module.define`,MODULE_FETCH=`${LOADER_PREFIX}module.fetch`,MODULE_ERROR=`${LOADER_PREFIX}module.error`;class ModuleRegistry{constructor(e){this.namedDefineRegistry=new Map,this.moduleRegistry=new Map,this.aliases=new Map,this.baseUrl=e.baseUrl||"",this.profiler=e.profiler}async load(e,t){const r=await this.resolve(e,t),o=this.getModuleRecord(r,e);return o.evaluated?o.module:(o.evaluationPromise||(o.evaluationPromise=this.topLevelEvaluation(o)),o.evaluationPromise)}async resolve(e,t){const r=this.baseUrl;let o,s=e;const n=this.resolveHook;if(n){for(let e=0;e<n.length;e++){const t=(0,n[e])(s,{parentUrl:r});let i;if((t||null===t)&&(i=isResponseAPromise(t)?await t:t),null!==i){if("string"==typeof i){if(resolveIfNotPlainOrUrl(i,r))throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);s=i;continue}if(o=i&&i.url&&(resolveIfNotPlainOrUrl(i.url,r)||i.url),!o)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);break}}if(s!==e){if(!o&&this.namedDefineRegistry.has(s))return s;e=s}}if(!o){const t=resolveIfNotPlainOrUrl(e,r)||e;if(this.moduleRegistry.has(t))return t;if(this.resolver){if(o=this.resolver.resolve(t,r),this.namedDefineRegistry.has(t)&&this.namedDefineRegistry.get(t).defined){if(!this.moduleRegistry.get(o)||!this.aliases.has(t))return t}}else o=t}if(!o||!isUrl(o)){if(this.namedDefineRegistry.has(e))return e;throw new LoaderError(UNRESOLVED,[e])}return t&&isUrl(o)&&(o+=`?importer=${encodeURIComponent(t)}`),o}has(e){return this.moduleRegistry.has(e)}define(e,t,r,o){const s=this.namedDefineRegistry.get(e);if(s&&s.defined)return void(this.lastDefine=s);const n={name:e,dependencies:t,exporter:r,signatures:o,defined:!0};s&&s.external&&s.external.resolveExternal(n),this.profiler.logOperationStart({id:MODULE_DEFINE,specifier:e}),this.namedDefineRegistry.set(e,n),this.lastDefine=n,o.hashes&&Object.entries(o.hashes).forEach((([e,t])=>{this.checkModuleSignature(e,t)}))}registerExternalModules(e){e.map((e=>{if(!this.namedDefineRegistry.has(e)){let t,r;const o=new Promise(((o,s)=>{t=o,r=setTimeout((()=>{s(new LoaderError(MODULE_LOAD_TIMEOUT,[e]))}),MODULE_LOAD_TIMEOUT_TIMER)})).finally((()=>{clearTimeout(r)})),s={name:e,defined:!1,external:{resolveExternal:t,moduleDefPromise:o}};this.namedDefineRegistry.set(e,s)}}))}checkModuleSignature(e,t){const r=this.namedDefineRegistry.get(e);if(!r){const r={name:e,signatures:{ownHash:t},defined:!1};return void this.namedDefineRegistry.set(e,r)}const o=r.signatures?r.signatures.ownHash:void 0;if(o&&t!==o){const r=this.handleStaleModuleHook;r&&evaluateHandleStaleModuleHooks(r,{name:e,oldHash:o,newHash:t})}}setImportResolver(e){this.resolver=e}getExistingModuleRecord(e,t){const r=this.moduleRegistry.get(e);if(r)return this.storeModuleAlias(t,e),r;if(e!==t){const e=this.aliases.get(t);if(e){const t=this.moduleRegistry.get(e);if(t)return t}}return r}getModuleRecord(e,t){const r=this.getExistingModuleRecord(e,t);if(r)return r;const o=this.getModuleDef(e,t),s=o.then((e=>{const t=e.dependencies.map((e=>{if("exports"!==e)return invariant("require"!==e,NO_AMD_REQUIRE),this.getModuleDependencyRecord.call(this,e)})).filter((e=>void 0!==e));return Promise.all(t)})),n={id:e,module:Object.create(null),dependencyRecords:s,instantiation:o,evaluated:!1,evaluationPromise:null};return this.moduleRegistry.set(e,n),this.storeModuleAlias(t,e),n}storeModuleAlias(e,t){if(e!==t)if(this.aliases.has(e)){if(hasConsole){const r=this.aliases.get(e);r!==t&&console.warn(`Alias update attempt: ${e}=>${r}, ${t}`)}}else this.aliases.set(e,t)}async getModuleDependencyRecord(e){const t=await this.resolve(e);return this.getModuleRecord(t,e)}async topLevelEvaluation(e){return await this.instantiateAll(e,{}),this.evaluateModule(e,{})}async instantiateAll(e,t){if(!t[e.id]){t[e.id]=!0;const r=await e.dependencyRecords;if(r)for(let e=0;e<r.length;e++){const o=r[e];await this.instantiateAll(o,t)}}}async evaluateModule(e,t){const r=await e.dependencyRecords;r.length>0&&(t[e.id]=!0,await this.evaluateModuleDependencies(r,t));const{exporter:o,dependencies:s}=await e.instantiation,n={},i=await Promise.all(s.map((async e=>{if("exports"===e)return n;const t=await this.resolve(e),r=this.moduleRegistry.get(t);if(!r)throw new LoaderError(FAILED_DEP,[t]);const o=r.module;if(!r.evaluated)return this.getCircularDependencyWrapper(o);if(o)return o.__defaultInterop?o.default:o;throw new LoaderError(FAILED_DEP,[t])})));if(e.evaluated)return e.module;let a=o(...i);void 0!==a?(a={default:a},Object.defineProperty(a,"__defaultInterop",{value:!0})):this.isNamedExportDefaultOnly(n)&&Object.defineProperty(n,"__useDefault",{value:!0});const l=a||n;for(const t in l)Object.defineProperty(e.module,t,{enumerable:!0,set(e){l[t]=e},get:()=>l[t]});return l.__useDefault&&Object.defineProperty(e.module,"__useDefault",{value:!0}),l.__defaultInterop&&Object.defineProperty(e.module,"__defaultInterop",{value:!0}),l.__esModule&&Object.defineProperty(e.module,"__esModule",{value:!0}),e.evaluated=!0,Object.freeze(e.module),e.module}isNamedExportDefaultOnly(e){return void 0!==e&&2===Object.getOwnPropertyNames(e).length&&Object.prototype.hasOwnProperty.call(e,"default")&&Object.prototype.hasOwnProperty.call(e,"__esModule")}getCircularDependencyWrapper(e){const t=()=>e.__useDefault||e.__defaultInterop?e.default:e;return t.__circular__=!0,t}async evaluateModuleDependencies(e,t){for(let r=0;r<e.length;r++){const o=e[r];o.evaluated||t[o.id]||(t[o.id]=!0,await this.evaluateModule(o,t))}}async getModuleDef(e,t){this.lastDefine=void 0;const r=isUrl(e)?t!==e?t:void 0:e;let o=r&&this.namedDefineRegistry.get(r);if(o&&o.external)return o.external.moduleDefPromise;if(o&&o.defined)return o;const s=this.baseUrl,n=r||t;return this.profiler.logOperationStart({id:MODULE_FETCH,specifier:n}),Promise.resolve().then((async()=>{const t=this.loadHook;if(t)for(let r=0;r<t.length;r++){const o=(0,t[r])(e,s),n=isResponseAPromise(o)?await evaluateLoadHook(e,o):o;if(void 0===n)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);if(n&&null!==n)return evaluateLoadHookResponse(n,e)}return!1})).then((t=>{if(!0!==t&&hasDocument)return loadModuleDef(e)})).then((()=>{if(o=r&&this.namedDefineRegistry.get(r),o||(o=this.lastDefine),!o)throw new LoaderError(FAIL_INSTANTIATE,[e]);return this.profiler.logOperationEnd({id:MODULE_FETCH,specifier:n}),o})).catch((e=>{throw this.profiler.logOperationStart({id:MODULE_ERROR,specifier:n}),e}))}addLoaderPlugin(e){if("object"!=typeof e)throw new LoaderError(INVALID_HOOK);const{loadModule:t,resolveModule:r}=e;r&&(this.resolveHook?this.resolveHook.push(r):this.resolveHook=[r]),t&&(this.loadHook?this.loadHook.push(t):this.loadHook=[t])}registerHandleStaleModuleHook(e){this.handleStaleModuleHook?this.handleStaleModuleHook.push(e):this.handleStaleModuleHook=[e]}}function getMatch(e,t){if(t[e])return e;let r=e.length;do{const o=e.slice(0,r+1);if(o in t)return o}while(-1!==(r=e.lastIndexOf("/",r-1)))}function targetWarning(e,t,r){hasConsole&&console.warn("Package target "+r+", resolving target '"+t+"' for "+e)}function applyPackages(e,t,r){const o=getMatch(e,t);if(o){const r=t[o];if(null===r)return;if(!(e.length>o.length&&"/"!==r[r.length-1])){return e.length>o.length&&"/"===r[r.length-1]&&r.lastIndexOf(o)===r.length-o.length?r.substring(0,r.lastIndexOf(o))+encodeURIComponent(e):r+e.slice(o.length)}targetWarning(o,r,"should have a trailing '/'")}else if(r&&!isUrl(e))return r+encodeURIComponent(e)}function resolveImportMapEntry(e,t,r){e.scopes||(e.scopes={}),e.imports||(e.imports={});const o=e.scopes;let s=r&&getMatch(r,o);for(;s;){const e=applyPackages(t,o[s]);if(e)return e;s=getMatch(s.slice(0,s.lastIndexOf("/")),o)}return applyPackages(t,e.imports,e.default)||isUrl(t)&&t||void 0}function resolveAndComposePackages(e,t,r,o,s){for(const n in e){const i=resolveIfNotPlainOrUrl(n,r)||n,a=e[n];if("string"!=typeof a)continue;const l=resolveImportMapEntry(o,resolveIfNotPlainOrUrl(a,r)||a,s);l?t[i]=l:targetWarning(n,a,"bare specifier did not resolve")}}function resolveAndComposeImportMap(e,t,r={imports:{},scopes:{}}){const o={imports:Object.assign({},r.imports),scopes:Object.assign({},r.scopes),default:e.default};if(e.imports&&resolveAndComposePackages(e.imports,o.imports,t,r),e.scopes)for(const s in e.scopes){const n=resolveUrl(s,t);resolveAndComposePackages(e.scopes[s],o.scopes[n]||(o.scopes[n]={}),t,r,n)}return e.default&&(o.default=resolveIfNotPlainOrUrl(e.default,t)),o}class ImportMapResolver{constructor(e){this.importMap=e}resolve(e,t){return resolveImportMapEntry(this.importMap,e,t)}}const IMPORTMAP_SCRIPT_TYPE="lwr-importmap";function iterateDocumentImportMaps(e,t){const r=document.querySelectorAll(`script[type="${IMPORTMAP_SCRIPT_TYPE}"]`+t),o=Array.from(r).filter((e=>!e.src||(hasConsole&&console.warn("LWR does not support import maps from script src"),!1)));Array.prototype.forEach.call(o,e)}async function getImportMapFromScript(e){return Promise.resolve(e.innerHTML)}async function evaluateImportMaps(e){let t={imports:{},scopes:{}},r=Promise.resolve(t);if(hasDocument){if(e||(e=getBaseUrl()),!e)throw new LoaderError(NO_BASE_URL);iterateDocumentImportMaps((o=>{r=r.then((()=>getImportMapFromScript(o))).then((e=>{try{return JSON.parse(e)}catch(e){throw new LoaderError(BAD_IMPORT_MAP)}})).then((r=>(t=resolveAndComposeImportMap(r,o.src||e,t),t)))}),"")}return r}class Loader{constructor(e){let t=(e=e||{}).baseUrl,r=e.profiler;if(t&&(t=t.replace(/\/?$/,"/")),t||(t=getBaseUrl()),!t)throw new LoaderError(NO_BASE_URL);this.baseUrl=t,r||(r={logOperationStart:()=>{},logOperationEnd:()=>{}}),this.registry=new ModuleRegistry({baseUrl:t,profiler:r}),this.services=Object.freeze({addLoaderPlugin:this.registry.addLoaderPlugin.bind(this.registry),handleStaleModule:this.registry.registerHandleStaleModuleHook.bind(this.registry),appMetadata:e.appMetadata})}define(e,t,r,o){invariant("string"==typeof e,MISSING_NAME);let s=r,n=t,i=o;"function"==typeof n&&(s=t,n=[],i=r),i=i||{},invariant(Array.isArray(n),INVALID_DEPS),this.registry.define(e,n,s,i)}async load(e,t){return this.registry.load(e,t)}has(e){return this.registry.has(e)}async resolve(e,t){return this.registry.resolve(e,t)}async registerImportMappings(e){let t;if(t=e?resolveAndComposeImportMap(e,this.baseUrl,this.parentImportMap):await evaluateImportMaps(this.baseUrl),this.parentImportMap=t,this.parentImportMap){const e=new ImportMapResolver(this.parentImportMap);this.registry.setImportResolver(e)}}registerExternalModules(e){this.registry.registerExternalModules(e)}}exports.Loader=Loader,Object.defineProperty(exports,"__esModule",{value:!0})})); |
| New file |
| | |
| | | LWR.define("lwr/metrics/v/0_9_0",["exports"],function(T){"use strict";const V="lwr.bootstrap.",ue=`${V}end`,ne=`${V}error`,ce=`${ne}.count`,Y=`${V}duration`,P="lwr.loader.",C=`${P}module.define`,N=`${C}.count`,j=`${P}module.fetch`,_=`${j}.count`,_e=`${j}.duration`,oe=`${P}module.error`,S=`${oe}.count`,ie=`${P}mappings.fetch`,st=`${ie}.count`,ve=`${ie}.duration`,Q=`${P}mappings.error`,ze=`${Q}.count`,Te="lwr.router.",Le=`${Te}navigate`,dr=`${Le}.count`,W=`${Le}.duration`,Me=`${Te}view`,B=`${Me}.duration`,at=`${Te}error`,ke=`${at}.count`;T.BOOTSTRAP_DURATION=Y,T.BOOTSTRAP_END=ue,T.BOOTSTRAP_ERROR=ne,T.BOOTSTRAP_ERROR_COUNT=ce,T.BOOTSTRAP_PREFIX=V,T.LOADER_PREFIX=P,T.MAPPINGS_ERROR=Q,T.MAPPINGS_ERROR_COUNT=ze,T.MAPPINGS_FETCH=ie,T.MAPPINGS_FETCH_COUNT=st,T.MAPPINGS_FETCH_DURATION=ve,T.MODULE_DEFINE=C,T.MODULE_DEFINE_COUNT=N,T.MODULE_ERROR=oe,T.MODULE_ERROR_COUNT=S,T.MODULE_FETCH=j,T.MODULE_FETCH_COUNT=_,T.MODULE_FETCH_DURATION=_e,T.ROUTER_ERROR=at,T.ROUTER_ERROR_COUNT=ke,T.ROUTER_NAV=Le,T.ROUTER_NAV_COUNT=dr,T.ROUTER_NAV_DURATION=W,T.ROUTER_PREFIX=Te,T.ROUTER_VIEW=Me,T.ROUTER_VIEW_DURATION=B,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("lwr/init/v/0_9_0",["exports","lwr/metrics/v/0_9_0","lwr/profiler/v/0_9_0","lwc/v/2_41_4"],function(T,V,ue,ne){"use strict";function ce(j,_){return ne.createElement(j,{is:_})}function Y(j){return j.replace(/\/v\/[a-zA-Z0-9-_.]+$/,"").replace("/","-").replace(/([A-Z])/g,_=>`-${_.toLowerCase()}`)}const P=/-([a-z])/g;function C(j){return j.replace(P,_=>_[1].toUpperCase())}function N(j){if(typeof customElements!="undefined"&&typeof document!="undefined"){const _=document.querySelector("[lwr-root]");j.forEach(([_e,oe])=>{const S=Y(_e);let ie=document.body.querySelector(S);ie?document.querySelectorAll(S).forEach(ve=>{const Q=ce(S,oe);for(const{name:ze,value:Te}of ve.attributes){Q.setAttribute(ze,Te);const Le=C(ze);Le in Q&&(Q[Le]=Te)}for(;ve.childNodes.length>0;)Q.appendChild(ve.childNodes[0]);ve.parentElement.replaceChild(Q,ve)}):(ie=ce(S,oe),_?_.appendChild(ie):document.body.appendChild(ie))})}ue.logOperationStart({id:V.BOOTSTRAP_END})}T.getPropFromAttrName=C,T.init=N,T.toKebabCase=Y,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("webruntime/dynamicImportResourceHook/v/1_66_319-244_0",["exports","@app/basePath/v/1","@app/versionKey/v/1"],function(T,V,ue){"use strict";function ne(C){return C&&typeof C=="object"&&"default"in C?C:{default:C}}var ce=ne(V),Y=ne(ue);function P(C){const N="@salesforce/resourceUrl/",j="resourceUrl://";C.addLoaderPlugin({resolveModule:async _=>_.startsWith(N)?{url:`${j}${_}`}:null,loadModule:async _=>{if(_.startsWith(j)){const _e=_.split("/"),oe=_e[_e.length-1];return{data:`LWR.define('${N}${oe}', ['exports'], function(exports) { |
| | | exports.default = '${ce.default}/webruntime/org-asset/${Y.default}/resource-name/${oe}'; |
| | | });`,status:200}}return null}})}T.default=P,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("webruntime/o11yHook/v/1_66_319-244_0",["exports","lwr/loaderLegacy/v/0_9_0","@app/basePath/v/1","@app/apiBasePath/v/1","@salesforce/i18n/lang/v/1","webruntime/dispatcher/v/1","@app/o11yConfiguration/v/1","@app/o11yGuestToken/v/1","@app/isDesignMode/v/1","@app/isMobileAppMode/v/1","@app/isPreviewMode/v/1","@app/versionKey/v/1","@salesforce/site/Id/v/1"],function(T,V,ue,ne,ce,Y,P,C,N,j,_,_e,oe){"use strict";function S(u){return u&&typeof u=="object"&&"default"in u?u:{default:u}}var ie=S(ue),st=S(ne),ve=S(ce),Q=S(Y),ze=S(P),Te=S(C),Le=S(N),dr=S(j),W=S(_),Me=S(_e),B=S(oe);function at(u,t){var r=Object.keys(u);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(u);t&&(i=i.filter(function(s){return Object.getOwnPropertyDescriptor(u,s).enumerable})),r.push.apply(r,i)}return r}function ke(u){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?at(Object(r),!0).forEach(function(i){ni(u,i,r[i])}):Object.getOwnPropertyDescriptors?Object.defineProperties(u,Object.getOwnPropertyDescriptors(r)):at(Object(r)).forEach(function(i){Object.defineProperty(u,i,Object.getOwnPropertyDescriptor(r,i))})}return u}function ni(u,t,r){return t=K(t),t in u?Object.defineProperty(u,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):u[t]=r,u}function K(u){var t=Ut(u,"string");return typeof t=="symbol"?t:String(t)}function Ut(u,t){if(typeof u!="object"||u===null)return u;var r=u[Symbol.toPrimitive];if(r!==void 0){var i=r.call(u,t||"default");if(typeof i!="object")return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(u)}const xt={};var ii=Object.freeze({__proto__:null,_o11y:xt});class L{constructor(t){if(this._lazyMap=new Map,t!==void 0){if(typeof t=="number"&&t>0){this._maxSize=Math.ceil(t);return}throw new Error("maxSize must be a positive number")}}get maxSize(){return this._maxSize}get size(){return this._lazyMap.size}push(t,r){let i=this._lazyMap.get(t);if(!i){if(this.maxSize!==void 0&&this.size===this.maxSize)return!1;i=new Array,this._lazyMap.set(t,i)}return i.push(r),!0}getMessages(t,r){const i=this._lazyMap.get(t);return r&&this._lazyMap.has(t)&&this._lazyMap.set(t,[]),i||[]}getAllMessages(t){const r=new Map;for(const[i,s]of this._lazyMap.entries())s.length&&r.set(i,this.getMessages(i,t));return r}extractMessages(t){return this.getMessages(t,!0)}extractAllMessages(){return this.getAllMessages(!0)}get totalItemCount(){let t=0;for(const r of this._lazyMap.values())t+=r.length;return t}}class vt{constructor(){this.notImplemented="Method not implemented.";const t=typeof performance!="undefined";t?performance.timeOrigin?this._timeOrigin=performance.timeOrigin:this._timeOrigin=Date.now():this._timeOrigin=Date.now();const r=this._timeOrigin;t&&typeof performance.now=="function"?(this.perfNow=performance.now.bind(performance),this.time=()=>{const i=this.perfNow();return{tsNow:r+i,perfNow:i,timeOrigin:r}}):(this.perfNow=()=>Date.now()-r,this.time=()=>{const i=this.perfNow();return{tsNow:Date.now(),perfNow:i,timeOrigin:r}})}get isProduction(){return vt._isProduction}markProduction(){vt._isProduction=!0}_checkArgument(t,r){if(typeof r=="string")return typeof t===r;if(typeof r=="function")return t instanceof r;if(Array.isArray(r))return r.some(i=>this._checkArgument(t,i));throw new Error(`Invalid argKind ${r}`)}requireArgument(t,r,i){let s=t==null||t==="";const l=i!==void 0;if(!s&&l&&(s=!this._checkArgument(t,i)),s)throw new Error(`${r} argument is required${l?" and must be of a supported type.":"."}`)}requireArgumentIfDefined(t,r,i){if(t===void 0)return!1;if(t===null||t===""||!this._checkArgument(t,i))throw new Error(`${r} argument, if defined, must be of a supported type.`);return!0}checkForDenyListedValues(t,r,i){if(i.some(s=>t===s))throw new Error(`The value ${t} isn't allowed for ${r} argument.`)}checkForReservedCharacters(t,r,i){if(t&&i.some(s=>t.indexOf(s)>=0))throw new Error(`The argument ${r} isn't allowed to contain characters from ['${i.join(", ")}']. Received: ${t}.`)}generateUniqueId(t=16){const r=[],i="0123456789abcdef";if(!(t===void 0||t>0))throw new Error('If specified, the argument "length" must be a positive integer');for(let s=0;s<t;s++){const l=Math.floor(Math.random()*16);r.push(i[l])}return r.join("")}getXpath(t){function r(l){const c=l.localName;for(;l.nextElementSibling;)if(l=l.nextElementSibling,l.localName===c)return!0;return!1}function i(l,c){return l?i(l.previousElementSibling,c||l.localName)+(l.localName===c?1:0):1}function s(l){if(!l||l.nodeType!==1)return[""];const c=i(l)>1||r(l)?`${l.localName.toLowerCase()}[${i(l)}]`:l.localName.toLowerCase();return[...s(l.parentNode),c]}return s(t).join("/")}getAge(t){return t-this._timeOrigin}getConnectionType(){var t;let r;if(typeof navigator!="undefined"){const i=navigator;r=(t=i==null?void 0:i.connection)===null||t===void 0?void 0:t.effectiveType}return r}clone(t){return JSON.parse(JSON.stringify(t))}definedValueOrDefault(t,r){return t!==void 0?t:r}getGlobal(){if(typeof globalThis=="object")return globalThis;if(typeof self=="object")return self;throw new Error("Unable to locate globalThis or self")}getIsBeaconSupported(){var t;const r=this.getGlobal();return typeof((t=r.navigator)===null||t===void 0?void 0:t.sendBeacon)=="function"&&typeof r.Blob=="function"}estimateObjectSize(t){const r=new Set,i=[t];let s=0;for(;i.length;){const l=i.pop();if(typeof l=="boolean")s+=4;else if(typeof l=="string")s+=l.length*2;else if(typeof l=="number")s+=8;else if(l instanceof Uint8Array||l instanceof Uint8ClampedArray||l instanceof Uint16Array||l instanceof Uint32Array||l instanceof Int8Array||l instanceof Int16Array||l instanceof Int32Array||l instanceof Float32Array||l instanceof Float64Array)s+=l.byteLength;else if(typeof l=="object"){const c=l;if(!r.has(c)){r.add(c);for(const f in c)i.push(c[f])}}}return s}noProdThrow(t){if(!h.isProduction)throw t}}vt._isProduction=!1;const h=Object.freeze(new vt);class Ye{constructor(t){this._errorCounter=t,this._safeCatchMode=!1}tryCatch(t){try{t()}catch(r){this._prodSafeCatch(r)}}tryCatchReturn(t,r){try{return h.requireArgument(r,"noopValue"),t()}catch(i){return this._prodSafeCatch(i),r}}_prodSafeCatch(t){let r;try{if(r=!h.isProduction,r)throw t;if(this._safeCatchMode)throw this._safeCatchMode=!1,new Error("Internal error in prodSafeCatch.");if(this._safeCatchMode=!0,this._errorCounter&&this._errorCounter.increment(),!(t instanceof Error)){const i=t&&t.message||(typeof t.toString=="function"?t.toString():"");t=new Error(i)}this._safeCatchMode=!1}catch(i){if(r)throw i;if(i&&console&&typeof console.error=="function")try{console.error(i)}catch(s){}this._safeCatchMode=!1}}}class oi{getSchemaId(t){return`${t.namespace}.${t.name}`}isInternal(t){return(t==null?void 0:t.namespace)==="sf.instrumentation"}makePayload(t,r,i=!0){if(!i||t!==void 0&&r!==void 0)return{schema:t,payload:r}}checkSchema(t){h.requireArgument(t,"schema","object"),h.requireArgument(t.namespace,"schema.namespace","string"),h.requireArgument(t.name,"schema.name","string"),h.requireArgument(t.pbjsSchema,"schema.pbjsSchema","object");const r=t.namespace.split(".");if(r.length!==2)throw new Error(`Schema "${this.getSchemaId(t)}" must have a namespace of the form "domain.feature".`);return{domain:r[0],feature:r[1],message:t.name}}_getAnyNestedObject(t,r){return r.reduce((i,s)=>{const l=i.nested;if(l){const c=l[s];if(c)return c}throw new Error(`Cannot locate ${r.join(".")} in schema with ID ${this.getSchemaId(t)}`)},t.pbjsSchema)}getTypes(t){const r=this.checkSchema(t),s=this._getAnyNestedObject(t,[r.domain,r.feature]).nested;if(!s)throw new Error(`Cannot parse schema with ID ${this.getSchemaId(t)}`);return s}getType(t,r){h.requireArgument(r,"messageName","string");const s=this.getTypes(t)[r];if(!s)throw new Error(`Cannot locate message ${r} in schema with ID ${this.getSchemaId(t)}`);return s}getOptions(t,r,i){i&&h.requireArgument(r,"messageName","string");const s=this.checkSchema(t);if(!r)return this._getAnyNestedObject(t,[s.domain,s.feature]).options;const l=this.getType(t,r);if(!i)return l.options;const c=l.fields[i];if(!c){const f=this.getSchemaId(t);throw new Error(`Cannot locate field ${i} in message ${r} in schema with ID ${f}`)}return c.options}}const H=new oi;var bt=Object.freeze({__proto__:null,LazyMapToList:L,PublicSafety:Ye,schemaUtil:H,utility:h});const si={namespace:"sf.instrumentation",name:"Activity",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Activity:{reserved:[[5,5],[7,7]],fields:{duration:{id:3,type:"double"},stopReason:{id:6,type:"string"},isRoot:{id:8,type:"bool"},timerOverridden:{id:12,type:"uint32"},name:{options:{"(meta.max_length)":25},id:2,type:"string"},isSampled:{id:11,type:"bool"},preRootId:{id:9,type:"string"},id:{id:1,type:"string"},userPayload:{id:4,type:"Payload"},errorCount:{id:10,type:"uint32"},parentId:{id:13,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},ai={namespace:"sf.instrumentation",name:"Error",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Error:{reserved:[[5,5],[7,7]],fields:{activityId:{id:6,type:"string"},stack:{id:3,type:"string"},name:{id:1,type:"string"},message:{options:{"(meta.max_length)":200},id:2,type:"string"},userPayload:{id:4,type:"Payload"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},li={namespace:"sf.instrumentation",name:"IdleDetectorReport",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{IdleDetectorReport:{fields:{listenerCount:{id:3,type:"uint32"},busyTasks:{rule:"repeated",id:5,type:"string"},busyDurations:{rule:"repeated",id:6,type:"double"},pollableCount:{id:4,type:"uint32"},pollCounts:{rule:"repeated",id:8,type:"double"},logThreshold:{id:2,type:"double"},maxDuration:{id:1,type:"double"},pollables:{rule:"repeated",id:7,type:"string"}}}}}}}}}},ui={namespace:"sf.instrumentation",name:"InstrumentedEvent",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{MouseEvent:{fields:{cancelable:{id:5,type:"bool"},ctrlKey:{id:9,type:"bool"},type:{id:25,type:"string"},button:{id:3,type:"uint32"},offsetX:{id:17,type:"uint32"},eventPhase:{id:12,type:"uint32"},shiftKey:{id:23,type:"bool"},offsetY:{id:18,type:"uint32"},composed:{id:8,type:"bool"},altKey:{id:1,type:"bool"},isTrusted:{id:13,type:"bool"},buttons:{id:4,type:"uint32"},movementY:{id:16,type:"uint32"},clientY:{id:7,type:"uint32"},clientX:{id:6,type:"uint32"},movementX:{id:15,type:"uint32"},defaultPrevented:{id:10,type:"bool"},metaKey:{id:14,type:"bool"},timeStamp:{id:24,type:"double"},bubbles:{id:2,type:"bool"},detail:{id:11,type:"int64"},pageY:{id:20,type:"uint32"},pageX:{id:19,type:"uint32"},screenX:{id:21,type:"uint32"},screenY:{id:22,type:"uint32"}}},InstrumentedEvent:{oneofs:{event:{oneof:["mouseEvent"]}},reserved:[[4,4],"xpath",[6,6],[8,8]],fields:{mouseEvent:{id:7,type:"MouseEvent"},auto:{id:3,type:"bool"},parentComponent:{id:2,type:"string"},ownerComponent:{id:1,type:"string"},userPayload:{id:5,type:"Payload"},simplePath:{id:9,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},y={namespace:"sf.instrumentation",name:"Simple",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Simple:{fields:{text:{options:{"(meta.max_length)":25},id:1,type:"string"}}}}}}}}}};class w{get isBusy(){return this._isOk?this._busyCount>0:void 0}constructor(t,r,i,s){this.name=t,this._doneCallback=i,this._overDoneCallback=s,this._busyCount=0,this._isOk=!0,this._busyCount=r}add(){this._isOk&&(this._busyCount+=1)}done(){this._isOk&&(this._busyCount>0?(this._busyCount-=1,this._busyCount||this._doneCallback()):(this._isOk=!1,this._overDoneCallback()))}}const De=300;class $e{constructor(t){this._taskers=new Map,this._listeners=new Set,this._busyCheckers=new Map,this._logThreshold=De,this._endedTasks=new Array,this._pollableReport=new Array,h.requireArgumentIfDefined(t==null?void 0:t.logThreshold,"options.logThreshold","number")&&(this._logThreshold=t.logThreshold),h.requireArgumentIfDefined(t==null?void 0:t.reportListener,"options.reportListener","function")&&(this._reportListener=t.reportListener),h.requireArgumentIfDefined(t==null?void 0:t.errorListener,"options.errorListener","function")&&(this._errorListener=t.errorListener)}requestIdleDetectedCallback(t){h.requireArgument(t,"callback","function"),this._listeners.size===0&&(this._firstCallbackTime=h.time().perfNow),this._listeners.add(t),this._checkIfLoaded()}_reportTaskEnded(t){if(this._listeners.size){const r=Object.assign({},this._taskers.get(t));this._endedTasks.push(r)}}declareNotifierTaskSingle(t){h.requireArgument(t,"name","string");const r=this._addTasker(t,1);return{get isBusy(){return r.isBusy},done:()=>{r.done(),this._taskers.delete(r)}}}declareNotifierTaskMulti(t,r=0){if(h.requireArgument(t,"name","string"),r!==void 0&&(h.requireArgument(r,"existingBusyCount","number"),!Number.isInteger(r)||r<0))throw new Error("existingBusyCount accepts only non-negative integers");const i=this._addTasker(t,r);return{get isBusy(){return i.isBusy},add:()=>{if(!i.isBusy){const l=this._taskers.get(i);l.start=h.time().perfNow,l.end=void 0}i.add()},done:i.done.bind(i)}}declarePollableTaskMulti(t,r){h.requireArgument(t,"name","string"),h.requireArgument(r,"isBusyChecker","function"),this._busyCheckers.set(r,t)}_addTasker(t,r){const i=new w(t,r,()=>{this._taskers.get(i).end=h.time().perfNow,this._reportTaskEnded(i),this._checkIfLoaded()},()=>{var s;(s=this._errorListener)===null||s===void 0||s.call(this,`Overdone: ${i.name}`),h.noProdThrow(`Tasker '${i.name}' is done too many times.`)});return this._taskers.set(i,{name:t,start:r>0?h.time().perfNow:void 0,end:void 0}),i}_areAllNotifiersIdle(){return!Array.from(this._taskers.keys()).some(t=>t.isBusy)}_getFirstBusyPollable(){const t=Array.from(this._busyCheckers).find(r=>{var i;const s=r[0],l=r[1];try{return s()}catch(c){return(i=this._errorListener)===null||i===void 0||i.call(this,c,`BusyChecker ${l}`),h.noProdThrow(c),!1}});return t?t[1]:void 0}_checkIfLoaded(){!this._listeners.size||(this._timerCheckQueued&&clearTimeout(this._timerCheckQueued),this._areAllNotifiersIdle()&&(this._timerCheckQueued=setTimeout(()=>{this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},40)},0)))}_doubleCheck(){if(this._timerCheckQueued=void 0,this._areAllNotifiersIdle()){const t=this._getFirstBusyPollable();if(t!==void 0)this._addToPollableReport(t),this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},15);else{const r=h.time().perfNow-this._firstCallbackTime,i=Array.from(this._listeners.values());this._listeners.clear(),this._firstCallbackTime=void 0;const s=this._endedTasks.splice(0),l=this._pollableReport.splice(0);this._notify(i,r,s,l)}}}_addToPollableReport(t){const r=this._pollableReport.length?this._pollableReport[this._pollableReport.length-1]:void 0;(r==null?void 0:r.name)===t?r.count+=1:this._pollableReport.push({name:t,count:1})}_notify(t,r,i,s){var l;if(r>=this._logThreshold&&this._reportListener){const f=this._getReport(r,t.length,i,s);this._reportListener(f)}t.reverse();const c=h.time().tsNow;for(const[f,g]of t.entries())try{g(c)}catch(p){(l=this._errorListener)===null||l===void 0||l.call(this,p,`Listener #${t.length-1-f}`),h.noProdThrow(p)}}getReport(){const t=h.time().perfNow,r=this._firstCallbackTime>0?t-this._firstCallbackTime:void 0,i=Array.from(this._taskers.entries()).filter(s=>s[0].isBusy).map(s=>({name:s[1].name,start:s[1].start,end:t}));return this._getReport(r,this._listeners.size,this._endedTasks.concat(i),this._pollableReport)}_getReport(t,r,i,s){const l=i.map(c=>({name:c.name,duration:c.end-c.start})).sort((c,f)=>f.duration-c.duration);return{logThreshold:this._logThreshold,maxDuration:t,listenerCount:r,pollableCount:this._busyCheckers.size,busyTasks:l.map(c=>c.name),busyDurations:l.map(c=>c.duration),pollables:s.map(c=>c.name),pollCounts:s.map(c=>c.count)}}}const be=32,hr=16,fr=16,tn="traceparent",Fe="b3",rn="X-B3-TraceId",lt="X-B3-SpanId",pr="X-B3-Sampled",nn="X-B3-ParentSpanId",mr="fetch",Bt="xhr_send";class b{constructor(t,r){this._instr=t,this._idleDetector=r,h.requireArgument(t,"_instr","object"),h.requireArgument(r,"_idleDetector","object")}static _getB3CompactFormat(t,r,i,s){let l=`${t}-${r}`;return(i!==void 0||s!==void 0)&&(l+=i?"-1":"-0",s!==void 0&&(l+=`-${s}`)),l}static _getW3CompactFormat(t,r,i){return`00-${t}-${r}-${i?"01":"00"}`}static _conformTextAsId(t,r){t=t.toLowerCase();const i=t.length;for(let s=0;s<i;s+=1){const l=t[s];if(!(l>="a"&&l<="f")&&!(l>="0"&&l<="9"))throw new Error(`The text '${t}' has an invalid character at index #${s}`)}return i>r?t.substr(i-r):i<r?t.padStart(r,"0"):t}static getHeaders(t,r,i,s){h.requireArgument(t,"traceId","string"),h.requireArgument(r,"spanId","string");const l=s==null?void 0:s.useB3Headers;t=this._conformTextAsId(t,(s==null?void 0:s.traceIdEffectiveLength)!==void 0?s.traceIdEffectiveLength:l?hr:be),r=this._conformTextAsId(r,fr);const c=s&&s.parentSpanId!==void 0&&this._conformTextAsId(s.parentSpanId,fr)||void 0,f={};return l?(s==null?void 0:s.useCompactHeader)?f[Fe]=this._getB3CompactFormat(t,r,i,c):(f[rn]=t,f[lt]=r,c!==void 0&&(f[nn]=c),i!==void 0&&(f[pr]=i?"1":"0")):f[tn]=this._getW3CompactFormat(t,r,i),f}_disableNetworkInstrumentation(){b._isNetworkInstrumentationEnabled&&(b._originalFetch&&(b._global.fetch=b._originalFetch,b._originalFetch=void 0),b._originalXhr&&(b._global.XMLHttpRequest=b._originalXhr,b._originalXhr=void 0),b._originalXhrOpen&&(b._global.XMLHttpRequest.prototype.open=b._originalXhrOpen,b._originalXhrOpen=void 0),b._originalXhrSend&&(b._global.XMLHttpRequest.prototype.send=b._originalXhrSend,b._originalXhrSend=void 0),b._isNetworkInstrumentationEnabled=!1)}_enableNetworkInstrumentation(t,r,i,s,l,c){typeof b._global.fetch=="function"&&(this._overrideFetch(t,r,i,s,l,c),b._isNetworkInstrumentationEnabled=!0),typeof b._global.XMLHttpRequest=="function"&&(this._overrideXhr(t,r,i,s,l,c),b._isNetworkInstrumentationEnabled=!0)}static _getTraceHeaders(t,r,i,s){let l=(t==null?void 0:t.getTraceHeaders(r))||{};if(typeof(r==null?void 0:r.headerProcessor)=="function")l=r.headerProcessor({method:i,url:s,defaultHeaders:l});else if(typeof window=="object"){let c;try{c=new URL(s)}catch(f){}c&&c.host!==window.location.host&&(l=void 0)}return l||{}}_overrideFetch(t,r,i,s,l,c){b._originalFetch=b._global.fetch;const f=async(g,p,...E)=>{let v;try{c==null||c.add();const A=p==null?void 0:p.o11y;if(!(A==null?void 0:A.skipInstr))v=t.startActivity(i||mr);else{b._reqIndex+=1;try{if(g instanceof URL)g.searchParams.append("o11y",b._reqIndex.toString());else if(typeof g=="string"){const O=new URL(g),X=`o11y=${b._reqIndex}`;O.search+=O.search.startsWith("?")?`&${X}`:X,g=O.toString()}}catch(O){}}if(p==null||delete p.o11y,s){let O=p==null?void 0:p.method,X=g==null?void 0:g.toString();g instanceof Request&&(O||(O=g.method),X=g.url);const ye=b._getTraceHeaders(v,l,O,X);!this._applyTraceHeaders(g,p,ye)&&p===void 0&&(p={headers:ye})}return await b._originalFetch.call(b._global,g,p,...E)}catch(A){throw r&&(v?v.error(A):t.error(A)),A}finally{v==null||v.stop(),c==null||c.done()}};b._global.fetch=f}_overrideXhr(t,r,i,s,l,c){b._originalXhr=b._global.XMLHttpRequest,b._originalXhrOpen=b._originalXhr.prototype.open,b._originalXhrSend=b._originalXhr.prototype.send,b._originalXhr.prototype.open=function(g,p,E,v,A){this._o11y={method:g,url:p==null?void 0:p.toString()},b._originalXhrOpen.call(this,g,p,E,v,A)},b._originalXhr.prototype.send=function(...g){let p;try{c==null||c.add();const E=this;if(E._o11y=E._o11y||{},E._o11y.activity=p=t.startActivity(i||Bt),s){const v=b._getTraceHeaders(p,l,E._o11y.method,E._o11y.url);Object.entries(v).forEach(A=>{E.setRequestHeader(A[0],A[1])})}b._originalXhrSend.call(this,...g)}catch(E){throw r&&(p?p.error(E):t.error(E)),p==null||p.stop(),c==null||c.done(),E}};const f=new Proxy(b._originalXhr,{construct(g){const p=new g;return p.addEventListener("load",()=>{var E,v;(v=(E=p._o11y)===null||E===void 0?void 0:E.activity)===null||v===void 0||v.stop(),c==null||c.done()}),p.addEventListener("error",E=>{var v;const A=new Error("XHR Network-Level Error"),O=(v=p._o11y)===null||v===void 0?void 0:v.activity;O?(r&&O.error(A),O.stop()):r&&t.error(A),c==null||c.done()}),p.addEventListener("abort",()=>{var E,v;(v=(E=p._o11y)===null||E===void 0?void 0:E.activity)===null||v===void 0||v.discard(),c==null||c.done()}),p}});b._global.XMLHttpRequest=f}networkInstrumentation(t){var r;if(h.requireArgument(t,"options",["boolean","object"]),this._disableNetworkInstrumentation(),t){const i=typeof t=="object"?t:{};let s;h.definedValueOrDefault(i.useTasker,!0)&&(s=(r=this._idleDetector)===null||r===void 0?void 0:r.declareNotifierTaskMulti("o11y network")),this._enableNetworkInstrumentation(h.definedValueOrDefault(i.instrumentation,this._instr),h.definedValueOrDefault(i.logErrors,!0),i.activityName,h.definedValueOrDefault(i.useTracing,!0),i.tracingHeadersOptions,s)}}resetRequestCounter(){b._reqIndex=0}_applyTraceHeaders(t,r,i){if((r==null?void 0:r.headers)!==void 0){if(r.headers instanceof Headers&&typeof r.headers.set=="function")return Object.entries(i).forEach(([s,l])=>{r.headers.set(s,l)}),!0;if(Array.isArray(r.headers))return Object.entries(i).forEach(s=>{r.headers.push(s)}),!0;if(typeof r.headers=="object")return r.headers=Object.assign(r.headers,i),!0}else{if(t instanceof Request&&t.headers instanceof Headers)return Object.entries(i).forEach(([s,l])=>{t.headers.set(s,l)}),!0;if(r)return r.headers=Object.assign({},i),!0}return!1}}b._global=h.getGlobal(),b._isNetworkInstrumentationEnabled=!1,b._reqIndex=0;var de;(function(u){u[u.none=0]="none",u[u.start=1]="start",u[u.stop=2]="stop",u[u.both=3]="both"})(de||(de={}));const gr="timedout",yr="terminated",_r="discarded",U={timedout:gr,terminated:yr,discarded:_r};class q{constructor(t,r,i,s,l,c,f){this._name=t,this._rootId=r,this._onStopped=i,this._onError=s,this._isSampled=f,this._errorCount=0,this._timerOverridden=de.none;const{tsNow:g,perfNow:p}=h.time();if(q._count+=1,this._id=c||h.generateUniqueId(),this._usePerf=typeof performance!="undefined"&&typeof performance.mark=="function"&&typeof performance.measure=="function",this._usePerf){this._perfName=`${this._name}__${q._count}`,this._perfId=`${this._name}__${this.id}`;try{performance.mark(this._perfId)}catch(E){this._usePerf=!1}}this._startTimestamp=g,this._startPerfTime=p,l>0&&(this._timer=setTimeout(()=>{this._stopReason=this._stopReason||U.timedout,this.stop()},l)),this._safety=new Ye}get id(){return this._id}getId(){return this.id}getRootId(){return this._rootId}get stopReason(){return this._stopReason}error(t,r,i){this._safety.tryCatch(()=>{this._errorCount+=1,typeof t=="string"&&(t=new Error(t)),this._onError(t,this._getDetail(r,i))})}stop(t,r,i){this._safety.tryCatch(()=>{if(h.requireArgumentIfDefined(t,"userSchemaOrText",["object","string"]),h.requireArgumentIfDefined(r,"userData","object"),i){const s=i.perfStartOverride,l=h.requireArgumentIfDefined(s,"options.perfStartOverride","number"),c=i.perfStopOverride,f=h.requireArgumentIfDefined(c,"options.perfStopOverride","number");if(l&&s<0)throw new Error("perfStartOverride, if defined, must be >= 0");if(f&&(c<0||c<(l?s:this._startPerfTime)))throw new Error("perfStopOverride, if defined, must be >= 0 and >= startTime")}this._stopInternal(t,r,i)})}_overrideTimer(t,r){t!==void 0&&(this._startTimestamp=Math.round(this._startTimestamp-(this._startPerfTime-t)),this._startPerfTime=t,this._setTimerOverride(de.start)),r!==void 0&&(this._stopPerfTime=r,this._setTimerOverride(de.stop))}_setTimerOverride(t){this._timerOverridden===de.both||this._timerOverridden===t||t===de.none||(this._timerOverridden=this._timerOverridden===de.none?t:de.both)}_stopInternal(t,r,i){const s=h.perfNow();if(this._usePerf)try{this._stopReason!==U.discarded&&performance.measure(this._perfName,this._perfId),performance.clearMarks(this._perfId),performance.clearMeasures(this._perfName)}catch(c){}if(this._timer&&(clearTimeout(this._timer),this._timer=void 0),this.isStopped)return;i&&this._overrideTimer(i.perfStartOverride,i.perfStopOverride),this._stopPerfTime=this._timerOverridden===de.none||this._timerOverridden===de.start?s:this._stopPerfTime;const l=this._getDetail(t,r);this._onStopped(l)}get isStopped(){return this._stopPerfTime!==void 0}discard(){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||U.discarded,this.stop()})}terminate(t,r,i){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||U.terminated,this.stop(t,r,i)})}getIsSampled(){return this._isSampled||!1}_getDetail(t,r){return{id:this._id,rootId:this._rootId,name:this._name,userSchemaOrText:t,userData:r,stopReason:this._stopReason,startTimestamp:this._startTimestamp,startPerfTime:this._startPerfTime,stopPerfTime:this._stopPerfTime,errorCount:this._errorCount,isSampled:this.getIsSampled(),timerOverridden:this._timerOverridden}}getTraceHeaders(t){const r=this.id,i=this._rootId||r;return b.getHeaders(i,r,this.getIsSampled(),t)}getStartTimestamp(){return this._startTimestamp}getStartPerfTime(){return this._startPerfTime}getStopPerfTime(){return this._stopPerfTime}}q._count=0;const He=new Array(16).fill(0).join("");class ci{getId(){return He}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(t){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const on=Object.freeze(new ci);class sn{getInstrumentedEventData(t,r,i){var s;const l={ownerComponent:r.tagName,parentComponent:((s=r.parentElement)===null||s===void 0?void 0:s.tagName)||void 0,event:t,simplePath:h.getXpath(r)};return i&&(l.userPayload=H.makePayload(i.schema,i.payload,!0)),l}getMouseEventData(t){return{altKey:t.altKey,bubbles:t.bubbles,button:t.button,buttons:t.buttons,cancelable:t.cancelable,clientX:t.clientX,clientY:t.clientY,composed:t.composed,defaultPrevented:t.defaultPrevented,detail:t.detail,eventPhase:t.eventPhase,isTrusted:t.isTrusted,timeStamp:t.timeStamp,type:t.type,ctrlKey:t.ctrlKey,metaKey:t.metaKey,movementX:t.movementX,movementY:t.movementY,offsetX:t.offsetX,offsetY:t.offsetY,pageX:t.pageX,pageY:t.pageY,screenX:t.screenX,screenY:t.screenY,shiftKey:t.shiftKey}}}const vr=new sn,qt=1e4,br=1e4,wt=0,di=2147483647,ln=-2147483648,wr=4294967295,he=9223372036854776e3,un=-9223372036854776e3,cn=18446744073709552e3;class Er{constructor(t,r,i,s){this.errorCode=t,this.fields=r,this.expected=i,this.received=s}asMessage(t){const r=this.fields[0]+this.fields.slice(1).reduce((s,l)=>Number(l)>=0?`${s}[${l}]`:`${s}.${l}`,"");let i;switch(this.errorCode){case 1:i="Repeated field must be an array";break;case 2:i=`Expected type ${this.expected} but received type ${this.received}`;break;case 3:i="Value must be finite";break;case 4:i="Value is out of range for its type";break;case 5:i="Bytes array is malformed";break;case 6:i="Exceeded app limit for maximum string length";break;case 7:i="Exceeded app limit for item count";break;case 12:i="Value must be an integer";break;case 13:i="Values like null or undefined are not allowed for items in repeated fields";break;default:i=`Unknown error code: ${this.errorCode}`;break}return`Schema ${t} on field "${r}": ${i}`}}class dn{validate(t,r,i=!1){const s=H.checkSchema(t);h.requireArgument(r,"data","object");const l=H.getSchemaId(t),c=new Array,f=H.getTypes(t);if(this._validateFields(c,[],r,f[s.message],f,l),c.length&&!i)throw new Error(c[0].asMessage(l));return c}_validateFields(t,r,i,s,l,c){const f=s.oneofs||{},g=s.fields||{};for(const p in i){const E=i[p];if(E!=null){const v=(A,O,X)=>this._matchFieldTypes(t,[...r,p],E,A,l,c,p,O,X);f[p]?v(g[f[p].oneof[0]].type):g[p]&&v(g[p].type,g[p].rule==="repeated")}}}_matchFieldTypes(t,r,i,s,l,c,f,g,p){let E;if(g)Array.isArray(i)?(i.length>br&&(E=7),i.forEach((v,A)=>{this._matchFieldTypes(t,[...r,A.toString()],v,s,l,c,f,void 0,!0)})):E=1;else if(i==null||i===void 0)p&&(E=13);else{let v,A;switch(s){case"string":A="string",i.length>qt&&(E=6);break;case"bytes":A="object",i instanceof Uint8Array||(E=5);break;case"bool":A="boolean";break;case"uint32":A="number",v={min:wt,max:wr,isInt:!0,isItem:p};break;case"int32":case"sint32":case"fixed32":case"sfixed32":A="number",v={min:ln,max:di,isInt:!0,isItem:p};break;case"uint64":A="number",v={min:wt,max:cn,isInt:!0,isItem:p};break;case"fixed64":case"sfixed64":case"int64":case"sint64":A="number",v={min:un,max:he,isInt:!0,isItem:p};break;case"double":case"float":A="number",v={min:Number.NEGATIVE_INFINITY,max:Number.POSITIVE_INFINITY,isInt:!1,isItem:p};break;default:new Set(Object.keys(l)).has(s)&&(this._validateFields(t,r,i,l[s],l,c),A="object");break}typeof i!==A?t.push(new Er(2,r,s,typeof i)):v&&(v.isInt&&!Number.isFinite(i)?E=3:v.isInt&&!Number.isInteger(i)?E=12:!(!v.isInt&&Number.isNaN(i))&&!(i>=v.min&&i<=v.max)&&(E=4))}E&&t.push(new Er(E,r))}}const Tr=new dn;class hn{constructor(t,r,i,s,l){this._name=t,this._ownerName=r,this._ownerAppName=i,this._tags=s,this._buckets=l,this._values=new Array,this._createdOn=h.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}getBuckets(){return this.buckets}get buckets(){return this._buckets.slice(0,this._buckets.length)}get values(){return this._values.slice(0,this._values.length)}record(t){if(typeof t=="number"){this._values.push(t),this._lastUpdatedOn=h.time().tsNow;return}throw new Error("BucketHistogram can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class fn{constructor(t,r,i,s){this._name=t,this._ownerName=r,this._ownerAppName=i,this._tags=s,this._value=0,this._createdOn=h.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this._value}increment(t=1){if(typeof t=="number"&&t>0){this._value+=Math.round(t),this._lastUpdatedOn=h.time().tsNow;return}throw new Error("UpCounter can only increment positive numbers.")}reset(){this._lastUpdatedOn=void 0,this._value=0}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class pn{constructor(t,r,i,s){this._name=t,this._ownerName=r,this._ownerAppName=i,this._tags=s,this._values=new Array,this._createdOn=h.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}get values(){return this._values.slice(0,this._values.length)}record(t){if(typeof t=="number"){this._values.push(t),this._lastUpdatedOn=h.time().tsNow;return}throw new Error("ValueRecorder can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class ge{constructor(t){if(this._map=new Map,typeof t=="number"&&t>0){this._maxSize=Math.ceil(t);return}throw new Error("maxSize must be a positive number")}get maxSize(){return this._maxSize}get(t){return this._map.get(t)}has(t){return this._map.has(t)}set(t,r){return this.has(t)||this._map.size<this.maxSize?(this._map.set(t,r),!0):!1}getElements(){return Array.from(this._map.values())}clear(){this._map.clear()}}const Gt=1e3,Se=500,Vt=500;var J;(function(u){u[u.Counter=0]="Counter",u[u.Percentile=1]="Percentile",u[u.BucketHistogram=2]="BucketHistogram"})(J||(J={}));class jt{constructor(t,r){this._ownerName=t,this._getOwnerAppName=r,this._upCounters=new ge(Gt),this._valueRecorders=new ge(Se),this._bucketHistograms=new ge(Vt)}incrementCounter(t,r,i=!1,s={}){this._tagError(s,i),this._upCounter(t,s).increment(r)}trackValue(t,r,i=!1,s={}){this._tagError(s,i),this._valueRecorder(t,s).record(r)}bucketValue(t,r,i,s=!1,l={}){this._tagError(l,s),this._bucketHistogram(t,l,i).record(r)}_bucketHistogram(t,r,i){const{key:s,sortedTags:l}=this._getKeyAndSortedTags(t,r,J.BucketHistogram);let c=this._bucketHistograms.get(s);if(!c&&(c=new hn(t,this._ownerName,this._getOwnerAppName(),l,i),!this._bucketHistograms.set(s,c)))throw new Error(`Max size of ${Vt} exceeded for BucketHistograms`);return c}_upCounter(t,r){const{key:i,sortedTags:s}=this._getKeyAndSortedTags(t,r,J.Counter);let l=this._upCounters.get(i);if(!l&&(l=new fn(t,this._ownerName,this._getOwnerAppName(),s),!this._upCounters.set(i,l)))throw new Error(`Max size of ${Gt} exceeded for UpCounters`);return l}_valueRecorder(t,r){const{key:i,sortedTags:s}=this._getKeyAndSortedTags(t,r,J.Percentile);let l=this._valueRecorders.get(i);if(!l&&(l=new pn(t,this._ownerName,this._getOwnerAppName(),s),!this._valueRecorders.set(i,l)))throw new Error(`Max size of ${Se} exceeded for ValueRecorders`);return l}getUpCounters(){return this._upCounters.getElements()}getValueRecorders(){return this._valueRecorders.getElements()}getBucketHistograms(){return this._bucketHistograms.getElements()}_tagError(t,r){t.status=r===!0?"error":"success"}_getKeyAndSortedTags(t,r,i){const s=Object.keys(r).sort().reduce((c,f)=>(c[f]=r[f],c),{});return{key:`${J[i]}:${t}${JSON.stringify(s)}`,sortedTags:s}}}class Qe{constructor(){this.isMock=!0}}const mn=void 0,Et=["`"],Sr={internalError:"o11y-error"},Ue=Object.freeze(Array.from(Object.values(Sr)));class ut{constructor(t,r){this._nextGen=t,this._name=r,this._onActivityStoppedCallback=this._handleActivityStop.bind(this),this._onActivityErrorCallback=this._handleActivityError.bind(this);for(const s of Et)if(this._name.indexOf(s)>=0)throw new Error(`Name cannot include the reserved character "${s}"`);this._safety=new Ye({increment:s=>this._incrementError(s)}),this._metrics=this._initMetrics();const i=H.getOptions(y,"Simple","text");this._simpleTextMaxLength=i?i["(meta.max_length)"]:qt}_initMetrics(){return new jt(this.name,()=>this._nextGen.appName||ut.defaultAppName)}_incrementError(t=1){this._metrics.incrementCounter(Sr.internalError,t,!1)}get name(){return this._name}_wrapUserPayload(t,r,i=!1){let s;return typeof t=="string"?(s=y,t?r={text:t.substring(0,this._simpleTextMaxLength)}:r=void 0):s=t,H.makePayload(s,r,i)}_getEffectiveRootId(t){var r,i;return(i=(r=t==null?void 0:t.instrumentationContext)===null||r===void 0?void 0:r.rootId)!==null&&i!==void 0?i:this._nextGen.getDefaultInstrumentationContext().rootId}log(t,r,i){this._safety.tryCatch(()=>{const s=h.time().tsNow;h.requireArgument(t,"userSchemaOrText",["object","string"]),h.requireArgumentIfDefined(r,"userData","object"),h.requireArgumentIfDefined(i,"options","object");const l=this._wrapUserPayload(t,r);(l==null?void 0:l.payload)&&this._logInternal(this.name,l.schema,l.payload,s,this._getEffectiveRootId(i))})}_logInternal(t,r,i,s,l){this._checkInputs(r,i);const c=this._getPayloadFromProvider(this._nextGen.appPayloadProvider),f=this._getPayloadFromProvider(this._nextGen.pagePayloadProvider);return this._nextGen.addLog(t,r,i,s,l,f,c)}error(t,r,i,s){return this._safety.tryCatch(()=>{h.requireArgumentIfDefined(r,"userSchemaOrText",["object","string"]),h.requireArgumentIfDefined(i,"userData","object"),h.requireArgumentIfDefined(s,"options","object");const l=this._getEffectiveRootId(s);this._errorInternal(t,r,i,void 0,l)})}_errorInternal(t,r,i,s,l){const c=h.time().tsNow;let f;if(t instanceof Error)f=t;else{let E;t==null||typeof t.toString!="function"?E="UNKNOWN":E=t.toString(),f=new Error(E)}const g=this._wrapUserPayload(r,i,!0),p={name:f.name,message:f.message,stack:f.stack,userPayload:g,activityId:s};return this._logInternal(this.name,ai,p,c,l)}startActivity(t,r){return this._safety.tryCatchReturn(()=>{var i;h.requireArgument(t,"name"),h.requireArgumentIfDefined(r,"options","object");let s;const l=(i=r==null?void 0:r.instrumentationContext)===null||i===void 0?void 0:i.rootId;return l?s={rootId:l,isRootActivitySampled:r.instrumentationContext.isRootActivitySampled}:s=this._nextGen.getDefaultInstrumentationContext(),new q(t,s.rootId,this._onActivityStoppedCallback,this._onActivityErrorCallback,mn,void 0,s.isRootActivitySampled)},on)}_getActivityData(t){const r=this._wrapUserPayload(t.userSchemaOrText,t.userData,!0);return{id:t.id,name:t.name,duration:t.stopPerfTime-t.startPerfTime,stopReason:t.stopReason,userPayload:r,errorCount:t.errorCount,isSampled:t.isSampled,timerOverridden:t.timerOverridden}}_handleActivityStop(t){if(t.stopReason===_r)return;const r=this._getActivityData(t);this._logActivity(r,t.startTimestamp,t.rootId)}_logActivity(t,r,i){this._logInternal(this.name,si,t,r,i)}_handleActivityError(t,r){this._errorInternal(t,r.userSchemaOrText,r.userData,r.id,r.rootId)}_getPayloadFromProvider(t){const r=(t==null?void 0:t.getPayload())||void 0;return r&&this._checkInputs(r.schema,r.payload),r}domEvent(t,r,i,s,l){this._safety.tryCatch(()=>{var c;const f=h.time().tsNow;h.requireArgument(t,"event",[Event,Qe]),h.requireArgument(r,"handledBy",[HTMLElement,"object"]);let g;r instanceof HTMLElement?g=r:(r=r,((c=r.template)===null||c===void 0?void 0:c.host)instanceof HTMLElement?g=r.template.host:h.requireArgument(void 0,"handledBy"));const p=this._wrapUserPayload(i,s,!0),E=this._getEffectiveRootId(l);switch(t.type){case"click":{const v=t,A=this._nextGen.getClickTracker();A&&A.markEventHandled(v);const O=vr.getMouseEventData(v),X=vr.getInstrumentedEventData(O,g,p);X.auto=l==null?void 0:l._auto,this._logInternal(this.name,ui,X,f,E);break}default:throw new Error(h.notImplemented)}})}incrementCounter(t,r=1,i=!1,s={}){this._safety.tryCatch(()=>{h.requireArgument(t,"operation","string"),h.checkForDenyListedValues(t,"operation",Ue),h.checkForReservedCharacters(t,"operation",Et),h.requireArgument(r,"increment","number"),h.requireArgument(i,"hasError","boolean"),h.requireArgument(s,"tags","object"),Object.entries(s).forEach(l=>{h.requireArgument(l[1],`Tag value for '${l[0]}'`,["string","number","boolean"])}),this._metrics.incrementCounter(t,r,i,s)})}trackValue(t,r,i=!1,s={}){this._safety.tryCatch(()=>{h.requireArgument(t,"operation","string"),h.checkForDenyListedValues(t,"operation",Ue),h.checkForReservedCharacters(t,"operation",Et),h.requireArgument(r,"value","number"),h.requireArgument(i,"hasError","boolean"),h.requireArgument(s,"tags","object"),Object.entries(s).forEach(l=>{h.requireArgument(l[1],`Tag value for '${l[0]}'`,["string","number","boolean"])}),this._metrics.trackValue(t,r,i,s)})}bucketValue(t,r,i=[],s=!1,l={}){this._safety.tryCatch(()=>{h.requireArgument(t,"operation","string"),h.checkForDenyListedValues(t,"operation",Ue),h.checkForReservedCharacters(t,"operation",Et),h.requireArgument(r,"value","number"),h.requireArgument(i,"buckets",Array),Object.entries(i).forEach(c=>{h.requireArgument(c[1],`Bucket value for '${c[0]}'`,"number")}),h.requireArgument(s,"hasError","boolean"),h.requireArgument(l,"tags","object"),Object.entries(l).forEach(c=>{h.requireArgument(c[1],`Tag value for '${c[0]}'`,["string","number","boolean"])}),this._metrics.bucketValue(t,r,i,s,l)})}_checkInputs(t,r){H.checkSchema(t),h.requireArgument(r,"data","object");let i,s;r.userPayload!==void 0&&H.isInternal(t)&&(s=r.userPayload,i=Tr.validate(s.schema,s.payload,!0),this._processValidationResults(H.getSchemaId(s.schema),s.payload,i),r.userPayload=void 0),i=Tr.validate(t,r,!0),this._processValidationResults(H.getSchemaId(t),r,i),s!==void 0&&(r.userPayload=s)}_processValidationResults(t,r,i){for(let s=0;s<i.length;s+=1){const l=i[s];if(l.errorCode==6||l.errorCode==7){const c=l.fields.length-1,f=this._traverseFields(r,l.fields.slice(0,c)),g=l.fields[c];l.errorCode==6?f[g]=f[g].substring(0,qt):f[g].splice(br)}else throw new Error(l.asMessage(t))}}_traverseFields(t,r){return r.length?this._traverseFields(t[r[0]],r.slice(1)):t}getUpCounters(){return this._metrics.getUpCounters().filter(t=>t.getLastUpdatedOn())}getValueRecorders(){return this._metrics.getValueRecorders().filter(t=>t.getLastUpdatedOn())}getBucketHistograms(){return this._metrics.getBucketHistograms().filter(t=>t.getLastUpdatedOn())}registerForLogPrompt(t){h.requireArgument(t,"listener","function"),this._nextGen.registerForLogPrompt(t)}activity(t,r,i){var s,l,c,f;const g=this.startActivity(t,i);try{return r(g)}catch(p){throw g.error(p,(s=i==null?void 0:i.errorPayload)===null||s===void 0?void 0:s.schema,(l=i==null?void 0:i.errorPayload)===null||l===void 0?void 0:l.payload),p}finally{g.stop((c=i==null?void 0:i.stopPayload)===null||c===void 0?void 0:c.schema,(f=i==null?void 0:i.stopPayload)===null||f===void 0?void 0:f.payload)}}async activityAsync(t,r,i){var s,l,c,f;const g=this.startActivity(t,i);try{return await r(g)}catch(p){throw g.error(p,(s=i==null?void 0:i.errorPayload)===null||s===void 0?void 0:s.schema,(l=i==null?void 0:i.errorPayload)===null||l===void 0?void 0:l.payload),p}finally{g.stop((c=i==null?void 0:i.stopPayload)===null||c===void 0?void 0:c.schema,(f=i==null?void 0:i.stopPayload)===null||f===void 0?void 0:f.payload)}}}ut.defaultAppName="APP_NOT_REGISTERED";class xe extends q{constructor(t,r,i,s,l){super(t,void 0,r,i,void 0,s||h.generateUniqueId(32),l)}get preRootId(){return this._preRootId}set preRootId(t){this._preRootId=t}_getDetail(t,r){const i=super._getDetail(t,r);return i.isRoot=!0,i.preRootId=this.preRootId,i}}const gn=new Array(32).fill(0).join("");class Nr{getId(){return gn}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(t){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const yn=Object.freeze(new Nr);class _n extends ut{constructor(t,r,i){super(t,r);this._allowMulti=i,this._onRootActivityStoppedCallback=this._handleRootActivityStop.bind(this)}startRootActivity(t,r,i){return this._safety.tryCatchReturn(()=>{h.requireArgument(t,"name");const s=new xe(t,this._onRootActivityStoppedCallback,this._onActivityErrorCallback,r,i);if(!this._allowMulti){if(this._singleRootActivity&&!this._singleRootActivity.isStopped){const l=this._singleRootActivity.getId();this._singleRootActivity.terminate(),s.preRootId=l}this._singleRootActivity=s}return s},yn)}_handleRootActivityStop(t){if(t.stopReason===_r)return;const r=this._getActivityData(t);this._logActivity(r,t.startTimestamp),this._singleRootActivity=void 0}_getActivityData(t){const r=super._getActivityData(t);return r.isRoot=t.isRoot,r.preRootId=t.preRootId,r}getSingleRootActivityId(){var t;return(t=this._singleRootActivity)===null||t===void 0?void 0:t.getId()}isSingleRootActivitySampled(){var t;return(t=this._singleRootActivity)===null||t===void 0?void 0:t.getIsSampled()}_initMetrics(){return new jt(this.name,()=>this.name)}}const vn=5;class bn{constructor(t,r){this._instr=t,this._doc=r,this._isActive=!1,this._boundClickListener=this._clickListener.bind(this),h.requireArgument(t,"_instr"),h.requireArgument(r,"_doc")}activate(){this._isActive||(this._doc.addEventListener("click",this._boundClickListener,!0),this._isActive=!0)}deactivate(){this._isActive&&(this._doc.removeEventListener("click",this._boundClickListener,!0),this._isActive=!1)}markEventHandled(t){this._ignoredEvent=t}_clickListener(t){var r;let i=(r=t.composedPath)===null||r===void 0?void 0:r.call(t);(!i||!i.length)&&(i=t.path);const s=this._getClickableElement(i);s&&setTimeout(()=>{t!==this._ignoredEvent&&this._instr.domEvent(t,s,void 0,void 0,{_auto:!0})})}_getClickableElement(t){var r,i;const s=t?Math.min(t.length,vn):0;for(let l=0;l<s;l+=1){const c=t[l],f=(r=c.tagName)===null||r===void 0?void 0:r.toLowerCase();if(f==="a"||f==="button")return c;if(f==="input"){const g=c;if(((i=g.type)===null||i===void 0?void 0:i.toLowerCase())==="button")return g}}}}const ct=80,Wt="_CUT",Cr=ct-Wt.length;class Be{get pagePayloadProvider(){return this._pagePayloadProvider}set pagePayloadProvider(t){this._pagePayloadProvider=t}get appPayloadProvider(){return this._appPayloadProvider}set appPayloadProvider(t){this._appPayloadProvider=t}constructor(t){this._idleDetector=t,this._logCollectors=new Set,this._instruments=new Map,this._seqBySchema=new Map,this._sequence=0,this._forceDisabledLogCollectors=new Set,this._logCollectorFailures=new Map,this._isBufferingEnabled=!1,this._buffer=[],this._logCollectionListeners=new Set}registerApp(t,r){var i;if(h.requireArgument(t,"name","string"),this._appInstr)throw new Error("An app has already been registered with instrumentation.");if(this._instruments.get(t))throw new Error(`The instrumentation name ${t} is already taken`);this._clientSessionId=((i=r==null?void 0:r.clientSessionId)===null||i===void 0?void 0:i.toString())||h.generateUniqueId(),this._appInstr=new _n(this,t,r==null?void 0:r.allowMultipleRootActivities),this._instruments.set(t,this._appInstr),this._isBufferingEnabled=r==null?void 0:r.enableBuffering;const l=new b(this.getInstrumentation("Network"),this._idleDetector);return{log:this._appInstr.log.bind(this._appInstr),error:this._appInstr.error.bind(this._appInstr),startActivity:this._appInstr.startActivity.bind(this._appInstr),domEvent:this._appInstr.domEvent.bind(this._appInstr),incrementCounter:this._appInstr.incrementCounter.bind(this._appInstr),trackValue:this._appInstr.trackValue.bind(this._appInstr),bucketValue:this._appInstr.bucketValue.bind(this._appInstr),networkInstrumentation:l.networkInstrumentation.bind(l),registerForLogPrompt:this._appInstr.registerForLogPrompt.bind(this._appInstr),activity:this._appInstr.activity.bind(this._appInstr),activityAsync:this._appInstr.activityAsync.bind(this._appInstr),startRootActivity:this._appInstr.startRootActivity.bind(this._appInstr),registerLogCollector:this.registerLogCollector.bind(this),registerMetricsCollector:this.registerMetricsCollector.bind(this),activateClickTracker:this.activateClickTracker.bind(this),deactivateClickTracker:this.deactivateClickTracker.bind(this),disableBuffering:this.disableBuffering.bind(this),promptLogCollection:this.promptLogCollection.bind(this),getClientSessionId:this.getClientSessionId.bind(this)}}getInstrumentation(t){h.requireArgument(t,"name","string"),t.length>ct&&(t=t.substr(0,Cr)+Wt);let r=this._instruments.get(t);if(!r)r=new ut(this,t),this._instruments.set(t,r);else if(r===this._appInstr)throw new Error(`The instrumentation name ${t} is being used by the app.`);return r}get appName(){var t;return(t=this._appInstr)===null||t===void 0?void 0:t.name}addLog(t,r,i,s,l,c,f){this._sequence+=1;const g=H.isInternal(r)&&(i==null?void 0:i.userPayload)?i.userPayload.schema:r,p=H.getSchemaId(g);let E=this._seqBySchema.get(p)||0;E+=1,this._seqBySchema.set(p,E);const v={timestamp:s,rootId:l,sequence:this._sequence,schemaSequence:E,loggerName:t,pagePayload:c?h.clone(c):void 0,appPayload:f?h.clone(f):void 0,loggerAppName:this.appName,connectionType:h.getConnectionType(),clientSessionId:this._clientSessionId};this._isBufferingEnabled&&this._buffer.push({schema:r,data:h.clone(i),logMeta:v});const A=Array.from(this._logCollectors).filter(O=>{var X;return!this._forceDisabledLogCollectors.has(O)&&!((X=O.getIsCollectDisabled)===null||X===void 0?void 0:X.call(O))});if(A.length>0)for(const O of A){const X=h.clone(i);let ye=this._logCollectorFailures.get(O)||0;try{O.collect(r,X,v),ye>0&&this._logCollectorFailures.set(O,ye-1)}catch(Xe){ye+=1,ye>=Be._collectorFailureLimit?(this._forceDisabledLogCollectors.add(O),this._appInstr&&(typeof Xe=="string"||Xe instanceof Error)&&this._appInstr.error(Xe)):this._logCollectorFailures.set(O,ye)}}return this._sequence}getBuffer(){return this._buffer}disableBuffering(){this._isBufferingEnabled=!1,this._buffer=[]}getClickTracker(){return this._autoClickTracker}getDefaultInstrumentationContext(){var t,r;return{rootId:(t=this._appInstr)===null||t===void 0?void 0:t.getSingleRootActivityId(),isRootActivitySampled:(r=this._appInstr)===null||r===void 0?void 0:r.isSingleRootActivitySampled()}}activateClickTracker(){typeof document!="undefined"&&(this._autoClickTracker||(this._autoClickTracker=new bn(this._appInstr,document)),this._autoClickTracker.activate())}deactivateClickTracker(){this._autoClickTracker&&(this._autoClickTracker.deactivate(),this._autoClickTracker=void 0)}registerLogCollector(t,r){if(h.requireArgument(t,"collector"),!this._logCollectors.has(t)&&(this._logCollectors.add(t),this._logCollectorFailures.set(t,0),(!t.getIsCollectDisabled||!t.getIsCollectDisabled())&&r&&r.retroactive))for(const i of this._buffer)t.collect(i.schema,i.data,i.logMeta)}registerMetricsCollector(t){if(h.requireArgument(t,"collector"),this._metricsCollector)throw new Error("A metrics Collector is already registered.");this._metricsCollector=t,this._metricsCollector.receiveMetricsExtractors({getAllUpCounters:this._getAllUpCounters.bind(this),getAllValueRecorders:this._getAllValueRecorders.bind(this),getAllBucketHistograms:this._getAllBucketHistograms.bind(this)})}_getAllUpCounters(){return Array.from(this._instruments.values()).map(r=>r.getUpCounters()).reduce((r,i)=>r.concat(i),[])}_getAllValueRecorders(){return Array.from(this._instruments.values()).map(r=>r.getValueRecorders()).reduce((r,i)=>r.concat(i),[])}_getAllBucketHistograms(){return Array.from(this._instruments.values()).map(r=>r.getBucketHistograms()).reduce((r,i)=>r.concat(i),[])}registerForLogPrompt(t){this._logCollectionListeners.add(t)}promptLogCollection(t){for(const r of this._logCollectionListeners.keys())try{r(t)}catch(i){if(!h.isProduction)throw i}}getClientSessionId(){return this._clientSessionId}}Be._collectorFailureLimit=5;class Ar{get _lazyNextGen(){return this._nextgen||(this._nextgen=new Be(this._idleDetector)),this._nextgen}constructor(t){this._idleDetector=t,h.requireArgument(t,"_idleDetector")}registerInstrumentedApp(t,r){(!r||r.isProduction!==!1)&&h.markProduction();const i=this._lazyNextGen.registerApp(t,r);return r&&(this._nextgen.appPayloadProvider=r.appPayloadProvider,this._nextgen.pagePayloadProvider=r.pagePayloadProvider),i}getInstrumentation(t){return this._lazyNextGen.getInstrumentation(t)}}const Je=h.time.bind(h),Rr={Error:"Crimson",Activity:"CadetBlue",InstrumentedEvent:"DarkOliveGreen",O11ySample:"BlueViolet"},wn={Error:"white",Activity:"white",InstrumentedEvent:"white",O11ySample:"white"},Kt="black",Xt="Gainsboro";let En=class{constructor(t){t&&this._log("ConsoleCollector",t)}collect(t,r,i){let s,l,c;t.namespace==="sf.instrumentation"?(s=t.name,l=wn[t.name]||Kt,c=Rr[t.name]||Xt):s=H.getSchemaId(t),this._log(s,r,i,l,c)}_log(t,r,i,s=Kt,l=Xt){const c=`color:${s};background-color:${l}`;console.log(`%cO11Y%c ${t}`,"color:white;background-color:#FF6600;font-weight:bold",c,r||"",i||"")}};const Tn="244.9.0",Ze=new $e({logThreshold:300,reportListener:u=>{et==null||et.log(li,u)},errorListener:(u,t)=>{et==null||et.error(u,t)}}),dt=new Ar(Ze),Tt=dt.registerInstrumentedApp.bind(dt),St=dt.getInstrumentation.bind(dt),et=St("IdleDetector");var Ir=Object.freeze({__proto__:null,ConsoleCollector:En,_version:Tn,getInstrumentation:St,idleDetector:Ze,registerInstrumentedApp:Tt,time:Je});const Pr="244.39.0",Or={namespace:"sf.instrumentation",name:"WebVitals",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{WebVitals:{fields:{name:{id:1,type:"string"},delta:{id:3,type:"double"},value:{id:2,type:"double"}}}}}}}}}};var Ne,qe,Nt,Ce,G=function(u,t){return{name:u,value:t===void 0?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},ht=function(u,t){try{if(PerformanceObserver.supportedEntryTypes.includes(u)){if(u==="first-input"&&!("PerformanceEventTiming"in self))return;var r=new PerformanceObserver(function(i){return i.getEntries().map(t)});return r.observe({type:u,buffered:!0}),r}}catch(i){}},Ct=function(u,t){var r=function i(s){s.type!=="pagehide"&&document.visibilityState!=="hidden"||(u(s),t&&(removeEventListener("visibilitychange",i,!0),removeEventListener("pagehide",i,!0)))};addEventListener("visibilitychange",r,!0),addEventListener("pagehide",r,!0)},Ge=function(u){addEventListener("pageshow",function(t){t.persisted&&u(t)},!0)},Ae=function(u,t,r){var i;return function(s){t.value>=0&&(s||r)&&(t.delta=t.value-(i||0),(t.delta||i===void 0)&&(i=t.value,u(t)))}},ft=-1,Lr=function(){return document.visibilityState==="hidden"?0:1/0},Mr=function(){Ct(function(u){var t=u.timeStamp;ft=t},!0)},tt=function(){return ft<0&&(ft=Lr(),Mr(),Ge(function(){setTimeout(function(){ft=Lr(),Mr()},0)})),{get firstHiddenTime(){return ft}}},zt=function(u,t){var r,i=tt(),s=G("FCP"),l=function(g){g.name==="first-contentful-paint"&&(f&&f.disconnect(),g.startTime<i.firstHiddenTime&&(s.value=g.startTime,s.entries.push(g),r(!0)))},c=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],f=c?null:ht("paint",l);(c||f)&&(r=Ae(u,s,t),c&&l(c),Ge(function(g){s=G("FCP"),r=Ae(u,s,t),requestAnimationFrame(function(){requestAnimationFrame(function(){s.value=performance.now()-g.timeStamp,r(!0)})})}))},kr=!1,Yt=-1,Sn=function(u,t){kr||(zt(function(p){Yt=p.value}),kr=!0);var r,i=function(p){Yt>-1&&u(p)},s=G("CLS",0),l=0,c=[],f=function(p){if(!p.hadRecentInput){var E=c[0],v=c[c.length-1];l&&p.startTime-v.startTime<1e3&&p.startTime-E.startTime<5e3?(l+=p.value,c.push(p)):(l=p.value,c=[p]),l>s.value&&(s.value=l,s.entries=c,r())}},g=ht("layout-shift",f);g&&(r=Ae(i,s,t),Ct(function(){g.takeRecords().map(f),r(!0)}),Ge(function(){l=0,Yt=-1,s=G("CLS",0),r=Ae(i,s,t)}))},pt={passive:!0,capture:!0},At=new Date,mt=function(u,t){Ne||(Ne=t,qe=u,Nt=new Date,Rt(removeEventListener),Nn())},Nn=function(){if(qe>=0&&qe<Nt-At){var u={entryType:"first-input",name:Ne.type,target:Ne.target,cancelable:Ne.cancelable,startTime:Ne.timeStamp,processingStart:Ne.timeStamp+qe};Ce.forEach(function(t){t(u)}),Ce=[]}},hi=function(u){if(u.cancelable){var t=(u.timeStamp>1e12?new Date:performance.now())-u.timeStamp;u.type=="pointerdown"?function(r,i){var s=function(){mt(r,i),c()},l=function(){c()},c=function(){removeEventListener("pointerup",s,pt),removeEventListener("pointercancel",l,pt)};addEventListener("pointerup",s,pt),addEventListener("pointercancel",l,pt)}(t,u):mt(t,u)}},Rt=function(u){["mousedown","keydown","touchstart","pointerdown"].forEach(function(t){return u(t,hi,pt)})},Qt=function(u,t){var r,i=tt(),s=G("FID"),l=function(f){f.startTime<i.firstHiddenTime&&(s.value=f.processingStart-f.startTime,s.entries.push(f),r(!0))},c=ht("first-input",l);r=Ae(u,s,t),c&&Ct(function(){c.takeRecords().map(l),c.disconnect()},!0),c&&Ge(function(){var f;s=G("FID"),r=Ae(u,s,t),Ce=[],qe=-1,Ne=null,Rt(addEventListener),f=l,Ce.push(f),Nn()})},rt={},Cn=function(u,t){var r,i=tt(),s=G("LCP"),l=function(g){var p=g.startTime;p<i.firstHiddenTime&&(s.value=p,s.entries.push(g),r())},c=ht("largest-contentful-paint",l);if(c){r=Ae(u,s,t);var f=function(){rt[s.id]||(c.takeRecords().map(l),c.disconnect(),rt[s.id]=!0,r(!0))};["keydown","click"].forEach(function(g){addEventListener(g,f,{once:!0,capture:!0})}),Ct(f,!0),Ge(function(g){s=G("LCP"),r=Ae(u,s,t),requestAnimationFrame(function(){requestAnimationFrame(function(){s.value=performance.now()-g.timeStamp,rt[s.id]=!0,r(!0)})})})}},It=function(u){var t,r=G("TTFB");t=function(){try{var i=performance.getEntriesByType("navigation")[0]||function(){var s=performance.timing,l={entryType:"navigation",startTime:0};for(var c in s)c!=="navigationStart"&&c!=="toJSON"&&(l[c]=Math.max(s[c]-s.navigationStart,0));return l}();if(r.value=r.delta=i.responseStart,r.value<0||r.value>performance.now())return;r.entries=[i],u(r)}catch(s){}},document.readyState==="complete"?setTimeout(t,0):addEventListener("load",function(){return setTimeout(t,0)})},se;(function(u){u[u.CLS=0]="CLS",u[u.FCP=1]="FCP",u[u.FID=2]="FID",u[u.LCP=3]="LCP",u[u.TBT=4]="TBT",u[u.TTFB=5]="TTFB"})(se||(se={}));const An=[se.CLS,se.FCP,se.FID,se.LCP,se.TTFB];class Rn{constructor(){this._isInitialized=!1,this._safety=new Ye,this._instr=St("WebVitals")}activate(t,r){this._safety.tryCatch(()=>{if(this._isInitialized)throw new Error("WebVitals is already activated.");h.requireArgumentIfDefined(r,"metrics",Array),this._isInitialized=!0;const i=new Set(r||An);if(i.delete(se.CLS)&&Sn(this._logHandler.bind(this)),i.delete(se.FCP)&&zt(this._activityHandler.bind(this)),i.delete(se.FID)&&Qt(this._logHandler.bind(this)),i.delete(se.LCP)&&Cn(this._activityHandler.bind(this)),i.delete(se.TTFB)&&It(this._activityHandler.bind(this)),i.size>0){const s=JSON.stringify(Array.from(i.keys()));this._instr.error(`Unsupported WebVital metrics: ${s}`)}})}_logHandler(t){this._instr.log(Or,{name:t.name,value:t.value,delta:t.delta})}_activityHandler(t){this._instr.startActivity(t.name).stop(void 0,void 0,{perfStartOverride:0,perfStopOverride:t.value})}}const In=new Rn;function Pn(u,t){if(!u)throw new Error(t)}const On={APEX_ACTION_ERROR:"APEX_ACTION_ERROR",FAILED_TO_LOAD_RESOURCE:"FAILED_TO_LOAD_RESOURCE",TOO_MANY_REQUESTS:"TOO_MANY_REQUESTS",UNKNOWN_ERROR:"UNKNOWN_ERROR"},Ln=["POST","PATCH","PUT","DELETE"],ee="X-SFDC-Request-Id",Dr="X-Salesforce-Too-Many-Requests",Pt="asGuest",ae="language",k="htmlEncode",{location:$r,navigator:fe}=globalThis;async function Jt(u,t={}){Pn(typeof u=="string","Valid path not provided for fetch request");const r=ke(ke({},t),{},{headers:ke({},t.headers),credentials:t.credentials||"same-origin"});t.credentials===null&&delete r.credentials;const i=r.isNonApiRequest===!0,s=r.asGuest===!0||await M(),l=r.basePath!==void 0?r.basePath:st.default,c=new URL(l+u,$r);if(!i){const p=c.searchParams;p.has(ae)||p.append(ae,ve.default),p.has(Pt)||p.append(Pt,s),p.has(k)||p.append(k,!1)}const f=r.headers["Content-Type"];f===null?delete r.headers["Content-Type"]:f?r.headers["Content-Type"]=f:t.body&&(r.headers["Content-Type"]="application/json; charset=utf-8"),r.headers[ee]=Mn(),await Hr(r);const g=await globalThis.fetch(c.toString(),r);return Fr(g)&&nt(),g}function nt(){document.dispatchEvent(new CustomEvent("client-error",{detail:{type:On.TOO_MANY_REQUESTS}}))}function Fr(u){return!!((u.status===503||u.status===429)&&u.headers.get(Dr))}async function Hr(u){if(u.method&&Ln.includes(u.method)){const{default:t}=await V.load("@app/user/v/1");u.headers["CSRF-Token"]=t.csrfToken}}async function Ur({path:u,payload:t,contentType:r}){const i=ie.default+u;fe&&fe.sendBeacon&&fe.sendBeacon(i,t)||await globalThis.fetch(u,{headers:{"Content-Type":r},basePath:ie.default,body:t,method:"POST",isNonApiRequest:!0})}function Mn(){return(Date.now()+kn()+Math.round(Math.random()*1e8)).substring(0,18)}function kn(){function u(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return u()+u()}async function M(){const{default:u}=await V.load("@app/user/v/1");return u.isGuest}var le=Object.freeze({__proto__:null,fetch:Jt,sendBeacon:Ur});const Ve={namespace:"sf.clwr",name:"AppPayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{AppPayload:{fields:{visd:{id:1,type:"double"},isPreview:{id:4,type:"bool"},siteId:{id:6,type:"string"},isMobile:{id:3,type:"bool"},lang:{id:5,type:"string"},isDesign:{id:2,type:"bool"},vKey:{id:7,type:"string"}}}}}}}}}},Z={namespace:"sf.clwr",name:"Nav",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Nav:{fields:{isIdleHit:{id:1,type:"bool"},isManual:{id:2,type:"bool"}}}}}}}}}},Zt={namespace:"sf.clwr",name:"NavTransition",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{NavTransition:{fields:{code:{id:4,type:"string"},isSsr:{id:3,type:"bool"},level:{id:5,type:"string"},nextUrl:{id:1,type:"string"},type:{id:2,type:"string"}}}}}}}}}},xr={namespace:"sf.clwr",name:"PagePayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{PagePayload:{fields:{isSsr:{id:3,type:"bool"},type:{id:2,type:"string"},url:{id:1,type:"string"}}}}}}}}}},te={namespace:"sf.clwr",name:"Root",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Root:{fields:{sequence:{id:1,type:"uint32"},navCount:{id:2,type:"uint32"},clickCount:{id:3,type:"uint32"},isManual:{id:4,type:"bool"}}}}}}}}}},it=5e4,we=3e3,Re=300,Br="O11Y_ENDPOINT_NOT_CONFIGURED",qr=Math.random(),re={coreEnabled:!1,coreSamplingRate:0,coreRelativeEndpoint:"",falconEnabled:!1,falconSamplingRate:0,falconAbsoluteEndpoint:"",guestToken:"",traceSamplingRate:0},Ie=!0;Ie&&h.markProduction();let Ot,Lt;new Ye().tryCatch(()=>{const u=JSON.parse(ze.default);Object.keys(re).forEach(t=>{const r=u[t],i=typeof re[t];(i==="string"&&r===""||h.requireArgumentIfDefined(r,`srvConfig.${t}`,i))&&(re[t]=u[t])}),Ot=Dn(Te.default),re.guestToken=Ot.guestToken});function Gr(){return re}function ot(u,t){return u&&t!==""&&t!==Br}function Mt(u){return!Ie||u>0&&u>=qr}function er(){return!Lt&&ot(re.coreEnabled,re.coreRelativeEndpoint)&&Mt(re.coreSamplingRate)}function tr(){return ot(re.falconEnabled,re.falconAbsoluteEndpoint)&&Mt(re.falconSamplingRate)}function Dn(u){if(!u)throw new Error("o11yGuestToken not set");const t={},r=u.indexOf("|");return r>=0?(t.guestToken=u.substring(0,r),t.meta=JSON.parse(u.substring(r+1))):t.guestToken=u,t}function kt(){const u=re.coreRelativeEndpoint?.indexOf("services/data/");return u===0||u===1}function Vr(){const u=re.coreRelativeEndpoint||"";return kt()&&u.length>1&&u[0]!=="/"}async function jr(){if(Lt===void 0&&(Lt=!1,kt()&&!Ot.meta?.isGuestApiAccessEnabled)){const{default:u}=await V.load("@app/user/v/1");u.isGuest&&(Lt=!0)}}function $n(){const u=Math.random(),t=re.traceSamplingRate||0;return t>0&&t>=u}const Wr={perfStartOverride:0};let pe;class Fn{constructor(t){this._rootPayload={sequence:0,navCount:0,clickCount:0,isManual:!1},this._navPayload={isIdleHit:!1,isManual:!1},this._hadRootActivity=!1,this._hadNavActivity=!1,this._isFirstNavActivity=!0;const r=!1;pe=i=>r&&console.log(`O11YR ${i}`),pe("Started"),this._o11yApp=t,this._startRoot(),document.body.addEventListener("click",this._handleClick.bind(this),{capture:!0,passive:!0}),window.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleClick(){this._rootActivity?this._rootPayload.clickCount+=1:this._startRoot()}_handleVisibilityChange(){const t=document.visibilityState==="hidden";pe(t?"Hide":"Show"),t?(this._stopNavTransition(),this._stopNav(),this._stopRoot(!1)):(this._hadRootActivity&&this._startRoot(!0),this._hadNavActivity&&!this._navActivity&&this._startNav(this._navData,!0))}get _isFirstRootActivity(){return this._rootPayload.sequence===1}_startRoot(t=!1){this._rootActivity&&this._stopRoot(!1),this._rootPayload.clickCount=0,this._rootPayload.navCount=0,this._rootPayload.sequence+=1,this._rootPayload.isManual=t,this._rootActivity=this._o11yApp.startRootActivity("root",void 0,$n()),this._hadRootActivity=!0,pe(`Root Started ${this._rootActivity.getId()}`),Ze.requestIdleDetectedCallback(()=>{this._stopRoot(!0)})}_stopRoot(t){if(!!this._rootActivity){pe(`Root Stop ${t?"idle":"busy"} ${this._rootActivity.getId()}`);try{if(!this._isFirstRootActivity&&this._rootPayload.navCount===0&&Je().perfNow-this._rootActivity.getStartPerfTime()<Re){this._rootActivity.discard(),this._rootPayload.sequence-=1;return}const r=this._isFirstRootActivity?Wr:void 0;t?this._rootActivity.stop(te,this._rootPayload,r):this._rootActivity.terminate(te,this._rootPayload,r)}finally{this._rootActivity=void 0,this._hadRootActivity=!1}}}_startNav(t,r){this._stopNav(),this._navPayload.isIdleHit=!1,this._navPayload.isManual=r,this._rootPayload.navCount+=1,this._navData=t?{url:t.url,pageRef:t.pageRef,isSsr:t.isSsr}:void 0,this._navActivity=this._o11yApp.startActivity("navigation"),this._hadNavActivity=!0,pe(`Nav Started ${this._navActivity.getId()}`),Ze.requestIdleDetectedCallback(()=>{pe(`Nav Idle ${this._navActivity?.getId()}`),this._navPayload.isIdleHit=!0})}_stopNav(){if(this._navActivity){pe(`Nav Stop ${this._navActivity.getId()}`);try{const t=this._isFirstNavActivity?Wr:void 0;this._isFirstNavActivity=!1,this._navActivity.stop(Z,this._navPayload,t)}finally{this._navActivity=void 0}}}_startNavTransition(t){this._navTransitionActivity&&this._stopNavTransition(void 0,!0),this._navTransitionData=t,this._navTransitionActivity=this._o11yApp.startActivity("navigation transition"),pe(`Trans Started ${this._navTransitionActivity.getId()}`)}_stopNavTransition(t,r=!1){if(this._navTransitionActivity){pe(`Trans ${r?"Terminate":"Stop"} ${this._navTransitionActivity.getId()}`);try{if(t){const{code:s,message:l,level:c}=t,f=["Fatal","Error","Warning","Log"][c];this._navTransitionActivity.error(l,Zt,{code:s?.toString(),level:f})}const i=this._navTransitionData?{nextUrl:this._navTransitionData.url,type:this._navTransitionData.pageRef?.type,isSsr:this._navTransitionData.isSsr}:void 0;r?this._navTransitionActivity.terminate(Zt,i):this._navTransitionActivity.stop(Zt,i)}finally{this._navTransitionActivity=void 0,this._navTransitionData=void 0}}}preNavigate(t){this._startNavTransition({url:t.next.url,pageRef:t.next.route.pageReference,isSsr:t.next.routeDefinition?.bootstrap?.ssr})}postNavigate(t){this._stopNavTransition(),this._startNav({url:t.url,pageRef:t.route.pageReference,isSsr:t.routeDefinition?.bootstrap?.ssr},!1)}errorNavigate(t){pe(`Err level ${t?.level}: ${t?.code}`),this._stopNavTransition(t)}getCurrentPageData(){if(this._navData){const{pageRef:t,url:r,isSsr:i}=this._navData;return{url:r,type:t?.type,isSsr:i}}}}class Dt{constructor(){this._totalVisibleDuration=0,this._isVisible=document?.visibilityState==="visible",this._isVisible&&(this._lastVisibleTime=0),window?.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleVisibilityChange(){if(document.visibilityState==="hidden"){if(this._isVisible=!1,this._lastVisibleTime!==void 0){const t=Je().perfNow;this._totalVisibleDuration+=t-this._lastVisibleTime,this._lastVisibleTime=t}}else this._isVisible=!0,this._lastVisibleTime=Je().perfNow}getPayload(){const t=this._isVisible&&this._lastVisibleTime!==void 0?Je().perfNow-this._lastVisibleTime:0,r={isDesign:Le.default,isMobile:dr.default,isPreview:W.default,lang:ve.default,siteId:B.default,vKey:Me.default,visd:this._totalVisibleDuration+t};return{schema:Ve,payload:r}}}class rr{linkWithRouterSupport(t){this._routingSupport=t}getPayload(){if(this._routingSupport){const t=this._routingSupport.getCurrentPageData();if(t)return{schema:xr,payload:t}}}}const{ConsoleCollector:je,idleDetector:gt,registerInstrumentedApp:We,_version:Kr}=Ir,Hn="lwr_experience";let Ke,$t;const D=xt;D.clientVersion=Kr,D.schemaVersion=Pr;const Ee=`${Kr}:${Pr}`,Pe=Jt;globalThis.LWR?.define&&(globalThis.LWR.define("o11y/shared",[],()=>bt),globalThis.LWR.define("o11y/client",[],()=>Ir),globalThis.LWR.define("transport",[],()=>le),globalThis.LWR.define("webruntime/o11y",[],()=>ii));async function Xr(u){const t=!0;try{if(typeof window=="undefined"){D.isUnavailable=!0;return}const r=gt.declareNotifierTaskMulti("o11y LWR module fetch");D.willUpload=er()||tr();const i=new Dt,s=new rr;D.app=We(Hn,{isProduction:t,enableBuffering:!0,appPayloadProvider:i,pagePayloadProvider:s}),Q.default?.(c=>{c.id==="lwr.loader.module.fetch"&&(c.phase===0?r.add():r.done())}),D.app.networkInstrumentation({tracingHeadersOptions:{useB3Headers:!0}}),In.activate(),D.routingSupport=new Fn(D.app),s.linkWithRouterSupport(D.routingSupport);let l=!1;if(D.initConsole=c=>{if(!l&&D.app){const f=new je;D.app.registerLogCollector(f,c),l=!0}},t||(D.initConsole(),D.app.log(`o11y ${Ee}`)),D.upload=nr,D.willUpload){if(await xn(),await jr(),D.willUpload=er()||tr(),!D.willUpload)return;await Bn(D.app,{appName:u.appMetadata.bootstrapModule,sdkVersion:`o11y ${Ee}`}),Un(),await nr(!0)}}catch(r){if(!t)throw r;try{console?.error("Failed to start o11y",r)}catch{}}finally{try{D.app?.disableBuffering()}catch{}}}function Un(){window.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&nr(!0)})}async function xn(){const u=t=>{let r=!1;setTimeout(()=>{r||(r=!0,t())},we),gt.requestIdleDetectedCallback(()=>{r||(r=!0,t())})};return new Promise(t=>{document.readyState==="complete"?u(t):window.addEventListener("load",()=>u(t))})}async function Bn(u,t){const[r,i]=await Promise.all([V.load("o11y/simple_collector/v/244_9_0"),V.load("o11y/collectors/v/244_9_0")]);$t=(i.default||i).encodeCoreEnvelopeContentsRaw,Ke=new(r.default||r).SimpleCollector({environment:t}),u.registerLogCollector(Ke,{retroactive:!0}),u.registerMetricsCollector(Ke)}function nr(u=!1){const t=[],r=er(),i=tr();if(Ke?.hasData&&(r||i)&&(u||Ke.estimatedByteSize>=it)){const s=Ke.getRawContentsOfCoreEnvelope(),l=$t(s);r&&t.push(qn(l)),i&&t.push(Gn(l))}return Promise.allSettled(t)}function qn(u){const t=String.fromCharCode,r=[];for(let c=0,f=u.length;c<f;c++)r.push(t(u[c]));const i=window.btoa(r.join("")),s={method:"POST",body:JSON.stringify({base64Env:i}),keepalive:!0,isNonApiRequest:!kt(),o11y:{skipInstr:!0}};let l=Gr().coreRelativeEndpoint;return Vr()?l[0]!=="/"&&(l=`/${l}`):s.basePath=ie.default,Pe(l,s)}function Gn(u){const t=Gr(),r={method:"POST",body:u,headers:{"x-sfdc-o11y-token":t.guestToken||"","Content-Type":"application/octet-stream"},keepalive:!0,o11y:{skipInstr:!0}};return fetch(t.falconAbsoluteEndpoint,r)}T.default=Xr,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("webruntime/hook/v/1_66_319-244_0",["exports"],function(T){"use strict";var V=["@app/apexApiBasePath","@app/apiBasePath","@app/authenticationCookieName","@app/basePath","@app/guestUuidCookieName","@app/isDesignMode","@app/isPreviewMode","@app/isMobileAppMode","@app/loginPath","@app/o11yGuestToken","@app/o11yConfiguration","@app/routes","@app/extraRouteParams","@app/uiBasePath","@app/versionKey","@app/viewToThemeLayoutMap","@app/views","@salesforce/community/basePath","@salesforce/i18n/lang","@salesforce/site/Id","@salesforce/webstore/Id","webruntime/dispatcher"],ue=["@salesforce/cssvars/customProperties","aura-instrumentation","aura-storage","aura","instrumentation/service","instrumentation/utility","lightning/configProvider","lightning/navigation","transport","webruntime/transport","logger","assert","o11y/shared","o11y/client","webruntime/o11y","webruntime_navigation/link","webruntime/expressions","webruntime/routerContainer","webruntime/componentContainer","webruntime/slotContainer","webruntime/visibilityContainer","webruntime/routingService","webruntime/overrides","webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent","mobileruntime/hybridAppManager","wire-service","@salesforce/client/formFactor"];const ne=["webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent"];function ce(Y){Y.addLoaderPlugin({resolveModule:async P=>{const[C]=P.split("/v/");return C==="webruntime/transport"?"transport":C&&(ue.includes(C)||ne.includes(C)||V.includes(C))?C:C==="@salesforce/loader"?"lwr/loaderLegacy/v/0_9_0":null}})}T.default=ce,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("@lwc/synthetic-shadow/v/2_41_4",function(){"use strict";function T(e,n){if(!e)throw new Error(`Invariant Violation: ${n}`)}function V(e,n){if(!e)throw new Error(`Assert Violation: ${n}`)}function ue(e,n){if(e)throw new Error(`Assert Violation: ${n}`)}function ne(e){throw new Error(e)}var ce=Object.freeze({__proto__:null,fail:ne,invariant:T,isFalse:ue,isTrue:V});const{assign:Y,create:P,defineProperties:C,defineProperty:N,freeze:j,getOwnPropertyDescriptor:_,getOwnPropertyNames:_e,getPrototypeOf:oe,hasOwnProperty:S,isFrozen:ie,keys:st,seal:ve,setPrototypeOf:Q}=Object,{isArray:ze}=Array,{concat:Te,copyWithin:Le,fill:dr,filter:W,find:Me,indexOf:B,join:at,map:ke,pop:ni,push:K,reduce:Ut,reverse:xt,shift:ii,slice:L,some:vt,sort:h,splice:Ye,unshift:oi,forEach:H}=Array.prototype,{charCodeAt:bt,replace:si,split:ai,slice:li,toLowerCase:ui}=String.prototype;function y(e){return e===void 0}function w(e){return e===null}function De(e){return e===!0}function $e(e){return e===!1}function be(e){return typeof e=="function"}function hr(e){return typeof e=="object"}const fr={}.toString;function tn(e){return e&&e.toString?ze(e)?at.call(ke.call(e,tn),","):e.toString():typeof e=="object"?fr.call(e):e+""}const Fe=typeof globalThis=="object"?globalThis:window,rn="$isNativeShadowRootDefined$",lt="$shadowResolver$",pr="$$ShadowResolverKey$$",nn="$shadowStaticNode$",mr="$shadowStaticNodeKey$",Bt="$shadowToken$",b="$$ShadowTokenKey$$",de="$$lwc-synthetic-mode",gr="$nativeGetElementById$",yr="$nativeQuerySelectorAll$",_r=(()=>Symbol("x").toString()==="Symbol(x)")();Fe.lwcRuntimeFlags||Object.defineProperty(Fe,"lwcRuntimeFlags",{value:P(null)});const U=Node,q=U.prototype,{DOCUMENT_POSITION_CONTAINED_BY:He,DOCUMENT_POSITION_CONTAINS:ci,DOCUMENT_POSITION_PRECEDING:on,DOCUMENT_POSITION_FOLLOWING:sn,ELEMENT_NODE:an,TEXT_NODE:vr,CDATA_SECTION_NODE:qt,PROCESSING_INSTRUCTION_NODE:br,COMMENT_NODE:wt,DOCUMENT_FRAGMENT_NODE:di}=U,{appendChild:ln,cloneNode:wr,compareDocumentPosition:he,insertBefore:un,removeChild:cn,replaceChild:Er,hasChildNodes:dn}=q,{contains:Tr}=HTMLElement.prototype,hn=_(q,"firstChild").get,fn=_(q,"lastChild").get,pn=_(q,"textContent").get,ge=_(q,"parentNode").get,Gt=_(q,"ownerDocument").get,Se=S.call(q,"parentElement")?_(q,"parentElement").get:_(HTMLElement.prototype,"parentElement").get,Vt=_(q,"textContent").set,J=S.call(q,"childNodes")?_(q,"childNodes").get:_(HTMLElement.prototype,"childNodes").get,jt=S.call(q,"isConnected")?_(q,"isConnected").get:function(){const e=Gt.call(this);return e===null||(he.call(e,this)&He)!=0},{getAttribute:Qe,getBoundingClientRect:mn,getElementsByTagName:Et,getElementsByTagNameNS:Sr,hasAttribute:Ue,querySelector:ut,querySelectorAll:xe,removeAttribute:gn,setAttribute:Nr}=Element.prototype,yn=S.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:()=>{throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},_n=_(Element.prototype,"childElementCount").get,vn=_(Element.prototype,"firstElementChild").get,bn=_(Element.prototype,"lastElementChild").get,ct=_(HTMLElement.prototype,"innerText"),Wt=ct?ct.get:null,Cr=ct?ct.set:null,Be=_(HTMLElement.prototype,"outerText"),Ar=Be?Be.get:null,Je=Be?Be.set:null,Rr=S.call(Element.prototype,"innerHTML")?_(Element.prototype,"innerHTML"):_(HTMLElement.prototype,"innerHTML"),wn=Rr.get,Kt=Rr.set,Xt=S.call(Element.prototype,"outerHTML")?_(Element.prototype,"outerHTML"):_(HTMLElement.prototype,"outerHTML"),En=Xt.get,Tn=Xt.set,Ze=_(Element.prototype,"tagName").get,dt=_(HTMLElement.prototype,"tabIndex"),Tt=dt.get,St=dt.set,et=S.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,Ir=S.call(Element.prototype,"children")?_(Element.prototype,"children").get:_(HTMLElement.prototype,"children").get,{getElementsByClassName:Pr}=HTMLElement.prototype,Or=S.call(Element.prototype,"shadowRoot")?_(Element.prototype,"shadowRoot").get:()=>null,Ne=S.call(Element.prototype,"assignedSlot")?_(Element.prototype,"assignedSlot").get:()=>null;let qe,Nt;typeof HTMLSlotElement!="undefined"?(qe=HTMLSlotElement.prototype.assignedNodes,Nt=HTMLSlotElement.prototype.assignedElements):(qe=()=>{throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},Nt=()=>{throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});const Ce=_(Event.prototype,"target").get,G=_(Event.prototype,"currentTarget").get,ht=_(FocusEvent.prototype,"relatedTarget").get,Ct=S.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],Ge=_(Document.prototype,"activeElement").get,Ae=S.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,ft=S.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Lr=_(Document.prototype,"defaultView").get,{createComment:Mr,querySelectorAll:tt,getElementById:zt,getElementsByClassName:kr,getElementsByTagName:Yt,getElementsByTagNameNS:Sn}=Document.prototype,{getElementsByName:pt}=HTMLDocument.prototype,{addEventListener:At,removeEventListener:mt,getComputedStyle:Nn,getSelection:hi}=window,Rt=MutationObserver,Qt=Rt.prototype.observe;let rt=null;typeof ShadowRoot!="undefined"&&(rt=ShadowRoot);const Cn=!w(rt),It=w(rt)?()=>!1:e=>e instanceof rt;function se(){return typeof HTMLSlotElement=="undefined"}const{createElement:An}=Document.prototype,Rn=115,In=108,Pn=111,On=116;function Ln(){class e{}Q(e,HTMLElement.constructor),Q(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,N(Document.prototype,"createElement",{value:function(n,o){const a=An.apply(this,L.call(arguments));return n.length===4&&bt.call(n,0)===Rn&&bt.call(n,1)===In&&bt.call(n,2)===Pn&&bt.call(n,3)===On&&Q(a,e.prototype),a}})}se()&&Ln();function ee(e){const n=Gt.call(e);return n===null?e:n}function Dr(e){const n=ee(e),o=Lr.call(n);if(o===null)throw new TypeError;return o}let Pt;function ae(e){if(y(Pt)){const n=ee(e);Pt=n.body&&Qe.call(n.body,"data-global-patching-bypass")==="temporary-bypass"}return De(Pt)}function k(e){const n=e.length,o=[];if(n>0)for(let a=0;a<n;a++)o[a]=e[a];return o}const $r=typeof EventTarget!="undefined"?EventTarget.prototype:U.prototype,{addEventListener:fe,dispatchEvent:Jt,removeEventListener:nt}=$r,Fr="$$HostElementKey$$",Hr="$$ShadowedNodeKey$$";function Ur(e,n,o){const a=e;{const{value:d}=o;a[n]=d}}function Mn(e,n){Ur(e,Fr,{value:n,configurable:!0})}function kn(e,n){Ur(e,Hr,{value:n})}function M(e){return e[Fr]}function le(e){let n=e,o;for(;!w(n);){if(o=M(n),!y(o))return o;if(n=ge.call(n),!w(n)&&it(n))return}}function Ve(e){return e[Hr]}function Z(e){return!y(M(e))}function Zt(e){let n=Se.call(e);for(;!w(n)&&we(n);)e=n,n=Se.call(e);return e}function xr(e,n){const o=Ve(e);let a=n instanceof Element?n:Se.call(n);for(;!w(a)&&a!==e;){const d=le(a),m=Se.call(a);if(d===o)return we(a);if(m===e)return!1;if(!w(m)&&le(m)!==d)if(we(m)){if(a=te(Zt(m)),!w(a)){if(a===e)return!0;if(le(a)===o)return!0}}else return!1;else a=m}return!1}function te(e){if(!(e instanceof U))return null;const n=le(e);if(y(n))return null;let o=e;for(;!w(o)&&Ve(o)!==n;)o=ge.call(o);return w(o)?null:o}function it(e){return we(e)&&Z(e)}function we(e){return e instanceof HTMLSlotElement}function Re(e,n){const o=le(n);if(y(o)){const a=ge.call(n);return!(!w(a)&&it(a))}return Ve(e)===o}function Br(e){const n=x(e);return Ie(n,k(J.call(n)))}function qr(e,n){const o=[];for(let a=0,d=n.length;a<d;a+=1){const m=n[a];!Re(e,m)&&xr(e,m)&&K.call(o,m)}return o}function re(e,n){for(let o=0,a=n.length;o<a;o+=1){const d=n[o];if(!Re(e,d)&&xr(e,d))return d}return null}function Ie(e,n){const o=[];for(let a=0,d=n.length;a<d;a+=1){const m=n[a];Re(e,m)&&K.call(o,m)}return o}function Ot(e,n){for(let o=0,a=n.length;o<a;o+=1)if(Re(e,n[o]))return n[o];return null}function Lt(e,n){const o=x(e),a=k(xe.call(o,n));return Ot(o,a)}function Gr(e,n){const o=x(e),a=xe.call(o,n);return Ie(o,k(a))}function ot(e){if(!F(e)&&!we(e)){const n=J.call(e);return k(n)}if(F(e)){const n=k(xe.call(e,"slot")),o=_t(Oe(e));return Ut.call(n,(a,d)=>(o===_t(d)&&K.apply(a,Mt(d)),a),[])}else{const n=k(J.call(e)),o=_t(e);return W.call(n,a=>o===_t(a))}}function Mt(e){const n=te(e);if(w(n))return[];const o=k(J.call(e));return W.call(o,a=>!Z(a)||!Re(n,a))}function er(e){let n="";const o=ot(e);for(let a=0,d=o.length;a<d;a+=1)n+=Dt(o[a]);return n}const tr=/[&\u00A0"]/g,Dn=/[&\u00A0<>]/g,{replace:kt,toLowerCase:Vr}=String.prototype;function jr(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"\xA0":return" ";default:return""}}function $n(e){return kt.call(e,tr,jr)}function Wr(e){return kt.call(e,Dn,jr)}const pe=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Fn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Dt(e){switch(e.nodeType){case an:{const{attributes:n}=e,o=Ze.call(e);let a="<"+Vr.call(o);for(let d=0,m;m=n[d];d++)a+=" "+m.name+'="'+$n(m.value)+'"';return a+=">",pe.has(o)?a:a+er(e)+"</"+Vr.call(o)+">"}case vr:{const{data:n,parentNode:o}=e;return o instanceof Element&&Fn.has(Ze.call(o))?n:Wr(n)}case qt:return`<!CDATA[[${e.data}]]>`;case br:return`<?${e.target} ${e.data}?>`;case wt:return`<!--${e.data}-->`;default:return""}}function rr(e){switch(e.nodeType){case an:{const n=ot(e);let o="";for(let a=0,d=n.length;a<d;a+=1){const m=n[a];m.nodeType!==wt&&(o+=rr(m))}return o}default:return e.nodeValue}}const je=new WeakMap;function gt(){throw new TypeError("Illegal constructor")}gt.prototype=P(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:gt},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return je.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(e,n){H.call(je.get(this),e,n)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return ke.call(je.get(this),(e,n)=>[n,e])}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return ke.call(je.get(this),(e,n)=>n)}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return je.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let e=0;return{next:()=>{const n=je.get(this);return e<n.length?{value:n[e++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get(){return"NodeList"}},toString:{writable:!0,configurable:!0,value(){return"[object NodeList]"}}}),Q(gt,NodeList);function We(e){const n=P(gt.prototype);return je.set(n,e),H.call(e,(o,a)=>{N(n,a,{value:o,enumerable:!0,configurable:!0})}),n}function Kr(e){var n;const o=[];let a=e.getRootNode();for(;!y(a);)o.push(a),a=(n=a.host)===null||n===void 0?void 0:n.getRootNode();return o}const Hn=(e,n)=>{let o;for(;!y(o=e.host);){const a=o.getRootNode();if(a===n)return o;e=a}};function Ke(e,n,o,a){const d=ft.call(n,o,a),m=[],R=Kr(e);if(!w(d))for(let I=0;I<d.length;I++){const $=d[I];if(it($))continue;const z=$.getRootNode();if(B.call(R,z)!==-1){K.call(m,$);continue}const me=Hn(z,R[0]);!y(me)&&B.call(d,me)===-1&&B.call(m,me)===-1&&K.call(m,me)}return m}const $t=new WeakMap;function D(){throw new TypeError("Illegal constructor")}D.prototype=P(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:D},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return $t.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(e){if(e==="")return null;const n=$t.get(this);for(let o=0,a=n.length;o<a;o++){const d=n[a];if(e===Qe.call(d,"id")||e===Qe.call(d,"name"))return d}return null}},[Symbol.toStringTag]:{configurable:!0,get(){return"HTMLCollection"}},toString:{writable:!0,configurable:!0,value(){return"[object HTMLCollection]"}}}),Q(D,HTMLCollection);function Ee(e){const n=P(D.prototype);return $t.set(n,e),H.call(e,(o,a)=>{N(n,a,{value:o,enumerable:!0,configurable:!0})}),n}function Pe(e){return it(e)||F(e)}function Xr(e,n){const o=te(e);if(n===o)return Oe(o);if(n instanceof Element){if(le(e)===le(n))return n;if(!w(o)&&we(n)){const a=te(n);if(!w(a)&&Re(o,a))return a}}return null}function Un(){return v(this).length>0}function xn(){return v(this)[0]||null}function Bn(){const e=v(this);return e[e.length-1]||null}function nr(){return rr(this)}function qn(e){Vt.call(this,e)}function Gn(){const e=ge.call(this);return w(e)?e:Xr(this,e)}function u(){const e=ge.call(this);if(w(e))return null;const n=Xr(this,e);return n instanceof Element?n:null}function t(e){return this===e?0:this.getRootNode()===e?10:M(this)!==M(e)?35:he.call(this,e)}function r(e){return e==null||M(this)!==M(e)?!1:(he.call(this,e)&He)!=0}function i(e){const n=wr.call(this,!1);if(!e)return n;const o=v(this);for(let a=0,d=o.length;a<d;a+=1)n.appendChild(o[a].cloneNode(!0));return n}function s(){if(F(this)){const e=te(this),n=w(e)?[]:Ie(e,ot(this));return We(n)}return J.call(this)}const l=U.prototype.getRootNode,c=y(l)?function(){let e=this,n;for(;!w(n=ge.call(e));)e=n;return e}:l;function f(e){const n=te(e);return w(n)?c.call(e):Oe(n)}function g(e){const n=y(e)?!1:!!e.composed;return De(n)?c.call(this,e):f(this)}C(U.prototype,{firstChild:{get(){return Pe(this)?xn.call(this):hn.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return Pe(this)?Bn.call(this):fn.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return Z(this)||F(this)?nr.call(this):pn.call(this)},set:qn,enumerable:!0,configurable:!0},parentNode:{get(){if(Z(this))return Gn.call(this);const e=ge.call(this);return!w(e)&&it(e)?te(e):e},enumerable:!0,configurable:!0},parentElement:{get(){if(Z(this))return u.call(this);const e=Se.call(this);return!w(e)&&it(e)?te(e):e},enumerable:!0,configurable:!0},childNodes:{get(){return Pe(this)?s.call(this):J.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return Pe(this)?Un.call(this):dn.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(e){return ae(this)?he.call(this,e):t.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value(e){return this===e?!0:e==null?!1:Z(this)||F(this)?r.call(this,e):Tr.call(this,e)},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(e){return Z(this)||F(this)?i.call(this,e):wr.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:g,enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return jt.call(this)}}});let p=!1;function E(){return!p}const v=function(e){return e.childNodes};S.call(HTMLElement.prototype,"contains")&&N(HTMLElement.prototype,"contains",_(U.prototype,"contains")),S.call(HTMLElement.prototype,"parentElement")&&N(HTMLElement.prototype,"parentElement",_(U.prototype,"parentElement"));const A=new WeakMap,O=new WeakMap;function X(e){return be(e)||hr(e)&&!w(e)&&be(e.handleEvent)}function ye(e,n,o){if(n===o)return!0;let a=O.get(e);return y(a)&&(a=e.composedPath(),O.set(e,a)),a.includes(o)}function Xe(e){if(!X(e))return e;let n=A.get(e);return y(n)&&(n=function(o){const a=G.call(o),d=jn(o);if(!!ye(o,d,a))return be(e)?e.call(this,o):e.handleEvent&&e.handleEvent(o)},A.set(e,n)),n}const ir=new WeakMap,fi=new WeakMap;function Vn(e){let n=fi.get(e);return y(n)&&(n=P(null),fi.set(e,n)),n}function jn(e){var n;return(n=zr.get(e))!==null&&n!==void 0?n:Ce.call(e)}const pi=new WeakMap;function mi(e){if(!be(e))throw new TypeError;let n=pi.get(e);return y(n)&&(n=function(o){let a=G.call(o);It(a)||(a=Oe(a));const d=jn(o);ye(o,d,a)&&e.call(a,o)},n.placement=1,pi.set(e,n)),n}const gi=new WeakMap;function yi(e){if(!be(e))throw new TypeError;let n=gi.get(e);return y(n)&&(n=function(o){const a=G.call(o),d=jn(o);ye(o,d,a)&&e.call(a,o)},n.placement=0,gi.set(e,n)),n}function _i(e){let n=!1,o=!1;const{type:a,stopImmediatePropagation:d,stopPropagation:m}=e,R=G.call(e),$=Vn(R)[a];N(e,"stopImmediatePropagation",{value(){n=!0,d.call(e)},writable:!0,enumerable:!0,configurable:!0}),N(e,"stopPropagation",{value(){o=!0,m.call(e)},writable:!0,enumerable:!0,configurable:!0});const z=L.call($);function me(cs){H.call(z,ri=>{$e(n)&&ri.placement===cs&&B.call($,ri)!==-1&&ri.call(void 0,e)})}ir.set(e,1),me(1),$e(n)&&$e(o)&&(ir.set(e,0),me(0)),ir.set(e,2)}function vi(e,n,o){const a=Vn(e);let d=a[n];y(d)&&(d=a[n]=[]),B.call(d,o)===-1&&(d.length===0&&fe.call(e,n,_i),K.call(d,o))}function bi(e,n,o){const a=Vn(e);let d,m;!y(m=a[n])&&(d=B.call(m,o))!==-1&&(Ye.call(m,d,1),m.length===0&&nt.call(e,n,_i))}function Qi(e,n,o){if(be(n)){const a=yi(n);vi(this,e,a)}}function Ji(e,n,o){if(be(n)){const a=yi(n);bi(this,e,a)}}function Zi(e,n,o,a){if(be(o)){const d=x(e),m=mi(o);vi(d,n,m)}}function eo(e,n,o,a){if(be(o)){const d=x(e),m=mi(o);bi(d,n,m)}}const yt=new WeakMap,{createDocumentFragment:to}=document;function ro(e){return yt.has(e)}function or(e){const n=yt.get(e);if(y(n))throw new TypeError;return n}N(U.prototype,lt,{set(e){y(e)||(this[pr]=e,Mn(this,e.nodeKey))},get(){return this[pr]},configurable:!0,enumerable:!0}),N(Fe,rn,{value:Cn}),y(Fe[gr])&&N(Fe,gr,{value:zt,configurable:!0}),y(Fe[yr])&&N(Fe,yr,{value:tt,configurable:!0});function _t(e){return e[lt]}function wi(e,n){e[lt]=n}function sr(e){return or(e).delegatesFocus}function x(e){return or(e).host}function Oe(e){return or(e).shadowRoot}function F(e){const n=yt.get(e);return!y(n)&&e===n.host}function Wn(e){const n=yt.get(e);return!y(n)&&e===n.shadowRoot}let no=0;function io(e,n){if(yt.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");const{mode:o,delegatesFocus:a}=n,d=ee(e),m=to.call(d),R={mode:o,delegatesFocus:!!a,host:e,shadowRoot:m};yt.set(m,R),yt.set(e,R);const I=()=>m,$=I.nodeKey=no++;return kn(e,$),wi(m,I),Q(m,Ft.prototype),m}const Ei={constructor:{writable:!0,configurable:!0,value:Ft},toString:{writable:!0,configurable:!0,value(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},oo={activeElement:{enumerable:!0,configurable:!0,get(){const e=x(this),n=ee(e),o=Ge.call(n);if(w(o))return o;if((he.call(e,o)&He)==0)return null;let a=o;for(;!Re(e,a);)a=Se.call(a);return we(a)?null:a}},delegatesFocus:{configurable:!0,get(){return or(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,n){const o=x(this),a=ee(o);return Ti(this,a,e,n)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,n){const o=x(this),a=ee(o);return Ke(this,a,e,n)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return x(this)}},mode:{configurable:!0,get(){return or(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},zr=new WeakMap;Y(Ei,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(e,n){return un.call(x(this),e,n),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return cn.call(x(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return ln.call(x(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(e,n){return Er.call(x(this),e,n),n}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,n,o){Zi(this,e,n)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(e){return zr.set(e,this),Jt.apply(x(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,n,o){eo(this,e,n)}},baseURI:{enumerable:!0,configurable:!0,get(){return x(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return We(Br(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value(e){const n=x(this);return this===e?0:this.contains(e)?20:he.call(n,e)&He?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(e){if(this===e)return!0;const n=x(this);return(he.call(n,e)&He)!=0&&Re(n,e)}},firstChild:{enumerable:!0,configurable:!0,get(){return v(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const e=v(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return v(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return jt.call(x(this))}},nextSibling:{enumerable:!0,configurable:!0,get(){return null}},previousSibling:{enumerable:!0,configurable:!0,get(){return null}},nodeName:{enumerable:!0,configurable:!0,get(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get(){return x(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get(){return null}},parentNode:{enumerable:!0,configurable:!0,get(){return null}},textContent:{enumerable:!0,configurable:!0,get(){const e=v(this);let n="";for(let o=0,a=e.length;o<a;o+=1){const d=e[o];d.nodeType!==wt&&(n+=rr(d))}return n},set(e){const n=x(this);Vt.call(n,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(e){return!y(e)&&De(e.composed)?x(this).getRootNode(e):this}}},{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return Ee(W.call(Br(this),e=>e instanceof Element))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:e}=this;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value(e){return Lt(this,e)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(e){return We(Gr(this,e))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const e=v(this);let n="";for(let o=0,a=e.length;o<a;o+=1)n+=Dt(e[o]);return n},set(e){const n=x(this);Kt.call(n,e)}}},oo);function Ft(){throw new TypeError("Illegal constructor")}Ft.prototype=P(DocumentFragment.prototype,Ei),N(Ft,Symbol.hasInstance,{value:function(e){return hr(e)&&!w(e)&&(It(e)||oe(e)===Ft.prototype)}});function ps(e){const n=Oe(e);let o=n.$$placeholder$$;if(!y(o))return o;const a=ee(e);return o=n.$$placeholder$$=Mr.call(a,""),C(o,{childNodes:{get(){return n.childNodes},enumerable:!0,configurable:!0},tagName:{get(){return`#shadow-root (${n.mode})`},enumerable:!0,configurable:!0}}),o}function Ht(e,n){const o=[];let a;if(e instanceof Window)a=e;else if(e instanceof U)a=e.getRootNode();else return o;let d=e;for(;!w(d);)if(o.push(d),d instanceof Element||d instanceof Text){const R=d.assignedSlot;w(R)?d=d.parentNode:d=R}else(Wn(d)||It(d))&&(n||d!==a)?d=d.host:d instanceof U?d=d.parentNode:d=null;let m;return e instanceof Window?m=e.document:m=ee(e),o[o.length-1]===m&&o.push(window),o}/** |
| | | @license |
| | | Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
| | | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
| | | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| | | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
| | | Code distributed by Google as part of the polymer project is also |
| | | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
| | | */function ar(e,n){if(w(e))return null;const o=Ht(e,!0),a=n;for(let d=0,m,R,I,$;d<a.length;d++)if(m=a[d],I=m instanceof Window?m:m.getRootNode(),I!==R&&($=o.indexOf(I),R=I),!Wn(I)||!y($)&&$>-1)return m;return null}function Ti(e,n,o,a){const d=Ae.call(n,o,a);return w(d)?d:ar(e,Ht(d,!0))}function so(e,n){return Ti(this,this,e,n)}Document.prototype.elementFromPoint=so;function ao(e,n){return Ke(this,this,e,n)}Document.prototype.elementsFromPoint=ao,N(Document.prototype,"activeElement",{get(){let e=Ge.call(this);if(w(e))return e;for(;!y(M(e));)if(e=Se.call(e),w(e))return null;return e.tagName==="HTML"&&(e=this.body),e},enumerable:!0,configurable:!0}),N(Document.prototype,"getElementById",{value(){const e=zt.apply(this,L.call(arguments));return w(e)?null:y(M(e))||ae(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"querySelector",{value(){const e=k(tt.apply(this,L.call(arguments))),n=Me.call(e,o=>y(M(o))||ae(o));return y(n)?null:n},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"querySelectorAll",{value(){const e=k(tt.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return We(n)},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"getElementsByClassName",{value(){const e=k(kr.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return Ee(n)},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"getElementsByTagName",{value(){const e=k(Yt.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return Ee(n)},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"getElementsByTagNameNS",{value(){const e=k(Sn.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return Ee(n)},writable:!0,enumerable:!0,configurable:!0}),N(_(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const e=k(pt.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return We(n)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:Ft,configurable:!0,writable:!0});const Si=Object.getOwnPropertyDescriptor(Event.prototype,"composed");function lo(){if(!Si)return!1;let e=new Event("click");const n=document.createElement("button");return n.addEventListener("click",o=>e=o),n.click(),!Si.get.call(e)}const uo=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function Ni(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get(){return!0}})}function co(){HTMLElement.prototype.click=function(){fe.call(this,"click",Ni);try{uo.value.call(this)}finally{nt.call(this,"click",Ni)}}}lo()&&co();function ho(){return new Event("test",{composed:!0}).composed!==!0}function fo(){const e=Y(P(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),n=Event;function o(a,d){const m=new n(a,d),R=!!(d&&d.composed);return Object.defineProperties(m,{composed:{get(){return R},configurable:!0,enumerable:!0}}),m}o.prototype=n.prototype,o.AT_TARGET=n.AT_TARGET,o.BUBBLING_PHASE=n.BUBBLING_PHASE,o.CAPTURING_PHASE=n.CAPTURING_PHASE,o.NONE=n.NONE,window.Event=o,Object.defineProperties(Event.prototype,{composed:{get(){const{type:a}=this;return e[a]===1},configurable:!0,enumerable:!0}})}ho()&&fo();const Ci=CustomEvent;function Ai(e,n){const o=new Ci(e,n),a=!!(n&&n.composed);return Object.defineProperties(o,{composed:{get(){return a},configurable:!0,enumerable:!0}}),o}if(Ai.prototype=Ci.prototype,window.CustomEvent=Ai,typeof ClipboardEvent!="undefined"){const e=Y(P(null),{copy:1,cut:1,paste:1});C(ClipboardEvent.prototype,{composed:{get(){const{type:n}=this;return e[n]===1},configurable:!0,enumerable:!0}})}function po(){const e=typeof HTMLIFrameElement!="undefined",n=typeof Proxy!="undefined"&&De(Proxy.isCompat);return e&&n}function mo(){const e=_(HTMLIFrameElement.prototype,"contentWindow"),{get:n}=e;e.get=function(){const o=n.call(this);return w(o)||y(M(this))?o:go(o)},N(HTMLIFrameElement.prototype,"contentWindow",e)}function go(e){return{addEventListener(){return e.addEventListener.apply(e,arguments)},blur(){return e.blur.apply(e,arguments)},close(){return e.close.apply(e,arguments)},focus(){return e.focus.apply(e,arguments)},postMessage(){return e.postMessage.apply(e,arguments)},removeEventListener(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(n){e.location=n},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}}}po()&&mo();const Kn=MutationObserver,{disconnect:yo,observe:_o,takeRecords:vo}=Kn.prototype,Ri="$$lwcObserverCallbackWrapper$$",Xn="$$lwcNodeObservers$$",Yr=new WeakMap;function Qr(e){return e[Xn]}function bo(e,n){e[Xn]=n}function Ii(e){const{addedNodes:n,removedNodes:o,target:a,type:d}=e,m=P(MutationRecord.prototype);return C(m,{addedNodes:{get(){return n},enumerable:!0,configurable:!0},removedNodes:{get(){return o},enumerable:!0,configurable:!0},type:{get(){return d},enumerable:!0,configurable:!0},target:{get(){return a.shadowRoot},enumerable:!0,configurable:!0}}),m}function zn(e,n){let o=n;for(;!w(o);){const a=Qr(o);if(!y(a)&&(a[0]===e||B.call(a,e)!==-1))return!0;o=o.parentNode}return!1}function Pi(e,n){return Ut.call(e,(o,a)=>{const{target:d,addedNodes:m,removedNodes:R,type:I}=a;if(I==="childList"&&!y(Ve(d)))if(m.length>0){const $=m[0];if(zn(n,$)){const z=Qr(d);z&&(z[0]===n||B.call(z,n)!==-1)?K.call(o,a):K.call(o,Ii(a))}}else{const $=d.shadowRoot,z=R[0];if(le(d)===le(z)&&zn(n,d))K.call(o,a);else if($){const me=Qr($);me&&(me[0]===n||B.call(me,n)!==-1)&&K.call(o,Ii(a))}}else zn(n,d)&&K.call(o,a);return o},[])}function wo(e){let n=e[Ri];return y(n)&&(n=e[Ri]=(o,a)=>{const d=Pi(o,a);d.length!==0&&e.call(a,d,a)}),n}function lr(e){const n=wo(e);return new Kn(n)}function Eo(){yo.call(this);const e=Yr.get(this);y(e)||(H.call(e,n=>{const o=n[Xn];if(!y(o)){const a=B.call(o,this);a!==-1&&Ye.call(o,a,1)}}),e.length=0)}function To(e,n){let o=Qr(e);if(y(o)&&(o=[],bo(e,o)),B.call(o,this)===-1&&K.call(o,this),Wn(e)&&(e=e.host),Yr.has(this)){const a=Yr.get(this);B.call(a,e)===-1&&K.call(a,e)}else Yr.set(this,[e]);return _o.call(this,e,n)}function So(){return Pi(vo.call(this),this)}lr.prototype=Kn.prototype,lr.prototype.disconnect=Eo,lr.prototype.observe=To,lr.prototype.takeRecords=So,N(window,"MutationObserver",{value:lr,configurable:!0,writable:!0});function No(e,n,o){if(F(this))return Qi.apply(this,arguments);if(arguments.length<2){const d=L.call(arguments);return d.length>1&&(d[1]=Xe(d[1])),fe.apply(this,d)}const a=Xe(n);return fe.call(this,e,a,o)}function Co(e,n,o){if(F(this))return Ji.apply(this,arguments);const a=L.call(arguments);arguments.length>1&&(a[1]=Xe(a[1])),nt.apply(this,a),nt.apply(this,arguments)}C($r,{addEventListener:{value:No,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Co,enumerable:!0,writable:!0,configurable:!0}});function Ao(){return typeof EventTarget=="undefined"}function Ro(e,n,o){if(arguments.length>1){const a=L.call(arguments);return a[1]=Xe(a[1]),At.apply(this,a)}return At.apply(this,arguments)}function Io(e,n,o){if(arguments.length>1){const a=L.call(arguments);a[1]=Xe(a[1]),mt.apply(this,a)}mt.apply(this,arguments)}function Po(){C(Window.prototype,{addEventListener:{value:Ro,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Io,enumerable:!0,writable:!0,configurable:!0}})}Ao()&&Po();function Oo(){const e=G.call(this);return w(e)?null:ir.get(this)===1?Oe(e):e}function Oi(){const e=Ce.call(this);if(!(e instanceof U))return e;const n=ee(e),o=Ht(e,this.composed),a=G.call(this);if(a instanceof U){if(a===n||a===n.body)return y(M(e))?e:ar(n,o)}else return w(a)&&y(M(e))?e:ar(n,o);let d=a,m=o;return F(a)&&ir.get(this)===1&&(d=Oe(a)),F(e)&&zr.has(this)&&(m=Ht(Oe(e),this.composed)),ar(d,m)}function Li(){const e=Ce.call(this);if(!(e instanceof U))return[];const n=Boolean(e.shadowRoot),o=ro(e);if(n&&!o)return Ct.call(this);const a=G.call(this);if(w(a))return[];let d=e;return F(e)&&zr.has(this)&&(d=Oe(e)),Ht(d,this.composed)}C(Event.prototype,{target:{get:Oi,enumerable:!0,configurable:!0},currentTarget:{get:Oo,enumerable:!0,configurable:!0},composedPath:{value:Li,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Oi,enumerable:!0,configurable:!0},path:{get:Li,enumerable:!0,configurable:!0}});function Mi(e){const n=_(e.prototype,"relatedTarget").get;N(e.prototype,"relatedTarget",{get(){const o=n.call(this);if(w(o))return null;if(!(o instanceof U)||!Z(o))return o;let a=G.call(this);return w(a)&&(a=ee(o)),ar(a,Ht(o,!0))},enumerable:!0,configurable:!0})}Mi(FocusEvent),Mi(MouseEvent);const Lo=S.call(Text.prototype,"assignedSlot")?_(Text.prototype,"assignedSlot").get:()=>null;let Yn;const Mo={childList:!0},ki=new WeakMap;function ko(){return new Rt(e=>{const n=[];H.call(e,o=>{const{target:a}=o;B.call(n,a)===-1&&(K.call(n,a),Jt.call(a,new CustomEvent("slotchange")))})})}function Qn(e){const n=k(J.call(e));return Ut.call(n,(o,a)=>(a instanceof Element&&we(a)?K.apply(o,Qn(a)):K.call(o,a),o),[])}function Di(){const e=ge.call(this);if(e instanceof Element){const n=Or.call(e);if(It(n))return this instanceof Text?Lo.call(this):Ne.call(this)}return!w(e)&&we(e)&&M(e)!==M(this)?e:null}C(HTMLSlotElement.prototype,{addEventListener:{value(e,n,o){HTMLElement.prototype.addEventListener.call(this,e,n,o),e==="slotchange"&&!ki.get(this)&&(ki.set(this,!0),Yn||(Yn=ko()),Qt.call(Yn,this,Mo))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(e){if(Z(this)){const o=!y(e)&&De(e.flatten)?Qn(this):Mt(this);return W.call(o,a=>a instanceof Element)}else return Nt.apply(this,L.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(e){return Z(this)?!y(e)&&De(e.flatten)?Qn(this):Mt(this):qe.apply(this,L.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const e=Qe.call(this,"name");return w(e)?"":e},set(e){Nr.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get(){if(Z(this)){const e=te(this),n=w(e)?[]:Ie(e,ot(this));return We(n)}return J.call(this)},enumerable:!0,configurable:!0}}),C(Text.prototype,{assignedSlot:{get:Di,enumerable:!0,configurable:!0}});function Jn(e,n){let o;const a=M(e);if(y(a))e instanceof HTMLBodyElement?o=W.call(n,d=>y(M(d))||ae(e)):o=L.call(n);else if(F(e)){const d=te(e);w(d)?o=[]:Ve(e)?o=qr(e,n):o=Ie(d,n)}else o=W.call(n,d=>le(d)===a);return o}function Do(){const e=v(this);let n="";for(let o=0,a=e.length;o<a;o+=1)n+=Dt(e[o]);return n}function $o(){return Dt(this)}function Fo(e){return e[de]?io(this,e):yn.call(this,e)}function Ho(){if(F(this)){const e=Oe(this);if(e.mode==="open")return e}return Or.call(this)}function Uo(){const e=te(this),n=w(e)?[]:Ie(e,ot(this));return Ee(W.call(n,o=>o instanceof Element))}function xo(){return this.children.length}function Bo(){return this.children[0]||null}function qo(){const{children:e}=this;return e.item(e.length-1)||null}C(Element.prototype,{innerHTML:{get(){return Z(this)||F(this)?Do.call(this):wn.call(this)},set(e){Kt.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get(){return Z(this)||F(this)?$o.call(this):En.call(this)},set(e){Tn.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:Fo,enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:Ho,enumerable:!0,configurable:!0},children:{get(){return Pe(this)?Uo.call(this):Ir.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return Pe(this)?xo.call(this):_n.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return Pe(this)?Bo.call(this):vn.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return Pe(this)?qo.call(this):bn.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Di,enumerable:!0,configurable:!0}}),S.call(HTMLElement.prototype,"innerHTML")&&N(HTMLElement.prototype,"innerHTML",_(Element.prototype,"innerHTML")),S.call(HTMLElement.prototype,"outerHTML")&&N(HTMLElement.prototype,"outerHTML",_(Element.prototype,"outerHTML")),S.call(HTMLElement.prototype,"children")&&N(HTMLElement.prototype,"children",_(Element.prototype,"children"));function Go(){const e=k(xe.apply(this,L.call(arguments)));if(F(this)){const n=te(this);return y(Ve(this))?w(n)?null:Ot(n,e):re(this,e)}else if(Z(this)){const n=M(this);if(y(n))return e.length===0?null:e[0];{const o=Me.call(e,a=>le(a)===n);return y(o)?null:o}}else{if(!(this instanceof HTMLBodyElement)){const o=e[0];return y(o)?null:o}const n=Me.call(e,o=>y(M(o))||ae(this));return y(n)?null:n}}function Vo(e,n){let o;if(F(e)){const a=te(e);y(Ve(e))?w(a)?o=[]:o=Ie(a,n):o=qr(e,n)}else if(Z(e)){const a=M(e);y(a)?o=L.call(n):o=W.call(n,d=>le(d)===a)}else e instanceof HTMLBodyElement?o=W.call(n,a=>y(M(a))||ae(e)):o=L.call(n);return o}C(Element.prototype,{querySelector:{value:Go,writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const e=k(xe.apply(this,L.call(arguments))),n=Vo(this,e);return We(n)},writable:!0,enumerable:!0,configurable:!0}}),C(Element.prototype,{getElementsByClassName:{value(){const e=k(Pr.apply(this,L.call(arguments)));return Ee(Jn(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const e=k(Et.apply(this,L.call(arguments)));return Ee(Jn(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const e=k(Sr.apply(this,L.call(arguments)));return Ee(Jn(this,e))},writable:!0,enumerable:!0,configurable:!0}}),S.call(HTMLElement.prototype,"getElementsByClassName")&&N(HTMLElement.prototype,"getElementsByClassName",_(Element.prototype,"getElementsByClassName"));const ur=` |
| | | [contenteditable], |
| | | [tabindex], |
| | | a[href], |
| | | area[href], |
| | | audio[controls], |
| | | button, |
| | | iframe, |
| | | input, |
| | | select, |
| | | textarea, |
| | | video[controls] |
| | | `,jo=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function $i(e){return e.filter(n=>Ue.call(n,"tabindex")?Qe.call(n,"tabindex")==="0":jo.has(Ze.call(n))?!Ue.call(n,"disabled"):!0)}const Fi=new WeakMap;function Wo(e){const{width:n,height:o}=mn.call(e),a=n>0||o>0,d=e.tagName==="AREA";return(a||d)&&getComputedStyle(e).visibility!=="hidden"}function Ko(e){return F(e)&&sr(e)?!1:et.call(e,ur)&&Wo(e)}function Xo(){const e=this.getRootNode();if(e===this){const d=ut.call(this,ur);w(d)||d.focus.apply(d,arguments);return}if(e.activeElement===this)return;const o=k(xe.call(this,ur));let a=!1;for(;!a&&o.length!==0;){const d=o.shift();d.focus.apply(d,arguments),a=d.getRootNode().activeElement===d}}function Hi(e){const n=ee(e),o=$i(k(tt.call(n,ur))),a=$i(k(xe.call(e,ur))),d=a[0],m=a[a.length-1],R=B.call(o,e),I=R>-1?R:B.call(o,d),$=a.length===0?I+1:B.call(o,m)+1,z=L.call(o,0,I),me=L.call(o,$);return{prev:z,inner:a,next:me}}function zo(e){const n=ee(e),o=Ge.call(n);return w(o)||(he.call(e,o)&He)!=0?o:null}function Ui(e,n){const o=he.call(e,n);return o&He?0:o&on?1:o&sn?2:-1}function Jr(e){e.preventDefault(),e.stopPropagation()}function Zn(e,n){At.call(e,"focusin",Jr,!0),At.call(e,"focusout",Jr,!0),n(),mt.call(e,"focusin",Jr,!0),mt.call(e,"focusout",Jr,!0)}function Zr(e,n,o){const a=Dr(o),d=Qo(e,o);w(d)?Zn(a,()=>{n.blur()}):Zn(a,()=>{d.focus()})}let cr=!1;function xi(){cr=!0}function ei(){cr=!1}function Yo(){return!cr}function Bi(e){if(cr)return;const n=G.call(e),o=Ce.call(e);if(n!==o)return;const a=ht.call(e);if(w(a))return;const d=Hi(n);if(Ui(n,a)===1){const R=Gi.bind(null,n.getRootNode()),I=Me.call(d.inner,R);if(y(I))Zr(d.next,o,a);else{const $=Dr(I);Zn($,()=>{I.focus()})}}else n===o&&Zr(xt.call(d.prev),o,a)}function qi(e){if(cr)return;const n=ht.call(e);if(w(n))return;const o=G.call(e),a=Hi(o);if(B.call(a.inner,n)!==-1)return;const d=Ce.call(e),m=Ui(o,n);m===1&&Zr(a.next,d,n),m===2&&Zr(xt.call(a.prev),d,n)}function Gi(e,n){if(!Ko(n))return!1;const o=ee(n);let a=n.getRootNode();for(;a!==o&&a!==e;){const m=a.host;if(Qe.call(m,"tabindex")==="-1")return!1;a=m&&m.getRootNode()}return!0}function Qo(e,n){const o=e.length;if(o>0)for(let a=0;a<o;a+=1){const d=e[a];if(Gi(n.getRootNode(),d))return d}return null}function Jo(e){ji(e),Wi(e),fe.call(e,"focusin",Bi,!0)}function Vi(e){nt.call(e,"focusin",Bi,!0)}function ji(e){const n=ee(e);Fi.get(n)||(Fi.set(n,!0),fe.call(n,"mousedown",xi,!0),fe.call(n,"mouseup",()=>{setTimeout(ei)},!0),fe.call(n,"dragstart",ei,!0))}function Zo(e){ji(e),Vi(e),fe.call(e,"focusin",qi,!0)}function Wi(e){nt.call(e,"focusin",qi,!0)}const{blur:Ki,focus:es}=HTMLElement.prototype;function ts(){return sr(this)&&$e(Ue.call(this,"tabindex"))?0:Tt.call(this)}function rs(e){const n=sr(this),o=Tt.call(this),a=Ue.call(this,"tabindex");St.call(this,e);const d=Tt.call(this),m=Ue.call(this,"tabindex"),R=o!==d;a&&(R||$e(m))&&(o===-1&&Wi(this),o===0&&n&&Vi(this)),!$e(m)&&(a&&m&&$e(R)||(d===-1&&Zo(this),d===0&&n&&Jo(this)))}function ns(){if(sr(this)){const e=zo(this);if(!w(e)){e.blur();return}}return Ki.call(this)}function is(){const e=Yo();if(e&&xi(),F(this)&&sr(this)){Xo.call(this);return}es.apply(this,arguments),e&&ei()}C(HTMLElement.prototype,{tabIndex:{get(){return F(this)?ts.call(this):Tt.call(this)},set(e){return F(this)?rs.call(this,e):St.call(this,e)},enumerable:!0,configurable:!0},blur:{value(){if(F(this))return ns.call(this);Ki.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){is.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),Wt!==null&&Cr!==null&&N(HTMLElement.prototype,"innerText",{get(){return Wt.call(this)},set(e){Cr.call(this,e)},enumerable:!0,configurable:!0}),Ar!==null&&Je!==null&&N(HTMLElement.prototype,"outerText",{get(){return Ar.call(this)},set(e){Je.call(this,e)},enumerable:!0,configurable:!0});function os(e){return e[Bt]}function ss(e,n){e[Bt]=n}N(Element.prototype,Bt,{set(e){const n=this[b];!y(n)&&n!==e&&gn.call(this,n),y(e)||Nr.call(this,e,""),this[b]=e},get(){return this[b]},configurable:!0});function Xi(e,n){e[lt]=n;const o=J.call(e);for(let a=0,d=o.length;a<d;a++)Xi(o[a],n)}N(Element.prototype,nn,{set(e){if(e){const n=this[lt];Xi(this,n)}this[mr]=e},get(){return this[mr]},configurable:!0});const zi="$$DomManualKey$$",as=function(){};let en;const Yi={childList:!0};function ti(e,n,o){const a=_t(e);if(a!==n&&(wi(e,n),e instanceof Element)){if(ss(e,o),F(e))return;y(a)&&Qt.call(en,e,Yi);const d=J.call(e);for(let m=0,R=d.length;m<R;m+=1)ti(d[m],n,o)}}function ls(){return new Rt(e=>{H.call(e,n=>{const{target:o,addedNodes:a,removedNodes:d}=n,m=_t(o),R=os(o);for(let I=0,$=d.length;I<$;I+=1){const z=d[I];he.call(o,z)&U.DOCUMENT_POSITION_CONTAINED_BY||ti(z,as,void 0)}for(let I=0,$=a.length;I<$;I+=1){const z=a[I];he.call(o,z)&U.DOCUMENT_POSITION_CONTAINED_BY&&ti(z,m,R)}})})}function us(e){if(y(en)&&(en=ls()),y(_t(e)))throw new Error("Invalid Element");Qt.call(en,e,Yi)}N(Element.prototype,"$domManual$",{set(e){this[zi]=e,De(e)&&us(this)},get(){return this[zi]},configurable:!0})}),LWR.define("@lwrjs/app-service/communities_app/module/amd/v/0_9_0",["lwr/loaderLegacy/v/0_9_0","@lwc/synthetic-shadow/v/2_41_4","webruntime/hook/v/1_66_319-244_0","webruntime/o11yHook/v/1_66_319-244_0","webruntime/dynamicImportResourceHook/v/1_66_319-244_0","lwr/init/v/0_9_0"],function(T,V,ue,ne,ce,Y){"use strict";function P(S){return S&&typeof S=="object"&&"default"in S?S:{default:S}}var C=P(ue),N=P(ne),j=P(ce);C.default(T.services),N.default(T.services),j.default(T.services);const _=globalThis.LWR,{rootComponents:_e,ssrProps:oe}=_;Promise.all(_e.map(async S=>{const ie=Y.toKebabCase(S);return T.load(S,"@lwrjs/app-service/communities_app/module/amd/v/0_9_0").then(({default:st})=>{Y.init([[ie,st]],oe)})})),globalThis.LWR=Object.freeze({define:globalThis.LWR.define})}); |
| New file |
| | |
| | | LWR.define("lwc/v/2_41_4",["exports"],function(N){"use strict";function ti(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)}function ni(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)}function oi(e,t){if(e)throw new Error(`Assert Violation: ${t}`)}function ri(e){throw new Error(e)}var P=Object.freeze({__proto__:null,fail:ri,invariant:ti,isFalse:oi,isTrue:ni});const{assign:x,create:b,defineProperties:Z,defineProperty:_,freeze:we,getOwnPropertyDescriptor:Y,getOwnPropertyNames:_t,getPrototypeOf:ve,hasOwnProperty:ze,isFrozen:ii,keys:F,seal:qe,setPrototypeOf:Qe}=Object,{isArray:G}=Array,{concat:Ql,copyWithin:si,fill:ai,filter:Ot,find:Xl,indexOf:kt,join:be,map:qn,pop:Qn,push:M,reduce:Jl,reverse:ci,shift:li,slice:Xn,some:Zl,sort:ui,splice:At,unshift:$t,forEach:Ne}=Array.prototype,{fromCharCode:Jn}=String,{charCodeAt:ue,replace:Rt,split:di,slice:Zn,toLowerCase:Vt}=String.prototype;function c(e){return e===void 0}function g(e){return e===null}function de(e){return e===!0}function Q(e){return e===!1}function fi(e){return typeof e=="boolean"}function D(e){return typeof e=="function"}function Xe(e){return typeof e=="object"}function Je(e){return typeof e=="string"}function eu(e){return typeof e=="number"}function k(){}const pi={}.toString;function ee(e){return e&&e.toString?G(e)?be.call(qn.call(e,ee),","):e.toString():typeof e=="object"?pi.call(e):e+""}function K(e,t){do{const n=Y(e,t);if(!c(n))return n;e=ve(e)}while(e!==null)}const hi=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:mi,AriaPropNameToAttrNameMap:Ze}=(()=>{const e=b(null),t=b(null);return Ne.call(hi,n=>{const o=Vt.call(Rt.call(n,/^aria/,()=>"aria-"));e[o]=n,t[n]=o}),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),eo=new Set(["aria-activedescendant","aria-controls","aria-describedby","aria-details","aria-errormessage","aria-flowto","aria-labelledby","aria-owns","for"]),X=typeof globalThis=="object"?globalThis:window,gi="$isNativeShadowRootDefined$",Lt="$shadowResolver$",yi="$shadowStaticNode$",to="$shadowToken$",Ei="$$lwc-synthetic-mode",no="$scoped$",oo="$nativeGetElementById$",ro="$nativeQuerySelectorAll$",io="http://www.w3.org/XML/1998/namespace",wi="http://www.w3.org/2000/svg",so="http://www.w3.org/1999/xlink",vi=/-([a-z])/g,{NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING:bi,NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING:Ni}=(()=>{const e=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),t=new Map;return e.forEach((n,o)=>t.set(n,o)),{NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING:t,NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING:e}})(),ao=new Map,co=new Map;function lo(e){const t=Ze[e];if(!c(t))return t;const n=Ni.get(e);if(!c(n))return n;const o=ao.get(e);if(!c(o))return o;let r="";for(let i=0,s=e.length;i<s;i++){const a=ue.call(e,i);a>=65&&a<=90?r+="-"+Jn(a+32):r+=Jn(a)}return ao.set(e,r),r}function Ci(e){const t=mi[e];if(!c(t))return t;const n=bi.get(e);if(!c(n))return n;const o=co.get(e);if(!c(o))return o;const r=Rt.call(e,vi,i=>i[1].toUpperCase());return co.set(e,r),r}const Ti={'"':""","'":"'","<":"<",">":">","&":"&"};function Si(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,o=>Ti[o])}const It="2.41.4",Mi=/\/\*LWC compiler v([\d.]+)\*\/\s*}/,uo={DUMMY_TEST_FLAG:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_WIRE_SYNC_EMIT:null,DISABLE_LIGHT_DOM_UNSCOPED_CSS:null,ENABLE_FROZEN_TEMPLATE:null,DISABLE_ARIA_REFLECTION_POLYFILL:null};X.lwcRuntimeFlags||Object.defineProperty(X,"lwcRuntimeFlags",{value:b(null)});const fo=X.lwcRuntimeFlags;function Di(e,t){if(!fi(t)){const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n);return}if(c(uo[e])){const n=F(uo).map(o=>`"${o}"`).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`);return}{const n=fo[e];if(!c(n)){console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);return}_(fo,e,{value:t})}}function _i(e,t){}function Oi(e,t){return c(Y(t,e))}function ki(e){return{get(){return this.hasAttribute(e)?this.getAttribute(e):null},set(t){g(t)?this.removeAttribute(e):this.setAttribute(e,t)},configurable:!0,enumerable:!0}}function Ai(e,t){const n=Ze[e],o=ki(n);_(t,e,o)}function po(e=Element.prototype){const t=F(Ze);for(let n=0,o=t.length;n<o;n+=1){const r=t[n];Oi(r,e)&&Ai(r,e)}}po();const Pt=[];let Ft=k,et=!1;const $i={attachDispatcher(e){et=!0,Ft=e;for(const t of Pt)try{t()}catch(n){console.error("Could not invoke callback",n)}Pt.length=0},detachDispatcher(){et=!1,Ft=k}};function Bt(e){et?e():Pt.push(e)}function tt(e,t){et&&Ft(e,t)}function te(e){return`<${Vt.call(e.tagName)}>`}function Ri(e){const t=[];let n="";for(;!g(e.owner);)M.call(t,n+te(e)),e=e.owner,n+=" ";return be.call(t,` |
| | | `)}function Vi(e){const t=[];let n=e;for(;!g(n);)M.call(t,te(n)),n=n.owner;return t.reverse().join(` |
| | | `)}function ho(e,t){if(!ii(t)&&c(t.wcStack)){const n=Vi(e);_(t,"wcStack",{get(){return n}})}}const mo=new Set;function Ht(e,t,n,o){let r=`[LWC ${e}]: ${t}`;if(c(n)||(r=`${r} |
| | | ${Ri(n)}`),o){if(mo.has(r))return;mo.add(r)}try{throw new Error(r)}catch(i){console[e](i)}}function B(e,t){Ht("error",e,t,!1)}function tu(e,t){Ht("warn",e,t,!1)}function nu(e,t){Ht("warn",e,t,!0)}const Wt=new WeakMap;function Li(e){let t=Wt.get(e);if(c(t)){const n=b(null);t=n,Wt.set(e,n)}return t}let Ce=null;function go(e,t){const n=Wt.get(e);if(!c(n)){const o=n[t];if(!c(o))for(let r=0,i=o.length;r<i;r+=1)o[r].notify()}}function yo(e,t){if(Ce===null)return;const n=Ce,o=Li(e);let r=o[t];if(c(r))r=[],o[t]=r;else if(r[0]===n)return;kt.call(r,n)===-1&&n.link(r)}class Ii{constructor(t){this.listeners=[],this.callback=t}observe(t){const n=Ce;Ce=this;let o;try{t()}catch(r){o=Object(r)}finally{if(Ce=n,o!==void 0)throw o}}reset(){const{listeners:t}=this,n=t.length;if(n>0){for(let o=0;o<n;o+=1){const r=t[o],i=kt.call(t[o],this);At.call(r,i,1)}t.length=0}}notify(){this.callback.call(void 0,this)}link(t){M.call(t,this),M.call(this.listeners,t)}}function Eo(e,t){go(e.component,t)}function Te(e,t){yo(e.component,t)}function wo(e){return new Ii(e)}let nt=[];const Pi=32,I=qe(b(null)),H=qe([]);function Fi(){const e=nt;nt=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function vo(e){nt.length===0&&Promise.resolve().then(Fi),M.call(nt,e)}function Bi(){function e(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}const Hi=/;(?![^(]*\))/g,Wi=/:(.+)/;function xi(e){const t={},n=e.split(Hi);for(const o of n)if(o){const[r,i]=o.split(Wi);r!==void 0&&i!==void 0&&(t[r.trim()]=i.trim())}return t}function Ui(e,t){const n={};for(const o of F(e))o!==t&&(n[o]=e[o]);return n}function xt(e){const t=[];for(const n of e)G(n)?t.push(...xt(n)):t.push(n);return t}function bo(e,t,n){const o=e.refVNodes;(!(t in o)||o[t].key<n.key)&&(o[t]=n)}function U(){throw new ReferenceError}function Ut(e){const t=e();return(t==null?void 0:t.__esModule)?t.default:t}function jt(e){return D(e)&&ze.call(e,"__circular__")}const No=typeof HTMLElement!="undefined"?HTMLElement:function(){},Co=No.prototype,ji=["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"];function ot(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}const Yt={accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:ot("offsetHeight")},offsetLeft:{readOnly:!0,error:ot("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:ot("offsetTop")},offsetWidth:{readOnly:!0,error:ot("offsetWidth")},role:{attribute:"role"}};let Gt=null,Kt;function Yi(e,t){return e!==Gt||t!==Kt}function Se(e,t){Gt=null,Kt=void 0}function Me(e,t){Gt=e,Kt=t}const De=b(null);Ne.call(F(Ze),e=>{const t=K(Co,e);c(t)||(De[e]=t)}),Ne.call(ji,e=>{const t=K(Co,e);c(t)||(De[e]=t)});function ne(e){return x({configurable:!0,enumerable:!0,writable:!0},e)}function z(e){return x({configurable:!0,enumerable:!0},e)}let _e=!1;function ou(){U(),_e=!0}function ru(){U(),_e=!1}function oe(e,t){return B(`The \`${e}\` ${t} is available only on elements that use the \`lwc:dom="manual"\` directive.`)}function iu(e,t){U();const n=K(e,"outerHTML"),o={outerHTML:z({get(){return n.get.call(this)},set(r){throw new TypeError("Invalid attempt to set outerHTML on Element.")}})};if(!t.isLight&&t.isSynthetic&&!t.isPortal){const{appendChild:r,insertBefore:i,removeChild:s,replaceChild:a}=e,l=K(e,"nodeValue"),u=K(e,"innerHTML"),d=K(e,"textContent");x(o,{appendChild:ne({value(f){return oe("appendChild","method"),r.call(this,f)}}),insertBefore:ne({value(f,E){return _e||oe("insertBefore","method"),i.call(this,f,E)}}),removeChild:ne({value(f){return _e||oe("removeChild","method"),s.call(this,f)}}),replaceChild:ne({value(f,E){return oe("replaceChild","method"),a.call(this,f,E)}}),nodeValue:z({get(){return l.get.call(this)},set(f){_e||oe("nodeValue","property"),l.set.call(this,f)}}),textContent:z({get(){return d.get.call(this)},set(f){oe("textContent","property"),d.set.call(this,f)}}),innerHTML:z({get(){return u.get.call(this)},set(f){return oe("innerHTML","property"),u.set.call(this,f)}})})}Z(e,o)}function Gi(e){U();const t=e.addEventListener,n=K(e,"innerHTML"),o=K(e,"textContent");return{innerHTML:z({get(){return n.get.call(this)},set(r){throw new TypeError("Invalid attempt to set innerHTML on ShadowRoot.")}}),textContent:z({get(){return o.get.call(this)},set(r){throw new TypeError("Invalid attempt to set textContent on ShadowRoot.")}}),addEventListener:ne({value(r,i,s){return c(s)||B("The `addEventListener` method on ShadowRoot does not support any options.",q(this)),t.apply(this,arguments)}})}}function Ki(e){U();const t=e.addEventListener,n=K(e,"innerHTML"),o=K(e,"outerHTML"),r=K(e,"textContent");return{innerHTML:z({get(){return n.get.call(this)},set(i){throw new TypeError("Invalid attempt to set innerHTML on HTMLElement.")}}),outerHTML:z({get(){return o.get.call(this)},set(i){throw new TypeError("Invalid attempt to set outerHTML on HTMLElement.")}}),textContent:z({get(){return r.get.call(this)},set(i){throw new TypeError("Invalid attempt to set textContent on HTMLElement.")}}),addEventListener:ne({value(i,s,a){return c(a)||B("The `addEventListener` method in `LightningElement` does not support any options.",q(this)),t.apply(this,arguments)}})}}function zi(){return U(),{tagName:z({get(){throw new Error("Usage of property `tagName` is disallowed because the component itself does not know which tagName will be used to create the element, therefore writing code that check for that value is error prone.")},configurable:!0,enumerable:!1})}}function qi(e){U();const t=e.dispatchEvent,n={dispatchEvent:ne({value(o){const r=w(this);if(!g(o)&&Xe(o)){const{type:i}=o;/^[a-z][a-z0-9_]*$/.test(i)||B(`Invalid event type "${i}" dispatched in element ${te(r)}. Event name must start with a lowercase letter and followed only lowercase letters, numbers, and underscores`,r)}return t.apply(this,arguments)}})};return Ne.call(_t(Yt),o=>{o in e||(n[o]=z({get(){const{error:r,attribute:i}=Yt[o],s=[];s.push(`Accessing the global HTML property "${o}" is disabled.`),r?s.push(r):i&&s.push(`Instead access it via \`this.getAttribute("${i}")\`.`),B(s.join(` |
| | | `),w(this))},set(){const{readOnly:r}=Yt[o];r&&B(`The global HTML property \`${o}\` is read-only.`,w(this))}}))}),n}function su(e){Z(e,Gi(e))}function au(e){const t=Ki(e),n=ve(e);Qe(e,b(n,t))}function cu(e){Z(e,zi())}function lu(e){Z(e,qi(e))}function Oe(e,t,n){const{cmpFields:o}=e;n!==o[t]&&(o[t]=n,Eo(e,t))}const{isArray:rt}=Array,{prototype:Qi,getPrototypeOf:it,create:To,defineProperty:st,isExtensible:at,getOwnPropertyDescriptor:So,getOwnPropertyNames:zt,getOwnPropertySymbols:qt,preventExtensions:Mo,hasOwnProperty:ke}=Object,{push:Qt,concat:Do}=Array.prototype,Xi={}.toString;function uu(e){return e&&e.toString?e.toString():typeof e=="object"?Xi.call(e):e+""}function R(e){return e===void 0}function Xt(e){return typeof e=="function"}const _o=new WeakMap;function Oo(e,t){_o.set(e,t)}const j=e=>_o.get(e)||e;class ko{constructor(t,n){this.originalTarget=n,this.membrane=t}wrapDescriptor(t){if(ke.call(t,"value"))t.value=this.wrapValue(t.value);else{const{set:n,get:o}=t;R(o)||(t.get=this.wrapGetter(o)),R(n)||(t.set=this.wrapSetter(n))}return t}copyDescriptorIntoShadowTarget(t,n){const{originalTarget:o}=this,r=So(o,n);if(!R(r)){const i=this.wrapDescriptor(r);st(t,n,i)}}lockShadowTarget(t){const{originalTarget:n}=this;Do.call(zt(n),qt(n)).forEach(i=>{this.copyDescriptorIntoShadowTarget(t,i)});const{membrane:{tagPropertyKey:r}}=this;!R(r)&&!ke.call(t,r)&&st(t,r,To(null)),Mo(t)}apply(t,n,o){}construct(t,n,o){}get(t,n){const{originalTarget:o,membrane:{valueObserved:r}}=this,i=o[n];return r(o,n),this.wrapValue(i)}has(t,n){const{originalTarget:o,membrane:{tagPropertyKey:r,valueObserved:i}}=this;return i(o,n),n in o||n===r}ownKeys(t){const{originalTarget:n,membrane:{tagPropertyKey:o}}=this,r=R(o)||ke.call(n,o)?[]:[o];return Qt.apply(r,zt(n)),Qt.apply(r,qt(n)),r}isExtensible(t){const{originalTarget:n}=this;return at(t)?at(n)?!0:(this.lockShadowTarget(t),!1):!1}getPrototypeOf(t){const{originalTarget:n}=this;return it(n)}getOwnPropertyDescriptor(t,n){const{originalTarget:o,membrane:{valueObserved:r,tagPropertyKey:i}}=this;r(o,n);let s=So(o,n);return R(s)?n!==i?void 0:(s={value:void 0,writable:!1,configurable:!1,enumerable:!1},st(t,i,s),s):(s.configurable===!1&&this.copyDescriptorIntoShadowTarget(t,n),this.wrapDescriptor(s))}}const Jt=new WeakMap,Zt=new WeakMap,en=new WeakMap,tn=new WeakMap;class Ji extends ko{wrapValue(t){return this.membrane.getProxy(t)}wrapGetter(t){const n=Jt.get(t);if(!R(n))return n;const o=this,r=function(){return o.wrapValue(t.call(j(this)))};return Jt.set(t,r),en.set(r,t),r}wrapSetter(t){const n=Zt.get(t);if(!R(n))return n;const o=function(r){t.call(j(this),j(r))};return Zt.set(t,o),tn.set(o,t),o}unwrapDescriptor(t){if(ke.call(t,"value"))t.value=j(t.value);else{const{set:n,get:o}=t;R(o)||(t.get=this.unwrapGetter(o)),R(n)||(t.set=this.unwrapSetter(n))}return t}unwrapGetter(t){const n=en.get(t);if(!R(n))return n;const o=this,r=function(){return j(t.call(o.wrapValue(this)))};return Jt.set(r,t),en.set(t,r),r}unwrapSetter(t){const n=tn.get(t);if(!R(n))return n;const o=this,r=function(i){t.call(o.wrapValue(this),o.wrapValue(i))};return Zt.set(r,t),tn.set(t,r),r}set(t,n,o){const{originalTarget:r,membrane:{valueMutated:i}}=this;return r[n]!==o?(r[n]=o,i(r,n)):n==="length"&&rt(r)&&i(r,n),!0}deleteProperty(t,n){const{originalTarget:o,membrane:{valueMutated:r}}=this;return delete o[n],r(o,n),!0}setPrototypeOf(t,n){}preventExtensions(t){if(at(t)){const{originalTarget:n}=this;if(Mo(n),at(n))return!1;this.lockShadowTarget(t)}return!0}defineProperty(t,n,o){const{originalTarget:r,membrane:{valueMutated:i,tagPropertyKey:s}}=this;return n===s&&!ke.call(r,n)||(st(r,n,this.unwrapDescriptor(o)),o.configurable===!1&&this.copyDescriptorIntoShadowTarget(t,n),i(r,n)),!0}}const Ao=new WeakMap,$o=new WeakMap;class Zi extends ko{wrapValue(t){return this.membrane.getReadOnlyProxy(t)}wrapGetter(t){const n=Ao.get(t);if(!R(n))return n;const o=this,r=function(){return o.wrapValue(t.call(j(this)))};return Ao.set(t,r),r}wrapSetter(t){const n=$o.get(t);if(!R(n))return n;const o=this,r=function(i){};return $o.set(t,r),r}set(t,n,o){return!1}deleteProperty(t,n){return!1}setPrototypeOf(t,n){}preventExtensions(t){return!1}defineProperty(t,n,o){return!1}}function nn(e){if(rt(e))return e.map(o=>{const r=j(o);return r!==o?nn(r):o});const t=To(it(e)),n=zt(e);return Do.call(n,qt(e)).reduce((o,r)=>{const i=e[r],s=j(i);return s!==i?o[r]=nn(s):o[r]=i,o},t)}const es={header:e=>{const t=j(e);if(!t||t===e)return null;const n=nn(e);return["object",{object:n}]},hasBody:()=>!1,body:()=>null};function ts(){return typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{}}function du(){throw new ReferenceError}function ns(e){if(e===null||typeof e!="object")return!1;if(rt(e))return!0;const t=it(e);return t===Qi||t===null||it(t)===null}const os=(e,t)=>{},rs=(e,t)=>{};function Ro(e){return rt(e)?[]:{}}class is{constructor(t={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:n,valueObserved:o,valueIsObservable:r,tagPropertyKey:i}=t;this.valueMutated=Xt(n)?n:rs,this.valueObserved=Xt(o)?o:os,this.valueIsObservable=Xt(r)?r:ns,this.tagPropertyKey=i}getProxy(t){const n=j(t);return this.valueIsObservable(n)?this.readOnlyObjectGraph.get(n)===t?t:this.getReactiveHandler(n):n}getReadOnlyProxy(t){return t=j(t),this.valueIsObservable(t)?this.getReadOnlyHandler(t):t}unwrapProxy(t){return j(t)}getReactiveHandler(t){let n=this.reactiveObjectGraph.get(t);if(R(n)){const o=new Ji(this,t);n=new Proxy(Ro(t),o),Oo(n,t),this.reactiveObjectGraph.set(t,n)}return n}getReadOnlyHandler(t){let n=this.readOnlyObjectGraph.get(t);if(R(n)){const o=new Zi(this,t);n=new Proxy(Ro(t),o),Oo(n,t),this.readOnlyObjectGraph.set(t,n)}return n}}const Vo=Symbol.for("@@lockerLiveValue"),on=new is({valueObserved:yo,valueMutated:go,tagPropertyKey:Vo});function ss(e){return on.unwrapProxy(e)}function Lo(e){return on.getReadOnlyProxy(e)}function Io(e){return on.getProxy(e)}function as(e){e[Vo]=void 0}function cs(e,t){const{get:n,set:o,enumerable:r,configurable:i}=t;if(!D(n))throw new TypeError;if(!D(o))throw new TypeError;return{enumerable:r,configurable:i,get(){const s=w(this);if(!Dn(s))return Te(s,e),n.call(s.elm)},set(s){const a=w(this);return Oe(a,e,s),o.call(a.elm,s)}}}const Po=new WeakMap,O=function(){if(g(ce))throw new TypeError("Illegal constructor");const e=ce,{def:t,elm:n}=e,{bridge:o}=t,r=this;if(Qe(n,o.prototype),e.component=this,arguments.length===1){const{callHook:i,setHook:s,getHook:a}=arguments[0];e.callHook=i,e.setHook=s,e.getHook=a}return as(this),Rn(r,e),Rn(n,e),e.renderMode===1?e.renderRoot=ls(e):e.renderRoot=n,this};function ls(e){const{elm:t,mode:n,shadowMode:o,def:{ctor:r},renderer:{attachShadow:i}}=e,s=i(t,{[Ei]:o===1,delegatesFocus:Boolean(r.delegatesFocus),mode:n});return e.shadowRoot=s,Rn(s,e),s}function fu(e,t){Dn(e)&&B(`this.${t} should not be called during the construction of the custom element for ${te(e)} because the element is not yet in the DOM or has no children yet.`)}O.prototype={constructor:O,dispatchEvent(e){const t=w(this),{elm:n,renderer:{dispatchEvent:o}}=t;return o(n,e)},addEventListener(e,t,n){const o=w(this),{elm:r,renderer:{addEventListener:i}}=o,s=Tr(o,t);i(r,e,s,n)},removeEventListener(e,t,n){const o=w(this),{elm:r,renderer:{removeEventListener:i}}=o,s=Tr(o,t);i(r,e,s,n)},hasAttribute(e){const t=w(this),{elm:n,renderer:{getAttribute:o}}=t;return!g(o(n,e))},hasAttributeNS(e,t){const n=w(this),{elm:o,renderer:{getAttribute:r}}=n;return!g(r(o,t,e))},removeAttribute(e){const t=w(this),{elm:n,renderer:{removeAttribute:o}}=t;Me(n,e),o(n,e),Se()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:o}}=w(this);Me(n,t),o(n,t,e),Se()},getAttribute(e){const t=w(this),{elm:n}=t,{getAttribute:o}=t.renderer;return o(n,e)},getAttributeNS(e,t){const n=w(this),{elm:o}=n,{getAttribute:r}=n.renderer;return r(o,t,e)},setAttribute(e,t){const n=w(this),{elm:o,renderer:{setAttribute:r}}=n;Me(o,e),r(o,e,t),Se()},setAttributeNS(e,t,n){const o=w(this),{elm:r,renderer:{setAttribute:i}}=o;Me(r,t),i(r,t,n,e),Se()},getBoundingClientRect(){const e=w(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=w(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=w(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return w(this).shadowRoot},get refs(){const e=w(this);if(yt)return;const{refVNodes:t,cmpTemplate:n}=e;if(g(t))return;let o=Po.get(t);if(c(o)){o=b(null);for(const r of F(t))o[r]=t[r].elm;we(o),Po.set(t,o)}return o},set refs(e){_(this,"refs",{configurable:!0,enumerable:!0,writable:!0,value:e})},get shadowRoot(){return null},get children(){const e=w(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=w(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=w(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=w(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=w(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=w(this);return e.renderer.getLastElementChild(e.elm)},get ownerDocument(){const e=w(this);return e.renderer.ownerDocument(e.elm)},render(){return w(this).def.template},toString(){return`[object ${w(this).def.name}]`}};const Fo=b(null),us=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of us)Fo[e]={value(t){const n=w(this),{elm:o,renderer:r}=n;return r[e](o,t)},configurable:!0,enumerable:!0,writable:!0};Z(O.prototype,Fo);const rn=b(null);for(const e in De)rn[e]=cs(e,De[e]);Z(O.prototype,rn);function pu(){po(O.prototype)}_(O,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});function ds(e){return{get(){const t=w(this);return Te(t,e),t.cmpFields[e]},set(t){const n=w(this);Oe(n,e,t)},enumerable:!0,configurable:!0}}const sn=new Map;function fs(e,t){let n=sn.get(e);if(!c(n))throw new Error("Adapter already has a context provider.");n=Bi(),sn.set(e,n);const o=new WeakSet;return(r,i)=>{if(o.has(r))throw new Error(`Adapter was already installed on ${r}.`);o.add(r);const{consumerConnectedCallback:s,consumerDisconnectedCallback:a}=i;t(r,n,l=>{const{setNewContext:u,setDisconnectedCallback:d}=l,f={provide(v){u(v)}};d(()=>{c(a)||a(f)}),s(f)})}}function ps(e,t,n){const{adapter:o}=t,r=sn.get(o);if(c(r))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:a},renderer:{registerContextConsumer:l}}=e;M.call(s,()=>{l(i,r,{setNewContext(u){n(u)},setDisconnectedCallback(u){M.call(a,u)}})})}const hs="$$DeprecatedWiredElementHostKey$$",ms="$$DeprecatedWiredParamsMetaKey$$",hu="@wire",an=new Map;function gs(e,t){return n=>{Oe(e,t,n)}}function ys(e,t){return n=>{J(e,e.owner,k,()=>{t.call(e.component,n)},k)}}function Es(e,t,n){let o=!1;const r=wo(()=>{o===!1&&(o=!0,Promise.resolve().then(()=>{o=!1,r.reset(),i()}))}),i=()=>{let s;r.observe(()=>s=t(e)),n(s)};return{computeConfigAndUpdate:i,ro:r}}function ws(e,t,n){const{method:o,adapter:r,configCallback:i,dynamic:s}=n;let a;const l=c(o)?gs(e,t):ys(e,o),u=h=>{l(h)};let d,f;_(u,hs,{value:e.elm}),_(u,ms,{value:s}),J(e,e,k,()=>{f=new r(u)},k);const E=h=>{J(e,e,k,()=>{f.update(h,d)},k)},{computeConfigAndUpdate:v,ro:m}=Es(e.component,i,E);return c(r.contextSchema)||ps(e,n,h=>{d!==h&&(d=h,e.state===1&&v())}),{connector:f,computeConfigAndUpdate:v,resetConfigWatcher:()=>m.reset()}}function vs(e,t,n,o){t.adapter&&(t=t.adapter);const r=e.value,i={adapter:t,method:r,configCallback:n,dynamic:o};an.set(e,i)}function bs(e,t,n,o){t.adapter&&(t=t.adapter);const r={adapter:t,configCallback:n,dynamic:o};an.set(e,r)}function Ns(e){const{context:t,def:{wire:n}}=e,o=t.wiredConnecting=[],r=t.wiredDisconnecting=[];for(const i in n){const s=n[i],a=an.get(s);if(!c(a)){const{connector:l,computeConfigAndUpdate:u,resetConfigWatcher:d}=ws(e,i,a),f=a.dynamic.length>0;M.call(o,()=>{if(l.connect(),f){Promise.resolve().then(u);return}u()}),M.call(r,()=>{l.disconnect(),d()})}}}function Cs(e){const{wiredConnecting:t}=e.context;for(let n=0,o=t.length;n<o;n+=1)t[n]()}function Ts(e){const{wiredDisconnecting:t}=e.context;J(e,e,k,()=>{for(let n=0,o=t.length;n<o;n+=1)t[n]()},k)}function Ss(){throw new Error}function Ms(e){return{get(){const t=w(this);if(!Dn(t))return Te(t,e),t.cmpProps[e]},set(t){const n=w(this);n.cmpProps[e]=t,Eo(n,e)},enumerable:!0,configurable:!0}}function Bo(e,t){const{get:n,set:o,enumerable:r,configurable:i}=t;if(!D(n))throw new Error;return{get(){return n.call(this)},set(s){const a=w(this);o&&o.call(this,s)},enumerable:r,configurable:i}}function Ds(e){if(arguments.length===1)return Io(e);throw new Error}function _s(e){return{get(){const t=w(this);return Te(t,e),t.cmpFields[e]},set(t){const n=w(this),o=Io(t);Oe(n,e,o)},enumerable:!0,configurable:!0}}function Os(e,t){throw new Error}function ks(e){return{get(){const t=w(this);return Te(t,e),t.cmpFields[e]},set(t){const n=w(this);Oe(n,e,t)},enumerable:!0,configurable:!0}}function ct(e){return D(e.value)?"method":D(e.set)||D(e.get)?"accessor":"field"}function mu(e,t,n){if(!c(n)){const o=ct(n),r=`Invalid observed ${t} field. Found a duplicate ${o} with the same name.`;o==="accessor"?B(r):P.fail(r)}}function gu(e,t,n){if(!c(n)){const o=ct(n);P.fail(`Invalid @track ${t} field. Found a duplicate ${o} with the same name.`)}}function yu(e,t,n){if(!c(n)){const o=ct(n);P.fail(`Invalid @wire ${t} field. Found a duplicate ${o} with the same name.`)}}function Eu(e,t,n){(c(n)||!D(n.value)||Q(n.writable))&&P.fail(`Invalid @wire ${t} method.`)}function wu(e,t,n){if(!c(n)){const o=ct(n),r=`Invalid @api ${t} field. Found a duplicate ${o} with the same name.`;o==="accessor"?B(r):P.fail(r)}}function vu(e,t,n){c(n)?P.fail(`Invalid @api get ${t} accessor.`):D(n.set)?P.isTrue(D(n.get),`Missing getter for property ${t} decorated with @api in ${e}. You cannot have a setter without the corresponding getter.`):D(n.get)||P.fail(`Missing @api get ${t} accessor.`)}function bu(e,t,n){(c(n)||!D(n.value)||Q(n.writable))&&P.fail(`Invalid @api ${t} method.`)}function As(e,t){const n=e.prototype,{publicProps:o,publicMethods:r,wire:i,track:s,fields:a}=t,l=b(null),u=b(null),d=b(null),f=b(null),E=b(null),v=b(null);let m;if(!c(o))for(const h in o){const C=o[h];if(v[h]=C.config,m=Y(n,h),C.config>0){if(c(m))throw new Error;m=Bo(h,m)}else!c(m)&&!c(m.get)?m=Bo(h,m):m=Ms(h);u[h]=m,_(n,h,m)}if(c(r)||Ne.call(r,h=>{if(m=Y(n,h),c(m))throw new Error;l[h]=m}),!c(i))for(const h in i){const{adapter:C,method:S,config:$,dynamic:L=[]}=i[h];if(m=Y(n,h),S===1){if(c(m))throw new Error;d[h]=m,vs(m,C,$,L)}else m=ks(h),f[h]=m,bs(m,C,$,L),_(n,h,m)}if(!c(s))for(const h in s)m=Y(n,h),m=_s(h),_(n,h,m);if(!c(a))for(let h=0,C=a.length;h<C;h++){const S=a[h];m=Y(n,S);const $=!c(o)&&S in o,L=!c(s)&&S in s;!$&&!L&&(E[S]=ds(S))}return $s(e,{apiMethods:l,apiFields:u,apiFieldsConfig:v,wiredMethods:d,wiredFields:f,observedFields:E}),e}const Ho=new Map;function $s(e,t){Ho.set(e,t)}const Rs={apiMethods:I,apiFields:I,apiFieldsConfig:I,wiredMethods:I,wiredFields:I,observedFields:I};function Vs(e){const t=Ho.get(e);return c(t)?Rs:t}let Wo=!1;function Nu(e,t){const n=e.toString().match(Mi);if(!g(n)&&!Wo){const o=n[1],[r,i]=o.split("."),[s,a]=It.split(".");if(r!==s||i!==a){Wo=!0;const l=t==="component"?`${t} ${e.name}`:t;B(`LWC WARNING: current engine is v${It}, but ${l} was compiled with v${o}. |
| | | Please update your compiled code or LWC engine so that the versions match. |
| | | No further warnings will appear.`),tt("CompilerRuntimeVersionMismatch",{compilerVersion:o,runtimeVersion:It})}}}const cn=new Set;function ln(){return[]}cn.add(ln);function Ls(e){return cn.has(e)}function Is(e){return cn.add(e),e}function Ps(e,t,n,o){return o}const xo=b(null),Uo=b(null);function Fs(e){let t=xo[e];return c(t)&&(t=xo[e]=function(){const n=w(this),{getHook:o}=n;return o(n.component,e)}),t}function Bs(e){let t=Uo[e];return c(t)&&(t=Uo[e]=function(n){const o=w(this),{setHook:r}=o;n=Lo(n),r(o.component,e,n)}),t}function Hs(e){return function(){const t=w(this),{callHook:n,component:o}=t,r=o[e];return n(t.component,r,Xn.call(arguments))}}function Ws(e,t){return function(o,r,i){if(r===i)return;const s=e[o];if(c(s)){c(t)||t.apply(this,arguments);return}!Yi(this,o)||(this[s]=i)}}function jo(e,t,n){let o;D(e)?o=class extends e{}:(o=function(){throw new TypeError("Illegal constructor")},Qe(o,e),Qe(o.prototype,e.prototype),_(o.prototype,"constructor",{writable:!0,configurable:!0,value:o}));const r=b(null),{attributeChangedCallback:i}=e.prototype,{observedAttributes:s=[]}=e,a=b(null);for(let l=0,u=t.length;l<u;l+=1){const d=t[l];r[lo(d)]=d,a[d]={get:Fs(d),set:Bs(d),enumerable:!0,configurable:!0}}for(let l=0,u=n.length;l<u;l+=1){const d=n[l];a[d]={value:Hs(d),writable:!0,configurable:!0}}return a.attributeChangedCallback={value:Ws(r,i)},_(o,"observedAttributes",{get(){return[...s,...F(r)]}}),Z(o.prototype,a),o}const lt=jo(No,_t(De),[]);we(lt),qe(lt.prototype);const xs=typeof WeakRef=="function"&&typeof FinalizationRegistry=="function";class Us{constructor(){this._map=new WeakMap}_getValues(t){let n=this._map.get(t);return c(n)&&(n=new Set,this._map.set(t,n)),n}get(t){return this._getValues(t)}add(t,n){this._getValues(t).add(n)}delete(t){this._map.delete(t)}}class js{constructor(){this._map=new WeakMap,this._registry=new FinalizationRegistry(t=>{for(let n=t.length-1;n>=0;n--){const o=t[n].deref();c(o)&&At.call(t,n,1)}})}_getWeakRefs(t){let n=this._map.get(t);return c(n)&&(n=[],this._map.set(t,n)),n}get(t){const n=this._getWeakRefs(t),o=new Set;for(const r of n){const i=r.deref();c(i)||o.add(i)}return o}add(t,n){const o=this._getWeakRefs(t);M.call(o,new WeakRef(n)),this._registry.register(n,o)}delete(t){this._map.delete(t)}}const un=xs?js:Us,Yo=new WeakMap,Go=new WeakMap,Ko=new WeakMap,dn=new un,fn=new un,pn=new un;function Cu(e){const t=dn.get(e);for(const n of t)Q(n.isDirty)&&(me(n),Ln(n));return dn.delete(e),!0}function Tu(e){const t=pn.get(e);for(const n of t)$r(n);return pn.delete(e),!0}function Su(e){const t=fn.get(e);let n=!0;for(const o of t){const{owner:r}=o;g(r)?n=!1:$r(r)}return fn.delete(e),n}function Mu(e){U();const t=new Set;for(;Yo.has(e)&&!t.has(e);)t.add(e),e=Yo.get(e);return e}function Du(e){U();const t=new Set;for(;Go.has(e)&&!t.has(e);)t.add(e),e=Go.get(e);return e}function Ys(e){U();const t=new Set;for(;Ko.has(e)&&!t.has(e);)t.add(e),e=Ko.get(e);return e}function _u(e){U();const t=e.def.ctor;fn.add(t,e);const n=e.cmpTemplate;if(n){dn.add(n,e);const o=n.stylesheets;if(!c(o))for(const r of xt(o)){const i=Ys(r);pn.add(i,e)}}}function Gs(e,t){return!1}function Ks(e,t){return!1}function zs(e,t){return!1}const hn=new WeakMap;function qs(e){let t=ve(e);if(g(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(jt(t)){const n=Ut(t);t=n===t?O:n}return t}function Qs(e){const{shadowSupportMode:t,renderMode:n}=e,o=Vs(e),{apiFields:r,apiFieldsConfig:i,apiMethods:s,wiredFields:a,wiredMethods:l,observedFields:u}=o,d=e.prototype;let{connectedCallback:f,disconnectedCallback:E,renderedCallback:v,errorCallback:m,render:h}=d;const C=qs(e),S=C!==O?fe(C):Js,$=jo(S.bridge,F(r),F(s)),L=x(b(null),S.props,r),je=x(b(null),S.propsConfig,i),Ye=x(b(null),S.methods,s),Yn=x(b(null),S.wire,a,l);f=f||S.connectedCallback,E=E||S.disconnectedCallback,v=v||S.renderedCallback,m=m||S.errorCallback,h=h||S.render;let St=S.shadowSupportMode;c(t)||(St=t);let Mt=S.renderMode;c(n)||(Mt=n==="light"?0:1);const Gn=oc(e)||S.template,Kn=e.name||S.name;return Z(d,u),{ctor:e,name:Kn,wire:Yn,props:L,propsConfig:je,methods:Ye,bridge:$,template:Gn,renderMode:Mt,shadowSupportMode:St,connectedCallback:f,disconnectedCallback:E,renderedCallback:v,errorCallback:m,render:h}}function ut(e){if(!D(e))return!1;if(e.prototype instanceof O)return!0;let t=e;do{if(jt(t)){const n=Ut(t);if(n===t)return!0;t=n}if(t===O)return!0}while(!g(t)&&(t=ve(t)));return!1}function fe(e){let t=hn.get(e);if(c(t)){if(jt(e)){const n=Ut(e);return t=fe(n),hn.set(e,t),t}if(!ut(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=Qs(e),hn.set(e,t)}return t}function Xs(e){return fe(e).bridge}const Js={ctor:O,name:O.name,props:rn,propsConfig:I,methods:I,renderMode:1,shadowSupportMode:"reset",wire:I,bridge:lt,template:ln,render:O.prototype.render};function Zs(e){const t=fe(e),{ctor:n,name:o,props:r,propsConfig:i,methods:s}=t,a={};for(const u in r)a[u]={config:i[u]||0,type:"any",attr:lo(u)};const l={};for(const u in s)l[u]=s[u].value;return{ctor:n,name:o,props:a,methods:l}}function Ae(e){return`${e}-host`}function ea(e){return Cn.h("style",{key:"style",attrs:{type:"text/css"}},[Cn.t(e)])}function ta(e,t){const{elm:n,context:o,renderMode:r,shadowMode:i,renderer:{getClassList:s,removeAttribute:a,setAttribute:l}}=e,{stylesheets:u,stylesheetToken:d}=t,{stylesheets:f}=e,E=r===1&&i===1,{hasScopedStyles:v}=o;let m,h,C;const{stylesheetToken:S,hasTokenInClass:$,hasTokenInAttribute:L}=o;c(S)||($&&s(n).remove(Ae(S)),L&&a(n,Ae(S)));const je=Fe(u),Ye=Fe(f);(je||Ye)&&(m=d),c(m)||(v&&(s(n).add(Ae(m)),h=!0),E&&(l(n,Ae(m),""),C=!0)),o.stylesheetToken=m,o.hasTokenInClass=h,o.hasTokenInAttribute=C}function mn(e,t,n){const o=[];let r;for(let i=0;i<e.length;i++){let s=e[i];if(G(s))M.apply(o,mn(s,t,n));else{const a=s[no],l=a||n.shadowMode===1&&n.renderMode===1?t:void 0,u=n.renderMode===0?!a:n.shadowMode===0;let d;n.renderMode===1?d=n.shadowMode===0:(c(r)&&(r=zo(n)),d=g(r)||r.shadowMode===0),M.call(o,s(l,u,d))}}return o}function na(e,t){const{stylesheets:n,stylesheetToken:o}=t,{stylesheets:r}=e;let i=[];return Fe(n)&&(i=mn(n,o,e)),Fe(r)&&M.apply(i,mn(r,o,e)),i}function zo(e){let t=e;for(;!g(t);){if(t.renderMode===1)return t;t=t.owner}return t}function qo(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(t==null?void 0:t.stylesheetToken)||null}function oa(e){const{template:t}=fe(e.ctor),{vm:n}=e,{stylesheetToken:o}=t;return!c(o)&&vr(t,n)?Ae(o):null}function ra(e){const t=zo(e);return!g(t)&&t.shadowMode===1?null:t}function ia(e,t){const{renderMode:n,shadowMode:o,renderer:{insertStylesheet:r}}=e;if(n===1&&o===1)for(let i=0;i<t.length;i++)r(t[i]);else{if(e.hydrated)return qn.call(t,ea);{const i=ra(e),s=g(i)?void 0:i.shadowRoot;for(let a=0;a<t.length;a++)r(t[a],s)}}return null}function sa(e){const{type:t}=e;return t===2||t===3}function $e(e,t){return e.key===t.key&&e.sel===t.sel}function aa(e){return e.type===3}function Re(e){return e.type===5}function Qo(e){return e.type===6}const Xo=58;function ca(e,t,n){const{attrs:o}=t.data;if(c(o))return;const r=g(e)?I:e.data.attrs;if(r===o)return;const{elm:i}=t,{setAttribute:s,removeAttribute:a}=n;for(const l in o){const u=o[l];r[l]!==u&&(Me(i,l),ue.call(l,3)===Xo?s(i,l,u,io):ue.call(l,5)===Xo?s(i,l,u,so):g(u)||c(u)?a(i,l):s(i,l,u),Se())}}const Jo=58;function la(e,t,n){const{data:{attrs:o},elm:r}=t;if(c(o))return;const{removeAttribute:i,setAttribute:s,setProperty:a}=n,l=g(e)?I:e.data.attrs;for(const u in o){const d=o[u];l[u]!==d&&(Ci(u)in r?a(r,u,d):ue.call(u,3)===Jo?s(r,u,d,io):ue.call(u,5)===Jo?s(r,u,d,so):g(d)||c(d)?i(r,u):s(r,u,d))}}function ua(e,t){return e==="input"&&(t==="value"||t==="checked")}function Zo(e,t,n){let{props:o}=t.data;const{spread:r}=t.data;if(c(o)&&c(r))return;let i;if(!g(e)){i=e.data.props;const f=e.data.spread;if(i===o&&f===r)return;c(i)&&(i=I),c(f)||(i=x({},i,f))}c(r)||(o=x({},o,r));const s=g(e),{elm:a,sel:l}=t,{getProperty:u,setProperty:d}=n;for(const f in o){const E=o[f];(s||E!==(ua(l,f)?u(a,f):i[f])||!(f in i))&&d(a,f,E)}}const er=b(null);function tr(e){if(e==null)return I;e=Je(e)?e:e+"";let t=er[e];if(t)return t;t=b(null);let n=0,o;const r=e.length;for(o=0;o<r;o++)ue.call(e,o)===Pi&&(o>n&&(t[Zn.call(e,n,o)]=!0),n=o+1);return o>n&&(t[Zn.call(e,n,o)]=!0),er[e]=t,t}function da(e,t,n){const{elm:o,data:{className:r}}=t,i=g(e)?void 0:e.data.className;if(i===r)return;const{getClassList:s}=n,a=s(o),l=tr(r),u=tr(i);let d;for(d in u)c(l[d])&&a.remove(d);for(d in l)c(u[d])&&a.add(d)}function fa(e,t,n){const{elm:o,data:{style:r}}=t;if((g(e)?void 0:e.data.style)===r)return;const{setAttribute:s,removeAttribute:a}=n;!Je(r)||r===""?a(o,"style"):s(o,"style",r)}function nr(e,t){const{elm:n,data:{on:o}}=e;if(c(o))return;const{addEventListener:r}=t;for(const i in o){const s=o[i];r(n,i,s)}}function pa(e,t){const{elm:n,data:{classMap:o}}=e;if(c(o))return;const{getClassList:r}=t,i=r(n);for(const s in o)i.add(s)}function ha(e,t){const{elm:n,data:{styleDecls:o}}=e;if(c(o))return;const{setCSSStyleProperty:r}=t;for(let i=0;i<o.length;i++){const[s,a,l]=o[i];r(n,s,a,l)}}function gn(e,t,n,o){cr(t)?lr(e,t,n,o):ur(e,t,n,o)}function pe(e,t,n,o){var r,i;if(e!==t)switch(t.type){case 0:ma(e,t,o);break;case 1:ya(e,t,o);break;case 4:t.elm=e.elm;break;case 5:va(e,t,n,o);break;case 2:Na(e,t,(r=t.data.renderer)!==null&&r!==void 0?r:o);break;case 3:Ta(e,t,n,(i=t.data.renderer)!==null&&i!==void 0?i:o);break}}function re(e,t,n,o){var r,i;switch(e.type){case 0:ga(e,t,o,n);break;case 1:Ea(e,t,o,n);break;case 4:Ca(e,t,o,n);break;case 5:wa(e,t,o,n);break;case 2:ba(e,t,o,(r=e.data.renderer)!==null&&r!==void 0?r:n);break;case 3:or(e,t,o,(i=e.data.renderer)!==null&&i!==void 0?i:n);break}}function ma(e,t,n){t.elm=e.elm,t.text!==e.text&&rr(t,n)}function ga(e,t,n,o){const{owner:r}=e,{createText:i}=o,s=e.elm=i(e.text);Le(s,r,o),Ie(s,t,n,o)}function ya(e,t,n){t.elm=e.elm,t.text!==e.text&&rr(t,n)}function Ea(e,t,n,o){const{owner:r}=e,{createComment:i}=o,s=e.elm=i(e.text);Le(s,r,o),Ie(s,t,n,o)}function wa(e,t,n,o){const{children:r}=e;Ve(r,t,o,n),e.elm=e.leading.elm}function va(e,t,n,o){const{children:r,stable:i}=t;i?ur(e.children,r,n,o):lr(e.children,r,n,o),t.elm=t.leading.elm}function ba(e,t,n,o){const{sel:r,owner:i,data:{svg:s}}=e,{createElement:a}=o,l=de(s)?wi:void 0,u=e.elm=a(r,l);Le(u,i,o),ir(u,i,o),Sa(u,e),sr(u,e),pt(null,e,o),Ie(u,t,n,o),Ve(e.children,u,o,null)}function Na(e,t,n){const o=t.elm=e.elm;pt(e,t,n),gn(e.children,t.children,o,n)}function Ca(e,t,n,o){const{owner:r}=e,{cloneNode:i,isSyntheticShadowDefined:s}=o,a=e.elm=i(e.fragment,!0);Le(a,r,o),sr(a,e);const{renderMode:l,shadowMode:u}=r;s&&(u===1||l===0)&&(a[yi]=!0),Ie(a,t,n,o)}function or(e,t,n,o){const{sel:r,owner:i}=e,{createCustomElement:s}=o;let a;const l=v=>{a=Da(v,e,o)};let u,d;const f=r.toLowerCase(),E=s(f,l,u,d);e.elm=E,e.vm=a,Le(E,i,o),ir(E,i,o),a&&wn(e,a),pt(null,e,o),Ie(E,t,n,o),a&&Nt(a),Ve(e.children,E,o,null),a&&fc(a)}function Ta(e,t,n,o){if(e.ctor!==t.ctor){const r=o.nextSibling(e.elm);dt(e,n,o,!0),or(t,n,r,o)}else{const r=t.elm=e.elm,i=t.vm=e.vm;if(pt(e,t,o),!c(i)){wn(t,i);const{shadowMode:s,renderMode:a}=i;s==0&&a!==0&&cr(e.children)&&vn(t.children)}gn(e.children,t.children,r,o),c(i)||dc(i)}}function Ve(e,t,n,o,r=0,i=e.length){for(;r<i;++r){const s=e[r];W(s)&&re(s,t,n,o)}}function dt(e,t,n,o=!1){const{type:r,elm:i,sel:s}=e;switch(o&&(r===5?ft(e.children,t,n,o):En(i,t,n)),r){case 2:{const a=s==="slot"&&e.owner.shadowMode===1;ft(e.children,i,n,a);break}case 3:{const{vm:a}=e;c(a)||pc(a)}}}function ft(e,t,n,o=!1,r=0,i=e.length){for(;r<i;++r){const s=e[r];W(s)&&dt(s,t,n,o)}}function W(e){return e!=null}function Le(e,t,n){const{renderRoot:o,renderMode:r,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(i===1||r===0)&&(e[Lt]=o[Lt])}function rr(e,t){const{elm:n,text:o}=e,{setText:r}=t;r(n,o)}function yn(e,t,n,o){if(Re(e)){const r=e.children;for(let i=0;i<r.length;i+=1){const s=r[i];g(s)||o.insert(s.elm,t,n)}}else o.insert(e.elm,t,n)}function Ie(e,t,n,o){o.insert(e,t,n)}function En(e,t,n){n.remove(e,t)}function pt(e,t,n){g(e)&&(nr(t,n),pa(t,n),ha(t,n)),da(e,t,n),fa(e,t,n),t.data.external?la(e,t,n):ca(e,t,n),Zo(e,t,n)}function ir(e,t,n){const o=qo(t);if(!g(o)){const{getClassList:i}=n;i(e).add(o)}const{stylesheetToken:r}=t.context;t.shadowMode===1&&!c(r)&&(e.$shadowToken$=r)}function Sa(e,t){var n;const{owner:o,data:{context:r}}=t;o.shadowMode===1&&((n=r==null?void 0:r.lwc)===null||n===void 0?void 0:n.dom)==="manual"&&(e.$domManual$=!0)}function sr(e,t){var n,o}function wn(e,t){const n=e.aChildren||e.children,{renderMode:o,shadowMode:r}=t,i=Ma(n);e.children=i,t.aChildren=i,(r===1||o===0)&&(_a(t,i,e.owner),e.aChildren=i,e.children=H)}function Ma(e){const t=[],n=[];let o=!1;for(let i=e.length-1;i>-1;i-=1){const s=e[i];M.call(n,s),o=o||!!(s&&Re(s))}if(!o)return e;let r;for(;!c(r=Qn.call(n));)if(!g(r)&&Re(r)){const i=r.children;for(let s=i.length-2;s>0;s-=1)M.call(n,i[s])}else M.call(t,r);return vn(t),t}function Da(e,t,n){let o=q(e);if(!c(o))return o;const{sel:r,mode:i,ctor:s,owner:a}=t;return o=He(e,s,n,{mode:i,owner:a,tagName:r}),o}function _a(e,t,n){var o,r;const{cmpSlots:{slotAssignments:i}}=e,s=b(null);for(let a=0,l=t.length;a<l;a+=1){const u=t[a];if(g(u))continue;let d="";sa(u)?d=(r=(o=u.data.attrs)===null||o===void 0?void 0:o.slot)!==null&&r!==void 0?r:"":Qo(u)&&(d=u.slotName);const f=""+d,E=s[f]=s[f]||[];M.call(E,u)}if(e.cmpSlots={owner:n,slotAssignments:s},Q(e.isDirty)){const a=F(i);if(a.length!==F(s).length){me(e);return}for(let l=0,u=a.length;l<u;l+=1){const d=a[l];if(c(s[d])||i[d].length!==s[d].length){me(e);return}const f=i[d],E=s[d];for(let v=0,m=s[d].length;v<m;v+=1)if(f[v]!==E[v]){me(e);return}}}}const ar=new WeakMap;function vn(e){ar.set(e,1)}function cr(e){return ar.has(e)}function Oa(e,t,n){const o={};for(let r=t;r<=n;++r){const i=e[r];if(W(i)){const{key:s}=i;s!==void 0&&(o[s]=r)}}return o}function lr(e,t,n,o){let r=0,i=0,s=e.length-1,a=e[0],l=e[s];const u=t.length-1;let d=u,f=t[0],E=t[d],v,m,h,C,S=!1;for(;r<=s&&i<=d;)if(!W(a))a=e[++r];else if(!W(l))l=e[--s];else if(!W(f))f=t[++i];else if(!W(E))E=t[--d];else if($e(a,f))pe(a,f,n,o),a=e[++r],f=t[++i];else if($e(l,E))pe(l,E,n,o),l=e[--s],E=t[--d];else if($e(a,E)){pe(a,E,n,o);let $;Re(l)?$=o.nextSibling(l.trailing.elm):$=o.nextSibling(l.elm),yn(a,n,$,o),a=e[++r],E=t[--d]}else $e(l,f)?(pe(l,f,n,o),yn(f,n,a.elm,o),l=e[--s],f=t[++i]):(v===void 0&&(v=Oa(e,r,s)),m=v[f.key],c(m)?(re(f,n,o,a.elm),f=t[++i]):(h=e[m],W(h)&&(h.sel!==f.sel?re(f,n,o,a.elm):(pe(h,f,n,o),S||(S=!0,e=[...e]),e[m]=void 0,yn(h,n,a.elm,o))),f=t[++i]));if(r<=s||i<=d)if(r>s){let $=d,L;do L=t[++$];while(!W(L)&&$<u);C=W(L)?L.elm:null,Ve(t,n,o,C,i,d+1)}else ft(e,n,o,!0,r,s+1)}function ur(e,t,n,o){const r=e.length,i=t.length;if(r===0){Ve(t,n,o,null);return}if(i===0){ft(e,n,o,!0);return}let s=null;for(let a=i-1;a>=0;a-=1){const l=e[a],u=t[a];u!==l&&(W(l)?W(u)?$e(l,u)?(pe(l,u,n,o),s=u.elm):(dt(l,n,o,!0),re(u,n,o,s),s=u.elm):dt(l,n,o,!0):W(u)&&(re(u,n,o,s),s=u.elm))}}const ka=Symbol.iterator;function Aa(e){M.call(V().velements,e)}function $a(e,t){return{type:6,factory:t,owner:V(),elm:void 0,sel:void 0,key:void 0,slotName:e}}function Ra(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:V()}}function Va(e,t,n){const o=Nn(""),r=Nn("");return{type:5,sel:void 0,key:e,elm:void 0,children:[o,...t,r],stable:n,owner:V(),leading:o,trailing:r}}function dr(e,t,n=H){const o=V(),{key:r,ref:i}=t,s={type:2,sel:e,data:t,children:n,elm:void 0,key:r,owner:o};return c(i)||bo(o,i,s),s}function La(e){return e>0&&!(de(e)||Q(e))?0:e}function Ia(e,t,n,o){if(!c(o)&&!c(o.slotAssignments)&&!c(o.slotAssignments[e])&&o.slotAssignments[e].length!==0){const a=[],l=o.slotAssignments[e];for(let u=0;u<l.length;u++){const d=l[u];if(!g(d)){const f=Qo(d),E=!c(t.slotData);if(f!==E)continue;if(f){const v=V();Et(o.owner);try{const{tro:m}=o.owner;m.observe(()=>{M.call(a,d.factory(t.slotData,t.key))})}finally{Et(v)}}else M.call(a,d)}}n=a}const r=V(),{renderMode:i,shadowMode:s}=r;return i===0?(ht(n),n):(s===1&&ht(n),dr("slot",t,n))}function bn(e,t,n,o=H){const r=V(),{key:i,ref:s}=n;let a,l,u;const d={type:3,sel:e,data:n,children:o,elm:a,key:i,ctor:t,owner:r,mode:"open",aChildren:l,vm:u};return Aa(d),c(s)||bo(r,s,d),d}function Pa(e,t){const n=[];ht(n);const o=V();if(c(e)||e===null)return n;const r=e[ka]();let i=r.next(),s=0,{value:a,done:l}=i,u,d;for(;l===!1;){i=r.next(),l=i.done;const f=t(a,s,s===0,l===!0);G(f)?M.apply(n,f):M.call(n,f),s+=1,a=i.value}return n}function Fa(e){const t=e.length,n=[];ht(n);for(let o=0;o<t;o+=1){const r=e[o];G(r)?M.apply(n,r):M.call(n,r)}return n}function Nn(e){let t,n,o;return{type:0,sel:t,text:e,elm:o,key:n,owner:V()}}function Ba(e){let t,n;return{type:1,sel:t,text:e,elm:n,key:"c",owner:V()}}function Ha(e){return e==null?"":String(e)}function Wa(e){const t=V();if(g(t))throw new Error;const n=t;return function(o){br(n,e,n.component,o)}}function xa(e,t){switch(typeof t){case"number":case"string":return e+":"+t;case"object":}}function Ua(e){const t=V();if(c(e)||e==="")return e;if(g(e))return null;const{idx:n,shadowMode:o}=t;return o===1?Rt.call(e,/\S+/g,r=>`${r}-${n}`):e}function ja(e){const t=V();if(c(e)||e==="")return e;if(g(e))return null;const{idx:n,shadowMode:o}=t;return o===1&&/^#/.test(e)?`${e}-${n}`:e}function Ya(e,t,n,o=H){if(g(t)||c(t))return null;if(!ut(t))throw new Error(`Invalid LWC Constructor ${ee(t)} for custom element <${e}>.`);return bn(e,t,n,o)}function Ga(e,t,n=H){if(g(e)||c(e))return null;if(!ut(e))throw new Error(`Invalid constructor ${ee(e)} is not a LightningElement constructor.`);const o=rc(e);if(c(o)||o==="")throw new Error(`Invalid LWC constructor ${ee(e)} does not have a registered name`);return bn(o,e,t,n)}function ht(e){return vn(e),e}let fr=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};function Ka(e){fr=e}function za(e){return fr(e)}const Cn=we({s:Ia,h:dr,c:bn,i:Pa,f:Fa,t:Nn,d:Ha,b:Wa,k:xa,co:Ba,dc:Ga,fr:Va,ti:La,st:Ra,gid:Ua,fid:ja,shc:za,ssf:$a,ddc:Ya}),qa=["constructor","render","patch","connectedCallback","renderedCallback","disconnectedCallback","errorCallback","lwc-hydrate","lwc-rehydrate"],pr=typeof performance!="undefined"&&typeof performance.mark=="function"&&typeof performance.clearMarks=="function"&&typeof performance.measure=="function"&&typeof performance.clearMeasures=="function",hr=pr?e=>{performance.mark(e)}:k,mr=pr?(e,t)=>{performance.measure(e,t),performance.clearMarks(t),performance.clearMeasures(e)}:k;function Tn(e){return qa[e]}function gr(e,t){return`${te(t)} - ${Tn(e)}`}function mt(e,t){return`${gr(e,t)} - ${t.idx}`}const gt=!1;let he=!1,ie=k;const Qa={enableProfiler(){he=!0},disableProfiler(){he=!1},attachDispatcher(e){ie=e,this.enableProfiler()},detachDispatcher(){const e=ie;return ie=k,this.disableProfiler(),e}};function se(e,t){if(gt){const n=mt(e,t);hr(n)}he&&ie(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function ae(e,t){if(gt){const n=mt(e,t),o=gr(e,t);mr(o,n)}he&&ie(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function yr(e,t){if(gt){const n=Tn(e),o=c(t)?n:mt(e,t);hr(o)}he&&ie(e,0,t==null?void 0:t.tagName,t==null?void 0:t.idx,t==null?void 0:t.renderMode,t==null?void 0:t.shadowMode)}function Sn(e,t){if(gt){const n=Tn(e),o=c(t)?n:mt(e,t);mr(n,o)}he&&ie(e,1,t==null?void 0:t.tagName,t==null?void 0:t.idx,t==null?void 0:t.renderMode,t==null?void 0:t.shadowMode)}let yt=!1,Pe=null;function V(){return Pe}function Et(e){Pe=e}function Ou(e,t){U();const{cmpSlots:n}=e,{slots:o=H}=t;for(const r in n.slotAssignments)P.isTrue(G(n.slotAssignments[r]),`Slots can only be set to an array, instead received ${ee(n.slotAssignments[r])} for slot "${r}" in ${e}.`),r!==""&&kt.call(o,r)===-1&&B(`Ignoring unknown provided slot name "${r}" in ${e}. Check for a typo on the slot attribute.`,e)}function ku(e,t){e!==ln&&(t.renderMode===0?P.isTrue(e.renderMode==="light",`Light DOM components can't render shadow DOM templates. Add an 'lwc:render-mode="light"' directive to the root template tag of ${te(t)}.`):P.isTrue(c(e.renderMode),`Shadow DOM components template can't render light DOM templates. Either remove the 'lwc:render-mode' directive from ${te(t)} or set it to 'lwc:render-mode="shadow"`))}function Er(e){return(t,...n)=>{const o=b(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:a}=V(),l=!c(i),u=s===1;let d=0;if(l&&r&&(d|=1),l&&u&&(d|=2),!c(o[d]))return o[d];const f=r&&l?" "+i:"",E=r&&l?` class="${i}"`:"",v=l&&u?" "+i:"";let m="";for(let h=0,C=n.length;h<C;h++)switch(n[h]){case 0:m+=t[h]+f;break;case 1:m+=t[h]+E;break;case 2:m+=t[h]+v;break;case 3:m+=t[h]+E+v;break}return m+=t[t.length-1],o[d]=e(m,a),o[d]}}}const Xa=Er((e,t)=>{const{createFragment:n}=t;return n(e)}),Ja=Er((e,t)=>{const{createFragment:n,getFirstChild:o}=t,r=n("<svg>"+e+"</svg>");return o(r)});function Za(e,t){const n=yt,o=Pe;let r=[];return J(e,e.owner,()=>{Pe=e,se(1,e)},()=>{const{component:i,context:s,cmpSlots:a,cmpTemplate:l,tro:u}=e;u.observe(()=>{if(t!==l){if(g(l)||kr(e),!Ls(t))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${ee(t)}.`);e.cmpTemplate=t,s.tplCache=b(null),s.hasScopedStyles=vr(t,e),ta(e,t);const f=na(e,t);s.styleVNodes=f.length===0?null:ia(e,f)}e.refVNodes=t.hasRefs?b(null):null,e.velements=[],yt=!0,r=t.call(void 0,Cn,i,a,s.tplCache);const{styleVNodes:d}=s;g(d)||$t.apply(r,d)})},()=>{yt=n,Pe=o,ae(1,e)}),r}function wr(e){if(Fe(e)){for(let t=0;t<e.length;t++)if(de(e[t][no]))return!0}return!1}function vr(e,t){const{stylesheets:n}=e,o=c(t)?null:t.stylesheets;return wr(n)||wr(o)}function Fe(e){return!c(e)&&!g(e)&&e.length>0}let Mn=!1,ce=null;function Dn(e){return ce===e}function wt(e,t,n){const{component:o,callHook:r,owner:i}=e;J(e,i,k,()=>{r(o,t,n)},k)}function ec(e,t){const n=ce;let o;se(0,e),ce=e;try{const r=new t;if(ce.component!==r)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(r){o=Object(r)}finally{if(ae(0,e),ce=n,!c(o))throw ho(e,o),o}}function tc(e){const{def:{render:t},callHook:n,component:o,owner:r}=e,i=Mn,s=V();let a,l=!1;return J(e,r,()=>{Mn=!0,Et(e)},()=>{e.tro.observe(()=>{a=n(o,t),l=!0})},()=>{Mn=i,Et(s)}),l?Za(e,a):[]}function br(e,t,n,o){const{callHook:r,owner:i}=e;J(e,i,k,()=>{r(n,t,[o])},k)}const _n=new Map;function nc(e,t){return D(e)&&_n.set(e,t),e}function oc(e){var t;return(t=_n.get(e))===null||t===void 0?void 0:t.tmpl}function rc(e){var t;return(t=_n.get(e))===null||t===void 0?void 0:t.sel}function ic(e){return wo(()=>{const{isDirty:t}=e;Q(t)&&(me(e),Ln(e))})}function Nr(e){e.tro.reset();const t=tc(e);return e.isDirty=!1,e.isScheduled=!1,t}function me(e){e.isDirty=!0}const Cr=new WeakMap;function Tr(e,t){if(!D(t))throw new TypeError("Expected an EventListener but received "+typeof t);let n=Cr.get(t);return c(n)&&(n=function(o){br(e,t,void 0,o)},Cr.set(t,n)),n}const Be=b(null),Sr=["rendered","connected","disconnected"];function sc(e){for(let t=0;t<Sr.length;++t){const n=Sr[t];if(n in e){let o=Be[n];c(o)&&(Be[n]=o=[]),M.call(o,e[n])}}}function On(e,t){const{component:n,def:o,context:r}=e;for(let i=0,s=t.length;i<s;++i)t[i].call(void 0,n,{},o,r)}let ac=0;const kn=new WeakMap;function cc(e,t,n=[]){return t.apply(e,n)}function lc(e,t,n){e[t]=n}function uc(e,t){return e[t]}function dc(e){bt(e)}function An(e){const t=w(e);yr(7,t),t.state===1&&$n(e),Nt(t),bt(t),Sn(7,t)}function $n(e){const t=w(e);vt(t)}function fc(e){bt(e)}function vt(e){const{state:t}=e;if(t!==2){const{tro:n}=e;n.reset(),wc(e),_r(e),vc(e)}}function pc(e){vt(e)}function Au(e){let t=e.owner;for(;!g(t)&&t.renderMode===0;)t=t.owner;return t}function He(e,t,n,o){const{mode:r,owner:i,tagName:s,hydrated:a}=o,l=fe(t),u={elm:e,def:l,idx:ac++,state:0,isScheduled:!1,isDirty:!0,tagName:s,mode:r,owner:i,refVNodes:null,children:H,aChildren:H,velements:H,cmpProps:b(null),cmpFields:b(null),cmpSlots:{slotAssignments:b(null)},cmpTemplate:null,hydrated:Boolean(a),renderMode:l.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:I,wiredConnecting:H,wiredDisconnecting:H},tro:null,shadowMode:null,stylesheets:null,component:null,shadowRoot:null,renderRoot:null,callHook:cc,setHook:lc,getHook:uc,renderer:n};return u.stylesheets=mc(u,l.ctor),u.shadowMode=yc(u,n),u.tro=ic(u),ec(u,l.ctor),Vn(u)&&Ns(u),u}function hc(e,t){let n=!0;const o=r=>{if(G(r))for(let i=0;i<r.length;i++)o(r[i]);else D(r)||(n=!1)};return G(t)?o(t):n=!1,n}function mc(e,t){gc(t);const{stylesheets:n}=t;return!c(n)&&hc(e,n)?xt(n):null}function gc(e){}function yc(e,t){const{def:n}=e,{isSyntheticShadowDefined:o,isNativeShadowDefined:r}=t;let i;return o?n.renderMode===0?i=0:i=1:i=0,i}function $u(e){if(g(e)||!Xe(e)||!("renderRoot"in e))throw new TypeError(`${e} is not a VM.`)}function Rn(e,t){kn.set(e,t)}function w(e){return kn.get(e)}function q(e){return kn.get(e)}function bt(e){if(de(e.isDirty)){const t=Nr(e);Ec(e,t)}}function Ec(e,t){const{renderRoot:n,children:o,renderer:r}=e;e.children=t,(t.length>0||o.length>0)&&o!==t&&J(e,e,()=>{se(2,e)},()=>{gn(o,t,n,r)},()=>{ae(2,e)}),e.state===1&&Mr(e)}function Mr(e){const{def:{renderedCallback:t}}=e,{rendered:n}=Be;n&&On(e,n),c(t)||(se(4,e),wt(e,t),ae(4,e))}let ge=[];function Dr(){yr(8);const e=ge.sort((t,n)=>t.idx-n.idx);ge=[];for(let t=0,n=e.length;t<n;t+=1){const o=e[t];try{bt(o)}catch(r){throw t+1<n&&(ge.length===0&&vo(Dr),$t.apply(ge,Xn.call(e,t+1))),Sn(8),r}}Sn(8)}function Nt(e){const{state:t}=e;if(t===1)return;e.state=1;const{connected:n}=Be;n&&On(e,n),Vn(e)&&Cs(e);const{connectedCallback:o}=e.def;c(o)||(se(3,e),wt(e,o),ae(3,e))}function Vn(e){return _t(e.def.wire).length>0}function wc(e){Q(e.isDirty)&&(e.isDirty=!0),e.state=2;const{disconnected:t}=Be;t&&On(e,t),Vn(e)&&Ts(e);const{disconnectedCallback:n}=e.def;c(n)||(se(5,e),wt(e,n),ae(5,e))}function _r(e){const{velements:t}=e;for(let n=t.length-1;n>=0;n-=1){const{elm:o}=t[n];if(!c(o)){const r=q(o);c(r)||vt(r)}}}function vc(e){const{aChildren:t}=e;Or(t)}function Or(e){for(let t=0,n=e.length;t<n;t+=1){const o=e[t];if(!g(o)&&!c(o.elm))switch(o.type){case 2:Or(o.children);break;case 3:{const r=w(o.elm);vt(r);break}}}}function kr(e){Ar(e.children,e),e.children=H,_r(e),e.velements=H}function Ar(e,t){const{renderRoot:n,renderer:{remove:o}}=t;for(let r=0,i=e.length;r<i;r+=1){const s=e[r];g(s)||(Re(s)?Ar(s.children,t):c(s.elm)||o(s.elm,n))}}function Ln(e){de(e.isScheduled)||(e.isScheduled=!0,ge.length===0&&vo(Dr),M.call(ge,e))}function bc(e){let t=e;for(;!g(t);){if(!c(t.def.errorCallback))return t;t=t.owner}}function J(e,t,n,o,r){let i;n();try{o()}catch(s){i=Object(s)}finally{if(r(),!c(i)){ho(e,i);const s=g(t)?void 0:bc(t);if(c(s))throw i;kr(e),se(6,e);const a=s.def.errorCallback;wt(s,a,[i,i.wcStack]),ae(6,e)}}}function $r(e){e.cmpTemplate=()=>[],Q(e.isDirty)&&(me(e),Ln(e))}const Nc=X[oo],Cc=X[ro];delete X[oo],delete X[ro];function Tc(e){return e!==document&&de(e.synthetic)}function Rr(e,t,n){let o=q(e.getRootNode().host);c(o)&&(o=q(t.getRootNode().host)),!c(o)&&tt("CrossRootAriaInSyntheticShadow",{tagName:o.tagName,attributeName:n})}function Sc(e){return Je(e)?Ot.call(di.call(e,/\s+/),Boolean):[]}function Vr(e,t,n){const o=e.getRootNode();if(!!Tc(o))if(t==="id"){if(!Je(n)||n.length===0)return;for(const r of eo){const i=`[${r}~="${CSS.escape(n)}"]`,s=Cc.call(document,i);for(let a=0;a<s.length;a++){const l=s[a];if(l.getRootNode()!==o){Rr(l,e,r);break}}}}else{const r=Sc(n);for(const i of r){const s=Nc.call(document,i);g(s)||s.getRootNode()!==o&&Rr(e,s,t)}}}let Lr=!1;function Mc(){if(Lr)return;Lr=!0;const{setAttribute:e}=Element.prototype;x(Element.prototype,{setAttribute(n,o){e.call(this,n,o),(n==="id"||eo.has(n))&&Vr(this,n,o)}});const t=Y(Element.prototype,"id");if(!c(t)){const{get:n,set:o}=t;D(n)&&D(o)&&_(Element.prototype,"id",{get(){return n.call(this)},set(r){o.call(this,r),Vr(this,"id",r)},enumerable:!0,configurable:!0})}}function Dc(){return typeof CSS!="undefined"&&D(CSS.escape)}function _c(){return ze.call(Element.prototype,to)}Dc()&&_c()&&Bt(Mc);const Oc=["ariaActiveDescendant","ariaControls","ariaDescribedBy","ariaDetails","ariaErrorMessage","ariaFlowTo","ariaLabelledBy","ariaOwns"];function Ir(e){return e instanceof O||e instanceof lt}function kc(e){const{host:t}=e.getRootNode(),n=c(t)?void 0:q(t);if(!c(n))return n;let o=e;for(;!g(o=o.parentElement);)if(Ir(o)){const r=q(o);if(!c(r))return r}}function Pr(e,t,n,o){if(!Ir(e)){const r=kc(e);let i;n&&(i=g(o)?"null":typeof o),tt("NonStandardAriaReflection",{tagName:r==null?void 0:r.tagName,propertyName:t,isSetter:n,setValueType:i})}}function Ac(){const{prototype:e}=Element;for(const t of Oc){const n=Y(e,t),{get:o,set:r}=n;_(e,t,{get(){return Pr(this,t,!1,void 0),o.call(this)},set(i){return Pr(this,t,!0,i),r.call(this,i)},configurable:!0,enumerable:!0})}}Bt(Ac);let We=!1;function $c(e){We=!1,Nt(e),Fr(e),We&&B("Hydration completed with errors.",e)}function Fr(e){const t=Nr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:o}}=e;Ct(o(n),t,n,e),Mr(e)}function Rc(e,t,n){var o,r;let i;switch(t.type){case 0:i=Ic(e,t,n);break;case 1:i=Pc(e,t,n);break;case 4:i=Fc(e,t,n);break;case 5:i=Bc(e,t,n);break;case 2:i=Hc(e,t,(o=t.data.renderer)!==null&&o!==void 0?o:n);break;case 3:i=Wc(e,t,(r=t.data.renderer)!==null&&r!==void 0?r:n);break}return n.nextSibling(i)}const ye="nodeValue",Vc="parentNode",Lc="tagName";function Ru(e,t,n){const{getProperty:o}=n,r=o(e,ye);if(r===t.text||r==="\u200D"&&t.text==="")return!0;const i=o(e,Vc);return!g(i)&&o(i,Lc)==="STYLE"&&Si(t.text)===r}function Ic(e,t,n){var o;if(!le(t,e,3,n))return xe(e,t,n);const{setText:r}=n;return r(e,(o=t.text)!==null&&o!==void 0?o:null),t.elm=e,e}function Pc(e,t,n){var o;if(!le(t,e,8,n))return xe(e,t,n);const{setProperty:r}=n;return r(e,ye,(o=t.text)!==null&&o!==void 0?o:null),t.elm=e,e}function Fc(e,t,n){return Gc(t.fragment,e,t,n)?(t.elm=e,e):xe(e,t,n)}function Bc(e,t,n){const{children:o,owner:r}=t;return Ct(e,o,n.getProperty(e,"parentNode"),r),t.elm=o[o.length-1].elm}function Hc(e,t,n){if(!le(t,e,1,n)||!Hr(t,e,n))return xe(e,t,n);t.elm=e;const{owner:o}=t,{context:r}=t.data,i=Boolean(!c(r)&&!c(r.lwc)&&r.lwc.dom==="manual");if(i){const{data:{props:s}}=t,{getProperty:a}=n;!c(s)&&!c(s.innerHTML)&&a(e,"innerHTML")===s.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:Ui(s,"innerHTML")}))}if(Br(t,n),!i){const{getFirstChild:s}=n;Ct(s(e),t.children,e,o)}return e}function Wc(e,t,n){if(!le(t,e,1,n)||!Hr(t,e,n))return xe(e,t,n);const{sel:o,mode:r,ctor:i,owner:s}=t,a=He(e,i,n,{mode:r,owner:s,tagName:o,hydrated:!0});if(t.elm=e,t.vm=a,wn(t,a),Br(t,n),Nt(a),a.renderMode!==0){const{getFirstChild:l}=n;Ct(l(e),t.children,e,a)}return Fr(a),e}function Ct(e,t,n,o){let r=!1,i=e,s=null;const{renderer:a}=o;for(let l=0;l<t.length;l++){const u=t[l];g(u)||(i?(i=Rc(i,u,a),s=u.elm):(We=!0,re(u,n,a,s),s=u.elm))}if(i){We=!0;const{nextSibling:l}=a;do{const u=i;i=l(i),En(u,n,a)}while(i)}}function xe(e,t,n){We=!0;const{getProperty:o}=n,r=o(e,"parentNode");return re(t,r,n,e),En(e,r,n),t.elm}function Br(e,t){nr(e,t),Zo(null,e,t)}function le(e,t,n,o){const{getProperty:r}=o;return r(t,"nodeType")===n}function Hr(e,t,n){const{getProperty:o}=n;if(e.sel.toLowerCase()!==o(t,"tagName").toLowerCase())return!1;const r=Uc(e,t,n),i=jc(e,t,n),s=Yc(e,t,n);return r&&i&&s}function xc(e,t){return!!(String(e)===t||g(t)&&(c(e)||g(e)))}function Uc(e,t,n){const{data:{attrs:o={}}}=e;let r=!0;for(const[i,s]of Object.entries(o)){const{owner:a}=e,{getAttribute:l}=n,u=l(t,i);xc(s,u)||(r=!1)}return r}function jc(e,t,n){const{data:o,owner:r}=e;let{className:i,classMap:s}=o;const{getProperty:a,getClassList:l}=n,u=qo(r),d=aa(e)?oa(e):null;if(!g(u)||!g(d))if(c(i))if(!c(s))s=Object.assign(Object.assign(Object.assign({},s),g(u)?{}:{[u]:!0}),g(d)?{}:{[d]:!0});else{const m=[u,d],h=Ot.call(m,C=>!g(C));h.length&&(i=be.call(h," "))}else{const m=[u,i,d],h=Ot.call(m,C=>!g(C));i=be.call(h," ")}let f=!0,E;const v=a(t,"className");if(!c(i)&&String(i)!==v)f=!1,E=i;else if(c(s))c(i)&&v!==""&&(f=!1,E="");else{const m=l(t);let h="";for(const C in s)h+=" "+C,m.contains(C)||(f=!1);E=h.trim(),m.length>F(s).length&&(f=!1)}return f}function Yc(e,t,n){const{data:{style:o,styleDecls:r}}=e,{getAttribute:i}=n,s=i(t,"style")||"";let a,l=!0;if(!c(o)&&o!==s)l=!1,a=o;else if(!c(r)){const u=xi(s),d=[];for(let f=0,E=r.length;f<E;f++){const[v,m,h]=r[f];d.push(`${v}: ${m+(h?" important!":"")}`);const C=u[v];c(C)?l=!1:C.startsWith(m)?h&&!C.endsWith("!important")&&(l=!1):l=!1}F(u).length>r.length&&(l=!1),a=be.call(d,";")}return l}function Gc(e,t,n,o){const{getProperty:r,getAttribute:i}=o;if(r(e,"nodeType")===3)return le(n,t,3,o)?r(e,ye)===r(t,ye):!1;if(r(e,"nodeType")===8)return le(n,t,8,o)?r(e,ye)===r(t,ye):!1;if(!le(n,t,1,o))return!1;let s=!0;return r(e,"tagName")!==r(t,"tagName")?!1:(r(e,"getAttributeNames").call(e).forEach(l=>{i(e,l)!==i(t,l)&&(B(`Mismatch hydrating element <${r(e,"tagName").toLowerCase()}>: attribute "${l}" has different values, expected "${i(e,l)}" but found "${i(t,l)}"`,n.owner),s=!1)}),s)}let Wr=!1;function Kc(e){P.isFalse(Wr,"Hooks are already overridden, only one definition is allowed."),Wr=!0,Ka(e.sanitizeHtmlContent)}const zc=["slots","stylesheetToken","stylesheets","renderMode"],qc=["$scoped$"],Qc=["pop","push","shift","unshift","reverse","sort","fill","splice","copyWithin"];let In=!1;function Xc(e){switch(e){case"pop":return Qn;case"push":return M;case"shift":return li;case"unshift":return $t;case"reverse":return ci;case"sort":return ui;case"fill":return ai;case"splice":return At;case"copyWithin":return si}}function xr(e,t,n){tt(t,{propertyName:n})}function Pn(e){xr("template","TemplateMutation",e)}function Jc(e){xr("stylesheet","StylesheetMutation",e)}function Zc(e){for(const t of Qc){const n=Xc(t);e[t]=function(){return Pn("stylesheets"),n.apply(this,arguments)}}}function el(e){for(const t of qc){let n=e[t];_(e,t,{enumerable:!0,configurable:!0,get(){return n},set(o){Jc(t),n=o}})}}function tl(e){Fn(e,t=>{G(t)?Zc(t):el(t)})}function Vu(e){Fn(e,t=>{we(t)})}function Fn(e,t){t(e);for(let n=0;n<e.length;n++){const o=e[n];G(o)?Fn(o,t):t(o)}}function nl(e){c(e.stylesheets)||tl(e.stylesheets);for(const n of zc){let o=e[n];_(e,n,{enumerable:!0,configurable:!0,get(){return o},set(r){In||Pn(n),o=r}})}const t=Y(e,"stylesheetTokens");_(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get:t.get,set(n){Pn("stylesheetTokens"),In=!0,t.set.call(this,n),In=!1}})}function ol(e){_(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:t}=this;return c(t)?t:{hostAttribute:`${t}-host`,shadowAttribute:t}},set(t){this.stylesheetToken=c(t)?void 0:t.shadowAttribute}})}function rl(e){ol(e),Bt(()=>{nl(e)})}function il(e){let t=null;if(!c(e)){const n=q(e);c(n)||(t=n.def.ctor)}return t}function sl(e){return Lo(e)}function al(e,t){return["div",{},["object",{object:e,config:{skip:!0}}],["div",{},["span",{style:"margin: 0 5px; color: red"},"LWC:"],["object",{object:t}]]]}function cl(e,t){return F(t).length===0?null:["div",{},["object",{object:e,config:{skip:!0}}],["div",{},["span",{style:"margin: 0 5px; color: red"},"Debug:"],["object",{object:t}]]]}const ll={name:"LightningElementFormatter",header(e,t){const n=q(e);return!c(n)&&(c(t)||!t.skip)?e instanceof HTMLElement?al(e,n.component):cl(e,n.debugInfo):null},hasBody(){return!1}};function Lu(){const e=X.devtoolsFormatters||[];M.call(e,ll),X.devtoolsFormatters=e}const Bn=D(CSSStyleSheet.prototype.replaceSync)&&G(document.adoptedStyleSheets),ul=Bn&&Y(document.adoptedStyleSheets,"length").writable,dl=!c(document.documentMode),Ur=new Map;function jr(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function fl(e,t){const{element:n,usedElement:o}=t;return o?dl?jr(e):n.cloneNode(!0):(t.usedElement=!0,n)}function pl(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}function hl(e,t,n){const{adoptedStyleSheets:o}=t,{stylesheet:r}=n;ul?o.push(r):t.adoptedStyleSheets=[...o,r]}function Yr(e,t,n){const o=fl(e,n);t.appendChild(o)}function Gr(e,t){let n=Ur.get(e);return c(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},Ur.set(e,n)),t&&c(n.stylesheet)?n.stylesheet=pl(e):!t&&c(n.element)&&(n.element=jr(e)),n}function ml(e){const t=Gr(e,!1);t.global||(t.global=!0,Yr(e,document.head,t))}function gl(e,t){const n=Gr(e,Bn);let{roots:o}=n;if(c(o))o=n.roots=new WeakSet;else if(o.has(t))return;o.add(t),Bn?hl(e,t,n):Yr(e,t,n)}function yl(e,t){c(t)?ml(e):gl(e,t)}function El(){if(typeof customElements=="undefined")return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(Math.random()*1e6),t),new t,!0}catch(e){return!1}}const wl=El(),vl=(e,t)=>{const n=document.createElement(e);return t(n),n},Kr=new Map,Hn=new WeakSet;let Wn=!1;const bl=(e,t)=>{const n=!c(e),o=!c(t);class r extends HTMLElement{constructor(s){super();Wn?s(this):(n||o)&&Hn.add(this)}}return n&&(r.prototype.connectedCallback=function(){Hn.has(this)||e(this)}),o&&(r.prototype.disconnectedCallback=function(){Hn.has(this)||t(this)}),r},Nl=(e,t,n,o)=>{let r=Kr.get(e);if(c(r)){if(!c(customElements.get(e)))throw new Error(`Unexpected tag name "${e}". This name is a registered custom element, preventing LWC to upgrade the element.`);r=bl(n,o),customElements.define(e,r),Kr.set(e,r)}Wn=!0;try{return new r(t)}finally{Wn=!1}};let xn;wl?xn=Nl:xn=vl;function zr(e){const t=function(n){function o(p,y){if(!p)throw new Error(`Invariant Violation: ${y}`)}function r(p,y){if(!p)throw new Error(`Assert Violation: ${y}`)}function i(p,y){if(p)throw new Error(`Assert Violation: ${y}`)}function s(p){throw new Error(p)}var a=Object.freeze({__proto__:null,fail:s,invariant:o,isFalse:i,isTrue:r});function l(p){return p===void 0}function u(p){return p===null}class d extends CustomEvent{constructor(y,{setNewContext:T,setDisconnectedCallback:A}){super(y,{bubbles:!0,composed:!0});this.setNewContext=T,this.setDisconnectedCallback=A}}function f(p,y,T){ei(p,new d(y,T))}function E(p,y,T){zn(p,y,A=>{A.stopImmediatePropagation();const{setNewContext:Dt,setDisconnectedCallback:Ge}=A;T({setNewContext:Dt,setDisconnectedCallback:Ge})})}function v(p,y){return p.cloneNode(y)}function m(p,y){return l(y)?document.createElement(p):document.createElementNS(y,p)}function h(p){return document.createTextNode(p)}function C(p){return document.createComment(p)}if(n.createFragment=void 0,typeof HTMLTemplateElement=="function")n.createFragment=function(p){const y=document.createElement("template");return y.innerHTML=p,y.content.firstChild};else{const p={caption:["table"],col:["colgroup","table"],colgroup:["table"],option:["select"],tbody:["table"],td:["tr","tbody","table"],th:["tr","tbody","table"],thead:["table"],tfoot:["table"],tr:["tbody","table"]},y=function(T){return(/<([a-z][^/\0>\x20\t\r\n\f]+)/i.exec(T)||["",""])[1].toLowerCase()};n.createFragment=function(T){const A=p[y(T)];if(!l(A))for(const Ke of A)T=`<${Ke}>${T}</${Ke}>`;const Dt=document.implementation.createHTMLDocument("");Dt.body.innerHTML=T;let Ge=Dt.body;if(!l(A))for(let Ke=0;Ke<A.length;Ke++)Ge=Ge.firstChild;return Ge.firstChild}}function $(p,y,T){y.insertBefore(p,T)}function L(p,y){y.removeChild(p)}function je(p){return p.nextSibling}function Ye(p,y){return u(p.shadowRoot)?p.attachShadow(y):p.shadowRoot}function Yn(p,y){p.nodeValue=y}function St(p,y){return p[y]}function Mt(p,y,T){p[y]=T}function Gn(p,y,T){return l(T)?p.getAttribute(y):p.getAttributeNS(T,y)}function Kn(p,y,T,A){return l(A)?p.setAttribute(y,T):p.setAttributeNS(A,y,T)}function Zr(p,y,T){l(T)?p.removeAttribute(y):p.removeAttributeNS(T,y)}function zn(p,y,T,A){p.addEventListener(y,T,A)}function Rl(p,y,T,A){p.removeEventListener(y,T,A)}function ei(p,y){return p.dispatchEvent(y)}function Vl(p){return p.classList}function Ll(p,y,T,A){p.style.setProperty(y,T,A?"important":"")}function Il(p){return p.getBoundingClientRect()}function Pl(p,y){return p.querySelector(y)}function Fl(p,y){return p.querySelectorAll(y)}function Bl(p,y){return p.getElementsByTagName(y)}function Hl(p,y){return p.getElementsByClassName(y)}function Wl(p){return p.children}function xl(p){return p.childNodes}function Ul(p){return p.firstChild}function jl(p){return p.firstElementChild}function Yl(p){return p.lastChild}function Gl(p){return p.lastElementChild}function Kl(p){return p.isConnected}function zl(p,y){a.invariant(p instanceof HTMLElement,y)}function ql(p){return p.ownerDocument}return n.addEventListener=zn,n.assertInstanceOfHTMLElement=zl,n.attachShadow=Ye,n.cloneNode=v,n.createComment=C,n.createElement=m,n.createText=h,n.dispatchEvent=ei,n.getAttribute=Gn,n.getBoundingClientRect=Il,n.getChildNodes=xl,n.getChildren=Wl,n.getClassList=Vl,n.getElementsByClassName=Hl,n.getElementsByTagName=Bl,n.getFirstChild=Ul,n.getFirstElementChild=jl,n.getLastChild=Yl,n.getLastElementChild=Gl,n.getProperty=St,n.insert=$,n.isConnected=Kl,n.nextSibling=je,n.ownerDocument=ql,n.querySelector=Pl,n.querySelectorAll=Fl,n.registerContextConsumer=f,n.registerContextProvider=E,n.remove=L,n.removeAttribute=Zr,n.removeEventListener=Rl,n.setAttribute=Kn,n.setCSSStyleProperty=Ll,n.setProperty=Mt,n.setText=Yn,n}({});return Object.setPrototypeOf(t,e),t}const Ee=x(zr(null),{insertStylesheet:yl,createCustomElement:xn,isNativeShadowDefined:X[gi],isSyntheticShadowDefined:ze.call(Element.prototype,to)});function Cl(e,t){if(e.shadowRoot){const n=e.shadowRoot;for(;!g(n.firstChild);)n.removeChild(n.firstChild)}if(t.renderMode==="light")for(;!g(e.firstChild);)e.removeChild(e.firstChild)}function qr(e,t,n){const o=He(e,t,Ee,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[r,i]of Object.entries(n))e[r]=i;return o}function Qr(e,t,n={}){if(!(e instanceof Element))throw new TypeError(`"hydrateComponent" expects a valid DOM element as the first parameter but instead received ${e}.`);if(!D(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!Xe(n)||g(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(q(e)){console.warn('"hydrateComponent" expects an element that is not hydrated.',e);return}try{const o=qr(e,t,n);$c(o)}catch(o){console.error("Recovering from error while hydrating: ",o),Cl(e,t),qr(e,t,n),An(e)}}function Tl(e){return e.CustomElementConstructor}const Un=new WeakSet;function Sl(e){var t;const n=Xs(e),{observedAttributes:o}=n,{attributeChangedCallback:r}=n.prototype;return t=class extends HTMLElement{constructor(){super();this.isConnected?(Qr(this,e,{}),Un.add(this)):He(this,e,Ee,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){Un.has(this)?Un.delete(this):An(this)}disconnectedCallback(){$n(this)}attributeChangedCallback(i,s,a){r.call(this,i,s,a)}},t.observedAttributes=o,t}const Xr=Node,Tt=new WeakMap,jn=new WeakMap;function Ue(e,t){const n=t.get(e);return c(n)||n(e),e}{const{appendChild:e,insertBefore:t,removeChild:n,replaceChild:o}=Xr.prototype;x(Xr.prototype,{appendChild(r){const i=e.call(this,r);return Ue(i,Tt)},insertBefore(r,i){const s=t.call(this,r,i);return Ue(s,Tt)},removeChild(r){const i=n.call(this,r);return Ue(i,jn)},replaceChild(r,i){const s=o.call(this,r,i);return Ue(s,jn),Ue(r,Tt),s}})}function Ml(e,t){if(!Xe(t)||g(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${ee(t)}".`);const n=t.is;if(!D(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const{createCustomElement:o}=Ee,r=Vt.call(e),i=u=>{He(u,n,Ee,{tagName:r,mode:t.mode!=="closed"?"open":"closed",owner:null}),Tt.set(u,An),jn.set(u,$n)};let s,a;return o(r,i,s,a)}const Dl=Node;function _l(e){if(Q(e instanceof Dl)||e instanceof ShadowRoot)return!1;const t=e.getRootNode();return t instanceof ShadowRoot&&Q(ze.call(ve(t),"synthetic"))?!0:Ee.isSyntheticShadowDefined&&!c(e[Lt])}const Jr=new Map;function Ol(e){if(e===O)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=Jr.get(e);return c(t)&&(t=Sl(e),Jr.set(e,t)),t}_(O,"CustomElementConstructor",{get(){return Ol(this)}}),we(O),qe(O.prototype);function kl(e,t,n,o){e.addEventListener(t,n,o)}function Al(e){return fs(e,$l)}function $l(e,t,n){kl(e,t,o=>{o.stopImmediatePropagation();const{setNewContext:r,setDisconnectedCallback:i}=o;n({setNewContext:r,setDisconnectedCallback:i})})}N.LightningElement=O,N.__unstable__ProfilerControl=Qa,N.__unstable__ReportingControl=$i,N.api=Ss,N.buildCustomElementConstructor=Tl,N.createContextProvider=Al,N.createElement=Ml,N.freezeTemplate=rl,N.getComponentConstructor=il,N.getComponentDef=Zs,N.hydrateComponent=Qr,N.isComponentConstructor=ut,N.isNodeFromTemplate=_l,N.parseFragment=Xa,N.parseSVGFragment=Ja,N.readonly=sl,N.register=sc,N.registerComponent=nc,N.registerDecorators=As,N.registerTemplate=Is,N.renderer=Ee,N.rendererFactory=zr,N.sanitizeAttribute=Ps,N.setFeatureFlag=Di,N.setFeatureFlagForTest=_i,N.setHooks=Kc,N.swapComponent=Ks,N.swapStyle=zs,N.swapTemplate=Gs,N.track=Ds,N.unwrap=ss,N.wire=Os,Object.defineProperty(N,"__esModule",{value:!0})}); |
| New file |
| | |
| | | (function() { LWR.define("community_builder/richTextUtil",["exports","@salesforce/community/basePath"],function(e,t){function n(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var c=n(t);const r="/sfsites/c";const s=/\{!contentAsset\.(.+?)\.(.+?)\}/g;const o=/\{!cmsMedia\.(.+?)\}/g;function l(e){let t=e;let n;while((n=o.exec(e))!==null){const[e,c]=n;let r=f(c);t=t.replace(e,r)}return u(t)}function u(e){let t=e;let n;while((n=s.exec(e))!==null){const[e,c,r]=n;let s=a(c,r);t=t.replace(e,s)}return t}function i(){return c.default+r}function f(e){return`${i()}/cms/delivery/media/${e}`}function a(e,t){return`${i()}/file-asset/${e}?v=${t}`}e.getCMSContentUrl=f;e.getPathPrefix=i;e.processContentAssets=u;e.processContents=l;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();LWR.define('@salesforce/community/Id', [], function() { return "0DB0l0000001Z3MGAU"; });(function() { LWR.define("dxp_util/common",["exports"],function(e){function t(e,t,r){const n=r||{};let i=n.leading;let c;return function r(){const u=Array.prototype.slice.apply(arguments);if(i){e.apply(this,u);i=false}clearTimeout(c);c=setTimeout(function(){e.apply(this,u);i=n.leading},t)}}const r={tab:9,backspace:8,enter:13,escape:27,space:32,pageup:33,pagedown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46,shift:16};function n(e,t){return function r(){try{return e.apply(this,arguments)}catch(e){return t?.apply(this,[e].concat(arguments))}}}function i(e,t){if(typeof e!=="string"){return e??{}}return n(JSON.parse,t)(e)??{}}function c(e){return JSON.stringify(e,(e,t)=>t?t:undefined)}function u(e){if(Object(e)!==e){return e}if(e instanceof Set){return new Set(e)}if(e instanceof Date){return new Date(e)}if(typeof e==="function"){return e.bind({})}if(Array.isArray(e)){const t=[];const r=e.length;for(let n=0;n<r;n++){t.push(u(e[n]))}return t}const t=Object.create({});let r=Object.keys(e);if(e instanceof Error){r=Object.getOwnPropertyNames(e)}const n=r.length;for(let i=0;i<n;i++){const n=r[i];t[n]=u(e[n])}return t}function o(e,...t){if(!t.length)return e;const r=t.shift();if(s(e)&&s(r)){for(const t in r){if(s(r[t])){if(!e[t])Object.assign(e,{[t]:{}});o(e[t],r[t])}else if(Array.isArray(r[t])&&Array.isArray(e[t])){e[t]=[...e[t],...r[t]]}else{Object.assign(e,{[t]:r[t]})}}}return o(e,...t)}function s(e){return e&&typeof e==="object"&&!Array.isArray(e)}const a=(...e)=>t=>e.filter(e=>typeof e==="function").reduce((e,t)=>t(e),t);const y=(...e)=>t=>e.filter(e=>typeof e==="function").reduceRight((e,t)=>t(e),t);const g=e=>t=>t.forEach(e);const f=e=>t=>t.find(e);const M=e=>t=>t.filter(e);const j=e=>t=>t.map(e);const l=e=>t=>t.every(e);const I=e=>t=>Object.keys(t).forEach(e);const N=e=>t=>y(l(e),Object.keys)(t);function p(e,t,r){const n=Array.isArray(e)?e:[];const i=Array.isArray(t)?t:[];const c=i.filter(e=>{const t=n.findIndex(t=>t[r]===e[r]);if(t>=0){n[t]=e}return t<0});return n.concat(c)}const D=e=>function t(...r){if(r.length>=e.length){return e.apply(this,r)}return(...e)=>t.apply(this,r.concat(e))};function A(e){return typeof e==="function"}const O=e=>A(e)?e():e;const b=D((e,t,r)=>O(e)?O(t):O(r));const z=D((e,t)=>b(e,t,null));const m=e=>t=>t(e);const h=(...e)=>t=>e?.filter(A).some(m(t));const d=(...e)=>t=>e?.filter(A).every(m(t));function T(e){return e!==Object(e)}function C(e){return Array.isArray(e)?"array":typeof e}function E(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function w(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?E(Object(r),!0).forEach(function(t){L(e,t,r[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):E(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}function L(e,t,r){t=Y(t);if(t in e){Object.defineProperty(e,t,{value:r,enumerable:true,configurable:true,writable:true})}else{e[t]=r}return e}function Y(e){var t=Q(e,"string");return typeof t==="symbol"?t:String(t)}function Q(e,t){if(typeof e!=="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==undefined){var n=r.call(e,t||"default");if(typeof n!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}const S=D((e,t)=>{if(R(t)){return e}const r=t.split(".");let n=e??{};let i=0;for(i=0;i<r.length-1;i++){if(R(n[r[i]])){return null}n=n[r[i]]}return n[r[i]]});const x=D((e,t,r)=>{if(R(t)){return}const n=t.split(".");let i=e;let c=0;for(c=0;c<n.length-1;c++){i[n[c]]=i[n[c]]||{};i=i[n[c]]}i[n[c]]=r});const v=D((e,t,r,n)=>{const i=S(e,r);x(t,n,i)});function k(e,t,r,n){I(i=>{if(n){v(e,t,r[i],i)}else{v(e,t,i,r[i])}})(r??{});return t}function P(...e){const[t,r,...n]=e;return t?.[r]?.apply(t,n)}const U=e=>[...Array(e).keys()];const Z=e=>!R(e);function R(e){if(Array.isArray(e)){return e.length===0}const t=typeof e;switch(t){case"string":return e==="";case"boolean":case"number":case"function":return false;case"object":return Object.keys(e??{}).length===0;default:return e==null}}function _(e,t=""){return Object.prototype.hasOwnProperty.call(e??{},t)}const F="__sfdc_default__";function V(e){return w({patchRecord:true,getter:(e,t)=>()=>S(e,t)},e)}function $(e){return Z(e?.value?.fields)}function H(e){return e?.displayValue||e?.value||e}function G(e,t){if(J(e)){return t??""}return t}function J(e){return typeof e==="object"&&!Array.isArray(e)&&_(e,"value")&&_(e,"displayValue")}function B(e,t,r={}){if(R(e)||T(e)||A(e)){return e}t=V(t);if(Array.isArray(e)){return e.map(e=>B(e,t))}return Object.entries(e).reduce((r,n)=>{const[i,c]=n;const u=typeof c;if(T(c)){Object.defineProperty(r,i,{get(){return t.getter(e,i)()},enumerable:true})}else if(Array.isArray(c)){r[i]=c.map(e=>B(e,t))}else if(A(c)){r[i]=c}else if(u==="object"){const n={};if(t.patchRecord){Object.defineProperties(n,{[F]:{get(){return G(c,t.getter(e,i)())},enumerable:true},_rawValue:{get(){return t.getter(n,"value")()},enumerable:true},_displayValue:{get(){return t.getter(n,"displayValue")()},enumerable:true}})}B(c,t,n);if($(n)){const e=n.value.fields;Object.entries(e).forEach(e=>{const[t,r]=e;if(!_(n,t)){Object.defineProperty(n,t,{get(){if($(r)){return r}return H(r)},enumerable:true})}})}r[i]=n}return r},r)}function W(e,t,r){const n=Number.parseInt(e,10);if(n<t)return t;if(n>r)return r;return n}function K(e){return e!==""&&!isNaN(Number(e))&&/^-?[0-9a-fA-Fx.]*$/.exec(e)}const q=["%","cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh"];function X(e,t=q){const r=/^([^a-z%]*)(.*)/.exec(e);let n=r[1];let i=r[2];if(!K(n)||!t.includes(i)){n="";i=""}return{value:n,unit:i}}const ee=e=>typeof e==="object"?e:{};const te={toString(){return Object.keys(this).map(e=>{const[t,r]=e.split(":");const n=X(this[e]);let i;if(Z(n.unit)){i=this[e]}else{i=Z(this[e])?`${this[e]}${r??""}`:"initial"}return`${t}: ${i};`}).join(" ")}};function re(e){return Object.assign(Object.create(te),ee(e))}const ne="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDEiIHZpZXdCb3g9IjAgMCAxNDA2IDQ0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHk9IjAuMzMwMDc4IiB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDAiIGZpbGw9IiNGM0YzRjMiLz4KPHBhdGggZD0iTTY3OCAyNTJDNjcxLjkyIDI1MiA2NjcgMjQ3LjA4IDY2NyAyNDFWMTk5QzY2NyAxOTIuOTIgNjcxLjkyIDE4OCA2NzggMTg4SDcyOEM3MzQuMDggMTg4IDczOSAxOTIuOTIgNzM5IDE5OVYyNDFDNzM5IDI0Ny4wOCA3MzQuMDggMjUyIDcyOCAyNTJINjc4VjI1MlpNNjczIDIzMS43Nkw2ODEuODggMjI0LjhDNjgyLjU2IDIyNC4yOCA2ODMuMjggMjI0IDY4NC4wNCAyMjRDNjg0LjggMjI0IDY4NS41NiAyMjQuMjggNjg2LjIgMjI0LjhMNjk2LjY0IDIzMy4yNEw3MTQuMDggMjE4LjhDNzE0Ljc2IDIxOC4yNCA3MTUuNDggMjE4IDcxNi4yNCAyMThDNzE3IDIxOCA3MTcuNzYgMjE4LjI4IDcxOC40IDIxOC44TDczMyAyMzAuNDhWMTk5QzczMyAxOTYuMjQgNzMwLjc2IDE5NCA3MjggMTk0SDY3OEM2NzUuMjQgMTk0IDY3MyAxOTYuMjQgNjczIDE5OVYyMzEuNzZWMjMxLjc2Wk02OTUgMjIwQzY4OS40OCAyMjAgNjg1IDIxNS41MiA2ODUgMjEwQzY4NSAyMDQuNDggNjg5LjQ4IDIwMCA2OTUgMjAwQzcwMC41MiAyMDAgNzA1IDIwNC40OCA3MDUgMjEwQzcwNSAyMTUuNTIgNzAwLjUyIDIyMCA2OTUgMjIwWk02OTUgMjE0QzY5Ny4yIDIxNCA2OTkgMjEyLjIgNjk5IDIxMEM2OTkgMjA3LjggNjk3LjIgMjA2IDY5NSAyMDZDNjkyLjggMjA2IDY5MSAyMDcuOCA2OTEgMjEwQzY5MSAyMTIuMiA2OTIuOCAyMTQgNjk1IDIxNFpNNjc4IDI0Nkg3MjhDNzMwLjc2IDI0NiA3MzMgMjQzLjc2IDczMyAyNDFWMjM5LjY0QzczMyAyMzguNjggNzMyLjYgMjM3Ljg0IDczMS44NCAyMzcuMjRMNzE2LjI0IDIyNC43Nkw2OTguOCAyMzkuMjRDNjk4LjE2IDIzOS43NiA2OTcuNCAyNDAgNjk2LjY0IDI0MEM2OTUuODggMjQwIDY5NS4xNiAyMzkuOCA2OTQuNDggMjM5LjI0TDY4NC4wNCAyMzAuNzZMNjc0LjE2IDIzOC41MkM2NzMuNCAyMzkuMTIgNjczIDIzOS45NiA2NzMgMjQwLjkyVjI0MUM2NzMgMjQzLjc2IDY3NS4yNCAyNDYgNjc4IDI0NlYyNDZaIiBmaWxsPSIjQUJBQ0FEIi8+Cjwvc3ZnPg==";const ie="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMxMiIgaGVpZ2h0PSI0NDAiIHZpZXdCb3g9IjAgMCAxMzEyIDQ0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHdpZHRoPSIxMzEyIiBoZWlnaHQ9IjQ0MCIgZmlsbD0iI0YzRjNGMyIvPgo8cGF0aCBkPSJNNjM5LjA4IDE5MkM2NDAuNzYgMTkyIDY0Mi42OCAxOTIuNTYgNjQ0LjY4IDE5My42OEw2NzguNzYgMjEyLjg0QzY4Mi4yOCAyMTQuOCA2ODQgMjE3LjQgNjg0IDIyMEM2ODQgMjIyLjYgNjgyLjMyIDIyNS4xNiA2NzguNzYgMjI3LjE2TDY0NC42OCAyNDYuMzJDNjQyLjY4IDI0Ny40NCA2NDAuNzYgMjQ4IDYzOS4wOCAyNDhDNjM0Ljg4IDI0OCA2MzIgMjQ0LjY0IDYzMiAyMzguOTJWMjAxLjA4QzYzMiAxOTUuMzYgNjM0Ljg4IDE5MiA2MzkuMDggMTkyVjE5MloiIGZpbGw9IiNBQkFDQUQiLz4KPC9zdmc+";function ce(e){return e&&e!==""}function ue(e){return ce(e)?`url("${e}")`:""}function oe(e){return a(se,ue)(e)}function se(e){return ce(e)?e:ne}const ae=e=>t=>Array.from(t?.querySelectorAll(e));const ye=D((e,t)=>t?.toString().split(e)??[]);function ge(e=""){e=e?.toString();return!e||e.length===0?"":`${e.charAt(0).toUpperCase()}${e.slice(1)}`}function fe(e){return y(M(e=>e?.length>0),ye("/"))(e)}function Me(e=0){return new Promise(t=>{setTimeout(t,e)})}function je(){return new Promise(e=>{requestAnimationFrame(e)})}const le="l";const Ie="m";const Ne="s";const pe=[le,Ie,Ne];const De={top:"flex-start",left:"flex-start",bottom:"flex-end",right:"flex-end",center:"center"};function Ae(e,t,r){const n={};pe.forEach(i=>{e.forEach(e=>{const c=`${t}-${i}-${e.customTitle||e.name}`;const u=`${t}-${i}-${e.name}`;n[`${c}:${e.unit}`]=e.name.match(/alignment/gi)&&Object.keys(r).includes(u)?De[r[u]]:r[u]})});return n}function Oe(e,t,r){const n={};if(!r||!e||!t){return{}}const i=r.split(e);i.filter(e=>{const r=e.match(new RegExp(t,"g"))||[];return e&&r.length===1&&r[0]===t}).forEach(e=>{const[r,i]=e.split(t);n[r.trim()]=i.trim()});return n}const be=150;const ze={top:0,right:0,bottom:0,left:0};function me(e,...t){return t.reduce((e,t,r)=>e?.replaceAll(`{${r}}`,t),e)}e.DEBOUNCE_TIMEOUT=be;e.EMPTY_RECT=ze;e.KeyCodes=r;e.PLACEHOLDER_DATA_URI=ne;e.SFDC_DEFAULT=F;e.VIDEO_PLACEHOLDER_DATA_URI=ie;e.and=d;e.apply=P;e.compose=y;e.curry=D;e.debounce=t;e.deepCopy=u;e.deepMerge=o;e.empty=R;e.every=l;e.everyKey=N;e.fieldToValue=H;e.filter=M;e.find=f;e.forEach=g;e.forEachKey=I;e.formatString=me;e.get=S;e.getify=B;e.hasOwnProperty=_;e.hasUri=ce;e.ifElse=b;e.ifVal=z;e.isField=J;e.isFunction=A;e.isNumber=K;e.isPrimitive=T;e.map=j;e.mapObject=k;e.mapping=v;e.mergeUniqueRecords=p;e.nextFrame=je;e.notEmpty=Z;e.or=h;e.parseUnit=X;e.pipe=a;e.prependFormFactor=Ae;e.propertySet=re;e.querySelectorAll=ae;e.range=W;e.safeCssUrl=oe;e.safeFieldValue=G;e.safeImageSrc=se;e.safeParseJson=i;e.set=x;e.split=ye;e.splitStringToObj=Oe;e.splitUrl=fe;e.stringify=c;e.timeout=Me;e.toCapitalized=ge;e.toCssUrl=ue;e.toIndexes=U;e.tryCatch=n;e.typeOf=C;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/siteInfo",["exports","@salesforce/community/basePath","dxp_util/common","@salesforce/i18n/lang","@salesforce/community/Id","@salesforce/site/Id"],function(t,e,n,u,a,r){function o(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var s=o(e);var f=o(u);var i=o(a);var c=o(r);const l="/sfsites/c";const d=`${s.default}${l}`;const P=n.curry((t,e,n)=>e?n:`${s.default}${t??""}${n}`);const m=P(l);const h=P("");const I={CurrentLanguage:f.default.replace("-","_"),CommunityId:i.default,CurrentLocale:f.default,SiteId:c.default};function _(){return d}function p(t,e=false){return h(e,t)}function y(t,e=false){return m(e,t)}function S(t){return t?.startsWith(s.default)}t.CMS_PATH_PREFIX=l;t.SiteInfo=I;t.buildSiteCmsPath=y;t.buildSitePath=p;t.constructUrlPath=P;t.getPathPrefix=_;t.isSitePath=S;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/contentInfo",["exports","dxp_util/siteInfo"],function(t,e){const n=/^\/cms\//;const o=/^\/img\//;const r=/^\/assets\//;function s(t){return n.test(t)}function u(t){return o.test(t)}function c(t){return r.test(t)}function i(t){return s(t)||u(t)}function l(t){return c(t)?e.buildSitePath(t):i(t)?e.buildSiteCmsPath(t):t}function a(t){const{url:n,isExternal:o}=t;return e.buildSiteCmsPath(n,o)}function f(t){return{url:t.contentNodes?.source?.url??"",isExternal:!!t.contentNodes?.source?.isExternal,altText:t.contentNodes?.altText?.value??""}}function d(t=[]){return t.filter(t=>t.contentKey&&t.contentNodes).reduce((t,e)=>{t.set(e.contentKey,f(e));return t},new Map)}function m(t,e){const n=d(t?.items??[]);const[o]=e;const r=n.get(o);const s=r?{url:a(r),altText:r.altText}:{};return s}function x(t){const n=t?.contentBody??{};const o=n["sfdc_cms:media"]??{};const r={url:e.buildSiteCmsPath(o.url??"",o.source?.type==="url"),altText:n.altText??""};return r}t.convertItemsToContentKeyMap=d;t.extractImageInfo=m;t.extractImageInfoV2=x;t.getCMSContentUrl=a;t.isCmsAsset=c;t.isCmsResource=s;t.isResource=i;t.isStaticImageResource=u;t.resolveUrl=l;t.toUrlInfo=f;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/idGenerator",["exports","dxp_util/common"],function(e,t){const n=["","one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"];const r=["","","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"];function o(e=0){if(typeof e==="string"){e=parseInt(e,10)}if(e<0)throw new Error("Negative numbers are not supported.");if(e===0)return"zero";if(e<20){return n[e]}const t=e.toString();if(t.length===2){return`${r[t[0]]}${n[t[1]]?"-"+n[t[1]]:""}`}if(t.length===3){if(t[1]==="0"&&t[2]==="0"){return`${n[t[0]]}-hundred`}const e=o(+(t[1]+t[2]));return`${n[t[0]]}-hundred-${e}`}if(t.length===4){const e=+(t[1]+t[2]+t[3]);if(e===0){return n[t[0]]+"-thousand"}if(e<100){return`${n[t[0]]}-thousand-${o(e)}`}return`${n[t[0]]}-thousand-${o(e)}`}throw new Error(`${e} are not supported.`)}const i=e=>t=>o(t+e);const s=e=>n=>e??false?t.toCapitalized(n):n;const u=e=>t=>`${e}${t}`;function a(e,n,r,o){return t.compose(u(r),s(n),i(e))(o)}const f=t.curry(a);function d(e,n,r={baseIndex:0,capitalCase:false}){return t.compose(t.map(f(r.baseIndex,r.capitalCase,e)),t.toIndexes)(n)}function c(){return Math.floor((new Date).valueOf()*Math.random())}e.fnGenerateId=f;e.generateId=a;e.generateIds=d;e.generateUniqueNumber=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_data_provider/dataProviderUtils",["exports","dxp_util/contentInfo","@app/isDesignMode","dxp_util/idGenerator"],function(e,t,n,r){function o(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var i=o(n);function _(e){return i.default?r.generateIds("",e).map(e=>({key:e,data:{}})):[]}const d=/\{!Item\.(.+?)\}/g;const l="dxp_data_provider__getfielddata";const a="_";const u=`${a}data`;const c={RECORD:"sfdc_record__",CMS:"sfdc_cms__"};const s=e=>{const t=e.split(".");if(t.length>0&&t[t.length-1].startsWith("_")){const e=t[t.length-1];const n=t.slice(0,t.length-1);if(t.length===1){return[null,e]}return[n,e]}return[e,null]};function f(e){if(e?.includes("-")){return e.split("-").slice(-1)[0]}return e}function A(e,t){return!e?t:`${e}.${t}`}Object.defineProperty(e,"resolve",{enumerable:true,get:function(){return t.resolveUrl}});e.DATA_BIND_REGEX=d;e.DATA_PROVIDER_DATA_ACCESS=u;e.DATA_PROVIDER_FIELD_METADATA_PREFIX=a;e.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME=l;e.SFDC_TYPES=c;e.buildFieldPath=A;e.generateMockCollection=_;e.getFieldAndMetadata=s;e.normalizeContentKey=f;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("lightning/utils",["exports"],function(t){const e=t=>typeof t==="string"?t.trim().split(/\s+/).reduce((t,e)=>{t[e]=true;return t},{}):t;const n={add(t){Object.assign(this,e(t));return this},invert(){Object.keys(this).forEach(t=>{this[t]=!this[t]});return this},toString(){return Object.keys(this).filter(t=>this[t]).join(" ")}};function r(t){return Object.assign(Object.create(n),e(t))}const i=/input|select|textarea|button|object/;function s(t){const{width:e,height:n}=t.getBoundingClientRect();const r=e>0||n>0;return r&&window.getComputedStyle(t).visibility!=="hidden"}function c(t){const e=t.tagName.toLowerCase();const n=i.test(e)&&!t.disabled||e==="a"&&t.href;return n&&s(t)}function o(t){const e=t.getAttribute("data-navigation")==="enable";const n=t.tabIndex;return n>=0&&c(t)||e}function u(t){return[].slice.call(t.querySelectorAll("*"),0).filter(o)}function a(t){const e=Array.prototype.slice.call(arguments,1);let n=e;if(Array.isArray(e[0])){[n]=e}return t.replace(/{(\d+)}/g,(t,e)=>{const r=n[e];return r!==null&&r!==undefined?r:""})}t.classSet=r;t.formatLabel=a;t.queryFocusable=u;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/outputRichText",["exports","lwc","lightning/utils","community_builder/richTextUtil","dxp_data_provider/dataProviderUtils"],function(t,e,i,o,n){function l(t,e,i){var o=t?"["+t+"]":"";return[".cb-outputRichText-container.ql-editor",o," {box-sizing: border-box;line-height: 1.42;height: 100%;outline: none;overflow-y: auto;tab-size: 4;-moz-tab-size: 4;text-align: left;white-space: pre-wrap;word-wrap: break-word;}.cb-outputRichText-container.ql-editor",o," > *",o," {cursor: text;}.cb-outputRichText-container.ql-editor",o," p",o,",.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o,",.cb-outputRichText-container.ql-editor",o," pre",o,",.cb-outputRichText-container.ql-editor",o," blockquote",o,",.cb-outputRichText-container.ql-editor",o," h1",o,",.cb-outputRichText-container.ql-editor",o," h2",o,",.cb-outputRichText-container.ql-editor",o," h3",o,",.cb-outputRichText-container.ql-editor",o," h4",o,",.cb-outputRichText-container.ql-editor",o," h5",o,",.cb-outputRichText-container.ql-editor",o," h6",o," {margin: 0;padding: 0;counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," > li",o,",.cb-outputRichText-container.ql-editor",o," ul",o," > li",o," {list-style-type: none;}.cb-outputRichText-container.ql-editor",o," ul",o," > li",o,"::before {content: '\\2022';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," {pointer-events: none;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o," *",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o," *",o," {pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before,.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {color: #777;cursor: pointer;pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before {content: '\\2611';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {content: '\\2610';}.cb-outputRichText-container.ql-editor",o," li",o,"::before {display: inline-block;white-space: nowrap;width: 1.2em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o,"::before {margin-left: -1.5em;margin-right: 0.3em;text-align: right;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o,"::before {margin-left: 0.3em;margin-right: -1.5em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o," {padding-right: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o," {counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment: list-0;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o,":before {content: counter(list-0, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-increment: list-1;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o,":before {content: counter(list-1, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-increment: list-2;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o,":before {content: counter(list-2, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-increment: list-3;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o,":before {content: counter(list-3, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-increment: list-4;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o,":before {content: counter(list-4, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-reset: list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-increment: list-5;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o,":before {content: counter(list-5, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-reset: list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-increment: list-6;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o,":before {content: counter(list-6, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-reset: list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-increment: list-7;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o,":before {content: counter(list-7, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-reset: list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-increment: list-8;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o,":before {content: counter(list-8, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-reset: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o," {counter-increment: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o,":before {content: counter(list-9, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," .ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-video",o," {display: block;max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-center",o," {margin: 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-right",o," {margin: 0 0 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-bg-black",o," {background-color: #000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-red",o," {background-color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-orange",o," {background-color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-bg-yellow",o," {background-color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-bg-green",o," {background-color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-bg-blue",o," {background-color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-bg-purple",o," {background-color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-color-white",o," {color: #fff;}.cb-outputRichText-container.ql-editor",o," .ql-color-red",o," {color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-color-orange",o," {color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-color-yellow",o," {color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-color-green",o," {color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-color-blue",o," {color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-color-purple",o," {color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-direction-rtl",o," {direction: rtl;text-align: inherit;}.cb-outputRichText-container.ql-editor",o," .ql-align-center",o," {text-align: center;}.cb-outputRichText-container.ql-editor",o," .ql-align-justify",o," {text-align: justify;}.cb-outputRichText-container.ql-editor",o," .ql-align-right",o," {text-align: right;}.cb-outputRichText-container.ql-editor",o," .ql-blank",o,"::before {color: rgba(0, 0, 0, 0.6);content: attr(data-placeholder);font-style: italic;left: 15px;pointer-events: none;position: absolute;right: 15px;}.cb-outputRichText-container.ql-editor",o," blockquote",o," {border-left: 4px solid #ccc;margin-bottom: 5px;margin-top: 5px;padding-left: 16px;}.cb-outputRichText-container.ql-editor",o," code",o,",.cb-outputRichText-container.ql-editor",o," pre",o," {background-color: #f0f0f0;border-radius: 3px;}.cb-outputRichText-container.ql-editor",o," pre",o," {white-space: pre-wrap;margin-bottom: 5px;margin-top: 5px;padding: 5px 10px;}.cb-outputRichText-container.ql-editor",o," code",o," {font-size: 85%;padding: 2px 4px;}.cb-outputRichText-container.ql-editor",o," pre.ql-syntax",o," {background-color: #23241f;color: #f8f8f2;overflow: visible;}.cb-outputRichText-container.ql-editor",o," img",o," {max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," {position: relative;padding-bottom: 56.25%;overflow: hidden;max-width: 100%;height: 0;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," .ql-video",o," {position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: none;}"].join("")}var r=[l];function c(t,e,i){var o=t?"."+t+"-host":"";return(e?":host {":o+" {")+"display: block;overflow: auto;}"}c.$scoped$=true;var d=[c];function u(t,e,i,o){const{h:n}=t;return[n("div",{className:e.containerClass,key:0})]}var a=e.registerTemplate(u);u.stylesheets=[];u.renderMode="light";if(r){u.stylesheets.push.apply(u.stylesheets,r)}if(d){u.stylesheets.push.apply(u.stylesheets,d)}u.stylesheetToken="community_builder-outputRichText_outputRichText";e.freezeTemplate(u);class q extends e.LightningElement{constructor(...t){super(...t);this.processedValue="";this.isDomReady=false;this.pendingEvent=void 0;this.enableQuillCss=false}get value(){return this.processedValue}set value(t){this.processedValue=o.processContents(t);this.processDataExpressions(this.processedValue);this.renderRichText()}setDataExpressions(t){this.processedValue=this.resolveDataExpressions(this.value,t);this.renderRichText()}get containerClass(){return i.classSet({"cb-outputRichText-container":true,"ql-editor":this.enableQuillCss}).toString()}resolveDataExpressions(t,e){let i=t;let o;while((o=n.DATA_BIND_REGEX.exec(t))!==null){const[t,n]=o;i=i.replace(t,e[n])}return i}processDataExpressions(t){let e;let i=[];while((e=n.DATA_BIND_REGEX.exec(t))!==null){const[,t]=e;i.push(t)}if(i.length>0){this.pendingEvent=new CustomEvent(n.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME,{detail:i,bubbles:true,composed:true})}}renderedCallback(){this.isDomReady=true;this.renderRichText()}renderRichText(){if(this.isDomReady){const t=this.querySelector("div");t.innerHTML=this.processedValue;if(this.pendingEvent){const t=this.pendingEvent;this.pendingEvent=null;this.dispatchEvent(t)}}}}q.renderMode="light";e.registerDecorators(q,{publicProps:{enableQuillCss:{config:0},value:{config:3}},publicMethods:["setDataExpressions"],fields:["processedValue","isDomReady","pendingEvent"]});var p=e.registerComponent(q,{tmpl:a,sel:"community_builder-outputRichText"});t.default=p;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/htmlEditor",["exports","lwc","community_builder/outputRichText"],function(e,t,r){function i(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var l=i(r);function u(e,t,r){var i=e?"."+e+"-host":"";return(t?":host {":i+" {")+"display: block;}"}u.$scoped$=true;var n=[u];function o(e,t,r,i){const{c:u}=e;return[u("community_builder-output-rich-text",l.default,{props:{value:t.richTextValue},key:0})]}var s=t.registerTemplate(o);o.stylesheets=[];o.renderMode="light";if(n){o.stylesheets.push.apply(o.stylesheets,n)}o.stylesheetToken="community_builder-htmlEditor_htmlEditor";t.freezeTemplate(o);class a extends t.LightningElement{constructor(...e){super(...e);this.internalValue=""}get richTextValue(){return this.internalValue}set richTextValue(e){this.internalValue=e}}a.renderMode="light";t.registerDecorators(a,{publicProps:{richTextValue:{config:3}},fields:["internalValue"]});var c=t.registerComponent(a,{tmpl:s,sel:"community_builder-htmlEditor"});e.default=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/sldsFlexibleLayout",["exports","lwc"],function(e,t){function n(e,t,n){var s=e?"."+e:"";return".content-container"+s+" {display: flex;flex-direction: column;}"}n.$scoped$=true;var s=[n];const l={classMap:{"content-container":true},key:0};const o={attrs:{name:"content"},key:1};const r=[];function i(e,t,n,s){const{s:i,h:a}=e;return[a("div",l,i("content",o,r,n))]}var a=t.registerTemplate(i);i.slots=["content"];i.stylesheets=[];i.renderMode="light";if(s){i.stylesheets.push.apply(i.stylesheets,s)}i.stylesheetToken="community_layout-sldsFlexibleLayout_sldsFlexibleLayout";t.freezeTemplate(i);class c extends t.LightningElement{}c.renderMode="light";var u=t.registerComponent(c,{tmpl:a,sel:"community_layout-sldsFlexibleLayout"});e.default=u;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/section",["exports","lwc","@salesforce/community/basePath"],function(n,t,e){function o(n){return n&&typeof n==="object"&&"default"in n?n:{default:n}}var i=o(e);function c(n,t,e){var o=n?"."+n:"";var i=n?"."+n+"-host":"";return(t?":host.comm-section-container {":i+".comm-section-container {")+"display: block;position: relative;padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-m,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-m,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-m,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-m,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}.columns-content"+o+" {display: flex;flex-direction: column;max-width: var(--dxp-c-section-columns-max-width, var(--dxp-s-section-columns-max-width));margin-left: auto;margin-right: auto;position: relative;}@media (min-width: 64em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start,\n var(--dxp-style-c-padding-top, var(--dxp-s-section-content-spacing-block-start))\n )\n var(\n --dxp-c-section-content-spacing-inline-end,\n var(--dxp-style-c-padding-right, var(--dxp-s-section-content-spacing-inline-end))\n )\n var(\n --dxp-c-section-content-spacing-block-end,\n var(--dxp-style-c-padding-bottom, var(--dxp-s-section-content-spacing-block-end))\n )\n var(\n --dxp-c-section-content-spacing-inline-start,\n var(--dxp-style-c-padding-left, var(--dxp-s-section-content-spacing-inline-start))\n );}.columns-content"+o+" {flex-direction: row;}}@media (max-width: 47.9375em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-s,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-s,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-s,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-s,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}}.background-image"+o+",.background-image-overlay"+o+" {position: absolute;width: 100%;height: 100%;top: 0;left: 0;right: 0;bottom: 0;z-index: 0;}"}c.$scoped$=true;var s=[c];const a=t.parseFragment`<div class="background-image${0}"${2}></div>`;const r=t.parseFragment`<div class="background-image-overlay${0}"${2}></div>`;const d={classMap:{"columns-content":true},key:4};const l={attrs:{name:"columns"},key:5};const g=[];function p(n,t,e,o){const{st:i,s:c,h:s}=n;return[i(a(),1),i(r(),3),s("div",d,c("columns",l,g,e))]}var m=t.registerTemplate(p);p.slots=["columns"];p.stylesheets=[];p.renderMode="light";if(s){p.stylesheets.push.apply(p.stylesheets,s)}p.stylesheetToken="community_layout-section_section";t.freezeTemplate(p);const u="/sfsites/c/cms/delivery/media";function b(){return i.default+u}function v(n){return n&&n!==""?b()+"/"+n:""}class h extends t.LightningElement{constructor(...n){super(...n);this.sectionConfig='{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}';this.backgroundImageOverlay=void 0;this.url="";this._background=void 0}get backgroundImageConfig(){return this._background}set backgroundImageConfig(n){try{this._background=JSON.parse(n);if(this._background.contentKey){this.url=v(this._background.contentKey)}}catch{this._background={}}}renderedCallback(){if(this.backgroundImageConfig){const n=this.querySelector(".background-image");const t=this.querySelector(".background-image-overlay");n.style.background=this.getBackgroundValue(this.backgroundImageConfig);if(this.backgroundImageConfig.url){t.style.backgroundColor=this.backgroundImageOverlay}}}connectedCallback(){this.classList.add("comm-section-container")}getBackgroundValue(n){const{bgPosition:t,bgSizeOrRepeat:e}=n;let o="";if(this.url){o+=" url("+this.url+") "+t+" "+e}return o}}h.renderMode="light";t.registerDecorators(h,{publicProps:{sectionConfig:{config:0},backgroundImageOverlay:{config:0},backgroundImageConfig:{config:3}},fields:["url","_background"]});var x=t.registerComponent(h,{tmpl:m,sel:"community_layout-section"});n.default=x;Object.defineProperty(n,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/column",["exports","lwc"],function(o,e){function n(o,e,n){var t=o?"."+o:"";var l=o?"."+o+"-host":"";return(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start-mobile)\n var(--dxp-c-column-container-spacing-inline-end-mobile)\n var(--dxp-c-column-container-spacing-block-end-mobile)\n var(--dxp-c-column-container-spacing-inline-start-mobile);display: flex;}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start-mobile)\n var(--dxp-c-column-content-spacing-inline-end-mobile)\n var(--dxp-c-column-content-spacing-block-end-mobile)\n var(--dxp-c-column-content-spacing-inline-start-mobile);display: flex;flex-direction: column;flex: 1;}@media (min-width: 64em) {"+(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start)\n var(--dxp-c-column-container-spacing-inline-end)\n var(--dxp-c-column-container-spacing-block-end)\n var(--dxp-c-column-container-spacing-inline-start);}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start)\n var(--dxp-c-column-content-spacing-inline-end)\n var(--dxp-c-column-content-spacing-block-end)\n var(--dxp-c-column-content-spacing-inline-start);}"+(e?":host.col-large-size_1-of-12 {":l+".col-large-size_1-of-12 {")+"width: 8.3333333333%;}"+(e?":host.col-large-size_2-of-12 {":l+".col-large-size_2-of-12 {")+"width: 16.6666666667%;}"+(e?":host.col-large-size_3-of-12 {":l+".col-large-size_3-of-12 {")+"width: 25%;}"+(e?":host.col-large-size_4-of-12 {":l+".col-large-size_4-of-12 {")+"width: 33.3333333333%;}"+(e?":host.col-large-size_5-of-12 {":l+".col-large-size_5-of-12 {")+"width: 41.6666666667%;}"+(e?":host.col-large-size_6-of-12 {":l+".col-large-size_6-of-12 {")+"width: 50%;}"+(e?":host.col-large-size_7-of-12 {":l+".col-large-size_7-of-12 {")+"width: 58.3333333333%;}"+(e?":host.col-large-size_8-of-12 {":l+".col-large-size_8-of-12 {")+"width: 66.6666666667%;}"+(e?":host.col-large-size_9-of-12 {":l+".col-large-size_9-of-12 {")+"width: 75%;}"+(e?":host.col-large-size_10-of-12 {":l+".col-large-size_10-of-12 {")+"width: 83.3333333333%;}"+(e?":host.col-large-size_11-of-12 {":l+".col-large-size_11-of-12 {")+"width: 91.6666666667%;}"+(e?":host.col-large-size_12-of-12 {":l+".col-large-size_12-of-12 {")+"width: 100%;}}"}n.$scoped$=true;var t=[n];const l={classMap:{"column-content":true},key:0};const c={attrs:{name:"column"},key:1};const s=[];function i(o,e,n,t){const{s:i,h:a}=o;return[a("div",l,i("column",c,s,n))]}var a=e.registerTemplate(i);i.slots=["column"];i.stylesheets=[];i.renderMode="light";if(t){i.stylesheets.push.apply(i.stylesheets,t)}i.stylesheetToken="community_layout-column_column";e.freezeTemplate(i);const r=12;const d="col-size_12-of-12";class h extends e.LightningElement{constructor(...o){super(...o);this._columnWidth=r}get columnWidth(){return this._columnWidth}set columnWidth(o){this._columnWidth=o;this.updateHostCssClasses()}connectedCallback(){this.updateHostCssClasses()}updateHostCssClasses(){const o=[d,this.colWidthClass];let e,n;for(e=0;e<this.classList.length;e++){n=this.classList[e];this.classList.remove(n)}for(e=0;e<o.length;e++){n=o[e];this.classList.add(n)}}get colWidthClass(){return this.columnWidth?`col-large-size_${this.columnWidth}-of-12`:"col"}}h.renderMode="light";e.registerDecorators(h,{publicProps:{columnWidth:{config:3}},fields:["_columnWidth"]});var u=e.registerComponent(h,{tmpl:a,sel:"community_layout-column"});o.default=u;Object.defineProperty(o,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("@view/service_Not_Available",["exports","lwc","community_builder/htmlEditor","community_layout/column","community_layout/section","community_layout/sldsFlexibleLayout"],function(t,e,i,o,l,n){function u(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var s=u(i);var a=u(o);var c=u(l);var r=u(n);var m=void 0;const y={key:0};const d={slot:"content"};const _={slot:"columns"};const f={slot:"column"};function p(t,e,i,o){const{c:l}=t;return[l("community_layout-slds-flexible-layout",r.default,y,[l("community_layout-section",c.default,{attrs:d,props:{sectionConfig:e.attributes.community_layoutsection_0_2.sectionConfig},key:1},[l("community_layout-column",a.default,{attrs:_,props:{columnWidth:e.attributes.community_layoutcolumn_0_0.columnWidth},key:2},[l("community_builder-html-editor",s.default,{attrs:f,props:{richTextValue:e.attributes.community_builderhtmleditor_0_1.richTextValue},key:3})])])])]}var v=e.registerTemplate(p);p.stylesheets=[];p.renderMode="light";p.stylesheetToken="___at___view-736572766963655f4e6f745f417661696c61626c65_service_Not_Available";e.freezeTemplate(p);class b{static get html(){return v}static get attributes(){return function t(e){return{community_builderhtmleditor_0_1:{richTextValue:'<div style="display: flex; align-items: center; flex-direction: column; margin: 60px 25px 40px 25px;"><div style="background: url(assets/Images/serviceNotAvailable/serviceNotAvailable.svg) center no-repeat; background-size: contain; height: 331px; width: 100%; max-width: 538px;"></div></div><div style="margin: 0 25px; text-align: center;"><h1><b style="font-size: 2em">Looks like the site is temporarily unavailable</b></h1><br><p><span style="font-size: 1.5em;">Please try again in a bit.</span></p></div>'},community_layoutsection_0_2:{sectionConfig:'{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}'},community_layoutcolumn_0_0:{columnWidth:"12"}}}}}var h=e.registerComponent(b,{tmpl:m,sel:"@view-736572766963655f4e6f745f417661696c61626c65"});t.default=h;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })(); |
| New file |
| | |
| | | (function() { LWR.define("community_layout/simpleThemeLayout",["exports","lwc"],function(e,t){function o(e,t,o){var n=e?"["+e+"]":"";var a=e?"["+e+"-host]":"";return(t?":host {":a+" {")+"display: flex;flex-flow: column;height: 100%;}header"+n+" {display: flex;justify-content: center;padding: var(--dxp-c-header-container-spacing-block-start)\n var(--dxp-c-header-container-spacing-inline-end)\n var(--dxp-c-header-container-spacing-block-end)\n var(--dxp-c-header-container-spacing-inline-start);}.header-content"+n+" {max-width: var(--dxp-c-header-content-max-width, var(--dxp-s-header-content-max-width));flex: 1 1 auto;}main"+n+" {flex: 1 0 auto;}footer"+n+" {display: flex;justify-content: center;padding: var(--dxp-c-footer-container-spacing-block-start)\n var(--dxp-c-footer-container-spacing-inline-end)\n var(--dxp-c-footer-container-spacing-block-end)\n var(--dxp-c-footer-container-spacing-inline-start);}.footer-content"+n+" {max-width: var(--dxp-c-footer-content-max-width, var(--dxp-s-footer-content-max-width));flex: 1 1 auto;}@media (max-width: 48em) {header"+n+" {padding: var(--dxp-c-header-container-spacing-block-start-mobile)\n var(--dxp-c-header-container-spacing-inline-end-mobile)\n var(--dxp-c-header-container-spacing-block-end-mobile)\n var(--dxp-c-header-container-spacing-inline-start-mobile);}.header-content"+n+" {max-width: var(\n --dxp-c-header-content-max-width-mobile,\n var(--dxp-s-header-content-max-width-mobile)\n );}footer"+n+" {padding: var(--dxp-c-footer-container-spacing-block-start-mobile)\n var(--dxp-c-footer-container-spacing-inline-end-mobile)\n var(--dxp-c-footer-container-spacing-block-end-mobile)\n var(--dxp-c-footer-container-spacing-inline-start-mobile);}.footer-content"+n+" {max-width: var(\n --dxp-c-footer-content-max-width-mobile,\n var(--dxp-s-footer-content-max-width-mobile)\n );}}"}var n=[o];const a={"data-f6-region":""};const r={classMap:{"header-content":true},key:1};const i={attrs:{name:"header"},key:2};const c=[];const d={"data-f6-region":"",role:"main"};const s={key:4};const l={classMap:{"footer-content":true},key:6};const p={attrs:{name:"footer"},key:7};function h(e,t,o,n){const{s:h,h:m}=e;return[m("header",{style:t.headerStyle,attrs:a,key:0},[m("div",r,[h("header",i,c,o)])]),m("main",{style:t.mainStyle,attrs:d,key:3},[h("",s,c,o)]),m("footer",{style:t.footerStyle,attrs:a,key:5},[m("div",l,[h("footer",p,c,o)])])]}var m=t.registerTemplate(h);h.slots=["","footer","header"];h.stylesheets=[];if(n){h.stylesheets.push.apply(h.stylesheets,n)}h.stylesheetToken="community_layout-simpleThemeLayout_simpleThemeLayout";t.freezeTemplate(h);class f extends t.LightningElement{constructor(...e){super(...e);this.headerBackgroundColor=void 0;this.mainBackgroundColor=void 0;this.footerBackgroundColor=void 0}get headerStyle(){return`background-color: ${this.headerBackgroundColor}`}get footerStyle(){return`background-color: ${this.footerBackgroundColor}`}get mainStyle(){return`background-color: ${this.mainBackgroundColor}`}}t.registerDecorators(f,{publicProps:{headerBackgroundColor:{config:0},mainBackgroundColor:{config:0},footerBackgroundColor:{config:0}}});var g=t.registerComponent(f,{tmpl:m,sel:"community_layout-simpleThemeLayout"});e.default=g;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("@view/serviceNotAvailable",["exports","lwc","webruntime/routerContainer","community_layout/simpleThemeLayout"],function(e,t,r,n){function o(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var u=o(r);var i=o(n);var a=void 0;const c={key:0};const l={key:1};function s(e,t,r,n){const{c:o}=e;return[o("community_layout-simple-theme-layout",i.default,c,[o("webruntime-router-container",u.default,l)])]}var f=t.registerTemplate(s);s.stylesheets=[];s.renderMode="light";s.stylesheetToken="___at___view-736572766963654e6f74417661696c61626c65_serviceNotAvailable";t.freezeTemplate(s);class m{static get html(){return f}static get attributes(){return function e(t){return{}}}}var v=t.registerComponent(m,{tmpl:a,sel:"@view-736572766963654e6f74417661696c61626c65"});e.default=v;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })(); |
| New file |
| | |
| | | (function() { LWR.define("community_builder/richTextUtil",["exports","@salesforce/community/basePath"],function(e,t){function n(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var c=n(t);const r="/sfsites/c";const s=/\{!contentAsset\.(.+?)\.(.+?)\}/g;const o=/\{!cmsMedia\.(.+?)\}/g;function l(e){let t=e;let n;while((n=o.exec(e))!==null){const[e,c]=n;let r=f(c);t=t.replace(e,r)}return u(t)}function u(e){let t=e;let n;while((n=s.exec(e))!==null){const[e,c,r]=n;let s=a(c,r);t=t.replace(e,s)}return t}function i(){return c.default+r}function f(e){return`${i()}/cms/delivery/media/${e}`}function a(e,t){return`${i()}/file-asset/${e}?v=${t}`}e.getCMSContentUrl=f;e.getPathPrefix=i;e.processContentAssets=u;e.processContents=l;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();LWR.define('@salesforce/community/Id', [], function() { return "0DB0l0000001Z3MGAU"; });(function() { LWR.define("dxp_util/common",["exports"],function(e){function t(e,t,r){const n=r||{};let i=n.leading;let c;return function r(){const u=Array.prototype.slice.apply(arguments);if(i){e.apply(this,u);i=false}clearTimeout(c);c=setTimeout(function(){e.apply(this,u);i=n.leading},t)}}const r={tab:9,backspace:8,enter:13,escape:27,space:32,pageup:33,pagedown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46,shift:16};function n(e,t){return function r(){try{return e.apply(this,arguments)}catch(e){return t?.apply(this,[e].concat(arguments))}}}function i(e,t){if(typeof e!=="string"){return e??{}}return n(JSON.parse,t)(e)??{}}function c(e){return JSON.stringify(e,(e,t)=>t?t:undefined)}function u(e){if(Object(e)!==e){return e}if(e instanceof Set){return new Set(e)}if(e instanceof Date){return new Date(e)}if(typeof e==="function"){return e.bind({})}if(Array.isArray(e)){const t=[];const r=e.length;for(let n=0;n<r;n++){t.push(u(e[n]))}return t}const t=Object.create({});let r=Object.keys(e);if(e instanceof Error){r=Object.getOwnPropertyNames(e)}const n=r.length;for(let i=0;i<n;i++){const n=r[i];t[n]=u(e[n])}return t}function o(e,...t){if(!t.length)return e;const r=t.shift();if(s(e)&&s(r)){for(const t in r){if(s(r[t])){if(!e[t])Object.assign(e,{[t]:{}});o(e[t],r[t])}else if(Array.isArray(r[t])&&Array.isArray(e[t])){e[t]=[...e[t],...r[t]]}else{Object.assign(e,{[t]:r[t]})}}}return o(e,...t)}function s(e){return e&&typeof e==="object"&&!Array.isArray(e)}const a=(...e)=>t=>e.filter(e=>typeof e==="function").reduce((e,t)=>t(e),t);const y=(...e)=>t=>e.filter(e=>typeof e==="function").reduceRight((e,t)=>t(e),t);const g=e=>t=>t.forEach(e);const f=e=>t=>t.find(e);const M=e=>t=>t.filter(e);const j=e=>t=>t.map(e);const l=e=>t=>t.every(e);const I=e=>t=>Object.keys(t).forEach(e);const N=e=>t=>y(l(e),Object.keys)(t);function p(e,t,r){const n=Array.isArray(e)?e:[];const i=Array.isArray(t)?t:[];const c=i.filter(e=>{const t=n.findIndex(t=>t[r]===e[r]);if(t>=0){n[t]=e}return t<0});return n.concat(c)}const D=e=>function t(...r){if(r.length>=e.length){return e.apply(this,r)}return(...e)=>t.apply(this,r.concat(e))};function A(e){return typeof e==="function"}const O=e=>A(e)?e():e;const b=D((e,t,r)=>O(e)?O(t):O(r));const z=D((e,t)=>b(e,t,null));const m=e=>t=>t(e);const h=(...e)=>t=>e?.filter(A).some(m(t));const d=(...e)=>t=>e?.filter(A).every(m(t));function T(e){return e!==Object(e)}function C(e){return Array.isArray(e)?"array":typeof e}function E(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function w(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?E(Object(r),!0).forEach(function(t){L(e,t,r[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):E(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}function L(e,t,r){t=Y(t);if(t in e){Object.defineProperty(e,t,{value:r,enumerable:true,configurable:true,writable:true})}else{e[t]=r}return e}function Y(e){var t=Q(e,"string");return typeof t==="symbol"?t:String(t)}function Q(e,t){if(typeof e!=="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==undefined){var n=r.call(e,t||"default");if(typeof n!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}const S=D((e,t)=>{if(R(t)){return e}const r=t.split(".");let n=e??{};let i=0;for(i=0;i<r.length-1;i++){if(R(n[r[i]])){return null}n=n[r[i]]}return n[r[i]]});const x=D((e,t,r)=>{if(R(t)){return}const n=t.split(".");let i=e;let c=0;for(c=0;c<n.length-1;c++){i[n[c]]=i[n[c]]||{};i=i[n[c]]}i[n[c]]=r});const v=D((e,t,r,n)=>{const i=S(e,r);x(t,n,i)});function k(e,t,r,n){I(i=>{if(n){v(e,t,r[i],i)}else{v(e,t,i,r[i])}})(r??{});return t}function P(...e){const[t,r,...n]=e;return t?.[r]?.apply(t,n)}const U=e=>[...Array(e).keys()];const Z=e=>!R(e);function R(e){if(Array.isArray(e)){return e.length===0}const t=typeof e;switch(t){case"string":return e==="";case"boolean":case"number":case"function":return false;case"object":return Object.keys(e??{}).length===0;default:return e==null}}function _(e,t=""){return Object.prototype.hasOwnProperty.call(e??{},t)}const F="__sfdc_default__";function V(e){return w({patchRecord:true,getter:(e,t)=>()=>S(e,t)},e)}function $(e){return Z(e?.value?.fields)}function H(e){return e?.displayValue||e?.value||e}function G(e,t){if(J(e)){return t??""}return t}function J(e){return typeof e==="object"&&!Array.isArray(e)&&_(e,"value")&&_(e,"displayValue")}function B(e,t,r={}){if(R(e)||T(e)||A(e)){return e}t=V(t);if(Array.isArray(e)){return e.map(e=>B(e,t))}return Object.entries(e).reduce((r,n)=>{const[i,c]=n;const u=typeof c;if(T(c)){Object.defineProperty(r,i,{get(){return t.getter(e,i)()},enumerable:true})}else if(Array.isArray(c)){r[i]=c.map(e=>B(e,t))}else if(A(c)){r[i]=c}else if(u==="object"){const n={};if(t.patchRecord){Object.defineProperties(n,{[F]:{get(){return G(c,t.getter(e,i)())},enumerable:true},_rawValue:{get(){return t.getter(n,"value")()},enumerable:true},_displayValue:{get(){return t.getter(n,"displayValue")()},enumerable:true}})}B(c,t,n);if($(n)){const e=n.value.fields;Object.entries(e).forEach(e=>{const[t,r]=e;if(!_(n,t)){Object.defineProperty(n,t,{get(){if($(r)){return r}return H(r)},enumerable:true})}})}r[i]=n}return r},r)}function W(e,t,r){const n=Number.parseInt(e,10);if(n<t)return t;if(n>r)return r;return n}function K(e){return e!==""&&!isNaN(Number(e))&&/^-?[0-9a-fA-Fx.]*$/.exec(e)}const q=["%","cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh"];function X(e,t=q){const r=/^([^a-z%]*)(.*)/.exec(e);let n=r[1];let i=r[2];if(!K(n)||!t.includes(i)){n="";i=""}return{value:n,unit:i}}const ee=e=>typeof e==="object"?e:{};const te={toString(){return Object.keys(this).map(e=>{const[t,r]=e.split(":");const n=X(this[e]);let i;if(Z(n.unit)){i=this[e]}else{i=Z(this[e])?`${this[e]}${r??""}`:"initial"}return`${t}: ${i};`}).join(" ")}};function re(e){return Object.assign(Object.create(te),ee(e))}const ne="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDEiIHZpZXdCb3g9IjAgMCAxNDA2IDQ0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHk9IjAuMzMwMDc4IiB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDAiIGZpbGw9IiNGM0YzRjMiLz4KPHBhdGggZD0iTTY3OCAyNTJDNjcxLjkyIDI1MiA2NjcgMjQ3LjA4IDY2NyAyNDFWMTk5QzY2NyAxOTIuOTIgNjcxLjkyIDE4OCA2NzggMTg4SDcyOEM3MzQuMDggMTg4IDczOSAxOTIuOTIgNzM5IDE5OVYyNDFDNzM5IDI0Ny4wOCA3MzQuMDggMjUyIDcyOCAyNTJINjc4VjI1MlpNNjczIDIzMS43Nkw2ODEuODggMjI0LjhDNjgyLjU2IDIyNC4yOCA2ODMuMjggMjI0IDY4NC4wNCAyMjRDNjg0LjggMjI0IDY4NS41NiAyMjQuMjggNjg2LjIgMjI0LjhMNjk2LjY0IDIzMy4yNEw3MTQuMDggMjE4LjhDNzE0Ljc2IDIxOC4yNCA3MTUuNDggMjE4IDcxNi4yNCAyMThDNzE3IDIxOCA3MTcuNzYgMjE4LjI4IDcxOC40IDIxOC44TDczMyAyMzAuNDhWMTk5QzczMyAxOTYuMjQgNzMwLjc2IDE5NCA3MjggMTk0SDY3OEM2NzUuMjQgMTk0IDY3MyAxOTYuMjQgNjczIDE5OVYyMzEuNzZWMjMxLjc2Wk02OTUgMjIwQzY4OS40OCAyMjAgNjg1IDIxNS41MiA2ODUgMjEwQzY4NSAyMDQuNDggNjg5LjQ4IDIwMCA2OTUgMjAwQzcwMC41MiAyMDAgNzA1IDIwNC40OCA3MDUgMjEwQzcwNSAyMTUuNTIgNzAwLjUyIDIyMCA2OTUgMjIwWk02OTUgMjE0QzY5Ny4yIDIxNCA2OTkgMjEyLjIgNjk5IDIxMEM2OTkgMjA3LjggNjk3LjIgMjA2IDY5NSAyMDZDNjkyLjggMjA2IDY5MSAyMDcuOCA2OTEgMjEwQzY5MSAyMTIuMiA2OTIuOCAyMTQgNjk1IDIxNFpNNjc4IDI0Nkg3MjhDNzMwLjc2IDI0NiA3MzMgMjQzLjc2IDczMyAyNDFWMjM5LjY0QzczMyAyMzguNjggNzMyLjYgMjM3Ljg0IDczMS44NCAyMzcuMjRMNzE2LjI0IDIyNC43Nkw2OTguOCAyMzkuMjRDNjk4LjE2IDIzOS43NiA2OTcuNCAyNDAgNjk2LjY0IDI0MEM2OTUuODggMjQwIDY5NS4xNiAyMzkuOCA2OTQuNDggMjM5LjI0TDY4NC4wNCAyMzAuNzZMNjc0LjE2IDIzOC41MkM2NzMuNCAyMzkuMTIgNjczIDIzOS45NiA2NzMgMjQwLjkyVjI0MUM2NzMgMjQzLjc2IDY3NS4yNCAyNDYgNjc4IDI0NlYyNDZaIiBmaWxsPSIjQUJBQ0FEIi8+Cjwvc3ZnPg==";const ie="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMxMiIgaGVpZ2h0PSI0NDAiIHZpZXdCb3g9IjAgMCAxMzEyIDQ0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHdpZHRoPSIxMzEyIiBoZWlnaHQ9IjQ0MCIgZmlsbD0iI0YzRjNGMyIvPgo8cGF0aCBkPSJNNjM5LjA4IDE5MkM2NDAuNzYgMTkyIDY0Mi42OCAxOTIuNTYgNjQ0LjY4IDE5My42OEw2NzguNzYgMjEyLjg0QzY4Mi4yOCAyMTQuOCA2ODQgMjE3LjQgNjg0IDIyMEM2ODQgMjIyLjYgNjgyLjMyIDIyNS4xNiA2NzguNzYgMjI3LjE2TDY0NC42OCAyNDYuMzJDNjQyLjY4IDI0Ny40NCA2NDAuNzYgMjQ4IDYzOS4wOCAyNDhDNjM0Ljg4IDI0OCA2MzIgMjQ0LjY0IDYzMiAyMzguOTJWMjAxLjA4QzYzMiAxOTUuMzYgNjM0Ljg4IDE5MiA2MzkuMDggMTkyVjE5MloiIGZpbGw9IiNBQkFDQUQiLz4KPC9zdmc+";function ce(e){return e&&e!==""}function ue(e){return ce(e)?`url("${e}")`:""}function oe(e){return a(se,ue)(e)}function se(e){return ce(e)?e:ne}const ae=e=>t=>Array.from(t?.querySelectorAll(e));const ye=D((e,t)=>t?.toString().split(e)??[]);function ge(e=""){e=e?.toString();return!e||e.length===0?"":`${e.charAt(0).toUpperCase()}${e.slice(1)}`}function fe(e){return y(M(e=>e?.length>0),ye("/"))(e)}function Me(e=0){return new Promise(t=>{setTimeout(t,e)})}function je(){return new Promise(e=>{requestAnimationFrame(e)})}const le="l";const Ie="m";const Ne="s";const pe=[le,Ie,Ne];const De={top:"flex-start",left:"flex-start",bottom:"flex-end",right:"flex-end",center:"center"};function Ae(e,t,r){const n={};pe.forEach(i=>{e.forEach(e=>{const c=`${t}-${i}-${e.customTitle||e.name}`;const u=`${t}-${i}-${e.name}`;n[`${c}:${e.unit}`]=e.name.match(/alignment/gi)&&Object.keys(r).includes(u)?De[r[u]]:r[u]})});return n}function Oe(e,t,r){const n={};if(!r||!e||!t){return{}}const i=r.split(e);i.filter(e=>{const r=e.match(new RegExp(t,"g"))||[];return e&&r.length===1&&r[0]===t}).forEach(e=>{const[r,i]=e.split(t);n[r.trim()]=i.trim()});return n}const be=150;const ze={top:0,right:0,bottom:0,left:0};function me(e,...t){return t.reduce((e,t,r)=>e?.replaceAll(`{${r}}`,t),e)}e.DEBOUNCE_TIMEOUT=be;e.EMPTY_RECT=ze;e.KeyCodes=r;e.PLACEHOLDER_DATA_URI=ne;e.SFDC_DEFAULT=F;e.VIDEO_PLACEHOLDER_DATA_URI=ie;e.and=d;e.apply=P;e.compose=y;e.curry=D;e.debounce=t;e.deepCopy=u;e.deepMerge=o;e.empty=R;e.every=l;e.everyKey=N;e.fieldToValue=H;e.filter=M;e.find=f;e.forEach=g;e.forEachKey=I;e.formatString=me;e.get=S;e.getify=B;e.hasOwnProperty=_;e.hasUri=ce;e.ifElse=b;e.ifVal=z;e.isField=J;e.isFunction=A;e.isNumber=K;e.isPrimitive=T;e.map=j;e.mapObject=k;e.mapping=v;e.mergeUniqueRecords=p;e.nextFrame=je;e.notEmpty=Z;e.or=h;e.parseUnit=X;e.pipe=a;e.prependFormFactor=Ae;e.propertySet=re;e.querySelectorAll=ae;e.range=W;e.safeCssUrl=oe;e.safeFieldValue=G;e.safeImageSrc=se;e.safeParseJson=i;e.set=x;e.split=ye;e.splitStringToObj=Oe;e.splitUrl=fe;e.stringify=c;e.timeout=Me;e.toCapitalized=ge;e.toCssUrl=ue;e.toIndexes=U;e.tryCatch=n;e.typeOf=C;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/siteInfo",["exports","@salesforce/community/basePath","dxp_util/common","@salesforce/i18n/lang","@salesforce/community/Id","@salesforce/site/Id"],function(t,e,n,u,a,r){function o(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var s=o(e);var f=o(u);var i=o(a);var c=o(r);const l="/sfsites/c";const d=`${s.default}${l}`;const P=n.curry((t,e,n)=>e?n:`${s.default}${t??""}${n}`);const m=P(l);const h=P("");const I={CurrentLanguage:f.default.replace("-","_"),CommunityId:i.default,CurrentLocale:f.default,SiteId:c.default};function _(){return d}function p(t,e=false){return h(e,t)}function y(t,e=false){return m(e,t)}function S(t){return t?.startsWith(s.default)}t.CMS_PATH_PREFIX=l;t.SiteInfo=I;t.buildSiteCmsPath=y;t.buildSitePath=p;t.constructUrlPath=P;t.getPathPrefix=_;t.isSitePath=S;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/contentInfo",["exports","dxp_util/siteInfo"],function(t,e){const n=/^\/cms\//;const o=/^\/img\//;const r=/^\/assets\//;function s(t){return n.test(t)}function u(t){return o.test(t)}function c(t){return r.test(t)}function i(t){return s(t)||u(t)}function l(t){return c(t)?e.buildSitePath(t):i(t)?e.buildSiteCmsPath(t):t}function a(t){const{url:n,isExternal:o}=t;return e.buildSiteCmsPath(n,o)}function f(t){return{url:t.contentNodes?.source?.url??"",isExternal:!!t.contentNodes?.source?.isExternal,altText:t.contentNodes?.altText?.value??""}}function d(t=[]){return t.filter(t=>t.contentKey&&t.contentNodes).reduce((t,e)=>{t.set(e.contentKey,f(e));return t},new Map)}function m(t,e){const n=d(t?.items??[]);const[o]=e;const r=n.get(o);const s=r?{url:a(r),altText:r.altText}:{};return s}function x(t){const n=t?.contentBody??{};const o=n["sfdc_cms:media"]??{};const r={url:e.buildSiteCmsPath(o.url??"",o.source?.type==="url"),altText:n.altText??""};return r}t.convertItemsToContentKeyMap=d;t.extractImageInfo=m;t.extractImageInfoV2=x;t.getCMSContentUrl=a;t.isCmsAsset=c;t.isCmsResource=s;t.isResource=i;t.isStaticImageResource=u;t.resolveUrl=l;t.toUrlInfo=f;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/idGenerator",["exports","dxp_util/common"],function(e,t){const n=["","one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"];const r=["","","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"];function o(e=0){if(typeof e==="string"){e=parseInt(e,10)}if(e<0)throw new Error("Negative numbers are not supported.");if(e===0)return"zero";if(e<20){return n[e]}const t=e.toString();if(t.length===2){return`${r[t[0]]}${n[t[1]]?"-"+n[t[1]]:""}`}if(t.length===3){if(t[1]==="0"&&t[2]==="0"){return`${n[t[0]]}-hundred`}const e=o(+(t[1]+t[2]));return`${n[t[0]]}-hundred-${e}`}if(t.length===4){const e=+(t[1]+t[2]+t[3]);if(e===0){return n[t[0]]+"-thousand"}if(e<100){return`${n[t[0]]}-thousand-${o(e)}`}return`${n[t[0]]}-thousand-${o(e)}`}throw new Error(`${e} are not supported.`)}const i=e=>t=>o(t+e);const s=e=>n=>e??false?t.toCapitalized(n):n;const u=e=>t=>`${e}${t}`;function a(e,n,r,o){return t.compose(u(r),s(n),i(e))(o)}const f=t.curry(a);function d(e,n,r={baseIndex:0,capitalCase:false}){return t.compose(t.map(f(r.baseIndex,r.capitalCase,e)),t.toIndexes)(n)}function c(){return Math.floor((new Date).valueOf()*Math.random())}e.fnGenerateId=f;e.generateId=a;e.generateIds=d;e.generateUniqueNumber=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_data_provider/dataProviderUtils",["exports","dxp_util/contentInfo","@app/isDesignMode","dxp_util/idGenerator"],function(e,t,n,r){function o(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var i=o(n);function _(e){return i.default?r.generateIds("",e).map(e=>({key:e,data:{}})):[]}const d=/\{!Item\.(.+?)\}/g;const l="dxp_data_provider__getfielddata";const a="_";const u=`${a}data`;const c={RECORD:"sfdc_record__",CMS:"sfdc_cms__"};const s=e=>{const t=e.split(".");if(t.length>0&&t[t.length-1].startsWith("_")){const e=t[t.length-1];const n=t.slice(0,t.length-1);if(t.length===1){return[null,e]}return[n,e]}return[e,null]};function f(e){if(e?.includes("-")){return e.split("-").slice(-1)[0]}return e}function A(e,t){return!e?t:`${e}.${t}`}Object.defineProperty(e,"resolve",{enumerable:true,get:function(){return t.resolveUrl}});e.DATA_BIND_REGEX=d;e.DATA_PROVIDER_DATA_ACCESS=u;e.DATA_PROVIDER_FIELD_METADATA_PREFIX=a;e.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME=l;e.SFDC_TYPES=c;e.buildFieldPath=A;e.generateMockCollection=_;e.getFieldAndMetadata=s;e.normalizeContentKey=f;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("lightning/utils",["exports"],function(t){const e=t=>typeof t==="string"?t.trim().split(/\s+/).reduce((t,e)=>{t[e]=true;return t},{}):t;const n={add(t){Object.assign(this,e(t));return this},invert(){Object.keys(this).forEach(t=>{this[t]=!this[t]});return this},toString(){return Object.keys(this).filter(t=>this[t]).join(" ")}};function r(t){return Object.assign(Object.create(n),e(t))}const i=/input|select|textarea|button|object/;function s(t){const{width:e,height:n}=t.getBoundingClientRect();const r=e>0||n>0;return r&&window.getComputedStyle(t).visibility!=="hidden"}function c(t){const e=t.tagName.toLowerCase();const n=i.test(e)&&!t.disabled||e==="a"&&t.href;return n&&s(t)}function o(t){const e=t.getAttribute("data-navigation")==="enable";const n=t.tabIndex;return n>=0&&c(t)||e}function u(t){return[].slice.call(t.querySelectorAll("*"),0).filter(o)}function a(t){const e=Array.prototype.slice.call(arguments,1);let n=e;if(Array.isArray(e[0])){[n]=e}return t.replace(/{(\d+)}/g,(t,e)=>{const r=n[e];return r!==null&&r!==undefined?r:""})}t.classSet=r;t.formatLabel=a;t.queryFocusable=u;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/outputRichText",["exports","lwc","lightning/utils","community_builder/richTextUtil","dxp_data_provider/dataProviderUtils"],function(t,e,i,o,n){function l(t,e,i){var o=t?"["+t+"]":"";return[".cb-outputRichText-container.ql-editor",o," {box-sizing: border-box;line-height: 1.42;height: 100%;outline: none;overflow-y: auto;tab-size: 4;-moz-tab-size: 4;text-align: left;white-space: pre-wrap;word-wrap: break-word;}.cb-outputRichText-container.ql-editor",o," > *",o," {cursor: text;}.cb-outputRichText-container.ql-editor",o," p",o,",.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o,",.cb-outputRichText-container.ql-editor",o," pre",o,",.cb-outputRichText-container.ql-editor",o," blockquote",o,",.cb-outputRichText-container.ql-editor",o," h1",o,",.cb-outputRichText-container.ql-editor",o," h2",o,",.cb-outputRichText-container.ql-editor",o," h3",o,",.cb-outputRichText-container.ql-editor",o," h4",o,",.cb-outputRichText-container.ql-editor",o," h5",o,",.cb-outputRichText-container.ql-editor",o," h6",o," {margin: 0;padding: 0;counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," > li",o,",.cb-outputRichText-container.ql-editor",o," ul",o," > li",o," {list-style-type: none;}.cb-outputRichText-container.ql-editor",o," ul",o," > li",o,"::before {content: '\\2022';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," {pointer-events: none;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o," *",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o," *",o," {pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before,.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {color: #777;cursor: pointer;pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before {content: '\\2611';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {content: '\\2610';}.cb-outputRichText-container.ql-editor",o," li",o,"::before {display: inline-block;white-space: nowrap;width: 1.2em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o,"::before {margin-left: -1.5em;margin-right: 0.3em;text-align: right;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o,"::before {margin-left: 0.3em;margin-right: -1.5em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o," {padding-right: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o," {counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment: list-0;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o,":before {content: counter(list-0, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-increment: list-1;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o,":before {content: counter(list-1, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-increment: list-2;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o,":before {content: counter(list-2, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-increment: list-3;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o,":before {content: counter(list-3, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-increment: list-4;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o,":before {content: counter(list-4, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-reset: list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-increment: list-5;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o,":before {content: counter(list-5, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-reset: list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-increment: list-6;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o,":before {content: counter(list-6, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-reset: list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-increment: list-7;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o,":before {content: counter(list-7, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-reset: list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-increment: list-8;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o,":before {content: counter(list-8, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-reset: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o," {counter-increment: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o,":before {content: counter(list-9, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," .ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-video",o," {display: block;max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-center",o," {margin: 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-right",o," {margin: 0 0 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-bg-black",o," {background-color: #000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-red",o," {background-color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-orange",o," {background-color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-bg-yellow",o," {background-color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-bg-green",o," {background-color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-bg-blue",o," {background-color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-bg-purple",o," {background-color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-color-white",o," {color: #fff;}.cb-outputRichText-container.ql-editor",o," .ql-color-red",o," {color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-color-orange",o," {color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-color-yellow",o," {color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-color-green",o," {color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-color-blue",o," {color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-color-purple",o," {color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-direction-rtl",o," {direction: rtl;text-align: inherit;}.cb-outputRichText-container.ql-editor",o," .ql-align-center",o," {text-align: center;}.cb-outputRichText-container.ql-editor",o," .ql-align-justify",o," {text-align: justify;}.cb-outputRichText-container.ql-editor",o," .ql-align-right",o," {text-align: right;}.cb-outputRichText-container.ql-editor",o," .ql-blank",o,"::before {color: rgba(0, 0, 0, 0.6);content: attr(data-placeholder);font-style: italic;left: 15px;pointer-events: none;position: absolute;right: 15px;}.cb-outputRichText-container.ql-editor",o," blockquote",o," {border-left: 4px solid #ccc;margin-bottom: 5px;margin-top: 5px;padding-left: 16px;}.cb-outputRichText-container.ql-editor",o," code",o,",.cb-outputRichText-container.ql-editor",o," pre",o," {background-color: #f0f0f0;border-radius: 3px;}.cb-outputRichText-container.ql-editor",o," pre",o," {white-space: pre-wrap;margin-bottom: 5px;margin-top: 5px;padding: 5px 10px;}.cb-outputRichText-container.ql-editor",o," code",o," {font-size: 85%;padding: 2px 4px;}.cb-outputRichText-container.ql-editor",o," pre.ql-syntax",o," {background-color: #23241f;color: #f8f8f2;overflow: visible;}.cb-outputRichText-container.ql-editor",o," img",o," {max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," {position: relative;padding-bottom: 56.25%;overflow: hidden;max-width: 100%;height: 0;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," .ql-video",o," {position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: none;}"].join("")}var r=[l];function c(t,e,i){var o=t?"."+t+"-host":"";return(e?":host {":o+" {")+"display: block;overflow: auto;}"}c.$scoped$=true;var d=[c];function u(t,e,i,o){const{h:n}=t;return[n("div",{className:e.containerClass,key:0})]}var a=e.registerTemplate(u);u.stylesheets=[];u.renderMode="light";if(r){u.stylesheets.push.apply(u.stylesheets,r)}if(d){u.stylesheets.push.apply(u.stylesheets,d)}u.stylesheetToken="community_builder-outputRichText_outputRichText";e.freezeTemplate(u);class q extends e.LightningElement{constructor(...t){super(...t);this.processedValue="";this.isDomReady=false;this.pendingEvent=void 0;this.enableQuillCss=false}get value(){return this.processedValue}set value(t){this.processedValue=o.processContents(t);this.processDataExpressions(this.processedValue);this.renderRichText()}setDataExpressions(t){this.processedValue=this.resolveDataExpressions(this.value,t);this.renderRichText()}get containerClass(){return i.classSet({"cb-outputRichText-container":true,"ql-editor":this.enableQuillCss}).toString()}resolveDataExpressions(t,e){let i=t;let o;while((o=n.DATA_BIND_REGEX.exec(t))!==null){const[t,n]=o;i=i.replace(t,e[n])}return i}processDataExpressions(t){let e;let i=[];while((e=n.DATA_BIND_REGEX.exec(t))!==null){const[,t]=e;i.push(t)}if(i.length>0){this.pendingEvent=new CustomEvent(n.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME,{detail:i,bubbles:true,composed:true})}}renderedCallback(){this.isDomReady=true;this.renderRichText()}renderRichText(){if(this.isDomReady){const t=this.querySelector("div");t.innerHTML=this.processedValue;if(this.pendingEvent){const t=this.pendingEvent;this.pendingEvent=null;this.dispatchEvent(t)}}}}q.renderMode="light";e.registerDecorators(q,{publicProps:{enableQuillCss:{config:0},value:{config:3}},publicMethods:["setDataExpressions"],fields:["processedValue","isDomReady","pendingEvent"]});var p=e.registerComponent(q,{tmpl:a,sel:"community_builder-outputRichText"});t.default=p;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/htmlEditor",["exports","lwc","community_builder/outputRichText"],function(e,t,r){function i(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var l=i(r);function u(e,t,r){var i=e?"."+e+"-host":"";return(t?":host {":i+" {")+"display: block;}"}u.$scoped$=true;var n=[u];function o(e,t,r,i){const{c:u}=e;return[u("community_builder-output-rich-text",l.default,{props:{value:t.richTextValue},key:0})]}var s=t.registerTemplate(o);o.stylesheets=[];o.renderMode="light";if(n){o.stylesheets.push.apply(o.stylesheets,n)}o.stylesheetToken="community_builder-htmlEditor_htmlEditor";t.freezeTemplate(o);class a extends t.LightningElement{constructor(...e){super(...e);this.internalValue=""}get richTextValue(){return this.internalValue}set richTextValue(e){this.internalValue=e}}a.renderMode="light";t.registerDecorators(a,{publicProps:{richTextValue:{config:3}},fields:["internalValue"]});var c=t.registerComponent(a,{tmpl:s,sel:"community_builder-htmlEditor"});e.default=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/sldsFlexibleLayout",["exports","lwc"],function(e,t){function n(e,t,n){var s=e?"."+e:"";return".content-container"+s+" {display: flex;flex-direction: column;}"}n.$scoped$=true;var s=[n];const l={classMap:{"content-container":true},key:0};const o={attrs:{name:"content"},key:1};const r=[];function i(e,t,n,s){const{s:i,h:a}=e;return[a("div",l,i("content",o,r,n))]}var a=t.registerTemplate(i);i.slots=["content"];i.stylesheets=[];i.renderMode="light";if(s){i.stylesheets.push.apply(i.stylesheets,s)}i.stylesheetToken="community_layout-sldsFlexibleLayout_sldsFlexibleLayout";t.freezeTemplate(i);class c extends t.LightningElement{}c.renderMode="light";var u=t.registerComponent(c,{tmpl:a,sel:"community_layout-sldsFlexibleLayout"});e.default=u;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("experience_availability/autoRefresh",["exports","lwc"],function(e,t){function n(e,t,n){var r=e?"["+e+"-host]":"";return(t?":host {":r+" {")+"display: none;}"}var r=[n];const a=[];function s(e,t,n,r){return a}var l=t.registerTemplate(s);s.stylesheets=[];if(r){s.stylesheets.push.apply(s.stylesheets,r)}s.stylesheetToken="experience_availability-autoRefresh_autoRefresh";t.freezeTemplate(s);class i extends t.LightningElement{connectedCallback(){let e=document.head.querySelector("meta[http-equiv=refresh]");if(e==null){e=document.createElement("meta");e.setAttribute("http-equiv","refresh");e.setAttribute("content","30");document.head.appendChild(e)}}}var o=t.registerComponent(i,{tmpl:l,sel:"experience_availability-autoRefresh"});e.default=o;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/section",["exports","lwc","@salesforce/community/basePath"],function(n,t,e){function o(n){return n&&typeof n==="object"&&"default"in n?n:{default:n}}var i=o(e);function c(n,t,e){var o=n?"."+n:"";var i=n?"."+n+"-host":"";return(t?":host.comm-section-container {":i+".comm-section-container {")+"display: block;position: relative;padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-m,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-m,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-m,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-m,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}.columns-content"+o+" {display: flex;flex-direction: column;max-width: var(--dxp-c-section-columns-max-width, var(--dxp-s-section-columns-max-width));margin-left: auto;margin-right: auto;position: relative;}@media (min-width: 64em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start,\n var(--dxp-style-c-padding-top, var(--dxp-s-section-content-spacing-block-start))\n )\n var(\n --dxp-c-section-content-spacing-inline-end,\n var(--dxp-style-c-padding-right, var(--dxp-s-section-content-spacing-inline-end))\n )\n var(\n --dxp-c-section-content-spacing-block-end,\n var(--dxp-style-c-padding-bottom, var(--dxp-s-section-content-spacing-block-end))\n )\n var(\n --dxp-c-section-content-spacing-inline-start,\n var(--dxp-style-c-padding-left, var(--dxp-s-section-content-spacing-inline-start))\n );}.columns-content"+o+" {flex-direction: row;}}@media (max-width: 47.9375em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-s,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-s,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-s,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-s,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}}.background-image"+o+",.background-image-overlay"+o+" {position: absolute;width: 100%;height: 100%;top: 0;left: 0;right: 0;bottom: 0;z-index: 0;}"}c.$scoped$=true;var s=[c];const a=t.parseFragment`<div class="background-image${0}"${2}></div>`;const r=t.parseFragment`<div class="background-image-overlay${0}"${2}></div>`;const d={classMap:{"columns-content":true},key:4};const l={attrs:{name:"columns"},key:5};const g=[];function p(n,t,e,o){const{st:i,s:c,h:s}=n;return[i(a(),1),i(r(),3),s("div",d,c("columns",l,g,e))]}var m=t.registerTemplate(p);p.slots=["columns"];p.stylesheets=[];p.renderMode="light";if(s){p.stylesheets.push.apply(p.stylesheets,s)}p.stylesheetToken="community_layout-section_section";t.freezeTemplate(p);const u="/sfsites/c/cms/delivery/media";function b(){return i.default+u}function v(n){return n&&n!==""?b()+"/"+n:""}class h extends t.LightningElement{constructor(...n){super(...n);this.sectionConfig='{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}';this.backgroundImageOverlay=void 0;this.url="";this._background=void 0}get backgroundImageConfig(){return this._background}set backgroundImageConfig(n){try{this._background=JSON.parse(n);if(this._background.contentKey){this.url=v(this._background.contentKey)}}catch{this._background={}}}renderedCallback(){if(this.backgroundImageConfig){const n=this.querySelector(".background-image");const t=this.querySelector(".background-image-overlay");n.style.background=this.getBackgroundValue(this.backgroundImageConfig);if(this.backgroundImageConfig.url){t.style.backgroundColor=this.backgroundImageOverlay}}}connectedCallback(){this.classList.add("comm-section-container")}getBackgroundValue(n){const{bgPosition:t,bgSizeOrRepeat:e}=n;let o="";if(this.url){o+=" url("+this.url+") "+t+" "+e}return o}}h.renderMode="light";t.registerDecorators(h,{publicProps:{sectionConfig:{config:0},backgroundImageOverlay:{config:0},backgroundImageConfig:{config:3}},fields:["url","_background"]});var x=t.registerComponent(h,{tmpl:m,sel:"community_layout-section"});n.default=x;Object.defineProperty(n,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/column",["exports","lwc"],function(o,e){function n(o,e,n){var t=o?"."+o:"";var l=o?"."+o+"-host":"";return(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start-mobile)\n var(--dxp-c-column-container-spacing-inline-end-mobile)\n var(--dxp-c-column-container-spacing-block-end-mobile)\n var(--dxp-c-column-container-spacing-inline-start-mobile);display: flex;}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start-mobile)\n var(--dxp-c-column-content-spacing-inline-end-mobile)\n var(--dxp-c-column-content-spacing-block-end-mobile)\n var(--dxp-c-column-content-spacing-inline-start-mobile);display: flex;flex-direction: column;flex: 1;}@media (min-width: 64em) {"+(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start)\n var(--dxp-c-column-container-spacing-inline-end)\n var(--dxp-c-column-container-spacing-block-end)\n var(--dxp-c-column-container-spacing-inline-start);}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start)\n var(--dxp-c-column-content-spacing-inline-end)\n var(--dxp-c-column-content-spacing-block-end)\n var(--dxp-c-column-content-spacing-inline-start);}"+(e?":host.col-large-size_1-of-12 {":l+".col-large-size_1-of-12 {")+"width: 8.3333333333%;}"+(e?":host.col-large-size_2-of-12 {":l+".col-large-size_2-of-12 {")+"width: 16.6666666667%;}"+(e?":host.col-large-size_3-of-12 {":l+".col-large-size_3-of-12 {")+"width: 25%;}"+(e?":host.col-large-size_4-of-12 {":l+".col-large-size_4-of-12 {")+"width: 33.3333333333%;}"+(e?":host.col-large-size_5-of-12 {":l+".col-large-size_5-of-12 {")+"width: 41.6666666667%;}"+(e?":host.col-large-size_6-of-12 {":l+".col-large-size_6-of-12 {")+"width: 50%;}"+(e?":host.col-large-size_7-of-12 {":l+".col-large-size_7-of-12 {")+"width: 58.3333333333%;}"+(e?":host.col-large-size_8-of-12 {":l+".col-large-size_8-of-12 {")+"width: 66.6666666667%;}"+(e?":host.col-large-size_9-of-12 {":l+".col-large-size_9-of-12 {")+"width: 75%;}"+(e?":host.col-large-size_10-of-12 {":l+".col-large-size_10-of-12 {")+"width: 83.3333333333%;}"+(e?":host.col-large-size_11-of-12 {":l+".col-large-size_11-of-12 {")+"width: 91.6666666667%;}"+(e?":host.col-large-size_12-of-12 {":l+".col-large-size_12-of-12 {")+"width: 100%;}}"}n.$scoped$=true;var t=[n];const l={classMap:{"column-content":true},key:0};const c={attrs:{name:"column"},key:1};const s=[];function i(o,e,n,t){const{s:i,h:a}=o;return[a("div",l,i("column",c,s,n))]}var a=e.registerTemplate(i);i.slots=["column"];i.stylesheets=[];i.renderMode="light";if(t){i.stylesheets.push.apply(i.stylesheets,t)}i.stylesheetToken="community_layout-column_column";e.freezeTemplate(i);const r=12;const d="col-size_12-of-12";class h extends e.LightningElement{constructor(...o){super(...o);this._columnWidth=r}get columnWidth(){return this._columnWidth}set columnWidth(o){this._columnWidth=o;this.updateHostCssClasses()}connectedCallback(){this.updateHostCssClasses()}updateHostCssClasses(){const o=[d,this.colWidthClass];let e,n;for(e=0;e<this.classList.length;e++){n=this.classList[e];this.classList.remove(n)}for(e=0;e<o.length;e++){n=o[e];this.classList.add(n)}}get colWidthClass(){return this.columnWidth?`col-large-size_${this.columnWidth}-of-12`:"col"}}h.renderMode="light";e.registerDecorators(h,{publicProps:{columnWidth:{config:3}},fields:["_columnWidth"]});var u=e.registerComponent(h,{tmpl:a,sel:"community_layout-column"});o.default=u;Object.defineProperty(o,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("@view/too_Many_Requests",["exports","lwc","community_builder/htmlEditor","experience_availability/autoRefresh","community_layout/column","community_layout/section","community_layout/sldsFlexibleLayout"],function(t,e,o,n,i,l,s){function a(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var u=a(o);var r=a(n);var c=a(i);var m=a(l);var d=a(s);var y=void 0;const _={key:0};const f={slot:"content"};const p={slot:"columns"};const h={"component-wrapper-spacer":true};const g={slot:"column"};const v={attrs:{slot:"column"},key:4};function x(t,e,o,n){const{c:i}=t;return[i("community_layout-slds-flexible-layout",d.default,_,[i("community_layout-section",m.default,{attrs:f,props:{sectionConfig:e.attributes.community_layoutsection_0_2.sectionConfig},key:1},[i("community_layout-column",c.default,{attrs:p,props:{columnWidth:e.attributes.community_layoutcolumn_0_0.columnWidth},key:2},[i("community_builder-html-editor",u.default,{classMap:h,attrs:g,props:{richTextValue:e.attributes.community_builderhtmleditor_0_1.richTextValue},key:3}),i("experience_availability-auto-refresh",r.default,v)])])])]}var b=e.registerTemplate(x);x.stylesheets=[];x.renderMode="light";x.stylesheetToken="___at___view-746f6f5f4d616e795f5265717565737473_too_Many_Requests";e.freezeTemplate(x);class k{static get html(){return b}static get attributes(){return function t(e){return{community_builderhtmleditor_0_1:{richTextValue:'<div style="display: flex; align-items: center; flex-direction: column; margin: 60px 25px 30px 25px;"><div style="background-image: url(assets/Images/tooManyRequests/tooManyRequests.svg); background-size: contain; height: 350px; width: 100%; background-repeat: no-repeat; background-position: center;"></div></div><div style="margin: 0 25px; text-align: center;"><h1 class="slds-text-heading_large">Looks like the site is experiencing higher than usual demand…</h1><p class="slds-text-heading_small">Don\'t go anywhere. We\'ll redirect you in a moment.</p></div>'},community_layoutsection_0_2:{sectionConfig:'{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}'},community_layoutcolumn_0_0:{columnWidth:"12"}}}}}var w=e.registerComponent(k,{tmpl:y,sel:"@view-746f6f5f4d616e795f5265717565737473"});t.default=w;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })(); |
| | |
| | | .forceChartButton, .forceFilterButton, .forceInlineEditButton{ |
| | | display:none |
| | | } |
| | | .slds-modal .forceModalActionContainer .forceActionButton[title="目标"] { |
| | | display:none |
| | | .salesforceIdentityLoginBody2 .cCenterPanel{ |
| | | left:200px; |
| | | top:-30px; |
| | | min-width:320px !important; |
| | | } |
| | | |
| | | div .forceListViewManagerDisplaySwitcher { |
| | | display:none |
| | | .salesforceIdentityLoginBody2 .cCenterPanel:before{ |
| | | background-color:transparent !important |
| | | } |
| | | .siteforceNapiliBody .cHeaderLine { |
| | | padding-top:1px !important |
| | | } |
| | | .siteforceSldsTwoCol66Layout .forceListViewManagerHeader .forceActionsContainer { |
| | | display:none |
| | | } |
| | | .cLightningCo .uiButton { |
| | | z-index:2 |
| | | } |
| | | .cCreateTarget .uiButton { |
| | | z-index:2 |
| | | } |
| | | div .cHeaderPanel { |
| | | height: 100px !important; |
| | | } |
| | | .siteforceNapiliBody .selfServiceSearchWrapper .no-assigned-image { |
| | | height: 10px !important; |
| | | } |
| | | |
| | | .forceVirtualActionMarker{ |
| | | display:none |
| | | } |
| | | |
| | | [data-item-id="714520cd-5132-41a5-98ae-7c26c1f7ed3c"] { |
| | | margin-top:-80px !important |
| | | } |
| | | [data-item-id="714520cd-5132-41a5-98ae-7c26c1f7ed3c"] .oneActionsRibbon{ |
| | | display:none |
| | | } |
| | | [for="012100000006KW8AAM"] { |
| | | display:none !important |
| | | } |
| | | |
| | | .siteforceNapiliBody .cNavBarCon{ |
| | | background-color: rgb(8,16,132); |
| | | height:40px |
| | | } |
| | | |
| | | .forceCommunityNavigationMenu .navigationMenu{ |
| | | background-color: rgb(8,16,132) |
| | | } |
| | | |
| | | .forceCommunityNavigationMenu .navigationMenuWrapper{ |
| | | background-color: rgb(8,16,132) |
| | | } |
| | | |
| | | .forceCommunityNavigationMenu .menuItemLink, .forceCommunityNavigationMenu .menuItemLink.triggerLink, .forceCommunityNavigationMenu .subMenuItem a[aria-disabled=false]{ |
| | | font-size:16px !important |
| | | } |
| | | div .cHeaderPanel{ |
| | | background-color:#FFFFFF !important |
| | | } |
| | | .loading #NapiliCommunityTemplateLoader .napili-stencil_headerPanel { |
| | | background-color:#FFFFFF !important |
| | | } |
| | | .loading #NapiliCommunityTemplateLoader .napili-stencil_navBar { |
| | | background-color:#FFFFFF !important |
| | | } |
| | | .forceCommunityOmniBox .no-assigned-image .default-bg-overlay{ |
| | | display:none |
| | | } |
| | | .siteforceNapiliBody .selfServiceProfileMenu .profileName, .siteforceNapiliBody .selfServiceProfileMenu .down-arrow{ |
| | | color:rgb(51,51,51) |
| | | } |
| | | |
| | | .forceCommunityOmniBox.selfServiceSearchWrapper .search-button { |
| | | background-color: rgb(8,16,132); |
| | | font-size:14px |
| | | } |
| | | |
| | | .forceCommunityOmniBox.selfServiceSearchWrapper .search-input-group, .forceCommunityOmniBox.selfServiceSearchWrapper .search-button, .forceCommunityOmniBox.selfServiceSearchWrapper .search-field{ |
| | | height:40px; |
| | | } |
| | | |
| | | .forceCommunityOmniBox.selfServiceSearchWrapper .search-button { |
| | | background-color: rgb(8,16,132); |
| | | } |
| | | :root { --dxp-c-section-columns-max-width: 1170px; } |
| | | :root { --dxp-c-section-columns-max-width: 1920px; } |
| | |
| | | function launchModal(_ref){var id=_ref.id,titleLabel=_ref.titleLabel,contentLabel=_ref.contentLabel,buttonLabel=_ref.buttonLabel,callback=_ref.callback;var modalTemplate="<div id=\"".concat(id,"\">\n <section\n role=\"alertdialog\"\n tabindex=\"-1\"\n aria-labelledby=\"prompt-heading-id\"\n aria-describedby=\"prompt-message-wrapper\"\n class=\"slds-modal slds-fade-in-open slds-modal_prompt\"\n aria-modal=\"true\"\n style=\"color: rgb(62, 62, 60)\"\n >\n <div class=\"slds-modal__container\">\n <header class=\"slds-modal__header slds-theme_info slds-theme_alert-texture\">\n <h2 class=\"slds-text-heading_medium\">").concat(titleLabel,"</h2>\n </header>\n <div class=\"slds-modal__content slds-p-around_medium\">\n <p id=\"prompt-message-id\">").concat(contentLabel,"</p>\n </div>\n <footer class=\"slds-modal__footer slds-theme_default\">\n <button class=\"slds-button slds-button_neutral js-button\">").concat(buttonLabel,"</button>\n </footer>\n </div>\n </section>\n <div class=\"slds-backdrop slds-backdrop_open\"></div>\n </div>");var div=document.createElement("div");div.innerHTML=modalTemplate;div.querySelector(".js-button").addEventListener("click",callback);if(!document.body){document.createElement("body")}document.body.appendChild(div.querySelector("#".concat(id)))}window.onload=function(){if(!window.isBrowserSupportedByWebruntime){var WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID="webruntime-browser-not-supported-message";launchModal({id:WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID,titleLabel:"Your browser isn't supported",contentLabel:"Your browser doesn\u2019t support some features on this site. For the best experience, update your browser to the latest version, or switch to another browser.",buttonLabel:"Got It",callback:function callback(){var modal=document.querySelector("#".concat(WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID));document.body.removeChild(modal)}})}};window.document.addEventListener("client-error",function(error){if(error.detail.type==="FAILED_TO_LOAD_RESOURCE"){launchModal({id:"webruntime-client-error-failed-to-load-resource",titleLabel:"Oops!",contentLabel:"Something went wrong. Please try refreshing the app",buttonLabel:"Refresh",callback:function callback(){var url=new URL(window.location);url.searchParams.set("lwr.cachebust",new Date().getTime());window.location=url.href}})}else if(error.detail.type==="TOO_MANY_REQUESTS"){window.document.cookie="TooManyRequests=true;max-age=30;";window.location.reload()}}); |
| | | </script> |
| | | |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | </script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">globalThis.LWR = globalThis.LWR || {}; |
| | | globalThis.LWR.customInit = (lwr) => { |
| | | |
| | | LWR.define('@app/apexApiBasePath', [], function() { return "webruntime/api"; }); |
| | |
| | | LWR.define('@app/guestUuidCookieName', [], function() { return null; }); |
| | | LWR.define('@app/isDesignMode', [], function() { return false; }); |
| | | LWR.define('@app/isPreviewMode', [], function() { return false; }); |
| | | LWR.define('@app/o11yApiEndpoint', [], function() { return "/services/data/v57.0/connect/proxy/ui-telemetry"; }); |
| | | LWR.define('@app/o11yFalconEnabled', [], function() { return false; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjgyMDQ1NDAzNDI0LDIwMjMtMDUtMzBUMTA6MzI6MTcuNTQwMTExWg\u003d\u003d.tWXYvWGJtwSGXPfKzNRUTh6m5sJzJiFvMexuWWQLZb5A13XTV2jwHdg-xva2yzuZctOYFaLm_3kvF11JcFwoPw|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/o11ySamplingRate', [], function() { return 1.0; }); |
| | | LWR.define('@app/publicApiBasePath', [], function() { return "webruntime/api/public"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Service Not Available","isPublic":true,"viewId":"47da938d-c71f-4e61-9eb1-0510c9a5871c","hasVanityURL":false,"patterns":["\\/service-not-available\\/?"],"id":"0b217429-dd67-450d-b2fc-a7b0880b07b4","path":"/maintenance.html","view":"service_Not_Available","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Service_Not_Available"}}}]; }); |
| | | LWR.define('@app/o11yConfiguration', [], function() { return "{\"falconSamplingRate\":1.0,\"coreSamplingRate\":1.0,\"falconAbsoluteEndpoint\":\"O11Y_ENDPOINT_NOT_CONFIGURED\",\"coreRelativeEndpoint\":\"/webruntime/log/metrics\",\"falconEnabled\":false,\"coreEnabled\":true,\"traceSamplingRate\":0.0}"; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjgyMDQ1NDAzNDI0LDIwMjMtMDYtMjJUMDY6MjM6NDQuMzQ1NDY4Wg\u003d\u003d.Z5leMreqCqZYiD4izeUNUOdUow248OHhQCA5g-QebZSTGmSkawObGamzo68l5yRw_tF3yMcDL3pODsNLenPd3g|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Service Not Available","isPublic":true,"viewId":"47da938d-c71f-4e61-9eb1-0510c9a5871c","hasVanityURL":false,"patternMap":{},"id":"0b217429-dd67-450d-b2fc-a7b0880b07b4","path":"/maintenance.html","view":"service_Not_Available","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Service_Not_Available"}}}]; }); |
| | | LWR.define('@app/uiBasePath', [], function() { return ""; }); |
| | | LWR.define('@app/versionKey', [], function() { return "0DB10000000GnHm:58"; }); |
| | | LWR.define('@app/viewToThemeLayoutMap', [], function() { return {"service_Not_Available":"serviceNotAvailable"}; }); |
| | | LWR.define('@salesforce/i18n/lang', [], function() { return "zh_CN"; }); |
| | | LWR.define('@salesforce/site/Id', [], function() { return "0DM10000000CcwdGAC"; }); |
| | | lwr.define("webruntime/dispatcher", [], function(){ return function o11yDipatcherInit(dispatcher) { typeof lwr !== 'undefined' && lwr.attachDispatcher(dispatcher); };}); |
| | | lwr.initializeApp(); |
| | | globalThis.process = { env: { NODE_ENV: "dev" } };};</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">globalThis.LWR = globalThis.LWR || {}; |
| | | Object.assign(globalThis.LWR, { |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_8_14", |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_9_0", |
| | | "autoBoot": false, |
| | | "rootComponents": [ |
| | | "webruntime/app/v/1" |
| | | ], |
| | | "requiredModules": [ |
| | | "lwc/v/2_31_2", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_8_14" |
| | | "lwc/v/2_41_4", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_9_0" |
| | | ], |
| | | "importMappings": { |
| | | "default": "webruntime/component/latest/prod/zh_CN/", |
| | | "imports": { |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/af5a5d856d/prod/lwr_lwc", |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/bca8ebb77c/prod/lwr_lwc", |
| | | "@app/csrfToken": "webruntime/module/@app/csrfToken", |
| | | "@app/user": "webruntime/module/@app/user", |
| | | "@perm/": "webruntime/perm/", |
| | |
| | | "@salesforce/user/Id": "webruntime/module/@salesforce/user/Id", |
| | | "@salesforce/user/isGuest": "webruntime/module/@salesforce/user/isGuest", |
| | | "@salesforce/userPermission/": "webruntime/perm/", |
| | | "@view/serviceNotAvailable": "webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable", |
| | | "@view/service_Not_Available": "webruntime/view/2b61a4877d/prod/zh_CN/service_Not_Available", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/ca37d29c6e/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/c0858f2bcf/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/8fc26faacf/prod/zh_CN/o11y/simple_collector" |
| | | "@udd/": "webruntime/module/@udd/", |
| | | "@view/serviceNotAvailable": "webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable", |
| | | "@view/service_Not_Available": "webruntime/view/0edfaf3c36ea54902a461f381dec0556/prod/zh_CN/service_Not_Available", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/59e2ab2c74/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/e4d4aa4dee14ef293440f4f2fc57f259/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/11cb43e9d62f62f751bc72d247bf5e1d/prod/zh_CN/o11y/simple_collector" |
| | | } |
| | | } |
| | | });</script> |
| | | <script src="webruntime/framework/eb908c3442/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/bc00fb7571/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/af5a5d856d/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/23e2eae4b4/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('lwc', ['lwc/v/2_31_2'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4"> |
| | | <script src="webruntime/framework/5b16fcfd07/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/937df7cedb/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/bca8ebb77c/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/0bb99fae78/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('lwc', ['lwc/v/2_41_4'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3"> |
| | | LWR.define('@app/authenticationCookieName', [], function() { return "__Secure-has-sid"; }); |
| | | LWR.define('@app/extraRouteParams', [], function() { return {}; }); |
| | | LWR.define('@app/isMobileAppMode', [], function() { return false; }); |
| | | LWR.define('@app/loginPath', [], function() { return null; }); |
| | | LWR.define('@app/user', [], function() { return {"isGuest":true,"id":null,"csrfToken":null}; }); |
| | | LWR.define('@salesforce/community/basePath', [], function() { return ""; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('o11y/simple_collector/v/242_8_1', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('o11y/collectors/v/242_8_1', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="f5ac3903-5ada-4fab-9c12-3edad4e761c4">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/2b61a4877d/prod/zh_CN/service_Not_Available"></script> |
| | | <script src="webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-s-body-font-family:sans-serif;--dxp-g-brand-contrast:rgb(255, 255, 255);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;}</style> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('o11y/simple_collector/v/244_9_0', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('o11y/collectors/v/244_9_0', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/isDesignMode/v/1', ['@app/isDesignMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/isMobileAppMode/v/1', ['@app/isMobileAppMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/isPreviewMode/v/1', ['@app/isPreviewMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/o11yConfiguration/v/1', ['@app/o11yConfiguration'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/uiBasePath/v/1', ['@app/uiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@app/versionKey/v/1', ['@app/versionKey'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('@salesforce/site/Id/v/1', ['@salesforce/site/Id'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="45f1d11a-c9d1-49c7-97f7-a59f00f2bab3">LWR.define('webruntime/dispatcher/v/1', ['webruntime/dispatcher'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/0edfaf3c36ea54902a461f381dec0556/prod/zh_CN/service_Not_Available"></script> |
| | | <script src="webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;--dxp-g-neutral-contrast-3:#fff;--dxp-s-body-font-family:sans-serif;--dxp-g-neutral-contrast-2:#000;--dxp-g-neutral:#ecebea;--dxp-g-neutral-contrast-1:#000;--dxp-g-root:#FFFFFF;--dxp-g-root-contrast-1:rgb(31, 31, 31);--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-g-root-contrast-2:rgb(0, 0, 0);--dxp-g-root-contrast-3:rgb(0, 0, 0);--dxp-g-neutral-contrast:#000;--dxp-g-root-1:rgb(235, 235, 235);--dxp-g-root-2:rgb(194, 194, 194);--dxp-g-root-3:rgb(133, 133, 133);--dxp-g-brand-contrast-1:rgb(255, 255, 255);--dxp-g-brand-contrast:rgb(252, 246, 246);--dxp-g-neutral-3:rgb(118, 113, 107);--dxp-g-neutral-2:rgb(178, 174, 170);--dxp-g-brand-contrast-3:rgb(255, 255, 255);--dxp-g-brand-contrast-2:rgb(255, 255, 255);--dxp-g-neutral-1:rgb(217, 215, 213);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-brand-1:rgb(30, 93, 136);--dxp-g-brand-2:rgb(15, 47, 69);--dxp-g-brand-3:rgb(0, 0, 0);}</style> |
| | | <meta charset="UTF-8" /> |
| | | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| | | <title>Service Not Available</title> |
| | | |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB10000000GnHm:58" /> |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB10000000GnHm:58" /> |
| | | |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB10000000GnHm:58" /> |
| | | </head> |
| | | <body> |
| | | <div id="webruntime-browser-not-supported-message" style="display: none;"> |
| | |
| | | function launchModal(_ref){var id=_ref.id,titleLabel=_ref.titleLabel,contentLabel=_ref.contentLabel,buttonLabel=_ref.buttonLabel,callback=_ref.callback;var modalTemplate="<div id=\"".concat(id,"\">\n <section\n role=\"alertdialog\"\n tabindex=\"-1\"\n aria-labelledby=\"prompt-heading-id\"\n aria-describedby=\"prompt-message-wrapper\"\n class=\"slds-modal slds-fade-in-open slds-modal_prompt\"\n aria-modal=\"true\"\n style=\"color: rgb(62, 62, 60)\"\n >\n <div class=\"slds-modal__container\">\n <header class=\"slds-modal__header slds-theme_info slds-theme_alert-texture\">\n <h2 class=\"slds-text-heading_medium\">").concat(titleLabel,"</h2>\n </header>\n <div class=\"slds-modal__content slds-p-around_medium\">\n <p id=\"prompt-message-id\">").concat(contentLabel,"</p>\n </div>\n <footer class=\"slds-modal__footer slds-theme_default\">\n <button class=\"slds-button slds-button_neutral js-button\">").concat(buttonLabel,"</button>\n </footer>\n </div>\n </section>\n <div class=\"slds-backdrop slds-backdrop_open\"></div>\n </div>");var div=document.createElement("div");div.innerHTML=modalTemplate;div.querySelector(".js-button").addEventListener("click",callback);if(!document.body){document.createElement("body")}document.body.appendChild(div.querySelector("#".concat(id)))}window.onload=function(){if(!window.isBrowserSupportedByWebruntime){var WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID="webruntime-browser-not-supported-message";launchModal({id:WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID,titleLabel:"Your browser isn't supported",contentLabel:"Your browser doesn\u2019t support some features on this site. For the best experience, update your browser to the latest version, or switch to another browser.",buttonLabel:"Got It",callback:function callback(){var modal=document.querySelector("#".concat(WEBRUNTIME_UNSUPPORTED_BROWSER_MODAL_ID));document.body.removeChild(modal)}})}};window.document.addEventListener("client-error",function(error){if(error.detail.type==="FAILED_TO_LOAD_RESOURCE"){launchModal({id:"webruntime-client-error-failed-to-load-resource",titleLabel:"Oops!",contentLabel:"Something went wrong. Please try refreshing the app",buttonLabel:"Refresh",callback:function callback(){var url=new URL(window.location);url.searchParams.set("lwr.cachebust",new Date().getTime());window.location=url.href}})}else if(error.detail.type==="TOO_MANY_REQUESTS"){window.document.cookie="TooManyRequests=true;max-age=30;";window.location.reload()}}); |
| | | </script> |
| | | |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">!function(){const e={documentCreateElement:Document.prototype.createElement,elementSetAttribute:Element.prototype.setAttribute,elementAttachShadow:Element.prototype.attachShadow,elementAppendChild:Element.prototype.appendChild,htmlelementAddEventListener:Element.prototype.addEventListener,iframeContentDocumentGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentDocument").get,iframeContentWindowGet:Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow").get};Object.freeze(e),Object.defineProperty(window,"originalDomApis",{writable:!1,value:e});const t=window.frames;Object.defineProperty(window,"frames",{get:function(){const e=[];for(let n=0;n<t.length;n++)try{t[n].frameElement.getRootNode().nodeType===Node.DOCUMENT_FRAGMENT_NODE||e.push(t[n])}catch(o){e.push(t[n])}return e.length===t.length?t:e}})}();</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">!function(){"use strict";window.isBrowserSupportedByWebruntime=function(){const n="performance"in window&&"mark"in window.performance,e="customElements"in window;return n&&e}()}(); |
| | | </script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">globalThis.LWR = globalThis.LWR || {}; |
| | | globalThis.LWR.customInit = (lwr) => { |
| | | |
| | | LWR.define('@app/apexApiBasePath', [], function() { return "webruntime/api"; }); |
| | |
| | | LWR.define('@app/guestUuidCookieName', [], function() { return null; }); |
| | | LWR.define('@app/isDesignMode', [], function() { return false; }); |
| | | LWR.define('@app/isPreviewMode', [], function() { return false; }); |
| | | LWR.define('@app/o11yApiEndpoint', [], function() { return "/services/data/v57.0/connect/proxy/ui-telemetry"; }); |
| | | LWR.define('@app/o11yFalconEnabled', [], function() { return false; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjgyMDQ1NDAzNDI0LDIwMjMtMDUtMzBUMTA6MzI6MTguMTUzOTI2Wg\u003d\u003d.rph5wtNEJcZFWpzFfZT4J2AuNWloPjMOXDaKVbKcLn9xO3N0EWz4EQbt6HNQ-CDELx-pAX9MzWZtwxYkT9GN1g|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/o11ySamplingRate', [], function() { return 1.0; }); |
| | | LWR.define('@app/publicApiBasePath', [], function() { return "webruntime/api/public"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Too Many Requests","isPublic":true,"viewId":"ba70dea9-1d52-42fd-aef4-1c284de23027","hasVanityURL":false,"patterns":["\\/too-many-requests\\/?"],"id":"fb1cc79d-dcf6-4cd7-9626-66e02ad9fae0","path":"/toomanyrequests.html","view":"too_Many_Requests","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Too_Many_Requests"}}}]; }); |
| | | LWR.define('@app/o11yConfiguration', [], function() { return "{\"falconSamplingRate\":1.0,\"coreSamplingRate\":1.0,\"falconAbsoluteEndpoint\":\"O11Y_ENDPOINT_NOT_CONFIGURED\",\"coreRelativeEndpoint\":\"/webruntime/log/metrics\",\"falconEnabled\":false,\"coreEnabled\":true,\"traceSamplingRate\":0.0}"; }); |
| | | LWR.define('@app/o11yGuestToken', [], function() { return "Y29yZS9wcm9kLzAwRDBsMDAwMDAwNENxQkVBVSxDT1JFLjAwRDBsMDAwMDAwNENxQi4xNjgyMDQ1NDAzNDI0LDIwMjMtMDYtMjJUMDY6MjM6NDUuMTQyODk5Wg\u003d\u003d.4vxlOEsD-YbOIg8Wc_WsyiIZ7KD2iAzmlEoLoUtSj1CbJjIdqnL51QEZBsiUze86YDG6_QVA_iXW-J1cujOCDA|{\"isGuestApiAccessEnabled\":false}"; }); |
| | | LWR.define('@app/routes', [], function() { return [{"label":"Too Many Requests","isPublic":true,"viewId":"ba70dea9-1d52-42fd-aef4-1c284de23027","hasVanityURL":false,"patternMap":{},"id":"fb1cc79d-dcf6-4cd7-9626-66e02ad9fae0","path":"/toomanyrequests.html","view":"too_Many_Requests","isRoot":true,"isDefault":true,"page":{"type":"comm__namedPage","attributes":{"name":"Too_Many_Requests"}}}]; }); |
| | | LWR.define('@app/uiBasePath', [], function() { return ""; }); |
| | | LWR.define('@app/versionKey', [], function() { return "0DB10000000GnHm:58"; }); |
| | | LWR.define('@app/viewToThemeLayoutMap', [], function() { return {"too_Many_Requests":"serviceNotAvailable"}; }); |
| | | LWR.define('@salesforce/i18n/lang', [], function() { return "zh_CN"; }); |
| | | LWR.define('@salesforce/site/Id', [], function() { return "0DM10000000CcwdGAC"; }); |
| | | lwr.define("webruntime/dispatcher", [], function(){ return function o11yDipatcherInit(dispatcher) { typeof lwr !== 'undefined' && lwr.attachDispatcher(dispatcher); };}); |
| | | lwr.initializeApp(); |
| | | globalThis.process = { env: { NODE_ENV: "dev" } };};</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">globalThis.LWR = globalThis.LWR || {}; |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">globalThis.LWR = globalThis.LWR || {}; |
| | | Object.assign(globalThis.LWR, { |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_8_14", |
| | | "bootstrapModule": "@lwrjs/app-service/communities_app/module/amd/v/0_9_0", |
| | | "autoBoot": false, |
| | | "rootComponents": [ |
| | | "webruntime/app/v/1" |
| | | ], |
| | | "requiredModules": [ |
| | | "lwc/v/2_31_2", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_8_14" |
| | | "lwc/v/2_41_4", |
| | | "@lwrjs/app-service/communities_app/module/amd/v/0_9_0" |
| | | ], |
| | | "importMappings": { |
| | | "default": "webruntime/component/latest/prod/zh_CN/", |
| | | "imports": { |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/af5a5d856d/prod/lwr_lwc", |
| | | "/webruntime/component/latest/prod/zh_CN/lwc": "webruntime/framework/bca8ebb77c/prod/lwr_lwc", |
| | | "@app/csrfToken": "webruntime/module/@app/csrfToken", |
| | | "@app/user": "webruntime/module/@app/user", |
| | | "@perm/": "webruntime/perm/", |
| | |
| | | "@salesforce/user/Id": "webruntime/module/@salesforce/user/Id", |
| | | "@salesforce/user/isGuest": "webruntime/module/@salesforce/user/isGuest", |
| | | "@salesforce/userPermission/": "webruntime/perm/", |
| | | "@view/serviceNotAvailable": "webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable", |
| | | "@view/too_Many_Requests": "webruntime/view/9a218fe602/prod/zh_CN/too_Many_Requests", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/ca37d29c6e/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/c0858f2bcf/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/8fc26faacf/prod/zh_CN/o11y/simple_collector" |
| | | "@udd/": "webruntime/module/@udd/", |
| | | "@view/serviceNotAvailable": "webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable", |
| | | "@view/too_Many_Requests": "webruntime/view/5368e679fb7b5771dce8242989544c79/prod/zh_CN/too_Many_Requests", |
| | | "mobileruntime/hybridAppManager": "webruntime/framework/59e2ab2c74/prod/lwr_mobile", |
| | | "o11y/collectors": "webruntime/component/e4d4aa4dee14ef293440f4f2fc57f259/prod/zh_CN/o11y/collectors", |
| | | "o11y/simple_collector": "webruntime/component/11cb43e9d62f62f751bc72d247bf5e1d/prod/zh_CN/o11y/simple_collector" |
| | | } |
| | | } |
| | | });</script> |
| | | <script src="webruntime/framework/eb908c3442/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/bc00fb7571/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/af5a5d856d/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/23e2eae4b4/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('lwc', ['lwc/v/2_31_2'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770"> |
| | | <script src="webruntime/framework/5b16fcfd07/prod/lwr_loader"></script> |
| | | <script src="webruntime/framework/937df7cedb/prod/lwr_bootstrap"></script> |
| | | <script src="webruntime/framework/bca8ebb77c/prod/lwr_lwc"></script> |
| | | <script src="webruntime/framework/0bb99fae78/prod/lwr_app"></script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('lwc', ['lwc/v/2_41_4'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c"> |
| | | LWR.define('@app/authenticationCookieName', [], function() { return "__Secure-has-sid"; }); |
| | | LWR.define('@app/extraRouteParams', [], function() { return {}; }); |
| | | LWR.define('@app/isMobileAppMode', [], function() { return false; }); |
| | | LWR.define('@app/loginPath', [], function() { return null; }); |
| | | LWR.define('@app/user', [], function() { return {"isGuest":true,"id":null,"csrfToken":null}; }); |
| | | LWR.define('@salesforce/community/basePath', [], function() { return ""; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('o11y/simple_collector/v/242_8_1', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('o11y/collectors/v/242_8_1', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="b53e8c8b-d12f-4824-9b0b-9f1223430770">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/9a218fe602/prod/zh_CN/too_Many_Requests"></script> |
| | | <script src="webruntime/view/1caf97ec72/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-s-body-font-family:sans-serif;--dxp-g-brand-contrast:rgb(255, 255, 255);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;}</style> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('o11y/simple_collector/v/244_9_0', ['o11y/simple_collector'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('o11y/collectors/v/244_9_0', ['o11y/collectors'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/apiBasePath/v/1', ['@app/apiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/basePath/v/1', ['@app/basePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/csrfToken/v/1', ['@app/csrfToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/isDesignMode/v/1', ['@app/isDesignMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/isMobileAppMode/v/1', ['@app/isMobileAppMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/isPreviewMode/v/1', ['@app/isPreviewMode'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/o11yApiEndpoint/v/1', ['@app/o11yApiEndpoint'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/o11yConfiguration/v/1', ['@app/o11yConfiguration'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/o11yFalconEnabled/v/1', ['@app/o11yFalconEnabled'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/o11yGuestToken/v/1', ['@app/o11yGuestToken'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/o11ySamplingRate/v/1', ['@app/o11ySamplingRate'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/uiBasePath/v/1', ['@app/uiBasePath'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/user/v/1', ['@app/user'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@app/versionKey/v/1', ['@app/versionKey'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@salesforce/i18n/lang/v/1', ['@salesforce/i18n/lang'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('@salesforce/site/Id/v/1', ['@salesforce/site/Id'], function(module) { return module; });</script> |
| | | <script type="text/javascript" nonce="bed121fc-2e54-4eaa-a1f2-7ec7e6cbad0c">LWR.define('webruntime/dispatcher/v/1', ['webruntime/dispatcher'], function(module) { return module; });</script> |
| | | <script src="webruntime/view/5368e679fb7b5771dce8242989544c79/prod/zh_CN/too_Many_Requests"></script> |
| | | <script src="webruntime/view/529d6d011d2c8e534e33933ea6dd1914/prod/zh_CN/serviceNotAvailable"></script><style type="text/css" id="webruntime-branding">:root{--dxp-g-brand:rgb(10, 129, 223);--dxp-c-link-text-color:rgb(37, 116, 169);--dxp-c-link-text-color-hover:#1e5d88;--dxp-c-link-text-color-active:#1e5d88;--dxp-g-neutral-contrast-3:#fff;--dxp-s-body-font-family:sans-serif;--dxp-g-neutral-contrast-2:#000;--dxp-g-neutral:#ecebea;--dxp-g-neutral-contrast-1:#000;--dxp-g-root:#FFFFFF;--dxp-g-root-contrast-1:rgb(31, 31, 31);--dxp-g-root-contrast:rgb(51, 51, 51);--dxp-g-root-contrast-2:rgb(0, 0, 0);--dxp-g-root-contrast-3:rgb(0, 0, 0);--dxp-g-neutral-contrast:#000;--dxp-g-root-1:rgb(235, 235, 235);--dxp-g-root-2:rgb(194, 194, 194);--dxp-g-root-3:rgb(133, 133, 133);--dxp-g-brand-contrast-1:rgb(255, 255, 255);--dxp-g-brand-contrast:rgb(252, 246, 246);--dxp-g-neutral-3:rgb(118, 113, 107);--dxp-g-neutral-2:rgb(178, 174, 170);--dxp-g-brand-contrast-3:rgb(255, 255, 255);--dxp-g-brand-contrast-2:rgb(255, 255, 255);--dxp-g-neutral-1:rgb(217, 215, 213);--dxp-g-sna-heading-font-family:sans-serif;--dxp-g-brand-1:rgb(30, 93, 136);--dxp-g-brand-2:rgb(15, 47, 69);--dxp-g-brand-3:rgb(0, 0, 0);}</style> |
| | | <meta charset="UTF-8" /> |
| | | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| | | <title>Service Not Available</title> |
| | | |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/styles.css?0DB10000000GnHm:58" /> |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/salesforce-lightning-design-system.min.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-site-spacing-styling-hooks.min.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-styling-hooks.min.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/styles/dxp-slds-extensions.min.css?0DB10000000GnHm:58" /> |
| | | |
| | | |
| | | <!-- webruntime-branding-shared stylesheets --> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB10000000GnHm:36" /> |
| | | <link rel="stylesheet" href="assets/styles/overrides.css?0DB10000000GnHm:58" /> |
| | | <link rel="stylesheet" href="assets/css/fonts-and-custom.css?0DB10000000GnHm:58" /> |
| | | </head> |
| | | <body> |
| | | <div id="webruntime-browser-not-supported-message" style="display: none;"> |
| New file |
| | |
| | | LWR.define("lwr/lockerDefine/v/0_9_0",["exports"],function(Ot){"use strict";/*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */var Ee;const{apply:c,construct:We,defineProperty:Se,deleteProperty:fe,get:Ht,getOwnPropertyDescriptor:yt,getPrototypeOf:Ct,has:oe,isExtensible:pt,ownKeys:bn,preventExtensions:un,set:Dt,setPrototypeOf:It}=Reflect,Jn=Object,{assign:Fe,freeze:Ve,defineProperties:So,getOwnPropertyDescriptors:Fn,getOwnPropertySymbols:ur,keys:vi,preventExtensions:ze,prototype:Pn}=Jn,{hasOwn:ge}=Jn,{__lookupGetter__:go,__lookupSetter__:fr,hasOwnProperty:Hl}=Pn,{toString:Me}=Pn;function fn(t){return typeof t=="object"&&t!==null}function Qn(t){return typeof t=="object"&&t!==null||typeof t=="function"}const ke=typeof ge=="function"?ge:function(e,n){return c(Hl,e,[n])};function V(t,e){return t==null||!ke(t,e)?void 0:c(go,t,[e])}function de(t,e){return t==null||!ke(t,e)?void 0:c(fr,t,[e])}function k(t,e){return t==null||!ke(t,e)?void 0:t[e]}const dr=Symbol,{asyncIterator:Ul,for:ee,iterator:On,toStringTag:pr,unscopables:ba}=dr,{toString:$a,valueOf:jl}=dr.prototype,lt=Array,{prototype:Lt}=lt,{at:hr,concat:mr,copyWithin:Gn,entries:Es,every:Ws,fill:_a,findIndex:Sr,flat:Ea,flatMap:yo,forEach:Ts,keys:Wa,lastIndexOf:vs,map:wi,pop:Et,reduce:$n,reduceRight:ws,reverse:As,some:Cs,splice:ye,toLocaleString:Te,values:gr,[On]:Bl}=Lt,Ta=Ve(Fe({__proto__:null},Lt[ba])),{includes:va,sort:wa,unshift:Ps}=Lt,{filter:Bo,find:Vo,indexOf:Lo,join:Ai,push:Os,shift:Ci,slice:tn,toString:Rs}=Lt,{isArray:bo}=lt;function yr(t,...e){const n=c(tn,t,[0]);for(let i=0,{length:s}=e;i<s;i+=1){const l=e[i];bo(l)?c(Os,n,l):n[n.length]=l}return n}function zo(t){return It(t,null),t.at=hr,t.concat=mr,t.copyWithin=Gn,t.entries=Es,t.every=Ws,t.fill=_a,t.filter=Bo,t.find=Vo,t.findIndex=Sr,t.flat=Ea,t.flatMap=yo,t.forEach=Ts,t.includes=va,t.indexOf=Lo,t.join=Ai,t.keys=Wa,t.lastIndexOf=vs,t.map=wi,t.pop=Et,t.push=Os,t.reduce=$n,t.reduceRight=ws,t.reverse=As,t.shift=Ci,t.slice=tn,t.some=Cs,t.sort=wa,t.splice=ye,t.toLocaleString=Te,t.toString=Rs,t.unshift=Ps,t.values=gr,t[On]=Bl,t[ba]=Ta,It(t,Lt),t}const Pi=ArrayBuffer,{isView:Aa}=Pi,Ns=V(Pi.prototype,"byteLength"),Ds=typeof BigInt=="function",Rn=Ds?BigInt.prototype.valueOf:void 0,{valueOf:Oi}=Boolean.prototype,Nn="$LWS",Ri=`${function t(){return t.name}()}`.includes("LOCKER_UNMINIFIED_FLAG"),Ge="LSKey",Ni="lskey",Xr='"',Is="'",Dn=`uncompiledLocation${Nn}`,Lr=`uncompiledTop${Nn}`,br="__webpack_require__",en="Illegal property access.",In="Invalid sandbox key.",$r=ee("@@lockerNearMembraneProxyMasked"),Di=ee("@@lockerNearMembraneSerializedValue"),Ms=ee("@@lockerNearMembrane"),ks=ee("@@lockerLiveValue"),xs="[object Array]",Ca="[object ArrayBuffer]",_r="[object BigInt]",$o="[object Boolean]",Fs="[object Date]",Er="[object Function]",Ii="[object Map]",Yr="[object Null]",Ko="[object Number]",Gs="[object Object]",qo="[object RegExp]",Xo="[object Set]",Mi="[object String]",ki="[object Symbol]",Jr="[object Undefined]",_o="[object WeakMap]",Yo="[object WeakSet]",Wr="$lockerEvalContext$",Qr="$lockerEvalHelpers$",xi=Date,{now:Hs}=xi,{valueOf:Us}=xi.prototype,Zn=Error,Vt=TypeError;class bt extends Error{constructor(e){super(`Lightning Web Security: ${e}`)}}const ln=Proxy,{revocable:ve}=ln;function Tr(t){const e=ve(t,{__proto__:null});return e.revoke(),e.proxy}const{bind:tr,toString:Hn}=Function.prototype;function Un(t){return typeof t=="function"&&!($r in t)&&t[$r]===!0}function Wt(){}function jn(t,e,n){let i=c,s=We,l=Se,u=Ht,p=yt,L=oe,E=Dt;n&&({apply:i=c,construct:s=We,defineProperty:l=Se,get:u=Ht,getOwnPropertyDescriptor:p=yt,has:L=oe,set:E=Dt}=n);let N=!1,O=!1,H=0;const J=new ln(e,{apply(x,Z,st){return H=1,(Z===J||Z===e)&&(Z=t),i(t,Z,st)},construct(x,Z,st){return H=2,(st===J||st===e)&&(st=t),s(t,Z,st)},defineProperty(x,Z,st){if(H=4,Z===$r)throw new Vt(en);return l(x,Z,st)},deleteProperty(x,Z){return H=32,fe(x,Z)},get(x,Z,st){N&&(N=H===128),O&&(O=N),H=16;const Pt=Z===$r;if(O&&Pt)return!0;const wt=u(x,Z,st,N);if(wt!==void 0&&Pt)throw new Vt(en);return wt},getOwnPropertyDescriptor(x,Z){H=32;const st=p(x,Z);if(st&&Z===$r)throw new Vt(en);return st},getPrototypeOf(x){return H=64,Ct(x)},has(x,Z){H=128;const st=L(x,Z),Pt=Z===$r;if(st){if(N=!1,Pt)throw new Vt(en)}else N=!0,O=Pt;return st},isExtensible(x){return H=256,pt(x)},ownKeys(x){return H=512,bn(x)},preventExtensions(x){return H=1024,un(x)},set(x,Z,st,Pt){if(H=2048,Z===$r)throw new Vt(en);return E(x,Z,st,Pt)},setPrototypeOf(x,Z){return H=4096,It(x,Z)}});return J}const dn=Map,{prototype:Bn}=dn,{clear:Fi,delete:js,forEach:Gi,get:Pa,has:Eo,keys:Jo,values:Wo,[On]:Oa,[pr]:Vl}=Bn,{entries:To,set:Qo}=Bn,vr=V(Bn,"size");function Vn(t){return It(t,null),t.clear=Fi,t.delete=js,t.entries=To,t.forEach=Gi,t.get=Pa,t.has=Eo,t.keys=Jo,t.set=Qo,Se(t,"size",{__proto__:null,configurable:!0,enumerable:!0,get:vr,set:void 0}),t.values=Wo,t[On]=Oa,t[pr]=Vl,It(t,Bn),t}const vo=Number,{isFinite:_n,isInteger:Ra}=vo,{toFixed:zl,valueOf:Na}=vo.prototype,Bs=String,{prototype:Da}=Bs,{endsWith:Ia,includes:He,indexOf:Ma,match:Zo,replace:ne,slice:zt,split:Zr,startsWith:Ue,toLowerCase:Mn,toUpperCase:wr,valueOf:Vs}=Da,zs={__proto__:null,[Xr]:/\\?"/g,[Is]:/\\?'/g},wo=typeof URL=="function"?URL:void 0,ka=wo==null||(Ee=wo.prototype)==null?void 0:Ee.toString,xa=/^[\s\S]+?\{[\t ]*(?:\r?\n)?([\s\S]*?)(?:\r?\n)?[\t ]*\}$|[\s\S]+?=>\s*([\s\S]+?)\s*$/;function Qt(t){const{length:e}=t;if(e){const n=c(wr,t[0],[]);return e===1?n:n+c(zt,t,[1])}return""}function nn(t,e=Is){return e+c(ne,t,[zs[e],`\\${e}`])+e}function Ar(t){var e,n;const i=c(Hn,t,[]),s=c(Zo,i,[xa]);return(e=(n=s==null?void 0:s[1])!=null?n:s==null?void 0:s[2])!=null?e:""}function we(t){if(typeof t!="symbol")try{return`${t}`!==void 0}catch(e){}return!1}function xt(t){return typeof t=="string"?t:`${t}`}function er(t){if(typeof t=="string")return t;try{if(typeof t=="function")return c(Hn,t,[]);if(typeof t=="object"&&t!==null){if(wo&&t instanceof wo)return c(ka,t,[]);const e=c(Me,t,[]);return e===ki?c($a,t,[]):e}return typeof t=="symbol"?c($a,t,[]):Bs(t)}catch(e){}return"[object Unknown]"}const Ae=RegExp,{prototype:nr}=Ae,{exec:pn,test:Ce}=nr,Hi=V(nr,"source"),Ks=/[\\^$.*+?()[\]{}|]/g;function Ke(t){return c(ne,t,[Ks,"\\$&"])}const rn=Set,{prototype:Cr}=rn,{clear:ti,delete:qs,entries:to,forEach:ei,has:Ui,keys:ji,[On]:Fa,[pr]:ni}=Cr,{add:Bi,values:Vi}=Cr,Xs=V(Cr,"size");function eo(t){return It(t,null),t.add=Bi,t.clear=ti,t.delete=qs,t.entries=to,t.forEach=ei,t.has=Ui,t.keys=ji,Se(t,"size",{__proto__:null,configurable:!0,enumerable:!0,get:Xs,set:void 0}),t.values=Vi,t[On]=Fa,t[pr]=ni,It(t,Cr),t}const kt=WeakMap,{prototype:zi}=kt,{has:Ao}=zi,{delete:Ki,get:Pr,set:Co,[pr]:Or}=zi;function Yt(t){return It(t,null),t.delete=Ki,t.get=Pr,t.has=Ao,t.set=Co,t[pr]=Or,It(t,zi),t}const no=WeakSet,{prototype:zn}=no,{has:Po}=zn,{add:ie,delete:Kn,[pr]:rr}=zn;function ro(t){return It(t,null),t.add=ie,t.delete=Kn,t.has=Po,t[pr]=rr,It(t,zn),t}const{toStringTag:Ga}=Symbol,Ha=/[(`.[+\-/*%<>=,?^&]/,Ua=/\r\n?|\n|\u2028|\u2029/,or=/(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g,ja=/^(?:'((?:\\.|[^'\\])*?)'|"((?:\\.|[^"\\])*?)")/;function Ba(t){try{if("byteLength"in t)return c(Ns,t,[]),Ca}catch(e){}try{if("toLocaleDateString"in t)return c(Us,t,[]),Fs}catch(e){}try{if("get"in t&&"size"in t)return c(vr,t,[]),Ii}catch(e){}try{if("add"in t&&"size"in t)return c(Xs,t,[]),Xo}catch(e){}try{if("get"in t&&!("size"in t))return c(Ao,t,[]),_o}catch(e){}try{if("add"in t&&!("size"in t))return c(Po,t,[]),Yo}catch(e){}try{if("toPrecision"in t)return c(Na,t,[]),Ko}catch(e){}try{if("description"in t)return c(jl,t,[]),ki}catch(e){}try{if(ke(t,"lastIndex"))return c(Hi,t,[]),qo}catch(e){}try{if(ke(t,"length"))return c(Vs,t,[]),Mi}catch(e){}try{return c(Oi,t,[]),$o}catch(e){}if(Ds)try{return c(Rn,t,[]),_r}catch(e){}return Gs}function _(t){if(t===null)return Yr;if(t===void 0)return Jr;switch(typeof t){case"bigint":return _r;case"boolean":return $o;case"function":return Er;case"number":return Ko;case"string":return Mi;case"symbol":return ki}return bo(t)?xs:Ga in t?Ba(t):c(Me,t,[])}typeof performance=="undefined"||c(tr,performance.now,[performance]);function o(t,e){let n=0;for(;;){or.lastIndex=n,n+=c(pn,or,[t])[0].length;const i=c(pn,ja,[c(zt,t,[n])]);if(i===null)return-1;if((i[1]||i[2])===e){or.lastIndex=n+i[0].length;const s=c(pn,or,[t]),l=s.index+s[0].length,u=t[l];if(u===";"||u==="}")return n;const p=l+1;if(c(Ce,Ua,[s[0]])&&!(u==="!"&&p<t.length&&t[p]==="="||c(Ce,Ha,[u])))return n}n+=i[0].length,or.lastIndex=n,n+=c(pn,or,[t])[0].length,t[n]===";"&&(n+=1)}}const{parse:a}=JSON;function d(t){if(typeof t=="object"&&t!==null||typeof t=="function")return Di in t?void 0:t[Di]}function m(t){return typeof t=="object"&&t!==null||typeof t=="function"?!(Ms in t)&&t[Ms]===!0:!1}const g=Vn(new dn);function T(t){return Jn(d(t))}function j(t,e){const n=new dn,i=c(To,t,[]);let{length:s}=e;for(;;){const{done:l,value:u}=i.next();if(l)break;const{0:p,1:L}=u;let E;e[s++]=[N=>{E=N},p],e[s++]=[N=>{c(Qo,n,[E,N])},L]}return n}function rt(t){const{flags:e,source:n}=a(d(t));return new Ae(n,e)}function q(t,e){const n=new rn,i=c(Vi,t,[]);let{length:s}=e;for(;;){const{done:l,value:u}=i.next();if(l)break;e[s++]=[p=>{c(Bi,n,[p])},u]}return n}function At(t,e,n){const i=vi(e);let{length:s}=t;for(let l=0,{length:u}=i;l<u;l+=1){const p=i[l],L=e[p];t[s++]=[E=>{n[p]=E},L]}}function gt(t){let e;const n=[[i=>{e=i},t]];t:for(;n.length;){const{0:i,1:s}=c(Ci,n,[]);if(s==null||typeof s=="boolean"||typeof s=="number"||typeof s=="string"||typeof s=="bigint"){i(s);continue t}if(typeof s=="symbol"){i(s);break t}let l=g.get(s);if(l){i(l);continue t}const u=_(s);switch(u){case Gs:{const p=Ct(s);(p===Pn||p===null||Ct(p)===null)&&(l={},At(n,s,l));break}case xs:l=lt(s.length),At(n,s,l);break;case Ii:l=j(s,n);break;case Xo:l=q(s,n);break}if(l===void 0){if(!m(s)){g.set(s,s),i(s);continue t}switch(u){case qo:l=rt(s);break;case $o:case Ko:case _r:case Mi:l=T(s);break}}if(l===void 0){i(s);break t}g.set(s,l),i(l)}return e}function Rt(t){let e=t;if(typeof t=="object"&&t!==null){try{e=gt(t)}catch(n){}g.clear()}return e}function Ut(t){return c(tn,t,[0])}function Pe(t){const e=bn(t),n={__proto__:null};for(let i=0,{length:s}=e;i<s;i+=1){const l=e[i];n[l]=t[l]}return n}const En=console,{warn:Rr}=En;function ri(...t){c(Rr,En,t)}const Ys=ro(new no);function Va(t,e=0){if(e&1||e&2||e&64||t===null||t===void 0||t===Pn||t===nr)return!1;if(typeof t=="function"){try{return Ys.has(t)||ke(t,ks)}catch(n){}return!1}if(typeof t=="object"){try{if(Ys.has(t)||ke(t,ks))return!0}catch(i){}let n;try{if({constructor:n}=t,n===Jn)return!0}catch(i){}try{if(Ct(t)===null&&(typeof n!="function"||n.prototype!==t))return!0}catch(i){}if(e===0){try{if(bo(t))return!0}catch(i){return!1}if(Aa(t))return!0}try{if(ke(t,"lastIndex"))return c(Hi,t,[]),!0}catch(i){}try{if("byteLength"in t)return c(Ns,t,[]),!0}catch(i){}}return!1}function ir(t){return Ys.add(t),t}const Kl=`${Ge}-`,ql="$",Xl=`${Ge}[`,Yl="]";function qi(t){return`${Kl}${t}${ql}`}function Js(t){return`${Xl}${t}${Yl}`}function sr(t,e){return`${qi(e)}${t}`}function Nr(t,e){return`${Js(e)}${t}`}function za(t,e){if(typeof t=="string"){const n=qi(e);return c(Ue,t,[n])?c(zt,t,[n.length]):t}return""}function Jl(t,e){if(typeof t=="string"){const n=Js(e);return c(Ue,t,[n])?c(zt,t,[n.length]):t}return""}function Qs(t,e){return typeof t=="string"&&c(Ue,t,[qi(e)])}function Oo(t,e){return typeof t=="string"&&c(Ue,t,[Js(e)])}const Dr=Promise,{catch:su,then:kn}=Dr.prototype,qn=Dr.resolve.bind(Dr),Ro=Dr.reject.bind(Dr);/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */var oi;const pe=AbortController,{prototype:Xn}=pe,{abort:le}=Xn,Ka=V(Xn,"signal"),{prototype:Zs}=Attr,ii=V(Zs,"name"),No=V(Zs,"namespaceURI"),Xi=V(Zs,"ownerElement"),{get:oo,set:au}=yt(Zs,"value"),Do=document,{prototype:si}=Document,{createComment:ai,createElement:li,createElementNS:ci,getElementById:Yi}=si,qa=V(si,"body"),{get:lu,set:cu}=yt(si,"cookie"),ta=V(si,"defaultView"),Xa=V(si,"documentElement"),Ql=V(si,"head"),Zl=V(si,"implementation"),{prototype:Ji}=Element,{closest:uu,getAttribute:hn,getAttributeNode:Ya,getAttributeNodeNS:Ja,hasAttribute:ui,querySelector:Qa,querySelectorAll:fu,removeAttribute:fi,removeAttributeNode:ea,removeAttributeNS:nd,setAttribute:io,setAttributeNS:tc,toggleAttribute:Qi}=Ji,{get:Zi,set:Io}=yt(Ji,"innerHTML"),du=V(Ji,"namespaceURI"),{get:Za}=yt(Ji,"outerHTML"),na=V(Ji,"tagName"),ra=V(HTMLTemplateElement.prototype,"content"),{prototype:so}=Node,{appendChild:ao,cloneNode:pu,isEqualNode:hu}=so,ec=V(so,"childNodes"),mu=V(so,"firstChild"),nc=V(so,"isConnected");V(so,"lastChild");const qt=V(so,"nodeName"),ts=V(so,"ownerDocument");yt(so,"textContent");const je=window,{location:tl,top:rd}=je,{setTimeout:rc}=je,{clearInterval:oc,decodeURIComponent:ic,encodeURIComponent:od,fetch:el,setInterval:Su,top:sc}=je,gu=(()=>{const{queueMicrotask:t}=je;return typeof t=="function"?t:function(n){let i=qn();i=c(kn,i,[n]),c(su,i,[s=>rc(()=>{throw s},0)])}})(),nl=V(je,"document"),ac=V(je,"frameElement"),es=V(je,"length"),lc=V(je,"location");function rl(t){if(typeof t=="object"&&t!==null&&ke(t,"window")&&t.window===t)try{return c(lc,t,[]),!0}catch(e){}return!1}class cc{constructor(e,{HTMLLinkElement:n,HTMLScriptElement:i}){this.isAllowedSharedElementChild=s=>s instanceof this._constructors.HTMLLinkElement||s instanceof this._constructors.HTMLScriptElement,this.isEqualDomString=(s,l)=>(c(Io,this._templates.left,[s]),c(Io,this._templates.right,[l]),uc(this._templates.left,this._templates.right)),this.isSharedElement=s=>s===c(Ql,this._document,[])||s===c(qa,this._document,[])||s===c(Xa,this._document,[]),this._constructors={HTMLLinkElement:n,HTMLScriptElement:i},this._document=e,this._templates={left:c(li,this._document,["template"]),right:c(li,this._document,["template"])}}}function uc(t,e){const n=t instanceof HTMLTemplateElement?c(ra,t,[]):t,i=e instanceof HTMLTemplateElement?c(ra,e,[]):e;if(c(hu,n,[i])){const s=c(ec,n,[]),l=s.length;if(l>0){const u=c(ec,i,[]);for(let p=0;p<l;p+=1)if(uc(s[p],u[p])===!1)return!1}return!0}return!1}const se=new cc(Do,je),fc=Yt(new kt([[Do,se]]));function yu(t,e){if(e===void 0||e===je)return se;let n=fc.get(t);return n===void 0&&(n=new cc(t,e),fc.set(t,n)),n}const dc=Blob,{prototype:ol}=dc,{slice:pc}=ol,ns=V(ol,"size"),Lu=V(ol,"type"),{navigator:hc,navigator:{userAgentData:il}}=je,di=il==null?void 0:il.brands,bu=/ (?:Headless)?Chrome\/\d+/,mc=/WebKit/i;let oa;function Sc(){return oa===void 0&&(oa=hc.userAgent),oa}const rs=Ni,al=!(bo(di)&&di.length?c(Vo,di,[t=>(t==null?void 0:t.brand)==="Chromium"])!==void 0:c(Ce,bu,[Sc()]))&&(bo(di)&&di.length?c(Vo,di,[t=>{const e=t==null?void 0:t.brand;return typeof e=="string"&&c(Ce,mc,[e])}])!==void 0:c(Ce,mc,[Sc()])),Ir=je==null||(oi=je.CustomElementRegistry)==null?void 0:oi.prototype,os=Ir==null?void 0:Ir.define,gc=Ir==null?void 0:Ir.get,ll=Ir==null?void 0:Ir.whenDefined,{getElementById:$u}=DocumentFragment.prototype;V(DOMException.prototype,"code");const{createDocument:yc}=DOMImplementation.prototype,Lc=V(DOMTokenList.prototype,"value"),Eu=Event,{prototype:bc}=Eu,{stopPropagation:$c}=bc,_c=V(bc,"currentTarget"),{addEventListener:lo,dispatchEvent:Wu,removeEventListener:pi}=EventTarget.prototype,{get:Ec,set:cl}=yt(HTMLAnchorElement.prototype,"href"),Tu=V(HTMLAnchorElement.prototype,"pathname"),Wc=V(HTMLAnchorElement.prototype,"protocol");V(HTMLElement.prototype,"style");const{prototype:Tc}=HTMLIFrameElement;V(Tc,"contentWindow");const vu=de(Tc,"src"),ul=HTMLScriptElement,{prototype:vc}=ul,{get:wc,set:wu}=yt(vc,"src"),qe="default",Ac="http://www.w3.org/2000/svg",ia="http://www.w3.org/1999/xhtml",is="http://www.w3.org/1999/xlink",Au=V(Request.prototype,"url"),f=Response.prototype,h=V(f,"ok");V(f,"status"),V(f,"statusText");const{text:S}=f,{createObjectURL:P,revokeObjectURL:Y}=URL,jt="$evaluator$",Xt=`document.currentScript.${jt}`,re=ro(new no),be=Yt(new kt),Wn=Yt(new kt);function Cu(t,e,n,i){Se(t,e,{__proto__:null,configurable:!0,enumerable:!0,get:n,set:i})}function fl(t,e){if(!Se(t,jt,{__proto__:null,configurable:!0,get:c(tr,()=>{re.add(t),Fh(t);const n=c(ts,t,[]),i=c(ta,n,[]),s={[Dn]:i.location,[Lr]:i.top};e(s,i,n)},[])}))throw new bt(`Cannot evaluate ${c(qt,t,[])}`)}function xh(t){be.delete(t)}function Fh(t){fe(t,jt)}function Gh(t){return be.get(t)}function Hh(t){return re.has(t)}function Uh(t){return Wn.has(t)}function jh(t){return be.has(t)}function Bh(t,e){return be.set(t,e)}const id="document",Pu="document\\.defaultView|frames|globalThis|self|window",sd=`${Pu}|global`,Vh=`${id}|global.document`,zh=Cc(`${id}|${Pu}`,"location"),Kh=Cc(`${Vh}|${sd}`,"location"),qh=new Ae(`(?:^|\\W)${Ke(Wr)}(?:\\W|$)`),Xh=new Ae(`\\b${Ke(br)}\\b`),Yh=Cc(Pu,"top"),Jh=Cc(sd,"top");function Cc(t,e){return new Ae(`\\b(?:${t})\\.${e}(\\s*(?:[?*/%&^|+-]|>>>?|<<)*=(?=[^=]))?`,"g")}function Qh(t){const e={location:!1,windowTop:!1};if(c(Ce,qh,[t]))return{code:t,transforms:e};let n,i;return c(Ce,Xh,[t])?(n=Kh,i=Jh):(n=zh,i=Yh),t=c(ne,t,[n,(s,l)=>(e.location=!0,l?`${Dn}.href${l}`:Dn)]),t=c(ne,t,[i,()=>(e.windowTop=!0,Lr)]),{code:t,transforms:e}}function Zh(t){return t[t.length]="location",t[t.length]="top",`const {${c(Rs,t,[])}}=${Wr}`}function tm(t){const e=zo([]);return t.location&&(e[e.length]=Dn),t.windowTop&&(e[e.length]=Lr),e}function ss(t){const{code:e,transforms:n}=Qh(t),i=tm(n);if(!i.length)return e;const s=`${Zh(i)};`,l=o(e,"use strict");if(l===-1)return s+e;let u=l+12;return u<e.length&&e[u]===";"&&(u+=1),c(zt,e,[0,u])+s+c(zt,e,[u])}const{key:em,getItem:nm,removeItem:ad,setItem:ld}=Storage.prototype;yt(SVGScriptElement.prototype,"href");const Ou=XMLHttpRequest,{prototype:Pc}=Ou,{abort:M_,open:cd,send:ud}=Pc,fd=V(Pc,"responseText"),rm=V(Pc,"status");de(Pc,"withCredentials");/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */const dd=["application/octet-stream","application/json","application/pdf","video/","audio/","image/","font/","text/plain","text/markdown","application/zip","application/x-bzip","application/x-rar-compressed","application/x-tar"],om=/^[a-z]+\/[a-z0-9.+-]+$/;function im(t){if(c(Ce,om,[t])){for(let e=0,{length:n}=dd;e<n;e+=1)if(c(Ue,t,[dd[e]]))return!0}return!1}const Ru=["/aura","/webruntime"],pd=zo(["http:","https:"]),sm=/[\u2028\u2029\n\r\t]/g,hi=c(li,Do,["a"]);function Oc(t){const e=c(Mn,t.pathname,[]);for(let n=0,{length:i}=Ru;n<i;n+=1)if(c(Ia,e,[Ru[n]])||c(He,e,[`${Ru[n]}/`]))return!1;return!0}function hd(t){return c(cl,hi,[t]),pd.includes(c(Wc,hi,[]))}function dl(t){return{normalizedURL:Nu(t),pathname:ic(c(Tu,hi,[]))}}function Rc(t){return c(cl,hi,[t]),c(Ec,hi,[])}function Nu(t){return Rc(am(t))}function am(t){return t===""?t:c(ne,t,[sm,""])}/*! version: 0.18.14 *//*! @license DOMPurify 2.4.0 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.4.0/LICENSE */function mi(t){return mi=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},mi(t)}function Du(t,e){return Du=Object.setPrototypeOf||function(i,s){return i.__proto__=s,i},Du(t,e)}function lm(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function Nc(t,e,n){return lm()?Nc=Reflect.construct:Nc=function(s,l,u){var p=[null];p.push.apply(p,l);var L=Function.bind.apply(s,p),E=new L;return u&&Du(E,u.prototype),E},Nc.apply(null,arguments)}function Mr(t){return cm(t)||um(t)||fm(t)||dm()}function cm(t){if(Array.isArray(t))return Iu(t)}function um(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function fm(t,e){if(!!t){if(typeof t=="string")return Iu(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Iu(t,e)}}function Iu(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n<e;n++)i[n]=t[n];return i}function dm(){throw new TypeError(`Invalid attempt to spread non-iterable instance. |
| | | In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var pm=Object.hasOwnProperty,md=Object.setPrototypeOf,hm=Object.isFrozen,mm=Object.getPrototypeOf,Sm=Object.getOwnPropertyDescriptor,Tn=Object.freeze,co=Object.seal,gm=Object.create,Sd=typeof Reflect!="undefined"&&Reflect,Dc=Sd.apply,Mu=Sd.construct;Dc||(Dc=function(e,n,i){return e.apply(n,i)}),Tn||(Tn=function(e){return e}),co||(co=function(e){return e}),Mu||(Mu=function(e,n){return Nc(e,Mr(n))});var ym=kr(Array.prototype.forEach),gd=kr(Array.prototype.pop),pl=kr(Array.prototype.push),Ic=kr(String.prototype.toLowerCase),Lm=kr(String.prototype.match),Si=kr(String.prototype.replace),bm=kr(String.prototype.indexOf),$m=kr(String.prototype.trim),vn=kr(RegExp.prototype.test),ku=_m(TypeError);function kr(t){return function(e){for(var n=arguments.length,i=new Array(n>1?n-1:0),s=1;s<n;s++)i[s-1]=arguments[s];return Dc(t,e,i)}}function _m(t){return function(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return Mu(t,n)}}function Ft(t,e,n){n=n||Ic,md&&md(t,null);for(var i=e.length;i--;){var s=e[i];if(typeof s=="string"){var l=n(s);l!==s&&(hm(e)||(e[i]=l),s=l)}t[s]=!0}return t}function as(t){var e=gm(null),n;for(n in t)Dc(pm,t,[n])&&(e[n]=t[n]);return e}function Mc(t,e){for(;t!==null;){var n=Sm(t,e);if(n){if(n.get)return kr(n.get);if(typeof n.value=="function")return kr(n.value)}t=mm(t)}function i(s){return console.warn("fallback value for",s),null}return i}var yd=Tn(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),xu=Tn(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Fu=Tn(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),Em=Tn(["animate","color-profile","cursor","discard","fedropshadow","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Gu=Tn(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover"]),Wm=Tn(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Ld=Tn(["#text"]),bd=Tn(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),Hu=Tn(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),$d=Tn(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),kc=Tn(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),Tm=co(/\{\{[\w\W]*|[\w\W]*\}\}/gm),vm=co(/<%[\w\W]*|[\w\W]*%>/gm),wm=co(/^data-[\-\w.\u00B7-\uFFFF]/),Am=co(/^aria-[\-\w]+$/),Cm=co(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Pm=co(/^(?:\w+script|data):/i),Om=co(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Rm=co(/^html$/i),Nm=function(){return typeof window=="undefined"?null:window},Dm=function(e,n){if(mi(e)!=="object"||typeof e.createPolicy!="function")return null;var i=null,s="data-tt-policy-suffix";n.currentScript&&n.currentScript.hasAttribute(s)&&(i=n.currentScript.getAttribute(s));var l="dompurify"+(i?"#"+i:"");try{return e.createPolicy(l,{createHTML:function(p){return p},createScriptURL:function(p){return p}})}catch(u){return console.warn("TrustedTypes policy "+l+" could not be created."),null}};function _d(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Nm(),e=function(w){return _d(w)};if(e.version="2.4.0",e.removed=[],!t||!t.document||t.document.nodeType!==9)return e.isSupported=!1,e;var n=t.document,i=t.document,s=t.DocumentFragment,l=t.HTMLTemplateElement,u=t.Node,p=t.Element,L=t.NodeFilter,E=t.NamedNodeMap,N=E===void 0?t.NamedNodeMap||t.MozNamedAttrMap:E,O=t.HTMLFormElement,H=t.DOMParser,J=t.trustedTypes,x=p.prototype,Z=Mc(x,"cloneNode"),st=Mc(x,"nextSibling"),Pt=Mc(x,"childNodes"),wt=Mc(x,"parentNode");if(typeof l=="function"){var $t=i.createElement("template");$t.content&&$t.content.ownerDocument&&(i=$t.content.ownerDocument)}var U=Dm(J,n),z=U?U.createHTML(""):"",Mt=i,K=Mt.implementation,it=Mt.createNodeIterator,Tt=Mt.createDocumentFragment,Nt=Mt.getElementsByTagName,Gt=n.importNode,mn={};try{mn=as(i).documentMode?i.documentMode:{}}catch(_t){}var he={};e.isSupported=typeof wt=="function"&&K&&typeof K.createHTMLDocument!="undefined"&&mn!==9;var ce=Tm,on=vm,Sn=wm,Le=Am,Tl=Pm,ua=Om,hs=Cm,Re=null,ms=Ft({},[].concat(Mr(yd),Mr(xu),Mr(Fu),Mr(Gu),Mr(Ld))),xe=null,fa=Ft({},[].concat(Mr(bd),Mr(Hu),Mr($d),Mr(kc))),me=Object.seal(Object.create(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),sn=null,Ss=null,da=!0,Li=!0,Go=!1,Gr=!1,Hr=!1,gs=!1,Ur=!1,jr=!1,uo=!1,An=!1,mt=!0,Ne=!1,vl="user-content-",ys=!0,ar=!1,Yn={},vt=null,bi=Ft({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),$i=null,Ho=Ft({},["audio","video","img","source","image","track"]),fo=null,pa=Ft({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),De="http://www.w3.org/1998/Math/MathML",Uo="http://www.w3.org/2000/svg",gn="http://www.w3.org/1999/xhtml",po=gn,Ls=!1,Br,ha=["application/xhtml+xml","text/html"],wl="text/html",Ie,ho=null,$e=i.createElement("form"),yn=function(w){return w instanceof RegExp||w instanceof Function},Vr=function(w){ho&&ho===w||((!w||mi(w)!=="object")&&(w={}),w=as(w),Br=ha.indexOf(w.PARSER_MEDIA_TYPE)===-1?Br=wl:Br=w.PARSER_MEDIA_TYPE,Ie=Br==="application/xhtml+xml"?function(X){return X}:Ic,Re="ALLOWED_TAGS"in w?Ft({},w.ALLOWED_TAGS,Ie):ms,xe="ALLOWED_ATTR"in w?Ft({},w.ALLOWED_ATTR,Ie):fa,fo="ADD_URI_SAFE_ATTR"in w?Ft(as(pa),w.ADD_URI_SAFE_ATTR,Ie):pa,$i="ADD_DATA_URI_TAGS"in w?Ft(as(Ho),w.ADD_DATA_URI_TAGS,Ie):Ho,vt="FORBID_CONTENTS"in w?Ft({},w.FORBID_CONTENTS,Ie):bi,sn="FORBID_TAGS"in w?Ft({},w.FORBID_TAGS,Ie):{},Ss="FORBID_ATTR"in w?Ft({},w.FORBID_ATTR,Ie):{},Yn="USE_PROFILES"in w?w.USE_PROFILES:!1,da=w.ALLOW_ARIA_ATTR!==!1,Li=w.ALLOW_DATA_ATTR!==!1,Go=w.ALLOW_UNKNOWN_PROTOCOLS||!1,Gr=w.SAFE_FOR_TEMPLATES||!1,Hr=w.WHOLE_DOCUMENT||!1,jr=w.RETURN_DOM||!1,uo=w.RETURN_DOM_FRAGMENT||!1,An=w.RETURN_TRUSTED_TYPE||!1,Ur=w.FORCE_BODY||!1,mt=w.SANITIZE_DOM!==!1,Ne=w.SANITIZE_NAMED_PROPS||!1,ys=w.KEEP_CONTENT!==!1,ar=w.IN_PLACE||!1,hs=w.ALLOWED_URI_REGEXP||hs,po=w.NAMESPACE||gn,w.CUSTOM_ELEMENT_HANDLING&&yn(w.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(me.tagNameCheck=w.CUSTOM_ELEMENT_HANDLING.tagNameCheck),w.CUSTOM_ELEMENT_HANDLING&&yn(w.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(me.attributeNameCheck=w.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),w.CUSTOM_ELEMENT_HANDLING&&typeof w.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(me.allowCustomizedBuiltInElements=w.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Gr&&(Li=!1),uo&&(jr=!0),Yn&&(Re=Ft({},Mr(Ld)),xe=[],Yn.html===!0&&(Ft(Re,yd),Ft(xe,bd)),Yn.svg===!0&&(Ft(Re,xu),Ft(xe,Hu),Ft(xe,kc)),Yn.svgFilters===!0&&(Ft(Re,Fu),Ft(xe,Hu),Ft(xe,kc)),Yn.mathMl===!0&&(Ft(Re,Gu),Ft(xe,$d),Ft(xe,kc))),w.ADD_TAGS&&(Re===ms&&(Re=as(Re)),Ft(Re,w.ADD_TAGS,Ie)),w.ADD_ATTR&&(xe===fa&&(xe=as(xe)),Ft(xe,w.ADD_ATTR,Ie)),w.ADD_URI_SAFE_ATTR&&Ft(fo,w.ADD_URI_SAFE_ATTR,Ie),w.FORBID_CONTENTS&&(vt===bi&&(vt=as(vt)),Ft(vt,w.FORBID_CONTENTS,Ie)),ys&&(Re["#text"]=!0),Hr&&Ft(Re,["html","head","body"]),Re.table&&(Ft(Re,["tbody"]),delete sn.tbody),Tn&&Tn(w),ho=w)},lr=Ft({},["mi","mo","mn","ms","mtext"]),xn=Ft({},["foreignobject","desc","title","annotation-xml"]),Of=Ft({},["title","style","font","a","script"]),mo=Ft({},xu);Ft(mo,Fu),Ft(mo,Em);var Al=Ft({},Gu);Ft(Al,Wm);var Qc=function(w){var X=wt(w);(!X||!X.tagName)&&(X={namespaceURI:gn,tagName:"template"});var at=Ic(w.tagName),Kt=Ic(X.tagName);return w.namespaceURI===Uo?X.namespaceURI===gn?at==="svg":X.namespaceURI===De?at==="svg"&&(Kt==="annotation-xml"||lr[Kt]):Boolean(mo[at]):w.namespaceURI===De?X.namespaceURI===gn?at==="math":X.namespaceURI===Uo?at==="math"&&xn[Kt]:Boolean(Al[at]):w.namespaceURI===gn?X.namespaceURI===Uo&&!xn[Kt]||X.namespaceURI===De&&!lr[Kt]?!1:!Al[at]&&(Of[at]||!mo[at]):!1},zr=function(w){pl(e.removed,{element:w});try{w.parentNode.removeChild(w)}catch(X){try{w.outerHTML=z}catch(at){w.remove()}}},Cl=function(w,X){try{pl(e.removed,{attribute:X.getAttributeNode(w),from:X})}catch(at){pl(e.removed,{attribute:null,from:X})}if(X.removeAttribute(w),w==="is"&&!xe[w])if(jr||uo)try{zr(X)}catch(at){}else try{X.setAttribute(w,"")}catch(at){}},Zc=function(w){var X,at;if(Ur)w="<remove></remove>"+w;else{var Kt=Lm(w,/^[\r\n\t ]+/);at=Kt&&Kt[0]}Br==="application/xhtml+xml"&&(w='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+w+"</body></html>");var Ln=U?U.createHTML(w):w;if(po===gn)try{X=new H().parseFromString(Ln,Br)}catch(Je){}if(!X||!X.documentElement){X=K.createDocument(po,"template",null);try{X.documentElement.innerHTML=Ls?"":Ln}catch(Je){}}var Ye=X.body||X.documentElement;return w&&at&&Ye.insertBefore(i.createTextNode(at),Ye.childNodes[0]||null),po===gn?Nt.call(X,Hr?"html":"body")[0]:Hr?X.documentElement:Ye},tu=function(w){return it.call(w.ownerDocument||w,w,L.SHOW_ELEMENT|L.SHOW_COMMENT|L.SHOW_TEXT,null,!1)},eu=function(w){return w instanceof O&&(typeof w.nodeName!="string"||typeof w.textContent!="string"||typeof w.removeChild!="function"||!(w.attributes instanceof N)||typeof w.removeAttribute!="function"||typeof w.setAttribute!="function"||typeof w.namespaceURI!="string"||typeof w.insertBefore!="function")},bs=function(w){return mi(u)==="object"?w instanceof u:w&&mi(w)==="object"&&typeof w.nodeType=="number"&&typeof w.nodeName=="string"},Kr=function(w,X,at){!he[w]||ym(he[w],function(Kt){Kt.call(e,X,at,ho)})},nu=function(w){var X;if(Kr("beforeSanitizeElements",w,null),eu(w)||vn(/[\u0080-\uFFFF]/,w.nodeName))return zr(w),!0;var at=Ie(w.nodeName);if(Kr("uponSanitizeElement",w,{tagName:at,allowedTags:Re}),w.hasChildNodes()&&!bs(w.firstElementChild)&&(!bs(w.content)||!bs(w.content.firstElementChild))&&vn(/<[/\w]/g,w.innerHTML)&&vn(/<[/\w]/g,w.textContent)||at==="select"&&vn(/<template/i,w.innerHTML))return zr(w),!0;if(!Re[at]||sn[at]){if(!sn[at]&&Ol(at)&&(me.tagNameCheck instanceof RegExp&&vn(me.tagNameCheck,at)||me.tagNameCheck instanceof Function&&me.tagNameCheck(at)))return!1;if(ys&&!vt[at]){var Kt=wt(w)||w.parentNode,Ln=Pt(w)||w.childNodes;if(Ln&&Kt)for(var Ye=Ln.length,Je=Ye-1;Je>=0;--Je)Kt.insertBefore(Z(Ln[Je],!0),st(w))}return zr(w),!0}return w instanceof p&&!Qc(w)||(at==="noscript"||at==="noembed")&&vn(/<\/no(script|embed)/i,w.innerHTML)?(zr(w),!0):(Gr&&w.nodeType===3&&(X=w.textContent,X=Si(X,ce," "),X=Si(X,on," "),w.textContent!==X&&(pl(e.removed,{element:w.cloneNode()}),w.textContent=X)),Kr("afterSanitizeElements",w,null),!1)},Pl=function(w,X,at){if(mt&&(X==="id"||X==="name")&&(at in i||at in $e))return!1;if(!(Li&&!Ss[X]&&vn(Sn,X))){if(!(da&&vn(Le,X))){if(!xe[X]||Ss[X]){if(!(Ol(w)&&(me.tagNameCheck instanceof RegExp&&vn(me.tagNameCheck,w)||me.tagNameCheck instanceof Function&&me.tagNameCheck(w))&&(me.attributeNameCheck instanceof RegExp&&vn(me.attributeNameCheck,X)||me.attributeNameCheck instanceof Function&&me.attributeNameCheck(X))||X==="is"&&me.allowCustomizedBuiltInElements&&(me.tagNameCheck instanceof RegExp&&vn(me.tagNameCheck,at)||me.tagNameCheck instanceof Function&&me.tagNameCheck(at))))return!1}else if(!fo[X]){if(!vn(hs,Si(at,ua,""))){if(!((X==="src"||X==="xlink:href"||X==="href")&&w!=="script"&&bm(at,"data:")===0&&$i[w])){if(!(Go&&!vn(Tl,Si(at,ua,"")))){if(at)return!1}}}}}}return!0},Ol=function(w){return w.indexOf("-")>0},ru=function(w){var X,at,Kt,Ln;Kr("beforeSanitizeAttributes",w,null);var Ye=w.attributes;if(!!Ye){var Je={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:xe};for(Ln=Ye.length;Ln--;){X=Ye[Ln];var $s=X,an=$s.name,Rl=$s.namespaceURI;if(at=an==="value"?X.value:$m(X.value),Kt=Ie(an),Je.attrName=Kt,Je.attrValue=at,Je.keepAttr=!0,Je.forceKeepAttr=void 0,Kr("uponSanitizeAttribute",w,Je),at=Je.attrValue,!Je.forceKeepAttr&&(Cl(an,w),!!Je.keepAttr)){if(vn(/\/>/i,at)){Cl(an,w);continue}Gr&&(at=Si(at,ce," "),at=Si(at,on," "));var ou=Ie(w.nodeName);if(!!Pl(ou,Kt,at)){if(Ne&&(Kt==="id"||Kt==="name")&&(Cl(an,w),at=vl+at),U&&mi(J)==="object"&&typeof J.getAttributeType=="function"&&!Rl)switch(J.getAttributeType(ou,Kt)){case"TrustedHTML":at=U.createHTML(at);break;case"TrustedScriptURL":at=U.createScriptURL(at);break}try{Rl?w.setAttributeNS(Rl,an,at):w.setAttribute(an,at),gd(e.removed)}catch(Xp){}}}}Kr("afterSanitizeAttributes",w,null)}},Rf=function _t(w){var X,at=tu(w);for(Kr("beforeSanitizeShadowDOM",w,null);X=at.nextNode();)Kr("uponSanitizeShadowNode",X,null),!nu(X)&&(X.content instanceof s&&_t(X.content),ru(X));Kr("afterSanitizeShadowDOM",w,null)};return e.sanitize=function(_t){var w=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},X,at,Kt,Ln,Ye;if(Ls=!_t,Ls&&(_t="<!-->"),typeof _t!="string"&&!bs(_t)){if(typeof _t.toString!="function")throw ku("toString is not a function");if(_t=_t.toString(),typeof _t!="string")throw ku("dirty is not a string, aborting")}if(!e.isSupported){if(mi(t.toStaticHTML)==="object"||typeof t.toStaticHTML=="function"){if(typeof _t=="string")return t.toStaticHTML(_t);if(bs(_t))return t.toStaticHTML(_t.outerHTML)}return _t}if(gs||Vr(w),e.removed=[],typeof _t=="string"&&(ar=!1),ar){if(_t.nodeName){var Je=Ie(_t.nodeName);if(!Re[Je]||sn[Je])throw ku("root node is forbidden and cannot be sanitized in-place")}}else if(_t instanceof u)X=Zc("<!---->"),at=X.ownerDocument.importNode(_t,!0),at.nodeType===1&&at.nodeName==="BODY"||at.nodeName==="HTML"?X=at:X.appendChild(at);else{if(!jr&&!Gr&&!Hr&&_t.indexOf("<")===-1)return U&&An?U.createHTML(_t):_t;if(X=Zc(_t),!X)return jr?null:An?z:""}X&&Ur&&zr(X.firstChild);for(var $s=tu(ar?_t:X);Kt=$s.nextNode();)Kt.nodeType===3&&Kt===Ln||nu(Kt)||(Kt.content instanceof s&&Rf(Kt.content),ru(Kt),Ln=Kt);if(Ln=null,ar)return _t;if(jr){if(uo)for(Ye=Tt.call(X.ownerDocument);X.firstChild;)Ye.appendChild(X.firstChild);else Ye=X;return xe.shadowroot&&(Ye=Gt.call(n,Ye,!0)),Ye}var an=Hr?X.outerHTML:X.innerHTML;return Hr&&Re["!doctype"]&&X.ownerDocument&&X.ownerDocument.doctype&&X.ownerDocument.doctype.name&&vn(Rm,X.ownerDocument.doctype.name)&&(an="<!DOCTYPE "+X.ownerDocument.doctype.name+`> |
| | | `+an),Gr&&(an=Si(an,ce," "),an=Si(an,on," ")),U&&An?U.createHTML(an):an},e.setConfig=function(_t){Vr(_t),gs=!0},e.clearConfig=function(){ho=null,gs=!1},e.isValidAttribute=function(_t,w,X){ho||Vr({});var at=Ie(_t),Kt=Ie(w);return Pl(at,Kt,X)},e.addHook=function(_t,w){typeof w=="function"&&(he[_t]=he[_t]||[],pl(he[_t],w))},e.removeHook=function(_t){if(he[_t])return gd(he[_t])},e.removeHooks=function(_t){he[_t]&&(he[_t]=[])},e.removeAllHooks=function(){he={}},e}var Im=_d();/*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */const Uu=["aria-activedescendant","aria-atomic","aria-autocomplete","aria-busy","aria-checked","aria-controls","aria-describedby","aria-disabled","aria-readonly","aria-dropeffect","aria-expanded","aria-flowto","aria-grabbed","aria-haspopup","aria-hidden","aria-disabled","aria-invalid","aria-label","aria-labelledby","aria-level","aria-live","aria-multiline","aria-multiselectable","aria-orientation","aria-owns","aria-posinset","aria-pressed","aria-readonly","aria-relevant","aria-required","aria-selected","aria-setsize","aria-sort","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext","role","target"],Mm=["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blockquote","body","br","button","caption","canvas","center","cite","code","col","colgroup","command","datalist","dd","del","details","dfn","dir","div","dl","dt","em","fieldset","figure","figcaption","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","i","iframe","img","input","ins","keygen","kbd","label","legend","li","map","mark","menu","meter","nav","ol","optgroup","option","output","p","pre","progress","q","rp","rt","ruby","s","samp","section","select","small","source","span","strike","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"],Ed=["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","audio","canvas","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","switch","symbol","text","textpath","title","tref","tspan","video","view","vkern","use"],Wd=yr(Mm,Ed),ju={attributeNameCheck:/.+/,allowCustomizedBuiltInElements:!1,tagNameCheck:/^[a-z][-_.\w]*-[-.0-9_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u37D0\u37F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u10000-\uEFFFF]*$/},km={ADD_ATTR:Ut(Uu),ALLOWED_TAGS:yr(Wd,"#document-fragment"),CUSTOM_ELEMENT_HANDLING:Fe({},ju),IN_PLACE:!0},xm={ADD_ATTR:Ut(Uu),ALLOWED_TAGS:Ut(Ed),CUSTOM_ELEMENT_HANDLING:Fe({},ju),RETURN_DOM_FRAGMENT:!0,SANITIZE_DOM:!1},Fm={ADD_ATTR:Ut(Uu),ALLOWED_TAGS:c(Bo,Wd,[t=>t!=="iframe"]),CUSTOM_ELEMENT_HANDLING:Fe({},ju),SANITIZE_DOM:!1};var Gm=Object.freeze({__proto__:null,NODE_ALL_IN_PLACE:km,NODE_SVG:xm,STRING_BLOB_HTML:Fm});const Td={__proto__:null},Hm=zo(["href","xlink:href"]),Um="SHARED_SVG_SANITIZER_KEY",Bu=c(li,document,["template"]),xc=eo(new rn),vd=/[^a-z0-9]+/gi;function jm(t){return{__proto__:null,uponSanitizeAttribute:qm,uponSanitizeElement(e,n,i){var s;const{tagName:l}=n,u=i==null||(s=i.CUSTOM_ELEMENT_HANDLING)==null?void 0:s.tagNameCheck;u&&c(Ce,u,[l])&&!c(ui,e,[rs])&&c(io,e,[rs,t])}}}function Bm(t){const e=c(li,document,["div"]);c(io,e,["style","display:none"]),c(io,e,["id",t]);const n=c(qa,document,[]);return c(ao,n,[e]),e}function Vu(t,e){if(typeof t!="string")throw new bt(In);if(typeof e!="string")throw new bt("Invalid config name.");let n=Td[t];n===void 0&&(n=Td[t]={__proto__:null});let i=n[e];if(i===void 0){const s=Gm[e];i=Im(),i.setConfig(s);const l=jm(t);for(const u in l)i.addHook(u,l[u]);n[e]=i}return i}function wd(t){return Vu(Um,"NODE_SVG").sanitize(t)}function ls(t){const e=xt(t);if(c(Ue,e,["#"]))return t;const n=Km(e);if(pd.includes(n.protocol)){const i=c(Yi,document,[n.normalizedURL]);return i&&n.normalizedFragment?Vm(i,n):i||zm(n),n.requestedFragment?`#${n.normalizedFragment}`:`#${n.normalizedURL}`}return t}function Ad(t,e){const{normalizedFragment:n,requestedFragment:i}=e;let s=c(Qa,t,[`#${n}`]);if(s===null)try{s=c(Qa,t,[`#${i}`]),c(io,s,["id",n])}catch(l){}}function Vm(t,e){if(xc.has(e.normalizedURL)){const n=Su(()=>{xc.has(e.normalizedURL)||(Ad(t,e),oc(n))},50)}else Ad(t,e)}function zm(t){const e=Bm(t.normalizedURL);xc.add(t.normalizedURL);const n=new Ou;c(lo,n,["load",()=>{if(c(rm,n,[])===200){const s=c(fd,n,[]),l=wd(s);if(t.requestedFragment){const u=c($u,l,[t.requestedFragment]);u&&c(io,u,["id",t.normalizedFragment])}c(ao,e,[l]),xc.delete(t.normalizedURL)}}]),c(cd,n,["GET",t.requestedURL]),c(ud,n,[])}function Km(t){c(cl,hi,[t]);const e=c(Ec,hi,[]),n=c(Wc,hi,[]),{0:i,1:s}=c(Zr,e,["#"]),l=c(Mn,i,[]),u=c(ne,l,[vd,""]);return{normalizedFragment:s?`${u}_${c(ne,s,[vd,""])}`:"",normalizedURL:u,protocol:n,requestedFragment:s,requestedURL:i}}function qm(t,e,n){const{attrValue:i,attrName:s}=e;return i&&c(wr,c(qt,t,[]),[])==="USE"&&Hm.includes(s)&&(e.attrValue=ls(i)),e}function Xm(t){if(typeof t!="string")throw new bt(In);return Vu(t,"STRING_BLOB_HTML")}function zu(t,e){if(typeof e!="string")throw new bt(In);c(Io,Bu,[t]);const n=c(ra,Bu,[]);return Vu(e,"NODE_ALL_IN_PLACE").sanitize(n),c(Zi,Bu,[])}function Cd(t,e){const n=c(Xa,t,[]),i=c(Za,n,[]),s=c(Zl,t,[]),l=c(yc,s,[ia,"html"]),u=c(Xa,l,[]);return c(Io,u,[zu(i,e)]),l}function Pd(t){return c(ci,t,[Ac,"svg"])}function Od(t,e=""){const n=typeof t=="string"?document:c(ts,t,[]);let i;if(typeof t=="string")e=t,i=Pd(n);else{const E=c(uu,t,["svg"]);i=E?c(pu,E,[!1]):Pd(n)}const s=c(ai,n,[""]);c(ao,i,[s]);const l=c(Za,i,[]),u=c(ne,l,["<!---->",e]),p=wd(u),L=c(mu,p,[]);return c(Zi,L,[])}/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2023 salesforce.com, inc. |
| | | */const Ku=Yt(new kt);async function Ym(t,e){Jm(e);const n=new pe,i=c(Ka,n,[]);Ku.set(e,n);const s=await el(t,{__proto__:null,method:"GET",credentials:"include",signal:i});if(Ku.delete(e),!c(h,s,[]))throw new Zn("Request failed.");return await c(S,s,[])}function Jm(t){const e=Ku.get(t);e&&c(le,e,[])}const qu="$evaluator$",Qm=`document.currentScript['${qu}']`,Zm=typeof trustedTypes!="undefined";function tS(t,e){return trustedTypes.createPolicy(t,e)}function eS(t,e){return e}const Rd=Zm?tS:eS,cs=Rd("trusted",{createHTML(t){return t},createScript(t){return t},createScriptURL(t){return t}}),Xu=ro(new no),sa=Yt(new kt),gi=Rd("lwsInternal",{createHTML(t,e,n){if(t==null)return"";switch(n){case 0:return zu(t,e);case 1:return"";case 2:return t;default:return""}},createScript(t,e){return""},createScriptURL(t,e,n){const i=oS(n);if(t=`${t}`,Xu.has(n)||t===""||t==="undefined"||t==="null")return i(cs.createScriptURL(t)),t;const s=c(nc,n,[]),l=Rc(t);if(s){if(rS(n))return Xu.add(n),i(cs.createScriptURL(t)),t;if(sa.has(n))return""}const u=Ym(l,n);sa.set(n,l);const p=nS();return c(kn,u,[N=>{Se(n,qu,{__proto__:null,configurable:!0,get:c(tr,()=>{fe(n,qu),Y(p);const O=sa.get(n);sa.delete(n),Xu.add(n),i(cs.createScriptURL(O)),e(N)},[n]),set:void 0}),i(cs.createScriptURL(p))},N=>{Y(p);const O=sa.get(n);sa.delete(n),i(cs.createScriptURL("blob:http://localhost/not-found"));const H=()=>{i(cs.createScriptURL(O)),c(pi,n,["error",H])};c(lo,n,["error",H])}]),""}});function nS(){return P(new dc([Qm],{__proto__:null,type:"text/javascript"}))}function rS(t){return t instanceof ul?c(hn,t,["src"]):c(ui,t,["href"])?c(hn,t,["href"]):c(hn,t,["xlink:href"])}function oS(t){const n=c(du,t,[])===ia?"":is,i=t instanceof ul?"src":"href";return function(s){c(tc,t,[n,i,s])}}/*! version: 0.18.14 *//*! |
| | | * Copyright (C) 2019 salesforce.com, inc. |
| | | */const Fc="Illegal constructor.",us="Illegal invocation.",Nd="Failed to construct 'HTMLElement': Please use the 'new' operator, this DOM object constructor cannot be called as a function.",fs=ee("@@lockerOriginalHTMLElementCtor");let Yu,Ju;const Gc=Yt(new kt),Qu=Yt(new kt),Dd=Yt(new kt),Id=Vn(new dn),Zu=Yt(new kt);class Md{constructor(e){this._awaitingUpgrade=Vn(new dn),this._definedCtors=eo(new rn),this._definitionByElement=Yt(new kt),this._definitionByTag=Vn(new dn),this._pendingRegistryByElement=Yt(new kt),this._document=e,this._HTMLElement=Qu.get(e)}applyDefine(e,n){const{0:i,1:s,2:l}=n;if(l&&l.extends)throw new DOMException("NotSupportedError: 'extends' key in customElements.define() options is not supported.");if(this._definitionByTag.has(i))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${i}" has already been used with this registry.`);if(this._definedCtors.has(s))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry.");const u=lS(s);let p=Id.get(i);p===void 0&&(p=sS(this._document,this._HTMLElement,u,i),c(os,e,[i,p])),Gc.set(s,u),Id.set(i,p),this._definitionByTag.set(i,u),this._definedCtors.add(s),u.PivotCtor=p;const L=this._awaitingUpgrade.get(i);L&&L.forEach(E=>{const N=this._pendingRegistryByElement.get(E);N&&(this._pendingRegistryByElement.delete(E),this.upgrade(E,N,u))})}applyGet(e,n){const{0:i}=n,s=this._definitionByTag.get(i);return s&&s.LocalCtor||c(gc,e,[i])}applyWhenDefined(e,n){const{0:i}=n,s=c(ll,e,n);return new Dr((l,u)=>{c(kn,s,[()=>{const p=this._definitionByTag.get(i);p&&l(p.LocalCtor)},u])})}getDefinition(e){return this._definitionByElement.get(e)}newCtor(e){const n=Ju;if(n)return Ju=void 0,n;const{constructor:i}=e,s=Gc.get(i);if(s===void 0||typeof s.PivotCtor!="function"){let l;try{l=c(na,e,[])}catch(u){}if(l)return e;throw new Vt(Fc)}return new s.PivotCtor(this,s)}scheduleConnectedCallback(e,n){let i=this._awaitingUpgrade.get(n);i===void 0&&(i=eo(new rn),this._awaitingUpgrade.set(n,i)),i.add(e)}scheduleDisconnectedCallback(e,n){const i=this._awaitingUpgrade.get(n);i&&i.delete(e)}scheduleOrUpgrade(e,n,i){const s=this._definitionByTag.get(n);s?this.upgrade(e,i,s):(this._pendingRegistryByElement.set(e,i),It(e,this._HTMLElement.prototype))}setDefinition(e,n){It(e,n.LocalCtor.prototype),this._definitionByElement.set(e,n)}upgrade(e,n,i){const{LocalCtor:s,connectedCallback:l}=i;this.setDefinition(e,i),i!==n&&fS(e,n,i),Ju=e,We(s,[]);const u=c(na,e,[]),p=c(Mn,u,[]),L=this._awaitingUpgrade.get(p);L&&L.size&&(hS(e,n),L.has(e)&&c(nc,e,[])&&(l&&c(l,e,[]),L.delete(e),L.size||this._awaitingUpgrade.delete(p)))}}function iS(t){const{connectedCallback:e,disconnectedCallback:n,adoptedCallback:i,attributeChangedCallback:s}=t.prototype,l=eo(new rn(t.observedAttributes||[]));return{adoptedCallback:i,attributeChangedCallback:s,connectedCallback:e,disconnectedCallback:n,LocalCtor:t,observedAttributes:l,PivotCtor:void 0}}function sS(t,e,n,i){var s;return s=class extends e{constructor(u,p){super();u&&p?(this.instanceRegistry=u,u.setDefinition(this,p)):(this.instanceRegistry=cS(t,this)||aS()||kd(t),this.instanceRegistry.scheduleOrUpgrade(this,i,n))}connectedCallback(){const{instanceRegistry:u}=this,p=u.getDefinition(this);if(p){const{connectedCallback:L}=p;L&&c(L,this,[])}else u.scheduleConnectedCallback(this,i)}disconnectedCallback(){const{instanceRegistry:u}=this,p=u.getDefinition(this);if(p){const{disconnectedCallback:L}=p;L&&c(L,this,[])}else u.scheduleDisconnectedCallback(this,i)}adoptedCallback(){const u=this.instanceRegistry.getDefinition(this);if(u){const{adoptedCallback:p}=u;p&&c(p,this,[])}}attributeChangedCallback(u,p,L){const E=this.instanceRegistry.getDefinition(this),N=E==null?void 0:E.attributeChangedCallback,O=E==null?void 0:E.observedAttributes;typeof N=="function"&&(n===E||O!=null&&O.has(u))&&c(N,this,[u,p,L])}},s.observedAttributes=[...n.observedAttributes],s}function aS(){const t=Yu;return Yu=void 0,t}function lS(t){const e=typeof t=="function"?t.prototype:void 0;if(!fn(e))throw new Vt("Invalid custom element constructor.");let n=Gc.get(t);return n===void 0&&(n=iS(t),Gc.set(t,n)),n}function kd(t){let e=Dd.get(t);return e||(e=new Md(t),Dd.set(t,e),e)}function cS(t,e){const n=c(hn,e,[rs]);if(n===null||(c(fi,e,[rs]),c(ts,e,[])!==t))return;const s=Zu.get(t);return s?s.get(n):void 0}function uS(t,e){return eo(new rn([...e.observedAttributes].filter(n=>!t.observedAttributes.has(n))))}function fS(t,e,n){const{observedAttributes:i,attributeChangedCallback:s}=n;if(i.size===0||typeof s!="function")return;const l=uS(e,n);!l.size||(t.removeAttribute=jn(function(p){const L=[p];if(l.has(p)){const E=c(hn,this,L);c(fi,this,L),L[1]=E,L[2]=null,c(s,this,L)}else c(fi,this,L)},fi),t.setAttribute=jn(function(p,L){const E=[p],N=xt(L),O=[p,N];if(l.has(p)){const H=c(hn,this,E);c(io,this,O),E[1]=H,E[2]=N,c(s,this,E)}else c(io,this,O)},io),t.toggleAttribute=jn(function(p){const L=[p];let E;if(l.has(p)){const N=c(ui,this,L),O=N?c(hn,this,L):null;E=c(Qi,this,L),L[1]=O,N&&(L[2]=null),c(s,this,L)}else E=c(Qi,this,L);return E},Qi))}function dS(t,e){const{CustomElementRegistry:{prototype:n},customElements:i}=t;n.get=jn(function(...l){if(this!==i)throw new Vt(us);return e.applyGet(this,l)},n.get),n.define=jn(function(...l){if(this!==i)throw new Vt(us);return e.applyDefine(this,l)},n.define),n.whenDefined=jn(function(...l){return this!==i?Ro(new Vt(us)):e.applyWhenDefined(this,l)},n.whenDefined)}function pS(t,e){let n=!1;const{HTMLElement:i}=t;t.HTMLElement=jn(function s(){if(new.target===void 0)throw new Vt(Nd);if(new.target===s)throw new Vt(Fc);return e.newCtor(this)},i,{defineProperty(s,l,u){if(l===fs)throw new Vt(en);return Se(s,l,u)},get(s,l,u,p=!1){n&&(n=p);const L=l===fs;if(n&&L)return i;const E=Ht(s,l,u);if(E!==void 0&&L)throw new Vt(en);return E},getOwnPropertyDescriptor(s,l){const u=yt(s,l);if(u&&l===fs)throw new Vt(en);return u},has(s,l){const u=oe(s,l),p=l===fs;if(u){if(n=!1,p)throw new Vt(en)}else n=p;return u},set(s,l,u,p){if(l===fs)throw new Vt(en);return Dt(s,l,u,p)}})}function hS(t,e){const{observedAttributes:n}=e,i=n.size?e.attributeChangedCallback:void 0;i&&n.forEach(s=>{if(c(ui,t,[s])){const l=c(hn,t,[s]);c(i,t,[s,null,l])}})}function mS(t){return fs in t?void 0:t[fs]}function hl(t,e){let n=Zu.get(t);n===void 0&&(n=Vn(new dn),Zu.set(t,n));let i=n.get(e);return i||(i=new Md(t),n.set(e,i),i)}function SS(t,e){let{HTMLElement:n}=e;const{CustomElementRegistry:{prototype:{get:i}}}=e,s=Un(n),l=Un(i);if(s){if(n=mS(n),typeof n!="function")throw new Vt("Invalid HTMLElement constructor.");Qu.set(t,n)}else Qu.set(t,n);const u=!s||!l?kd(t):void 0;s||pS(e,u),l||dS(e,u)}function xr(t,e){Yu=hl(t,e)}const Hc=Vn(new dn),tf=Yt(new kt);function gS(t){const e=Hc.get(t);if(e===void 0)return;Hc.delete(t);const{document:n,key:i}=t;let s=tf.get(n);s===void 0&&(s={__proto__:null},tf.set(n,s));const l={__proto__:null};s[i]=l;for(let u=0,{length:p}=e;u<p;u+=1)e[u](l)}function Fr(t,e,n,i=qe){const{document:s,key:l}=t,u=tf.get(s);if(u===void 0)return;const p=u[l];if(p===void 0)return;const L=p[c(Mn,n,[])];if(L===void 0)return;const E=L[i];if(E===void 0)return;const N=E.entries();for(const{0:O,1:H}of N)if(e instanceof O)return H}function ds(t){return t==null||t===""?qe:t}function wn(t,e,n,i,s){let l=Hc.get(t);l===void 0&&(l=[],Hc.set(t,l));const u=c(Mn,n,[]);l[l.length]=p=>{let L=p[u];L===void 0&&(L={__proto__:null},p[u]=L);let E=L[i];E===void 0&&(E=Vn(new dn),L[i]=E),E.set(e,s)}}function yS({globalObject:{Attr:t}}){const e=de(t.prototype,"value");return function(i){return[e,function(l){const u=c(Xi,this,[]);if(u){const p=c(ii,this,[]),L=c(No,this,[]),E=ds(L),N=Fr(i,u,p,E);if(N){c(N,u,[l]);return}}c(e,this,[l])}]}}function LS({UNCOMPILED_CONTEXT:t,globalObject:e}){var n,i;const s=(n=e.aura)==null||(i=n.util)==null?void 0:i.globalEval;return typeof s!="function"?Wt:function({sandboxEvaluator:u}){return[s,function(L,E,N){let O=`(function s(){return(${L})})()`;if(typeof E=="string"){const H=c(Zr,E,["://"]),{length:J}=H,x=J?H[H.length-1]:"";O+=this.sourceComment+(N==="lib"?`/libraries/${c(ne,x,[".","/"])}`:`/components/${c(ne,x,[":","/"])}.js`)}return u(ss(O),t)}]}}function bS({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.delete;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){if(u.length){const{0:p}=u;we(p)&&(u[0]=sr(p,s))}return c(n,this,u)}]}}function $S({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.has;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){if(u.length){const{0:p}=u;we(p)&&(u[0]=sr(p,s))}return c(n,this,u)}]}}function _S({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.keys;return typeof n!="function"?Wt:function({key:s}){return[n,function(){const u=c(n,this,[]);return c(kn,u,[p=>{const L=[];for(let E=0,N=0,{length:O}=p;E<O;E+=1){const H=p[E];Qs(H,s)&&(L[N++]=za(H,s))}return L}])}]}}function ES({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.match;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const{length:p}=u;if(!p)return c(n,this,u);const L=p>=2?u[1]:void 0;if(Qn(L)&&"cacheName"in L){const{cacheName:E}=L;if(we(E)){const N=Pe(L);return N.cacheName=sr(E,s),u[1]=N,c(n,this,u)}}return Ro(new bt("caches.match() expects 'options.cacheName' to be present."))}]}}function WS({globalObject:{CacheStorage:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.open;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){if(u.length){const{0:p}=u;we(p)&&(u[0]=sr(p,s))}return c(n,this,u)}]}}const Uc="; ";function ef(t,e){if(Qn(t)){const n=Pe(t);return n.name=sr(n.name,e),n}return sr(t,e)}function TS(t,e){if(!Qs(t,e))return null;const n=qi(e),{length:i}=n,s=t.length>i&&t[i]==="="?i+1:i;return c(zt,t,[s])}function vS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.delete;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const p=u.length?u[0]:void 0;return p!=null&&(u[0]=ef(p,s)),c(n,this,u)}]}}function wS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.get;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const p=u.length?u[0]:void 0;p!=null&&(u[0]=ef(p,s));const L=c(n,this,u);return c(kn,L,[E=>{if(E){const{name:N}=E;if(Qs(N,s))return E.name=za(N,s),E}return null}])}]}}function AS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.getAll;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const p=u.length?u[0]:void 0;p!=null&&(u[0]=ef(u[0],s));const L=c(n,this,u);return c(kn,L,[E=>{const N=[];let O=0;for(let H=0,{length:J}=E;H<J;H+=1){const x=E[H];if(x){const{name:Z}=x;Qs(Z,s)&&(x.name=za(Z,s),N[O++]=x)}}return N}])}]}}const nf={__proto__:null};function xd(t,e,n){const{key:i}=t,{[i]:s}=nf;return s===void 0||s[n]===void 0?!1:s[n].has(e.constructor)}function CS(t,e,n){if(xd(t,e.prototype,n))return;const{key:i}=t,{[i]:s={__proto__:null}}=nf,{[n]:l=ro(new no)}=s;l.add(e),s[n]=l,nf[i]=s}function PS(t,e){let n=`Cannot set '${e}' event handler`;const i=yt(t.constructor,"name");if(i){It(i,null);const{value:s}=i;typeof s=="string"&&(n+=` on ${s} object`)}return`${n}.`}function OS(t,e){let n=`Cannot add '${e}' event listener`;const i=yt(t.constructor,"name");if(i){It(i,null);const{value:s}=i;typeof s=="string"&&(n+=` to ${s} object`)}return`${n}.`}function jc(t,e,n){const i=`on${n}`,s=de(t,i);if(typeof s!="function")return Wt;const l=PS(t,i),u=[s,function(){throw new bt(l)}];return function(L){return CS(L,e,n),u}}function RS({globalObject:{CookieStore:t}}){return jc(t==null?void 0:t.prototype,t,"change")}function NS({globalObject:{CookieStore:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.set;return typeof n!="function"?Wt:function({key:s}){return[n,function(...u){const{length:p}=u;if(p>1)u[0]=sr(u[0],s);else if(p){const{0:L}=u;if(Qn(L)){const E=Pe(L);E.name=sr(E.name,s),u[0]=E}}return c(n,this,u)}]}}function DS({globalObject:{CSSStyleRule:t}}){const e=V(t.prototype,"style"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function IS({document:t,globalObject:{CustomElementRegistry:e,customElements:n}}){var i;const s=e==null||(i=e.prototype)==null?void 0:i.define;return typeof s!="function"?Wt:function({key:u}){const p=hl(t,u);return[s,function(...E){if(this!==n)throw new Vt(us);return p.applyDefine(this,E)}]}}function MS({document:t,globalObject:{CustomElementRegistry:e,customElements:n}}){var i;const s=e==null||(i=e.prototype)==null?void 0:i.get;return typeof s!="function"?Wt:function({key:u}){const p=hl(t,u);return[s,function(...E){if(this!==n)throw new Vt(us);return p.applyGet(this,E)}]}}function kS({document:t,globalObject:{CustomElementRegistry:e,customElements:n}}){var i;const s=e==null||(i=e.prototype)==null?void 0:i.whenDefined;return typeof s!="function"?Wt:function({key:u}){const p=hl(t,u);return[s,function(...E){return this!==n?Ro(new Vt(us)):p.applyWhenDefined(this,E)}]}}function xS({globalObject:{Document:t}}){const e=V(t.prototype,"cookie");return function({key:i}){return[e,function(){const l=c(lu,this,[]),u=c(Zr,l,[Uc]),p=[];let L=0;for(let E=0,{length:N}=u;E<N;E+=1){const O=TS(u[E],i);O&&(p[L++]=O)}return c(Ai,p,[Uc])}]}}function FS({globalObject:{Document:t}}){const e=de(t.prototype,"cookie");return function({key:i}){return[e,function(l){const u=c(Zr,l,[Uc]);let{0:p}=u;p.length&&p[0]==="="&&(p=c(zt,p,[1])),u[0]=sr(p,i);const L=c(Ai,u,[Uc]);c(cu,this,[L])}]}}function GS({document:t,globalObject:{Document:{prototype:{createElement:e}}}}){return function({key:i}){return[e,function(...s){const{0:l}=s;return c(He,l,["-"])&&xr(t,i),c(e,this,s)}]}}function HS({document:t,globalObject:{Document:{prototype:{createElementNS:e}}}}){return function({key:i}){return[e,function(...s){const{1:l}=s;return c(He,l,["-"])&&xr(t,i),c(e,this,s)}]}}function US(){throw new bt("Cannot set document.domain.")}function jS({globalObject:{Document:t}}){const n=[de(t.prototype,"domain"),US];return function(){return n}}const{isSharedElement:BS}=se;function VS({document:t,globalObject:{Document:{prototype:{execCommand:e}},HTMLElement:n}}){const i=V(Document.prototype,"activeElement"),s=V(n.prototype,"isContentEditable");return function({key:u,type:p}){return[e,function(...E){if(E.length>2){const{2:N}=E;if(N!=null){const O=xt(E[0]);if(c(Mn,O,[])==="inserthtml"){if(p===0){const H=c(i,this,[]);if(BS(H)&&c(s,H,[]))throw new bt(`Cannot execute command '${O}' on ${c(qt,H,[])}.`)}xr(t,u),E[0]=O,E[2]=gi.createHTML(N,u,0)}}}return c(e,this,E)}]}}function zS({globalObject:{Document:{prototype:t},HTMLDocument:e}}){return jc(t,e,"securitypolicyviolation")}const Fd=/(^|,)(\s*noopener\s*=\s*(?:yes|1)\s*)(,|$)/g;function Gd(t){const e=Ut(t);if(e.length>2){const n=xt(e[2]);let i=c(Mn,n,[]);c(Ce,Fd,[n])&&(i=c(ne,i,[Fd,(s,l,u,p)=>`${l}noopener${p}`])),e[2]=i}return e}function KS({globalObject:{Document:{prototype:{open:t}}}}){const e=[t,function(...i){if(i.length>=3){const s=Gd(i);return c(t,this,s)}return c(t,this,i)}];return function(){return e}}const{isSharedElement:qS}=se;function XS({globalObject:{Document:{prototype:{replaceChildren:t}}}}){const e=[t,function(...i){if(qS(c(Ql,this,[])))throw new bt("Cannot replace children of document.");return c(t,this,i)}];return function(){return e}}function YS({document:t,globalObject:{DOMParser:{prototype:{parseFromString:e}}}}){return function({key:i}){return[e,function(...l){if(l.length>=2){const u=xt(l[0]),p=xt(l[1]);xr(t,i),l[0]=p==="image/svg+xml"?Od(u):p==="application/xhtml+xml"||p==="application/xml"||p==="text/xml"?gi.createHTML(u,i,2):gi.createHTML(u,i,0)}return c(e,this,l)}]}}const{isSharedElement:JS,isAllowedSharedElementChild:QS}=se;function ZS({globalObject:{Element:{prototype:{after:t}},Node:e}}){const n=[t,function(...s){if(JS(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!QS(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot insert ${L} after ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}const{isSharedElement:tg,isAllowedSharedElementChild:eg}=se;function ng({globalObject:{Element:{prototype:{append:t}},Node:e}}){const n=[t,function(...s){if(tg(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!eg(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot append ${L} to ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}function rg({globalObject:{Element:{prototype:{attachShadow:t}}}}){const e=[t,function(...i){if(i.length){const{0:s}=i;if(s!=null){const{mode:l}=s;if(l!=="closed")throw new bt("Shadow root mode cannot be 'open.'");const u=Fe({},s,{mode:l}),p=Ct(s);It(u,p),i[0]=u}}return c(t,this,i)}];return function(){return e}}const Hd=Yt(new kt);function og(t,e){Hd.set(t,e)}function Ud(t,e,n,i){const s=Hd.get(n);if(s){const l=c(ii,i,[]),u=c(No,i,[]),p=ds(u),L=Fr(t,s,l,p);if(L){const E=c(oo,i,[]);return c(L,s,[E])}}return c(e,n,[i])}function ig({globalObject:{Element:t}}){const e=V(t.prototype,"attributes"),n=[e,function(){const s=c(e,this,[]);return og(s,this),s}];return function(){return n}}const{isSharedElement:sg,isAllowedSharedElementChild:ag}=se;function lg({globalObject:{Element:{prototype:{before:t}},Node:e}}){const n=[t,function(...s){if(sg(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!ag(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot insert ${L} before ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}const{isSharedElement:cg}=se;function ug({document:t,globalObject:{Element:e,SVGElement:n,XMLDocument:i}}){const s=de(e.prototype,"innerHTML");return function({key:u}){return[s,function(L){if(!(c(ts,this,[])instanceof i)){if(cg(this))throw new bt(`Cannot set innerHTML of ${c(qt,this,[])}.`);xr(t,u),L=this instanceof n?Od(this,L):zu(L,u)}c(s,this,[L])}]}}const{isSharedElement:fg,isAllowedSharedElementChild:dg}=se;function pg({globalObject:{Element:{prototype:{insertAdjacentElement:t}}}}){const e=[t,function(...i){if(i.length>1){const{1:s}=i;if(fg(this)&&!dg(s))throw new bt(`Cannot insert ${c(qt,s,[])} adjacent to ${c(qt,this,[])}.`)}return c(t,this,i)}];return function(){return e}}const{isSharedElement:hg}=se;function mg({document:t,globalObject:{Element:{prototype:{insertAdjacentHTML:e}}}}){return function({key:i}){return[e,function(...l){if(hg(this))throw new bt(`Cannot insert adjacent HTML to ${c(qt,this,[])}`);l.length>1&&(xr(t,i),l[1]=gi.createHTML(l[1],i,0)),c(e,this,l)}]}}const{isSharedElement:Sg}=se;function gg({document:t,globalObject:{Element:e}}){const n=de(e.prototype,"outerHTML");return function({key:s}){return[n,function(u){if(Sg(this))throw new bt(`Cannot set outerHTML of ${c(qt,this,[])}.`);xr(t,s),c(n,this,[gi.createHTML(u,s,0)])}]}}const{isSharedElement:yg,isAllowedSharedElementChild:Lg}=se;function bg({globalObject:{Element:{prototype:{prepend:t}},Node:e}}){const n=[t,function(...s){if(yg(this))for(let l=0,{length:u}=s;l<u;l+=1){const p=s[l];if(!Lg(p)){const L=p instanceof e?c(qt,p,[]):xt(p);throw new bt(`Cannot prepend ${L} to ${c(qt,this,[])}.`)}}return c(t,this,s)}];return function(){return n}}const{isSharedElement:$g}=se;function _g({globalObject:{Element:{prototype:{remove:t}}}}){const e=[t,function(){if($g(this))throw new bt(`Cannot remove ${c(qt,this,[])}.`);c(t,this,[])}];return function(){return e}}const{isSharedElement:Eg}=se;function Wg({globalObject:{Element:{prototype:{replaceChildren:t}}}}){const e=[t,function(...i){if(Eg(this))throw new bt(`Cannot replace children of ${c(qt,this,[])}.`);return c(t,this,i)}];return function(){return e}}const{isSharedElement:Tg}=se;function vg({globalObject:{Element:{prototype:{replaceWith:t}}}}){const e=[t,function(...i){if(Tg(this))throw new bt(`Cannot replace ${c(qt,this,[])}.`);return c(t,this,i)}];return function(){return e}}function wg({globalObject:{Element:{prototype:{setAttribute:t}}}}){return function(n){return[t,function(...s){if(s.length>1){const l=xt(s[0]),u=xt(s[1]),p=Fr(n,this,l);if(p){c(p,this,[u]);return}s[0]=l,s[1]=u}c(t,this,s)}]}}function Ag({globalObject:{Attr:t,Element:{prototype:{setAttributeNode:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;if(!(u instanceof t))return c(e,this,l);if(c(Xi,u,[]))return c(e,this,l);const p=c(ii,u,[]),L=c(No,u,[]),E=ds(L),N=Fr(i,this,p,E);if(N){const O=c(Ya,this,[p]);O&&c(ea,this,[O]);const H=c(oo,u,[]);c(N,this,[H]);const J=c(Ya,this,[p]);if(J&&c(ea,this,[J]),O&&c(e,this,[O]),J){const x=c(oo,J,[]);return c(au,u,[x]),c(e,this,[u])}return}return c(e,this,l)}]}}function Cg({globalObject:{Attr:t,Element:{prototype:{setAttributeNodeNS:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;if(!(u instanceof t))return c(e,this,l);if(c(Xi,u,[]))return c(e,this,l);const p=c(ii,u,[]),L=c(No,u,[]),E=ds(L),N=Fr(i,this,p,E);if(N){const O=c(Ja,this,[L,p]);O&&c(ea,this,[O]);const H=c(oo,u,[]);c(N,this,[H]);const J=c(Ja,this,[L,p]);if(J&&c(ea,this,[J]),O&&c(e,this,[O]),J){const x=c(oo,J,[]);return c(au,u,[x]),c(e,this,[u])}return null}return c(e,this,[u])}]}}function Pg({globalObject:{Element:{prototype:{setAttributeNS:t}}}}){return function(n){return[t,function(...s){if(s.length<3){c(t,this,s);return}let{0:l}=s;l!=null&&(l=xt(l));const u=xt(s[1]),p=xt(s[2]),L=ds(l),E=Fr(n,this,u,L);if(E){c(E,this,[p]);return}s[0]=l,s[1]=u,s[2]=p,c(t,this,s)}]}}function Og(){return null}function Rg({globalObject:{Element:t}}){const n=[V(t.prototype,"shadowRoot"),Og];return function(){return n}}function Ng({globalObject:{Element:{prototype:{hasAttribute:t,toggleAttribute:e}}}}){return function(i){return[e,function(...l){const{length:u}=l;if(u>0){const p=xt(l[0]),L=Fr(i,this,p);if(L){const E=u>1?[l[1]]:[];return c(L,this,E),c(t,this,[p])}l[0]=p}return c(e,this,l)}]}}function Dg(){return jd(this)}function jd(t){const e=c(_c,t,[]),{composedPath:n}=Event.prototype,i=c(n,t,[]),s=c(Lo,i,[e]);let l=i;for(let u=s;u>-1;u-=1)if(i[u]instanceof ShadowRoot){l=c(tn,i,[u+1]);break}return l}function Ig({globalObject:{Event:{prototype:{composedPath:t}}}}){const e=[t,Dg];return function(){return e}}function Mg(){return jd(this)}function kg({globalObject:{Event:t}}){const e=V(t.prototype,"path");if(typeof e!="function")return Wt;const n=[e,Mg];return function(){return n}}function xg({globalObject:{EventTarget:{prototype:{addEventListener:t}}}}){return function(n){function i(...s){const{length:l}=s;if(l>1){const u=xt(s[0]);if(xd(n,this,u))throw new bt(OS(this,u));s[0]=u}return c(t,this,s)}return[t,i]}}function Fg({UNCOMPILED_CONTEXT:t,globalObject:{Function:e}}){return function({sandboxEvaluator:i}){return[e,function(...l){const{length:u}=l;if(u){const L=u-1;l[L]=ss(xt(l[L]))}const p=i("(...args) => Function(...args)",t);return c(p,this,l)}]}}function Gg({globalObject:{DOMException:t,History:{prototype:{pushState:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function Hg({globalObject:{DOMException:t,History:{prototype:{replaceState:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function Ug({document:t,globalObject:{HTMLElement:e}}){return function({key:i}){let s;return[e,function l(){if(new.target===void 0)throw new Vt(Nd);if(new.target===l)throw new Vt(Fc);return s===void 0&&(s=hl(t,i)),s.newCtor(this)}]}}function jg({globalObject:{HTMLElement:t}}){const e=V(t.prototype,"dataset"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}const{isSharedElement:Bg}=se;function Vg({globalObject:{HTMLElement:t}}){const e=de(t.prototype,"innerText");if(typeof e!="function")return Wt;const n=[e,function(s){if(Bg(this))throw new bt(`Cannot set innerText of ${c(qt,this,[])}.`);c(e,this,[s])}];return function(){return n}}const{isSharedElement:zg}=se;function Kg({globalObject:{HTMLElement:t}}){const e=de(t.prototype,"outerText");if(typeof e!="function")return Wt;const n=[e,function(s){if(zg(this))throw new bt(`Cannot set outerText of ${c(qt,this,[])}.`);c(e,this,[s])}];return function(){return n}}function qg({globalObject:{HTMLElement:t}}){const e=V(t.prototype,"style"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function Bd(t){const e=Nu(t);if(!hd(e))throw new bt("HTMLIFrameElement.src supports http://, https:// schemes and relative urls.");c(vu,this,[e])}function Xg({globalObject:{HTMLIFrameElement:t}}){const n=[de(t.prototype,"src"),Bd];return function(s){return wn(s,t,"src",qe,Bd),n}}const Yg=/import/i,Vd='HTMLLinkElement does not allow setting "rel" property to "import" value.';function zd(t){return typeof t!="string"||!c(Ce,Yg,[t])}function Jg({globalObject:{HTMLLinkElement:t}}){const e=de(t.prototype,"rel");function n(s){const l=xt(s);if(zd(l)){c(e,this,[l]);return}ri(Vd)}const i=[e,n];return function(l){return wn(l,t,"rel",qe,n),i}}function Qg({globalObject:{DOMTokenList:t,HTMLLinkElement:e}}){const n=de(e.prototype,"relList"),i=[n,function s(l){const u=s instanceof t?c(Lc,l,[]):xt(l);if(zd(u)){c(n,this,[u]);return}ri(Vd)}];return function(){return i}}function Zg({globalObject:{HTMLObjectElement:t}}){const e=de(t.prototype,"data");function n(s){const l=Nu(s);if(!hd(l))throw new bt("HTMLObjectElement.data supports http://, https:// schemes and relative urls.");const u=dl(l);if(!Oc(u))throw new bt(`Cannot request disallowed endpoint: ${u.normalizedURL}`);c(e,this,[l])}const i=[e,n];return function(l){return wn(l,t,"data",qe,n),i}}const Kd=Yt(new kt);function ty(t,e,n){return function(){const s=nn(n),l=`blocked${Qt(n)}Attribute`,{[l]:u}={[l]:()=>{throw new bt(`Attribute ${s} not allowed on ${e}.`)}};return function(L){wn(L,t,n,qe,u)}}}function ey(t,e){const n=V(t,e),i=er(e),s=[n,function(){throw new bt(`Cannot access ${i}.`)}];function l(){return s}return function(){return l}}function ny(t,e){const n=de(t,e),i=er(e),s=[n,function(){throw new bt(`Cannot access ${i}.`)}];function l(){return s}return function(){return l}}function ry(t,e){const{[e]:n}=t,i=er(e),s=[n,function(){throw new bt(`Cannot access ${i}.`)}];function l(){return s}return function(){return l}}function Bc(t,e,n,i){let{length:s}=i;for(let l=0,{length:u}=n;l<u;l+=1)i[s++]=ty(t,e,n[l])}function Mo({document:t},e,n,i){let{length:s}=i,l=Kd.get(t);l===void 0&&(l=Yt(new kt),Kd.set(t,l));let u=l.get(e);u===void 0&&(u={__proto__:null},l.set(e,u));for(let L=0,{length:E}=n;L<E;L+=1){const N=n[L];let O=u[N];if(O===void 0){var p;O=(p=yt(e,N))!=null?p:null,O&&It(O,null),u[N]=O}if(O){const{value:H}=O;if("get"in O||"set"in O){const{get:J,set:x}=O;J&&(i[s++]=ey(e,N)),x&&(i[s++]=ny(e,N))}else typeof H=="function"&&(i[s++]=ry(e,N))}}}const qd=Yt(new kt);function oy(t,e){qd.set(t,e)}function Xd(t){return qd.get(t)}function rf({sandboxEvaluator:t},e){const n=`script${Qt(e)}`,{[n]:i}={[n](s){oy(this,Rc(s));const l=this,u=function(L){const E=c(ts,l,[]),N=c(ta,E,[]),O={[Dn]:N.location,[Lr]:N.top};return L=ss(L),t(L,O,N,E)};gi.createScriptURL(s,u,l)}};return i}function iy({globalObject:{HTMLScriptElement:t}}){const e=V(t.prototype,"src"),n=[e,function(){var s;return(s=Xd(this))!=null?s:c(e,this,[])}];return function(){return n}}function sy({globalObject:{HTMLScriptElement:t}}){const{set:e}=yt(t.prototype,"src");return function(i){const s=rf(i,"src");return wn(i,t,"src",qe,s),[e,s]}}function ay({globalObject:{DOMException:t,IDBObjectStore:{prototype:{add:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function ly({globalObject:{DOMException:t,IDBObjectStore:{prototype:{put:e}}}}){const n=[e,function(...s){try{return c(e,this,s)}catch(l){if(s.length&&l instanceof t){const u=s[0];if(fn(u))return s[0]=Rt(u),c(e,this,s)}throw l}}];return function(){return n}}function cy({globalObject:{JSON:{parse:t}}}){return function({trackAsFastTarget:n}){return[t,function(...s){const{length:l}=s;if(!l)return c(t,this,s);const{0:u}=s,p=l>1?s[1]:void 0,L=typeof p=="function";return c(t,this,[u,function(N,O){return typeof O=="object"&&O!==null&&(n(O),ir(O)),L?c(p,this,[N,O]):O}])}]}}function uy({globalObject:{DOMException:t,MessagePort:e}}){const{postMessage:n}=e.prototype,i=[n,function(...l){try{return c(n,this,l)}catch(u){const{length:p}=l;if(p&&u instanceof t){const L=l[0];if(fn(L))return p>1?l=Rt(l):l[0]=Rt(L),c(n,this,l)}throw u}}];return function(){return i}}function fy({globalObject:{Attr:t,NamedNodeMap:{prototype:{setNamedItem:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;return u&&u instanceof t?Ud(i,e,this,u):c(e,this,l)}]}}function dy({globalObject:{Attr:t,NamedNodeMap:{prototype:{setNamedItemNS:e}}}}){return function(i){return[e,function(...l){const u=l.length?l[0]:void 0;return u&&u instanceof t?Ud(i,e,this,u):c(e,this,l)}]}}function py({globalObject:{Navigator:{prototype:{sendBeacon:t}}}}){const e=[t,function(...i){if(i.length){const s=dl(xt(i[0]));if(!Oc(s))throw new bt(`Cannot request disallowed endpoint: ${s.normalizedURL}`);i[0]=s.normalizedURL}return c(t,this,i)}];return function(){return e}}function hy({globalObject:{Navigator:t}}){const e=V(t.prototype,"serviceWorker");if(typeof e!="function")return Wt;const n=[e,Wt];return function(){return n}}const{isSharedElement:my,isAllowedSharedElementChild:Sy}=se;function gy({globalObject:{Node:{prototype:{insertBefore:t}}}}){const e=[t,function(...i){if(i.length){const{0:s}=i;if(my(this)&&!Sy(s))throw new bt(`Cannot insert child ${c(qt,s,[])} into ${c(qt,this,[])},`)}return c(t,this,i)}];return function(){return e}}function yy({globalObject:{Attr:t,Node:e}}){const n=de(e.prototype,"nodeValue");return function(s){return[n,function(u){if(this instanceof t){const p=c(Xi,this,[]);if(p===null){c(n,this,[u]);return}const L=c(ii,this,[]),E=c(No,this,[]),N=ds(E),O=Fr(s,p,L,N);if(O){c(O,p,[u]);return}}c(n,this,[u])}]}}const{isSharedElement:Ly}=se;function by({globalObject:{Node:{prototype:{removeChild:t}}}}){const e=[t,function(...i){if(i.length){const{0:s}=i;if(Ly(s))throw new bt(`Cannot remove ${c(qt,s,[])}.`)}return c(t,this,i)}];return function(){return e}}const{isSharedElement:$y}=se;function _y({globalObject:{Node:{prototype:{replaceChild:t}}}}){const e=[t,function(...i){const{length:s}=i;if(s>1){const{1:l}=i;if($y(l))throw new bt(`Cannot replace ${c(qt,l,[])}.`)}return c(t,this,i)}];return function(){return e}}function Ey({globalObject:{HTMLScriptElement:t,Node:e,SVGScriptElement:n}}){const i=V(e.prototype,"textContent"),s=[i,function(){if(this instanceof t||this instanceof n){var u;return(u=Gh(this))!=null?u:c(i,this,[])}return c(i,this,[])}];return function(){return s}}const{isSharedElement:Wy}=se;function Ty({globalObject:{Attr:t,Node:e,HTMLScriptElement:n,SVGScriptElement:i},root:{distortions:s}}){const{get:l,set:u}=yt(e.prototype,"textContent");let p;return function(E){const{sandboxEvaluator:N}=E;return[u,function(H){const J=xt(H);if(this instanceof t){const x=c(Xi,this,[]);if(x===null){c(u,this,[J]);return}const Z=c(ii,this,[]),st=c(No,this,[]),Pt=ds(st),wt=Fr(E,x,Z,Pt);if(wt){c(wt,x,[J]);return}}else if(this instanceof n||this instanceof i){if(jh(this)||(p===void 0&&(p=s.get(l)),Cu(this,"textContent",p,u)),Bh(this,J),!Hh(this)){Uh(this)||(fl(this,(x,Z,st)=>{xh(this),fe(this,"textContent"),c(u,this,[J]),N(ss(J),x,Z,st)}),c(u,this,[Xt]));return}}else if(Wy(this))throw new bt(`Cannot set textContent of ${c(qt,this,[])} elements.`);c(u,this,[J])}]}}function vy({globalObject:{DOMException:t,Notification:e}}){if(typeof e!="function")return Wt;const n=[e,function(...s){try{return We(e,s)}catch(l){if(s.length>1&&l instanceof t){const u=s[1];if(Qn(u)){const{data:p}=u;if(fn(p))return s[1]={__proto__:u,data:Rt(p)},We(e,s)}}throw l}}];return function(){return n}}function wy({document:t,globalObject:{Range:{prototype:{createContextualFragment:e}}}}){return function({key:i}){return[e,function(...l){if(l.length){const{0:u}=l;u!=null&&(xr(t,i),l[0]=gi.createHTML(u,i,0))}return c(e,this,l)}]}}const{isSharedElement:Ay}=se;function Cy({globalObject:{AbstractRange:t,Range:{prototype:{deleteContents:e}}}}){const{prototype:n}=t??Range,i=V(n,"endContainer"),s=V(n,"startContainer"),l=[e,function(...p){const L=[c(i,this,[]),c(s,this,[])];for(let E=0,{length:N}=L;E<N;E+=1){const O=L[E];if(Ay(O))throw new bt(`Cannot delete contents of ${c(qt,O,[])}.`)}return c(e,this,p)}];return function(){return l}}const{isSharedElement:Py}=se;function Oy({globalObject:{AbstractRange:t,Range:{prototype:{extractContents:e}}}}){const{prototype:n}=t??Range,i=V(n,"endContainer"),s=V(n,"startContainer"),l=[e,function(...p){const L=[c(i,this,[]),c(s,this,[])];for(let E=0,{length:N}=L;E<N;E+=1){const O=L[E];if(Py(O))throw new bt(`Cannot extract contents of ${c(qt,O,[])}.`)}return c(e,this,p)}];return function(){return l}}const{isSharedElement:Ry,isAllowedSharedElementChild:Ny}=se;function Dy({globalObject:{Range:{prototype:{insertNode:t}}}}){const e=V(Range.prototype,"commonAncestorContainer"),n=[t,function(...s){if(s.length){const l=c(e,this,[]);if(l&&Ry(l)&&!Ny(s[0]))throw new bt(`Cannot insert a new child node of ${c(qt,l,[])}.`)}return c(t,this,s)}];return function(){return n}}const{isSharedElement:Iy}=se;function ko(t){return function({globalObject:{Range:{prototype:{[t]:n}}}}){const{[t]:i}={[t](...l){if(l.length){const{0:u}=l;if(Iy(u))throw new bt(`Cannot call ${t} with ${c(qt,u,[])}.`)}return c(n,this,l)}},s=[n,i];return function(){return s}}}const My=ko("setEnd"),ky=ko("selectNode"),xy=ko("selectNodeContents"),Fy=ko("setEndAfter"),Gy=ko("setEndBefore"),Hy=ko("setStart"),Uy=ko("setStartAfter"),jy=ko("setStartBefore"),By=ko("surroundContents");function Vy({globalObject:{ServiceWorkerContainer:t}}){if(typeof t!="function")return Wt;const{prototype:e}=t,n=[e,Tr(e)];return function(){return n}}function zy({document:t,globalObject:{ShadowRoot:e}}){const n=de(e.prototype,"innerHTML");return function({key:s}){return[n,function(u){xr(t,s),c(n,this,[gi.createHTML(u,s,0)])}]}}function Ky(){return"closed"}function qy({globalObject:{ShadowRoot:t}}){const n=[V(t.prototype,"mode"),Ky];return function(){return n}}function Xy(t){throw new bt(`Cannot create SharedWorker with ${er(t)}.`)}function Yy({globalObject:{SharedWorker:t}}){if(typeof t!="function")return Wt;const e=[t,Xy];return function(){return e}}function Jy({globalObject:{SharedWorker:t}}){if(typeof t!="function")return Wt;const{prototype:e}=t,n=[e,Tr(e)];return function(){return n}}function Vc(t,e){const n=vi(t),i=[];let s=0;for(let l=0,{length:u}=n;l<u;l+=1){const p=n[l];Oo(p,e)&&(i[s++]=p)}return i}function Qy(t,e){const{length:n}=t,i=lt(n);for(let s=0;s<n;s+=1){const l=t[s];i[s]=Jl(l,e)}return i}const xo=Yt(new kt);function aa(t){const e=xo.get(t);if(e===void 0)throw new bt(us);return e}function Zy(t){const e=new ln(t,{get(n,i,s){if(typeof i=="symbol")return Ht(n,i,s);const{namespace:l,storage:u}=xo.get(e),p=Nr(i,l);if(ke(u,p))return Ht(u,p);const L=Ct(n);return L===null?void 0:Ht(L,i,s)},set(n,i,s){if(typeof i=="symbol")return Dt(n,i,s);const{namespace:l,storage:u}=xo.get(e),p=Nr(i,l);return c(ld,u,[p,s]),!0},defineProperty(n,i,s){const l=s;if(It(l,null),typeof i=="symbol")return Se(n,i,l);const{namespace:u,storage:p}=xo.get(e),L=Nr(i,u);return Se(p,L,l)},deleteProperty(n,i){if(typeof i=="symbol")return fe(n,i);const{namespace:s,storage:l}=xo.get(e),u=Nr(i,s);return fe(l,u)},getOwnPropertyDescriptor(n,i){let s;if(typeof i=="symbol")s=yt(n,i);else{const{namespace:l,storage:u}=xo.get(e),p=Nr(i,l);s=yt(u,p)}return s&&It(s,null),s},ownKeys(n){const{namespace:i,storage:s}=xo.get(e),l=Vc(s,i),u=Qy(l,i),p=ur(n);return yr(u,p)},has(n,i){if(typeof i=="symbol")return oe(n,i);const{namespace:s,storage:l}=xo.get(e),u=Nr(i,s);if(ke(l,u))return!0;const p=Ct(n);return p===null?!1:oe(p,i)},preventExtensions(n){return!1}});return e}class of{constructor(){throw new bt(Fc)}get length(){const{namespace:e,storage:n}=aa(this);return Vc(n,e).length}key(...e){const{namespace:n,storage:i}=aa(this);if(e.length){const s=Vc(i,n),l=e[0],u=s[l],p=s[0],L=u||p;return typeof L!="string"?null:Jl(L,n)}return c(em,i,e)}getItem(...e){const{namespace:n,storage:i}=aa(this);return e.length&&(e[0]=Nr(xt(e[0]),n)),c(nm,i,e)}setItem(...e){const{namespace:n,storage:i}=aa(this);e.length>1&&(e[0]=Nr(xt(e[0]),n),e[1]=xt(e[1])),c(ld,i,e)}removeItem(...e){const{namespace:n,storage:i}=aa(this);e.length&&(e[0]=Nr(xt(e[0]),n)),c(ad,i,e)}clear(){const{namespace:e,storage:n}=aa(this),i=Vc(n,e);for(let s=0,{length:l}=i;s<l;s+=1){const u=i[s];c(ad,n,[u])}}}function tL(t,e){const n=Zy({__proto__:of.prototype});return ir(n),xo.set(n,{namespace:e,storage:t}),n}const{prototype:Yd}=of,{clear:eL,getItem:nL,key:rL,removeItem:oL,setItem:iL}=Yd,sL=V(Yd,"length");function Jd(t){return function({globalObject:n}){let i;try{i=n[t]}catch(s){}return fn(i)?function({key:l}){return[i,tL(i,l)]}:Wt}}function aL({globalObject:{Storage:t}}){const n=[V(t.prototype,"length"),sL];return function(){return n}}function lL({globalObject:{Storage:{prototype:{getItem:t}}}}){const e=[t,nL];return function(){return e}}function cL({globalObject:{Storage:{prototype:{setItem:t}}}}){const e=[t,iL];return function(){return e}}function uL({globalObject:{Storage:{prototype:{key:t}}}}){const e=[t,rL];return function(){return e}}function fL({globalObject:{Storage:{prototype:{removeItem:t}}}}){const e=[t,oL];return function(){return e}}function dL({globalObject:{Storage:{prototype:{clear:t}}}}){const e=[t,eL];return function(){return e}}function pL({globalObject:{Storage:t}}){const e=[t,of];return function(){return e}}const hL=Jd("localStorage"),mL=Jd("sessionStorage");function SL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){return function(i){function s(l,u){if(c(ui,l,[u])){const p=c(hn,l,[u]);if(p){const L=Fr(i,l,u);L&&c(L,l,[p])}}}wn(i,e,"attributeName",qe,function(u){c(t,this,["attributeName",u]),u==="href"&&(s(this,"from"),s(this,"to"),s(this,"values"))})}}function gL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){function n(i){c(hn,this,["attributeName"])==="href"&&(i=ls(i)),c(t,this,["from",i])}return function(s){wn(s,e,"from",qe,n)}}function yL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){function n(i){c(hn,this,["attributeName"])==="href"&&(i=ls(i)),c(t,this,["to",i])}return function(s){wn(s,e,"to",qe,n)}}function LL({globalObject:{Element:{prototype:{setAttribute:t}},SVGAnimateElement:e}}){function n(i){let s=i;if(c(hn,this,["attributeName"])==="href"){const l=c(Zr,i,[";"]),{length:u}=l;for(let p=0;p<u;p+=1)l[p]=ls(l[p]);s=c(Ai,l,[";"])}c(t,this,["values",s])}return function(s){wn(s,e,"values",qe,n)}}function bL({globalObject:{SVGElement:t}}){const e=V(t.prototype,"dataset"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function $L({globalObject:{SVGElement:t}}){const e=V(t.prototype,"style"),n=[e,function(){return ir(c(e,this,[]))}];return function(){return n}}function _L({globalObject:{SVGScriptElement:t}}){const e=V(t.prototype,"href"),n=[e,function(){var s;return(s=Xd(this))!=null?s:c(e,this,[])}];return function(){return n}}function EL({globalObject:{SVGScriptElement:t}}){return function(n){wn(n,t,"href",is,rf(n,"href")),wn(n,t,"xlink:href",is,rf(n,"xlink:href"))}}function WL({globalObject:{Element:{prototype:{setAttribute:t}},SVGSetElement:e}}){return function(i){function s(u,p){if(c(ui,u,[p])){const L=c(hn,u,[p]);if(L){const E=Fr(i,u,p);E&&c(E,u,[L])}}}function l(u){c(t,this,["attributeName",u]),u==="href"&&s(this,"to")}wn(i,e,"attributeName",qe,l)}}function TL({globalObject:{Element:{prototype:{setAttribute:t}},SVGSetElement:e}}){function n(i){c(hn,this,["attributeName"])==="href"&&(i=ls(i)),c(t,this,["to",i])}return function(s){wn(s,e,"to",qe,n)}}function Qd(t){return function({globalObject:{Element:{prototype:{setAttribute:n,setAttributeNS:i}},SVGUseElement:s}}){function l(u){const p=u==null||u===""?u:ls(u);c(i,this,[is,t,p])}return function(p){wn(p,s,t,is,l),t==="href"&&wn(p,s,t,qe,function(N){const O=N==null||N===""?N:ls(N);c(n,this,[t,O])})}}}const vL=Qd("href"),wL=Qd("xlink:href");function AL({globalObject:{TrustedTypePolicyFactory:t}}){var e;const n=t==null||(e=t.prototype)==null?void 0:e.createPolicy;if(typeof n!="function")return Wt;const i=[n,function(...l){const u=l.length?l[0]:void 0;if(u==="default")throw new bt(`Cannot create TrustedTypePolicy with '${u}' policy name.`);return c(n,this,l)}];return function(){return i}}const CL=zo(["text/html","image/svg+xml","text/xml"]);function PL({document:t,globalObject:e,globalObject:{MediaSource:n,URL:{createObjectURL:i}}}){const{isEqualDomString:s}=yu(t,e);return function({key:u}){const p=Xm(u);return[i,function(E){let N=c(i,this,[E]);if(n&&E instanceof n)return N;const O=c(Lu,E,[]);if(O===""){const J=c(pc,E,[0,void 0,"text/plain"]);return c(i,this,[J])}const H=c(Mn,O,[]);if(CL.includes(H)){const J=c(ns,E,[]),x=c(pc,E,[0,J,`${H};charset=utf-8`]);Y(N),N=c(i,this,[x]);const Z=new Ou;c(cd,Z,["GET",N,!1]),c(ud,Z,[]);const st=c(fd,Z,[]),Pt=p.sanitize(st);if(!s(st,Pt))throw Y(N),new bt(`Cannot 'createObjectURL' using a unsecure ${er(E)}.`);return N}if(im(H))return N;throw Y(N),new bt("Unsupported MIME type.")}]}}function OL({globalObject:{fetch:t}}){const e=[t,function(...i){let{0:s}=i;if(s!=null){let l;if(s instanceof Request?l=dl(c(Au,s,[])):(l=dl(xt(s)),s=l.normalizedURL,i[0]=s),!Oc(l)){const{normalizedURL:u}=l;return Ro(new bt(`Cannot request disallowed endpoint: ${er(u)}`))}}return c(t,this,i)}];return function(){return e}}class sf{defineProperty(e,n,i){return!0}deleteProperty(e,n){return!0}getOwnPropertyDescriptor(e,n){}isExtensible(e){return!0}ownKeys(e){return[]}preventExtensions(e){return!0}set(e,n,i,s){return!0}setPrototypeOf(e){return!1}}It(sf.prototype,null);class Zd extends sf{}function RL({globalObject:t}){const e=V(t,"frames");if(typeof e!="function")return Wt;const n=()=>{const l=Ct(t),u=Ct(l),p=c(tr,es,[t]),L=c(tr,Wt,[]),E=Mt=>{const K=typeof Mt=="string"?+Mt:-1;if(K>-1&&Ra(K)&&K<c(es,t,[])){const it=k(t,Mt);if(rl(it))return it}},N=Mt=>{if(typeof Mt=="string"&&!ke(t,Mt)&&!ke(l,Mt)){const K=k(u,Mt);if(rl(K))return K}},O=Mt=>Mt==="length"?c(es,t,[]):E(Mt);class H extends sf{get(K,it,Tt){const Nt=O(it);return Nt===void 0?Ht(K,it,Tt):Nt}getOwnPropertyDescriptor(K,it){if(it==="length")return{__proto__:null,configurable:!0,enumerable:!0,get:p,set:L};const Tt=E(it);if(Tt)return{__proto__:null,configurable:!0,enumerable:!0,value:Tt,writable:!1}}has(K,it){return oe(K,it)||O(it)!==void 0}ownKeys(){const{length:K}=t,it=lt(K+1);for(let Tt=0;Tt<K;Tt+=1)it[Tt]=`${Tt}`;return it[K]="length",it}}class J extends Zd{get(K,it,Tt){const Nt=N(it);return Nt===void 0?Ht(K,it,Tt):Nt}getOwnPropertyDescriptor(K,it){const Tt=N(it);return Tt===void 0?Tt:{__proto__:null,configurable:!0,enumerable:!0,value:Tt,writable:!1}}has(K,it){return oe(K,it)||N(it)!==void 0}ownKeys(){const K=[];let it=0;const Tt=Fn(u);It(Tt,null);for(const Nt in Tt)if(typeof Nt=="string"){const Gt=Tt[Nt];ke(Gt,"value")&&rl(Gt.value)&&(K[it++]=Nt)}return K}}const x={},Z={},st={},Pt=new H,wt=new Zd,$t=new J,U=new ln(Z,wt),z=new ln(st,$t);return It(x,U),It(Z,z),new ln(x,Pt)};let i;const s=[e,function(){return i===void 0&&(i=n()),i}];return function(){return s}}function NL({globalObject:{getComputedStyle:t}}){const e=[t,function(...i){return ir(c(t,this,i))}];return function(){return e}}function DL(){return 0}function IL({globalObject:t}){const e=V(t,"length");if(typeof e!="function")return Wt;const n=[e,DL];return function(){return n}}function ML({globalObject:t,globalObject:{Window:e}}){return jc(t,e,"securitypolicyviolation")}function kL({globalObject:t,globalObject:{Window:e}}){return jc(t,e,"storage")}function xL({globalObject:{open:t}}){const e=[t,function(...i){const s=Gd(i);return c(t,this,s)}];return function(){return e}}function tp({globalObject:{postMessage:t}}){const e=[t,function(...i){try{return c(t,this,i)}catch(s){const{length:l}=i;if(l){const u=i[0];if(fn(u)){const p=l>1?i[1]:void 0;if(Qn(p)){const{transfer:L}=p;i[1]={__proto__:p,transfer:L},i=Rt(i)}else i[0]=Rt(u);return c(t,this,i)}}throw s}}];return function(){return e}}function FL({UNCOMPILED_CONTEXT:t,globalObject:{setInterval:e}}){return function({sandboxEvaluator:i}){return[e,function(...l){if(l.length){const{0:u}=l;if(u!=null&&typeof u!="function"){const p=xt(u);let L;l[0]=()=>{L===void 0&&(L=ss(p)),i(L,t)}}}return c(e,this,l)}]}}function GL({UNCOMPILED_CONTEXT:t,globalObject:{setTimeout:e}}){return function({sandboxEvaluator:i}){return[e,function(...l){if(l.length){const{0:u}=l;if(u!=null&&typeof u!="function"){const p=xt(u);l[0]=()=>{i(ss(p),t)}}}return c(e,this,l)}]}}function HL({globalObject:{DOMException:t,structuredClone:e}}){if(typeof e!="function")return Wt;const n=[e,function(...s){try{return c(e,this,s)}catch(l){const{length:u}=s;if(u&&l instanceof t){const p=s[0];if(fn(p)){const L=u>1?s[1]:void 0;if(Qn(L)){const{transfer:E}=L;s[1]={__proto__:L,transfer:E},s=Rt(s)}else s[0]=Rt(p);return c(e,this,s)}}throw l}}];return function(){return n}}function UL(t){throw new bt(`Cannot create Worker with ${er(t)}.`)}function jL({globalObject:{Worker:t}}){const e=[t,UL];return function(){return e}}function BL({globalObject:{Worker:{prototype:t}}}){const e=[t,Tr(t)];return function(){return e}}function VL({globalObject:{XMLHttpRequest:{prototype:{open:t}}}}){const e=[t,function(...i){const s=i.length>1?i[1]:void 0;if(s!=null){const l=dl(xt(s));if(!Oc(l))throw new bt(`Cannot request disallowed endpoint: ${l.normalizedURL}`);i[1]=l.normalizedURL}c(t,this,i)}];return function(){return e}}function zL({document:t,globalObject:{Document:e,XMLHttpRequest:n}}){const i=V(n.prototype,"response");return function({key:l}){return[i,function(){const p=c(i,this,[]);return xr(t,l),p instanceof e?Cd(p,l):p}]}}function KL({document:t,globalObject:{XMLHttpRequest:e}}){const n=V(e.prototype,"responseXML");return function({key:s}){return[n,function(){const u=c(n,this,[]);return xr(t,s),Cd(u,s)}]}}const ep=[DS,jS,zS,KS,rg,ig,_g,Wg,vg,Fg,Gg,Hg,jg,Vg,Kg,qg,Xg,Jg,Qg,Zg,iy,ay,ly,uy,py,hy,by,_y,vy,Cy,Oy,Dy,ky,xy,My,Fy,Gy,Hy,Uy,jy,By,Vy,qy,Yy,Jy,pL,dL,lL,uL,aL,fL,cL,gL,yL,LL,bL,$L,TL,vL,wL,AL,OL,RL,NL,IL,ML,kL,xL,tp,HL,jL,BL,VL],np=[yS,LS,bS,$S,_S,ES,WS,vS,wS,AS,RS,NS,xS,FS,GS,HS,VS,XS,YS,IS,MS,kS,ug,mg,gg,wg,Ag,Cg,Pg,Ng,Ig,kg,xg,Ug,sy,cy,fy,dy,yy,Ey,Ty,wy,zy,hL,mL,SL,_L,EL,WL,PL,FL,GL,zL,KL],qL=yr(ep,[ZS,ng,lg,pg,bg,Rg,gy]),XL=np,YL=["createProcessingInstruction","exitFullscreen","fullscreen","fullscreenElement","fullscreenEnabled","mozCancelFullScreen","mozFullScreen","mozFullScreenElement","mozFullScreenEnabled","onfullscreenchange","onfullscreenerror","onmozfullscreenchange","onmozfullscreenerror","onrejectionhandled","onunhandledrejection","releaseCapture","releaseEvents","webkitFullScreenKeyboardInputAllowed","write","writeln"],JL=["mozRequestFullScreen","onfullscreenchange","onfullscreenerror","requestFullscreen","webkitRequestFullScreen","webkitRequestFullscreen"];function QL({UNCOMPILED_CONTEXT:t,globalObject:{eval:e}}){return function({sandboxEvaluator:i}){return[e,s=>i(ss(xt(s)),t)]}}const ZL=["nonce"],tb=["nonce","onrejectionhandled","onunhandledrejection"],eb=["getSVGDocument"],nb=["allowpaymentrequest","referrerpolicy","srcdoc"],rb=["allowPaymentRequest","csp","featurePolicy","getSVGDocument","referrerPolicy","srcdoc"],ob=["getSVGDocument"],ib=["nonce"],sb=["nonce"],ab=["nonce"],lb=["nonce"],cb=["transformToDocument","transformToFragment"],rp=Yt(new kt),op=Yt(new kt),ip=Yt(new kt),ub=!al;function sp(t,e){const n=[];for(let i=0,{length:s}=e;i<s;i+=1){const l=e[i],u=l(t);if(u){const{0:p,1:L}=u;typeof p=="function"?n[n.length]=[p,lf(t,l,L,p)]:typeof p=="object"&&p!==null&&(n[n.length]=u)}}return n}function af(t){return ub?Yt(new kt(t)):Vn(new dn(t))}function ap(t){const{document:e,globalObject:n,type:i}=t;let s=rp.get(e);if(s)return s;const{Document:l,Element:u,HTMLElement:p,HTMLIFrameElement:L,HTMLScriptElement:E,SVGElement:N,XSLTProcessor:O}=n,H=i===1?yr(ep,np):yr(qL,XL);Bc(p,"HTMLElement",ZL,H),Bc(L,"HTMLIFrameElement",nb,H),Bc(E,"HTMLScriptElement",ib,H),Bc(N,"SVGElement",ab,H),Mo(t,l.prototype,YL,H),Mo(t,u.prototype,JL,H),Mo(t,p.prototype,tb,H),Mo(t,L.prototype,rb,H),Mo(t,HTMLEmbedElement.prototype,eb,H),Mo(t,HTMLObjectElement.prototype,ob,H),Mo(t,E.prototype,sb,H),Mo(t,N.prototype,lb,H),typeof O=="function"&&Mo(t,O.prototype,cb,H),SS(e,n),s=H;for(let J=0,{length:x}=s;J<x;J+=1)s[J]=H[J](t);return s[s.length]=gS,rp.set(e,s),s}function fb(t){const{document:e}=t;let n=op.get(e);return n||(n=QL(t),op.set(e,n),n)}function db(t){const{globalObject:e}=t;let n=ip.get(e);return n||(n=tp(t),ip.set(e,n),n)}function lf({BASIC_INSTRUMENTATION_DATA:t,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:e,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:n,instrumentation:i,key:s},l,u,p){let L,E;if(n){({startActivity:E}=i);const{name:N}=l;L=N?c(ne,N,[Nn,""]):"<unknown>"}return jn(u,p,{apply:function(N,O,H){let J;n&&(J=E(L,t));try{return c(N,O,H)}catch(x){throw e&&J.error({sandboxKey:s,error:x}),x}finally{n&&J.stop()}},construct:function(N,O,H){let J;n&&(J=E(L,t));try{return We(N,O,H)}catch(x){throw e&&J.error({sandboxKey:s,error:x}),x}finally{n&&J.stop()}}})}let cf,uf;function ff(){const t=cf;return cf=void 0,t}function lp(){const t=uf;return uf=void 0,t}function df(t){cf=t}function cp(t){uf=t}const pb="lws-core-sandbox",up={[Wr]:{__proto__:null,get(){return ff()}},[Qr]:{__proto__:null,get(){return lp()}}},hb=af(),Xe={},mb={[Dn]:tl,[Lr]:sc},{apply:Jt,defineProperty:pf,deleteProperty:ml,getPrototypeOf:la,ownKeys:Sl,setPrototypeOf:yi}=Reflect,fp=Object,{assign:gl,freeze:Sb,keys:dp,prototype:pp}=fp,{hasOwn:hp}=fp,{__lookupGetter__:gb,__lookupSetter__:F_,hasOwnProperty:yb}=pp,Lb=typeof hp=="function"?hp:function(e,n){return Jt(yb,e,[n])},{toString:bb}=pp;function mp(t){return typeof t=="object"&&t!==null}function Fo(t,e){return t==null||!Lb(t,e)?void 0:Jt(gb,t,[e])}const $b=Symbol,{for:yl,iterator:zc,toStringTag:ca,unscopables:Sp}=$b,Ll=Array,{prototype:bl}=Ll,{at:_b,concat:Eb,copyWithin:Wb,entries:Tb,every:vb,fill:wb,findIndex:Ab,flat:Cb,flatMap:Pb,forEach:Ob,indexOf:Rb,join:Nb,keys:Db,lastIndexOf:Ib,map:Mb,pop:kb,reduce:xb,reduceRight:Fb,reverse:Gb,slice:Hb,some:Ub,splice:jb,toLocaleString:Bb,toString:Vb,values:zb,[zc]:Kb}=bl,qb=Sb(gl({__proto__:null},bl[Sp])),{filter:gp,find:yp,includes:hf,shift:Xb,sort:Lp,unshift:bp}=bl,{push:$l}=bl,{isArray:_l}=Ll;function Yb(t){return yi(t,null),t.at=_b,t.concat=Eb,t.copyWithin=Wb,t.entries=Tb,t.every=vb,t.fill=wb,t.filter=gp,t.find=yp,t.findIndex=Ab,t.flat=Cb,t.flatMap=Pb,t.forEach=Ob,t.includes=hf,t.indexOf=Rb,t.join=Nb,t.keys=Db,t.lastIndexOf=Ib,t.map=Mb,t.pop=kb,t.push=$l,t.reduce=xb,t.reduceRight=Fb,t.reverse=Gb,t.shift=Xb,t.slice=Hb,t.some=Ub,t.sort=Lp,t.splice=jb,t.toLocaleString=Bb,t.toString=Vb,t.unshift=bp,t.values=zb,t[zc]=Kb,t[Sp]=qb,yi(t,bl),t}Fo(ArrayBuffer.prototype,"byteLength");const Jb=`${function t(){return t.name}()}`.includes("LOCKER_UNMINIFIED_FLAG"),Kc="\u2026",$p=yl("@@lockerNearMembraneSerializedValue"),_p=yl("@@lockerNearMembrane");yl("@@lockerLiveValue");const Ep="[object BigInt]",Qb="[object Boolean]",Zb="[object Number]",Wp="[object String]",mf="[object Symbol]",Tp=Map,{prototype:qc}=Tp,{clear:t$,delete:e$,forEach:n$,get:r$,has:o$,keys:i$,values:s$,[zc]:a$,[ca]:l$}=qc,{entries:c$,set:u$}=qc,f$=Fo(qc,"size");function d$(t){return yi(t,null),t.clear=t$,t.delete=e$,t.entries=c$,t.forEach=n$,t.get=r$,t.has=o$,t.keys=i$,t.set=u$,pf(t,"size",{__proto__:null,configurable:!0,enumerable:!0,get:f$,set:void 0}),t.values=s$,t[zc]=a$,t[ca]=l$,yi(t,qc),t}const p$=Number,{isFinite:h$,isInteger:m$}=p$,S$=RegExp,{prototype:vp}=S$,{test:g$}=vp;Fo(vp,"source");const y$=Set,{prototype:L$}=y$;Fo(L$,"size");const El=String,{prototype:b$}=El,{slice:Sf,valueOf:G_}=b$,gf=WeakMap,{prototype:yf}=gf,{has:$$}=yf,{delete:_$,get:E$,set:W$,[ca]:T$}=yf;function Lf(t){return yi(t,null),t.delete=_$,t.get=E$,t.has=$$,t.set=W$,t[ca]=T$,yi(t,yf),t}const wp=WeakSet,{prototype:bf}=wp,{has:v$}=bf,{add:w$,delete:A$,[ca]:C$}=bf;function P$(t){return yi(t,null),t.add=w$,t.delete=A$,t.has=v$,t[ca]=C$,yi(t,bf),t}const{stringify:O$}=JSON;function R$(t){if(typeof t=="object"&&t!==null||typeof t=="function")return $p in t?void 0:t[$p]}function N$(t){return typeof t=="object"&&t!==null||typeof t=="function"?!(_p in t)&&t[_p]===!0:!1}d$(new Tp);const D$=Error,Xc=TypeError;function Oe(){}const{min:Ap}=Math,Wl=window,{navigator:I$,navigator:{userAgentData:$f}}=Wl,_f=$f==null?void 0:$f.brands,M$=/ (?:Headless)?Chrome\/\d+/;let Ef;function k$(){return Ef===void 0&&(Ef=I$.userAgent),Ef}const Cp=_l(_f)&&_f.length?Jt(yp,_f,[t=>(t==null?void 0:t.brand)==="Chromium"])!==void 0:Jt(g$,M$,[k$()]),x$=Cp&&$f===void 0,{prototype:Pp}=Document,{close:F$,createElement:G$,open:H$}=Pp,U$=Fo(Pp,"body");Fo(DOMException.prototype,"code");const{remove:j$,setAttribute:B$}=Element.prototype,V$=Fo(HTMLElement.prototype,"style"),z$=Fo(HTMLIFrameElement.prototype,"contentWindow"),{prototype:Op}=Node,{appendChild:K$}=Op,q$=Fo(Op,"lastChild");if(Jb){let t=!0;const e=yl("@@lockerDebugMode"),n=100,i=5,s=100,l=s/2,u="display: inline-block; margin-bottom: 3px; margin-left: -3px; word-break: break-all; word-wrap: wrap;",p={style:"margin-left:11px; margin-bottom: 3px;"},L={style:"display: inline-block; margin-left:12px; word-break: break-all; word-wrap: wrap;"},E={style:"color: #9d288c; font-weight: bold"},N={style:"color: #b17ab0"},O={style:"color: #16239f"},H={style:"color: #236d25"},J={style:"color: #606367"},x={style:"color: #b82619"},Z=function(U){if(U==null)return["span",J,`${U}`];if(typeof U=="boolean")return["span",O,U];if(typeof U=="number")return h$(U)?["span",O,U]:["span",O,`${U>=0?"":"-"}Infinity`];if(typeof U=="string"){let z=U;const{length:Mt}=z;if(Mt>s){const K=Jt(Sf,z,[0,l]),it=Jt(Sf,z,[Mt-l-1,Mt]);z=K+Kc+it}return["span",x,O$(z)]}return _l(U)?["span",{},`Array(${U.length})`]:mp(U)?["span",{},`{${Kc}}`]:["span",x,El(U)]},st=function(U,z){const Mt=z==null?void 0:z.isChildElement,K=[];let it=0;Mt&&(K[it++]=["span",E,z.childKey],K[it++]=["span",{},": "]);const Tt=Jt(bb,U,[]);let Nt=dp(U);if(Tt===mf)Jt(hf,Nt,["description"])||Jt(bp,Nt,["description"]);else if(Tt===Wp){const{length:ce}=U;Nt=Jt(gp,Nt,[on=>{const Sn=typeof on=="string"?+on:-1;return Sn<0||Sn>=ce||!m$(Sn)}])}const{length:Gt}=Nt;if(_l(U)){K[it++]=["span",Mt?J:{},`(${U.length}) [`];for(let ce=0,on=Ap(Gt,n);ce<on;ce+=1){const Sn=Nt[ce],Le=U[Sn];K[it++]=["span",{},ce?", ":""],K[it++]=Z(Le)}return Gt>n&&(K[it++]=["span",null,["span",{},`, ${Kc}`]]),K[it++]=["span",{},"]"],K}let mn,he="{";switch(Tt){case Ep:case Qb:case Zb:case Wp:case mf:{let ce=O;Tt===Ep?ce=H:Tt===mf&&(ce=x),he=`${Jt(Sf,Tt,[8,-1])} {`,mn=["span",ce,`${El(R$(U))}`];break}}K[it++]=["span",{},he],mn&&(K[it++]=mn,Gt&&(K[it++]=["span",{},", "]));for(let ce=0,on=Ap(Gt,i);ce<on;ce+=1){const Sn=Nt[ce],Le=U[Sn];K[it++]=["span",{},ce?", ":""],K[it++]=["span",J,Sn],K[it++]=["span",{},": "],K[it++]=Z(Le)}return Gt>i&&(K[it++]=["span",null,["span",{},`, ${Kc}`]]),K[it++]=["span",{},"}"],K},Pt=function(U){const z=dp(U),Mt=Sl(U);_l(U)||Jt(Lp,Mt,[]);const K=[];let it=0;for(let Tt=0,{length:Nt}=Mt;Tt<Nt;Tt+=1){const Gt=Mt[Tt],mn=U[Gt];if(mp(mn))K[it++]=["div",{},["object",{object:mn,config:{childKey:El(Gt),isChildElement:!0}}]];else{let he=E;(typeof Gt=="symbol"||!Jt(hf,z,[Gt]))&&(he=N),K[it++]=["div",p,["span",he,El(Gt)],["span",{},": "],Z(mn)]}}return K};let{devtoolsFormatters:wt}=Wl;_l(wt)||(wt=[],pf(Wl,"devtoolsFormatters",{__proto__:null,configurable:!0,value:wt,writable:!0})),wt[wt.length]={header($t,U){if(t&&(t=!1,pf(Wl,e,{__proto__:null,configurable:!0,value:!0,writable:!0})),!N$($t))return null;const z=["div",{style:`${u}${U!=null&&U.isChildElement?"":"font-style: italic;"}`}];return Jt($l,z,st($t,U)),["div",{},z]},hasBody(){return!0},body($t){const U=["div",L];return Jt($l,U,Pt($t)),U}}}const Rp=Lf(new gf);function Np(t){var e,n,i,s,l;const u=Array,p=ArrayBuffer,L=Error,E=Number,N=Object,O=Proxy,H=Reflect,J=RegExp,x=String,Z=Symbol,st=TypeError,Pt=WeakMap,wt=WeakSet,{for:$t,toStringTag:U}=Z,{apply:z,construct:Mt,defineProperty:K,deleteProperty:it,get:Tt,getOwnPropertyDescriptor:Nt,getPrototypeOf:Gt,has:mn,isExtensible:he,ownKeys:ce,preventExtensions:on,set:Sn,setPrototypeOf:Le}=H,{assign:Tl,defineProperties:ua,freeze:hs,getOwnPropertyDescriptor:Re,getOwnPropertyDescriptors:ms,isFrozen:xe,isSealed:fa,keys:me,prototype:sn,seal:Ss}=N,{hasOwnProperty:da,propertyIsEnumerable:Li,toString:Go}=sn,{hasOwn:Gr}=N,{__defineGetter__:Hr,__defineSetter__:gs,__lookupGetter__:Ur,__lookupSetter__:jr}=sn,uo=typeof Gr=="function"?Gr:(St,Qe)=>z(da,St,[Qe]),An=(e=(n=t??(typeof globalThis!="undefined"?globalThis:void 0))!=null?n:typeof self!="undefined"?self:void 0)!=null?e:(K(sn,"globalThis",{__proto__:null,configurable:!0,get(){return it(sn,"globalThis"),this!=null?this:self}}),globalThis),mt=typeof t!="object"||t===null,Ne=!mt,vl=Ne?$t("@@lockerDebugMode"):void 0,ys="$LWS",ar=Ne?$t("@@lockerNearMembraneSerializedValue"):void 0,Yn=Ne?$t("@@lockerNearMembrane"):void 0,vt=$t("@@lockerNearMembraneUndefinedValue"),bi=20,$i=`${function St(){return St.name}()}`.includes("LOCKER_UNMINIFIED_FLAG"),Ho=$i&&Ne,fo="Illegal property access.",pa=mt?/\w*$/:void 0;let De;const Uo=typeof BigInt=="function",{isArray:gn}=u,{includes:po,indexOf:Ls,slice:Br}=u.prototype,{isView:ha}=p,wl=Uo?BigInt.prototype.valueOf:void 0,{valueOf:Ie}=Boolean.prototype,{toString:ho}=L.prototype,{bind:$e,toString:yn}=Function.prototype,{stringify:Vr}=JSON,{isInteger:lr}=E,{valueOf:xn}=E.prototype,{revocable:Of}=O,{prototype:mo}=J,{exec:Al,test:Qc,toString:zr}=mo,Cl=mt?(i=z(Ur,mo,["flags"]))!=null?i:function(){const Qe=z(zr,this,[]);return z(Al,pa,[Qe])[0]}:void 0,Zc=z(Ur,mo,["source"]),{replace:tu,slice:eu,valueOf:bs}=x.prototype,{toString:Kr,valueOf:nu}=Z.prototype,Pl=(s=An.BigInt64Array)==null?void 0:s.prototype,Ol=(l=An.BigUint64Array)==null?void 0:l.prototype,{prototype:ru}=Float32Array,{prototype:Rf}=Float64Array,{prototype:_t}=Int8Array,{prototype:w}=Int16Array,{prototype:X}=Int32Array,{prototype:at}=Uint8Array,{prototype:Kt}=Uint16Array,{prototype:Ln}=Uint32Array,Ye=at.__proto__,Je=z(Ur,Ye,["length"]),{prototype:$s}=Pt,{delete:an,has:Rl,set:ou,[U]:Xp}=$s,{prototype:Yp}=wt,{add:E_,has:W_,delete:T_,[U]:v_}=Yp,Nf=Ne&&typeof console=="object"&&console!==null?console:void 0,w_=Nf==null?void 0:Nf.info,A_=mt?eval:void 0;let Jp=!1,Qp=!1;function Be(){return!1}const Zp=$i?()=>{if(Jp)return;Jp=!0;const St=(()=>{try{var cr;L.prepareStackTrace=(nt,Zt)=>Zt;const qr=new L().stack;return it(L,"prepareStackTrace"),gn(qr)&&qr.length>0?(cr=qr[0])==null?void 0:cr.constructor:void 0}catch(qr){}})();if(typeof St!="function")return;const{getEvalOrigin:Qe,getFunctionName:Nl,toString:iu}=St.prototype,Dl=new J(`${z(tu,ys,[/[\\^$.*+?()[\]{}|]/g,"\\$&"])}(?=\\.|$)`),Il=function(qr,nt){let Zt="";try{Zt=z(ho,qr,[])}catch(_i){Zt="<error>"}let ue=!1;for(let _i=0,{length:Ei}=nt;_i<Ei;_i+=1){const ae=nt[_i],ma=z(Nl,ae,[]);let _s=!1;if(typeof ma=="string"&&ma!=="eval"&&z(Qc,Dl,[ma])&&(_s=!0),!_s){const Cn=z(Qe,ae,[]);typeof Cn=="string"&&z(Qc,Dl,[Cn])&&(_s=!0)}if(_s){ue||(ue=!0,Zt+=` |
| | | at LWS`);continue}else ue=!1;try{Zt+=` |
| | | at ${z(iu,ae,[])}`}catch(Cn){}}return Zt};try{L.prepareStackTrace=function(qr,nt){return Il(qr,nt)}}catch(cr){}try{const{stackTraceLimit:cr}=L;(typeof cr!="number"||cr<bi)&&(L.stackTraceLimit=bi)}catch(cr){}}:Bt;function Bt(){}const th=mt?St=>z(wl,St,[]):Bt,eh=mt?St=>z(Ie,St,[]):Bt,nh=mt?St=>z(xn,St,[]):Bt,rh=mt?St=>{if(St!==mo){const Qe=z(Zc,St,[]);return Vr({__proto__:null,flags:z(Cl,St,[]),source:Qe})}}:Bt,oh=mt?St=>z(bs,St,[]):Bt,ih=mt?St=>z(nu,St,[]):Bt,C_=mt?St=>{switch(z(Go,St,[])){case"[object Boolean]":return eh(St);case"[object Number]":return nh(St);case"[object RegExp]":return rh(St);case"[object String]":return oh(St);case"[object Object]":try{return ih(St)}catch(Nl){}if(Uo)try{return th(St)}catch(Nl){}default:return}}:Bt,P_=mt?St=>{try{return ih(St)}catch(Qe){}if(Uo)try{return th(St)}catch(Qe){}try{return eh(St)}catch(Qe){}try{return nh(St)}catch(Qe){}try{return rh(St)}catch(Qe){}try{return oh(St)}catch(Qe){}}:Bt;function O_(St){if(typeof St=="string")return St;try{if(typeof St=="object"&&St!==null){const Qe=z(Go,St,[]);return Qe==="[object Symbol]"?z(Kr,St,[]):Qe}return typeof St=="function"?z(yn,St,[]):x(St)}catch(Qe){}return"[Object Unknown]"}function sh(St){return Le(St,null),St.delete=an,St.has=Rl,St.set=ou,St[U]=Xp,Le(St,$s),St}function R_(St){return Le(St,null),St.add=E_,St.delete=T_,St.has=W_,St[U]=v_,Le(St,Yp),St}return function(Qe,Nl,iu){mt&&(iu=void 0);const{distortionCallback:Dl,instrumentation:Il,liveTargetCallback:cr,revokedProxyCallback:qr}=Tl({__proto__:null},iu),nt=Ne&&typeof Il=="object"&&Il!==null,Zt={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},ue={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},_i=sh(new Pt),Ei=sh(new Pt),ae=nt?Il.startActivity:void 0;let ma,_s,Cn,Wi,ah,lh,Df,If,ch,uh,fh,dh,ph,hh,mh,Sh,Mf,gh,yh,kf,Lh,Sa,bh,$h,_h,Eh,Wh,Th,ga,xf,Ff,Gf,Hf,Uf,jf,Bf,Vf,zf,Kf,qf,Xf,W,Ze=0,Ml=!1,jo=mt,kl=mt;const vh=mt?(v,b,y)=>{y[b]=!1;const $=ot(v);let A;try{If($,b,(C,D,M,F,ft,ct,I)=>{A=ya(D,M,F,ft,ct,I)})}catch(C){var R;const D=(R=W)!=null?R:C;throw W=void 0,D}A?K(v,b,A):it(v,b)}:Bt;let xl=Ho?()=>{try{uo(An,vl)&&(xl=()=>!0,Zp(),Lh())}catch(v){xl=Be}return!1}:Be;const wh=mt?()=>{ga=R_(new wt)}:Bt;function Yf(v,b){let y;nt&&(y=ae("copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget"));let $;try{$=Eh(v,(...C)=>{const D={};for(let M=0,{length:F}=C;M<F;M+=7){const ft=C[M];D[ft]=ya(C[M+1],C[M+2],C[M+3],C[M+4],C[M+5],C[M+6])}ua(b,D)})}catch(C){var A;const D=(A=W)!=null?A:C;throw W=void 0,nt&&y.error(D),D}let R;typeof $=="function"?($(),R=W,W=void 0):R=null,Le(b,R),nt&&y.stop()}function Ah(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}()`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==0){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Ch(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(1)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==1){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Ph(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(2)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==2){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Oh(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(3)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==3){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut,2:te}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut,typeof te=="object"&&te!==null||typeof te=="function"?ot(te):typeof te=="undefined"?void 0:te)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Rh(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(4)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==4){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut,2:te,3:cn}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut,typeof te=="object"&&te!==null||typeof te=="function"?ot(te):typeof te=="undefined"?void 0:te,typeof cn=="object"&&cn!==null||typeof cn=="function"?ot(cn):typeof cn=="undefined"?void 0:cn)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Nh(v){const b=v&1,y=`Reflect.${b?"apply":"construct"}(5)`,$=b?Zt:ue,A=b?Cn:Wi;return function(C,D,M){Ze=v;const F=b?M:D,{length:ft}=F;if(ft!==5){var ct;return this[(ct=$[ft])!=null?ct:$.n](C,D,M)}let I;nt&&(I=ae(y));const{foreignTargetPointer:Q}=this,G=b?D:M;let B;try{const{0:et,1:ut,2:te,3:cn,4:Ti}=F;B=A(Q,typeof G=="object"&&G!==null||typeof G=="function"?ot(G):typeof G=="undefined"?void 0:G,typeof et=="object"&&et!==null||typeof et=="function"?ot(et):typeof et=="undefined"?void 0:et,typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut,typeof te=="object"&&te!==null||typeof te=="function"?ot(te):typeof te=="undefined"?void 0:te,typeof cn=="object"&&cn!==null||typeof cn=="function"?ot(cn):typeof cn=="undefined"?void 0:cn,typeof Ti=="object"&&Ti!==null||typeof Ti=="function"?ot(Ti):typeof Ti=="undefined"?void 0:Ti)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&I.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&I.stop(),ht}}function Dh(v){const b=v&1,y=b?"apply":"construct",$=b?Cn:Wi;return function(R,C,D){Ze=v;const{foreignTargetPointer:M}=this,F=b?D:C,{length:ft}=F;let ct;nt&&(ct=ae(`Reflect.${y}(${ft})`));const I=b?C:D;let Q=2;const G=new u(ft+Q);G[0]=M;let B;try{G[1]=typeof I=="object"&&I!==null||typeof I=="function"?ot(I):typeof I=="undefined"?void 0:I;for(let et=0;et<ft;et+=1){const ut=F[et];G[Q++]=typeof ut=="object"&&ut!==null||typeof ut=="function"?ot(ut):typeof ut=="undefined"?void 0:ut}B=z($,void 0,G)}catch(et){var dt;const ut=(dt=W)!=null?dt:et;throw W=void 0,nt&&ct.error(ut),ut}let ht;return typeof B=="function"?(B(),ht=W,W=void 0):ht=B,nt&&ct.stop(),ht}}function ya(v,b,y,$,A,R){const C={__proto__:null};return v!==vt&&(C.configurable=v),b!==vt&&(C.enumerable=b),y!==vt&&(C.writable=y),A!==vt&&(typeof A=="function"?(A(),C.get=W,W=void 0):C.get=void 0),R!==vt&&(typeof R=="function"?(R(),C.set=W,W=void 0):C.set=void 0),$!==vt&&(typeof $=="function"?($(),C.value=W,W=void 0):C.value=$),C}function Fl(v){return()=>{W=v}}const Jf=mt?()=>{jo=!1,kl=!1,wh()}:Bt,Gl=mt?v=>{let b=_i.get(v);if(b===void 0){const y=gh(ot(v));typeof y=="function"&&(y(),b=W,W=void 0,b&&_i.set(v,b))}return b}:Bt,Qf=mt?v=>v===(Vf===void 0?Vf=ot(sn):Vf):Be,Zf=mt?v=>v===(Gf===void 0?Gf=ot(ru):Gf)||v===(Hf===void 0?Hf=ot(Rf):Hf)||v===(Uf===void 0?Uf=ot(_t):Uf)||v===(jf===void 0?jf=ot(w):jf)||v===(Bf===void 0?Bf=ot(X):Bf)||v===(Kf===void 0?Kf=ot(at):Kf)||v===(qf===void 0?qf=ot(Kt):qf)||v===(Xf===void 0?Xf=ot(Ln):Xf)||v===(zf===void 0?zf=ot(Ye):zf)||v===(xf===void 0?xf=Pl?ot(Pl):Bt:xf)||v===(Ff===void 0?Ff=Ol?ot(Ol):Bt:Ff):Be;function ot(v,b=_s){let y=Ei.get(v);if(y)return y;let $=0,A="",R=0;if(qr&&qr(v))return y=b(Fl(v),64,$,A,R),Ei.set(v,y),y;let C,D=16;if(Dl){if(C=Dl(v),C!==v&&typeof C!=typeof v)throw new st(`Invalid distortion ${O_(v)}.`)}else C=v;let M=!0;if(typeof C=="function"){M=!1,$=0,D=4;try{"prototype"in C||(D|=8);const F=Nt(v,"length");if(F){Le(F,null);const{value:ct}=F;typeof ct=="number"&&($=ct)}const ft=void 0}catch(F){M=!0}}else if(ha(C)){M=!1,D=2;try{R=z(Je,C,[]),D|=32}catch(F){M=!0}}if(M)try{gn(C)&&(D=1)}catch(F){D=64}return y=b(Fl(C),D,$,A,R),Ei.set(v,y),y}const N_=mt?v=>{if(Qp)return;Qp=!0;const b=gn(v)&&v.length>0,y=b?{__proto__:null}:void 0,$=b?(I,Q)=>z(po,v,[Q])?{configurable:!1,enumerable:z(Li,I,[Q]),get:A(Q),set:void 0}:Nt(I,Q):void 0,A=b?I=>{let Q=y[I];return Q===void 0&&(Q=z($e,D,[]),y[I]=Q),Q}:void 0,R=b?(I,Q)=>z(po,v,[Q])?A(Q):z(Ur,I,[Q]):void 0,C=b?(I,Q)=>z(po,v,[Q])?void 0:z(jr,I,[Q]):void 0,D=b?()=>An:void 0,M=I=>{const{length:Q}=I,G=Q===2;return new O(I,{apply(B,dt,ht){if(ht.length>=Q){const et=G?dt:ht[0];if(typeof et=="object"&&et!==null||typeof et=="function"){const ut=G?ht[0]:ht[1],te=Gl(et);te!=null&&te[ut]&&et[ut]}}return z(I,dt,ht)}})},F=(I,Q)=>new O(I,{apply(G,B,dt){if(dt.length&&(typeof B=="object"&&B!==null||typeof B=="function")){const{0:ht}=dt,et=Gl(B);if(et!=null&&et[ht]&&B[ht],b&&B===An)return Q(B,ht)}return z(I,B,dt)}}),ft=I=>new O(I,{apply(Q,G,B){if(B.length>1){const{0:dt,1:ht}=B;if(typeof dt=="object"&&dt!==null||typeof dt=="function"){const et=Gl(dt);if(et!=null&&et[ht]&&dt[ht],b&&dt===An)return $(dt,ht)}}return z(I,G,B)}}),ct=I=>new O(I,{apply(Q,G,B){const dt=B.length?B[0]:void 0;if(!(typeof dt=="object"&&dt!==null||typeof dt=="function"))return z(I,G,B);const ht=Gl(dt),et=dt===An&&b,ut=et?{}:z(I,G,B);if(!et&&ht===void 0)return ut;const te=ce(et?dt:ut);for(let cn=0,{length:Ti}=te;cn<Ti;cn+=1){const La=te[cn],Mh=!!(ht!=null&&ht[La]);if(Mh&&dt[La],Mh||et){const kh=et?$(dt,La):Nt(dt,La);kh?ut[La]=kh:et||it(ut,La)}}return ut}});try{H.defineProperty=M(K)}catch(I){}try{H.getOwnPropertyDescriptor=ft(Nt)}catch(I){}try{N.getOwnPropertyDescriptor=ft(Re)}catch(I){}try{N.getOwnPropertyDescriptors=ct(ms)}catch(I){}try{sn.__defineGetter__=M(Hr)}catch(I){}try{sn.__defineSetter__=M(gs)}catch(I){}try{sn.__lookupGetter__=F(Ur,R)}catch(I){}try{sn.__lookupSetter__=F(jr,C)}catch(I){}}:Bt;function td(v,b,y){let $;nt&&($=ae("lookupForeignDescriptor"));let A,R;try{A=Th(v,y,(M,F,ft,ct,I,Q,G)=>{R={__proto__:null,foreign:!0},F!==vt&&(R.configurable=F),ft!==vt&&(R.enumerable=ft),ct!==vt&&(R.writable=ct),Q!==vt&&(typeof Q=="function"?(Q(),R.get=W,W=void 0):R.get=void 0),G!==vt&&(typeof G=="function"?(G(),R.set=W,W=void 0):R.set=void 0),I!==vt&&(typeof I=="function"?(I(),R.value=W,W=void 0):R.value=I),F===!1&&K(b,M,R)})}catch(M){var C;const F=(C=W)!=null?C:M;throw W=void 0,nt&&$.error(F),F}if(R===void 0){let M;for(typeof A=="function"?(A(),M=W,W=void 0):M=null;M;){if(R=Nt(M,y),R){Le(R,null);break}M=Gt(M)}if(R){var D;const{get:F,set:ft,value:ct}=R,I=(D=F??ft)!=null?D:ct;R.foreign=(typeof I=="object"&&I!==null||typeof I=="function")&&Ei.get(I)!==void 0}}return nt&&$.stop(),R}function D_(v,b,y,$,A){const R=td(v,b,y);if(R){if("get"in R||"set"in R){const{set:D}=R;return D?(R.foreign?Cn(ot(D),typeof A=="object"&&A!==null||typeof A=="function"?ot(A):typeof A=="undefined"?void 0:A,typeof $=="object"&&$!==null||typeof $=="function"?ot($):typeof $=="undefined"?void 0:$):z(D,A,[$]),!0):!1}if(R.writable===!1)return!1}if(!(typeof A=="object"&&A!==null||typeof A=="function"))return!1;const C=Nt(A,y);return C?(Le(C,null),"get"in C||"set"in C||C.writable===!1?!1:(K(A,y,{__proto__:null,value:$}),!0)):K(A,y,{__proto__:null,configurable:!0,enumerable:!0,value:$,writable:!0})}function _e(v){return Ho&&xl(),(typeof v=="object"&&v!==null||typeof v=="function")&&ot(v,ma)(),v}function ed(v,b,y,$,A){const{proxy:R}=new tt(v,b,y,$,A);return Ei.set(R,v),Fl(R)}const I_=mt?(v,b)=>{_i.set(v,b),_h(ot(v),ot(b))}:Bt;class tt{constructor(b,y,$,A,R){this.makeProxyLive=mt?function(){this.deleteProperty=tt.passthruDeletePropertyTrap,this.defineProperty=tt.passthruDefinePropertyTrap,this.preventExtensions=tt.passthruPreventExtensionsTrap,this.set=tt.passthruSetTrap,this.setPrototypeOf=tt.passthruSetPrototypeOfTrap}:Bt,this.makeProxyStatic=mt?function(){this.defineProperty=tt.staticDefinePropertyTrap,this.deleteProperty=tt.staticDeletePropertyTrap,this.get=tt.staticGetTrap,this.getOwnPropertyDescriptor=tt.staticGetOwnPropertyDescriptorTrap,this.getPrototypeOf=tt.staticGetPrototypeOfTrap,this.has=tt.staticHasTrap,this.isExtensible=tt.staticIsExtensibleTrap,this.ownKeys=tt.staticOwnKeysTrap,this.preventExtensions=tt.staticPreventExtensionsTrap,this.set=tt.staticSetTrap,this.setPrototypeOf=tt.staticSetPrototypeOfTrap;const{foreignTargetPointer:Q,foreignTargetTraits:G,shadowTarget:B}=this;jo&&ga.delete(Q);const dt=yh(Q);if(dt&8){this.revoke();return}try{Yf(Q,B)}catch(ht){if(bh(Q)){this.revoke();return}}if(G&16&&!(U in B)){let ht="Object";try{ht=kf(Q)}catch(et){}this.staticToStringTag=ht}dt&4?hs(B):(dt&2?Ss(B):dt&1&&on(B),$i&&Sh("Mutations on the membrane of an object originating outside of the sandbox will not be reflected on the object itself:",Q))}:Bt;let C;const D=y&1,M=y&4;M?C=y&8?()=>{}:function(){}:D?C=[]:C={};const{proxy:F,revoke:ft}=Of(C,this);if(this.foreignTargetPointer=b,this.foreignTargetTraits=y,this.foreignTargetTypedArrayLength=R,this.nonConfigurableDescriptorCallback=(Q,G,B,dt,ht,et,ut)=>{K(this.shadowTarget,Q,ya(G,B,dt,ht,et,ut))},this.proxy=F,this.revoke=ft,this.serialize=Bt,this.shadowTarget=C,this.staticToStringTag="Object",M){var ct,I;this.apply=this[(ct=Zt[$])!=null?ct:Zt.n],this.construct=this[(I=ue[$])!=null?I:ue.n]}if(this.defineProperty=tt.defaultDefinePropertyTrap,this.deleteProperty=tt.defaultDeletePropertyTrap,this.isExtensible=tt.defaultIsExtensibleTrap,this.getOwnPropertyDescriptor=tt.defaultGetOwnPropertyDescriptorTrap,this.getPrototypeOf=tt.defaultGetPrototypeOfTrap,this.get=y&32?tt.hybridGetTrapForTypedArray:tt.defaultGetTrap,this.has=tt.defaultHasTrap,this.ownKeys=tt.defaultOwnKeysTrap,this.preventExtensions=tt.defaultPreventExtensionsTrap,this.setPrototypeOf=tt.defaultSetPrototypeOfTrap,this.set=tt.defaultSetTrap,y&64)this.revoke();else if(mt)(D||y&2)&&this.makeProxyLive();else if(y&16){let Q=vt;this.serialize=()=>(Q===vt&&(Q=$h(this.foreignTargetPointer)),Q)}}static passthruDefinePropertyTrap(b,y,$){Ze=4;let A;nt&&(A=ae("Reflect.defineProperty"));const{foreignTargetPointer:R,nonConfigurableDescriptorCallback:C}=this,D=$;Le(D,null);const{get:M,set:F,value:ft}=D,ct="value"in D?typeof ft=="object"&&ft!==null||typeof ft=="function"?ot(ft):typeof ft=="undefined"?void 0:ft:vt,I="get"in D?typeof M=="function"?ot(M):M:vt,Q="set"in D?typeof F=="function"?ot(F):F:vt;let G=!1;try{G=ah(R,y,"configurable"in D?!!D.configurable:vt,"enumerable"in D?!!D.enumerable:vt,"writable"in D?!!D.writable:vt,ct,I,Q,C)}catch(dt){var B;const ht=(B=W)!=null?B:dt;throw W=void 0,nt&&A.error(ht),ht}return nt&&A.stop(),jo&&G&&(typeof I=="function"||typeof Q=="function")&&ga.delete(R),G}static passthruDeletePropertyTrap(b,y){Ze=8;let $;nt&&($=ae("Reflect.deleteProperty"));let A=!1;try{A=lh(this.foreignTargetPointer,y)}catch(C){var R;const D=(R=W)!=null?R:C;throw W=void 0,nt&&$.error(D),D}return nt&&$.stop(),A}static passthruGetPrototypeOfTrap(b){Ze=64;let y;nt&&(y=ae("Reflect.getPrototypeOf"));let $;try{$=ch(this.foreignTargetPointer)}catch(C){var A;const D=(A=W)!=null?A:C;throw W=void 0,nt&&y.error(D),D}let R;return typeof $=="function"?($(),R=W,W=void 0):R=null,nt&&y.stop(),R}static passthruIsExtensibleTrap(b){Ze=256;let y;nt&&(y=ae("Reflect.isExtensible"));const{shadowTarget:$}=this;let A=!1;if(he($)){const{foreignTargetPointer:C}=this;try{A=fh(C)}catch(D){var R;const M=(R=W)!=null?R:D;throw W=void 0,nt&&y.error(M),M}A||(Yf(C,$),on($))}return nt&&y.stop(),A}static passthruOwnKeysTrap(b){Ze=512;let y;nt&&(y=ae("Reflect.ownKeys"));let $;try{dh(this.foreignTargetPointer,(...R)=>{$=R})}catch(R){var A;const C=(A=W)!=null?A:R;throw W=void 0,nt&&y.error(C),C}return nt&&y.stop(),$||[]}static passthruGetOwnPropertyDescriptorTrap(b,y){Ze=32;let $;nt&&($=ae("Reflect.getOwnPropertyDescriptor"));const{foreignTargetPointer:A,shadowTarget:R}=this;let C;try{If(A,y,(M,F,ft,ct,I,Q,G)=>{C=ya(F,ft,ct,I,Q,G),C.configurable===!1&&K(R,M,C)})}catch(M){var D;const F=(D=W)!=null?D:M;throw W=void 0,nt&&$.error(F),F}if(nt&&$.stop(),Ne&&C&&(y===Yn||y===ar))throw new st(fo);return C}static passthruPreventExtensionsTrap(b){Ze=1024;let y;nt&&(y=ae("Reflect.preventExtensions"));const{foreignTargetPointer:$,shadowTarget:A}=this;let R=!0;if(he(A)){let D=0;try{D=ph($)}catch(M){var C;const F=(C=W)!=null?C:M;throw W=void 0,nt&&y.error(F),F}D&1||(Yf($,A),on(A)),R=!(D&2)}return nt&&y.stop(),R}static passthruSetPrototypeOfTrap(b,y){Ze=4096;let $;nt&&($=ae("Reflect.setPrototypeOf"));const{foreignTargetPointer:A}=this,R=y&&ot(y);let C=!1;try{C=mh(A,R)}catch(M){var D;const F=(D=W)!=null?D:M;throw W=void 0,nt&&$.error(F),F}return nt&&$.stop(),jo&&C&&ga.delete(A),C}static passthruSetTrap(b,y,$,A){Ze=2048;const{foreignTargetPointer:R,proxy:C,shadowTarget:D}=this;if(typeof $=="undefined"&&($=void 0),typeof A=="undefined"&&(A=C),Ne&&(y===Yn||y===ar))throw new st(fo);const M=C===A;let F;nt&&(F=ae(M?"Reflect.set":"passthruForeignTraversedSet"));let ft=!1;try{ft=M?hh(R,y,typeof $=="object"&&$!==null||typeof $=="function"?ot($):$,vt):D_(R,D,y,$,A)}catch(I){var ct;const Q=(ct=W)!=null?ct:I;throw W=void 0,nt&&F.error(Q),Q}return nt&&F.stop(),ft}}tt.hybridGetTrap=mt?function(v,b,y){let $;nt&&($=ae("hybridGetTrap"));const{foreignTargetPointer:A,foreignTargetTraits:R,proxy:C,shadowTarget:D}=this;let M,F;if(jo&&ga.has(A)){let G;try{G=Mf(A,b)}catch(B){var ft;const dt=(ft=W)!=null?ft:B;throw W=void 0,nt&&$.error(dt),dt}typeof G=="function"?(G(),F=W,W=void 0):F=G}else if(M=td(A,D,b),M){const{get:G,value:B}=M;if(G)if(M.foreign){const dt=ot(G),ht=C===y?A:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let et;try{et=Cn(dt,ht)}catch(ut){var ct;const te=(ct=W)!=null?ct:ut;throw W=void 0,nt&&$.error(te),te}typeof et=="function"?(et(),F=W,W=void 0):F=et}else F=z(G,y,[]);else F=B}else{const G=C===y?A:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let B;try{B=Df(A,R,b,G)}catch(dt){var I;const ht=(I=W)!=null?I:dt;throw W=void 0,nt&&$.error(ht),ht}typeof B=="function"?(B(),F=W,W=void 0):F=B}if(M===void 0&&F===void 0&&b===U&&R&16){let G;try{G=kf(A)}catch(B){var Q;const dt=(Q=W)!=null?Q:B;throw W=void 0,nt&&$.error(dt),dt}G!=="Object"&&(F=G)}return nt&&$.stop(),F}:Bt,tt.hybridGetTrapForTypedArray=mt?function(v,b,y){let $;nt&&($=ae("hybridGetTrapForTypedArray"));const{foreignTargetPointer:A,foreignTargetTypedArrayLength:R,proxy:C,shadowTarget:D}=this;let M=kl;if(!M&&typeof b=="string"){const I=+b;M=I>-1&&I<R&&lr(I)}let F;if(M){let I;try{I=Mf(A,b)}catch(Q){var ft;const G=(ft=W)!=null?ft:Q;throw W=void 0,nt&&$.error(G),G}typeof I=="function"?(I(),F=W,W=void 0):F=I}else{const I=td(A,D,b);if(I){const{get:Q,value:G}=I;if(Q)if(I.foreign){const B=ot(Q),dt=C===y?A:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let ht;try{ht=Cn(B,dt)}catch(et){var ct;const ut=(ct=W)!=null?ct:et;throw W=void 0,nt&&$.error(ut),ut}typeof ht=="function"?(ht(),F=W,W=void 0):F=ht}else F=z(Q,y,[]);else F=G}}return nt&&$.stop(),F}:Bt,tt.hybridHasTrap=mt?function(v,b){let y;nt&&(y=ae("hybridHasTrap"));let $;try{$=Wh(this.foreignTargetPointer,b)}catch(C){var A;const D=(A=W)!=null?A:C;throw W=void 0,nt&&y.error(D),D}let R=!1;if($===!0)R=!0;else{let C;for(typeof $=="function"?($(),C=W,W=void 0):C=null;C;){if(uo(C,b)){R=!0;break}C=Gt(C)}}return nt&&y.stop(),R}:Be,tt.passthruGetTrap=Ne?function(v,b,y){Ml&&(Ml=Ze===128),Ze=16;const $=b===Yn,A=b===ar;if(Ml){if($)return!0;if(A)return this.serialize()}let R;nt&&(R=ae("Reflect.get"));const{foreignTargetPointer:C,foreignTargetTraits:D,proxy:M}=this;typeof y=="undefined"&&(y=M);const F=M===y?vt:typeof y=="object"&&y!==null||typeof y=="function"?ot(y):y;let ft;try{ft=Df(C,D,b,F)}catch(Q){var ct;const G=(ct=W)!=null?ct:Q;throw W=void 0,nt&&R.error(G),G}let I;if(typeof ft=="function"?(ft(),I=W,W=void 0):I=ft,nt&&R.stop(),I!==void 0&&($||A))throw new st(fo);return I}:Bt,tt.passthruHasTrap=Ne?function(v,b){Ze=128;let y;nt&&(y=ae("Reflect.has"));let $;try{$=uh(this.foreignTargetPointer,b)}catch(D){var A;const M=(A=W)!=null?A:D;throw W=void 0,nt&&y.error(M),M}const R=b===Yn,C=b===ar;if($){if(Ml=!1,R||C)throw new st(fo)}else Ml=R||C;return nt&&y.stop(),$}:Be,tt.pendingDefinePropertyTrap=mt?function(v,b,y){const{foreignTargetPointer:$,foreignTargetTraits:A}=this;return Sa($,A)?this.makeProxyLive():(jo&&(Qf($)?Jf():Zf($)&&(kl=!1)),this.makeProxyStatic()),this.defineProperty(v,b,y)}:Be,tt.pendingDeletePropertyTrap=mt?function(v,b){return Sa(this.foreignTargetPointer,this.foreignTargetTraits)?this.makeProxyLive():this.makeProxyStatic(),this.deleteProperty(v,b)}:Be,tt.pendingPreventExtensionsTrap=mt?function(v){return Sa(this.foreignTargetPointer,this.foreignTargetTraits)?this.makeProxyLive():this.makeProxyStatic(),this.preventExtensions(v)}:Be,tt.pendingSetPrototypeOfTrap=mt?function(v,b){const{foreignTargetPointer:y,foreignTargetTraits:$}=this;return Sa(y,$)?this.makeProxyLive():(jo&&(Qf(y)?Jf():Zf(y)&&(kl=!1)),this.makeProxyStatic()),this.setPrototypeOf(v,b)}:Be,tt.pendingSetTrap=mt?function(v,b,y,$){const{foreignTargetPointer:A,foreignTargetTraits:R}=this;return Sa(A,R)?this.makeProxyLive():(jo&&(Qf(A)?Jf():Zf(A)&&(kl=!1)),this.makeProxyStatic()),this.set(v,b,y,$)}:Be,tt.staticDefinePropertyTrap=mt?K:Be,tt.staticDeletePropertyTrap=mt?it:Be,tt.staticGetOwnPropertyDescriptorTrap=mt?Nt:Bt,tt.staticGetPrototypeOfTrap=mt?Gt:()=>null,tt.staticGetTrap=mt?function(v,b,y){const{foreignTargetTraits:$,staticToStringTag:A}=this,R=Tt(v,b,y);return R===void 0&&b===U&&$&16&&A!=="Object"&&!(b in v)?A:R}:Bt,tt.staticHasTrap=mt?mn:Be,tt.staticIsExtensibleTrap=mt?he:Be,tt.staticOwnKeysTrap=mt?ce:()=>[],tt.staticPreventExtensionsTrap=mt?on:Be,tt.staticSetPrototypeOfTrap=mt?Le:Be,tt.staticSetTrap=mt?Sn:Be,tt.defaultDefinePropertyTrap=mt?tt.pendingDefinePropertyTrap:tt.passthruDefinePropertyTrap,tt.defaultDeletePropertyTrap=mt?tt.pendingDeletePropertyTrap:tt.passthruDeletePropertyTrap,tt.defaultGetOwnPropertyDescriptorTrap=tt.passthruGetOwnPropertyDescriptorTrap,tt.defaultGetPrototypeOfTrap=tt.passthruGetPrototypeOfTrap,tt.defaultGetTrap=mt?tt.hybridGetTrap:tt.passthruGetTrap,tt.defaultHasTrap=mt?tt.hybridHasTrap:tt.passthruHasTrap,tt.defaultIsExtensibleTrap=tt.passthruIsExtensibleTrap,tt.defaultOwnKeysTrap=tt.passthruOwnKeysTrap,tt.defaultPreventExtensionsTrap=mt?tt.pendingPreventExtensionsTrap:tt.passthruPreventExtensionsTrap,tt.defaultSetTrap=mt?tt.pendingSetTrap:tt.passthruSetTrap,tt.defaultSetPrototypeOfTrap=mt?tt.pendingSetPrototypeOfTrap:tt.passthruSetPrototypeOfTrap,mt&&wh(),Nl(Fl(An),Ne?()=>{const v=W;return W=void 0,v}:Bt,v=>typeof v=="object"&&v!==null||typeof v=="function"?ot(v):typeof v=="undefined"?void 0:v,(v,b)=>{v();const y=W;W=void 0;const $=y==null?void 0:y[b];return Fl(typeof $=="undefined"?void 0:$)},mt?v=>{let b;try{b=A_(v)}catch(y){throw _e(y)}return typeof b=="object"&&b!==null||typeof b=="function"?ot(b):b}:Bt,(v,b)=>{v();const y=W;W=void 0,(typeof y=="object"&&y!==null||typeof y=="function")&&Ei.set(y,b)},Ho?(v,b,y,$,A)=>{const R=ed(v,b,y,$,A);return()=>(xl(),R())}:ed,ed,(v,b,...y)=>{v();const $=W;W=void 0;let A;typeof b=="function"&&(b(),A=W,W=void 0);for(let C=0,{length:D}=y;C<D;C+=1){const M=y[C];typeof M=="function"&&(M(),y[C]=W,W=void 0)}let R;try{R=z($,A,y)}catch(C){throw _e(C)}return typeof R=="object"&&R!==null||typeof R=="function"?ot(R):typeof R=="undefined"?void 0:R},(v,b,...y)=>{v();const $=W;W=void 0;let A;typeof b=="function"&&(b(),A=W,W=void 0);for(let C=0,{length:D}=y;C<D;C+=1){const M=y[C];typeof M=="function"&&(M(),y[C]=W,W=void 0)}let R;try{R=Mt($,y,A)}catch(C){throw _e(C)}return typeof R=="object"&&R!==null||typeof R=="function"?ot(R):typeof R=="undefined"?void 0:R},(v,b,y,$,A,R,C,D,M)=>{v();const F=W;W=void 0;const ft=ya(y,$,A,R,C,D);let ct=!1;try{ct=K(F,b,ft)}catch(I){throw _e(I)}if(ct&&y===!1){let I;try{I=Nt(F,b)}catch(Q){throw _e(Q)}if(I&&(Le(I,null),I.configurable===!1)){const{get:Q,set:G,value:B}=I;M(b,!1,"enumerable"in I?I.enumerable:vt,"writable"in I?I.writable:vt,"value"in I?typeof B=="object"&&B!==null||typeof B=="function"?ot(B):B:vt,"get"in I?typeof Q=="function"?ot(Q):Q:vt,"set"in I?typeof G=="function"?ot(G):G:vt)}}return ct},(v,b)=>{v();const y=W;W=void 0;try{return it(y,b)}catch($){throw _e($)}},(v,b,y,$)=>{v();const A=W;W=void 0;let R;typeof $=="function"?($(),R=W,W=void 0):R=$===vt?A:$;let C;try{C=Tt(A,y,R)}catch(D){throw _e(D)}if(typeof C=="object"&&C!==null||typeof C=="function")return ot(C);if(C===void 0&&y===U&&b&16)try{if(!(y in A)){const D=z(Go,A,[]);D!=="[object Object]"&&(C=z(eu,D,[8,-1]))}}catch(D){throw _e(D)}return typeof C=="undefined"?void 0:C},(v,b,y)=>{v();const $=W;W=void 0;let A;try{A=Nt($,b)}catch(R){throw _e(R)}if(A){Le(A,null);const{get:R,set:C,value:D}=A;y(b,"configurable"in A?A.configurable:vt,"enumerable"in A?A.enumerable:vt,"writable"in A?A.writable:vt,"value"in A?typeof D=="object"&&D!==null||typeof D=="function"?ot(D):typeof D=="undefined"?void 0:D:vt,"get"in A?typeof R=="function"?ot(R):R:vt,"set"in A?typeof C=="function"?ot(C):C:vt)}},v=>{v();const b=W;W=void 0;let y;try{y=Gt(b)}catch($){throw _e($)}return typeof y=="undefined"?null:y&&ot(y)},(v,b)=>{v();const y=W;W=void 0;try{return b in y}catch($){throw _e($)}},v=>{v();const b=W;W=void 0;try{return he(b)}catch(y){throw _e(y)}},(v,b)=>{v();const y=W;W=void 0;let $;try{$=ce(y)}catch(A){throw _e(A)}z(b,void 0,$)},v=>{v();const b=W;W=void 0;let y=2;try{on(b)?y=4:he(b)&&(y|=1)}catch($){throw _e($)}return y},(v,b,y,$)=>{v();const A=W;W=void 0;let R;typeof y=="function"?(y(),R=W,W=void 0):R=y;let C;typeof $=="function"?($(),C=W,W=void 0):C=$===vt?A:$;try{return Sn(A,b,R,C)}catch(D){throw _e(D)}},(v,b=null)=>{v();const y=W;W=void 0;let $;typeof b=="function"?(b(),$=W,W=void 0):$=null;try{return Le(y,$)}catch(A){throw _e(A)}},Ho?(...v)=>{if(xl()){for(let b=0,{length:y}=v;b<y;b+=1){const $=v[b];typeof $=="function"&&($(),v[b]=W,W=void 0)}try{z(w_,Nf,v)}catch(b){}}}:Bt,mt?(v,...b)=>{v();const y=W;W=void 0;for(let $=0,{length:A}=b;$<A;$+=7)K(y,b[$],ya(b[$+1],b[$+2],b[$+3],b[$+4],b[$+5],b[$+6]))}:Bt,Ne?v=>{v();const b=W;W=void 0;const y=Rp.get(b);return y&&ot(y)}:Bt,Ne?(v,b)=>{v();const y=W;W=void 0;let $;try{$=y[b]}catch(A){throw _e(A)}return typeof $=="object"&&$!==null||typeof $=="function"?ot($):$}:Bt,Ne?v=>{v();const b=W;W=void 0;try{if(!he(b))return xe(b)?4&2&1:fa(b)?2&1:1}catch(y){try{gn(b)}catch($){return 8}}return 0}:()=>0,v=>{v();const b=W;W=void 0;try{const y=z(Go,b,[]);return y==="[object Object]"?"Object":z(eu,y,[8,-1])}catch(y){throw _e(y)}},Zp,mt?(v,...b)=>{const y=z(Ls,b,[vt]);let $,A;y===-1?$=b:($=z(Br,b,[0,y]),A=z(Br,b,[y+1])),v();const R=W;W=void 0;let C=Gl(R);C===void 0&&(C={__proto__:null},I_(R,C));for(let D=0,{length:M}=$;D<M;D+=1){const F=$[D];C[F]=!0,K(R,F,{__proto__:null,configurable:!0,get(){return vh(R,F,C),R[F]},set(ft){vh(R,F,C),Sn(R,F,ft)}})}N_(A)}:Bt,Ne&&cr?(v,b)=>{v();const y=W;if(W=void 0,y!==sn&&y!==mo)try{return cr(y,b)}catch($){}return!1}:Be,Ne?v=>{v();const b=W;W=void 0;try{return gn(b),!1}catch(y){}return!0}:Be,mt?v=>{v();const b=W;W=void 0;try{return U in b?P_(b):C_(b)}catch(y){}}:Bt,Ne?(v,b)=>{v();const y=W;W=void 0,b();const $=W;W=void 0,Rp.set(y,$)}:Bt,mt?v=>{v();const b=W;W=void 0,jo&&ga.add(ot(b))}:Bt,(v,b)=>{v();const y=W;W=void 0;let $;try{$=ms(y)}catch(M){throw _e(M)}const A=ce($),{length:R}=A,C=new u(R*7);for(let M=0,F=0;M<R;M+=1,F+=7){const ft=A[M],ct=$[ft];Le(ct,null);const{get:I,set:Q,value:G}=ct;C[F]=ft,C[F+1]="configurable"in ct?ct.configurable:vt,C[F+2]="enumerable"in ct?ct.enumerable:vt,C[F+3]="writable"in ct?ct.writable:vt,C[F+4]="value"in ct?typeof G=="object"&&G!==null||typeof G=="function"?ot(G):G:vt,C[F+5]="get"in ct?typeof I=="function"?ot(I):I:vt,C[F+6]="set"in ct?typeof Q=="function"?ot(Q):Q:vt}z(b,void 0,C);let D;try{D=Gt(y)}catch(M){throw _e(M)}return typeof D=="undefined"?null:D&&ot(D)},(v,b)=>{v();const y=W;W=void 0;let $;try{if(uo(y,b))return!0;$=Gt(y)}catch(A){throw _e(A)}return typeof $=="undefined"?null:$&&ot($)},(v,b,y)=>{v();const $=W;W=void 0;let A;try{A=Nt($,b)}catch(C){throw _e(C)}if(A){Le(A,null);const{get:C,set:D,value:M}=A;y(b,"configurable"in A?A.configurable:vt,"enumerable"in A?A.enumerable:vt,"writable"in A?A.writable:vt,"value"in A?typeof M=="object"&&M!==null||typeof M=="function"?ot(M):typeof M=="undefined"?void 0:M:vt,"get"in A?typeof C=="function"?ot(C):C:vt,"set"in A?typeof D=="function"?ot(D):D:vt);return}let R;try{R=Gt($)}catch(C){throw _e(C)}return typeof R=="undefined"?null:R&&ot(R)});let Ih=!1;return(...v)=>{if(Ih)return;Ih=!0,{6:ma,7:_s,8:Cn,9:Wi,10:ah,11:lh,12:Df,13:If,14:ch,15:uh,16:fh,17:dh,18:ph,19:hh,20:mh,21:Sh,23:gh,24:Mf,25:yh,26:kf,27:Lh,29:Sa,30:bh,31:$h,32:_h,34:Eh,35:Wh,36:Th}=v;const b=Ah(1),y=Ch(1),$=Ph(1),A=Oh(1),R=Rh(1),C=Nh(1),D=Dh(1),M=Ah(2),F=Ch(2),ft=Ph(2),ct=Oh(2),I=Rh(2),Q=Nh(2),G=Dh(2);De===void 0&&(De=me({applyTrapForZeroOrMoreArgs:b,applyTrapForOneOrMoreArgs:y,applyTrapForTwoOrMoreArgs:$,applyTrapForThreeOrMoreArgs:A,applyTrapForFourOrMoreArgs:R,applyTrapForFiveOrMoreArgs:C,applyTrapForAnyNumberOfArgs:D,constructTrapForZeroOrMoreArgs:M,constructTrapForOneOrMoreArgs:F,constructTrapForTwoOrMoreArgs:ft,constructTrapForThreeOrMoreArgs:ct,constructTrapForFourOrMoreArgs:I,constructTrapForFiveOrMoreArgs:Q,constructTrapForAnyNumberOfArgs:G})),Zt[0]=De[0],Zt[1]=De[1],Zt[2]=De[2],Zt[3]=De[3],Zt[4]=De[4],Zt[5]=De[5],Zt.n=De[6],ue[0]=De[7],ue[1]=De[8],ue[2]=De[9],ue[3]=De[10],ue[4]=De[11],ue[5]=De[12],ue.n=De[13];const{prototype:B}=tt;B[Zt[0]]=b,B[Zt[1]]=y,B[Zt[2]]=$,B[Zt[3]]=A,B[Zt[4]]=R,B[Zt[5]]=C,B[Zt.n]=D,B[ue[0]]=M,B[ue[1]]=F,B[ue[2]]=ft,B[ue[3]]=ct,B[ue[4]]=I,B[ue[5]]=Q,B[ue.n]=G,Le(B,null)}}}const X$=` |
| | | 'use strict'; |
| | | (${Np})`;function Y$(t){if(typeof t!="object"||t===null)throw new Xc("Missing globalObject.");return Np(t)}function J$(t){if(typeof t!="function")throw new Xc("Missing evaluator function.");return t(X$)()}const ps=yl("@@lockerNearMembraneUndefinedValue");class Q${constructor(e){if(e===void 0)throw new D$("Missing required VirtualEnvironment options.");const{blueConnector:n,redConnector:i,distortionCallback:s,instrumentation:l,liveTargetCallback:u,revokedProxyCallback:p,signSourceCallback:L}=gl({__proto__:null},e);let E;const N=n("blue",(...$e)=>{E=$e},{distortionCallback:s,instrumentation:l,liveTargetCallback:u,revokedProxyCallback:p}),{0:O,1:H,2:J,3:x,5:Z,6:st,7:Pt,8:wt,9:$t,10:U,11:z,12:Mt,13:K,14:it,15:Tt,16:Nt,17:Gt,18:mn,19:he,20:ce,23:on,24:Sn,25:Le,26:Tl,27:ua,29:hs,32:Re,34:ms,35:xe,36:fa}=E;let me;const sn=i("red",(...$e)=>{me=$e}),{0:Ss,3:da,4:Li,5:Go,6:Gr,7:Hr,8:gs,9:Ur,10:jr,11:uo,12:An,13:mt,14:Ne,15:vl,16:ys,17:ar,18:Yn,19:vt,20:bi,21:$i,22:Ho,23:fo,25:pa,26:De,27:Uo,28:gn,30:po,31:Ls,32:Br,33:ha,34:wl,35:Ie,36:ho}=me;N(Oe,Oe,Oe,Oe,Oe,Oe,Gr,Hr,gs,Ur,jr,uo,An,mt,Ne,vl,ys,ar,Yn,vt,bi,$i,Oe,fo,Oe,pa,De,Uo,Oe,Oe,po,Ls,Br,ha,wl,Ie,ho),sn(Oe,Oe,Oe,Oe,Oe,Oe,st,Pt,wt,$t,U,z,Mt,K,it,Tt,Nt,Gt,mn,he,ce,Oe,Oe,on,Sn,Le,Tl,ua,Oe,hs,Oe,Oe,Re,Oe,ms,xe,fa),this.blueGlobalThisPointer=O,this.blueGetSelectedTarget=H,this.blueGetTransferableValue=J,this.blueCallableGetPropertyValuePointer=x,this.blueCallableLinkPointers=Z,this.redGlobalThisPointer=()=>Ss(),this.redCallableGetPropertyValuePointer=($e,yn)=>da($e,yn),this.redCallableEvaluate=L?$e=>Li(L($e)):$e=>Li($e),this.redCallableLinkPointers=($e,yn)=>Go($e,yn),this.redCallableSetPrototypeOf=($e,yn)=>bi($e,yn),this.redCallableDefineProperties=($e,...yn)=>{const{length:Vr}=yn,lr=new Ll(Vr+1);lr[0]=$e;for(let xn=0;xn<Vr;xn+=1)lr[xn+1]=yn[xn];Jt(Ho,void 0,lr)},this.redCallableInstallLazyPropertyDescriptors=($e,...yn)=>{const{length:Vr}=yn,lr=new Ll(Vr+1);lr[0]=$e;for(let xn=0;xn<Vr;xn+=1)lr[xn+1]=yn[xn];Jt(gn,void 0,lr)},this.redCallableTrackAsFastTarget=$e=>ha($e)}evaluate(e){try{const i=this.redCallableEvaluate(e);return typeof i=="function"?(i(),this.blueGetSelectedTarget()):i}catch(i){var n;throw(n=this.blueGetSelectedTarget())!=null?n:i}}lazyRemapProperties(e,n,i){if(typeof e=="object"&&e!==null||typeof e=="function"){const s=[this.blueGetTransferableValue(e)];Jt($l,s,n),i!=null&&i.length&&(s[s.length]=ps,Jt($l,s,i)),Jt(this.redCallableInstallLazyPropertyDescriptors,void 0,s)}}link(...e){let n=this.blueGlobalThisPointer,i=this.redGlobalThisPointer;for(let s=0,{length:l}=e;s<l;s+=1){const u=e[s];n=this.blueCallableGetPropertyValuePointer(n,u),i=this.redCallableGetPropertyValuePointer(i,u),this.redCallableLinkPointers(i,n),this.blueCallableLinkPointers(n,i)}}remapProperties(e,n){if(typeof e=="object"&&e!==null||typeof e=="function"){const i=this.blueGetTransferableValue(e),s=Sl(n),{length:l}=s,u=new Ll(1+l*7);u[0]=i;for(let p=0,L=1;p<l;p+=1,L+=7){const E=s[p],N=n[E],O=gl({__proto__:null},N);u[L]=E,u[L+1]="configurable"in O?!!O.configurable:ps,u[L+2]="enumerable"in O?!!O.enumerable:ps,u[L+3]="writable"in O?!!O.writable:ps,u[L+4]="value"in O?this.blueGetTransferableValue(O.value):ps,u[L+5]="get"in O?this.blueGetTransferableValue(O.get):ps,u[L+6]="set"in O?this.blueGetTransferableValue(O.set):ps}Jt(this.redCallableDefineProperties,this,u)}}remapProto(e,n){if(typeof e=="object"&&e!==null||typeof e=="function"){const i=this.blueGetTransferableValue(e),s=n&&this.blueGetTransferableValue(n);this.redCallableSetPrototypeOf(i,s)}}trackAsFastTarget(e){(typeof e=="object"&&e!==null||typeof e=="function")&&this.redCallableTrackAsFastTarget(this.blueGetTransferableValue(e))}}const Z$=["globalThis","Infinity","NaN","undefined","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","BigInt","Boolean","FinalizationRegistry","Number","RegExp","String","Symbol","WeakRef","Math","Reflect","escape","unescape"],Wf=["AggregateError","Array","Error","EvalError","Function","Object","Proxy","RangeError","ReferenceError","SyntaxError","TypeError","URIError","eval","globalThis"],Dp=Yb([...Z$,...Wf]);function t_(t,e){const n=Sl(e);for(let i=0,{length:s}=n;i<s;i+=1){const l=n[i];if(!Dp.includes(l)){const u=e[l];u&&(t[l]=gl({__proto__:null},u))}}return t}function Ip(t){const e=[];let n=0;const i=Sl(t);for(let s=0,{length:l}=i;s<l;s+=1){const u=i[s];Dp.includes(u)||(e[n++]=u)}return e}function e_(t,e){for(let n=0,{length:i}=Wf;n<i;n+=1){const s=Wf[n],l=e[s];l&&(l.prototype?t.link(s,"prototype"):t.link(s))}}const Mp=Lf(new WeakMap),n_=Cp?["window"]:void 0;function kp(t){const{window:e}=t;let n,i;try{({document:i}=t),n=Mp.get(i)}catch(p){return}if(n)return n;const s=la(e),l=la(s),u=la(l);return n={document:i,DocumentProto:la(i),window:e,WindowProto:la(e),WindowPropertiesProto:la(s),EventTargetProto:u,EventTargetProtoOwnKeys:Sl(u)},Mp.set(i,n),n}function xp(t){const e=[];let n=0;for(let i=0,{length:s}=t;i<s;i+=1){const l=t[i];l!=="document"&&l!=="location "&&l!=="top"&&l!=="window"&&l!=="chrome"&&(e[n++]=l)}return e}function r_(t){return ml(t,"document"),ml(t,"location"),ml(t,"top"),ml(t,"window"),ml(t,"chrome"),t}kp(Wl);const o_="allow-same-origin allow-scripts",Fp=P$(new wp),Gp=Lf(new gf);let Tf=null;function i_(t){var e;const n=Jt(G$,t,["iframe"]),i=(e=Jt(U$,t,[]))!=null?e:Jt(q$,t,[]),s=Jt(V$,n,[]);return s.display="none",Jt(B$,n,["sandbox",o_]),Jt(K$,i,[n]),n}function s_(t,e){if(typeof t!="object"||t===null)throw new Xc("Missing global object virtualization target.");const n=kp(t);if(typeof n!="object"||n===null)throw new Xc("Invalid virtualization target.");const{distortionCallback:i,endowments:s,globalObjectShape:l,instrumentation:u,keepAlive:p=!0,liveTargetCallback:L,signSourceCallback:E}=gl({__proto__:null},e),N=i_(n.document),O=Jt(z$,N,[]),H=typeof l!="object"||l===null;H&&Tf===null&&(Tf=xp(Ip(O)));let J=Gp.get(n.document);J===void 0&&(J=Y$(t),Gp.set(n.document,J));const{eval:x}=O,Z=new Q$({blueConnector:J,redConnector:J$(E?st=>x(E(st)):x),distortionCallback:i,instrumentation:u,liveTargetCallback:L,revokedProxyCallback:p?a_:void 0,signSourceCallback:E});if(e_(Z,t),typeof globalThis=="undefined"?Z.link("window","document"):Z.link("document"),Z.link("__proto__","__proto__","__proto__"),Z.remapProto(n.document,n.DocumentProto),Z.lazyRemapProperties(n.window,H?Tf:xp(Ip(l)),p?void 0:n_),s){const st={};t_(st,s),r_(st),Z.remapProperties(n.window,st)}if(Z.lazyRemapProperties(n.EventTargetProto,n.EventTargetProtoOwnKeys),p){Fp.add(N);const{document:st}=O;Jt(H$,st,[]),Jt(F$,st,[])}else x$&&x("window"),Jt(j$,N,[]);return Z}function a_(t){return Fp.has(t)}function vf(t){return new bt(`platformResourceLoader error loading ${nn(t)}.`)}const Yc={asyncToGen:Wt,makeRedResyncImports:Wt,forAwaitOf:Wt,genToAsync:Wt,loadScript:Wt,loadStyle:Wt,makeRedGet:Wt,makeRedSyncImports:Wt,namespace:Wt,spreadable:Wt,super:Wt},l_=`'use strict'; |
| | | ${Wr}(${function(e,n,i,s){const l=Array,{iterator:u}=Symbol,{[u]:p}=l.prototype,L=function*(){}.constructor.prototype.prototype,{next:E,throw:N}=L,{defineProperties:O,freeze:H}=Object,{apply:J,get:x,getPrototypeOf:Z,setPrototypeOf:st}=Reflect;function Pt(K,it){let Tt;const Nt=Gt=>mn=>(Tt===void 0&&(Tt=J(K,it,[])),J(Gt,Tt,[mn]));return e(Nt(E),Nt(N))}function wt(...K){const{length:it}=K,Tt=l(it),Nt={};for(let Gt=0;Gt<it;Gt+=1)Nt[Gt]={__proto__:null,get:K[Gt]};return O(Tt,Nt),Tt}function $t(K){return function(...it){for(let Tt=0,{length:Nt}=K;Tt<Nt;Tt+=1)try{K[Tt]}catch(Gt){}return z(it)}}function U(K){return H(K)}function z(K){return st(K,null),K[u]=p,K}function Mt(K,it,Tt,Nt){const Gt=Z(K);if(Gt!==null)return Nt?J(Gt[it],Tt,Nt):x(Gt,it,Tt)}return{asyncToGen:Pt,makeRedResyncImports:$t,forAwaitOf:n,genToAsync:Pt,loadScript:i,loadStyle:s,makeRedGet:wt,makeRedSyncImports:$t,namespace:U,spreadable:z,super:Mt}}})`;function c_(t){const{document:e,document:{head:n},distortions:i,globalObject:{HTMLScriptElement:{prototype:s}},root:l}=t,u=t===l,p=Vn(new dn),L=Yt(new kt),E=Yt(new kt),N=i.get(u?wc:V(s,"src")),O=i.get(u?wu:de(s,"src"));function H(x,Z,st,Pt,wt,$t){let U,z;try{U=wt($t),z=U.value}catch(Mt){Z(Mt);return}U.done?x(z):c(kn,qn(z),[st,Pt])}function J(x,Z){const st=new Dr((Pt,wt)=>{function $t(z){c(pi,x,["error",$t]),c(pi,x,["load",U]),c($c,z,[]),E.set(x,1),wt(vf(Z))}function U(){c(pi,x,["error",$t]),c(pi,x,["load",U]),E.set(x,3),Pt(void 0)}c(lo,x,["error",$t]),c(lo,x,["load",U])});return E.set(x,2),L.set(x,st),c(ao,n,[x]),st}return[function(Z,st){return new Dr((Pt,wt)=>{function $t(z){H(Pt,wt,$t,U,Z,z)}function U(z){H(Pt,wt,$t,U,st,z)}$t(void 0)})},function(Z,st,Pt){if(st===0){let $t=!1,{[Ul]:U}=Pt;if(U==null&&($t=!0,{[On]:U}=Pt),typeof U!="function")throw new Vt("Object is not iterable.");p.set(Z,{iterable:c(U,Pt,[]),step:void 0,sync:$t});return}const wt=p.get(Z);if(st===1){const $t=wt.iterable.next();return wt.sync?new Dr(U=>{wt.step=$t,U()}):c(kn,$t,[U=>{wt.step=U}])}if(st===2)return wt.step.value;if(st===3){const $t=!!wt.step.done;return $t&&p.delete(Z),$t}},function(Z,st){const Pt=xt(st),wt=Rc(Pt),$t=c(fu,n,["script"]);for(let Mt=0,{length:K}=$t;Mt<K;Mt+=1){const it=$t[Mt];if(c(N,it,[])===wt){var U;const Tt=(U=E.get(it))!=null?U:0;if(Tt===3)return qn(void 0);if(Tt===1)return Ro(vf(Pt));if(Tt===2)return L.get(it)}}const z=c(li,e,["script"]);return z.type="text/javascript",c(O,z,[Pt]),J(z,Pt)},function(Z,st){const Pt=xt(st);let wt=c(Qa,n,[`link[href=${nn(Pt)}]`]);if(wt){var $t;const U=($t=E.get(wt))!=null?$t:0;if(U===0||U===3)return qn(void 0);if(U===1)return Ro(vf(Pt));const z=U===2?L.get(wt):void 0;return z??qn(void 0)}return wt=c(li,e,["link"]),wt.type="text/css",wt.rel="stylesheet",wt.href=Pt,J(wt,Pt)}]}function u_(t,e){let n=typeof t=="function"?Ar(t):xt(t);return n=c(ne,n,[/\/\/# sandbox(?=MappingURL=.*?\s*$)/,"//# source"]),e===1&&o(n,"use strict")===-1?`'use strict';${n}`:n}const Jc={__proto__:null},Hp=Yt(new kt([[Do,Jc]])),Up=Yt(new kt);function f_(t){let e=Up.get(t);return e===void 0&&(e={__proto__:null},Up.set(t,e)),e}function d_(t){let e=Hp.get(t);return e===void 0&&(e={__proto__:null},Hp.set(t,e)),e}const p_=Ri&&!0,h_=[[Do,Do],[tl,tl],[je,je]],jp=Yt(new kt),wf=ro(new no);function Bp(t){let e;return()=>(e===void 0&&(e=m_(t)),e)}function Vp(t){let e;return n=>{e===void 0&&(e=t()),e.trackAsFastTarget(n)}}function zp(t,e){let n;return i=>{if(n===void 0){n=e();const s=ff();if(df(l=>{const u=c(l,void 0,c_(t));t.helpers=u,cp(u)}),n.evaluate(l_),typeof s=="object"&&s!==null){n.trackAsFastTarget(s);const l=bn(s);for(let u=0,{length:p}=l;u<p;u+=1){const L=s[l[u]];typeof L=="object"&&L!==null&&n.trackAsFastTarget(L)}}df(s)}return n.evaluate(i)}}function Kp({LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:t,document:e,globalObject:n,instrumentation:i,key:s,type:l}){return(u,p,L=n,E=e)=>qp({context:p,document:E,endowments:Xe,globalObject:L,instrumentation:i,key:s,source:u,sourceType:0,type:l,verboseInstrumentation:t})}function m_(t){const{LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:e,distortions:n,endowments:i,globalObject:s,instrumentation:l,key:u,root:p,root:{distortions:L},type:E}=t,N=t===p;return s_(s,{distortionCallback(O){const H=L.get(O);if(H)return N?H:n.get(O)||H;if(typeof O=="function")return O;try{if(!ke(O,"location"))return O}catch(Z){return O}let J,x;if(ke(O,"window")&&O.window===O)try{J=c(nl,O,[]),x=O}catch(Z){try{if(c(lc,O,[]))return Cf({globalObject:O,key:u,type:E},p),O}catch(st){}}else if("defaultView"in O){let Z;try{Z=c(ta,O,[])}catch(st){}Z&&(J=O,x=Z)}return x&&Pf({context:Xe,document:J,globalObject:x,key:u,type:E},p),O},endowments:i&&i!==Xe?Fe({},up,Fn(i)):up,instrumentation:e?l:void 0,keepAlive:p_,liveTargetCallback:Va,signSourceCallback:O=>cs.createScript(O)})}function Af(t){return t===pb?1:0}function S_({context:t=Xe,endowments:e=Xe,instrumentation:n=Xe,key:i,type:s=Af(i),verboseInstrumentation:l=!1}){let u=Jc[i];if(u)return u;const p=n!==Xe&&typeof n=="object"&&n!==null,L=af(h_);u={BASIC_INSTRUMENTATION_DATA:p?{sandboxKey:i}:Xe,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:p,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:l&&p,UNCOMPILED_CONTEXT:mb,context:t,document:Do,distortions:L,endowments:e,globalObject:je,helpers:Yc,instrumentation:n,key:i,root:Xe,sandboxEvaluator:Wt,trackAsFastTarget:Wt,type:s,virtualEnvironmentEvaluator:Wt};const E=Bp(u);u.root=u,u.sandboxEvaluator=Kp(u),u.trackAsFastTarget=Vp(E),u.virtualEnvironmentEvaluator=zp(u,E);const N=sp(u,ap(u));for(let O=0,{length:H}=N;O<H;O+=1){const{0:J,1:x}=N[O];L.set(J,x)}return Jc[i]=u,u}function Cf({globalObject:t,key:e,type:n=Af(e)},i){const s=f_(t);let l=s[e];if(l)return l;const{BASIC_INSTRUMENTATION_DATA:u,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:p,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:L,distortions:E,instrumentation:N}=i;l={BASIC_INSTRUMENTATION_DATA:u,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:p,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:L,UNCOMPILED_CONTEXT:Xe,context:Xe,document,distortions:hb,endowments:Xe,globalObject:t,helpers:Yc,instrumentation:N,key:e,root:i,sandboxEvaluator:Wt,trackAsFastTarget:Wt,type:n,virtualEnvironmentEvaluator:Wt};const{location:O}=t;E.set(O,O),wf.has(t)||E.set(t,t);const H=db(l),J=H(l),x=J[0];return E.set(x,lf(l,H,J[1],x)),s[e]=l,l}function Pf({globalObject:t,document:e,context:n=Xe,key:i,type:s=Af(i)},l){const u=d_(e);let p=u[i];if(p)return p;const{BASIC_INSTRUMENTATION_DATA:L,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:E,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:N,distortions:O,instrumentation:H}=l,{location:J}=t,x=af();p={BASIC_INSTRUMENTATION_DATA:L,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:E,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:N,UNCOMPILED_CONTEXT:{[Dn]:J,[Lr]:t.top},context:n,document:e,distortions:x,endowments:Xe,globalObject:t,helpers:Yc,instrumentation:H,key:i,root:l,sandboxEvaluator:Wt,trackAsFastTarget:Wt,type:s,virtualEnvironmentEvaluator:Wt};const Z=Bp(p);p.sandboxEvaluator=Kp(p),p.trackAsFastTarget=Vp(Z),p.virtualEnvironmentEvaluator=zp(p,Z),O.set(e,e),O.set(J,J);const st=wf.has(t);st||O.set(t,t);const Pt=sp(p,ap(p));for(let K=0,{length:it}=Pt;K<it;K+=1){const{0:Tt,1:Nt}=Pt[K];O.set(Tt,Nt)}const wt=fb(p),$t=wt(p),U=$t[0];if(O.set(U,lf(p,wt,$t[1],U)),x.set(U,U),u[i]=p,st)return p;wf.add(t);const z=()=>{try{const{document:K}=t;e!==K&&Pf({context:Xe,document:K,globalObject:t,key:i,type:s},l)}catch(K){Cf({globalObject:t,key:i,type:s},l)}},Mt=c(ac,t,[]);return Mt?c(lo,Mt,["load",z,!0]):c(lo,t,["unload",function K(){gu(()=>{try{const{document:it}=t;e!==it&&(c(lo,t,["DOMContentLoaded",z,!0]),c(lo,t,["unload",K,!0]))}catch(it){Cf({globalObject:t,key:i,type:s},l)}})},!0]),p}function qp(t){const{document:e,context:n,endowments:i,globalObject:s,instrumentation:l,key:u,source:p,sourceType:L,type:E,verboseInstrumentation:N}=t;if(typeof u!="string")throw new bt(In);const{BASIC_INSTRUMENTATION_DATA:O,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:H,helpers:J,virtualEnvironmentEvaluator:x}=s===je?S_({context:n,endowments:i,instrumentation:l,key:u,type:E,verboseInstrumentation:N}):Pf({context:n,document:e,globalObject:s,key:u,type:E},Jc[u]);if(n!==Xe){if(ke(n,"renderer")&&ke(n,"rendererFactory")){const{rendererFactory:$t}=n;let U=jp.get($t);U===void 0&&(U=x(`'use strict'; |
| | | (${c(Hn,$t,[])})`)(n.renderer),jp.set($t,U)),n.renderer=U,fe(n,"rendererFactory")}df(n)}J!==Yc&&cp(J);let Z;const st=u_(p,L),Pt=H?l.startActivity:void 0;let wt;H&&(wt=Pt("evaluateInSandbox",O));try{Z=x(st)}catch($t){throw H&&wt.error({sandboxKey:u,error:$t}),$t}finally{ff(),lp()}return H&&wt.stop(),Z}function g_(t,e,n=Xe,i=Xe,s=Xe,l=!1){return qp({context:n,document:Do,endowments:i,globalObject:je,instrumentation:s,key:t,source:e,sourceType:1,type:0,verboseInstrumentation:l})}const y_=globalThis.LWR.define;function L_(t){return Reflect.defineProperty(t,Symbol.for("@@lockerLiveValue"),{}),t}function b_(t,e,n){let i;const s=`"use strict";$lockerEvalContext$(${n.toString()}); |
| | | //# sourceURL=modules/${e}.js |
| | | `;return g_(t,s,l=>{i=l}),i}function $_(t,e,n,i){const[s,l]=t.split("/");if(i.includes(s)||i.includes(`${s}/*`)||i.includes(`${s}/${l}`))return n;const u=b_(s,t,n),p=e.indexOf("exports");return p>=0?function(...L){const E=L.map((N,O)=>O===p&&L_(N)||N);return u.apply(this,E)}:u}function __(t){globalThis.LWR=Object.freeze(Object.assign(Object.assign({},globalThis.LWR),{define:function(e,n,i,s){typeof n=="function"&&(s=i,i=n,n=[]),y_(e,n,$_(e,n,i,t),s)}}))}Ot.registerLockerDefine=__,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("lwr/metrics/v/0_9_0",["exports"],function(Ot){"use strict";const Ee="lwr.bootstrap.",c=`${Ee}end`,We=`${Ee}error`,Se=`${We}.count`,fe=`${Ee}duration`,Ht="lwr.loader.",yt=`${Ht}module.define`,Ct=`${yt}.count`,oe=`${Ht}module.fetch`,pt=`${oe}.count`,bn=`${oe}.duration`,un=`${Ht}module.error`,Dt=`${un}.count`,It=`${Ht}mappings.fetch`,Jn=`${It}.count`,Fe=`${It}.duration`,Ve=`${Ht}mappings.error`,So=`${Ve}.count`,Fn="lwr.router.",ur=`${Fn}navigate`,vi=`${ur}.count`,ze=`${ur}.duration`,Pn=`${Fn}view`,ge=`${Pn}.duration`,go=`${Fn}error`,fr=`${go}.count`;Ot.BOOTSTRAP_DURATION=fe,Ot.BOOTSTRAP_END=c,Ot.BOOTSTRAP_ERROR=We,Ot.BOOTSTRAP_ERROR_COUNT=Se,Ot.BOOTSTRAP_PREFIX=Ee,Ot.LOADER_PREFIX=Ht,Ot.MAPPINGS_ERROR=Ve,Ot.MAPPINGS_ERROR_COUNT=So,Ot.MAPPINGS_FETCH=It,Ot.MAPPINGS_FETCH_COUNT=Jn,Ot.MAPPINGS_FETCH_DURATION=Fe,Ot.MODULE_DEFINE=yt,Ot.MODULE_DEFINE_COUNT=Ct,Ot.MODULE_ERROR=un,Ot.MODULE_ERROR_COUNT=Dt,Ot.MODULE_FETCH=oe,Ot.MODULE_FETCH_COUNT=pt,Ot.MODULE_FETCH_DURATION=bn,Ot.ROUTER_ERROR=go,Ot.ROUTER_ERROR_COUNT=fr,Ot.ROUTER_NAV=ur,Ot.ROUTER_NAV_COUNT=vi,Ot.ROUTER_NAV_DURATION=ze,Ot.ROUTER_PREFIX=Fn,Ot.ROUTER_VIEW=Pn,Ot.ROUTER_VIEW_DURATION=ge,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("lwr/init/v/0_9_0",["exports","lwr/metrics/v/0_9_0","lwr/profiler/v/0_9_0","lwc/v/2_41_4"],function(Ot,Ee,c,We){"use strict";function Se(oe,pt){return We.createElement(oe,{is:pt})}function fe(oe){return oe.replace(/\/v\/[a-zA-Z0-9-_.]+$/,"").replace("/","-").replace(/([A-Z])/g,pt=>`-${pt.toLowerCase()}`)}const Ht=/-([a-z])/g;function yt(oe){return oe.replace(Ht,pt=>pt[1].toUpperCase())}function Ct(oe){if(typeof customElements!="undefined"&&typeof document!="undefined"){const pt=document.querySelector("[lwr-root]");oe.forEach(([bn,un])=>{const Dt=fe(bn);let It=document.body.querySelector(Dt);It?document.querySelectorAll(Dt).forEach(Fe=>{const Ve=Se(Dt,un);for(const{name:So,value:Fn}of Fe.attributes){Ve.setAttribute(So,Fn);const ur=yt(So);ur in Ve&&(Ve[ur]=Fn)}for(;Fe.childNodes.length>0;)Ve.appendChild(Fe.childNodes[0]);Fe.parentElement.replaceChild(Ve,Fe)}):(It=Se(Dt,un),pt?pt.appendChild(It):document.body.appendChild(It))})}c.logOperationStart({id:Ee.BOOTSTRAP_END})}Ot.getPropFromAttrName=yt,Ot.init=Ct,Ot.toKebabCase=fe,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("webruntime/dynamicImportResourceHook/v/1_66_319-244_0",["exports","@app/basePath/v/1","@app/versionKey/v/1"],function(Ot,Ee,c){"use strict";function We(yt){return yt&&typeof yt=="object"&&"default"in yt?yt:{default:yt}}var Se=We(Ee),fe=We(c);function Ht(yt){const Ct="@salesforce/resourceUrl/",oe="resourceUrl://";yt.addLoaderPlugin({resolveModule:async pt=>pt.startsWith(Ct)?{url:`${oe}${pt}`}:null,loadModule:async pt=>{if(pt.startsWith(oe)){const bn=pt.split("/"),un=bn[bn.length-1];return{data:`LWR.define('${Ct}${un}', ['exports'], function(exports) { |
| | | exports.default = '${Se.default}/webruntime/org-asset/${fe.default}/resource-name/${un}'; |
| | | });`,status:200}}return null}})}Ot.default=Ht,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("webruntime/o11yHook/v/1_66_319-244_0",["exports","lwr/loaderLegacy/v/0_9_0","@app/basePath/v/1","@app/apiBasePath/v/1","@salesforce/i18n/lang/v/1","webruntime/dispatcher/v/1","@app/o11yConfiguration/v/1","@app/o11yGuestToken/v/1","@app/isDesignMode/v/1","@app/isMobileAppMode/v/1","@app/isPreviewMode/v/1","@app/versionKey/v/1","@salesforce/site/Id/v/1"],function(Ot,Ee,c,We,Se,fe,Ht,yt,Ct,oe,pt,bn,un){"use strict";function Dt(_){return _&&typeof _=="object"&&"default"in _?_:{default:_}}var It=Dt(c),Jn=Dt(We),Fe=Dt(Se),Ve=Dt(fe),So=Dt(Ht),Fn=Dt(yt),ur=Dt(Ct),vi=Dt(oe),ze=Dt(pt),Pn=Dt(bn),ge=Dt(un);function go(_,o){var a=Object.keys(_);if(Object.getOwnPropertySymbols){var d=Object.getOwnPropertySymbols(_);o&&(d=d.filter(function(m){return Object.getOwnPropertyDescriptor(_,m).enumerable})),a.push.apply(a,d)}return a}function fr(_){for(var o=1;o<arguments.length;o++){var a=arguments[o]!=null?arguments[o]:{};o%2?go(Object(a),!0).forEach(function(d){Hl(_,d,a[d])}):Object.getOwnPropertyDescriptors?Object.defineProperties(_,Object.getOwnPropertyDescriptors(a)):go(Object(a)).forEach(function(d){Object.defineProperty(_,d,Object.getOwnPropertyDescriptor(a,d))})}return _}function Hl(_,o,a){return o=Me(o),o in _?Object.defineProperty(_,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):_[o]=a,_}function Me(_){var o=fn(_,"string");return typeof o=="symbol"?o:String(o)}function fn(_,o){if(typeof _!="object"||_===null)return _;var a=_[Symbol.toPrimitive];if(a!==void 0){var d=a.call(_,o||"default");if(typeof d!="object")return d;throw new TypeError("@@toPrimitive must return a primitive value.")}return(o==="string"?String:Number)(_)}const Qn={};var ke=Object.freeze({__proto__:null,_o11y:Qn});class V{constructor(o){if(this._lazyMap=new Map,o!==void 0){if(typeof o=="number"&&o>0){this._maxSize=Math.ceil(o);return}throw new Error("maxSize must be a positive number")}}get maxSize(){return this._maxSize}get size(){return this._lazyMap.size}push(o,a){let d=this._lazyMap.get(o);if(!d){if(this.maxSize!==void 0&&this.size===this.maxSize)return!1;d=new Array,this._lazyMap.set(o,d)}return d.push(a),!0}getMessages(o,a){const d=this._lazyMap.get(o);return a&&this._lazyMap.has(o)&&this._lazyMap.set(o,[]),d||[]}getAllMessages(o){const a=new Map;for(const[d,m]of this._lazyMap.entries())m.length&&a.set(d,this.getMessages(d,o));return a}extractMessages(o){return this.getMessages(o,!0)}extractAllMessages(){return this.getAllMessages(!0)}get totalItemCount(){let o=0;for(const a of this._lazyMap.values())o+=a.length;return o}}class de{constructor(){this.notImplemented="Method not implemented.";const o=typeof performance!="undefined";o?performance.timeOrigin?this._timeOrigin=performance.timeOrigin:this._timeOrigin=Date.now():this._timeOrigin=Date.now();const a=this._timeOrigin;o&&typeof performance.now=="function"?(this.perfNow=performance.now.bind(performance),this.time=()=>{const d=this.perfNow();return{tsNow:a+d,perfNow:d,timeOrigin:a}}):(this.perfNow=()=>Date.now()-a,this.time=()=>{const d=this.perfNow();return{tsNow:Date.now(),perfNow:d,timeOrigin:a}})}get isProduction(){return de._isProduction}markProduction(){de._isProduction=!0}_checkArgument(o,a){if(typeof a=="string")return typeof o===a;if(typeof a=="function")return o instanceof a;if(Array.isArray(a))return a.some(d=>this._checkArgument(o,d));throw new Error(`Invalid argKind ${a}`)}requireArgument(o,a,d){let m=o==null||o==="";const g=d!==void 0;if(!m&&g&&(m=!this._checkArgument(o,d)),m)throw new Error(`${a} argument is required${g?" and must be of a supported type.":"."}`)}requireArgumentIfDefined(o,a,d){if(o===void 0)return!1;if(o===null||o===""||!this._checkArgument(o,d))throw new Error(`${a} argument, if defined, must be of a supported type.`);return!0}checkForDenyListedValues(o,a,d){if(d.some(m=>o===m))throw new Error(`The value ${o} isn't allowed for ${a} argument.`)}checkForReservedCharacters(o,a,d){if(o&&d.some(m=>o.indexOf(m)>=0))throw new Error(`The argument ${a} isn't allowed to contain characters from ['${d.join(", ")}']. Received: ${o}.`)}generateUniqueId(o=16){const a=[],d="0123456789abcdef";if(!(o===void 0||o>0))throw new Error('If specified, the argument "length" must be a positive integer');for(let m=0;m<o;m++){const g=Math.floor(Math.random()*16);a.push(d[g])}return a.join("")}getXpath(o){function a(g){const T=g.localName;for(;g.nextElementSibling;)if(g=g.nextElementSibling,g.localName===T)return!0;return!1}function d(g,T){return g?d(g.previousElementSibling,T||g.localName)+(g.localName===T?1:0):1}function m(g){if(!g||g.nodeType!==1)return[""];const T=d(g)>1||a(g)?`${g.localName.toLowerCase()}[${d(g)}]`:g.localName.toLowerCase();return[...m(g.parentNode),T]}return m(o).join("/")}getAge(o){return o-this._timeOrigin}getConnectionType(){var o;let a;if(typeof navigator!="undefined"){const d=navigator;a=(o=d==null?void 0:d.connection)===null||o===void 0?void 0:o.effectiveType}return a}clone(o){return JSON.parse(JSON.stringify(o))}definedValueOrDefault(o,a){return o!==void 0?o:a}getGlobal(){if(typeof globalThis=="object")return globalThis;if(typeof self=="object")return self;throw new Error("Unable to locate globalThis or self")}getIsBeaconSupported(){var o;const a=this.getGlobal();return typeof((o=a.navigator)===null||o===void 0?void 0:o.sendBeacon)=="function"&&typeof a.Blob=="function"}estimateObjectSize(o){const a=new Set,d=[o];let m=0;for(;d.length;){const g=d.pop();if(typeof g=="boolean")m+=4;else if(typeof g=="string")m+=g.length*2;else if(typeof g=="number")m+=8;else if(g instanceof Uint8Array||g instanceof Uint8ClampedArray||g instanceof Uint16Array||g instanceof Uint32Array||g instanceof Int8Array||g instanceof Int16Array||g instanceof Int32Array||g instanceof Float32Array||g instanceof Float64Array)m+=g.byteLength;else if(typeof g=="object"){const T=g;if(!a.has(T)){a.add(T);for(const j in T)d.push(T[j])}}}return m}noProdThrow(o){if(!k.isProduction)throw o}}de._isProduction=!1;const k=Object.freeze(new de);class dr{constructor(o){this._errorCounter=o,this._safeCatchMode=!1}tryCatch(o){try{o()}catch(a){this._prodSafeCatch(a)}}tryCatchReturn(o,a){try{return k.requireArgument(a,"noopValue"),o()}catch(d){return this._prodSafeCatch(d),a}}_prodSafeCatch(o){let a;try{if(a=!k.isProduction,a)throw o;if(this._safeCatchMode)throw this._safeCatchMode=!1,new Error("Internal error in prodSafeCatch.");if(this._safeCatchMode=!0,this._errorCounter&&this._errorCounter.increment(),!(o instanceof Error)){const d=o&&o.message||(typeof o.toString=="function"?o.toString():"");o=new Error(d)}this._safeCatchMode=!1}catch(d){if(a)throw d;if(d&&console&&typeof console.error=="function")try{console.error(d)}catch(m){}this._safeCatchMode=!1}}}class Ul{getSchemaId(o){return`${o.namespace}.${o.name}`}isInternal(o){return(o==null?void 0:o.namespace)==="sf.instrumentation"}makePayload(o,a,d=!0){if(!d||o!==void 0&&a!==void 0)return{schema:o,payload:a}}checkSchema(o){k.requireArgument(o,"schema","object"),k.requireArgument(o.namespace,"schema.namespace","string"),k.requireArgument(o.name,"schema.name","string"),k.requireArgument(o.pbjsSchema,"schema.pbjsSchema","object");const a=o.namespace.split(".");if(a.length!==2)throw new Error(`Schema "${this.getSchemaId(o)}" must have a namespace of the form "domain.feature".`);return{domain:a[0],feature:a[1],message:o.name}}_getAnyNestedObject(o,a){return a.reduce((d,m)=>{const g=d.nested;if(g){const T=g[m];if(T)return T}throw new Error(`Cannot locate ${a.join(".")} in schema with ID ${this.getSchemaId(o)}`)},o.pbjsSchema)}getTypes(o){const a=this.checkSchema(o),m=this._getAnyNestedObject(o,[a.domain,a.feature]).nested;if(!m)throw new Error(`Cannot parse schema with ID ${this.getSchemaId(o)}`);return m}getType(o,a){k.requireArgument(a,"messageName","string");const m=this.getTypes(o)[a];if(!m)throw new Error(`Cannot locate message ${a} in schema with ID ${this.getSchemaId(o)}`);return m}getOptions(o,a,d){d&&k.requireArgument(a,"messageName","string");const m=this.checkSchema(o);if(!a)return this._getAnyNestedObject(o,[m.domain,m.feature]).options;const g=this.getType(o,a);if(!d)return g.options;const T=g.fields[d];if(!T){const j=this.getSchemaId(o);throw new Error(`Cannot locate field ${d} in message ${a} in schema with ID ${j}`)}return T.options}}const ee=new Ul;var On=Object.freeze({__proto__:null,LazyMapToList:V,PublicSafety:dr,schemaUtil:ee,utility:k});const pr={namespace:"sf.instrumentation",name:"Activity",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Activity:{reserved:[[5,5],[7,7]],fields:{duration:{id:3,type:"double"},stopReason:{id:6,type:"string"},isRoot:{id:8,type:"bool"},timerOverridden:{id:12,type:"uint32"},name:{options:{"(meta.max_length)":25},id:2,type:"string"},isSampled:{id:11,type:"bool"},preRootId:{id:9,type:"string"},id:{id:1,type:"string"},userPayload:{id:4,type:"Payload"},errorCount:{id:10,type:"uint32"},parentId:{id:13,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},ba={namespace:"sf.instrumentation",name:"Error",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Error:{reserved:[[5,5],[7,7]],fields:{activityId:{id:6,type:"string"},stack:{id:3,type:"string"},name:{id:1,type:"string"},message:{options:{"(meta.max_length)":200},id:2,type:"string"},userPayload:{id:4,type:"Payload"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},$a={namespace:"sf.instrumentation",name:"IdleDetectorReport",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{IdleDetectorReport:{fields:{listenerCount:{id:3,type:"uint32"},busyTasks:{rule:"repeated",id:5,type:"string"},busyDurations:{rule:"repeated",id:6,type:"double"},pollableCount:{id:4,type:"uint32"},pollCounts:{rule:"repeated",id:8,type:"double"},logThreshold:{id:2,type:"double"},maxDuration:{id:1,type:"double"},pollables:{rule:"repeated",id:7,type:"string"}}}}}}}}}},jl={namespace:"sf.instrumentation",name:"InstrumentedEvent",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{MouseEvent:{fields:{cancelable:{id:5,type:"bool"},ctrlKey:{id:9,type:"bool"},type:{id:25,type:"string"},button:{id:3,type:"uint32"},offsetX:{id:17,type:"uint32"},eventPhase:{id:12,type:"uint32"},shiftKey:{id:23,type:"bool"},offsetY:{id:18,type:"uint32"},composed:{id:8,type:"bool"},altKey:{id:1,type:"bool"},isTrusted:{id:13,type:"bool"},buttons:{id:4,type:"uint32"},movementY:{id:16,type:"uint32"},clientY:{id:7,type:"uint32"},clientX:{id:6,type:"uint32"},movementX:{id:15,type:"uint32"},defaultPrevented:{id:10,type:"bool"},metaKey:{id:14,type:"bool"},timeStamp:{id:24,type:"double"},bubbles:{id:2,type:"bool"},detail:{id:11,type:"int64"},pageY:{id:20,type:"uint32"},pageX:{id:19,type:"uint32"},screenX:{id:21,type:"uint32"},screenY:{id:22,type:"uint32"}}},InstrumentedEvent:{oneofs:{event:{oneof:["mouseEvent"]}},reserved:[[4,4],"xpath",[6,6],[8,8]],fields:{mouseEvent:{id:7,type:"MouseEvent"},auto:{id:3,type:"bool"},parentComponent:{id:2,type:"string"},ownerComponent:{id:1,type:"string"},userPayload:{id:5,type:"Payload"},simplePath:{id:9,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},lt={namespace:"sf.instrumentation",name:"Simple",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Simple:{fields:{text:{options:{"(meta.max_length)":25},id:1,type:"string"}}}}}}}}}};class Lt{get isBusy(){return this._isOk?this._busyCount>0:void 0}constructor(o,a,d,m){this.name=o,this._doneCallback=d,this._overDoneCallback=m,this._busyCount=0,this._isOk=!0,this._busyCount=a}add(){this._isOk&&(this._busyCount+=1)}done(){this._isOk&&(this._busyCount>0?(this._busyCount-=1,this._busyCount||this._doneCallback()):(this._isOk=!1,this._overDoneCallback()))}}const hr=300;class mr{constructor(o){this._taskers=new Map,this._listeners=new Set,this._busyCheckers=new Map,this._logThreshold=hr,this._endedTasks=new Array,this._pollableReport=new Array,k.requireArgumentIfDefined(o==null?void 0:o.logThreshold,"options.logThreshold","number")&&(this._logThreshold=o.logThreshold),k.requireArgumentIfDefined(o==null?void 0:o.reportListener,"options.reportListener","function")&&(this._reportListener=o.reportListener),k.requireArgumentIfDefined(o==null?void 0:o.errorListener,"options.errorListener","function")&&(this._errorListener=o.errorListener)}requestIdleDetectedCallback(o){k.requireArgument(o,"callback","function"),this._listeners.size===0&&(this._firstCallbackTime=k.time().perfNow),this._listeners.add(o),this._checkIfLoaded()}_reportTaskEnded(o){if(this._listeners.size){const a=Object.assign({},this._taskers.get(o));this._endedTasks.push(a)}}declareNotifierTaskSingle(o){k.requireArgument(o,"name","string");const a=this._addTasker(o,1);return{get isBusy(){return a.isBusy},done:()=>{a.done(),this._taskers.delete(a)}}}declareNotifierTaskMulti(o,a=0){if(k.requireArgument(o,"name","string"),a!==void 0&&(k.requireArgument(a,"existingBusyCount","number"),!Number.isInteger(a)||a<0))throw new Error("existingBusyCount accepts only non-negative integers");const d=this._addTasker(o,a);return{get isBusy(){return d.isBusy},add:()=>{if(!d.isBusy){const g=this._taskers.get(d);g.start=k.time().perfNow,g.end=void 0}d.add()},done:d.done.bind(d)}}declarePollableTaskMulti(o,a){k.requireArgument(o,"name","string"),k.requireArgument(a,"isBusyChecker","function"),this._busyCheckers.set(a,o)}_addTasker(o,a){const d=new Lt(o,a,()=>{this._taskers.get(d).end=k.time().perfNow,this._reportTaskEnded(d),this._checkIfLoaded()},()=>{var m;(m=this._errorListener)===null||m===void 0||m.call(this,`Overdone: ${d.name}`),k.noProdThrow(`Tasker '${d.name}' is done too many times.`)});return this._taskers.set(d,{name:o,start:a>0?k.time().perfNow:void 0,end:void 0}),d}_areAllNotifiersIdle(){return!Array.from(this._taskers.keys()).some(o=>o.isBusy)}_getFirstBusyPollable(){const o=Array.from(this._busyCheckers).find(a=>{var d;const m=a[0],g=a[1];try{return m()}catch(T){return(d=this._errorListener)===null||d===void 0||d.call(this,T,`BusyChecker ${g}`),k.noProdThrow(T),!1}});return o?o[1]:void 0}_checkIfLoaded(){!this._listeners.size||(this._timerCheckQueued&&clearTimeout(this._timerCheckQueued),this._areAllNotifiersIdle()&&(this._timerCheckQueued=setTimeout(()=>{this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},40)},0)))}_doubleCheck(){if(this._timerCheckQueued=void 0,this._areAllNotifiersIdle()){const o=this._getFirstBusyPollable();if(o!==void 0)this._addToPollableReport(o),this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},15);else{const a=k.time().perfNow-this._firstCallbackTime,d=Array.from(this._listeners.values());this._listeners.clear(),this._firstCallbackTime=void 0;const m=this._endedTasks.splice(0),g=this._pollableReport.splice(0);this._notify(d,a,m,g)}}}_addToPollableReport(o){const a=this._pollableReport.length?this._pollableReport[this._pollableReport.length-1]:void 0;(a==null?void 0:a.name)===o?a.count+=1:this._pollableReport.push({name:o,count:1})}_notify(o,a,d,m){var g;if(a>=this._logThreshold&&this._reportListener){const j=this._getReport(a,o.length,d,m);this._reportListener(j)}o.reverse();const T=k.time().tsNow;for(const[j,rt]of o.entries())try{rt(T)}catch(q){(g=this._errorListener)===null||g===void 0||g.call(this,q,`Listener #${o.length-1-j}`),k.noProdThrow(q)}}getReport(){const o=k.time().perfNow,a=this._firstCallbackTime>0?o-this._firstCallbackTime:void 0,d=Array.from(this._taskers.entries()).filter(m=>m[0].isBusy).map(m=>({name:m[1].name,start:m[1].start,end:o}));return this._getReport(a,this._listeners.size,this._endedTasks.concat(d),this._pollableReport)}_getReport(o,a,d,m){const g=d.map(T=>({name:T.name,duration:T.end-T.start})).sort((T,j)=>j.duration-T.duration);return{logThreshold:this._logThreshold,maxDuration:o,listenerCount:a,pollableCount:this._busyCheckers.size,busyTasks:g.map(T=>T.name),busyDurations:g.map(T=>T.duration),pollables:m.map(T=>T.name),pollCounts:m.map(T=>T.count)}}}const Gn=32,Es=16,Ws=16,_a="traceparent",Sr="b3",Ea="X-B3-TraceId",yo="X-B3-SpanId",Ts="X-B3-Sampled",Wa="X-B3-ParentSpanId",vs="fetch",wi="xhr_send";class Et{constructor(o,a){this._instr=o,this._idleDetector=a,k.requireArgument(o,"_instr","object"),k.requireArgument(a,"_idleDetector","object")}static _getB3CompactFormat(o,a,d,m){let g=`${o}-${a}`;return(d!==void 0||m!==void 0)&&(g+=d?"-1":"-0",m!==void 0&&(g+=`-${m}`)),g}static _getW3CompactFormat(o,a,d){return`00-${o}-${a}-${d?"01":"00"}`}static _conformTextAsId(o,a){o=o.toLowerCase();const d=o.length;for(let m=0;m<d;m+=1){const g=o[m];if(!(g>="a"&&g<="f")&&!(g>="0"&&g<="9"))throw new Error(`The text '${o}' has an invalid character at index #${m}`)}return d>a?o.substr(d-a):d<a?o.padStart(a,"0"):o}static getHeaders(o,a,d,m){k.requireArgument(o,"traceId","string"),k.requireArgument(a,"spanId","string");const g=m==null?void 0:m.useB3Headers;o=this._conformTextAsId(o,(m==null?void 0:m.traceIdEffectiveLength)!==void 0?m.traceIdEffectiveLength:g?Es:Gn),a=this._conformTextAsId(a,Ws);const T=m&&m.parentSpanId!==void 0&&this._conformTextAsId(m.parentSpanId,Ws)||void 0,j={};return g?(m==null?void 0:m.useCompactHeader)?j[Sr]=this._getB3CompactFormat(o,a,d,T):(j[Ea]=o,j[yo]=a,T!==void 0&&(j[Wa]=T),d!==void 0&&(j[Ts]=d?"1":"0")):j[_a]=this._getW3CompactFormat(o,a,d),j}_disableNetworkInstrumentation(){Et._isNetworkInstrumentationEnabled&&(Et._originalFetch&&(Et._global.fetch=Et._originalFetch,Et._originalFetch=void 0),Et._originalXhr&&(Et._global.XMLHttpRequest=Et._originalXhr,Et._originalXhr=void 0),Et._originalXhrOpen&&(Et._global.XMLHttpRequest.prototype.open=Et._originalXhrOpen,Et._originalXhrOpen=void 0),Et._originalXhrSend&&(Et._global.XMLHttpRequest.prototype.send=Et._originalXhrSend,Et._originalXhrSend=void 0),Et._isNetworkInstrumentationEnabled=!1)}_enableNetworkInstrumentation(o,a,d,m,g,T){typeof Et._global.fetch=="function"&&(this._overrideFetch(o,a,d,m,g,T),Et._isNetworkInstrumentationEnabled=!0),typeof Et._global.XMLHttpRequest=="function"&&(this._overrideXhr(o,a,d,m,g,T),Et._isNetworkInstrumentationEnabled=!0)}static _getTraceHeaders(o,a,d,m){let g=(o==null?void 0:o.getTraceHeaders(a))||{};if(typeof(a==null?void 0:a.headerProcessor)=="function")g=a.headerProcessor({method:d,url:m,defaultHeaders:g});else if(typeof window=="object"){let T;try{T=new URL(m)}catch(j){}T&&T.host!==window.location.host&&(g=void 0)}return g||{}}_overrideFetch(o,a,d,m,g,T){Et._originalFetch=Et._global.fetch;const j=async(rt,q,...At)=>{let gt;try{T==null||T.add();const Rt=q==null?void 0:q.o11y;if(!(Rt==null?void 0:Rt.skipInstr))gt=o.startActivity(d||vs);else{Et._reqIndex+=1;try{if(rt instanceof URL)rt.searchParams.append("o11y",Et._reqIndex.toString());else if(typeof rt=="string"){const Ut=new URL(rt),Pe=`o11y=${Et._reqIndex}`;Ut.search+=Ut.search.startsWith("?")?`&${Pe}`:Pe,rt=Ut.toString()}}catch(Ut){}}if(q==null||delete q.o11y,m){let Ut=q==null?void 0:q.method,Pe=rt==null?void 0:rt.toString();rt instanceof Request&&(Ut||(Ut=rt.method),Pe=rt.url);const En=Et._getTraceHeaders(gt,g,Ut,Pe);!this._applyTraceHeaders(rt,q,En)&&q===void 0&&(q={headers:En})}return await Et._originalFetch.call(Et._global,rt,q,...At)}catch(Rt){throw a&&(gt?gt.error(Rt):o.error(Rt)),Rt}finally{gt==null||gt.stop(),T==null||T.done()}};Et._global.fetch=j}_overrideXhr(o,a,d,m,g,T){Et._originalXhr=Et._global.XMLHttpRequest,Et._originalXhrOpen=Et._originalXhr.prototype.open,Et._originalXhrSend=Et._originalXhr.prototype.send,Et._originalXhr.prototype.open=function(rt,q,At,gt,Rt){this._o11y={method:rt,url:q==null?void 0:q.toString()},Et._originalXhrOpen.call(this,rt,q,At,gt,Rt)},Et._originalXhr.prototype.send=function(...rt){let q;try{T==null||T.add();const At=this;if(At._o11y=At._o11y||{},At._o11y.activity=q=o.startActivity(d||wi),m){const gt=Et._getTraceHeaders(q,g,At._o11y.method,At._o11y.url);Object.entries(gt).forEach(Rt=>{At.setRequestHeader(Rt[0],Rt[1])})}Et._originalXhrSend.call(this,...rt)}catch(At){throw a&&(q?q.error(At):o.error(At)),q==null||q.stop(),T==null||T.done(),At}};const j=new Proxy(Et._originalXhr,{construct(rt){const q=new rt;return q.addEventListener("load",()=>{var At,gt;(gt=(At=q._o11y)===null||At===void 0?void 0:At.activity)===null||gt===void 0||gt.stop(),T==null||T.done()}),q.addEventListener("error",At=>{var gt;const Rt=new Error("XHR Network-Level Error"),Ut=(gt=q._o11y)===null||gt===void 0?void 0:gt.activity;Ut?(a&&Ut.error(Rt),Ut.stop()):a&&o.error(Rt),T==null||T.done()}),q.addEventListener("abort",()=>{var At,gt;(gt=(At=q._o11y)===null||At===void 0?void 0:At.activity)===null||gt===void 0||gt.discard(),T==null||T.done()}),q}});Et._global.XMLHttpRequest=j}networkInstrumentation(o){var a;if(k.requireArgument(o,"options",["boolean","object"]),this._disableNetworkInstrumentation(),o){const d=typeof o=="object"?o:{};let m;k.definedValueOrDefault(d.useTasker,!0)&&(m=(a=this._idleDetector)===null||a===void 0?void 0:a.declareNotifierTaskMulti("o11y network")),this._enableNetworkInstrumentation(k.definedValueOrDefault(d.instrumentation,this._instr),k.definedValueOrDefault(d.logErrors,!0),d.activityName,k.definedValueOrDefault(d.useTracing,!0),d.tracingHeadersOptions,m)}}resetRequestCounter(){Et._reqIndex=0}_applyTraceHeaders(o,a,d){if((a==null?void 0:a.headers)!==void 0){if(a.headers instanceof Headers&&typeof a.headers.set=="function")return Object.entries(d).forEach(([m,g])=>{a.headers.set(m,g)}),!0;if(Array.isArray(a.headers))return Object.entries(d).forEach(m=>{a.headers.push(m)}),!0;if(typeof a.headers=="object")return a.headers=Object.assign(a.headers,d),!0}else{if(o instanceof Request&&o.headers instanceof Headers)return Object.entries(d).forEach(([m,g])=>{o.headers.set(m,g)}),!0;if(a)return a.headers=Object.assign({},d),!0}return!1}}Et._global=k.getGlobal(),Et._isNetworkInstrumentationEnabled=!1,Et._reqIndex=0;var $n;(function(_){_[_.none=0]="none",_[_.start=1]="start",_[_.stop=2]="stop",_[_.both=3]="both"})($n||($n={}));const ws="timedout",As="terminated",Cs="discarded",ye={timedout:ws,terminated:As,discarded:Cs};class Te{constructor(o,a,d,m,g,T,j){this._name=o,this._rootId=a,this._onStopped=d,this._onError=m,this._isSampled=j,this._errorCount=0,this._timerOverridden=$n.none;const{tsNow:rt,perfNow:q}=k.time();if(Te._count+=1,this._id=T||k.generateUniqueId(),this._usePerf=typeof performance!="undefined"&&typeof performance.mark=="function"&&typeof performance.measure=="function",this._usePerf){this._perfName=`${this._name}__${Te._count}`,this._perfId=`${this._name}__${this.id}`;try{performance.mark(this._perfId)}catch(At){this._usePerf=!1}}this._startTimestamp=rt,this._startPerfTime=q,g>0&&(this._timer=setTimeout(()=>{this._stopReason=this._stopReason||ye.timedout,this.stop()},g)),this._safety=new dr}get id(){return this._id}getId(){return this.id}getRootId(){return this._rootId}get stopReason(){return this._stopReason}error(o,a,d){this._safety.tryCatch(()=>{this._errorCount+=1,typeof o=="string"&&(o=new Error(o)),this._onError(o,this._getDetail(a,d))})}stop(o,a,d){this._safety.tryCatch(()=>{if(k.requireArgumentIfDefined(o,"userSchemaOrText",["object","string"]),k.requireArgumentIfDefined(a,"userData","object"),d){const m=d.perfStartOverride,g=k.requireArgumentIfDefined(m,"options.perfStartOverride","number"),T=d.perfStopOverride,j=k.requireArgumentIfDefined(T,"options.perfStopOverride","number");if(g&&m<0)throw new Error("perfStartOverride, if defined, must be >= 0");if(j&&(T<0||T<(g?m:this._startPerfTime)))throw new Error("perfStopOverride, if defined, must be >= 0 and >= startTime")}this._stopInternal(o,a,d)})}_overrideTimer(o,a){o!==void 0&&(this._startTimestamp=Math.round(this._startTimestamp-(this._startPerfTime-o)),this._startPerfTime=o,this._setTimerOverride($n.start)),a!==void 0&&(this._stopPerfTime=a,this._setTimerOverride($n.stop))}_setTimerOverride(o){this._timerOverridden===$n.both||this._timerOverridden===o||o===$n.none||(this._timerOverridden=this._timerOverridden===$n.none?o:$n.both)}_stopInternal(o,a,d){const m=k.perfNow();if(this._usePerf)try{this._stopReason!==ye.discarded&&performance.measure(this._perfName,this._perfId),performance.clearMarks(this._perfId),performance.clearMeasures(this._perfName)}catch(T){}if(this._timer&&(clearTimeout(this._timer),this._timer=void 0),this.isStopped)return;d&&this._overrideTimer(d.perfStartOverride,d.perfStopOverride),this._stopPerfTime=this._timerOverridden===$n.none||this._timerOverridden===$n.start?m:this._stopPerfTime;const g=this._getDetail(o,a);this._onStopped(g)}get isStopped(){return this._stopPerfTime!==void 0}discard(){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||ye.discarded,this.stop()})}terminate(o,a,d){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||ye.terminated,this.stop(o,a,d)})}getIsSampled(){return this._isSampled||!1}_getDetail(o,a){return{id:this._id,rootId:this._rootId,name:this._name,userSchemaOrText:o,userData:a,stopReason:this._stopReason,startTimestamp:this._startTimestamp,startPerfTime:this._startPerfTime,stopPerfTime:this._stopPerfTime,errorCount:this._errorCount,isSampled:this.getIsSampled(),timerOverridden:this._timerOverridden}}getTraceHeaders(o){const a=this.id,d=this._rootId||a;return Et.getHeaders(d,a,this.getIsSampled(),o)}getStartTimestamp(){return this._startTimestamp}getStartPerfTime(){return this._startPerfTime}getStopPerfTime(){return this._stopPerfTime}}Te._count=0;const gr=new Array(16).fill(0).join("");class Bl{getId(){return gr}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(o){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const Ta=Object.freeze(new Bl);class va{getInstrumentedEventData(o,a,d){var m;const g={ownerComponent:a.tagName,parentComponent:((m=a.parentElement)===null||m===void 0?void 0:m.tagName)||void 0,event:o,simplePath:k.getXpath(a)};return d&&(g.userPayload=ee.makePayload(d.schema,d.payload,!0)),g}getMouseEventData(o){return{altKey:o.altKey,bubbles:o.bubbles,button:o.button,buttons:o.buttons,cancelable:o.cancelable,clientX:o.clientX,clientY:o.clientY,composed:o.composed,defaultPrevented:o.defaultPrevented,detail:o.detail,eventPhase:o.eventPhase,isTrusted:o.isTrusted,timeStamp:o.timeStamp,type:o.type,ctrlKey:o.ctrlKey,metaKey:o.metaKey,movementX:o.movementX,movementY:o.movementY,offsetX:o.offsetX,offsetY:o.offsetY,pageX:o.pageX,pageY:o.pageY,screenX:o.screenX,screenY:o.screenY,shiftKey:o.shiftKey}}}const Ps=new va,Bo=1e4,Vo=1e4,Lo=0,Ai=2147483647,Os=-2147483648,Ci=4294967295,tn=9223372036854776e3,Rs=-9223372036854776e3,bo=18446744073709552e3;class yr{constructor(o,a,d,m){this.errorCode=o,this.fields=a,this.expected=d,this.received=m}asMessage(o){const a=this.fields[0]+this.fields.slice(1).reduce((m,g)=>Number(g)>=0?`${m}[${g}]`:`${m}.${g}`,"");let d;switch(this.errorCode){case 1:d="Repeated field must be an array";break;case 2:d=`Expected type ${this.expected} but received type ${this.received}`;break;case 3:d="Value must be finite";break;case 4:d="Value is out of range for its type";break;case 5:d="Bytes array is malformed";break;case 6:d="Exceeded app limit for maximum string length";break;case 7:d="Exceeded app limit for item count";break;case 12:d="Value must be an integer";break;case 13:d="Values like null or undefined are not allowed for items in repeated fields";break;default:d=`Unknown error code: ${this.errorCode}`;break}return`Schema ${o} on field "${a}": ${d}`}}class zo{validate(o,a,d=!1){const m=ee.checkSchema(o);k.requireArgument(a,"data","object");const g=ee.getSchemaId(o),T=new Array,j=ee.getTypes(o);if(this._validateFields(T,[],a,j[m.message],j,g),T.length&&!d)throw new Error(T[0].asMessage(g));return T}_validateFields(o,a,d,m,g,T){const j=m.oneofs||{},rt=m.fields||{};for(const q in d){const At=d[q];if(At!=null){const gt=(Rt,Ut,Pe)=>this._matchFieldTypes(o,[...a,q],At,Rt,g,T,q,Ut,Pe);j[q]?gt(rt[j[q].oneof[0]].type):rt[q]&>(rt[q].type,rt[q].rule==="repeated")}}}_matchFieldTypes(o,a,d,m,g,T,j,rt,q){let At;if(rt)Array.isArray(d)?(d.length>Vo&&(At=7),d.forEach((gt,Rt)=>{this._matchFieldTypes(o,[...a,Rt.toString()],gt,m,g,T,j,void 0,!0)})):At=1;else if(d==null||d===void 0)q&&(At=13);else{let gt,Rt;switch(m){case"string":Rt="string",d.length>Bo&&(At=6);break;case"bytes":Rt="object",d instanceof Uint8Array||(At=5);break;case"bool":Rt="boolean";break;case"uint32":Rt="number",gt={min:Lo,max:Ci,isInt:!0,isItem:q};break;case"int32":case"sint32":case"fixed32":case"sfixed32":Rt="number",gt={min:Os,max:Ai,isInt:!0,isItem:q};break;case"uint64":Rt="number",gt={min:Lo,max:bo,isInt:!0,isItem:q};break;case"fixed64":case"sfixed64":case"int64":case"sint64":Rt="number",gt={min:Rs,max:tn,isInt:!0,isItem:q};break;case"double":case"float":Rt="number",gt={min:Number.NEGATIVE_INFINITY,max:Number.POSITIVE_INFINITY,isInt:!1,isItem:q};break;default:new Set(Object.keys(g)).has(m)&&(this._validateFields(o,a,d,g[m],g,T),Rt="object");break}typeof d!==Rt?o.push(new yr(2,a,m,typeof d)):gt&&(gt.isInt&&!Number.isFinite(d)?At=3:gt.isInt&&!Number.isInteger(d)?At=12:!(!gt.isInt&&Number.isNaN(d))&&!(d>=gt.min&&d<=gt.max)&&(At=4))}At&&o.push(new yr(At,a))}}const Pi=new zo;class Aa{constructor(o,a,d,m,g){this._name=o,this._ownerName=a,this._ownerAppName=d,this._tags=m,this._buckets=g,this._values=new Array,this._createdOn=k.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}getBuckets(){return this.buckets}get buckets(){return this._buckets.slice(0,this._buckets.length)}get values(){return this._values.slice(0,this._values.length)}record(o){if(typeof o=="number"){this._values.push(o),this._lastUpdatedOn=k.time().tsNow;return}throw new Error("BucketHistogram can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class Ns{constructor(o,a,d,m){this._name=o,this._ownerName=a,this._ownerAppName=d,this._tags=m,this._value=0,this._createdOn=k.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this._value}increment(o=1){if(typeof o=="number"&&o>0){this._value+=Math.round(o),this._lastUpdatedOn=k.time().tsNow;return}throw new Error("UpCounter can only increment positive numbers.")}reset(){this._lastUpdatedOn=void 0,this._value=0}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class Ds{constructor(o,a,d,m){this._name=o,this._ownerName=a,this._ownerAppName=d,this._tags=m,this._values=new Array,this._createdOn=k.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}get values(){return this._values.slice(0,this._values.length)}record(o){if(typeof o=="number"){this._values.push(o),this._lastUpdatedOn=k.time().tsNow;return}throw new Error("ValueRecorder can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class Rn{constructor(o){if(this._map=new Map,typeof o=="number"&&o>0){this._maxSize=Math.ceil(o);return}throw new Error("maxSize must be a positive number")}get maxSize(){return this._maxSize}get(o){return this._map.get(o)}has(o){return this._map.has(o)}set(o,a){return this.has(o)||this._map.size<this.maxSize?(this._map.set(o,a),!0):!1}getElements(){return Array.from(this._map.values())}clear(){this._map.clear()}}const Oi=1e3,Nn=500,Ri=500;var Ge;(function(_){_[_.Counter=0]="Counter",_[_.Percentile=1]="Percentile",_[_.BucketHistogram=2]="BucketHistogram"})(Ge||(Ge={}));class Ni{constructor(o,a){this._ownerName=o,this._getOwnerAppName=a,this._upCounters=new Rn(Oi),this._valueRecorders=new Rn(Nn),this._bucketHistograms=new Rn(Ri)}incrementCounter(o,a,d=!1,m={}){this._tagError(m,d),this._upCounter(o,m).increment(a)}trackValue(o,a,d=!1,m={}){this._tagError(m,d),this._valueRecorder(o,m).record(a)}bucketValue(o,a,d,m=!1,g={}){this._tagError(g,m),this._bucketHistogram(o,g,d).record(a)}_bucketHistogram(o,a,d){const{key:m,sortedTags:g}=this._getKeyAndSortedTags(o,a,Ge.BucketHistogram);let T=this._bucketHistograms.get(m);if(!T&&(T=new Aa(o,this._ownerName,this._getOwnerAppName(),g,d),!this._bucketHistograms.set(m,T)))throw new Error(`Max size of ${Ri} exceeded for BucketHistograms`);return T}_upCounter(o,a){const{key:d,sortedTags:m}=this._getKeyAndSortedTags(o,a,Ge.Counter);let g=this._upCounters.get(d);if(!g&&(g=new Ns(o,this._ownerName,this._getOwnerAppName(),m),!this._upCounters.set(d,g)))throw new Error(`Max size of ${Oi} exceeded for UpCounters`);return g}_valueRecorder(o,a){const{key:d,sortedTags:m}=this._getKeyAndSortedTags(o,a,Ge.Percentile);let g=this._valueRecorders.get(d);if(!g&&(g=new Ds(o,this._ownerName,this._getOwnerAppName(),m),!this._valueRecorders.set(d,g)))throw new Error(`Max size of ${Nn} exceeded for ValueRecorders`);return g}getUpCounters(){return this._upCounters.getElements()}getValueRecorders(){return this._valueRecorders.getElements()}getBucketHistograms(){return this._bucketHistograms.getElements()}_tagError(o,a){o.status=a===!0?"error":"success"}_getKeyAndSortedTags(o,a,d){const m=Object.keys(a).sort().reduce((T,j)=>(T[j]=a[j],T),{});return{key:`${Ge[d]}:${o}${JSON.stringify(m)}`,sortedTags:m}}}class Xr{constructor(){this.isMock=!0}}const Is=void 0,Dn=["`"],Lr={internalError:"o11y-error"},br=Object.freeze(Array.from(Object.values(Lr)));class en{constructor(o,a){this._nextGen=o,this._name=a,this._onActivityStoppedCallback=this._handleActivityStop.bind(this),this._onActivityErrorCallback=this._handleActivityError.bind(this);for(const m of Dn)if(this._name.indexOf(m)>=0)throw new Error(`Name cannot include the reserved character "${m}"`);this._safety=new dr({increment:m=>this._incrementError(m)}),this._metrics=this._initMetrics();const d=ee.getOptions(lt,"Simple","text");this._simpleTextMaxLength=d?d["(meta.max_length)"]:Bo}_initMetrics(){return new Ni(this.name,()=>this._nextGen.appName||en.defaultAppName)}_incrementError(o=1){this._metrics.incrementCounter(Lr.internalError,o,!1)}get name(){return this._name}_wrapUserPayload(o,a,d=!1){let m;return typeof o=="string"?(m=lt,o?a={text:o.substring(0,this._simpleTextMaxLength)}:a=void 0):m=o,ee.makePayload(m,a,d)}_getEffectiveRootId(o){var a,d;return(d=(a=o==null?void 0:o.instrumentationContext)===null||a===void 0?void 0:a.rootId)!==null&&d!==void 0?d:this._nextGen.getDefaultInstrumentationContext().rootId}log(o,a,d){this._safety.tryCatch(()=>{const m=k.time().tsNow;k.requireArgument(o,"userSchemaOrText",["object","string"]),k.requireArgumentIfDefined(a,"userData","object"),k.requireArgumentIfDefined(d,"options","object");const g=this._wrapUserPayload(o,a);(g==null?void 0:g.payload)&&this._logInternal(this.name,g.schema,g.payload,m,this._getEffectiveRootId(d))})}_logInternal(o,a,d,m,g){this._checkInputs(a,d);const T=this._getPayloadFromProvider(this._nextGen.appPayloadProvider),j=this._getPayloadFromProvider(this._nextGen.pagePayloadProvider);return this._nextGen.addLog(o,a,d,m,g,j,T)}error(o,a,d,m){return this._safety.tryCatch(()=>{k.requireArgumentIfDefined(a,"userSchemaOrText",["object","string"]),k.requireArgumentIfDefined(d,"userData","object"),k.requireArgumentIfDefined(m,"options","object");const g=this._getEffectiveRootId(m);this._errorInternal(o,a,d,void 0,g)})}_errorInternal(o,a,d,m,g){const T=k.time().tsNow;let j;if(o instanceof Error)j=o;else{let At;o==null||typeof o.toString!="function"?At="UNKNOWN":At=o.toString(),j=new Error(At)}const rt=this._wrapUserPayload(a,d,!0),q={name:j.name,message:j.message,stack:j.stack,userPayload:rt,activityId:m};return this._logInternal(this.name,ba,q,T,g)}startActivity(o,a){return this._safety.tryCatchReturn(()=>{var d;k.requireArgument(o,"name"),k.requireArgumentIfDefined(a,"options","object");let m;const g=(d=a==null?void 0:a.instrumentationContext)===null||d===void 0?void 0:d.rootId;return g?m={rootId:g,isRootActivitySampled:a.instrumentationContext.isRootActivitySampled}:m=this._nextGen.getDefaultInstrumentationContext(),new Te(o,m.rootId,this._onActivityStoppedCallback,this._onActivityErrorCallback,Is,void 0,m.isRootActivitySampled)},Ta)}_getActivityData(o){const a=this._wrapUserPayload(o.userSchemaOrText,o.userData,!0);return{id:o.id,name:o.name,duration:o.stopPerfTime-o.startPerfTime,stopReason:o.stopReason,userPayload:a,errorCount:o.errorCount,isSampled:o.isSampled,timerOverridden:o.timerOverridden}}_handleActivityStop(o){if(o.stopReason===Cs)return;const a=this._getActivityData(o);this._logActivity(a,o.startTimestamp,o.rootId)}_logActivity(o,a,d){this._logInternal(this.name,pr,o,a,d)}_handleActivityError(o,a){this._errorInternal(o,a.userSchemaOrText,a.userData,a.id,a.rootId)}_getPayloadFromProvider(o){const a=(o==null?void 0:o.getPayload())||void 0;return a&&this._checkInputs(a.schema,a.payload),a}domEvent(o,a,d,m,g){this._safety.tryCatch(()=>{var T;const j=k.time().tsNow;k.requireArgument(o,"event",[Event,Xr]),k.requireArgument(a,"handledBy",[HTMLElement,"object"]);let rt;a instanceof HTMLElement?rt=a:(a=a,((T=a.template)===null||T===void 0?void 0:T.host)instanceof HTMLElement?rt=a.template.host:k.requireArgument(void 0,"handledBy"));const q=this._wrapUserPayload(d,m,!0),At=this._getEffectiveRootId(g);switch(o.type){case"click":{const gt=o,Rt=this._nextGen.getClickTracker();Rt&&Rt.markEventHandled(gt);const Ut=Ps.getMouseEventData(gt),Pe=Ps.getInstrumentedEventData(Ut,rt,q);Pe.auto=g==null?void 0:g._auto,this._logInternal(this.name,jl,Pe,j,At);break}default:throw new Error(k.notImplemented)}})}incrementCounter(o,a=1,d=!1,m={}){this._safety.tryCatch(()=>{k.requireArgument(o,"operation","string"),k.checkForDenyListedValues(o,"operation",br),k.checkForReservedCharacters(o,"operation",Dn),k.requireArgument(a,"increment","number"),k.requireArgument(d,"hasError","boolean"),k.requireArgument(m,"tags","object"),Object.entries(m).forEach(g=>{k.requireArgument(g[1],`Tag value for '${g[0]}'`,["string","number","boolean"])}),this._metrics.incrementCounter(o,a,d,m)})}trackValue(o,a,d=!1,m={}){this._safety.tryCatch(()=>{k.requireArgument(o,"operation","string"),k.checkForDenyListedValues(o,"operation",br),k.checkForReservedCharacters(o,"operation",Dn),k.requireArgument(a,"value","number"),k.requireArgument(d,"hasError","boolean"),k.requireArgument(m,"tags","object"),Object.entries(m).forEach(g=>{k.requireArgument(g[1],`Tag value for '${g[0]}'`,["string","number","boolean"])}),this._metrics.trackValue(o,a,d,m)})}bucketValue(o,a,d=[],m=!1,g={}){this._safety.tryCatch(()=>{k.requireArgument(o,"operation","string"),k.checkForDenyListedValues(o,"operation",br),k.checkForReservedCharacters(o,"operation",Dn),k.requireArgument(a,"value","number"),k.requireArgument(d,"buckets",Array),Object.entries(d).forEach(T=>{k.requireArgument(T[1],`Bucket value for '${T[0]}'`,"number")}),k.requireArgument(m,"hasError","boolean"),k.requireArgument(g,"tags","object"),Object.entries(g).forEach(T=>{k.requireArgument(T[1],`Tag value for '${T[0]}'`,["string","number","boolean"])}),this._metrics.bucketValue(o,a,d,m,g)})}_checkInputs(o,a){ee.checkSchema(o),k.requireArgument(a,"data","object");let d,m;a.userPayload!==void 0&&ee.isInternal(o)&&(m=a.userPayload,d=Pi.validate(m.schema,m.payload,!0),this._processValidationResults(ee.getSchemaId(m.schema),m.payload,d),a.userPayload=void 0),d=Pi.validate(o,a,!0),this._processValidationResults(ee.getSchemaId(o),a,d),m!==void 0&&(a.userPayload=m)}_processValidationResults(o,a,d){for(let m=0;m<d.length;m+=1){const g=d[m];if(g.errorCode==6||g.errorCode==7){const T=g.fields.length-1,j=this._traverseFields(a,g.fields.slice(0,T)),rt=g.fields[T];g.errorCode==6?j[rt]=j[rt].substring(0,Bo):j[rt].splice(Vo)}else throw new Error(g.asMessage(o))}}_traverseFields(o,a){return a.length?this._traverseFields(o[a[0]],a.slice(1)):o}getUpCounters(){return this._metrics.getUpCounters().filter(o=>o.getLastUpdatedOn())}getValueRecorders(){return this._metrics.getValueRecorders().filter(o=>o.getLastUpdatedOn())}getBucketHistograms(){return this._metrics.getBucketHistograms().filter(o=>o.getLastUpdatedOn())}registerForLogPrompt(o){k.requireArgument(o,"listener","function"),this._nextGen.registerForLogPrompt(o)}activity(o,a,d){var m,g,T,j;const rt=this.startActivity(o,d);try{return a(rt)}catch(q){throw rt.error(q,(m=d==null?void 0:d.errorPayload)===null||m===void 0?void 0:m.schema,(g=d==null?void 0:d.errorPayload)===null||g===void 0?void 0:g.payload),q}finally{rt.stop((T=d==null?void 0:d.stopPayload)===null||T===void 0?void 0:T.schema,(j=d==null?void 0:d.stopPayload)===null||j===void 0?void 0:j.payload)}}async activityAsync(o,a,d){var m,g,T,j;const rt=this.startActivity(o,d);try{return await a(rt)}catch(q){throw rt.error(q,(m=d==null?void 0:d.errorPayload)===null||m===void 0?void 0:m.schema,(g=d==null?void 0:d.errorPayload)===null||g===void 0?void 0:g.payload),q}finally{rt.stop((T=d==null?void 0:d.stopPayload)===null||T===void 0?void 0:T.schema,(j=d==null?void 0:d.stopPayload)===null||j===void 0?void 0:j.payload)}}}en.defaultAppName="APP_NOT_REGISTERED";class In extends Te{constructor(o,a,d,m,g){super(o,void 0,a,d,void 0,m||k.generateUniqueId(32),g)}get preRootId(){return this._preRootId}set preRootId(o){this._preRootId=o}_getDetail(o,a){const d=super._getDetail(o,a);return d.isRoot=!0,d.preRootId=this.preRootId,d}}const $r=new Array(32).fill(0).join("");class Di{getId(){return $r}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(o){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const Ms=Object.freeze(new Di);class ks extends en{constructor(o,a,d){super(o,a);this._allowMulti=d,this._onRootActivityStoppedCallback=this._handleRootActivityStop.bind(this)}startRootActivity(o,a,d){return this._safety.tryCatchReturn(()=>{k.requireArgument(o,"name");const m=new In(o,this._onRootActivityStoppedCallback,this._onActivityErrorCallback,a,d);if(!this._allowMulti){if(this._singleRootActivity&&!this._singleRootActivity.isStopped){const g=this._singleRootActivity.getId();this._singleRootActivity.terminate(),m.preRootId=g}this._singleRootActivity=m}return m},Ms)}_handleRootActivityStop(o){if(o.stopReason===Cs)return;const a=this._getActivityData(o);this._logActivity(a,o.startTimestamp),this._singleRootActivity=void 0}_getActivityData(o){const a=super._getActivityData(o);return a.isRoot=o.isRoot,a.preRootId=o.preRootId,a}getSingleRootActivityId(){var o;return(o=this._singleRootActivity)===null||o===void 0?void 0:o.getId()}isSingleRootActivitySampled(){var o;return(o=this._singleRootActivity)===null||o===void 0?void 0:o.getIsSampled()}_initMetrics(){return new Ni(this.name,()=>this.name)}}const xs=5;class Ca{constructor(o,a){this._instr=o,this._doc=a,this._isActive=!1,this._boundClickListener=this._clickListener.bind(this),k.requireArgument(o,"_instr"),k.requireArgument(a,"_doc")}activate(){this._isActive||(this._doc.addEventListener("click",this._boundClickListener,!0),this._isActive=!0)}deactivate(){this._isActive&&(this._doc.removeEventListener("click",this._boundClickListener,!0),this._isActive=!1)}markEventHandled(o){this._ignoredEvent=o}_clickListener(o){var a;let d=(a=o.composedPath)===null||a===void 0?void 0:a.call(o);(!d||!d.length)&&(d=o.path);const m=this._getClickableElement(d);m&&setTimeout(()=>{o!==this._ignoredEvent&&this._instr.domEvent(o,m,void 0,void 0,{_auto:!0})})}_getClickableElement(o){var a,d;const m=o?Math.min(o.length,xs):0;for(let g=0;g<m;g+=1){const T=o[g],j=(a=T.tagName)===null||a===void 0?void 0:a.toLowerCase();if(j==="a"||j==="button")return T;if(j==="input"){const rt=T;if(((d=rt.type)===null||d===void 0?void 0:d.toLowerCase())==="button")return rt}}}}const _r=80,$o="_CUT",Fs=_r-$o.length;class Er{get pagePayloadProvider(){return this._pagePayloadProvider}set pagePayloadProvider(o){this._pagePayloadProvider=o}get appPayloadProvider(){return this._appPayloadProvider}set appPayloadProvider(o){this._appPayloadProvider=o}constructor(o){this._idleDetector=o,this._logCollectors=new Set,this._instruments=new Map,this._seqBySchema=new Map,this._sequence=0,this._forceDisabledLogCollectors=new Set,this._logCollectorFailures=new Map,this._isBufferingEnabled=!1,this._buffer=[],this._logCollectionListeners=new Set}registerApp(o,a){var d;if(k.requireArgument(o,"name","string"),this._appInstr)throw new Error("An app has already been registered with instrumentation.");if(this._instruments.get(o))throw new Error(`The instrumentation name ${o} is already taken`);this._clientSessionId=((d=a==null?void 0:a.clientSessionId)===null||d===void 0?void 0:d.toString())||k.generateUniqueId(),this._appInstr=new ks(this,o,a==null?void 0:a.allowMultipleRootActivities),this._instruments.set(o,this._appInstr),this._isBufferingEnabled=a==null?void 0:a.enableBuffering;const g=new Et(this.getInstrumentation("Network"),this._idleDetector);return{log:this._appInstr.log.bind(this._appInstr),error:this._appInstr.error.bind(this._appInstr),startActivity:this._appInstr.startActivity.bind(this._appInstr),domEvent:this._appInstr.domEvent.bind(this._appInstr),incrementCounter:this._appInstr.incrementCounter.bind(this._appInstr),trackValue:this._appInstr.trackValue.bind(this._appInstr),bucketValue:this._appInstr.bucketValue.bind(this._appInstr),networkInstrumentation:g.networkInstrumentation.bind(g),registerForLogPrompt:this._appInstr.registerForLogPrompt.bind(this._appInstr),activity:this._appInstr.activity.bind(this._appInstr),activityAsync:this._appInstr.activityAsync.bind(this._appInstr),startRootActivity:this._appInstr.startRootActivity.bind(this._appInstr),registerLogCollector:this.registerLogCollector.bind(this),registerMetricsCollector:this.registerMetricsCollector.bind(this),activateClickTracker:this.activateClickTracker.bind(this),deactivateClickTracker:this.deactivateClickTracker.bind(this),disableBuffering:this.disableBuffering.bind(this),promptLogCollection:this.promptLogCollection.bind(this),getClientSessionId:this.getClientSessionId.bind(this)}}getInstrumentation(o){k.requireArgument(o,"name","string"),o.length>_r&&(o=o.substr(0,Fs)+$o);let a=this._instruments.get(o);if(!a)a=new en(this,o),this._instruments.set(o,a);else if(a===this._appInstr)throw new Error(`The instrumentation name ${o} is being used by the app.`);return a}get appName(){var o;return(o=this._appInstr)===null||o===void 0?void 0:o.name}addLog(o,a,d,m,g,T,j){this._sequence+=1;const rt=ee.isInternal(a)&&(d==null?void 0:d.userPayload)?d.userPayload.schema:a,q=ee.getSchemaId(rt);let At=this._seqBySchema.get(q)||0;At+=1,this._seqBySchema.set(q,At);const gt={timestamp:m,rootId:g,sequence:this._sequence,schemaSequence:At,loggerName:o,pagePayload:T?k.clone(T):void 0,appPayload:j?k.clone(j):void 0,loggerAppName:this.appName,connectionType:k.getConnectionType(),clientSessionId:this._clientSessionId};this._isBufferingEnabled&&this._buffer.push({schema:a,data:k.clone(d),logMeta:gt});const Rt=Array.from(this._logCollectors).filter(Ut=>{var Pe;return!this._forceDisabledLogCollectors.has(Ut)&&!((Pe=Ut.getIsCollectDisabled)===null||Pe===void 0?void 0:Pe.call(Ut))});if(Rt.length>0)for(const Ut of Rt){const Pe=k.clone(d);let En=this._logCollectorFailures.get(Ut)||0;try{Ut.collect(a,Pe,gt),En>0&&this._logCollectorFailures.set(Ut,En-1)}catch(Rr){En+=1,En>=Er._collectorFailureLimit?(this._forceDisabledLogCollectors.add(Ut),this._appInstr&&(typeof Rr=="string"||Rr instanceof Error)&&this._appInstr.error(Rr)):this._logCollectorFailures.set(Ut,En)}}return this._sequence}getBuffer(){return this._buffer}disableBuffering(){this._isBufferingEnabled=!1,this._buffer=[]}getClickTracker(){return this._autoClickTracker}getDefaultInstrumentationContext(){var o,a;return{rootId:(o=this._appInstr)===null||o===void 0?void 0:o.getSingleRootActivityId(),isRootActivitySampled:(a=this._appInstr)===null||a===void 0?void 0:a.isSingleRootActivitySampled()}}activateClickTracker(){typeof document!="undefined"&&(this._autoClickTracker||(this._autoClickTracker=new Ca(this._appInstr,document)),this._autoClickTracker.activate())}deactivateClickTracker(){this._autoClickTracker&&(this._autoClickTracker.deactivate(),this._autoClickTracker=void 0)}registerLogCollector(o,a){if(k.requireArgument(o,"collector"),!this._logCollectors.has(o)&&(this._logCollectors.add(o),this._logCollectorFailures.set(o,0),(!o.getIsCollectDisabled||!o.getIsCollectDisabled())&&a&&a.retroactive))for(const d of this._buffer)o.collect(d.schema,d.data,d.logMeta)}registerMetricsCollector(o){if(k.requireArgument(o,"collector"),this._metricsCollector)throw new Error("A metrics Collector is already registered.");this._metricsCollector=o,this._metricsCollector.receiveMetricsExtractors({getAllUpCounters:this._getAllUpCounters.bind(this),getAllValueRecorders:this._getAllValueRecorders.bind(this),getAllBucketHistograms:this._getAllBucketHistograms.bind(this)})}_getAllUpCounters(){return Array.from(this._instruments.values()).map(a=>a.getUpCounters()).reduce((a,d)=>a.concat(d),[])}_getAllValueRecorders(){return Array.from(this._instruments.values()).map(a=>a.getValueRecorders()).reduce((a,d)=>a.concat(d),[])}_getAllBucketHistograms(){return Array.from(this._instruments.values()).map(a=>a.getBucketHistograms()).reduce((a,d)=>a.concat(d),[])}registerForLogPrompt(o){this._logCollectionListeners.add(o)}promptLogCollection(o){for(const a of this._logCollectionListeners.keys())try{a(o)}catch(d){if(!k.isProduction)throw d}}getClientSessionId(){return this._clientSessionId}}Er._collectorFailureLimit=5;class Ii{get _lazyNextGen(){return this._nextgen||(this._nextgen=new Er(this._idleDetector)),this._nextgen}constructor(o){this._idleDetector=o,k.requireArgument(o,"_idleDetector")}registerInstrumentedApp(o,a){(!a||a.isProduction!==!1)&&k.markProduction();const d=this._lazyNextGen.registerApp(o,a);return a&&(this._nextgen.appPayloadProvider=a.appPayloadProvider,this._nextgen.pagePayloadProvider=a.pagePayloadProvider),d}getInstrumentation(o){return this._lazyNextGen.getInstrumentation(o)}}const Yr=k.time.bind(k),Ko={Error:"Crimson",Activity:"CadetBlue",InstrumentedEvent:"DarkOliveGreen",O11ySample:"BlueViolet"},Gs={Error:"white",Activity:"white",InstrumentedEvent:"white",O11ySample:"white"},qo="black",Xo="Gainsboro";let Mi=class{constructor(o){o&&this._log("ConsoleCollector",o)}collect(o,a,d){let m,g,T;o.namespace==="sf.instrumentation"?(m=o.name,g=Gs[o.name]||qo,T=Ko[o.name]||Xo):m=ee.getSchemaId(o),this._log(m,a,d,g,T)}_log(o,a,d,m=qo,g=Xo){const T=`color:${m};background-color:${g}`;console.log(`%cO11Y%c ${o}`,"color:white;background-color:#FF6600;font-weight:bold",T,a||"",d||"")}};const ki="244.9.0",Jr=new mr({logThreshold:300,reportListener:_=>{Qr==null||Qr.log($a,_)},errorListener:(_,o)=>{Qr==null||Qr.error(_,o)}}),_o=new Ii(Jr),Yo=_o.registerInstrumentedApp.bind(_o),Wr=_o.getInstrumentation.bind(_o),Qr=Wr("IdleDetector");var xi=Object.freeze({__proto__:null,ConsoleCollector:Mi,_version:ki,getInstrumentation:Wr,idleDetector:Jr,registerInstrumentedApp:Yo,time:Yr});const Hs="244.39.0",Us={namespace:"sf.instrumentation",name:"WebVitals",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{WebVitals:{fields:{name:{id:1,type:"string"},delta:{id:3,type:"double"},value:{id:2,type:"double"}}}}}}}}}};var Zn,Vt,bt,ln,ve=function(_,o){return{name:_,value:o===void 0?-1:o,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},Tr=function(_,o){try{if(PerformanceObserver.supportedEntryTypes.includes(_)){if(_==="first-input"&&!("PerformanceEventTiming"in self))return;var a=new PerformanceObserver(function(d){return d.getEntries().map(o)});return a.observe({type:_,buffered:!0}),a}}catch(d){}},tr=function(_,o){var a=function d(m){m.type!=="pagehide"&&document.visibilityState!=="hidden"||(_(m),o&&(removeEventListener("visibilitychange",d,!0),removeEventListener("pagehide",d,!0)))};addEventListener("visibilitychange",a,!0),addEventListener("pagehide",a,!0)},Hn=function(_){addEventListener("pageshow",function(o){o.persisted&&_(o)},!0)},Un=function(_,o,a){var d;return function(m){o.value>=0&&(m||a)&&(o.delta=o.value-(d||0),(o.delta||d===void 0)&&(d=o.value,_(o)))}},Wt=-1,jn=function(){return document.visibilityState==="hidden"?0:1/0},dn=function(){tr(function(_){var o=_.timeStamp;Wt=o},!0)},Bn=function(){return Wt<0&&(Wt=jn(),dn(),Hn(function(){setTimeout(function(){Wt=jn(),dn()},0)})),{get firstHiddenTime(){return Wt}}},Fi=function(_,o){var a,d=Bn(),m=ve("FCP"),g=function(rt){rt.name==="first-contentful-paint"&&(j&&j.disconnect(),rt.startTime<d.firstHiddenTime&&(m.value=rt.startTime,m.entries.push(rt),a(!0)))},T=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],j=T?null:Tr("paint",g);(T||j)&&(a=Un(_,m,o),T&&g(T),Hn(function(rt){m=ve("FCP"),a=Un(_,m,o),requestAnimationFrame(function(){requestAnimationFrame(function(){m.value=performance.now()-rt.timeStamp,a(!0)})})}))},js=!1,Gi=-1,Pa=function(_,o){js||(Fi(function(q){Gi=q.value}),js=!0);var a,d=function(q){Gi>-1&&_(q)},m=ve("CLS",0),g=0,T=[],j=function(q){if(!q.hadRecentInput){var At=T[0],gt=T[T.length-1];g&&q.startTime-gt.startTime<1e3&&q.startTime-At.startTime<5e3?(g+=q.value,T.push(q)):(g=q.value,T=[q]),g>m.value&&(m.value=g,m.entries=T,a())}},rt=Tr("layout-shift",j);rt&&(a=Un(d,m,o),tr(function(){rt.takeRecords().map(j),a(!0)}),Hn(function(){g=0,Gi=-1,m=ve("CLS",0),a=Un(d,m,o)}))},Eo={passive:!0,capture:!0},Jo=new Date,Wo=function(_,o){Zn||(Zn=o,Vt=_,bt=new Date,To(removeEventListener),Oa())},Oa=function(){if(Vt>=0&&Vt<bt-Jo){var _={entryType:"first-input",name:Zn.type,target:Zn.target,cancelable:Zn.cancelable,startTime:Zn.timeStamp,processingStart:Zn.timeStamp+Vt};ln.forEach(function(o){o(_)}),ln=[]}},Vl=function(_){if(_.cancelable){var o=(_.timeStamp>1e12?new Date:performance.now())-_.timeStamp;_.type=="pointerdown"?function(a,d){var m=function(){Wo(a,d),T()},g=function(){T()},T=function(){removeEventListener("pointerup",m,Eo),removeEventListener("pointercancel",g,Eo)};addEventListener("pointerup",m,Eo),addEventListener("pointercancel",g,Eo)}(o,_):Wo(o,_)}},To=function(_){["mousedown","keydown","touchstart","pointerdown"].forEach(function(o){return _(o,Vl,Eo)})},Qo=function(_,o){var a,d=Bn(),m=ve("FID"),g=function(j){j.startTime<d.firstHiddenTime&&(m.value=j.processingStart-j.startTime,m.entries.push(j),a(!0))},T=Tr("first-input",g);a=Un(_,m,o),T&&tr(function(){T.takeRecords().map(g),T.disconnect()},!0),T&&Hn(function(){var j;m=ve("FID"),a=Un(_,m,o),ln=[],Vt=-1,Zn=null,To(addEventListener),j=g,ln.push(j),Oa()})},vr={},Vn=function(_,o){var a,d=Bn(),m=ve("LCP"),g=function(rt){var q=rt.startTime;q<d.firstHiddenTime&&(m.value=q,m.entries.push(rt),a())},T=Tr("largest-contentful-paint",g);if(T){a=Un(_,m,o);var j=function(){vr[m.id]||(T.takeRecords().map(g),T.disconnect(),vr[m.id]=!0,a(!0))};["keydown","click"].forEach(function(rt){addEventListener(rt,j,{once:!0,capture:!0})}),tr(j,!0),Hn(function(rt){m=ve("LCP"),a=Un(_,m,o),requestAnimationFrame(function(){requestAnimationFrame(function(){m.value=performance.now()-rt.timeStamp,vr[m.id]=!0,a(!0)})})})}},vo=function(_){var o,a=ve("TTFB");o=function(){try{var d=performance.getEntriesByType("navigation")[0]||function(){var m=performance.timing,g={entryType:"navigation",startTime:0};for(var T in m)T!=="navigationStart"&&T!=="toJSON"&&(g[T]=Math.max(m[T]-m.navigationStart,0));return g}();if(a.value=a.delta=d.responseStart,a.value<0||a.value>performance.now())return;a.entries=[d],_(a)}catch(m){}},document.readyState==="complete"?setTimeout(o,0):addEventListener("load",function(){return setTimeout(o,0)})},_n;(function(_){_[_.CLS=0]="CLS",_[_.FCP=1]="FCP",_[_.FID=2]="FID",_[_.LCP=3]="LCP",_[_.TBT=4]="TBT",_[_.TTFB=5]="TTFB"})(_n||(_n={}));const Ra=[_n.CLS,_n.FCP,_n.FID,_n.LCP,_n.TTFB];class zl{constructor(){this._isInitialized=!1,this._safety=new dr,this._instr=Wr("WebVitals")}activate(o,a){this._safety.tryCatch(()=>{if(this._isInitialized)throw new Error("WebVitals is already activated.");k.requireArgumentIfDefined(a,"metrics",Array),this._isInitialized=!0;const d=new Set(a||Ra);if(d.delete(_n.CLS)&&Pa(this._logHandler.bind(this)),d.delete(_n.FCP)&&Fi(this._activityHandler.bind(this)),d.delete(_n.FID)&&Qo(this._logHandler.bind(this)),d.delete(_n.LCP)&&Vn(this._activityHandler.bind(this)),d.delete(_n.TTFB)&&vo(this._activityHandler.bind(this)),d.size>0){const m=JSON.stringify(Array.from(d.keys()));this._instr.error(`Unsupported WebVital metrics: ${m}`)}})}_logHandler(o){this._instr.log(Us,{name:o.name,value:o.value,delta:o.delta})}_activityHandler(o){this._instr.startActivity(o.name).stop(void 0,void 0,{perfStartOverride:0,perfStopOverride:o.value})}}const Na=new zl;function Bs(_,o){if(!_)throw new Error(o)}const Da={APEX_ACTION_ERROR:"APEX_ACTION_ERROR",FAILED_TO_LOAD_RESOURCE:"FAILED_TO_LOAD_RESOURCE",TOO_MANY_REQUESTS:"TOO_MANY_REQUESTS",UNKNOWN_ERROR:"UNKNOWN_ERROR"},Ia=["POST","PATCH","PUT","DELETE"],He="X-SFDC-Request-Id",Ma="X-Salesforce-Too-Many-Requests",Zo="asGuest",ne="language",zt="htmlEncode",{location:Zr,navigator:Ue}=globalThis;async function Mn(_,o={}){Bs(typeof _=="string","Valid path not provided for fetch request");const a=fr(fr({},o),{},{headers:fr({},o.headers),credentials:o.credentials||"same-origin"});o.credentials===null&&delete a.credentials;const d=a.isNonApiRequest===!0,m=a.asGuest===!0||await Qt(),g=a.basePath!==void 0?a.basePath:Jn.default,T=new URL(g+_,Zr);if(!d){const q=T.searchParams;q.has(ne)||q.append(ne,Fe.default),q.has(Zo)||q.append(Zo,m),q.has(zt)||q.append(zt,!1)}const j=a.headers["Content-Type"];j===null?delete a.headers["Content-Type"]:j?a.headers["Content-Type"]=j:o.body&&(a.headers["Content-Type"]="application/json; charset=utf-8"),a.headers[He]=ka(),await zs(a);const rt=await globalThis.fetch(T.toString(),a);return Vs(rt)&&wr(),rt}function wr(){document.dispatchEvent(new CustomEvent("client-error",{detail:{type:Da.TOO_MANY_REQUESTS}}))}function Vs(_){return!!((_.status===503||_.status===429)&&_.headers.get(Ma))}async function zs(_){if(_.method&&Ia.includes(_.method)){const{default:o}=await Ee.load("@app/user/v/1");_.headers["CSRF-Token"]=o.csrfToken}}async function wo({path:_,payload:o,contentType:a}){const d=It.default+_;Ue&&Ue.sendBeacon&&Ue.sendBeacon(d,o)||await globalThis.fetch(_,{headers:{"Content-Type":a},basePath:It.default,body:o,method:"POST",isNonApiRequest:!0})}function ka(){return(Date.now()+xa()+Math.round(Math.random()*1e8)).substring(0,18)}function xa(){function _(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return _()+_()}async function Qt(){const{default:_}=await Ee.load("@app/user/v/1");return _.isGuest}var nn=Object.freeze({__proto__:null,fetch:Mn,sendBeacon:wo});const Ar={namespace:"sf.clwr",name:"AppPayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{AppPayload:{fields:{visd:{id:1,type:"double"},isPreview:{id:4,type:"bool"},siteId:{id:6,type:"string"},isMobile:{id:3,type:"bool"},lang:{id:5,type:"string"},isDesign:{id:2,type:"bool"},vKey:{id:7,type:"string"}}}}}}}}}},we={namespace:"sf.clwr",name:"Nav",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Nav:{fields:{isIdleHit:{id:1,type:"bool"},isManual:{id:2,type:"bool"}}}}}}}}}},xt={namespace:"sf.clwr",name:"NavTransition",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{NavTransition:{fields:{code:{id:4,type:"string"},isSsr:{id:3,type:"bool"},level:{id:5,type:"string"},nextUrl:{id:1,type:"string"},type:{id:2,type:"string"}}}}}}}}}},er={namespace:"sf.clwr",name:"PagePayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{PagePayload:{fields:{isSsr:{id:3,type:"bool"},type:{id:2,type:"string"},url:{id:1,type:"string"}}}}}}}}}},Ae={namespace:"sf.clwr",name:"Root",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Root:{fields:{sequence:{id:1,type:"uint32"},navCount:{id:2,type:"uint32"},clickCount:{id:3,type:"uint32"},isManual:{id:4,type:"bool"}}}}}}}}}},nr=5e4,pn=3e3,Ce=300,Hi="O11Y_ENDPOINT_NOT_CONFIGURED",Ks=Math.random(),Ke={coreEnabled:!1,coreSamplingRate:0,coreRelativeEndpoint:"",falconEnabled:!1,falconSamplingRate:0,falconAbsoluteEndpoint:"",guestToken:"",traceSamplingRate:0},rn=!0;rn&&k.markProduction();let Cr,ti;new dr().tryCatch(()=>{const _=JSON.parse(So.default);Object.keys(Ke).forEach(o=>{const a=_[o],d=typeof Ke[o];(d==="string"&&a===""||k.requireArgumentIfDefined(a,`srvConfig.${o}`,d))&&(Ke[o]=_[o])}),Cr=Fa(Fn.default),Ke.guestToken=Cr.guestToken});function qs(){return Ke}function to(_,o){return _&&o!==""&&o!==Hi}function ei(_){return!rn||_>0&&_>=Ks}function Ui(){return!ti&&to(Ke.coreEnabled,Ke.coreRelativeEndpoint)&&ei(Ke.coreSamplingRate)}function ji(){return to(Ke.falconEnabled,Ke.falconAbsoluteEndpoint)&&ei(Ke.falconSamplingRate)}function Fa(_){if(!_)throw new Error("o11yGuestToken not set");const o={},a=_.indexOf("|");return a>=0?(o.guestToken=_.substring(0,a),o.meta=JSON.parse(_.substring(a+1))):o.guestToken=_,o}function ni(){const _=Ke.coreRelativeEndpoint?.indexOf("services/data/");return _===0||_===1}function Bi(){const _=Ke.coreRelativeEndpoint||"";return ni()&&_.length>1&&_[0]!=="/"}async function Vi(){if(ti===void 0&&(ti=!1,ni()&&!Cr.meta?.isGuestApiAccessEnabled)){const{default:_}=await Ee.load("@app/user/v/1");_.isGuest&&(ti=!0)}}function Xs(){const _=Math.random(),o=Ke.traceSamplingRate||0;return o>0&&o>=_}const eo={perfStartOverride:0};let kt;class zi{constructor(o){this._rootPayload={sequence:0,navCount:0,clickCount:0,isManual:!1},this._navPayload={isIdleHit:!1,isManual:!1},this._hadRootActivity=!1,this._hadNavActivity=!1,this._isFirstNavActivity=!0;const a=!1;kt=d=>a&&console.log(`O11YR ${d}`),kt("Started"),this._o11yApp=o,this._startRoot(),document.body.addEventListener("click",this._handleClick.bind(this),{capture:!0,passive:!0}),window.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleClick(){this._rootActivity?this._rootPayload.clickCount+=1:this._startRoot()}_handleVisibilityChange(){const o=document.visibilityState==="hidden";kt(o?"Hide":"Show"),o?(this._stopNavTransition(),this._stopNav(),this._stopRoot(!1)):(this._hadRootActivity&&this._startRoot(!0),this._hadNavActivity&&!this._navActivity&&this._startNav(this._navData,!0))}get _isFirstRootActivity(){return this._rootPayload.sequence===1}_startRoot(o=!1){this._rootActivity&&this._stopRoot(!1),this._rootPayload.clickCount=0,this._rootPayload.navCount=0,this._rootPayload.sequence+=1,this._rootPayload.isManual=o,this._rootActivity=this._o11yApp.startRootActivity("root",void 0,Xs()),this._hadRootActivity=!0,kt(`Root Started ${this._rootActivity.getId()}`),Jr.requestIdleDetectedCallback(()=>{this._stopRoot(!0)})}_stopRoot(o){if(!!this._rootActivity){kt(`Root Stop ${o?"idle":"busy"} ${this._rootActivity.getId()}`);try{if(!this._isFirstRootActivity&&this._rootPayload.navCount===0&&Yr().perfNow-this._rootActivity.getStartPerfTime()<Ce){this._rootActivity.discard(),this._rootPayload.sequence-=1;return}const a=this._isFirstRootActivity?eo:void 0;o?this._rootActivity.stop(Ae,this._rootPayload,a):this._rootActivity.terminate(Ae,this._rootPayload,a)}finally{this._rootActivity=void 0,this._hadRootActivity=!1}}}_startNav(o,a){this._stopNav(),this._navPayload.isIdleHit=!1,this._navPayload.isManual=a,this._rootPayload.navCount+=1,this._navData=o?{url:o.url,pageRef:o.pageRef,isSsr:o.isSsr}:void 0,this._navActivity=this._o11yApp.startActivity("navigation"),this._hadNavActivity=!0,kt(`Nav Started ${this._navActivity.getId()}`),Jr.requestIdleDetectedCallback(()=>{kt(`Nav Idle ${this._navActivity?.getId()}`),this._navPayload.isIdleHit=!0})}_stopNav(){if(this._navActivity){kt(`Nav Stop ${this._navActivity.getId()}`);try{const o=this._isFirstNavActivity?eo:void 0;this._isFirstNavActivity=!1,this._navActivity.stop(we,this._navPayload,o)}finally{this._navActivity=void 0}}}_startNavTransition(o){this._navTransitionActivity&&this._stopNavTransition(void 0,!0),this._navTransitionData=o,this._navTransitionActivity=this._o11yApp.startActivity("navigation transition"),kt(`Trans Started ${this._navTransitionActivity.getId()}`)}_stopNavTransition(o,a=!1){if(this._navTransitionActivity){kt(`Trans ${a?"Terminate":"Stop"} ${this._navTransitionActivity.getId()}`);try{if(o){const{code:m,message:g,level:T}=o,j=["Fatal","Error","Warning","Log"][T];this._navTransitionActivity.error(g,xt,{code:m?.toString(),level:j})}const d=this._navTransitionData?{nextUrl:this._navTransitionData.url,type:this._navTransitionData.pageRef?.type,isSsr:this._navTransitionData.isSsr}:void 0;a?this._navTransitionActivity.terminate(xt,d):this._navTransitionActivity.stop(xt,d)}finally{this._navTransitionActivity=void 0,this._navTransitionData=void 0}}}preNavigate(o){this._startNavTransition({url:o.next.url,pageRef:o.next.route.pageReference,isSsr:o.next.routeDefinition?.bootstrap?.ssr})}postNavigate(o){this._stopNavTransition(),this._startNav({url:o.url,pageRef:o.route.pageReference,isSsr:o.routeDefinition?.bootstrap?.ssr},!1)}errorNavigate(o){kt(`Err level ${o?.level}: ${o?.code}`),this._stopNavTransition(o)}getCurrentPageData(){if(this._navData){const{pageRef:o,url:a,isSsr:d}=this._navData;return{url:a,type:o?.type,isSsr:d}}}}class Ao{constructor(){this._totalVisibleDuration=0,this._isVisible=document?.visibilityState==="visible",this._isVisible&&(this._lastVisibleTime=0),window?.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleVisibilityChange(){if(document.visibilityState==="hidden"){if(this._isVisible=!1,this._lastVisibleTime!==void 0){const o=Yr().perfNow;this._totalVisibleDuration+=o-this._lastVisibleTime,this._lastVisibleTime=o}}else this._isVisible=!0,this._lastVisibleTime=Yr().perfNow}getPayload(){const o=this._isVisible&&this._lastVisibleTime!==void 0?Yr().perfNow-this._lastVisibleTime:0,a={isDesign:ur.default,isMobile:vi.default,isPreview:ze.default,lang:Fe.default,siteId:ge.default,vKey:Pn.default,visd:this._totalVisibleDuration+o};return{schema:Ar,payload:a}}}class Ki{linkWithRouterSupport(o){this._routingSupport=o}getPayload(){if(this._routingSupport){const o=this._routingSupport.getCurrentPageData();if(o)return{schema:er,payload:o}}}}const{ConsoleCollector:Pr,idleDetector:Co,registerInstrumentedApp:Or,_version:Yt}=xi,no="lwr_experience";let zn,Po;const ie=Qn;ie.clientVersion=Yt,ie.schemaVersion=Hs;const Kn=`${Yt}:${Hs}`,rr=Mn;globalThis.LWR?.define&&(globalThis.LWR.define("o11y/shared",[],()=>On),globalThis.LWR.define("o11y/client",[],()=>xi),globalThis.LWR.define("transport",[],()=>nn),globalThis.LWR.define("webruntime/o11y",[],()=>ke));async function ro(_){const o=!0;try{if(typeof window=="undefined"){ie.isUnavailable=!0;return}const a=Co.declareNotifierTaskMulti("o11y LWR module fetch");ie.willUpload=Ui()||ji();const d=new Ao,m=new Ki;ie.app=Or(no,{isProduction:o,enableBuffering:!0,appPayloadProvider:d,pagePayloadProvider:m}),Ve.default?.(T=>{T.id==="lwr.loader.module.fetch"&&(T.phase===0?a.add():a.done())}),ie.app.networkInstrumentation({tracingHeadersOptions:{useB3Headers:!0}}),Na.activate(),ie.routingSupport=new zi(ie.app),m.linkWithRouterSupport(ie.routingSupport);let g=!1;if(ie.initConsole=T=>{if(!g&&ie.app){const j=new Pr;ie.app.registerLogCollector(j,T),g=!0}},o||(ie.initConsole(),ie.app.log(`o11y ${Kn}`)),ie.upload=or,ie.willUpload){if(await Ha(),await Vi(),ie.willUpload=Ui()||ji(),!ie.willUpload)return;await Ua(ie.app,{appName:_.appMetadata.bootstrapModule,sdkVersion:`o11y ${Kn}`}),Ga(),await or(!0)}}catch(a){if(!o)throw a;try{console?.error("Failed to start o11y",a)}catch{}}finally{try{ie.app?.disableBuffering()}catch{}}}function Ga(){window.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&or(!0)})}async function Ha(){const _=o=>{let a=!1;setTimeout(()=>{a||(a=!0,o())},pn),Co.requestIdleDetectedCallback(()=>{a||(a=!0,o())})};return new Promise(o=>{document.readyState==="complete"?_(o):window.addEventListener("load",()=>_(o))})}async function Ua(_,o){const[a,d]=await Promise.all([Ee.load("o11y/simple_collector/v/244_9_0"),Ee.load("o11y/collectors/v/244_9_0")]);Po=(d.default||d).encodeCoreEnvelopeContentsRaw,zn=new(a.default||a).SimpleCollector({environment:o}),_.registerLogCollector(zn,{retroactive:!0}),_.registerMetricsCollector(zn)}function or(_=!1){const o=[],a=Ui(),d=ji();if(zn?.hasData&&(a||d)&&(_||zn.estimatedByteSize>=nr)){const m=zn.getRawContentsOfCoreEnvelope(),g=Po(m);a&&o.push(ja(g)),d&&o.push(Ba(g))}return Promise.allSettled(o)}function ja(_){const o=String.fromCharCode,a=[];for(let T=0,j=_.length;T<j;T++)a.push(o(_[T]));const d=window.btoa(a.join("")),m={method:"POST",body:JSON.stringify({base64Env:d}),keepalive:!0,isNonApiRequest:!ni(),o11y:{skipInstr:!0}};let g=qs().coreRelativeEndpoint;return Bi()?g[0]!=="/"&&(g=`/${g}`):m.basePath=It.default,rr(g,m)}function Ba(_){const o=qs(),a={method:"POST",body:_,headers:{"x-sfdc-o11y-token":o.guestToken||"","Content-Type":"application/octet-stream"},keepalive:!0,o11y:{skipInstr:!0}};return fetch(o.falconAbsoluteEndpoint,a)}Ot.default=ro,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("webruntime/hook/v/1_66_319-244_0",["exports"],function(Ot){"use strict";var Ee=["@app/apexApiBasePath","@app/apiBasePath","@app/authenticationCookieName","@app/basePath","@app/guestUuidCookieName","@app/isDesignMode","@app/isPreviewMode","@app/isMobileAppMode","@app/loginPath","@app/o11yGuestToken","@app/o11yConfiguration","@app/routes","@app/extraRouteParams","@app/uiBasePath","@app/versionKey","@app/viewToThemeLayoutMap","@app/views","@salesforce/community/basePath","@salesforce/i18n/lang","@salesforce/site/Id","@salesforce/webstore/Id","webruntime/dispatcher"],c=["@salesforce/cssvars/customProperties","aura-instrumentation","aura-storage","aura","instrumentation/service","instrumentation/utility","lightning/configProvider","lightning/navigation","transport","webruntime/transport","logger","assert","o11y/shared","o11y/client","webruntime/o11y","webruntime_navigation/link","webruntime/expressions","webruntime/routerContainer","webruntime/componentContainer","webruntime/slotContainer","webruntime/visibilityContainer","webruntime/routingService","webruntime/overrides","webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent","mobileruntime/hybridAppManager","wire-service","@salesforce/client/formFactor"];const We=["webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent"];function Se(fe){fe.addLoaderPlugin({resolveModule:async Ht=>{const[yt]=Ht.split("/v/");return yt==="webruntime/transport"?"transport":yt&&(c.includes(yt)||We.includes(yt)||Ee.includes(yt))?yt:yt==="@salesforce/loader"?"lwr/loaderLegacy/v/0_9_0":null}})}Ot.default=Se,Object.defineProperty(Ot,"__esModule",{value:!0})}),LWR.define("@lwc/synthetic-shadow/v/2_41_4",function(){"use strict";function Ot(r,f){if(!r)throw new Error(`Invariant Violation: ${f}`)}function Ee(r,f){if(!r)throw new Error(`Assert Violation: ${f}`)}function c(r,f){if(r)throw new Error(`Assert Violation: ${f}`)}function We(r){throw new Error(r)}var Se=Object.freeze({__proto__:null,fail:We,invariant:Ot,isFalse:c,isTrue:Ee});const{assign:fe,create:Ht,defineProperties:yt,defineProperty:Ct,freeze:oe,getOwnPropertyDescriptor:pt,getOwnPropertyNames:bn,getPrototypeOf:un,hasOwnProperty:Dt,isFrozen:It,keys:Jn,seal:Fe,setPrototypeOf:Ve}=Object,{isArray:So}=Array,{concat:Fn,copyWithin:ur,fill:vi,filter:ze,find:Pn,indexOf:ge,join:go,map:fr,pop:Hl,push:Me,reduce:fn,reverse:Qn,shift:ke,slice:V,some:de,sort:k,splice:dr,unshift:Ul,forEach:ee}=Array.prototype,{charCodeAt:On,replace:pr,split:ba,slice:$a,toLowerCase:jl}=String.prototype;function lt(r){return r===void 0}function Lt(r){return r===null}function hr(r){return r===!0}function mr(r){return r===!1}function Gn(r){return typeof r=="function"}function Es(r){return typeof r=="object"}const Ws={}.toString;function _a(r){return r&&r.toString?So(r)?go.call(fr.call(r,_a),","):r.toString():typeof r=="object"?Ws.call(r):r+""}const Sr=typeof globalThis=="object"?globalThis:window,Ea="$isNativeShadowRootDefined$",yo="$shadowResolver$",Ts="$$ShadowResolverKey$$",Wa="$shadowStaticNode$",vs="$shadowStaticNodeKey$",wi="$shadowToken$",Et="$$ShadowTokenKey$$",$n="$$lwc-synthetic-mode",ws="$nativeGetElementById$",As="$nativeQuerySelectorAll$",Cs=(()=>Symbol("x").toString()==="Symbol(x)")();Sr.lwcRuntimeFlags||Object.defineProperty(Sr,"lwcRuntimeFlags",{value:Ht(null)});const ye=Node,Te=ye.prototype,{DOCUMENT_POSITION_CONTAINED_BY:gr,DOCUMENT_POSITION_CONTAINS:Bl,DOCUMENT_POSITION_PRECEDING:Ta,DOCUMENT_POSITION_FOLLOWING:va,ELEMENT_NODE:wa,TEXT_NODE:Ps,CDATA_SECTION_NODE:Bo,PROCESSING_INSTRUCTION_NODE:Vo,COMMENT_NODE:Lo,DOCUMENT_FRAGMENT_NODE:Ai}=ye,{appendChild:Os,cloneNode:Ci,compareDocumentPosition:tn,insertBefore:Rs,removeChild:bo,replaceChild:yr,hasChildNodes:zo}=Te,{contains:Pi}=HTMLElement.prototype,Aa=pt(Te,"firstChild").get,Ns=pt(Te,"lastChild").get,Ds=pt(Te,"textContent").get,Rn=pt(Te,"parentNode").get,Oi=pt(Te,"ownerDocument").get,Nn=Dt.call(Te,"parentElement")?pt(Te,"parentElement").get:pt(HTMLElement.prototype,"parentElement").get,Ri=pt(Te,"textContent").set,Ge=Dt.call(Te,"childNodes")?pt(Te,"childNodes").get:pt(HTMLElement.prototype,"childNodes").get,Ni=Dt.call(Te,"isConnected")?pt(Te,"isConnected").get:function(){const r=Oi.call(this);return r===null||(tn.call(r,this)&gr)!=0},{getAttribute:Xr,getBoundingClientRect:Is,getElementsByTagName:Dn,getElementsByTagNameNS:Lr,hasAttribute:br,querySelector:en,querySelectorAll:In,removeAttribute:$r,setAttribute:Di}=Element.prototype,Ms=Dt.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:()=>{throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},ks=pt(Element.prototype,"childElementCount").get,xs=pt(Element.prototype,"firstElementChild").get,Ca=pt(Element.prototype,"lastElementChild").get,_r=pt(HTMLElement.prototype,"innerText"),$o=_r?_r.get:null,Fs=_r?_r.set:null,Er=pt(HTMLElement.prototype,"outerText"),Ii=Er?Er.get:null,Yr=Er?Er.set:null,Ko=Dt.call(Element.prototype,"innerHTML")?pt(Element.prototype,"innerHTML"):pt(HTMLElement.prototype,"innerHTML"),Gs=Ko.get,qo=Ko.set,Xo=Dt.call(Element.prototype,"outerHTML")?pt(Element.prototype,"outerHTML"):pt(HTMLElement.prototype,"outerHTML"),Mi=Xo.get,ki=Xo.set,Jr=pt(Element.prototype,"tagName").get,_o=pt(HTMLElement.prototype,"tabIndex"),Yo=_o.get,Wr=_o.set,Qr=Dt.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xi=Dt.call(Element.prototype,"children")?pt(Element.prototype,"children").get:pt(HTMLElement.prototype,"children").get,{getElementsByClassName:Hs}=HTMLElement.prototype,Us=Dt.call(Element.prototype,"shadowRoot")?pt(Element.prototype,"shadowRoot").get:()=>null,Zn=Dt.call(Element.prototype,"assignedSlot")?pt(Element.prototype,"assignedSlot").get:()=>null;let Vt,bt;typeof HTMLSlotElement!="undefined"?(Vt=HTMLSlotElement.prototype.assignedNodes,bt=HTMLSlotElement.prototype.assignedElements):(Vt=()=>{throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},bt=()=>{throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});const ln=pt(Event.prototype,"target").get,ve=pt(Event.prototype,"currentTarget").get,Tr=pt(FocusEvent.prototype,"relatedTarget").get,tr=Dt.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],Hn=pt(Document.prototype,"activeElement").get,Un=Dt.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Wt=Dt.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,jn=pt(Document.prototype,"defaultView").get,{createComment:dn,querySelectorAll:Bn,getElementById:Fi,getElementsByClassName:js,getElementsByTagName:Gi,getElementsByTagNameNS:Pa}=Document.prototype,{getElementsByName:Eo}=HTMLDocument.prototype,{addEventListener:Jo,removeEventListener:Wo,getComputedStyle:Oa,getSelection:Vl}=window,To=MutationObserver,Qo=To.prototype.observe;let vr=null;typeof ShadowRoot!="undefined"&&(vr=ShadowRoot);const Vn=!Lt(vr),vo=Lt(vr)?()=>!1:r=>r instanceof vr;function _n(){return typeof HTMLSlotElement=="undefined"}const{createElement:Ra}=Document.prototype,zl=115,Na=108,Bs=111,Da=116;function Ia(){class r{}Ve(r,HTMLElement.constructor),Ve(r.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=r,Ct(Document.prototype,"createElement",{value:function(f,h){const S=Ra.apply(this,V.call(arguments));return f.length===4&&On.call(f,0)===zl&&On.call(f,1)===Na&&On.call(f,2)===Bs&&On.call(f,3)===Da&&Ve(S,r.prototype),S}})}_n()&&Ia();function He(r){const f=Oi.call(r);return f===null?r:f}function Ma(r){const f=He(r),h=jn.call(f);if(h===null)throw new TypeError;return h}let Zo;function ne(r){if(lt(Zo)){const f=He(r);Zo=f.body&&Xr.call(f.body,"data-global-patching-bypass")==="temporary-bypass"}return hr(Zo)}function zt(r){const f=r.length,h=[];if(f>0)for(let S=0;S<f;S++)h[S]=r[S];return h}const Zr=typeof EventTarget!="undefined"?EventTarget.prototype:ye.prototype,{addEventListener:Ue,dispatchEvent:Mn,removeEventListener:wr}=Zr,Vs="$$HostElementKey$$",zs="$$ShadowedNodeKey$$";function wo(r,f,h){const S=r;{const{value:P}=h;S[f]=P}}function ka(r,f){wo(r,Vs,{value:f,configurable:!0})}function xa(r,f){wo(r,zs,{value:f})}function Qt(r){return r[Vs]}function nn(r){let f=r,h;for(;!Lt(f);){if(h=Qt(f),!lt(h))return h;if(f=Rn.call(f),!Lt(f)&&nr(f))return}}function Ar(r){return r[zs]}function we(r){return!lt(Qt(r))}function xt(r){let f=Nn.call(r);for(;!Lt(f)&&pn(f);)r=f,f=Nn.call(r);return r}function er(r,f){const h=Ar(r);let S=f instanceof Element?f:Nn.call(f);for(;!Lt(S)&&S!==r;){const P=nn(S),Y=Nn.call(S);if(P===h)return pn(S);if(Y===r)return!1;if(!Lt(Y)&&nn(Y)!==P)if(pn(Y)){if(S=Ae(xt(Y)),!Lt(S)){if(S===r)return!0;if(nn(S)===h)return!0}}else return!1;else S=Y}return!1}function Ae(r){if(!(r instanceof ye))return null;const f=nn(r);if(lt(f))return null;let h=r;for(;!Lt(h)&&Ar(h)!==f;)h=Rn.call(h);return Lt(h)?null:h}function nr(r){return pn(r)&&we(r)}function pn(r){return r instanceof HTMLSlotElement}function Ce(r,f){const h=nn(f);if(lt(h)){const S=Rn.call(f);return!(!Lt(S)&&nr(S))}return Ar(r)===h}function Hi(r){const f=pe(r);return rn(f,zt(Ge.call(f)))}function Ks(r,f){const h=[];for(let S=0,P=f.length;S<P;S+=1){const Y=f[S];!Ce(r,Y)&&er(r,Y)&&Me.call(h,Y)}return h}function Ke(r,f){for(let h=0,S=f.length;h<S;h+=1){const P=f[h];if(!Ce(r,P)&&er(r,P))return P}return null}function rn(r,f){const h=[];for(let S=0,P=f.length;S<P;S+=1){const Y=f[S];Ce(r,Y)&&Me.call(h,Y)}return h}function Cr(r,f){for(let h=0,S=f.length;h<S;h+=1)if(Ce(r,f[h]))return f[h];return null}function ti(r,f){const h=pe(r),S=zt(In.call(h,f));return Cr(h,S)}function qs(r,f){const h=pe(r),S=In.call(h,f);return rn(h,zt(S))}function to(r){if(!le(r)&&!pn(r)){const f=Ge.call(r);return zt(f)}if(le(r)){const f=zt(In.call(r,"slot")),h=qn(Xn(r));return fn.call(f,(S,P)=>(h===qn(P)&&Me.apply(S,ei(P)),S),[])}else{const f=zt(Ge.call(r)),h=qn(r);return ze.call(f,S=>h===qn(S))}}function ei(r){const f=Ae(r);if(Lt(f))return[];const h=zt(Ge.call(r));return ze.call(h,S=>!we(S)||!Ce(f,S))}function Ui(r){let f="";const h=to(r);for(let S=0,P=h.length;S<P;S+=1)f+=Ao(h[S]);return f}const ji=/[&\u00A0"]/g,Fa=/[&\u00A0<>]/g,{replace:ni,toLowerCase:Bi}=String.prototype;function Vi(r){switch(r){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"\xA0":return" ";default:return""}}function Xs(r){return ni.call(r,ji,Vi)}function eo(r){return ni.call(r,Fa,Vi)}const kt=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),zi=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Ao(r){switch(r.nodeType){case wa:{const{attributes:f}=r,h=Jr.call(r);let S="<"+Bi.call(h);for(let P=0,Y;Y=f[P];P++)S+=" "+Y.name+'="'+Xs(Y.value)+'"';return S+=">",kt.has(h)?S:S+Ui(r)+"</"+Bi.call(h)+">"}case Ps:{const{data:f,parentNode:h}=r;return h instanceof Element&&zi.has(Jr.call(h))?f:eo(f)}case Bo:return`<!CDATA[[${r.data}]]>`;case Vo:return`<?${r.target} ${r.data}?>`;case Lo:return`<!--${r.data}-->`;default:return""}}function Ki(r){switch(r.nodeType){case wa:{const f=to(r);let h="";for(let S=0,P=f.length;S<P;S+=1){const Y=f[S];Y.nodeType!==Lo&&(h+=Ki(Y))}return h}default:return r.nodeValue}}const Pr=new WeakMap;function Co(){throw new TypeError("Illegal constructor")}Co.prototype=Ht(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:Co},item:{writable:!0,enumerable:!0,configurable:!0,value(r){return this[r]}},length:{enumerable:!0,configurable:!0,get(){return Pr.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(r,f){ee.call(Pr.get(this),r,f)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return fr.call(Pr.get(this),(r,f)=>[f,r])}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return fr.call(Pr.get(this),(r,f)=>f)}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return Pr.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let r=0;return{next:()=>{const f=Pr.get(this);return r<f.length?{value:f[r++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get(){return"NodeList"}},toString:{writable:!0,configurable:!0,value(){return"[object NodeList]"}}}),Ve(Co,NodeList);function Or(r){const f=Ht(Co.prototype);return Pr.set(f,r),ee.call(r,(h,S)=>{Ct(f,S,{value:h,enumerable:!0,configurable:!0})}),f}function Yt(r){var f;const h=[];let S=r.getRootNode();for(;!lt(S);)h.push(S),S=(f=S.host)===null||f===void 0?void 0:f.getRootNode();return h}const no=(r,f)=>{let h;for(;!lt(h=r.host);){const S=h.getRootNode();if(S===f)return h;r=S}};function zn(r,f,h,S){const P=Wt.call(f,h,S),Y=[],jt=Yt(r);if(!Lt(P))for(let Xt=0;Xt<P.length;Xt++){const re=P[Xt];if(nr(re))continue;const be=re.getRootNode();if(ge.call(jt,be)!==-1){Me.call(Y,re);continue}const Wn=no(be,jt[0]);!lt(Wn)&&ge.call(P,Wn)===-1&&ge.call(Y,Wn)===-1&&Me.call(Y,Wn)}return Y}const Po=new WeakMap;function ie(){throw new TypeError("Illegal constructor")}ie.prototype=Ht(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:ie},item:{writable:!0,enumerable:!0,configurable:!0,value(r){return this[r]}},length:{enumerable:!0,configurable:!0,get(){return Po.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(r){if(r==="")return null;const f=Po.get(this);for(let h=0,S=f.length;h<S;h++){const P=f[S];if(r===Xr.call(P,"id")||r===Xr.call(P,"name"))return P}return null}},[Symbol.toStringTag]:{configurable:!0,get(){return"HTMLCollection"}},toString:{writable:!0,configurable:!0,value(){return"[object HTMLCollection]"}}}),Ve(ie,HTMLCollection);function Kn(r){const f=Ht(ie.prototype);return Po.set(f,r),ee.call(r,(h,S)=>{Ct(f,S,{value:h,enumerable:!0,configurable:!0})}),f}function rr(r){return nr(r)||le(r)}function ro(r,f){const h=Ae(r);if(f===h)return Xn(h);if(f instanceof Element){if(nn(r)===nn(f))return f;if(!Lt(h)&&pn(f)){const S=Ae(f);if(!Lt(S)&&Ce(h,S))return S}}return null}function Ga(){return gt(this).length>0}function Ha(){return gt(this)[0]||null}function Ua(){const r=gt(this);return r[r.length-1]||null}function or(){return Ki(this)}function ja(r){Ri.call(this,r)}function Ba(){const r=Rn.call(this);return Lt(r)?r:ro(this,r)}function _(){const r=Rn.call(this);if(Lt(r))return null;const f=ro(this,r);return f instanceof Element?f:null}function o(r){return this===r?0:this.getRootNode()===r?10:Qt(this)!==Qt(r)?35:tn.call(this,r)}function a(r){return r==null||Qt(this)!==Qt(r)?!1:(tn.call(this,r)&gr)!=0}function d(r){const f=Ci.call(this,!1);if(!r)return f;const h=gt(this);for(let S=0,P=h.length;S<P;S+=1)f.appendChild(h[S].cloneNode(!0));return f}function m(){if(le(this)){const r=Ae(this),f=Lt(r)?[]:rn(r,to(this));return Or(f)}return Ge.call(this)}const g=ye.prototype.getRootNode,T=lt(g)?function(){let r=this,f;for(;!Lt(f=Rn.call(r));)r=f;return r}:g;function j(r){const f=Ae(r);return Lt(f)?T.call(r):Xn(f)}function rt(r){const f=lt(r)?!1:!!r.composed;return hr(f)?T.call(this,r):j(this)}yt(ye.prototype,{firstChild:{get(){return rr(this)?Ha.call(this):Aa.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return rr(this)?Ua.call(this):Ns.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return we(this)||le(this)?or.call(this):Ds.call(this)},set:ja,enumerable:!0,configurable:!0},parentNode:{get(){if(we(this))return Ba.call(this);const r=Rn.call(this);return!Lt(r)&&nr(r)?Ae(r):r},enumerable:!0,configurable:!0},parentElement:{get(){if(we(this))return _.call(this);const r=Nn.call(this);return!Lt(r)&&nr(r)?Ae(r):r},enumerable:!0,configurable:!0},childNodes:{get(){return rr(this)?m.call(this):Ge.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return rr(this)?Ga.call(this):zo.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(r){return ne(this)?tn.call(this,r):o.call(this,r)},enumerable:!0,writable:!0,configurable:!0},contains:{value(r){return this===r?!0:r==null?!1:we(this)||le(this)?a.call(this,r):Pi.call(this,r)},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(r){return we(this)||le(this)?d.call(this,r):Ci.call(this,r)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:rt,enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return Ni.call(this)}}});let q=!1;function At(){return!q}const gt=function(r){return r.childNodes};Dt.call(HTMLElement.prototype,"contains")&&Ct(HTMLElement.prototype,"contains",pt(ye.prototype,"contains")),Dt.call(HTMLElement.prototype,"parentElement")&&Ct(HTMLElement.prototype,"parentElement",pt(ye.prototype,"parentElement"));const Rt=new WeakMap,Ut=new WeakMap;function Pe(r){return Gn(r)||Es(r)&&!Lt(r)&&Gn(r.handleEvent)}function En(r,f,h){if(f===h)return!0;let S=Ut.get(r);return lt(S)&&(S=r.composedPath(),Ut.set(r,S)),S.includes(h)}function Rr(r){if(!Pe(r))return r;let f=Rt.get(r);return lt(f)&&(f=function(h){const S=ve.call(h),P=ir(h);if(!!En(h,P,S))return Gn(r)?r.call(this,h):r.handleEvent&&r.handleEvent(h)},Rt.set(r,f)),f}const ri=new WeakMap,Ys=new WeakMap;function Va(r){let f=Ys.get(r);return lt(f)&&(f=Ht(null),Ys.set(r,f)),f}function ir(r){var f;return(f=oo.get(r))!==null&&f!==void 0?f:ln.call(r)}const Kl=new WeakMap;function ql(r){if(!Gn(r))throw new TypeError;let f=Kl.get(r);return lt(f)&&(f=function(h){let S=ve.call(h);vo(S)||(S=Xn(S));const P=ir(h);En(h,P,S)&&r.call(S,h)},f.placement=1,Kl.set(r,f)),f}const Xl=new WeakMap;function Yl(r){if(!Gn(r))throw new TypeError;let f=Xl.get(r);return lt(f)&&(f=function(h){const S=ve.call(h),P=ir(h);En(h,P,S)&&r.call(S,h)},f.placement=0,Xl.set(r,f)),f}function qi(r){let f=!1,h=!1;const{type:S,stopImmediatePropagation:P,stopPropagation:Y}=r,jt=ve.call(r),re=Va(jt)[S];Ct(r,"stopImmediatePropagation",{value(){f=!0,P.call(r)},writable:!0,enumerable:!0,configurable:!0}),Ct(r,"stopPropagation",{value(){h=!0,Y.call(r)},writable:!0,enumerable:!0,configurable:!0});const be=V.call(re);function Wn(Cu){ee.call(be,fl=>{mr(f)&&fl.placement===Cu&&ge.call(re,fl)!==-1&&fl.call(void 0,r)})}ri.set(r,1),Wn(1),mr(f)&&mr(h)&&(ri.set(r,0),Wn(0)),ri.set(r,2)}function Js(r,f,h){const S=Va(r);let P=S[f];lt(P)&&(P=S[f]=[]),ge.call(P,h)===-1&&(P.length===0&&Ue.call(r,f,qi),Me.call(P,h))}function sr(r,f,h){const S=Va(r);let P,Y;!lt(Y=S[f])&&(P=ge.call(Y,h))!==-1&&(dr.call(Y,P,1),Y.length===0&&wr.call(r,f,qi))}function Nr(r,f,h){if(Gn(f)){const S=Yl(f);Js(this,r,S)}}function za(r,f,h){if(Gn(f)){const S=Yl(f);sr(this,r,S)}}function Jl(r,f,h,S){if(Gn(h)){const P=pe(r),Y=ql(h);Js(P,f,Y)}}function Qs(r,f,h,S){if(Gn(h)){const P=pe(r),Y=ql(h);sr(P,f,Y)}}const Oo=new WeakMap,{createDocumentFragment:Dr}=document;function su(r){return Oo.has(r)}function kn(r){const f=Oo.get(r);if(lt(f))throw new TypeError;return f}Ct(ye.prototype,yo,{set(r){lt(r)||(this[Ts]=r,ka(this,r.nodeKey))},get(){return this[Ts]},configurable:!0,enumerable:!0}),Ct(Sr,Ea,{value:Vn}),lt(Sr[ws])&&Ct(Sr,ws,{value:Fi,configurable:!0}),lt(Sr[As])&&Ct(Sr,As,{value:Bn,configurable:!0});function qn(r){return r[yo]}function Ro(r,f){r[yo]=f}function oi(r){return kn(r).delegatesFocus}function pe(r){return kn(r).host}function Xn(r){return kn(r).shadowRoot}function le(r){const f=Oo.get(r);return!lt(f)&&r===f.host}function Ka(r){const f=Oo.get(r);return!lt(f)&&r===f.shadowRoot}let Zs=0;function ii(r,f){if(Oo.has(r))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");const{mode:h,delegatesFocus:S}=f,P=He(r),Y=Dr.call(P),jt={mode:h,delegatesFocus:!!S,host:r,shadowRoot:Y};Oo.set(Y,jt),Oo.set(r,jt);const Xt=()=>Y,re=Xt.nodeKey=Zs++;return xa(r,re),Ro(Y,Xt),Ve(Y,ai.prototype),Y}const No={constructor:{writable:!0,configurable:!0,value:ai},toString:{writable:!0,configurable:!0,value(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},Xi={activeElement:{enumerable:!0,configurable:!0,get(){const r=pe(this),f=He(r),h=Hn.call(f);if(Lt(h))return h;if((tn.call(r,h)&gr)==0)return null;let S=h;for(;!Ce(r,S);)S=Nn.call(S);return pn(S)?null:S}},delegatesFocus:{configurable:!0,get(){return kn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(r,f){const h=pe(this),S=He(h);return qa(this,S,r,f)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(r,f){const h=pe(this),S=He(h);return zn(this,S,r,f)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return pe(this)}},mode:{configurable:!0,get(){return kn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},oo=new WeakMap;fe(No,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(r,f){return Rs.call(pe(this),r,f),r}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(r){return bo.call(pe(this),r),r}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(r){return Os.call(pe(this),r),r}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(r,f){return yr.call(pe(this),r,f),f}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(r,f,h){Jl(this,r,f)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(r){return oo.set(r,this),Mn.apply(pe(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(r,f,h){Qs(this,r,f)}},baseURI:{enumerable:!0,configurable:!0,get(){return pe(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return Or(Hi(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value(r){const f=pe(this);return this===r?0:this.contains(r)?20:tn.call(f,r)&gr?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(r){if(this===r)return!0;const f=pe(this);return(tn.call(f,r)&gr)!=0&&Ce(f,r)}},firstChild:{enumerable:!0,configurable:!0,get(){return gt(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const r=gt(this);return r[r.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return gt(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return Ni.call(pe(this))}},nextSibling:{enumerable:!0,configurable:!0,get(){return null}},previousSibling:{enumerable:!0,configurable:!0,get(){return null}},nodeName:{enumerable:!0,configurable:!0,get(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get(){return pe(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get(){return null}},parentNode:{enumerable:!0,configurable:!0,get(){return null}},textContent:{enumerable:!0,configurable:!0,get(){const r=gt(this);let f="";for(let h=0,S=r.length;h<S;h+=1){const P=r[h];P.nodeType!==Lo&&(f+=Ki(P))}return f},set(r){const f=pe(this);Ri.call(f,r)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(r){return!lt(r)&&hr(r.composed)?pe(this).getRootNode(r):this}}},{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return Kn(ze.call(Hi(this),r=>r instanceof Element))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:r}=this;return r.item(r.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value(r){return ti(this,r)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(r){return Or(qs(this,r))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const r=gt(this);let f="";for(let h=0,S=r.length;h<S;h+=1)f+=Ao(r[h]);return f},set(r){const f=pe(this);qo.call(f,r)}}},Xi);function ai(){throw new TypeError("Illegal constructor")}ai.prototype=Ht(DocumentFragment.prototype,No),Ct(ai,Symbol.hasInstance,{value:function(r){return Es(r)&&!Lt(r)&&(vo(r)||un(r)===ai.prototype)}});function li(r){const f=Xn(r);let h=f.$$placeholder$$;if(!lt(h))return h;const S=He(r);return h=f.$$placeholder$$=dn.call(S,""),yt(h,{childNodes:{get(){return f.childNodes},enumerable:!0,configurable:!0},tagName:{get(){return`#shadow-root (${f.mode})`},enumerable:!0,configurable:!0}}),h}function ci(r,f){const h=[];let S;if(r instanceof Window)S=r;else if(r instanceof ye)S=r.getRootNode();else return h;let P=r;for(;!Lt(P);)if(h.push(P),P instanceof Element||P instanceof Text){const jt=P.assignedSlot;Lt(jt)?P=P.parentNode:P=jt}else(Ka(P)||vo(P))&&(f||P!==S)?P=P.host:P instanceof ye?P=P.parentNode:P=null;let Y;return r instanceof Window?Y=r.document:Y=He(r),h[h.length-1]===Y&&h.push(window),h}/** |
| | | @license |
| | | Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
| | | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
| | | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| | | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
| | | Code distributed by Google as part of the polymer project is also |
| | | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
| | | */function Yi(r,f){if(Lt(r))return null;const h=ci(r,!0),S=f;for(let P=0,Y,jt,Xt,re;P<S.length;P++)if(Y=S[P],Xt=Y instanceof Window?Y:Y.getRootNode(),Xt!==jt&&(re=h.indexOf(Xt),jt=Xt),!Ka(Xt)||!lt(re)&&re>-1)return Y;return null}function qa(r,f,h,S){const P=Un.call(f,h,S);return Lt(P)?P:Yi(r,ci(P,!0))}function lu(r,f){return qa(this,this,r,f)}Document.prototype.elementFromPoint=lu;function cu(r,f){return zn(this,this,r,f)}Document.prototype.elementsFromPoint=cu,Ct(Document.prototype,"activeElement",{get(){let r=Hn.call(this);if(Lt(r))return r;for(;!lt(Qt(r));)if(r=Nn.call(r),Lt(r))return null;return r.tagName==="HTML"&&(r=this.body),r},enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementById",{value(){const r=Fi.apply(this,V.call(arguments));return Lt(r)?null:lt(Qt(r))||ne(r)?r:null},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"querySelector",{value(){const r=zt(Bn.apply(this,V.call(arguments))),f=Pn.call(r,h=>lt(Qt(h))||ne(h));return lt(f)?null:f},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"querySelectorAll",{value(){const r=zt(Bn.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Or(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementsByClassName",{value(){const r=zt(js.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Kn(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementsByTagName",{value(){const r=zt(Gi.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Kn(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(Document.prototype,"getElementsByTagNameNS",{value(){const r=zt(Pa.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Kn(f)},writable:!0,enumerable:!0,configurable:!0}),Ct(pt(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const r=zt(Eo.apply(this,V.call(arguments))),f=ze.call(r,h=>lt(Qt(h))||ne(h));return Or(f)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ai,configurable:!0,writable:!0});const ta=Object.getOwnPropertyDescriptor(Event.prototype,"composed");function Xa(){if(!ta)return!1;let r=new Event("click");const f=document.createElement("button");return f.addEventListener("click",h=>r=h),f.click(),!ta.get.call(r)}const Ql=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function Zl(r){Object.defineProperty(r,"composed",{configurable:!0,enumerable:!0,get(){return!0}})}function Ji(){HTMLElement.prototype.click=function(){Ue.call(this,"click",Zl);try{Ql.value.call(this)}finally{wr.call(this,"click",Zl)}}}Xa()&&Ji();function uu(){return new Event("test",{composed:!0}).composed!==!0}function hn(){const r=fe(Ht(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),f=Event;function h(S,P){const Y=new f(S,P),jt=!!(P&&P.composed);return Object.defineProperties(Y,{composed:{get(){return jt},configurable:!0,enumerable:!0}}),Y}h.prototype=f.prototype,h.AT_TARGET=f.AT_TARGET,h.BUBBLING_PHASE=f.BUBBLING_PHASE,h.CAPTURING_PHASE=f.CAPTURING_PHASE,h.NONE=f.NONE,window.Event=h,Object.defineProperties(Event.prototype,{composed:{get(){const{type:S}=this;return r[S]===1},configurable:!0,enumerable:!0}})}uu()&&hn();const Ya=CustomEvent;function Ja(r,f){const h=new Ya(r,f),S=!!(f&&f.composed);return Object.defineProperties(h,{composed:{get(){return S},configurable:!0,enumerable:!0}}),h}if(Ja.prototype=Ya.prototype,window.CustomEvent=Ja,typeof ClipboardEvent!="undefined"){const r=fe(Ht(null),{copy:1,cut:1,paste:1});yt(ClipboardEvent.prototype,{composed:{get(){const{type:f}=this;return r[f]===1},configurable:!0,enumerable:!0}})}function ui(){const r=typeof HTMLIFrameElement!="undefined",f=typeof Proxy!="undefined"&&hr(Proxy.isCompat);return r&&f}function Qa(){const r=pt(HTMLIFrameElement.prototype,"contentWindow"),{get:f}=r;r.get=function(){const h=f.call(this);return Lt(h)||lt(Qt(this))?h:fu(h)},Ct(HTMLIFrameElement.prototype,"contentWindow",r)}function fu(r){return{addEventListener(){return r.addEventListener.apply(r,arguments)},blur(){return r.blur.apply(r,arguments)},close(){return r.close.apply(r,arguments)},focus(){return r.focus.apply(r,arguments)},postMessage(){return r.postMessage.apply(r,arguments)},removeEventListener(){return r.removeEventListener.apply(r,arguments)},get closed(){return r.closed},get frames(){return r.frames},get length(){return r.length},get location(){return r.location},set location(f){r.location=f},get opener(){return r.opener},get parent(){return r.parent},get self(){return r.self},get top(){return r.top},get window(){return r.window}}}ui()&&Qa();const fi=MutationObserver,{disconnect:ea,observe:nd,takeRecords:io}=fi.prototype,tc="$$lwcObserverCallbackWrapper$$",Qi="$$lwcNodeObservers$$",Zi=new WeakMap;function Io(r){return r[Qi]}function du(r,f){r[Qi]=f}function Za(r){const{addedNodes:f,removedNodes:h,target:S,type:P}=r,Y=Ht(MutationRecord.prototype);return yt(Y,{addedNodes:{get(){return f},enumerable:!0,configurable:!0},removedNodes:{get(){return h},enumerable:!0,configurable:!0},type:{get(){return P},enumerable:!0,configurable:!0},target:{get(){return S.shadowRoot},enumerable:!0,configurable:!0}}),Y}function na(r,f){let h=f;for(;!Lt(h);){const S=Io(h);if(!lt(S)&&(S[0]===r||ge.call(S,r)!==-1))return!0;h=h.parentNode}return!1}function ra(r,f){return fn.call(r,(h,S)=>{const{target:P,addedNodes:Y,removedNodes:jt,type:Xt}=S;if(Xt==="childList"&&!lt(Ar(P)))if(Y.length>0){const re=Y[0];if(na(f,re)){const be=Io(P);be&&(be[0]===f||ge.call(be,f)!==-1)?Me.call(h,S):Me.call(h,Za(S))}}else{const re=P.shadowRoot,be=jt[0];if(nn(P)===nn(be)&&na(f,P))Me.call(h,S);else if(re){const Wn=Io(re);Wn&&(Wn[0]===f||ge.call(Wn,f)!==-1)&&Me.call(h,Za(S))}}else na(f,P)&&Me.call(h,S);return h},[])}function so(r){let f=r[tc];return lt(f)&&(f=r[tc]=(h,S)=>{const P=ra(h,S);P.length!==0&&r.call(S,P,S)}),f}function ao(r){const f=so(r);return new fi(f)}function pu(){ea.call(this);const r=Zi.get(this);lt(r)||(ee.call(r,f=>{const h=f[Qi];if(!lt(h)){const S=ge.call(h,this);S!==-1&&dr.call(h,S,1)}}),r.length=0)}function hu(r,f){let h=Io(r);if(lt(h)&&(h=[],du(r,h)),ge.call(h,this)===-1&&Me.call(h,this),Ka(r)&&(r=r.host),Zi.has(this)){const S=Zi.get(this);ge.call(S,r)===-1&&Me.call(S,r)}else Zi.set(this,[r]);return nd.call(this,r,f)}function ec(){return ra(io.call(this),this)}ao.prototype=fi.prototype,ao.prototype.disconnect=pu,ao.prototype.observe=hu,ao.prototype.takeRecords=ec,Ct(window,"MutationObserver",{value:ao,configurable:!0,writable:!0});function mu(r,f,h){if(le(this))return Nr.apply(this,arguments);if(arguments.length<2){const P=V.call(arguments);return P.length>1&&(P[1]=Rr(P[1])),Ue.apply(this,P)}const S=Rr(f);return Ue.call(this,r,S,h)}function nc(r,f,h){if(le(this))return za.apply(this,arguments);const S=V.call(arguments);arguments.length>1&&(S[1]=Rr(S[1])),wr.apply(this,S),wr.apply(this,arguments)}yt(Zr,{addEventListener:{value:mu,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:nc,enumerable:!0,writable:!0,configurable:!0}});function qt(){return typeof EventTarget=="undefined"}function ts(r,f,h){if(arguments.length>1){const S=V.call(arguments);return S[1]=Rr(S[1]),Jo.apply(this,S)}return Jo.apply(this,arguments)}function je(r,f,h){if(arguments.length>1){const S=V.call(arguments);S[1]=Rr(S[1]),Wo.apply(this,S)}Wo.apply(this,arguments)}function tl(){yt(Window.prototype,{addEventListener:{value:ts,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:je,enumerable:!0,writable:!0,configurable:!0}})}qt()&&tl();function rd(){const r=ve.call(this);return Lt(r)?null:ri.get(this)===1?Xn(r):r}function rc(){const r=ln.call(this);if(!(r instanceof ye))return r;const f=He(r),h=ci(r,this.composed),S=ve.call(this);if(S instanceof ye){if(S===f||S===f.body)return lt(Qt(r))?r:Yi(f,h)}else return Lt(S)&<(Qt(r))?r:Yi(f,h);let P=S,Y=h;return le(S)&&ri.get(this)===1&&(P=Xn(S)),le(r)&&oo.has(this)&&(Y=ci(Xn(r),this.composed)),Yi(P,Y)}function oc(){const r=ln.call(this);if(!(r instanceof ye))return[];const f=Boolean(r.shadowRoot),h=su(r);if(f&&!h)return tr.call(this);const S=ve.call(this);if(Lt(S))return[];let P=r;return le(r)&&oo.has(this)&&(P=Xn(r)),ci(P,this.composed)}yt(Event.prototype,{target:{get:rc,enumerable:!0,configurable:!0},currentTarget:{get:rd,enumerable:!0,configurable:!0},composedPath:{value:oc,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:rc,enumerable:!0,configurable:!0},path:{get:oc,enumerable:!0,configurable:!0}});function ic(r){const f=pt(r.prototype,"relatedTarget").get;Ct(r.prototype,"relatedTarget",{get(){const h=f.call(this);if(Lt(h))return null;if(!(h instanceof ye)||!we(h))return h;let S=ve.call(this);return Lt(S)&&(S=He(h)),Yi(S,ci(h,!0))},enumerable:!0,configurable:!0})}ic(FocusEvent),ic(MouseEvent);const od=Dt.call(Text.prototype,"assignedSlot")?pt(Text.prototype,"assignedSlot").get:()=>null;let el;const Su={childList:!0},sc=new WeakMap;function gu(){return new To(r=>{const f=[];ee.call(r,h=>{const{target:S}=h;ge.call(f,S)===-1&&(Me.call(f,S),Mn.call(S,new CustomEvent("slotchange")))})})}function nl(r){const f=zt(Ge.call(r));return fn.call(f,(h,S)=>(S instanceof Element&&pn(S)?Me.apply(h,nl(S)):Me.call(h,S),h),[])}function ac(){const r=Rn.call(this);if(r instanceof Element){const f=Us.call(r);if(vo(f))return this instanceof Text?od.call(this):Zn.call(this)}return!Lt(r)&&pn(r)&&Qt(r)!==Qt(this)?r:null}yt(HTMLSlotElement.prototype,{addEventListener:{value(r,f,h){HTMLElement.prototype.addEventListener.call(this,r,f,h),r==="slotchange"&&!sc.get(this)&&(sc.set(this,!0),el||(el=gu()),Qo.call(el,this,Su))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(r){if(we(this)){const h=!lt(r)&&hr(r.flatten)?nl(this):ei(this);return ze.call(h,S=>S instanceof Element)}else return bt.apply(this,V.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(r){return we(this)?!lt(r)&&hr(r.flatten)?nl(this):ei(this):Vt.apply(this,V.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const r=Xr.call(this,"name");return Lt(r)?"":r},set(r){Di.call(this,"name",r)},enumerable:!0,configurable:!0},childNodes:{get(){if(we(this)){const r=Ae(this),f=Lt(r)?[]:rn(r,to(this));return Or(f)}return Ge.call(this)},enumerable:!0,configurable:!0}}),yt(Text.prototype,{assignedSlot:{get:ac,enumerable:!0,configurable:!0}});function es(r,f){let h;const S=Qt(r);if(lt(S))r instanceof HTMLBodyElement?h=ze.call(f,P=>lt(Qt(P))||ne(r)):h=V.call(f);else if(le(r)){const P=Ae(r);Lt(P)?h=[]:Ar(r)?h=Ks(r,f):h=rn(P,f)}else h=ze.call(f,P=>nn(P)===S);return h}function lc(){const r=gt(this);let f="";for(let h=0,S=r.length;h<S;h+=1)f+=Ao(r[h]);return f}function rl(){return Ao(this)}function cc(r){return r[$n]?ii(this,r):Ms.call(this,r)}function uc(){if(le(this)){const r=Xn(this);if(r.mode==="open")return r}return Us.call(this)}function se(){const r=Ae(this),f=Lt(r)?[]:rn(r,to(this));return Kn(ze.call(f,h=>h instanceof Element))}function fc(){return this.children.length}function yu(){return this.children[0]||null}function dc(){const{children:r}=this;return r.item(r.length-1)||null}yt(Element.prototype,{innerHTML:{get(){return we(this)||le(this)?lc.call(this):Gs.call(this)},set(r){qo.call(this,r)},enumerable:!0,configurable:!0},outerHTML:{get(){return we(this)||le(this)?rl.call(this):Mi.call(this)},set(r){ki.call(this,r)},enumerable:!0,configurable:!0},attachShadow:{value:cc,enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:uc,enumerable:!0,configurable:!0},children:{get(){return rr(this)?se.call(this):xi.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return rr(this)?fc.call(this):ks.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return rr(this)?yu.call(this):xs.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return rr(this)?dc.call(this):Ca.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:ac,enumerable:!0,configurable:!0}}),Dt.call(HTMLElement.prototype,"innerHTML")&&Ct(HTMLElement.prototype,"innerHTML",pt(Element.prototype,"innerHTML")),Dt.call(HTMLElement.prototype,"outerHTML")&&Ct(HTMLElement.prototype,"outerHTML",pt(Element.prototype,"outerHTML")),Dt.call(HTMLElement.prototype,"children")&&Ct(HTMLElement.prototype,"children",pt(Element.prototype,"children"));function ol(){const r=zt(In.apply(this,V.call(arguments)));if(le(this)){const f=Ae(this);return lt(Ar(this))?Lt(f)?null:Cr(f,r):Ke(this,r)}else if(we(this)){const f=Qt(this);if(lt(f))return r.length===0?null:r[0];{const h=Pn.call(r,S=>nn(S)===f);return lt(h)?null:h}}else{if(!(this instanceof HTMLBodyElement)){const h=r[0];return lt(h)?null:h}const f=Pn.call(r,h=>lt(Qt(h))||ne(this));return lt(f)?null:f}}function pc(r,f){let h;if(le(r)){const S=Ae(r);lt(Ar(r))?Lt(S)?h=[]:h=rn(S,f):h=Ks(r,f)}else if(we(r)){const S=Qt(r);lt(S)?h=V.call(f):h=ze.call(f,P=>nn(P)===S)}else r instanceof HTMLBodyElement?h=ze.call(f,S=>lt(Qt(S))||ne(r)):h=V.call(f);return h}yt(Element.prototype,{querySelector:{value:ol,writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const r=zt(In.apply(this,V.call(arguments))),f=pc(this,r);return Or(f)},writable:!0,enumerable:!0,configurable:!0}}),yt(Element.prototype,{getElementsByClassName:{value(){const r=zt(Hs.apply(this,V.call(arguments)));return Kn(es(this,r))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const r=zt(Dn.apply(this,V.call(arguments)));return Kn(es(this,r))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const r=zt(Lr.apply(this,V.call(arguments)));return Kn(es(this,r))},writable:!0,enumerable:!0,configurable:!0}}),Dt.call(HTMLElement.prototype,"getElementsByClassName")&&Ct(HTMLElement.prototype,"getElementsByClassName",pt(Element.prototype,"getElementsByClassName"));const ns=` |
| | | [contenteditable], |
| | | [tabindex], |
| | | a[href], |
| | | area[href], |
| | | audio[controls], |
| | | button, |
| | | iframe, |
| | | input, |
| | | select, |
| | | textarea, |
| | | video[controls] |
| | | `,Lu=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function hc(r){return r.filter(f=>br.call(f,"tabindex")?Xr.call(f,"tabindex")==="0":Lu.has(Jr.call(f))?!br.call(f,"disabled"):!0)}const il=new WeakMap;function di(r){const{width:f,height:h}=Is.call(r),S=f>0||h>0,P=r.tagName==="AREA";return(S||P)&&getComputedStyle(r).visibility!=="hidden"}function bu(r){return le(r)&&oi(r)?!1:Qr.call(r,ns)&&di(r)}function mc(){const r=this.getRootNode();if(r===this){const P=en.call(this,ns);Lt(P)||P.focus.apply(P,arguments);return}if(r.activeElement===this)return;const h=zt(In.call(this,ns));let S=!1;for(;!S&&h.length!==0;){const P=h.shift();P.focus.apply(P,arguments),S=P.getRootNode().activeElement===P}}function oa(r){const f=He(r),h=hc(zt(Bn.call(f,ns))),S=hc(zt(In.call(r,ns))),P=S[0],Y=S[S.length-1],jt=ge.call(h,r),Xt=jt>-1?jt:ge.call(h,P),re=S.length===0?Xt+1:ge.call(h,Y)+1,be=V.call(h,0,Xt),Wn=V.call(h,re);return{prev:be,inner:S,next:Wn}}function Sc(r){const f=He(r),h=Hn.call(f);return Lt(h)||(tn.call(r,h)&gr)!=0?h:null}function rs(r,f){const h=tn.call(r,f);return h&gr?0:h&Ta?1:h&va?2:-1}function sl(r){r.preventDefault(),r.stopPropagation()}function al(r,f){Jo.call(r,"focusin",sl,!0),Jo.call(r,"focusout",sl,!0),f(),Wo.call(r,"focusin",sl,!0),Wo.call(r,"focusout",sl,!0)}function Ir(r,f,h){const S=Ma(h),P=Eu(r,h);Lt(P)?al(S,()=>{f.blur()}):al(S,()=>{P.focus()})}let os=!1;function gc(){os=!0}function ll(){os=!1}function $u(){return!os}function _u(r){if(os)return;const f=ve.call(r),h=ln.call(r);if(f!==h)return;const S=Tr.call(r);if(Lt(S))return;const P=oa(f);if(rs(f,S)===1){const jt=Lc.bind(null,f.getRootNode()),Xt=Pn.call(P.inner,jt);if(lt(Xt))Ir(P.next,h,S);else{const re=Ma(Xt);al(re,()=>{Xt.focus()})}}else f===h&&Ir(Qn.call(P.prev),h,S)}function yc(r){if(os)return;const f=Tr.call(r);if(Lt(f))return;const h=ve.call(r),S=oa(h);if(ge.call(S.inner,f)!==-1)return;const P=ln.call(r),Y=rs(h,f);Y===1&&Ir(S.next,P,f),Y===2&&Ir(Qn.call(S.prev),P,f)}function Lc(r,f){if(!bu(f))return!1;const h=He(f);let S=f.getRootNode();for(;S!==h&&S!==r;){const Y=S.host;if(Xr.call(Y,"tabindex")==="-1")return!1;S=Y&&Y.getRootNode()}return!0}function Eu(r,f){const h=r.length;if(h>0)for(let S=0;S<h;S+=1){const P=r[S];if(Lc(f.getRootNode(),P))return P}return null}function bc(r){_c(r),Wu(r),Ue.call(r,"focusin",_u,!0)}function $c(r){wr.call(r,"focusin",_u,!0)}function _c(r){const f=He(r);il.get(f)||(il.set(f,!0),Ue.call(f,"mousedown",gc,!0),Ue.call(f,"mouseup",()=>{setTimeout(ll)},!0),Ue.call(f,"dragstart",ll,!0))}function lo(r){_c(r),$c(r),Ue.call(r,"focusin",yc,!0)}function Wu(r){wr.call(r,"focusin",yc,!0)}const{blur:pi,focus:Ec}=HTMLElement.prototype;function cl(){return oi(this)&&mr(br.call(this,"tabindex"))?0:Yo.call(this)}function Tu(r){const f=oi(this),h=Yo.call(this),S=br.call(this,"tabindex");Wr.call(this,r);const P=Yo.call(this),Y=br.call(this,"tabindex"),jt=h!==P;S&&(jt||mr(Y))&&(h===-1&&Wu(this),h===0&&f&&$c(this)),!mr(Y)&&(S&&Y&&mr(jt)||(P===-1&&lo(this),P===0&&f&&bc(this)))}function Wc(){if(oi(this)){const r=Sc(this);if(!Lt(r)){r.blur();return}}return pi.call(this)}function Tc(){const r=$u();if(r&&gc(),le(this)&&oi(this)){mc.call(this);return}Ec.apply(this,arguments),r&&ll()}yt(HTMLElement.prototype,{tabIndex:{get(){return le(this)?cl.call(this):Yo.call(this)},set(r){return le(this)?Tu.call(this,r):Wr.call(this,r)},enumerable:!0,configurable:!0},blur:{value(){if(le(this))return Wc.call(this);pi.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){Tc.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),$o!==null&&Fs!==null&&Ct(HTMLElement.prototype,"innerText",{get(){return $o.call(this)},set(r){Fs.call(this,r)},enumerable:!0,configurable:!0}),Ii!==null&&Yr!==null&&Ct(HTMLElement.prototype,"outerText",{get(){return Ii.call(this)},set(r){Yr.call(this,r)},enumerable:!0,configurable:!0});function vu(r){return r[wi]}function ul(r,f){r[wi]=f}Ct(Element.prototype,wi,{set(r){const f=this[Et];!lt(f)&&f!==r&&$r.call(this,f),lt(r)||Di.call(this,r,""),this[Et]=r},get(){return this[Et]},configurable:!0});function vc(r,f){r[yo]=f;const h=Ge.call(r);for(let S=0,P=h.length;S<P;S++)vc(h[S],f)}Ct(Element.prototype,Wa,{set(r){if(r){const f=this[yo];vc(this,f)}this[vs]=r},get(){return this[vs]},configurable:!0});const wc="$$DomManualKey$$",wu=function(){};let qe;const Ac={childList:!0};function ia(r,f,h){const S=qn(r);if(S!==f&&(Ro(r,f),r instanceof Element)){if(ul(r,h),le(r))return;lt(S)&&Qo.call(qe,r,Ac);const P=Ge.call(r);for(let Y=0,jt=P.length;Y<jt;Y+=1)ia(P[Y],f,h)}}function is(){return new To(r=>{ee.call(r,f=>{const{target:h,addedNodes:S,removedNodes:P}=f,Y=qn(h),jt=vu(h);for(let Xt=0,re=P.length;Xt<re;Xt+=1){const be=P[Xt];tn.call(h,be)&ye.DOCUMENT_POSITION_CONTAINED_BY||ia(be,wu,void 0)}for(let Xt=0,re=S.length;Xt<re;Xt+=1){const be=S[Xt];tn.call(h,be)&ye.DOCUMENT_POSITION_CONTAINED_BY&&ia(be,Y,jt)}})})}function Au(r){if(lt(qe)&&(qe=is()),lt(qn(r)))throw new Error("Invalid Element");Qo.call(qe,r,Ac)}Ct(Element.prototype,"$domManual$",{set(r){this[wc]=r,hr(r)&&Au(this)},get(){return this[wc]},configurable:!0})}),LWR.define("@lwrjs/app-service/communities_app/module/amd/v/0_9_0",["lwr/loaderLegacy/v/0_9_0","@lwc/synthetic-shadow/v/2_41_4","webruntime/hook/v/1_66_319-244_0","webruntime/o11yHook/v/1_66_319-244_0","webruntime/dynamicImportResourceHook/v/1_66_319-244_0","lwr/init/v/0_9_0","lwr/lockerDefine/v/0_9_0"],function(Ot,Ee,c,We,Se,fe,Ht){"use strict";function yt(It){return It&&typeof It=="object"&&"default"in It?It:{default:It}}var Ct=yt(c),oe=yt(We),pt=yt(Se);Ct.default(Ot.services),oe.default(Ot.services),pt.default(Ot.services),Ht.registerLockerDefine(["@locker/*","lwr/*","@lwrjs/*","lwc","@lwc/*","lwr","assert","logger","webruntime","webruntime/*","mobileruntime/hybridAppManager","@view","@view/*","@app","@app/*","@design","@design/*","@lwrjs","webruntimedesign","webruntimedesign/*","@luvio","@luvio/*","aura-instrumentation","aura","instrumentation/service","instrumentation/utility","aura-storage","transport","wire-service","force/ldsAdaptersAnalyticsDataService","force/ldsAdaptersAnalyticsSmartDataDiscovery","force/ldsAdaptersAnalyticsWave","force/ldsAdaptersAnalyticsWavePrivate","force/ldsAdaptersApex","force/ldsAdaptersCmsAuthoring","force/ldsAdaptersCmsDelivery","force/ldsAdaptersCmsType","force/ldsAdaptersCommerceCatalog","force/ldsAdaptersCommerceSearch","force/ldsAdaptersCommerceStorePricing","force/ldsAdaptersCommunityMicrobatching","force/ldsAdaptersCommunityNavigationMenu","force/ldsAdaptersCommunitySeo","force/ldsAdaptersCommunitySitesSearch","force/ldsAdaptersExperienceMarketingIntegration","force/ldsAdaptersGraphql","force/ldsAdaptersIndustriesCib","force/ldsAdaptersIndustriesClm","force/ldsAdaptersIndustriesDecisionMatrixDesigner","force/ldsAdaptersIndustriesEinsteinAiaccelerator","force/ldsAdaptersIndustriesExplainability","force/ldsAdaptersIndustriesHealthcloudHpi","force/ldsAdaptersIndustriesIdentityverification","force/ldsAdaptersIndustriesInteresttagging","force/ldsAdaptersIndustriesLoyaltyEngine","force/ldsAdaptersIndustriesPublicSector","force/ldsAdaptersIndustriesRcgTenantmanagement","force/ldsAdaptersIndustriesRuleBuilder","force/ldsAdaptersIndustriesSustainabilityBei","force/ldsAdaptersIndustriesSustainabilityDgf","force/ldsAdaptersIndustriesSustainabilityRecalculate","force/ldsAdaptersIndustriesSustainabilityRecordLockunlock","force/ldsAdaptersIndustriesSustainabilityReferenceData","force/ldsAdaptersIndustriesTimeline","force/ldsAdaptersIndustriesVideovisits","force/ldsAdaptersMarketingAssetcreation","force/ldsAdaptersPlatformAdminSuccessGuidance","force/ldsAdaptersPlatformFlow","force/ldsAdaptersPlatformFlowBuilder","force/ldsAdaptersPlatformInteractionOrchestrator","force/ldsAdaptersPlatformLearningContent","force/ldsAdaptersPlatformScaleCenter","force/ldsAdaptersRevenueBillingBatch","force/ldsAdaptersUiapi","force/ldsBindings","force/ldsEngine","force/ldsEngineCreator","force/ldsEngineWebruntime","force/ldsEnvironmentSettings","force/ldsInstrumentation","force/ldsNetwork","force/ldsRecordData","force/ldsStorage","force/mobileCapabilities","runtime_hybrid_capabilities/nativeCapabilities","o11y","o11y/*","@o11y","@o11y/*","@salesforce","@udd","@perm","@branding","@salesforce/*","@udd/*","@perm/*","@branding/*","trustedDesign/shadowDomUtils","community_builder/seoAssistant","community_case/supportQuickActionLayout","community_runtime/utils","community_user/userSettings","embeddedMessaging/container","experience_messaging/embeddedMessaging","community_login/checkEmail","community_login/forgotPassword","community_login/loginForm","community_login/loginUtils","community_login/selfRegister","community_login/socialLogin","b2c_lite_commerce/cartApi","b2c_lite_commerce/checkout","b2c_lite_commerce/checkoutApi","b2c_lite_commerce/checkoutApiDataSource","b2c_lite_commerce/checkoutRequestRetry","b2c_lite_commerce/context","b2c_lite_commerce/data","b2c_lite_commerce/einsteinActivitiesApi","b2c_lite_commerce/einsteinApi","b2c_lite_commerce/einsteinProductAndPriceApi","b2c_lite_commerce/heroBannerUi","b2c_lite_commerce/myAccountMenu","b2c_lite_commerce/orderSummary","b2c_lite_commerce/store","lightning","lightning/*","interop/button","interop/buttonIcon","dxp_page_layout/placeHolderDesign","community_builder/richTextEditor","dxp_form/baseForm","dxp_form/contactForm","dxp_form/dynamicForm","dxp_form/layoutUtils","dxp_form/leadForm","dxp_base/languageSelector","dxp_search/siteResults","dxp_flowruntime","dxp_flowruntime/*","flowruntime","flowruntime/*","experience/store","experience/data","experience/util","experience/cmsDeliveryApi","experience/userApi"]);const bn=globalThis.LWR,{rootComponents:un,ssrProps:Dt}=bn;Promise.all(un.map(async It=>{const Jn=fe.toKebabCase(It);return Ot.load(It,"@lwrjs/app-service/communities_app/module/amd/v/0_9_0").then(({default:Fe})=>{fe.init([[Jn,Fe]],Dt)})})),globalThis.LWR=Object.freeze({define:globalThis.LWR.define})}); |
| New file |
| | |
| | | LWR.define("webruntime/app/v/1",["exports","lwr/loaderLegacy/v/0_9_0","lwc/v/2_41_4","@app/authenticationCookieName/v/1","webruntime/transport/v/1_66_319-244_0","@app/basePath/v/1","@app/uiBasePath/v/1","@app/routes/v/1","@app/viewToThemeLayoutMap/v/1","webruntime/o11y/v/1_66_319-244_0","@app/extraRouteParams/v/1","@app/apiBasePath/v/1","@salesforce/i18n/lang/v/1","@app/apexApiBasePath/v/1","@app/isMobileAppMode/v/1","@app/isDesignMode/v/1","@app/guestUuidCookieName/v/1"],function(di,Ie,p,vd,nt,yd,wd,Td,Pd,Ed,_d,qg,Qg,Od,Cd,Sd,Nd){"use strict";function H(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}var li=H(vd),An=H(yd),rt=H(wd),Mn=H(Td),Rn=H(Pd),ci=H(_d),ui=H(Od),Ad=H(Cd),In=H(Sd),Dn=H(Nd),te=void 0;const{performance:J,console:Md}=window,kn=new WeakMap;let $n=!0,hi=!1;try{const t={randomInfo:123},e=J.mark("A",{detail:t})||J.getEntriesByType("mark").pop();$n=!!e.detail&&e.detail.randomInfo===t.randomInfo,hi=JSON.stringify(e).includes("randomInfo")}catch(t){$n=!1,Md.warn("PerformanceMarkOptions#detail & PerformanceMeasureOptions#detail are not supported",t)}finally{J.clearMarks("A")}function it(t,e,n){const r=t[e];t[e]=function(){return n.apply(this,[r.bind(this),...arguments])}}function Ln(t){return t.forEach(e=>{(e instanceof PerformanceMark||e instanceof PerformanceMeasure)&&(e.detail=kn.get(e)||null)}),t}function mi(){return{name:this.name||null,entryType:this.entryType||null,startTime:this.startTime||null,duration:this.duration||null,detail:this.detail||null}}hi||(PerformanceMark.prototype.toJSON=mi,PerformanceMeasure.prototype.toJSON=mi),$n||(it(J,"mark",(t,e,n)=>{const r=t(e)||J.getEntriesByType("mark").pop();if(n&&n.detail){const i=JSON.parse(JSON.stringify(n.detail));r.detail=i,kn.set(r,i)}return r}),it(J,"measure",(t,...e)=>{if(typeof e[1]!="string"&&e[1]&&e[1].detail){const n=e[1]&&e[1].start||null,r=t(e[0],n)||J.getEntriesByType("measure").sort((a,o)=>a.startTime+a.duration-(o.startTime+o.duration)).pop(),i=JSON.parse(JSON.stringify(e[1].detail));return r.detail=i,kn.set(r,i),r}return t(...e)}),it(J,"getEntries",t=>{const e=t();return Ln(e)}),it(J,"getEntriesByName",(t,e,n)=>{const r=t(e,n);return Ln(r)}),it(J,"getEntriesByType",(t,e)=>{const n=t(e);return Ln(n)}));const De="webruntime";function fi(t){return`/${De}${t}`}const Rd=fi("/log/metrics"),pi=fi("/log/errors"),at={APEX_ACTION_ERROR:"APEX_ACTION_ERROR",FAILED_TO_LOAD_RESOURCE:"FAILED_TO_LOAD_RESOURCE",TOO_MANY_REQUESTS:"TOO_MANY_REQUESTS",UNKNOWN_ERROR:"UNKNOWN_ERROR"},gi={PUBLISHER:"CommunityHybridContainer/",PLAYGROUND:"playgroundcommunity"},Id=8e3,Dd="@view";function bi(t){return`${Dd}/${t}`}const kd=["hasVanityURL","isDefault","isPublic","isRoot"],$d=[{type:"standard__search",params:[{name:"term",type:"state"}]},{type:"standard__objectPage",params:[{name:"filterName",type:"state"}]},{type:"standard__recordPage",params:[{name:"recordName",type:"state"},{name:"categoryPath",type:"state"}],match:({attributes:t},{name:e})=>t?.objectApiName==="ProductCategory"?e==="categoryPath":e!=="categoryPath"}];function Ld(t,e){const{match:n,params:r}=e;r.forEach(i=>{if(n&&!n(t.page,i))return;const{type:a,name:o}=i,s=a,l=s==="state"?"attributes":"state";!t.page?.[l]?.[o]||(t.page[s]||(t.page[s]={}),t.page[s][o]=t.page[l][o],delete t.page[l][o])})}function xd(t){let e=t;return["categoryPath","urlPath"].forEach(n=>{e=e.replace(new RegExp(`:${n}\\+?`),`:${n}+`)}),e}const jd=/\(.*\)/;function Fd(t){return t.map(e=>{if(e.uri||(e.uri=e.path),e.metadata||(e.metadata={}),kd.forEach(o=>{o in e&&(e.metadata[o]=e[o],delete e[o])}),e.uri){const o=e.uri.split("/");for(let s=0;s<o.length;s++)if(o[s]=o[s].replace(jd,""),o[s].startsWith(":")){const l=o[s].substring(1).replace(/[?+]/g,""),d=`:${l}`;e.page.attributes[l]||(e.page.attributes[l]=d)}e.uri=o.join("/")}e.patternMap&&(e.patterns=e.patternMap,delete e.patternMap);const n=e.page?.attributes?.objectApiName;n&&!n.startsWith(":")&&(e.uri=e.uri.replace(":objectApiName",n),e.patterns?.objectApiName&&delete e.patterns.objectApiName);const r=$d.find(o=>e.page?.type===o.type);r&&Ld(e,r);const i=e.page?.type;return i==="standard__recordPage"&&e.page.attributes?.objectApiName==="ProductCategory"&&(e.uri=xd(e.uri)),["standard__recordPage","standard__recordRelationshipPage"].includes(i)&&!e.page?.attributes?.actionName&&(e.page.attributes=e.page.attributes||{},e.page.attributes.actionName="view"),e})}const vi={MARK:"mark",RESOURCE:"resource",MEASURE:"measure",PAINT:"paint",NAVIGATION:"navigation",LONGTASK:"longtask",FRAME:"frame"},{window:k,document:Ud}=globalThis,de={hostname:Boolean(k?.location&&k?.location.hostname),pathname:Boolean(k?.location&&k?.location.pathname!==void 0&&k?.location.pathname!==null),rtt:Boolean(k?.navigator&&k?.navigator.connection&&k?.navigator.connection.rtt),PerformanceObserver:Boolean(k?.PerformanceObserver),PerformancePaintTiming:Boolean(k?.PerformancePaintTiming),PerformanceResourceTiming:Boolean(k?.PerformanceResourceTiming),getEntriesByType:Boolean(k?.performance.getEntriesByType),getEntriesByName:Boolean(k?.performance.getEntriesByName)};function Kd(t){let e=!1;k?.addEventListener("pagehide",n=>{e=!n.persisted}),k?.addEventListener("visibilitychange",()=>{Ud.visibilityState==="hidden"&&e&&t()})}function zd(t){return JSON.stringify(t).replace(/(":)(\d+\.\d{2,})/g,(n,r,i)=>r+Number(i).toFixed(2))}function Gd(){if(!de.getEntriesByName)return null;const t=window.performance.getEntriesByName(`${De}-app-bootstrap`),e=window.performance.getEntriesByName(`${De}-framework-bootstrap`);return[...t,...e]}function jt(){return de.PerformanceResourceTiming&&de.getEntriesByType?window.performance.getEntriesByType(vi.RESOURCE):null}function Vd(t){let e=jt().length;const n=setInterval(()=>{jt().length>e?e=jt().length:(clearInterval(n),t())},500)}function Bd(t,e,n){const r=window.performance.timing.navigationStart,i=jt().sort((o,s)=>o.startTime+o.duration>s.startTime+s.duration?-1:1)[0];let a=e-r;return i&&i.startTime+i.duration>t-r&&(a=i.startTime+i.duration),{entryType:"webruntime-navigation",startTime:t-r,duration:r+a-t,name:n&&n.id}}function yi(){return{hostname:de.hostname?window.location.hostname:null,pathname:de.pathname?window.location.pathname:null}}function Wd(){return de.rtt?{"connection.rtt":window.navigator.connection.rtt}:null}function Hd(){return de.PerformancePaintTiming&&de.getEntriesByType?window.performance.getEntriesByType(vi.PAINT):null}var le,ot,wi,Ft,Ti=-1,ke=function(t){addEventListener("pageshow",function(e){e.persisted&&(Ti=e.timeStamp,t(e))},!0)},xn=function(){return window.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0]},Ut=function(){var t=xn();return t&&t.activationStart||0},q=function(t,e){var n=xn(),r="navigate";return Ti>=0?r="back-forward-cache":n&&(r=document.prerendering||Ut()>0?"prerender":document.wasDiscarded?"restore":n.type.replace(/_/g,"-")),{name:t,value:e===void 0?-1:e,rating:"good",delta:0,entries:[],id:"v3-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},Kt=function(t,e,n){try{if(PerformanceObserver.supportedEntryTypes.includes(t)){var r=new PerformanceObserver(function(i){Promise.resolve().then(function(){e(i.getEntries())})});return r.observe(Object.assign({type:t,buffered:!0},n||{})),r}}catch(i){}},Q=function(t,e,n,r){var i,a;return function(o){e.value>=0&&(o||r)&&((a=e.value-(i||0))||i===void 0)&&(i=e.value,e.delta=a,e.rating=function(s,l){return s>l[1]?"poor":s>l[0]?"needs-improvement":"good"}(e.value,n),t(e))}},jn=function(t){requestAnimationFrame(function(){return requestAnimationFrame(function(){return t()})})},Fn=function(t){var e=function(n){n.type!=="pagehide"&&document.visibilityState!=="hidden"||t(n)};addEventListener("visibilitychange",e,!0),addEventListener("pagehide",e,!0)},Un=function(t){var e=!1;return function(n){e||(t(n),e=!0)}},$e=-1,Pi=function(){return document.visibilityState!=="hidden"||document.prerendering?1/0:0},zt=function(t){document.visibilityState==="hidden"&&$e>-1&&($e=t.type==="visibilitychange"?t.timeStamp:0,Jd())},Ei=function(){addEventListener("visibilitychange",zt,!0),addEventListener("prerenderingchange",zt,!0)},Jd=function(){removeEventListener("visibilitychange",zt,!0),removeEventListener("prerenderingchange",zt,!0)},Kn=function(){return $e<0&&($e=Pi(),Ei(),ke(function(){setTimeout(function(){$e=Pi(),Ei()},0)})),{get firstHiddenTime(){return $e}}},Gt=function(t){document.prerendering?addEventListener("prerenderingchange",function(){return t()},!0):t()},_i=[1800,3e3],Oi=function(t,e){e=e||{},Gt(function(){var n,r=Kn(),i=q("FCP"),a=Kt("paint",function(o){o.forEach(function(s){s.name==="first-contentful-paint"&&(a.disconnect(),s.startTime<r.firstHiddenTime&&(i.value=Math.max(s.startTime-Ut(),0),i.entries.push(s),n(!0)))})});a&&(n=Q(t,i,_i,e.reportAllChanges),ke(function(o){i=q("FCP"),n=Q(t,i,_i,e.reportAllChanges),jn(function(){i.value=performance.now()-o.timeStamp,n(!0)})}))})},Ci=[.1,.25],qd=function(t,e){e=e||{},Oi(Un(function(){var n,r=q("CLS",0),i=0,a=[],o=function(l){l.forEach(function(d){if(!d.hadRecentInput){var h=a[0],m=a[a.length-1];i&&d.startTime-m.startTime<1e3&&d.startTime-h.startTime<5e3?(i+=d.value,a.push(d)):(i=d.value,a=[d])}}),i>r.value&&(r.value=i,r.entries=a,n())},s=Kt("layout-shift",o);s&&(n=Q(t,r,Ci,e.reportAllChanges),Fn(function(){o(s.takeRecords()),n(!0)}),ke(function(){i=0,r=q("CLS",0),n=Q(t,r,Ci,e.reportAllChanges),jn(function(){return n()})}),setTimeout(n,0))}))},st={passive:!0,capture:!0},Qd=new Date,Si=function(t,e){le||(le=e,ot=t,wi=new Date,Ai(removeEventListener),Ni())},Ni=function(){if(ot>=0&&ot<wi-Qd){var t={entryType:"first-input",name:le.type,target:le.target,cancelable:le.cancelable,startTime:le.timeStamp,processingStart:le.timeStamp+ot};Ft.forEach(function(e){e(t)}),Ft=[]}},Xd=function(t){if(t.cancelable){var e=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;t.type=="pointerdown"?function(n,r){var i=function(){Si(n,r),o()},a=function(){o()},o=function(){removeEventListener("pointerup",i,st),removeEventListener("pointercancel",a,st)};addEventListener("pointerup",i,st),addEventListener("pointercancel",a,st)}(e,t):Si(e,t)}},Ai=function(t){["mousedown","keydown","touchstart","pointerdown"].forEach(function(e){return t(e,Xd,st)})},Mi=[100,300],Yd=function(t,e){e=e||{},Gt(function(){var n,r=Kn(),i=q("FID"),a=function(l){l.startTime<r.firstHiddenTime&&(i.value=l.processingStart-l.startTime,i.entries.push(l),n(!0))},o=function(l){l.forEach(a)},s=Kt("first-input",o);n=Q(t,i,Mi,e.reportAllChanges),s&&Fn(Un(function(){o(s.takeRecords()),s.disconnect()})),s&&ke(function(){var l;i=q("FID"),n=Q(t,i,Mi,e.reportAllChanges),Ft=[],ot=-1,le=null,Ai(addEventListener),l=a,Ft.push(l),Ni()})})},Ri=[2500,4e3],zn={},Zd=function(t,e){e=e||{},Gt(function(){var n,r=Kn(),i=q("LCP"),a=function(l){var d=l[l.length-1];d&&d.startTime<r.firstHiddenTime&&(i.value=Math.max(d.startTime-Ut(),0),i.entries=[d],n())},o=Kt("largest-contentful-paint",a);if(o){n=Q(t,i,Ri,e.reportAllChanges);var s=Un(function(){zn[i.id]||(a(o.takeRecords()),o.disconnect(),zn[i.id]=!0,n(!0))});["keydown","click"].forEach(function(l){addEventListener(l,s,!0)}),Fn(s),ke(function(l){i=q("LCP"),n=Q(t,i,Ri,e.reportAllChanges),jn(function(){i.value=performance.now()-l.timeStamp,zn[i.id]=!0,n(!0)})})}})},Ii=[800,1800],el=function t(e){document.prerendering?Gt(function(){return t(e)}):document.readyState!=="complete"?addEventListener("load",function(){return t(e)},!0):setTimeout(e,0)},tl=function(t,e){e=e||{};var n=q("TTFB"),r=Q(t,n,Ii,e.reportAllChanges);el(function(){var i=xn();if(i){var a=i.responseStart;if(a<=0||a>performance.now())return;n.value=Math.max(a-Ut(),0),n.entries=[i],r(!0),ke(function(){n=q("TTFB",0),(r=Q(t,n,Ii,e.reportAllChanges))(!0)})}})};let Di=!1;try{Di=PerformanceObserver.supportedEntryTypes.includes("layout-shift")}catch(t){}const ne={CLS:Di?{name:"CLS",value:0,delta:0}:null,LCP:null,FID:null,FCP:null,TTFB:null};function nl(){ne.CLS&&(ne.CLS.value=0,ne.CLS.delta=0)}function rl(){qd(il,!0),Zd(Vt,!0),Yd(Vt),Oi(Vt),tl(Vt)}function il(t){ne.CLS&&(ne.CLS.value+=t.delta,ne.CLS.delta=ne.CLS.value)}function Vt(t){const{name:e,value:n,delta:r}=t;ne[t.name]={name:e,value:n,delta:r}}function ki(){return ne}typeof document!="undefined"&&rl();let Gn=!0;const{window:$i}=globalThis;let Vn;function al(){return $i?.performance.timing&&$i?.performance.timing.navigationStart||0}function Li(){Vn=Gn?al():Date.now()}function ol(t){Gn=t}function sl(){return Gn}function dl(){return Vn===void 0&&Li(),Vn}function xi(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function ll(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?xi(Object(n),!0).forEach(function(r){cl(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):xi(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function cl(t,e,n){return e=ul(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function ul(t){var e=hl(t,"string");return typeof e=="symbol"?e:String(e)}function hl(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const Bn=typeof document!="undefined",ml=ll({},yi());function ji(t){!Bn||nt.sendBeacon({path:Rd,payload:zd(t),contentType:"text/plain;charset=UTF-8"})}function fl(){return{bootstrap:Gd(),navigator:Wd(),paint:Hd()}}function pl(t={}){if(!Bn)return;const e=dl(),n=Date.now();Vd(()=>{const r={pageView:t,location:yi(),navigation:Bd(e,n,t)},{CLS:i}=ki(),a={webVitals:{CLS:i}};let o={};sl()&&(o=fl(),ol(!1));const s=Object.assign({},r,o,a);ji(s),performance.clearResourceTimings(),nl()})}function gl(t){Kd(()=>{const{FID:e,LCP:n,TTFB:r,FCP:i}=ki();(e||n||r||i)&&ji({webVitals:{FID:e,LCP:n,TTFB:r,FCP:i},location:t})})}Bn&&gl(ml);function bl(t){const e=An.default+pi,n=JSON.stringify(t);if(!(window.navigator&&window.navigator.sendBeacon&&window.navigator.sendBeacon(e,n))){const i=new XMLHttpRequest;i.open("POST",e,!0),i.setRequestHeader("Content-Type","text/plain;charset=UTF-8"),i.send(n)}}function vl(t,e){document.dispatchEvent(new CustomEvent("client-error",{detail:{error:t,type:e}}))}function Fi({subject:t,error:e={},extra:n,type:r=at.UNKNOWN_ERROR}){let i,a,o;e?(i=e.message,a=e.stack,o=e.wcstack):n&&(i=n.message);const{pathname:s,hostname:l}=window.location,h={subject:t,message:i,stack:a,wcstack:o,extra:n,location:{pathname:s,hostname:l}};vl(h,r),bl(h)}window.addEventListener("error",(t={})=>{const{message:e,filename:n,lineno:r,colno:i,error:a}=t;Fi({subject:"window error",error:a,extra:{message:e,filename:n,lineno:r,colno:i}})}),window.addEventListener("unhandledrejection",(t={})=>{const{reason:e={}}=t;Fi({subject:"unhandledrejection",error:e})});function Ui(...t){console.log(...t)}function dt(...t){console.error(...t)}var Ki=Object.freeze({__proto__:null,log:Ui,logError:dt});function zi(t,e){return`${De}-${[t,e].filter(Boolean).join(":")}`}const{performance:Gi}=globalThis;function Vi(t){const e=JSON.stringify(t);return e&&JSON.parse(e)}function Bi(t,e,n){const r=zi(t,e);Gi.mark(r,{detail:{ctx:Vi(n)}})}function yl(t,e,n){Bi(t,e,n)}function wl(t,e,n){Bi(t,e,n)}function Tl(t,e,n){const r=zi(t,e);try{Gi.measure(r,{detail:{ctx:Vi(n)},start:r})}catch(i){dt(`[instrumentation] no startMark named ${r} found`,i.stack)}}function Pl(){return Date.now()}function El(t,e,n){}function _l(t,e,n){}function Ol(t,e,n,r,i){}function Cl(t){}function Sl(t,e){}function Nl(t){return{logHits(e){},logMisses(e){},unRegister(){}}}function Al(t,e,n){}function Ml(t){}function Rl(t){}function Il(t){}function Dl(t,e,n){}function kl(t){return{increment(e){},decrement(e){},getValue(){return 0},reset(){}}}function $l(t){return{setValue(e){},getValue(){return 0},reset(){}}}function Ll(t){return{update(e){},getValue(){return[]},reset(){}}}function xl(t){return{addDuration(){},time(){},getValue(){return[]},reset(){},get(){}}}var Wi=Object.freeze({__proto__:null,counter:kl,disablePlugin:Il,enablePlugin:Rl,error:Al,gauge:$l,interaction:Ol,mark:yl,markEnd:Tl,markStart:wl,percentileHistogram:Ll,perfEnd:_l,perfStart:El,registerCacheStats:Nl,registerPeriodicLogger:Sl,registerPlugin:Cl,removePeriodicLogger:Ml,time:Pl,timer:xl,trackScenario:Dl});function lt(t,e){if(!t)throw new Error(e)}function Hi(t){return document.cookie.split(";").map(e=>e.trim().split("=")).filter(([e])=>e===t).map(([,e])=>e)[0]}function jl(){return([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,t=>(t^window.crypto.getRandomValues(new Uint8Array(1))[0]&15>>t/4).toString(16))}function Fl(t){return typeof t=="string"&&/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i.test(t)}const Ul=new RegExp("^([a-z]+://|//)","i");function Wn(t){return t==null?!1:Ul.test(t)}class Kl{constructor(){this._registry={eptMarked:[],navToPage:[],navFromPage:[],windowUnload:[]}}get knownEvents(){return Object.keys(this._registry)}_checkEventName(e){if(!this._registry[e])throw new Error(`eventName ${e} isn't valid`)}register(e,n,r){return lt(e&&typeof e=="string","eventName must be a valid string"),this._checkEventName(e),lt(n&&typeof n=="string","listenerName must be a valid string"),lt(typeof r=="function","callback must be provided"),this._registry[e].push({name:n,func:r})}unregister(e,n){this._checkEventName(e);const r=n-1;lt(this._registry[e][r],`No listener found for ${e} with registration ID ${n}`),delete this._registry[e][r]}notify(e,n){this._checkEventName(e),this._registry[e].forEach(r=>r.func(n))}}const zl=new Kl;var Gl=Object.freeze({__proto__:null,notifications:zl});const Vl=/^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z){1})?)?)?$/i,Bl=/^\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z)?$/i,Wl="HH:mm:ss.SSS",Ji="YYYY-MM-DD",qi="T",Hl=/(Z|([+-])(\d{2}):(\d{2}))$/;function Qi(t){return ql(t)&&Yi(t)}function Jl(t){if(!Ql(t))return!1;const e=Xi(t);return Yi(`2018-09-09T${e}Z`)}function Xi(t){return typeof t=="string"?t.split(Hl)[0]:t}function ql(t){return typeof t!="string"?!1:Vl.test(t)}function Ql(t){return typeof t!="string"?!1:Bl.test(t)}function Yi(t){const e=Date.parse(t);return isFinite(e)}const Xl="in a few seconds",Yl="a few seconds ago",Zl="in {0} {1}",ec="{0} {1} ago",tc="s",U={SECONDS:{name:"second",threshold:45},MINUTES:{name:"minute",threshold:45},HOURS:{name:"hour",threshold:22},DAYS:{name:"day",threshold:26},MONTHS:{name:"month",threshold:11},YEARS:{name:"year"}},nc=1e3,rc=6e4,ic=36e5,Hn=864e5;let Zi=class{constructor(e){if(this.milliseconds=0,typeof e!="number"){this.isValid=!1,console.warn(`The value of milliseconds passed into Duration must be of type number, |
| | | but we are getting the ${typeof e} value "${e}" instead. |
| | | `);return}this.isValid=!0,this.milliseconds=e}humanize(e){if(!this.isValid)return"";const n=oc(this);return n===U.SECONDS?this.milliseconds>0?Xl:Yl:sc(e,this.asIn(n),n.name)}asIn(e){switch(e){case U.SECONDS:return Math.round(this.milliseconds/nc);case U.MINUTES:return Math.round(this.milliseconds/rc);case U.HOURS:return Math.round(this.milliseconds/ic);case U.DAYS:return Math.round(this.milliseconds/Hn);case U.MONTHS:return Math.round(ea(this.milliseconds/Hn));case U.YEARS:default:return Math.round(ea(this.milliseconds/Hn)/12)}}};p.registerDecorators(Zi,{fields:["milliseconds"]});var ac=p.registerComponent(Zi,{tmpl:te,sel:"lightningConfigProvider-localizationService"});function ea(t){const e=4800/146097;return t*e}function oc(t){const e=Object.keys(U).find(n=>{const r=U[n];return r===U.YEARS||Math.abs(t.asIn(r))<r.threshold});return U[e]}function sc(t,e,n){return"Intl"in window&&Intl.RelativeTimeFormat?new Intl.RelativeTimeFormat(t,{style:"long",numeric:"always"}).format(e,n):dc(e,n)}function dc(t,e){console.warn("The current environment does not support formatters for relative time.");const n=Math.abs(t),r=n!==1?e+tc:e,i=t>0?Zl:ec;return lc(i,n,r)}function lc(t,...e){return t.replace(/{(\d+)}/g,(n,r)=>e[r])}const Jn=["January","February","March","April","May","June","July","August","September","October","November","December"],ye={short:"M/d/yyyy",medium:"MMM d, yyyy",long:"MMMM d, yyyy"},qn={short:"h:mm a",medium:"h:mm:ss a",long:"h:mm:ss a"},cc={short:"h:m a",medium:"h:m:s a",long:"h:m:s a"};function uc(t,e){let n=!1,r=t;return typeof t=="string"&&(r=t.split(qi)[0],n=!0),ra(r,e,n)}function ta(t,e){return ra(t,e,!0)}function na(t,e){if(!Le(t))return new Date("");const n=(t.getHours()+11)%12+1,r=t.getHours()>=12?"PM":"AM";switch(e){case Wl:return`${K(t.getHours())}:${K(t.getMinutes())}:${K(t.getSeconds())}.${Ac(t.getMilliseconds())}`;case qn.short:return`${n}:${K(t.getMinutes())} ${r}`;case qn.medium:case qn.long:default:return`${n}:${K(t.getMinutes())}:${K(t.getSeconds())} ${r}`}}function hc(t){if(!Le(t))return new Date("");const e=new Date(t.getTime());return`${ta(e)}, ${na(ct(e))}`}function Bt(t){let e=null,n=!0;if(Jl(t)?e=`2014-03-20T${Qn(t)}`:Qi(t)&&(t.indexOf(qi)>0?(e=Qn(t),n=!1):e=`${t}T00:00:00.000Z`),e){const r=new Date(e);return n&&ct(r),r}return null}function mc(t,e){return e===Ji&&Qi(t)?Bt(t):Object.values(ye).includes(e)?Sc(t,e):Object.values(cc).includes(e)?Cc(t):null}function fc(t){return Bt(Qn(t))}function pc(t,e,n){const r=ut(t),i=ut(e);return!r||!i?!1:Wt(r,n).getTime()<Wt(i,n).getTime()}function gc(t,e,n){const r=ut(t),i=ut(e);return!r||!i?!1:Wt(r,n).getTime()>Wt(i,n).getTime()}function bc(t,e,n){const r=new Date(t.getTime());n(Nc(r))}function vc(t,e,n){const r=new Date(t.getTime());n(ct(r))}function yc(t){return t}function wc(t){return t}function Tc(t){return t}function Pc(t){return t}function Ec(){return{format:t=>(console.warn(`The current environment does not support large numbers and the original value of ${t} will be returned.`),t)}}function _c(t){return new ac(t*60*1e3)}function Oc(t){return t.humanize("en")}function Cc(t){const e=t.trim().split(/[:.\s*]/),n=e.length;if(!e||n<2||n>5)return null;const r=e[n-1],i=r.toLowerCase()==="am",a=r.toLowerCase()==="pm";e.splice(-1,1);const o=e.every(b=>!isNaN(b));if(!a&&!i||!o)return null;const s=e[0],l=K(a?s%12+12:s%12),d=n>=3&&e[1]||"0",h=n>=4&&e[2]||"0",m=n===5&&e[3]||"0",g=new Date("2014-03-20");return g.setHours(l,d,h,m),Le(g)?g:null}function Sc(t,e){let n=/^([a-zA-Z]{3})\s*(\d{1,2}),\s*(\d{4})$/;switch(e){case ye.short:n=/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/;break;case ye.long:n=/^([a-zA-Z]+)\s*(\d{1,2}),\s*(\d{4})$/;break}const r=n.exec(t.trim());if(!r)return null;let i=r[1];const a=r[2],o=r[3];e!==ye.short&&(i=Jn.findIndex(d=>d.toLowerCase().includes(i.toLowerCase())),i+=1);const s=`${o}-${K(i)}-${K(a)}`,l=new Date(`${s}T00:00:00.000Z`);return Le(l)?ct(l):null}function ra(t,e,n){const r=ut(t);if(!r)return new Date("");switch(n&&Le(t)&&ct(r),e){case Ji:return`${r.getFullYear()}-${K(r.getMonth()+1)}-${K(r.getDate())}`;case ye.short:return`${r.getMonth()+1}/${r.getDate()}/${r.getFullYear()}`;case ye.long:return`${Jn[r.getMonth()]} ${r.getDate()}, ${r.getFullYear()}`;case ye.medium:default:return`${Jn[r.getMonth()].substring(0,3)} ${r.getDate()}, ${r.getFullYear()}`}}function Wt(t,e){switch(e){case"day":t.setHours(0),t.setMinutes(0);case"minute":t.setSeconds(0),t.setMilliseconds(0);break}return t}function Le(t){return Object.prototype.toString.call(t)==="[object Date]"&&!isNaN(t.getTime())}function Qn(t){return`${Xi(t)}Z`}function ct(t){return t.setMinutes(t.getMinutes()+t.getTimezoneOffset()),t}function Nc(t){return t.setMinutes(t.getMinutes()-t.getTimezoneOffset()),t}function ut(t){return t?Le(t)?new Date(t.getTime()):isFinite(t)&&(typeof t=="number"||typeof t=="string")?new Date(parseInt(t,10)):typeof t=="string"?Bt(t):null:null}function K(t){return Number(t)<10?`0${t}`:t}function Ac(t){return Number(t)<10?`00${t}`:Number(t)<100?`0${t}`:t}var Mc={formatDate:uc,formatDateUTC:ta,formatTime:na,formatDateTimeUTC:hc,parseDateTimeISO8601:Bt,parseDateTime:mc,parseDateTimeUTC:fc,isBefore:pc,isAfter:gc,UTCToWallTime:bc,WallTimeToUTC:vc,translateToOtherCalendar:yc,translateFromOtherCalendar:wc,translateToLocalizedDigits:Tc,translateFromLocalizedDigits:Pc,getNumberFormat:Ec,duration:_c,displayDuration:Oc};function ia(){return Mc}function aa(){return An.default}function oa(){return null}function sa(){return null}function da(){return{densitySetting:""}}var Rc={getOneConfig:da,getIconSvgTemplates:sa,getToken:oa,getPathPrefix:aa,getLocalizationService:ia},Ic=Object.freeze({__proto__:null,default:Rc,getIconSvgTemplates:sa,getLocalizationService:ia,getOneConfig:da,getPathPrefix:aa,getToken:oa});function ht(t){if(t==null)throw new TypeError("Provider must be defined.")}class mt{constructor(e){this.infoMap=new WeakMap,this.defaultValue=e}getInfo(e){let n=this.infoMap.get(e);return n===void 0&&(n={consumers:new Set},this.infoMap.set(e,n)),n}setContext(e,n){ht(e);const r=n,i=this.getInfo(e);i.contextValue=n,i.consumers.forEach(a=>a.provide(r)),i.consumers.size===0&&r?.onComplete&&r.onComplete()}getContext(e){ht(e);const{contextValue:n}=this.getInfo(e);return n!==void 0?n:this.defaultValue}clearContext(e){ht(e),this.infoMap.delete(e)}subscribeContext(e,n){ht(e);const{consumers:r,contextValue:i}=this.getInfo(e);r.has(n)||(r.add(n),n.provide(i))}unsubscribeContext(e,n){ht(e),this.getInfo(e).consumers.delete(n)}}p.registerDecorators(mt,{fields:["infoMap"]});function la(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function ca(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?la(Object(n),!0).forEach(function(r){Dc(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):la(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Dc(t,e,n){return e=kc(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function kc(t){var e=$c(t,"string");return typeof e=="symbol"?e:String(e)}function $c(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const N="LWR",A={Fatal:0,Error:1,Warning:2,Log:3};function Ht(t,e){return Array.isArray(e)?t.replace(/\{([0-9]+)\}/g,(n,r)=>e[r]):t}function we(t,e){return`${t.code}: ${Ht(t.message,e)}`}function ce(t,e){const n=ca(ca({},t),{},{message:Ht(t.message,e)});return t.address&&(n.address=Ht(t.address,e)),t.stack&&(n.stack=Ht(t.stack,e)),n}function ue(t,e,n){if(!t)throw new Error(we(e,n))}const M={INVALID_MIXIN_CMP:{code:`${N}4001`,message:"{0} must be an Element type",level:A.Error},MISSING_CONTEXT:{code:`${N}4002`,message:"Could not find context to perform navigation action.",level:A.Error},INVALID_CONTEXT:{code:`${N}4003`,message:"Cannot register navigation context; it must have this shape: { navigate, generateUrl, subscribe }",level:A.Error},MULTIPLE_ROOTS:{code:`${N}4004`,message:"Router connection failed. There can only be one root router.",level:A.Error},MULTIPLE_CHILDREN:{code:`${N}4005`,message:"Could not add to the navigation hierarchy. There can only be one child per navigation node.",level:A.Error},MISSING_ROUTE:{code:`${N}4006`,message:'A route cannot be created to navigate to URL "{0}"',level:A.Error,address:"{0}"},MISSING_URL:{code:`${N}4007`,message:'A URL cannot be created to navigate to route "{0}"',level:A.Error,address:"{0}"},PRENAV_FAILED:{code:`${N}4008`,message:'A preNavigate hook listener blocked routing to "{0}"',level:A.Warning,address:"{0}"},MISSING_ROUTE_TEMPLATE:{code:`${N}4009`,message:'A route definition must contain a "uri" property.',level:A.Error},MISSING_ROUTE_CMP:{code:`${N}4016`,message:"Expected a route view component with a default export.",level:A.Error},MISSING_DATA_CONTEXT:{code:`${N}4018`,message:"Could not find context to retrieve navigation data.",level:A.Error},INVALID_ROUTE_QUERY:{code:`${N}4019`,message:"Invalid query param in route definition.",level:A.Error},MISSING_PAGE_BINDING:{code:`${N}4020`,message:"Route definition must provide page binding",level:A.Error},INVALID_PAGE_BINDING:{code:`${N}4021`,message:"Invalid page binding in route definition",level:A.Error},INVALID_URI_SYNTAX:{code:`${N}4022`,message:"Invalid uri syntax. URI cannot contain *, +, (, ), ",level:A.Error},VIEW_IMPORT_FAILED:{code:`${N}4023`,message:'Error importing view with name "{0}", failure was: {1}',level:A.Error,stack:"{2}"},VIEW_MISSING:{code:`${N}4024`,message:'Expected a view with name "{0}" in the viewset',level:A.Error},VIEW_IMPORT_FAILED_WITH_SPECIFIER:{code:`${N}4025`,message:'Error importing module "{0}" from view with name "{1}", failure was: {2}',level:A.Error,stack:"{3}"},NO_ROUTE_MATCH:{code:`${N}4026`,message:"A routing match cannot be found for: {0}",level:A.Error},INVALID_ROUTE_HANDLER:{code:`${N}4027`,message:'Route definition "{0}" does not have a valid route handler module',level:A.Error},DESTINATION_NOT_FOUND:{code:`${N}4028`,message:"Route handler returned 404: Not Found",level:A.Error},DESTINATION_ERROR:{code:`${N}4029`,message:"Route handler returned error status {0}: {1}",level:A.Error,stack:"{2}"}},ua=new WeakMap;function Xn(t){const e=ua.get(t);if(!e||!e.value)throw new Error(we(M.MISSING_CONTEXT));return e.value}function ha(t,e){const n={id:t,value:e,update:r=>{n.value=r}};return ua.set(n.id,n),n}function Jt(t){var e;return e=class{constructor(i){this._callback=i}connect(){}disconnect(){}update(i,a){a&&this._callback(a)}static setContext(i,a){t.setContext(i,a)}static getContext(i){return t.getContext(i)}static clearContext(i){t.clearContext(i)}static subscribeContext(i,a){t.subscribeContext(i,a)}static unsubscribeContext(i,a){t.unsubscribeContext(i,a)}},e.contextSchema={value:"required"},e}const Lc=new mt(void 0),Yn=Jt(Lc),xc=new mt(void 0),qt=Jt(xc),jc=new mt(void 0),ft=class extends Jt(jc){async update(e,n){if(n){const r=e&&e.viewName?e.viewName:"default",i=n.viewset[r],a=i,o=a&&a.module||i;let s;if(o)try{const l=await o(),d=l&&l.default;if(d&&d.constructor!==void 0)this._callback(d);else throw new Error("error occurred with view import")}catch(l){const d=l;a.specifier?s=ce(M.VIEW_IMPORT_FAILED_WITH_SPECIFIER,[a.specifier,r,d.message,d.stack||""]):s=ce(M.VIEW_IMPORT_FAILED,[r,d.message,d.stack||""])}else s=ce(M.VIEW_MISSING,[r]);n.onComplete&&n.onComplete(s)}}};function pt(t,e,n){Xn(t).navigate(e,n)}function ma(t,e){return Xn(t).generateUrl(e)}function fa(){const t=[],e=()=>t.length===0,n=a=>{typeof a=="function"&&t.push(a)};return{add:(a=[])=>{Array.isArray(a)?a.forEach(o=>n(o)):n(a)},compile:a=>t.length===0?Promise.resolve(!0):t.reduce((o,s)=>o.then(l=>l===!1?Promise.reject():Promise.resolve(s(a))),Promise.resolve(!0)).then(o=>o!==!1).catch(o=>{if(o instanceof Error)throw o;return!1}),empty:e}}function Fc(t=""){return t=t||"",encodeURIComponent(t)}function Te(t=""){return t=t||"",decodeURIComponent(t)}function Zn(t){t=t||"/",t.charAt(0)!=="/"&&(t="/"+t);const e=t.match(/^[^#?]+/);if(e!==null){const n=e[0];return n==="/"?"/":n.replace(/\/$/,"")}return"/"}function er(t){t=t||"";const e=t.indexOf("#");e>=0&&(t=t.substring(0,e));const n=t.indexOf("?"),r=n>=0?t.substr(n+1):null,i={};return r&&r.split("&").forEach(a=>{if(a.indexOf("=")>=0){const[o,s=""]=a.split("=");i[Te(o)]=Te(s)}else i[Te(a)]=null}),i}function Uc(t={}){const e=Object.keys(t);return e.length?`?${e.map(n=>{const r=t[n];return r===null?n:`${n}=${Fc(r)}`}).join("&")}`:""}function z(t){return t&&t.length>1?t.startsWith(":"):!1}function xe(t){return t&&z(t)?t.substr(1):!1}function pa(t){return Object.values(t).reduce((e,{routeParamName:n})=>{const r=xe(n);return r&&e.push(r),e},[])}function ga(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function gt(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ga(Object(n),!0).forEach(function(r){Kc(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ga(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Kc(t,e,n){return e=zc(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function zc(t){var e=Gc(t,"string");return typeof e=="symbol"?e:String(e)}function Gc(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Vc(t,e){if(!t)return null;const{type:n,attributes:r={},state:i={}}=t;if(n){const[a]=e.filter(o=>{const{original:{page:{type:s=null,attributes:l={},state:d={}}={}}}=o,h=s===n,m=Object.keys(l).every(_=>Object.keys(r).indexOf(_)>=0),g=Object.keys(l).length===Object.keys(r).length,b=Object.keys(d).every(_=>Object.keys(i).indexOf(_)>=0),T=Object.keys(l).filter(_=>{const I=l[_];return!I||!z(I)}).every(_=>l[_]===r[_]),E=Object.keys(d).filter(_=>{const I=d[_];return I===null||!z(I)}).every(_=>d[_]===i[_]);return h&&m&&g&&T&&b&&E});return a||null}return null}function ba(t,e){const{regex:n,params:r}=e,i=n.exec(t);if(i){const[,...a]=i,o={};return r.forEach((s,l)=>{const{name:d}=s,h=a[l];o[d]=h&&Te(h)}),o}return null}function va(t,e){if(t&&e){const{queryMatcher:n}=e,r=n(t);if(r){const i={};return Object.keys(r).forEach(a=>{const o=r[a],{value:s,routeParamName:l}=o,d=l?l.substr(1):a;i[d]=s&&Te(s)}),i}}return null}function Bc(t,e){const{compiledQuery:n}=e,r=Object.keys(n).filter(a=>{const{literalValue:o}=n[a];return!o}),i={};return Object.keys(t).forEach(a=>{const o=t[a];r.indexOf(a)<0&&(i[a]=o)}),i}function Wc(t,e){if(e){const{original:{page:{type:n="",attributes:r={},state:i={}}={}}={}}=e,a=Zn(t),o=er(t),s=ba(a,e),l=va(o,e);if(s&&l){const d=gt(gt({},s),l),h={};Object.keys(r).forEach(b=>{const T=r[b];let E;if(T&&z(T)){const _=T.substr(1);E=d[_]}else E=T;h[b]=E});const m={};Object.keys(i).forEach(b=>{const T=i[b];let E;if(T&&z(T)){const _=T.substr(1);E=d[_]}else E=T;m[b]=E});const g=Bc(o,e);return{type:n,attributes:gt({},h),state:gt(gt({},g),m)}}}return null}function ya(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function he(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ya(Object(n),!0).forEach(function(r){Hc(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ya(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Hc(t,e,n){return e=Jc(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Jc(t){var e=qc(t,"string");return typeof e=="symbol"?e:String(e)}function qc(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Qc(t,e,n){const{original:{patterns:r=null}={}}=n||{};if(r){const i=ba(t,n),a=va(e,n),o=he(he({},i),a);return Object.keys(r).every(s=>{const l=r[s],d=new RegExp(l),h=o[s]||"";return d.test(h)})}return!0}function Xc(t,e){const n=Zn(t),r=er(t),i=e?e.filter(o=>o.regex.test(n)):[],[a]=i.filter(o=>{const{queryMatcher:s}=o;return s(r)&&Qc(n,r,o)});return a||null}function wa(t,e,n=""){n&&t.indexOf(n)===0&&(t=t.replace(n,""));const r=Xc(t,e);let i;if(r){const a=Wc(t,r);if(a)return i={route:{id:r.original.id,attributes:he({},a.attributes),state:he({},a.state),pageReference:{type:a.type,attributes:he({},a.attributes),state:he({},a.state)}},routeDefinition:r},i}else return null;return null}function Yc(t,e,n=""){const r=Vc(t,e);return r?Pa(t,r,n):null}function Ta(t,e,n){const{attributeBindings:r,stateBindings:i}=n,{attributes:a,state:o}=e,s={};return t.forEach(l=>{const[d]=Object.keys(r).filter(h=>xe(r[h])===l);if(d)s[l]=a[d];else{const[h]=Object.keys(i).filter(m=>xe(i[m])===l);h&&(s[l]=o[h])}}),s}function Pa(t,e,n=""){const{params:r,original:{page:i={}}={},toPath:a,compiledQuery:o}=e,{attributes:s={},state:l={}}=i,d=r.filter(({name:_})=>typeof _=="string").map(({name:_})=>_),h=Ta(d,t,{attributeBindings:s,stateBindings:l}),m=a(h),g=pa(o),b=Ta(g,t,{attributeBindings:s,stateBindings:l}),T=Zc(t,b,e),E=Uc(T);return`${n}${m}${E}`}function Zc(t,e,n){const{compiledQuery:r,original:{page:{state:i={}}}}=n,{state:a={}}=t||{},o={};Object.keys(a).filter(l=>{const d=i[l];return!z(d)}).forEach(l=>o[l]=a[l]);const s={};return Object.keys(e).forEach(l=>{const d=e[l],[h]=Object.keys(r).filter(m=>{const g=r[m],{routeParamName:b}=g;return xe(b)===l});if(h){const m=h;s[m]=d}}),he(he({},o),s)}function eu(t,e,n=""){const r=wa(t,e,n);return r&&r.route&&r.route.pageReference?r.route.pageReference:null}function tu(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function nu(t,e){return e in t}function Ea(t,e=2){if(tu(t))try{Object.freeze(t),e>0&&Object.keys(t).forEach(n=>{if(nu(t,n)){const r=t[n];r&&typeof r=="object"&&Ea(r,e-1)}})}catch(n){}return t}function tr(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}function ru(t){const e=[];let n=0;for(;n<t.length;){const r=t[n];if(r==="*"||r==="+"||r==="?"){e.push({type:"MODIFIER",index:n,value:t[n++]});continue}if(r==="\\"){e.push({type:"ESCAPED_CHAR",index:n++,value:t[n++]});continue}if(r==="{"){e.push({type:"OPEN",index:n,value:t[n++]});continue}if(r==="}"){e.push({type:"CLOSE",index:n,value:t[n++]});continue}if(r===":"){let i="",a=n+1;for(;a<t.length;){const o=t.charCodeAt(a);if(o>=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122||o===95){i+=t[a++];continue}break}if(!i)throw new TypeError(`Missing parameter name at ${n}`);e.push({type:"NAME",index:n,value:i}),n=a;continue}if(r==="("){let i=1,a="",o=n+1;if(t[o]==="?")throw new TypeError(`Pattern cannot start with "?" at ${o}`);for(;o<t.length;){if(t[o]==="\\"){a+=t[o++]+t[o++];continue}if(t[o]===")"){if(i--,i===0){o++;break}}else if(t[o]==="("&&(i++,t[o+1]!=="?"))throw new TypeError(`Capturing groups are not allowed at ${o}`);a+=t[o++]}if(i)throw new TypeError(`Unbalanced pattern at ${n}`);if(!a)throw new TypeError(`Missing pattern at ${n}`);e.push({type:"PATTERN",index:n,value:a}),n=o;continue}e.push({type:"CHAR",index:n,value:t[n++]})}return e.push({type:"END",index:n,value:""}),e}function je(t){return t.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function nr(t){return t&&t.sensitive?"":"i"}function _a(t,e={}){const n=ru(t),{prefixes:r="./"}=e,i=`[^${je(e.delimiter||"/#?")}]+?`,a=[];let o=0,s=0,l="";const d=g=>{if(s<n.length&&n[s].type===g)return n[s++].value},h=g=>{const b=d(g);if(b!==void 0)return b;const{type:T,index:E}=n[s];throw new TypeError(`Unexpected ${T} at ${E}, expected ${g}`)},m=()=>{let g="",b;for(;b=d("CHAR")||d("ESCAPED_CHAR");)g+=b;return g};for(;s<n.length;){const g=d("CHAR"),b=d("NAME"),T=d("PATTERN");if(b||T){let I=g||"";r.indexOf(I)===-1&&(l+=I,I=""),l&&(a.push(l),l=""),a.push({name:b||o++,prefix:I,suffix:"",pattern:T||i,modifier:d("MODIFIER")||""});continue}const E=g||d("ESCAPED_CHAR");if(E){l+=E;continue}if(l&&(a.push(l),l=""),d("OPEN")){const I=m(),_n=d("NAME")||"",Ye=d("PATTERN")||"",It=m();h("CLOSE"),a.push({name:_n||(Ye?o++:""),pattern:_n&&!Ye?i:Ye,prefix:I,suffix:It,modifier:d("MODIFIER")||""});continue}h("END")}return a}function iu(t,e={}){const n=nr(e),{encode:r=o=>o,validate:i=!0}=e,a=t.map(o=>{if(typeof o=="object")return new RegExp(`^(?:${o.pattern})$`,n)});return o=>{let s="";for(let l=0;l<t.length;l++){const d=t[l];if(typeof d=="string"){s+=d;continue}const h=o?o[d.name]:void 0,m=d.modifier==="?"||d.modifier==="*",g=d.modifier==="*"||d.modifier==="+";if(Array.isArray(h)){if(!g)throw new TypeError(`Expected "${d.name}" to not repeat, but got an array`);if(h.length===0){if(m)continue;throw new TypeError(`Expected "${d.name}" to not be empty`)}for(let T=0;T<h.length;T++){const E=r(h[T],d);if(i&&!a[l].test(E))throw new TypeError(`Expected all "${d.name}" to match "${d.pattern}", but got "${E}"`);s+=d.prefix+E+d.suffix}continue}if(typeof h=="string"||typeof h=="number"){const T=r(String(h),d);if(i&&!a[l].test(T))throw new TypeError(`Expected "${d.name}" to match "${d.pattern}", but got "${T}"`);s+=d.prefix+T+d.suffix;continue}if(m)continue;const b=g?"an array":"a string";throw new TypeError(`Expected "${d.name}" to be ${b}`)}return s}}function au(t,e){return iu(_a(t,e),e)}function ou(t,e){if(!e)return t;const n=t.source.match(/\((?!\?)/g);if(n)for(let r=0;r<n.length;r++)e.push({name:r,prefix:"",suffix:"",modifier:"",pattern:""});return t}function su(t,e,n={}){const{strict:r=!1,start:i=!0,end:a=!0,encode:o=h=>h}=n,s=`[${je(n.endsWith||"")}]|$`,l=`[${je(n.delimiter||"/#?")}]`;let d=i?"^":"";for(const h of t)if(typeof h=="string")d+=je(o(h));else{const m=je(o(h.prefix)),g=je(o(h.suffix));if(h.pattern)if(e&&e.push(h),m||g)if(h.modifier==="+"||h.modifier==="*"){const b=h.modifier==="*"?"?":"";d+=`(?:${m}((?:${h.pattern})(?:${g}${m}(?:${h.pattern}))*)${g})${b}`}else d+=`(?:${m}(${h.pattern})${g})${h.modifier}`;else d+=`(${h.pattern})${h.modifier}`;else d+=`(?:${m}${g})${h.modifier}`}if(a)r||(d+=`${l}?`),d+=n.endsWith?`(?=${s})`:"$";else{const h=t[t.length-1],m=typeof h=="string"?l.indexOf(h[h.length-1])>-1:h===void 0;r||(d+=`(?:${l}(?=${s}))?`),m||(d+=`(?=${l}|${s})`)}return new RegExp(d,nr(n))}function du(t,e,n){return su(_a(t,n),e,n)}function Oa(t,e,n){return t instanceof RegExp?ou(t,e):Array.isArray(t)?lu(t,e,n):du(t,e,n)}function lu(t,e,n){const r=t.map(i=>Oa(i,e,n).source);return new RegExp(`(?:${r.join("|")})`,nr(n))}function Ca(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Sa(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ca(Object(n),!0).forEach(function(r){cu(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ca(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function cu(t,e,n){return e=uu(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function uu(t){var e=hu(t,"string");return typeof e=="symbol"?e:String(e)}function hu(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const{INVALID_ROUTE_QUERY:mu,MISSING_ROUTE_TEMPLATE:fu,MISSING_PAGE_BINDING:pu,INVALID_PAGE_BINDING:gu,INVALID_URI_SYNTAX:bu}=M;function vu(t){const{routes:e,caseSensitive:n}=t;return e.map(r=>yu(r,n))}function yu(t,e=!1){const n=[],{uri:r,page:i}=t;ue(!!r,fu),ue(wu(r),bu),ue(!!i,pu);const a=Zn(r),o=er(r),s=Oa(a,n,{sensitive:e,end:t.exact!==!1}),l=au(a,{encode:encodeURIComponent}),d=Pu(o),h=Eu(d,e),m={original:t,regex:s,params:n,toPath:l,compiledQuery:d,queryMatcher:h};return ue(Tu(m),gu),m}function wu(t=""){return!["*","(",")",";"].some(r=>t.indexOf(r)>=0)}function Tu(t){const{original:{page:e}={},params:n,compiledQuery:r}=t,i=e&&e.type,a=e&&e.attributes||{},o=e&&e.state||{};if(typeof i!="string"||typeof a!="object"||typeof o!="object")return!1;const s=Object.values(n).map(({name:T})=>T),l=pa(r),d=[...s,...l],h=Object.values(a).filter(z).map(xe),m=Object.values(o).filter(z).map(xe),g=d.every(T=>typeof T!="string"?!1:h.indexOf(T)>=0||m.indexOf(T)>=0),b=d.length===h.length+m.length;return!!(e&&i&&a&&o&&g&&b)}function Pu(t){const e={};return Object.keys(t).forEach(n=>{const r=t[n];ue(z(n)?r===null:!0,mu),z(n)?e[n.substr(1)]={routeParamName:n}:r&&z(r)?e[n]={routeParamName:r}:e[n]={literalValue:r===null?null:r}}),e}function Eu(t,e=!1){return r=>{const i=Object.keys(r),a=Object.keys(t);return a.every(s=>i.indexOf(s)>=0)?a.reduce((s,l)=>{if(s===null)return null;const{literalValue:d,routeParamName:h}=t[l],m=r[l];let g=!0;return typeof d=="string"?g=e?d===m:d.toUpperCase()===(m==null?m:m.toUpperCase()):d===null&&(g=m===d),g?s=Sa(Sa({},s),{},{[l]:{value:m,routeParamName:h}}):s=null,s},{}):null}}const re=typeof document!="undefined",Na=`universalcontainergetnavigationcontext${tr()}`,Aa=Symbol("Navigate"),Ma=Symbol("GenerateUrl"),Fe=Symbol("NavContext"),rr=Symbol("NavContext");function Qt(t){ue(typeof t.prototype.dispatchEvent=="function",M.INVALID_MIXIN_CMP,[t.toString()]);class e extends t{[rr](){if(!this[Fe]&&(this.dispatchEvent(new CustomEvent(Na,{bubbles:!0,composed:!0,detail:{callback:r=>{this[Fe]=r}}})),!this[Fe]))throw new Error(we(M.MISSING_CONTEXT))}[Aa](r,i){this[rr](),pt(this[Fe],r,i)}async[Ma](r){return this[rr](),ma(this[Fe],r)}}return e}Qt.Navigate=Aa,Qt.GenerateUrl=Ma,Qt.NavContext=Fe;var _u=Object.freeze({__proto__:null,ContextInfo:mt,CurrentPageReference:qt,CurrentView:ft,NavigationContext:Yn,NavigationMixin:Qt,generateContextualWireAdapter:Jt,generateUrl:ma,getNavigationHelm:Xn,navigate:pt,registerNavigationHelm:ha});const Ra="sf-aria-live",Ia="tabindex",{document:X}=globalThis;function Ou(t){if(X&&t?.routeDefinition){let e=X.body.querySelector(`#${Ra}`);e||(e=X.createElement("span"),e.id=Ra,e.setAttribute("aria-live","polite"),e.setAttribute("aria-atomic","true"),e.setAttribute("style","position: absolute; margin: -1px; border: 0; padding: 0; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); text-transform: none; white-space: nowrap;"),X.body.appendChild(e)),e.innerText=t.routeDefinition.label}}function Cu(t){X&&t?.routeDefinition&&(X.title=t.routeDefinition.label)}function Su(t){if(!X)return;const e=X.createTreeWalker(X.body,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>r.matches("webruntime-router-container")?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}),n=t?X.body:e.nextNode();n&&(n.setAttribute(Ia,"-1"),n.focus({preventScroll:!0}),n.removeAttribute(Ia))}function Da(){let t,e,n=[];const r=d=>{n.push(d)},i=d=>{n=[...n.slice(0,d),...n.slice(d+1)]},a=d=>{n.filter(h=>h!==null).forEach(h=>h.next&&h.next(d)),t=d,e=void 0},o=d=>{n.filter(h=>h!==null).forEach(h=>h.error&&h.error(d)),t=void 0,e=d};return{next:a,error:o,complete:()=>{n.filter(d=>d!==null).forEach(d=>d.complete&&d.complete()),n=[],t=void 0,e=void 0},subscribe:(d,h=!0)=>{r(d),t&&h&&d.next(t),e&&o(e);const m=n.length-1;return{unsubscribe:()=>i(m)}}}}function ka(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Xt(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ka(Object(n),!0).forEach(function(r){Nu(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ka(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Nu(t,e,n){return e=Au(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Au(t){var e=Mu(t,"string");return typeof e=="symbol"?e:String(e)}function Mu(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}class $a{constructor(e){this.deprecatedConfig={},this.routeHandlerId=0,this.compiledRoutes=[],this.routeObservable=Da(),this.config={basePath:e.basePath||"",caseSensitive:Boolean(e.caseSensitive),routes:e.routes||[],generateUrl:i=>Yc(i,this.compiledRoutes,this.config.basePath),parseUrl:i=>eu(i,this.compiledRoutes,this.config.basePath)};const{DEPRECATED_getRouteFromUrl:n,DEPRECATED_getUrlFromRoute:r}=e;n&&(this.deprecatedConfig.DEPRECATED_getRouteFromUrl=n),r&&(this.deprecatedConfig.DEPRECATED_getUrlFromRoute=r),this.compiledRoutes=vu(this.config)}generateUrl(e){const{DEPRECATED_getUrlFromRoute:n}=this.deprecatedConfig;return n?n(e,this.config.generateUrl):this.config.generateUrl(e)}parseUrl(e){const{DEPRECATED_getRouteFromUrl:n}=this.deprecatedConfig;return n?n(e,this.config.parseUrl):this.config.parseUrl(e)}matchRoute(e){const n=typeof e=="string"?e:this.generateUrl(e);if(n===null)return null;const r=wa(n,this.compiledRoutes,this.config.basePath),i=r&&Pa(r.route.pageReference,r.routeDefinition,this.config.basePath);return!r||!i?null:{pathMatch:i,route:r.route,routeDefinition:r.routeDefinition.original}}async resolveView(e){return new Promise((n,r)=>{const i=this.matchRoute(e);return i?i.routeDefinition.handler().then(a=>{const o=a.default;if(!o)return r(we(M.INVALID_ROUTE_HANDLER,[i.routeDefinition.id]));const s=new o(n);s&&s.update(i.route)}):r(we(M.NO_ROUTE_MATCH,[JSON.stringify(e)]))})}navigate(e){const n=this.matchRoute(e);if(!n)throw new Error(we(M.MISSING_ROUTE,[JSON.stringify(e)]));this.pendingRoute=Xt({},n),this._mapView(this.pendingRoute)}subscribe(e,n){return this.routeObservable.subscribe({next:e,error:()=>{},complete:()=>{}},Boolean(n))}async _mapView(e){const n=Math.random();this.routeHandlerId=n;const i=(await e.routeDefinition.handler()).default;if(!i)throw new Error(we(M.INVALID_ROUTE_HANDLER,[e.routeDefinition.id]));return this.routeHandler=new i(a=>{this._updateView(n,a)}),this.routeHandler&&this.routeHandler.update(e.route),!0}_updateView(e,n){if(!n||e!==this.routeHandlerId)return;if(!this.pendingRoute)throw new Error("Trying to commit route state without a route");const r=Ea(n.viewset);this.routeObservable.next(Xt(Xt(Xt({},this.pendingRoute),n),{},{viewset:r}))}}p.registerDecorators($a,{fields:["deprecatedConfig","routeHandlerId"]});function Ru(t={}){return new $a(t)}class Ue{constructor(){this.overrides=[]}add(e){this.overrides.push(e)}run(...e){return this.overrides.length===0?Promise.resolve(!0):this.overrides.reduce((n,r)=>n.then(i=>i===!1?Promise.resolve(!1):Promise.resolve(r(...e))),Promise.resolve(!0)).then(n=>Promise.resolve(n))}runSync(...e){return this.overrides.length===0?!0:this.overrides.reduce((n,r)=>n===!0?r(...e):!1,!0)}}p.registerDecorators(Ue,{fields:["overrides"]});const La=new Ue,xa=new Ue,ja=new Ue,Fa=new Ue;var Iu=Object.freeze({__proto__:null,NavigationOverrides:xa,Overrides:Ue,PageNavigationFailureOverrides:Fa,PreNavigateOverrides:La,SessionTimeoutOverrides:ja});function Ua(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function C(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ua(Object(n),!0).forEach(function(r){Du(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ua(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Du(t,e,n){return e=ku(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function ku(t){var e=$u(t,"string");return typeof e=="symbol"?e:String(e)}function $u(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Lu(t){const e=[],n=[];t.forEach(i=>{i.uri.includes("?")?n.push(i):e.push(i)});const r=[];return n.forEach(i=>{const a=[],o=i.uri.split("/");let s,l,d="";o.forEach(b=>{b.endsWith("?")?(s=b.substring(0,b.length-1),a.push({value:s,isOptional:!0}),l=s.substring(1),d=i.page.attributes?.[l]?"attributes":"state"):a.push({value:b,isOptional:!1})});const h=C(C({},i),{},{uri:a.map(b=>b.value).join("/")});r.push(h);const m={};Object.keys(i.page[d]).forEach(b=>{b!==l&&(m[b]=i.page[d][b])});const g=C(C({},i),{},{uri:a.filter(b=>!b.isOptional).map(b=>b.value).join("/"),page:C(C({},i.page),{},{[d]:m})});g.patterns&&(g.patterns=Object.fromEntries(Object.entries(g.patterns).filter(([b])=>b!==l))),r.push(g)}),[...e,...r]}function xu(t){const e=[],n=[];return t.forEach(r=>{const{type:i,attributes:a={},state:o={}}=r.page||{};if(i==="standard__objectPage")if(ju(a.actionName))e.push(r);else{let s;a.actionName==="list"?(s=C(C({},r),{},{page:C(C({},r.page),{},{attributes:C({},a),state:C({},o)})}),s.page.attributes.actionName="home"):a.actionName==="home"?(s=C(C({},r),{},{page:C(C({},r.page),{},{attributes:C({},a),state:C({},o)})}),s.page.attributes.actionName="list"):a.actionName||(r.page.attributes.actionName="home",s=C(C({},r),{},{page:C(C({},r.page),{},{attributes:C({},a),state:C({},o)})}),s.page.attributes.actionName="list"),e.push(r,s)}else n.push(r)}),[...e,...n]}function ju(t){return t&&t.length>1?t.startsWith(":"):!1}const Yt={};function Ka(t){const{pathname:e,search:n,hash:r}=new URL(t,window.location.origin);return{pathname:e,search:n,hash:r}}async function Fu(t){const{pathname:e,search:n,hash:r}=Ka(t);if(Yt[e])return Yt[e]+n+r;if(Object.values(Yt).includes(e))return t;try{const{redirected:i,url:a}=await nt.fetch(t,{basePath:"",method:"HEAD",isNonApiRequest:!0});if(i){const o=Ka(a).pathname;return Yt[e]=o,o+n+r}}catch(i){dt(`Unable to fetch canonical URL for ${t}`,`error: |
| | | `,i)}return null}async function Uu(t,e){const{route:n,routeDefinition:r}=e;if(r?.metadata?.hasVanityURL){const i=t.generateUrl(n.pageReference),a=await Fu(i);if(a&&a!==i){const o={type:"standard__webPage",attributes:{url:a}};return pt(t.contextId,o,!0),!0}}return!1}class za{constructor(e){this.callback=void 0,this.callback=e}dispose(){}update(e){const n=Mn.default.find(r=>r.id===e.id)?.view;this.callback({viewset:{default:()=>Ie.load(bi(n),"webruntime/app/v/1")}})}}p.registerDecorators(za,{fields:["callback"]});var Ku=p.registerComponent(za,{tmpl:te,sel:"webruntime-routingService"});function Ga(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Zt(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ga(Object(n),!0).forEach(function(r){zu(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ga(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function zu(t,e,n){return e=Gu(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Gu(t){var e=Vu(t,"string");return typeof e=="symbol"?e:String(e)}function Vu(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}let Va=!0;const en={};function ir(t){return t?.attributes?.urlName||t?.attributes?.urlPath}function Bu(t){t.extraRouteParams&&(Ba(t,t.extraRouteParams),delete t.extraRouteParams)}function Ba(t,e){const n=ir(t);!e||!n||(en[n]=e)}function Wu(t){const e=ir(t);if(e&&e in en){const n=en[e];return!(n&&Object.keys(n).length>0)}return!!e}function Hu(t={}){const{current:e,next:{url:n,route:{pageReference:r}={}}}=t;return e&&Wu(r)?(window.location.assign(n),!0):!1}function ar(t){if(Va)Wa(t,ci.default),Ba(t.pageReference,ci.default),Va=!1;else{const e=ir(t?.pageReference),n=en[e];Wa(t,n)}}function Wa(t,e){or(e)&&(or(t?.attributes)&&(t.attributes=Zt(Zt({},t.attributes),e)),or(t?.pageReference?.attributes)&&(t.pageReference.attributes=Zt(Zt({},t.pageReference.attributes),e)))}function or(t){return t&&typeof t=="object"}const Ha="redirectPageContext";function Ja(t){return t?.state?.[Ha]||null}function Ju(t,e,n={}){const{current:r,next:{route:i}={}}=n;return Ja(i)?(r?window.location.assign(qa(i)):pt(t,e.page,!0),!0):!1}function qa(t){if(!t)return null;const e=Ja(t)||window.btoa(window.encodeURIComponent(JSON.stringify(t)));return`${An.default}/?${Ha}=${e}`}const Qa="KnowledgeArticleVersion",qu=[{type:"standard__objectPage",params:[{name:"filterName",type:"state",value:"Default"}]},{type:"standard__search",params:[{name:"term",type:"state",value:" "}]},{type:"standard__recordPage",params:[{name:"recordName",type:"state",value:"detail"},{name:"categoryPath",type:"state",value:"detail"}],match:(t,{name:e})=>{const{attributes:n={}}=t;return n.urlName||n.urlPath?!1:n.objectApiName==="ProductCategory"?e==="categoryPath":n.objectApiName==="OrderSummary"?!1:e==="recordName"}}];function Qu(t){return qu.find(e=>t.type===e.type)}function Xu(t){return t.attributes&&t.attributes.contentKey&&(t.attributes.urlAlias=t.attributes.contentKey,delete t.attributes.contentKey),t}let tn;function Yu(t,e){t.attributes?.objectApiName===Qa&&(tn===void 0&&(tn=e.find(r=>r.page.attributes?.objectApiName?.endsWith("__kav"))?.page?.attributes?.objectApiName||null),tn&&(t.attributes.objectApiName=tn))}function Zu(t){return!t.attributes?.urlName&&!t.attributes?.urlPath||(t.type==="standard__recordPage"&&(Xa(t),delete t.attributes.recordId,delete t.state?.recordName,delete t.state?.categoryPath),t.type==="standard__recordRelationshipPage"&&(Xa(t),delete t.attributes.recordId)),t}function Xa(t){t.attributes.recordId&&(t.extraRouteParams={recordId:t.attributes.recordId})}function eh(t,e){return t.type==="standard__knowledgeArticlePage"&&(t.type="standard__recordPage",t.attributes.actionName="view",t.attributes.objectApiName=Qa,delete t.attributes.articleType),Yu(t,e),t}function th(t,e){const{params:n,match:r}=e;n.forEach(i=>{const{type:a,name:o,value:s}=i;r&&!r(t,i)||t?.[a]?.[o]||(t[a]||(t[a]={}),t[a][o]=s)})}function Ya(t={}){const e=Qu(t);e&&th(t,e)}function nh(t,e){if(t.state?.categoryPath?.includes("/")||t.attributes?.urlPath?.includes("/")){let[n,r]=e.split("?");return n=n.replace(/%2F/g,"/"),r=r?`?${r}`:"",n+r}return e}const{window:bt,performance:Za}=globalThis,sr=`${De}-framework-router`;Za?.mark(sr);const nn=xu(Lu(Fd(Mn.default)));nn.forEach(t=>{t.handler=()=>new Promise(e=>{e({default:Ku})})});const Pe=nn.find(t=>t.metadata.isDefault),eo=Mn.default.every(t=>t.metadata.isPublic!==!1),rh={basePath:rt.default,caseSensitive:!0,routes:nn,DEPRECATED_getRouteFromUrl:ih,DEPRECATED_getUrlFromRoute:ah},ie=Ru(rh);Za?.measure(sr,sr);let rn;function ih(t,e){const n=e(t);return n?(Ya(n),n):Pe?.page?Pe.page:null}function ah(t={type:"",attributes:{},state:{}},e){const{type:n,attributes:r}=t;let i;return n==="standard__webPage"?(i=r.url,i==null?"":to(i)):(n==="standard__managedContentPage"&&(t=Xu(t)),eh(t,nn),Zu(t),Ya(t),i=e(t),n==="standard__recordPage"&&(i=nh(t,i)),!i&&eo&&(i=qa(t)),i)}async function oh(t,e){const{route:n,routeDefinition:r}=t.next;if(r?.metadata?.isPublic!==!1)return!0;const{default:i}=await Ie.load("@app/user/v/1");if(i.isGuest){const a=no(n.pageReference);return a&&bt&&(e.preventDefault(),bt.location.href=a),!1}return!0}function sh(t){return Ju(ie.contextId,Pe,t)}async function dh(t){try{const{detail:{address:e,message:n,code:r}}=t;if(dt(`Routing error: ${n}`),r===M.PRENAV_FAILED.code)return;if(r===M.MISSING_ROUTE.code&&!Pe&&e?.includes("redirectPageContext=")){bt?.location.assign(e);return}if(Pe?.metadata?.isPublic===!1){const{default:i}=await Ie.load("@app/user/v/1");if(i.isGuest)return}an(Pe.page)}finally{rn?.errorNavigate(t.detail)}}function lh(t){const e=t.detail.address;if(!xa.runSync(e)){t.preventDefault();return}const{type:n,attributes:{url:r}={url:null}}=e;if(n==="standard__webPage"&&r!=null){if(Wn(r)){bt?.open(r),t.preventDefault();return}const i=ie.parseUrl(r);eo&&(!i||i===Pe?.page)&&(bt?.location.assign(to(r)),t.preventDefault())}Bu(e)}function to(t){return Wn(t)?t:rt.default&&t!==rt.default&&t.indexOf(`${rt.default}/`)!==0?`${rt.default}${t}`:t}function an(t){pt(ie.contextId,t)}function no(t){return ie.generateUrl(t)}function on(t,e=!0){return ie.subscribe(t,e)}let dr;async function ch(t){const e=t.detail,n=e.current?.routeDefinition.view;if(n?dr=Rn.default[n]:dr=null,rn?.preNavigate(e),La.run(e),oh(e,t),Li(),sh(e)){t.preventDefault();return}Hu(e)&&t.preventDefault()}async function uh(t){const e=t.detail,n=e.routeDefinition?.view,r=dr!==Rn.default[n];try{Ou(e),Cu(e),Su(r),await Uu(ie,e)}finally{rn?.postNavigate(e)}}function ro(t){rn=Ed._o11y.routingSupport,t.addEventListener("prenavigate",ch),t.addEventListener("handlenavigation",lh),t.addEventListener("postnavigate",uh),t.addEventListener("errornavigate",dh)}var hh=Object.freeze({__proto__:null,generateUrl:no,handleExtraRouteParams:ar,initializeRouterContainer:ro,navigate:an,router:ie,subscribe:on});function mh(){return typeof window!="undefined"&&window.matchMedia("only screen and (min-width: 48em) and (max-width: 64em)").matches}function fh(){return typeof window!="undefined"&&window.matchMedia("only screen and (max-width: 47.9375em)").matches}function lr(){return mh()?"Medium":fh()?"Small":"Large"}var ph=Object.freeze({__proto__:null,getFormFactor:lr});const c="/services/data/v58.0",gh={"CommerceCatalogController.getProductCategoryPath":{urlPath:c+"/commerce/webstores/${webstoreId}/product-category-path/product-categories/${productCategoryId}",urlPathParamNames:["productCategoryId","webstoreId"],method:"GET"},"CommerceCatalogController.getProducts":{urlPath:c+"/commerce/webstores/${webstoreId}/products",urlPathParamNames:["webstoreId"],method:"GET"},"CommerceCatalogController.getProduct":{urlPath:c+"/commerce/webstores/${webstoreId}/products/${productId}",urlPathParamNames:["productId","webstoreId"],method:"GET"},"HSRCommerceCatalogController.getProductCategoryPathHSR":{urlPath:c+"/commerce/webstores/${webstoreId}/versions/${versionId}/product-categories/${productCategoryId}/product-category-path",urlPathParamNames:["productCategoryId","versionId","webstoreId"],method:"GET"},"HSRCommerceCatalogController.getProductHSR":{urlPath:c+"/commerce/webstores/${webstoreId}/versions/${versionId}/products/${productId}",urlPathParamNames:["productId","versionId","webstoreId"],method:"GET"},"CommerceStorePricingController.getProductPrices":{urlPath:c+"/commerce/webstores/${webstoreId}/pricing/products",urlPathParamNames:["webstoreId"],method:"GET"},"CommerceStorePricingController.getProductPrice":{urlPath:c+"/commerce/webstores/${webstoreId}/pricing/products/${productId}",urlPathParamNames:["productId","webstoreId"],method:"GET"},"CommunitiesController.getCommunity":{urlPath:c+"/connect/communities/${communityId}",urlPathParamNames:["communityId"],method:"GET"},"CommunitiesController.ingestRecord":{urlPath:c+"/connect/communities/${communityId}/microbatching",urlPathParamNames:["communityId"],inputRepresentation:"requestIngestionInput",method:"POST"},"MissionsController.purgeUserMissionsActivities":{urlPath:c+"/connect/communities/${communityId}/missions/activities/purge-job",urlPathParamNames:["communityId"],method:"POST"},"CommerceCartController.upsertInventoryReservation":{urlPath:c+"/commerce/webstores/${webstoreId}/carts/${activeCartOrId}/inventory-reservations",urlPathParamNames:["activeCartOrId","webstoreId"],inputRepresentation:"cartInventoryReservationInput",method:"PUT"},"CommerceSearchController.searchProducts":{urlPath:c+"/commerce/webstores/${webstoreId}/search/product-search",urlPathParamNames:["webstoreId"],inputRepresentation:"productSearchInput",method:"POST"},"NavigationMenuController.getCommunityNavigationMenu":{urlPath:c+"/connect/communities/${communityId}/navigation-menu/navigation-menu-items",urlPathParamNames:["communityId"],method:"GET"},"MarketingIntegrationController.getForm":{urlPath:c+"/sites/${siteId}/marketing-integration/forms/${formId}",urlPathParamNames:["formId","siteId"],method:"GET"},"MarketingIntegrationController.saveForm":{urlPath:c+"/sites/${siteId}/marketing-integration/forms",urlPathParamNames:["siteId"],inputRepresentation:"formInput",method:"POST"},"MarketingIntegrationController.submitForm":{urlPath:c+"/sites/${siteId}/marketing-integration/forms/${formId}/data",urlPathParamNames:["formId","siteId"],inputRepresentation:"formSubmissionInput",method:"POST"},"SeoPropertiesController.getRecordSeoProperties":{urlPath:c+"/connect/communities/${communityId}/seo/properties/${recordId}",urlPathParamNames:["communityId","recordId"],method:"GET"},"FlowBuilderController.getRules":{urlPath:c+"/connect/interaction/builder/rules",urlPathParamNames:[],method:"GET"},"OrchestrationController.getOrchestrationInstanceCollection":{urlPath:c+"/connect/interaction/orchestration/instances",urlPathParamNames:[],method:"GET"},"FlowRuntimeConnectController.navigateFlow":{urlPath:c+"/connect/interaction/runtime/navigateFlow",urlPathParamNames:[],inputRepresentation:"request",method:"POST"},"FlowRuntimeConnectController.resumeFlow":{urlPath:c+"/connect/interaction/runtime/resumeFlow",urlPathParamNames:[],method:"POST"},"FlowRuntimeConnectController.startFlow":{urlPath:c+"/connect/interaction/runtime/startFlow",urlPathParamNames:[],method:"POST"},"ExperienceModelTypeSystemController.getBlockTypes":{urlPath:c+"/connect/experience-model/block-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getBlockType":{urlPath:c+"/connect/experience-model/block-types/${fullyQualifiedName}",urlPathParamNames:["fullyQualifiedName"],method:"GET"},"ExperienceModelTypeSystemController.getContentTypes":{urlPath:c+"/connect/experience-model/content-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getContentTypesByContextRecordId":{urlPath:c+"/connect/experience-model/content-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getContentType":{urlPath:c+"/connect/experience-model/content-types/${fullyQualifiedName}",urlPathParamNames:["fullyQualifiedName"],method:"GET"},"ExperienceModelTypeSystemController.getPropertyTypes":{urlPath:c+"/connect/experience-model/property-types",urlPathParamNames:[],method:"GET"},"ExperienceModelTypeSystemController.getPropertyType":{urlPath:c+"/connect/experience-model/property-types/${fullyQualifiedName}",urlPathParamNames:["fullyQualifiedName"],method:"GET"},"ManagedContentController.getAllManagedContentChannels":{urlPath:c+"/connect/cms/management/channels",urlPathParamNames:[],method:"GET"},"ManagedContentController.postManagedContentChannel":{urlPath:c+"/connect/cms/management/channels",urlPathParamNames:[],inputRepresentation:"ManagedContentChannelInput",method:"POST"},"ManagedContentController.getManagedContentChannelRecordByChannelId":{urlPath:c+"/connect/cms/management/channels/${channelId}",urlPathParamNames:["channelId"],method:"GET"},"ManagedContentController.patchManagedContentChannelRecord":{urlPath:c+"/connect/cms/management/channels/${channelId}",urlPathParamNames:["channelId"],inputRepresentation:"ManagedContentChannelInput",method:"PATCH"},"ManagedContentController.getCollectionItems":{urlPath:c+"/connect/cms/collections/${collectionKeyOrId}",urlPathParamNames:["collectionKeyOrId"],method:"GET"},"ManagedContentController.getManagedContentByTopicsAndContentKeys":{urlPath:c+"/connect/communities/${communityId}/managed-content/delivery",urlPathParamNames:["communityId"],method:"GET"},"ManagedContentController.getPublishedManagedContentListByContentKey":{urlPath:c+"/connect/communities/${communityId}/managed-content/delivery/contents",urlPathParamNames:["communityId"],method:"GET"},"ManagedContentController.createDeployment":{urlPath:c+"/cms/deployments",urlPathParamNames:[],inputRepresentation:"DeploymentInput",method:"POST"},"ManagedContentController.createManagedContent":{urlPath:c+"/connect/cms/contents",urlPathParamNames:[],inputRepresentation:"ManagedContentInputParam",method:"POST"},"ManagedContentController.createManagedContentWithMedia":{urlPath:c+"/connect/cms/contents",urlPathParamNames:[],inputRepresentation:"ManagedContentInputParam",method:"POST"},"ManagedContentController.getManagedContent":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}",urlPathParamNames:["contentKeyOrId"],method:"GET"},"ManagedContentController.createManagedContentExportV2Job":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}/contents/export",urlPathParamNames:["contentSpaceId"],inputRepresentation:"managedContentV2JobRequest",method:"POST"},"ManagedContentController.createManagedContentImportV2Job":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}/contents/import",urlPathParamNames:["contentSpaceId"],inputRepresentation:"managedContentV2JobRequest",method:"POST"},"ManagedContentController.getManagedContentOrchestrationDefinitions":{urlPath:c+"/connect/cms/contents/orchestration-definitions",urlPathParamNames:[],method:"GET"},"ManagedContentController.getManagedContentOrchestrationInstances":{urlPath:c+"/connect/cms/contents/orchestration-instances",urlPathParamNames:[],method:"GET"},"ManagedContentController.createManagedContentOrchestrationInstance":{urlPath:c+"/connect/cms/contents/orchestration-instances",urlPathParamNames:[],inputRepresentation:"mContentOrchInstanceInput",method:"POST"},"ManagedContentController.getManagedContentPreviews":{urlPath:c+"/cms/spaces/${contentSpaceId}/preview-endpoints",urlPathParamNames:["contentSpaceId"],method:"GET"},"ManagedContentController.publish":{urlPath:c+"/connect/cms/contents/publish",urlPathParamNames:[],inputRepresentation:"publishInput",method:"POST"},"ManagedContentController.getManagedContentReferencedBy":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}/referenced-by",urlPathParamNames:["contentKeyOrId"],method:"GET"},"ManagedContentController.getManagedContentVariantRendition":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}/renditions/${renditionType}",urlPathParamNames:["contentKeyOrId","renditionType"],method:"GET"},"ManagedContentController.getManagedContentRunningOrchestrationHistoryEvents":{urlPath:c+"/connect/cms/contents/orchestration-history-events",urlPathParamNames:[],method:"GET"},"ManagedContentController.searchManagedContentForItems":{urlPath:c+"/connect/cms/items/search",urlPathParamNames:[],method:"GET"},"ManagedContentController.getManagedContentSpaces":{urlPath:c+"/connect/cms/spaces",urlPathParamNames:[],method:"GET"},"ManagedContentController.getManagedContentSpaceFolderItems":{urlPath:c+"/connect/cms/folders/${folderId}/items",urlPathParamNames:["folderId"],method:"GET"},"ManagedContentController.getManagedContentSpace":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}",urlPathParamNames:["contentSpaceId"],method:"GET"},"ManagedContentController.patchManagedContentSpace":{urlPath:c+"/connect/cms/spaces/${contentSpaceId}",urlPathParamNames:["contentSpaceId"],inputRepresentation:"ManagedContentSpaceInput",method:"PATCH"},"ManagedContentController.createTranslationJob":{urlPath:c+"/connect/managed-content/translation",urlPathParamNames:[],inputRepresentation:"translationRequest",method:"POST"},"ManagedContentController.createTranslationV2Job":{urlPath:c+"/connect/cms/content/spaces/${contentSpaceId}/translation",urlPathParamNames:["contentSpaceId"],inputRepresentation:"translationV2Request",method:"POST"},"ManagedContentController.unpublish":{urlPath:c+"/connect/cms/contents/unpublish",urlPathParamNames:[],inputRepresentation:"unpublishInput",method:"POST"},"ManagedContentController.createManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants",urlPathParamNames:[],inputRepresentation:"ManagedContentVariantInputParam",method:"POST"},"ManagedContentController.getVariantReferences":{urlPath:c+"/connect/cms/contents/${contentKeyOrId}/variants/references",urlPathParamNames:["contentKeyOrId"],method:"GET"},"ManagedContentController.deleteManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],method:"DELETE"},"ManagedContentController.getManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],method:"GET"},"ManagedContentController.replaceManagedContentVariant":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],inputRepresentation:"ManagedContentVariantInputParam",method:"PUT"},"ManagedContentController.replaceManagedContentVariantWithMedia":{urlPath:c+"/connect/cms/contents/variants/${variantId}",urlPathParamNames:["variantId"],inputRepresentation:"ManagedContentVariantInputParam",method:"PUT"},"ManagedContentController.getManagedContentVariantVersions":{urlPath:c+"/connect/cms/contents/variants/${variantId}/versions",urlPathParamNames:["variantId"],method:"GET"},"ManagedContentDeliveryController.getCollectionItemsForChannel":{urlPath:c+"/connect/cms/delivery/channels/${channelId}/collections/${collectionKeyOrId}",urlPathParamNames:["channelId","collectionKeyOrId"],method:"GET"},"ManagedContentDeliveryController.getCollectionItemsForSite":{urlPath:c+"/connect/sites/${siteId}/cms/delivery/collections/${collectionKeyOrId}",urlPathParamNames:["collectionKeyOrId","siteId"],method:"GET"},"ManagedContentDeliveryController.getCollectionMetadata":{urlPath:c+"/connect/cms/collections/${collectionKeyOrId}/metadata",urlPathParamNames:["collectionKeyOrId"],method:"GET"},"ManagedContentDeliveryController.getCollectionMetadataForChannel":{urlPath:c+"/connect/cms/delivery/channels/${channelId}/collections/${collectionKeyOrId}/metadata",urlPathParamNames:["channelId","collectionKeyOrId"],method:"GET"},"ManagedContentDeliveryController.getCollectionMetadataForSite":{urlPath:c+"/connect/sites/${siteId}/cms/delivery/collections/${collectionKeyOrId}/metadata",urlPathParamNames:["collectionKeyOrId","siteId"],method:"GET"},"ManagedContentTypeController.getContentTypeSchema":{urlPath:c+"/connect/cms/content-types/${contentTypeFQN}",urlPathParamNames:["contentTypeFQN"],method:"GET"},"SitesController.searchSite":{urlPath:c+"/connect/sites/${siteId}/search",urlPathParamNames:["siteId"],method:"GET"},"ActionsController.getGlobalActions":{urlPath:c+"/ui-api/actions/global",urlPathParamNames:[],method:"GET"},"ActionsController.getActionLayout":{urlPath:c+"/ui-api/actions/layout/${actionApiName}",urlPathParamNames:["actionApiName"],method:"GET"},"ActionsController.getListViewActions":{urlPath:c+"/ui-api/actions/list-view/${listViewIds}",urlPathParamNames:["listViewIds"],method:"GET"},"ActionsController.getLookupActions":{urlPath:c+"/ui-api/actions/lookup/${objectApiNames}",urlPathParamNames:["objectApiNames"],method:"GET"},"ActionsController.getMRUListActions":{urlPath:c+"/ui-api/actions/mru-list/${objectApiNames}",urlPathParamNames:["objectApiNames"],method:"GET"},"ActionsController.getObjectCreateActions":{urlPath:c+"/ui-api/actions/object/${objectApiName}/record-create",urlPathParamNames:["objectApiName"],method:"GET"},"ActionsController.getActionOverrides":{urlPath:c+"/ui-api/actions/overrides/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"ActionsController.performUpdateRecordQuickAction":{urlPath:c+"/ui-api/actions/perform-quick-action/${actionApiName}",urlPathParamNames:["actionApiName"],inputRepresentation:"performQuickActionInput",method:"PATCH"},"ActionsController.performQuickAction":{urlPath:c+"/ui-api/actions/perform-quick-action/${actionApiName}",urlPathParamNames:["actionApiName"],inputRepresentation:"performQuickActionInput",method:"POST"},"ActionsController.getQuickActionDefaults":{urlPath:c+"/ui-api/actions/record-defaults/${actionApiName}",urlPathParamNames:["actionApiName"],method:"GET"},"ActionsController.getRecordEditActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/record-edit",urlPathParamNames:["recordIds"],method:"GET"},"ActionsController.getRecordActions":{urlPath:c+"/ui-api/actions/record/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"ActionsController.getRelatedListsActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/batch/${relatedListIds}",urlPathParamNames:["recordIds","relatedListIds"],method:"GET"},"ActionsController.postRelatedListsActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/batch",urlPathParamNames:["recordIds"],inputRepresentation:"listRecordActionsQuery",method:"POST"},"ActionsController.getRelatedListRecordActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list-record/${relatedListRecordIds}",urlPathParamNames:["recordIds","relatedListRecordIds"],method:"GET"},"ActionsController.getRelatedListActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/${relatedListId}",urlPathParamNames:["recordIds","relatedListId"],method:"GET"},"ActionsController.postRelatedListActions":{urlPath:c+"/ui-api/actions/record/${recordIds}/related-list/${relatedListId}",urlPathParamNames:["recordIds","relatedListId"],inputRepresentation:"listRecordActionsQuery",method:"POST"},"AppsController.getAppByID":{urlPath:c+"/ui-api/apps/${appId}",urlPathParamNames:["appId"],method:"GET"},"AppsController.getAccessibleApps":{urlPath:c+"/ui-api/apps",urlPathParamNames:[],method:"GET"},"AppsController.getNavItems":{urlPath:c+"/ui-api/nav-items",urlPathParamNames:[],method:"GET"},"ListUiController.getListsByObjectName":{urlPath:c+"/ui-api/list-ui/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"ListUiController.getListInfosById":{urlPath:c+"/ui-api/list-info/batch",urlPathParamNames:[],method:"GET"},"ListUiController.getListInfosByName":{urlPath:c+"/ui-api/list-info/batch",urlPathParamNames:[],method:"GET"},"ListUiController.getListInfoById":{urlPath:c+"/ui-api/list-info/${listViewId}",urlPathParamNames:["listViewId"],method:"GET"},"ListUiController.getListInfoByName":{urlPath:c+"/ui-api/list-info/${objectApiName}/${listViewApiName}",urlPathParamNames:["listViewApiName","objectApiName"],method:"GET"},"ListUiController.getListRecordsById":{urlPath:c+"/ui-api/list-records/${listViewId}",urlPathParamNames:["listViewId"],method:"GET"},"ListUiController.getListRecordsByName":{urlPath:c+"/ui-api/list-records/${objectApiName}/${listViewApiName}",urlPathParamNames:["listViewApiName","objectApiName"],method:"GET"},"ListUiController.getListUiById":{urlPath:c+"/ui-api/list-ui/${listViewId}",urlPathParamNames:["listViewId"],method:"GET"},"ListUiController.getListUiByName":{urlPath:c+"/ui-api/list-ui/${objectApiName}/${listViewApiName}",urlPathParamNames:["listViewApiName","objectApiName"],method:"GET"},"MruListUiController.getMruListInfo":{urlPath:c+"/ui-api/mru-list-info/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"MruListUiController.getMruListRecords":{urlPath:c+"/ui-api/mru-list-records/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"MruListUiController.getMruListUi":{urlPath:c+"/ui-api/mru-list-ui/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getAggregateUi":{urlPath:c+"/ui-api/aggregate-ui",urlPathParamNames:[],method:"GET"},"RecordUiController.executeAggregateUi":{urlPath:c+"/ui-api/aggregate-ui",urlPathParamNames:[],inputRepresentation:"input",method:"POST"},"RecordUiController.getRecordsWithFields":{urlPath:c+"/ui-api/records/batch/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getRecordsWithLayouts":{urlPath:c+"/ui-api/records/batch/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getDedupeConfig":{urlPath:c+"/ui-api/duplicates/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getDuplicateConfig":{urlPath:c+"/ui-api/duplicates/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getFormByName":{urlPath:c+"/ui-api/forms/${apiName}",urlPathParamNames:["apiName"],method:"GET"},"RecordUiController.executeBatchGraphQL":{urlPath:c+"/graphql/batch",urlPathParamNames:[],inputRepresentation:"QUERY_INPUT_PARAMETER",method:"POST"},"RecordUiController.executeGraphQL":{urlPath:c+"/graphql",urlPathParamNames:[],inputRepresentation:"queryInput",method:"POST"},"RecordUiController.getLayout":{urlPath:c+"/ui-api/layout/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getLayoutUserState":{urlPath:c+"/ui-api/layout/${objectApiName}/user-state",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.updateLayoutUserState":{urlPath:c+"/ui-api/layout/${objectApiName}/user-state",urlPathParamNames:["objectApiName"],inputRepresentation:"userState",method:"PATCH"},"RecordUiController.getObjectInfos":{urlPath:c+"/ui-api/object-info/batch/${objectApiNames}",urlPathParamNames:["objectApiNames"],method:"GET"},"RecordUiController.getObjectInfo":{urlPath:c+"/ui-api/object-info/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getPicklistValuesByRecordType":{urlPath:c+"/ui-api/object-info/${objectApiName}/picklist-values/${recordTypeId}",urlPathParamNames:["objectApiName","recordTypeId"],method:"GET"},"RecordUiController.getPicklistValues":{urlPath:c+"/ui-api/object-info/${objectApiName}/picklist-values/${recordTypeId}/${fieldApiName}",urlPathParamNames:["fieldApiName","objectApiName","recordTypeId"],method:"GET"},"RecordUiController.findDuplicates":{urlPath:c+"/ui-api/predupe",urlPathParamNames:[],inputRepresentation:"recordInput",method:"POST"},"RecordUiController.postRecordAvatarAssociation":{urlPath:c+"/ui-api/record-avatars/${recordId}/association",urlPathParamNames:["recordId"],inputRepresentation:"input",method:"POST"},"RecordUiController.getRecordAvatars":{urlPath:c+"/ui-api/record-avatars/batch/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getRecordCloneDefaults":{urlPath:c+"/ui-api/record-defaults/clone/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.getRecordCreateDefaults":{urlPath:c+"/ui-api/record-defaults/create/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.createRecord":{urlPath:c+"/ui-api/records",urlPathParamNames:[],inputRepresentation:"recordInput",method:"POST"},"RecordUiController.deleteRecord":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],method:"DELETE"},"RecordUiController.getRecordWithFields":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.getRecordWithLayouts":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.updateRecord":{urlPath:c+"/ui-api/records/${recordId}",urlPathParamNames:["recordId"],inputRepresentation:"recordInput",method:"PATCH"},"RecordUiController.getRecordDefaultsTemplateClone":{urlPath:c+"/ui-api/record-defaults/template/clone/${recordId}",urlPathParamNames:["recordId"],method:"GET"},"RecordUiController.getRecordDefaultsTemplateForCreate":{urlPath:c+"/ui-api/record-defaults/template/create/${objectApiName}",urlPathParamNames:["objectApiName"],method:"GET"},"RecordUiController.getRecordUis":{urlPath:c+"/ui-api/record-ui/${recordIds}",urlPathParamNames:["recordIds"],method:"GET"},"RecordUiController.getValidationRulesInfo":{urlPath:c+"/ui-api/object-info/${objectApiName}/validation-rules-info",urlPathParamNames:["objectApiName"],method:"GET"},"RelatedListUiController.getRelatedListInfoBatch":{urlPath:c+"/ui-api/related-list-info/batch/${parentObjectApiName}/${relatedListNames}",urlPathParamNames:["parentObjectApiName","relatedListNames"],method:"GET"},"RelatedListUiController.getRelatedListInfoCollection":{urlPath:c+"/ui-api/related-list-info/${parentObjectApiName}",urlPathParamNames:["parentObjectApiName"],method:"GET"},"RelatedListUiController.getRelatedListInfo":{urlPath:c+"/ui-api/related-list-info/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],method:"GET"},"RelatedListUiController.getRelatedListInfoByApiName":{urlPath:c+"/ui-api/related-list-info/${parentObjectApiName}/${relatedListId}",urlPathParamNames:["parentObjectApiName","relatedListId"],method:"GET"},"RelatedListUiController.updateRelatedListInfoByApiName":{urlPath:c+"/ui-api/related-list-info/${parentObjectApiName}/${relatedListId}",urlPathParamNames:["parentObjectApiName","relatedListId"],inputRepresentation:"relatedListInfoInput",method:"PATCH"},"RelatedListUiController.getRelatedListPreferencesBatch":{urlPath:c+"/ui-api/related-list-preferences/batch/${preferencesIds}",urlPathParamNames:["preferencesIds"],method:"GET"},"RelatedListUiController.getRelatedListPreferences":{urlPath:c+"/ui-api/related-list-preferences/${preferencesId}",urlPathParamNames:["preferencesId"],method:"GET"},"RelatedListUiController.updateRelatedListPreferences":{urlPath:c+"/ui-api/related-list-preferences/${preferencesId}",urlPathParamNames:["preferencesId"],inputRepresentation:"relatedListUserPreferencesInput",method:"PATCH"},"RelatedListUiController.getRelatedListsRecordCount":{urlPath:c+"/ui-api/related-list-count/batch/${parentRecordId}/${relatedListNames}",urlPathParamNames:["parentRecordId","relatedListNames"],method:"GET"},"RelatedListUiController.getRelatedListRecordCount":{urlPath:c+"/ui-api/related-list-count/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],method:"GET"},"RelatedListUiController.getRelatedListRecordsBatch":{urlPath:c+"/ui-api/related-list-records/batch/${parentRecordId}/${relatedListIds}",urlPathParamNames:["parentRecordId","relatedListIds"],method:"GET"},"RelatedListUiController.postRelatedListRecordsBatch":{urlPath:c+"/ui-api/related-list-records/batch/${parentRecordId}",urlPathParamNames:["parentRecordId"],inputRepresentation:"listRecordsQuery",method:"POST"},"RelatedListUiController.getRelatedListRecords":{urlPath:c+"/ui-api/related-list-records/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],method:"GET"},"RelatedListUiController.postRelatedListRecords":{urlPath:c+"/ui-api/related-list-records/${parentRecordId}/${relatedListId}",urlPathParamNames:["parentRecordId","relatedListId"],inputRepresentation:"listRecordsQuery",method:"POST"},"SearchUiController.searchResultsKeyword":{urlPath:c+"/ui-api/search/results/keyword",urlPathParamNames:[],inputRepresentation:"options",method:"POST"},"SearchUiController.getSearchFilterMetadata":{urlPath:c+"/ui-api/search-info/${objectApiName}/filters",urlPathParamNames:["objectApiName"],method:"GET"},"SearchUiController.getFilterOptions":{urlPath:c+"/ui-api/search-info/${objectApiName}/filters/${filterApiName}/options",urlPathParamNames:["filterApiName","objectApiName"],method:"GET"},"SearchUiController.searchResults":{urlPath:c+"/ui-api/search/results",urlPathParamNames:[],inputRepresentation:"options",method:"POST"},"LookupController.getLookupMetadata":{urlPath:c+"/ui-api/search-info/${objectApiName}/lookup/${fieldApiName}",urlPathParamNames:["fieldApiName","objectApiName"],method:"GET"},"LookupController.getLookupRecords":{urlPath:c+"/ui-api/lookups/${objectApiName}/${fieldApiName}",urlPathParamNames:["fieldApiName","objectApiName"],method:"GET"}};function bh(t){return gh[t]}function vh(t){nt.sendBeacon({path:pi,payload:JSON.stringify(t),contentType:"text/plain;charset=UTF-8"})}function yh(t,e){document.dispatchEvent(new CustomEvent("client-error",{detail:{error:t,type:e}}))}function vt({subject:t,error:e,wcstack:n,type:r=at.UNKNOWN_ERROR}){n=n||e.wcstack;const{message:i,stack:a}=e,{hostname:o,pathname:s}=globalThis.location||{},d={subject:t,message:i,stack:a,wcstack:n,location:{hostname:o,pathname:s}};dt(a||d),typeof document!="undefined"&&(yh(d,r),vh(d))}function io(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function sn(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?io(Object(n),!0).forEach(function(r){wh(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):io(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function wh(t,e,n){return e=Th(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Th(t){var e=Ph(t,"string");return typeof e=="symbol"?e:String(e)}function Ph(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}async function Eh(t,e){const[n,r]=t.split(".");if(n==="ApexActionController")return Oh(r,e);const i=bh(t);if(i)return _h(i,e);throw new Error(`Unsupported controller action: ${n}.${r}`)}async function _h({urlPath:t,urlPathParamNames:e,method:n,inputRepresentation:r},i){const a=i&&sn({},i)||{};let o=e.reduce((h,m)=>{const g=a[m];return delete a[m],h.replace(`\${${m}}`,encodeURIComponent(g))},t),s;(n==="POST"||n==="PATCH")&&a[r]&&(s=JSON.stringify(a[r]),delete a[r]),Object.keys(a).length&&(o+=`?${Object.entries(a).filter(([,h])=>h!=null&&(!Array.isArray(h)||h.length)).map(([h,m])=>`${encodeURIComponent(h)}=${encodeURIComponent(m)}`).join("&")}`);const l=await nt.fetch(o,{method:n,body:s});let d;if(l.status===401&&ao(),l.status!==204&&(d=await l.json()),d instanceof Array&&(d=d[0]),!l.ok){const h={status:l.status,data:sn(sn({},d),{},{statusCode:l.status})};throw so([h])}return oo(d)}async function Oh(t,e){if(t==="execute"){const{url:n,httpRequestOptions:r}=Ch(t,e);return nt.fetch(n,r).then(i=>(i.status===401&&ao(),i.status!==204?i.json():void 0)).then(i=>{if(i&&i.error&&i.error.length>0)throw so(i.error);return oo(i)})}throw new Error(`Unsupported Apex action: ${t}`)}function Ch(t,e){if((!e||typeof e!="object"||Object.keys(e).length===0)&&vt({subject:"Apex API action error - invalid params",type:at.APEX_ACTION_ERROR,error:new Error(`Apex ${t} action called with invalid params: '${JSON.stringify(e)}'.`)}),e&&e.cacheable===!0){const n=`/apex/${t}?${Sh(e)}`;if(n.length<=Id)return{url:n,httpRequestOptions:{method:"GET",basePath:ui.default}}}return{url:`/apex/${t}`,httpRequestOptions:{method:"POST",body:JSON.stringify(e),basePath:ui.default}}}function Sh(t){const e=sn({},t),n=e.params;if(n&&typeof n=="object"){const r=Object.keys(n).sort().reduce((i,a)=>(i[a]=n[a],i),{});e.params=JSON.stringify(r)}return Object.keys(e).filter(r=>e[r]!==void 0&&e[r]!=null).sort().map(r=>`${r}=${encodeURIComponent(e[r])}`).join("&")}function ao(){ja.runSync()}function oo(t){return{getReturnValue:()=>t}}function so(t){return{getError:()=>t}}var Nh=Object.freeze({__proto__:null,createComponent:null,executeGlobalControllerRawResponse:Eh,getDefinition:null,logger:Ki,renderComponent:null});function lo(t){return t===void 0}const Ah="ValueChangedEvent";class co{constructor(e){this.type=Ah,this.value=e}}const{freeze:uo,defineProperty:Mh,isExtensible:Rh}=Object,Ih="$$DeprecatedWiredElementHostKey$$",Dh="$$DeprecatedWiredParamsMetaKey$$";function kh(t,e){if(t==null||!Rh(t))throw new TypeError("adapter id must be extensible");if(typeof e!="function")throw new TypeError("adapter factory must be a callable");if("adapter"in t)throw new TypeError("adapter id is already associated to an adapter factory");const n=class extends Kh{constructor(r){super(r);e(this.eventTarget)}};uo(n),uo(n.prototype),Mh(t,"adapter",{writable:!1,configurable:!1,value:n})}function $h(){}const{forEach:cr,splice:Lh,indexOf:xh}=Array.prototype,ho="connect",mo="disconnect",fo="config";function ur(t,e){const n=xh.call(t,e);n>-1&&Lh.call(t,n,1)}function jh(t){return Object.keys(t).length===0}function Fh(t,e){return e.length===0||e.some(n=>!lo(t[n]))}function Uh(t,e,n){return n.some(r=>t[r]!==e[r])}class Kh{constructor(e){this.connecting=[],this.disconnecting=[],this.configuring=[],this.isFirstUpdate=!0,this.callback=e,this.wiredElementHost=e[Ih],this.dynamicParamsNames=e[Dh],this.eventTarget={addEventListener:(n,r)=>{switch(n){case ho:{this.connecting.push(r);break}case mo:{this.disconnecting.push(r);break}case fo:{this.configuring.push(r),this.currentConfig!==void 0&&r.call(void 0,this.currentConfig);break}default:throw new Error(`Invalid event type ${n}.`)}},removeEventListener:(n,r)=>{switch(n){case ho:{ur(this.connecting,r);break}case mo:{ur(this.disconnecting,r);break}case fo:{ur(this.configuring,r);break}default:throw new Error(`Invalid event type ${n}.`)}},dispatchEvent:n=>{if(n instanceof co){const r=n.value;this.callback(r)}else{if(n.type==="wirecontextevent")return this.wiredElementHost.dispatchEvent(n);throw new Error(`Invalid event type ${n.type}.`)}return!1}}}update(e){this.isFirstUpdate&&(this.isFirstUpdate=!1,!jh(e)&&!Fh(e,this.dynamicParamsNames))||(lo(this.currentConfig)||Uh(e,this.currentConfig,this.dynamicParamsNames))&&(this.currentConfig=e,cr.call(this.configuring,n=>{n.call(void 0,e)}))}connect(){cr.call(this.connecting,e=>e.call(void 0))}disconnect(){cr.call(this.disconnecting,e=>e.call(void 0))}}var zh=Object.freeze({__proto__:null,ValueChangedEvent:co,register:kh,registerWireService:$h});const Gh={hidden:""},Vh={lwc:{dom:"manual"}};function yt(t,e,n,r){const{shc:i,h:a}=t;return[a("div",{attrs:Gh,props:{innerHTML:r._rawHtml$0!==(r._rawHtml$0=e.scriptElement)?r._sanitizedHtml$0=i(e.scriptElement):r._sanitizedHtml$0},context:Vh,key:0})]}var Bh=p.registerTemplate(yt);yt.stylesheets=[],yt.renderMode="light",yt.stylesheetToken="experience-dataLayerObject_dataLayerObject",p.freezeTemplate(yt);function Wh(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}else return Array.from(t)}var Hh=Object.hasOwnProperty,po=Object.setPrototypeOf,Jh=Object.isFrozen,qh=Object.getPrototypeOf,Qh=Object.getOwnPropertyDescriptor,$=Object.freeze,ae=Object.seal,Xh=Object.create,go=typeof Reflect!="undefined"&&Reflect,dn=go.apply,hr=go.construct;dn||(dn=function(e,n,r){return e.apply(n,r)}),$||($=function(e){return e}),ae||(ae=function(e){return e}),hr||(hr=function(e,n){return new(Function.prototype.bind.apply(e,[null].concat(Wh(n))))});var Yh=G(Array.prototype.forEach),bo=G(Array.prototype.pop),wt=G(Array.prototype.push),Ee=G(String.prototype.toLowerCase),vo=G(String.prototype.match),me=G(String.prototype.replace),Zh=G(String.prototype.indexOf),em=G(String.prototype.trim),fe=G(RegExp.prototype.test),yo=tm(TypeError);function G(t){return function(e){for(var n=arguments.length,r=Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];return dn(t,e,r)}}function tm(t){return function(){for(var e=arguments.length,n=Array(e),r=0;r<e;r++)n[r]=arguments[r];return hr(t,n)}}function P(t,e){po&&po(t,null);for(var n=e.length;n--;){var r=e[n];if(typeof r=="string"){var i=Ee(r);i!==r&&(Jh(e)||(e[n]=i),r=i)}t[r]=!0}return t}function Ke(t){var e=Xh(null),n=void 0;for(n in t)dn(Hh,t,[n])&&(e[n]=t[n]);return e}function ln(t,e){for(;t!==null;){var n=Qh(t,e);if(n){if(n.get)return G(n.get);if(typeof n.value=="function")return G(n.value)}t=qh(t)}return null}var wo=$(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),mr=$(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),fr=$(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),nm=$(["animate","color-profile","cursor","discard","fedropshadow","feimage","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),pr=$(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover"]),rm=$(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),To=$(["#text"]),Po=$(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns"]),gr=$(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Eo=$(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),cn=$(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),im=ae(/\{\{[\s\S]*|[\s\S]*\}\}/gm),am=ae(/<%[\s\S]*|[\s\S]*%>/gm),om=ae(/^data-[\-\w.\u00B7-\uFFFF]/),sm=ae(/^aria-[\-\w]+$/),dm=ae(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),lm=ae(/^(?:\w+script|data):/i),cm=ae(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Tt=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};function Y(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}else return Array.from(t)}var um=function(){return typeof window=="undefined"?null:window},hm=function(e,n){if((typeof e=="undefined"?"undefined":Tt(e))!=="object"||typeof e.createPolicy!="function")return null;var r=null,i="data-tt-policy-suffix";n.currentScript&&n.currentScript.hasAttribute(i)&&(r=n.currentScript.getAttribute(i));var a="dompurify"+(r?"#"+r:"");try{return e.createPolicy(a,{createHTML:function(s){return s}})}catch(o){return console.warn("TrustedTypes policy "+a+" could not be created."),null}};function _o(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:um(),e=function(u){return _o(u)};if(e.version="2.2.6",e.removed=[],!t||!t.document||t.document.nodeType!==9)return e.isSupported=!1,e;var n=t.document,r=t.document,i=t.DocumentFragment,a=t.HTMLTemplateElement,o=t.Node,s=t.Element,l=t.NodeFilter,d=t.NamedNodeMap,h=d===void 0?t.NamedNodeMap||t.MozNamedAttrMap:d,m=t.Text,g=t.Comment,b=t.DOMParser,T=t.trustedTypes,E=s.prototype,_=ln(E,"cloneNode"),I=ln(E,"nextSibling"),_n=ln(E,"childNodes"),Ye=ln(E,"parentNode");if(typeof a=="function"){var It=r.createElement("template");It.content&&It.content.ownerDocument&&(r=It.content.ownerDocument)}var ve=hm(T,n),Qs=ve&&Cn?ve.createHTML(""):"",On=r,Hr=On.implementation,Lg=On.createNodeIterator,xg=On.getElementsByTagName,jg=On.createDocumentFragment,Fg=n.importNode,Xs={};try{Xs=Ke(r).documentMode?r.documentMode:{}}catch(y){}var Z={};e.isSupported=Hr&&typeof Hr.createHTMLDocument!="undefined"&&Xs!==9;var Jr=im,qr=am,Ug=om,Kg=sm,zg=lm,Ys=cm,Qr=dm,D=null,Zs=P({},[].concat(Y(wo),Y(mr),Y(fr),Y(pr),Y(To))),x=null,ed=P({},[].concat(Y(Po),Y(gr),Y(Eo),Y(cn))),Xr=null,td=null,nd=!0,Yr=!0,rd=!1,Ze=!1,Dt=!1,Zr=!1,ei=!1,kt=!1,ti=!1,id=!0,Cn=!1,ad=!0,ni=!0,$t=!1,et={},Gg=P({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),od=null,sd=P({},["audio","video","img","source","image","track"]),ri=null,dd=P({},["alt","class","for","id","label","name","pattern","placeholder","summary","title","value","style","xmlns"]),tt=null,Vg=r.createElement("form"),ii=function(u){tt&&tt===u||((!u||(typeof u=="undefined"?"undefined":Tt(u))!=="object")&&(u={}),u=Ke(u),D="ALLOWED_TAGS"in u?P({},u.ALLOWED_TAGS):Zs,x="ALLOWED_ATTR"in u?P({},u.ALLOWED_ATTR):ed,ri="ADD_URI_SAFE_ATTR"in u?P(Ke(dd),u.ADD_URI_SAFE_ATTR):dd,od="ADD_DATA_URI_TAGS"in u?P(Ke(sd),u.ADD_DATA_URI_TAGS):sd,Xr="FORBID_TAGS"in u?P({},u.FORBID_TAGS):{},td="FORBID_ATTR"in u?P({},u.FORBID_ATTR):{},et="USE_PROFILES"in u?u.USE_PROFILES:!1,nd=u.ALLOW_ARIA_ATTR!==!1,Yr=u.ALLOW_DATA_ATTR!==!1,rd=u.ALLOW_UNKNOWN_PROTOCOLS||!1,Ze=u.SAFE_FOR_TEMPLATES||!1,Dt=u.WHOLE_DOCUMENT||!1,kt=u.RETURN_DOM||!1,ti=u.RETURN_DOM_FRAGMENT||!1,id=u.RETURN_DOM_IMPORT!==!1,Cn=u.RETURN_TRUSTED_TYPE||!1,ei=u.FORCE_BODY||!1,ad=u.SANITIZE_DOM!==!1,ni=u.KEEP_CONTENT!==!1,$t=u.IN_PLACE||!1,Qr=u.ALLOWED_URI_REGEXP||Qr,Ze&&(Yr=!1),ti&&(kt=!0),et&&(D=P({},[].concat(Y(To))),x=[],et.html===!0&&(P(D,wo),P(x,Po)),et.svg===!0&&(P(D,mr),P(x,gr),P(x,cn)),et.svgFilters===!0&&(P(D,fr),P(x,gr),P(x,cn)),et.mathMl===!0&&(P(D,pr),P(x,Eo),P(x,cn))),u.ADD_TAGS&&(D===Zs&&(D=Ke(D)),P(D,u.ADD_TAGS)),u.ADD_ATTR&&(x===ed&&(x=Ke(x)),P(x,u.ADD_ATTR)),u.ADD_URI_SAFE_ATTR&&P(ri,u.ADD_URI_SAFE_ATTR),ni&&(D["#text"]=!0),Dt&&P(D,["html","head","body"]),D.table&&(P(D,["tbody"]),delete Xr.tbody),$&&$(u),tt=u)},ld=P({},["mi","mo","mn","ms","mtext"]),cd=P({},["foreignobject","desc","title","annotation-xml"]),Sn=P({},mr);P(Sn,fr),P(Sn,nm);var ai=P({},pr);P(ai,rm);var oi="http://www.w3.org/1998/Math/MathML",si="http://www.w3.org/2000/svg",Nn="http://www.w3.org/1999/xhtml",Bg=function(u){var f=Ye(u);(!f||!f.tagName)&&(f={namespaceURI:Nn,tagName:"template"});var v=Ee(u.tagName),O=Ee(f.tagName);if(u.namespaceURI===si)return f.namespaceURI===Nn?v==="svg":f.namespaceURI===oi?v==="svg"&&(O==="annotation-xml"||ld[O]):Boolean(Sn[v]);if(u.namespaceURI===oi)return f.namespaceURI===Nn?v==="math":f.namespaceURI===si?v==="math"&&cd[O]:Boolean(ai[v]);if(u.namespaceURI===Nn){if(f.namespaceURI===si&&!cd[O]||f.namespaceURI===oi&&!ld[O])return!1;var j=P({},["title","style","font","a","script"]);return!ai[v]&&(j[v]||!Sn[v])}return!1},Re=function(u){wt(e.removed,{element:u});try{u.parentNode.removeChild(u)}catch(f){try{u.outerHTML=Qs}catch(v){u.remove()}}},ud=function(u,f){try{wt(e.removed,{attribute:f.getAttributeNode(u),from:f})}catch(v){wt(e.removed,{attribute:null,from:f})}f.removeAttribute(u)},hd=function(u){var f=void 0,v=void 0;if(ei)u="<remove></remove>"+u;else{var O=vo(u,/^[\r\n\t ]+/);v=O&&O[0]}var j=ve?ve.createHTML(u):u;try{f=new b().parseFromString(j,"text/html")}catch(ee){}if(!f||!f.documentElement){f=Hr.createHTMLDocument("");var F=f,R=F.body;R.parentNode.removeChild(R.parentNode.firstElementChild),R.outerHTML=j}return u&&v&&f.body.insertBefore(r.createTextNode(v),f.body.childNodes[0]||null),xg.call(f,Dt?"html":"body")[0]},md=function(u){return Lg.call(u.ownerDocument||u,u,l.SHOW_ELEMENT|l.SHOW_COMMENT|l.SHOW_TEXT,function(){return l.FILTER_ACCEPT},!1)},Wg=function(u){return u instanceof m||u instanceof g?!1:typeof u.nodeName!="string"||typeof u.textContent!="string"||typeof u.removeChild!="function"||!(u.attributes instanceof h)||typeof u.removeAttribute!="function"||typeof u.setAttribute!="function"||typeof u.namespaceURI!="string"||typeof u.insertBefore!="function"},Lt=function(u){return(typeof o=="undefined"?"undefined":Tt(o))==="object"?u instanceof o:u&&(typeof u=="undefined"?"undefined":Tt(u))==="object"&&typeof u.nodeType=="number"&&typeof u.nodeName=="string"},se=function(u,f,v){!Z[u]||Yh(Z[u],function(O){O.call(e,f,v,tt)})},fd=function(u){var f=void 0;if(se("beforeSanitizeElements",u,null),Wg(u)||vo(u.nodeName,/[\u0080-\uFFFF]/))return Re(u),!0;var v=Ee(u.nodeName);if(se("uponSanitizeElement",u,{tagName:v,allowedTags:D}),!Lt(u.firstElementChild)&&(!Lt(u.content)||!Lt(u.content.firstElementChild))&&fe(/<[/\w]/g,u.innerHTML)&&fe(/<[/\w]/g,u.textContent))return Re(u),!0;if(!D[v]||Xr[v]){if(ni&&!Gg[v])for(var O=Ye(u),j=_n(u),F=j.length,R=F-1;R>=0;--R)O.insertBefore(_(j[R],!0),I(u));return Re(u),!0}return u instanceof s&&!Bg(u)||(v==="noscript"||v==="noembed")&&fe(/<\/no(script|embed)/i,u.innerHTML)?(Re(u),!0):(Ze&&u.nodeType===3&&(f=u.textContent,f=me(f,Jr," "),f=me(f,qr," "),u.textContent!==f&&(wt(e.removed,{element:u.cloneNode()}),u.textContent=f)),se("afterSanitizeElements",u,null),!1)},pd=function(u,f,v){if(ad&&(f==="id"||f==="name")&&(v in r||v in Vg))return!1;if(!(Yr&&fe(Ug,f))){if(!(nd&&fe(Kg,f))){if(!x[f]||td[f])return!1;if(!ri[f]){if(!fe(Qr,me(v,Ys,""))){if(!((f==="src"||f==="xlink:href"||f==="href")&&u!=="script"&&Zh(v,"data:")===0&&od[u])){if(!(rd&&!fe(zg,me(v,Ys,"")))){if(v)return!1}}}}}}return!0},gd=function(u){var f=void 0,v=void 0,O=void 0,j=void 0;se("beforeSanitizeAttributes",u,null);var F=u.attributes;if(!!F){var R={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:x};for(j=F.length;j--;){f=F[j];var ee=f,xt=ee.name,bd=ee.namespaceURI;if(v=em(f.value),O=Ee(xt),R.attrName=O,R.attrValue=v,R.keepAttr=!0,R.forceKeepAttr=void 0,se("uponSanitizeAttribute",u,R),v=R.attrValue,!R.forceKeepAttr&&(ud(xt,u),!!R.keepAttr)){if(fe(/\/>/i,v)){ud(xt,u);continue}Ze&&(v=me(v,Jr," "),v=me(v,qr," "));var Jg=u.nodeName.toLowerCase();if(!!pd(Jg,O,v))try{bd?u.setAttributeNS(bd,xt,v):u.setAttribute(xt,v),bo(e.removed)}catch(cb){}}}se("afterSanitizeAttributes",u,null)}},Hg=function y(u){var f=void 0,v=md(u);for(se("beforeSanitizeShadowDOM",u,null);f=v.nextNode();)se("uponSanitizeShadowNode",f,null),!fd(f)&&(f.content instanceof i&&y(f.content),gd(f));se("afterSanitizeShadowDOM",u,null)};return e.sanitize=function(y,u){var f=void 0,v=void 0,O=void 0,j=void 0,F=void 0;if(y||(y="<!-->"),typeof y!="string"&&!Lt(y)){if(typeof y.toString!="function")throw yo("toString is not a function");if(y=y.toString(),typeof y!="string")throw yo("dirty is not a string, aborting")}if(!e.isSupported){if(Tt(t.toStaticHTML)==="object"||typeof t.toStaticHTML=="function"){if(typeof y=="string")return t.toStaticHTML(y);if(Lt(y))return t.toStaticHTML(y.outerHTML)}return y}if(Zr||ii(u),e.removed=[],typeof y=="string"&&($t=!1),!$t)if(y instanceof o)f=hd("<!---->"),v=f.ownerDocument.importNode(y,!0),v.nodeType===1&&v.nodeName==="BODY"||v.nodeName==="HTML"?f=v:f.appendChild(v);else{if(!kt&&!Ze&&!Dt&&y.indexOf("<")===-1)return ve&&Cn?ve.createHTML(y):y;if(f=hd(y),!f)return kt?null:Qs}f&&ei&&Re(f.firstChild);for(var R=md($t?y:f);O=R.nextNode();)O.nodeType===3&&O===j||fd(O)||(O.content instanceof i&&Hg(O.content),gd(O),j=O);if(j=null,$t)return y;if(kt){if(ti)for(F=jg.call(f.ownerDocument);f.firstChild;)F.appendChild(f.firstChild);else F=f;return id&&(F=Fg.call(n,F,!0)),F}var ee=Dt?f.outerHTML:f.innerHTML;return Ze&&(ee=me(ee,Jr," "),ee=me(ee,qr," ")),ve&&Cn?ve.createHTML(ee):ee},e.setConfig=function(y){ii(y),Zr=!0},e.clearConfig=function(){tt=null,Zr=!1},e.isValidAttribute=function(y,u,f){tt||ii({});var v=Ee(y),O=Ee(u);return pd(v,O,f)},e.addHook=function(y,u){typeof u=="function"&&(Z[y]=Z[y]||[],wt(Z[y],u))},e.removeHook=function(y){Z[y]&&bo(Z[y])},e.removeHooks=function(y){Z[y]&&(Z[y]=[])},e.removeAllHooks=function(){Z={}},e}var mm=_o(),fm=p.registerComponent(mm,{tmpl:te,sel:"lightning-purifyLib"});function pm(t,e){return fm.sanitize(t,e)}const gm=Object.freeze({ALLOWED_TAGS:[],ALLOWED_ATTR:[]});function bm(t){return pm(t,gm)}class br extends p.LightningElement{constructor(...e){super(...e);this._scriptDataAttributes={},this._catalogObjectId=void 0,this._catalogObjectType=void 0,this._catalogObjectAttributes=void 0,this._relatedCatalogObjects=void 0,this._customObject=void 0}set scriptDataAttributes(e){this._scriptDataAttributes=e}get scriptDataAttributes(){return this._scriptDataAttributes}set catalogObjectId(e){this._catalogObjectId=e}get catalogObjectId(){return this._catalogObjectId}set catalogObjectType(e){this._catalogObjectType=e}get catalogObjectType(){return this._catalogObjectType}set catalogObjectAttributes(e){this._catalogObjectAttributes=e}get catalogObjectAttributes(){return this._catalogObjectAttributes}set relatedCatalogObjects(e){this._relatedCatalogObjects=e}get relatedCatalogObjects(){return this._relatedCatalogObjects}set customObject(e){this._customObject=e}get customObject(){return this._customObject}get scriptElement(){return this.scriptDataAttributes?.providerType&&(this.isCustomObject()||this.isCatalogObject())?`<script type="application/json" data-provider-type=${this.scriptDataAttributes?.providerType}>${bm(this.scriptElementContent())}</script>`:""}scriptElementContent(){const e=this.isCustomObject()?this.customObject:this.buildCatalogObject();return JSON.stringify(e)}isCustomObject(){return!!this.customObject}isCatalogObject(){return!!(this.catalogObjectId&&this.catalogObjectType)}buildCatalogObject(){return{id:this.catalogObjectId,type:this.catalogObjectType,attributes:this.catalogObjectAttributes,relatedCatalogObjects:this.relatedCatalogObjects}}}br.renderMode="light",p.registerDecorators(br,{publicProps:{scriptDataAttributes:{config:3},catalogObjectId:{config:3},catalogObjectType:{config:3},catalogObjectAttributes:{config:3},relatedCatalogObjects:{config:3},customObject:{config:3},scriptElement:{config:1}},fields:["_scriptDataAttributes","_catalogObjectId","_catalogObjectType","_catalogObjectAttributes","_relatedCatalogObjects","_customObject"]});var vm=p.registerComponent(br,{tmpl:Bh,sel:"experience-dataLayerObject"});const ym=[];function Pt(t,e,n,r){return ym}var un=p.registerTemplate(Pt);Pt.stylesheets=[],Pt.renderMode="light",Pt.stylesheetToken="webruntime-innerApp_innerApp",p.freezeTemplate(Pt);function wm(t){return Ie.load(t,"webruntime/app/v/1")}function Oo(){const t=globalThis.navigator?.userAgent;return t&&(Ad.default&&t.includes(gi.PUBLISHER)||t.includes(gi.PLAYGROUND))}function Tm(){Pm(),on(Em)}function Pm(){document.addEventListener("notify-client-module",_m)}function Em(t){Om("navigationcompleted",{routeResult:t})}function _m({detail:t}){const{action:e,data:n}=t;switch(e){case"navigate":an(n.routeObj,n.replaceState);break;default:Ui(`No such action "${e}" exists.`);break}}function Om(t,e){document.dispatchEvent(new CustomEvent("notify-mobile-module",{bubbles:!0,composed:!0,detail:{action:t,data:e}}))}async function Cm(){if(!Oo())return;const{hybridAppManager:t}=await Ie.load("mobileruntime/hybridAppManager/v/1");t(),Tm()}async function Sm(){if(!In.default)return;const{start:t}=await Ie.load("webruntimedesign/designmode/v/1");/interactive|complete/.test(document.readyState)?t():document.addEventListener("DOMContentLoaded",t,!1)}function _e(t,e){}const Co=["activeDescendant","atomic","autoComplete","busy","checked","colCount","colIndex","colSpan","controls","current","describedAt","describedBy","description","details","disabled","dropEffect","errorMessage","expanded","flowTo","grabbed","hasPopup","hidden","invalid","keyShortcuts","label","labelledBy","level","live","modal","multiLine","multiSelectable","orientation","owns","placeholder","posInSet","pressed","readOnly","relevant","required","roleDescription","rowCount","rowIndex","rowSpan","selected","setSize","sort","valueMax","valueMin","valueNow","valueText"],So=(t,e="default")=>{if(!t||t.length===0)throw new Error("List of aria properties is required");const n={};return e==="default"?(t.forEach(r=>{const i=r.toUpperCase();n[i]||(n[i]=`aria-${r.toLowerCase()}`)}),n):(t.forEach(r=>{const i=`aria-${r.toLowerCase()}`,a=`aria${r.charAt(0).toUpperCase()}${r.slice(1)}`;n[i]||(n[i]=a)}),n)};So(Co),So(Co,"cc");const ze=typeof window!="undefined";function No(){function t(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()}ze&&Nm(navigator),ze&&Am(navigator),ze&&Mm(navigator);function Nm(t){return/Trident.*rv[ :]*11\./.test(t.userAgent)}function Am(t){return/Chrome/.test(t.userAgent)&&/Google Inc/.test(t.vendor)}function Mm(t){return/^((?!chrome|android).)*safari/i.test(t.userAgent)}function Ao(t,e={}){const{fallbackValue:n="",validValues:r,toLowerCase:i=!0}=e;let a=typeof t=="string"&&t.trim()||"";return a=i?a.toLowerCase():a,r&&r.indexOf(a)===-1&&(a=n),a}function Rm(t,e,n){t.tagName.match(/^LIGHTNING/i)?(e=e.replace(/-\w/g,r=>r[1].toUpperCase()),t[e]=n||null):n?t.setAttribute(e,n):t.removeAttribute(e)}function Im(t,e){if(!t)return;Object.keys(e).forEach(r=>{Rm(t,r,e[r])})}const Mo=9e3,Ro=100,Dm=Mo+Ro;function km(){const e=typeof window!="undefined"?(window.getComputedStyle(document.documentElement)||document.documentElement.style).getPropertyValue("--lwc-zIndexModal"):Mo,n=parseInt(e,10);return isNaN(n)?Dm:n+Ro}function $m(t){return t&&t.template&&t.template.constructor?!!String(t.template.constructor).match(/\[native code\]/):!1}function Lm(t,e,n){const r=n||{};let i=r.leading,a;return function(){const s=Array.prototype.slice.apply(arguments);i&&(t.apply(this,s),i=!1),clearTimeout(a),a=setTimeout(function(){t.apply(this,s),i=r.leading},e)}}var xm=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},jm=function(){function t(e,n){for(var r=0;r<n.length;r++){var i=n[r];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),vr=Object.freeze({DATA:Symbol("data"),STRING:Symbol("string"),NEWLINE:Symbol("newline"),GROUP:Symbol("group")});(function(){function t(e,n,r){xm(this,t),this.type=e,this.string=n,this.pattern=r}return jm(t,null,[{key:"string",value:function(n){return new t(vr.STRING,n)}},{key:"data",value:function(n){return new t(vr.DATA,void 0,n)}},{key:"newLine",value:function(){return new t(vr.NEWLINE)}}]),t})();var Ge={SALUTATION:Symbol("Salutation"),FIRST:Symbol("First Name"),MIDDLE:Symbol("Middle Name"),LAST:Symbol("Last Name"),SUFFIX:Symbol("Suffix"),INFORMAL:Symbol("Informal Name")},Fm=function(){function t(e,n){for(var r=0;r<n.length;r++){var i=n[r];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}();function hn(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var Um=function t(e){hn(this,t),this.parts=Object.freeze(e),Object.freeze(this)},Ve=function t(e){hn(this,t),this.field=e,this.type="field",Object.freeze(this)},Io=function t(e){hn(this,t),this.type="text",this.text=e,Object.freeze(this)},Be=Object.freeze({SALUTATION:new Ve(Ge.SALUTATION),FIRST:new Ve(Ge.FIRST),MIDDLE:new Ve(Ge.MIDDLE),LAST:new Ve(Ge.LAST),SUFFIX:new Ve(Ge.SUFFIX),INFORMAL:new Ve(Ge.INFORMAL)}),Km=function(){function t(){hn(this,t)}return Fm(t,[{key:"parse",value:function(n){for(var r=[],i="",a=0;a<n.length;a=a+1)if(n[a]==="%"){if(a=a+1,i.length>0&&(r.push(Object.freeze(new Io(i))),i=""),a>=n.length)throw new Error("Unexpected end of format. Symbol at "+(a-1)+" should be followed by a valid field code");var o=n[a];switch(o){case"S":r.push(Be.SALUTATION);break;case"F":r.push(Be.FIRST);break;case"M":r.push(Be.MIDDLE);break;case"L":r.push(Be.LAST);break;case"X":r.push(Be.SUFFIX);break;case"I":r.push(Be.INFORMAL);break}}else i+=n[a];return i.length>0&&r.push(new Io(i)),new Um(r)}}]),t}();new Km,p.registerComponent(JSON.parse('{"adlm":"\u{1E950}\u{1E951}\u{1E952}\u{1E953}\u{1E954}\u{1E955}\u{1E956}\u{1E957}\u{1E958}\u{1E959}","ahom":"\u{11730}\u{11731}\u{11732}\u{11733}\u{11734}\u{11735}\u{11736}\u{11737}\u{11738}\u{11739}","arab":"\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669","arabext":"\u06F0\u06F1\u06F2\u06F3\u06F4\u06F5\u06F6\u06F7\u06F8\u06F9","bali":"\u1B50\u1B51\u1B52\u1B53\u1B54\u1B55\u1B56\u1B57\u1B58\u1B59","beng":"\u09E6\u09E7\u09E8\u09E9\u09EA\u09EB\u09EC\u09ED\u09EE\u09EF","bhks":"\u{11C50}\u{11C51}\u{11C52}\u{11C53}\u{11C54}\u{11C55}\u{11C56}\u{11C57}\u{11C58}\u{11C59}","brah":"\u{11066}\u{11067}\u{11068}\u{11069}\u{1106A}\u{1106B}\u{1106C}\u{1106D}\u{1106E}\u{1106F}","cakm":"\u{11136}\u{11137}\u{11138}\u{11139}\u{1113A}\u{1113B}\u{1113C}\u{1113D}\u{1113E}\u{1113F}","cham":"\uAA50\uAA51\uAA52\uAA53\uAA54\uAA55\uAA56\uAA57\uAA58\uAA59","deva":"\u0966\u0967\u0968\u0969\u096A\u096B\u096C\u096D\u096E\u096F","fullwide":"\uFF10\uFF11\uFF12\uFF13\uFF14\uFF15\uFF16\uFF17\uFF18\uFF19","gong":"\u{11DA0}\u{11DA1}\u{11DA2}\u{11DA3}\u{11DA4}\u{11DA5}\u{11DA6}\u{11DA7}\u{11DA8}\u{11DA9}","gonm":"\u{11D50}\u{11D51}\u{11D52}\u{11D53}\u{11D54}\u{11D55}\u{11D56}\u{11D57}\u{11D58}\u{11D59}","gujr":"\u0AE6\u0AE7\u0AE8\u0AE9\u0AEA\u0AEB\u0AEC\u0AED\u0AEE\u0AEF","guru":"\u0A66\u0A67\u0A68\u0A69\u0A6A\u0A6B\u0A6C\u0A6D\u0A6E\u0A6F","hanidec":"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","hmng":"\u{16B50}\u{16B51}\u{16B52}\u{16B53}\u{16B54}\u{16B55}\u{16B56}\u{16B57}\u{16B58}\u{16B59}","hmnp":"\u{1E140}\u{1E141}\u{1E142}\u{1E143}\u{1E144}\u{1E145}\u{1E146}\u{1E147}\u{1E148}\u{1E149}","java":"\uA9D0\uA9D1\uA9D2\uA9D3\uA9D4\uA9D5\uA9D6\uA9D7\uA9D8\uA9D9","kali":"\uA900\uA901\uA902\uA903\uA904\uA905\uA906\uA907\uA908\uA909","khmr":"\u17E0\u17E1\u17E2\u17E3\u17E4\u17E5\u17E6\u17E7\u17E8\u17E9","knda":"\u0CE6\u0CE7\u0CE8\u0CE9\u0CEA\u0CEB\u0CEC\u0CED\u0CEE\u0CEF","lana":"\u1A80\u1A81\u1A82\u1A83\u1A84\u1A85\u1A86\u1A87\u1A88\u1A89","lanatham":"\u1A90\u1A91\u1A92\u1A93\u1A94\u1A95\u1A96\u1A97\u1A98\u1A99","laoo":"\u0ED0\u0ED1\u0ED2\u0ED3\u0ED4\u0ED5\u0ED6\u0ED7\u0ED8\u0ED9","latn":"0123456789","lepc":"\u1C40\u1C41\u1C42\u1C43\u1C44\u1C45\u1C46\u1C47\u1C48\u1C49","limb":"\u1946\u1947\u1948\u1949\u194A\u194B\u194C\u194D\u194E\u194F","mathbold":"\u{1D7CE}\u{1D7CF}\u{1D7D0}\u{1D7D1}\u{1D7D2}\u{1D7D3}\u{1D7D4}\u{1D7D5}\u{1D7D6}\u{1D7D7}","mathdbl":"\u{1D7D8}\u{1D7D9}\u{1D7DA}\u{1D7DB}\u{1D7DC}\u{1D7DD}\u{1D7DE}\u{1D7DF}\u{1D7E0}\u{1D7E1}","mathmono":"\u{1D7F6}\u{1D7F7}\u{1D7F8}\u{1D7F9}\u{1D7FA}\u{1D7FB}\u{1D7FC}\u{1D7FD}\u{1D7FE}\u{1D7FF}","mathsanb":"\u{1D7EC}\u{1D7ED}\u{1D7EE}\u{1D7EF}\u{1D7F0}\u{1D7F1}\u{1D7F2}\u{1D7F3}\u{1D7F4}\u{1D7F5}","mathsans":"\u{1D7E2}\u{1D7E3}\u{1D7E4}\u{1D7E5}\u{1D7E6}\u{1D7E7}\u{1D7E8}\u{1D7E9}\u{1D7EA}\u{1D7EB}","mlym":"\u0D66\u0D67\u0D68\u0D69\u0D6A\u0D6B\u0D6C\u0D6D\u0D6E\u0D6F","modi":"\u{11650}\u{11651}\u{11652}\u{11653}\u{11654}\u{11655}\u{11656}\u{11657}\u{11658}\u{11659}","mong":"\u1810\u1811\u1812\u1813\u1814\u1815\u1816\u1817\u1818\u1819","mroo":"\u{16A60}\u{16A61}\u{16A62}\u{16A63}\u{16A64}\u{16A65}\u{16A66}\u{16A67}\u{16A68}\u{16A69}","mtei":"\uABF0\uABF1\uABF2\uABF3\uABF4\uABF5\uABF6\uABF7\uABF8\uABF9","mymr":"\u1040\u1041\u1042\u1043\u1044\u1045\u1046\u1047\u1048\u1049","mymrshan":"\u1090\u1091\u1092\u1093\u1094\u1095\u1096\u1097\u1098\u1099","mymrtlng":"\uA9F0\uA9F1\uA9F2\uA9F3\uA9F4\uA9F5\uA9F6\uA9F7\uA9F8\uA9F9","newa":"\u{11450}\u{11451}\u{11452}\u{11453}\u{11454}\u{11455}\u{11456}\u{11457}\u{11458}\u{11459}","nkoo":"\u07C0\u07C1\u07C2\u07C3\u07C4\u07C5\u07C6\u07C7\u07C8\u07C9","olck":"\u1C50\u1C51\u1C52\u1C53\u1C54\u1C55\u1C56\u1C57\u1C58\u1C59","orya":"\u0B66\u0B67\u0B68\u0B69\u0B6A\u0B6B\u0B6C\u0B6D\u0B6E\u0B6F","osma":"\u{104A0}\u{104A1}\u{104A2}\u{104A3}\u{104A4}\u{104A5}\u{104A6}\u{104A7}\u{104A8}\u{104A9}","rohg":"\u{10D30}\u{10D31}\u{10D32}\u{10D33}\u{10D34}\u{10D35}\u{10D36}\u{10D37}\u{10D38}\u{10D39}","saur":"\uA8D0\uA8D1\uA8D2\uA8D3\uA8D4\uA8D5\uA8D6\uA8D7\uA8D8\uA8D9","shrd":"\u{111D0}\u{111D1}\u{111D2}\u{111D3}\u{111D4}\u{111D5}\u{111D6}\u{111D7}\u{111D8}\u{111D9}","sind":"\u{112F0}\u{112F1}\u{112F2}\u{112F3}\u{112F4}\u{112F5}\u{112F6}\u{112F7}\u{112F8}\u{112F9}","sinh":"\u0DE6\u0DE7\u0DE8\u0DE9\u0DEA\u0DEB\u0DEC\u0DED\u0DEE\u0DEF","sora":"\u{110F0}\u{110F1}\u{110F2}\u{110F3}\u{110F4}\u{110F5}\u{110F6}\u{110F7}\u{110F8}\u{110F9}","sund":"\u1BB0\u1BB1\u1BB2\u1BB3\u1BB4\u1BB5\u1BB6\u1BB7\u1BB8\u1BB9","takr":"\u{116C0}\u{116C1}\u{116C2}\u{116C3}\u{116C4}\u{116C5}\u{116C6}\u{116C7}\u{116C8}\u{116C9}","talu":"\u19D0\u19D1\u19D2\u19D3\u19D4\u19D5\u19D6\u19D7\u19D8\u19D9","tamldec":"\u0BE6\u0BE7\u0BE8\u0BE9\u0BEA\u0BEB\u0BEC\u0BED\u0BEE\u0BEF","telu":"\u0C66\u0C67\u0C68\u0C69\u0C6A\u0C6B\u0C6C\u0C6D\u0C6E\u0C6F","thai":"\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59","tibt":"\u0F20\u0F21\u0F22\u0F23\u0F24\u0F25\u0F26\u0F27\u0F28\u0F29","tirh":"\u{114D0}\u{114D1}\u{114D2}\u{114D3}\u{114D4}\u{114D5}\u{114D6}\u{114D7}\u{114D8}\u{114D9}","vaii":"\uA620\uA621\uA622\uA623\uA624\uA625\uA626\uA627\uA628\uA629","wara":"\u{118E0}\u{118E1}\u{118E2}\u{118E3}\u{118E4}\u{118E5}\u{118E6}\u{118E7}\u{118E8}\u{118E9}","wcho":"\u{1E2F0}\u{1E2F1}\u{1E2F2}\u{1E2F3}\u{1E2F4}\u{1E2F5}\u{1E2F6}\u{1E2F7}\u{1E2F8}\u{1E2F9}"}'),{tmpl:te,sel:"lwc-components-lightning-scopedImports"}),p.registerComponent(JSON.parse('{"buddhist":{"calendarSystem":"solar","eras":{"0":{"_start":"-542-01-01"}}},"ethiopic-amete-alem":{"eras":{"0":{"_end":"-5492-08-29"}}},"generic":{},"gregorian":{"calendarSystem":"solar","eras":{"0":{"_end":"0-12-31"},"1":{"_start":"1-01-01"}}},"indian":{"eras":{"0":{"_start":"79-01-01"}}},"japanese":{"calendarSystem":"solar","eras":{"0":{"_start":"645-6-19"},"1":{"_start":"650-2-15"},"2":{"_start":"672-1-1"},"3":{"_start":"686-7-20"},"4":{"_start":"701-3-21"},"5":{"_start":"704-5-10"},"6":{"_start":"708-1-11"},"7":{"_start":"715-9-2"},"8":{"_start":"717-11-17"},"9":{"_start":"724-2-4"},"10":{"_start":"729-8-5"},"11":{"_start":"749-4-14"},"12":{"_start":"749-7-2"},"13":{"_start":"757-8-18"},"14":{"_start":"765-1-7"},"15":{"_start":"767-8-16"},"16":{"_start":"770-10-1"},"17":{"_start":"781-1-1"},"18":{"_start":"782-8-19"},"19":{"_start":"806-5-18"},"20":{"_start":"810-9-19"},"21":{"_start":"824-1-5"},"22":{"_start":"834-1-3"},"23":{"_start":"848-6-13"},"24":{"_start":"851-4-28"},"25":{"_start":"854-11-30"},"26":{"_start":"857-2-21"},"27":{"_start":"859-4-15"},"28":{"_start":"877-4-16"},"29":{"_start":"885-2-21"},"30":{"_start":"889-4-27"},"31":{"_start":"898-4-26"},"32":{"_start":"901-7-15"},"33":{"_start":"923-4-11"},"34":{"_start":"931-4-26"},"35":{"_start":"938-5-22"},"36":{"_start":"947-4-22"},"37":{"_start":"957-10-27"},"38":{"_start":"961-2-16"},"39":{"_start":"964-7-10"},"40":{"_start":"968-8-13"},"41":{"_start":"970-3-25"},"42":{"_start":"973-12-20"},"43":{"_start":"976-7-13"},"44":{"_start":"978-11-29"},"45":{"_start":"983-4-15"},"46":{"_start":"985-4-27"},"47":{"_start":"987-4-5"},"48":{"_start":"989-8-8"},"49":{"_start":"990-11-7"},"50":{"_start":"995-2-22"},"51":{"_start":"999-1-13"},"52":{"_start":"1004-7-20"},"53":{"_start":"1012-12-25"},"54":{"_start":"1017-4-23"},"55":{"_start":"1021-2-2"},"56":{"_start":"1024-7-13"},"57":{"_start":"1028-7-25"},"58":{"_start":"1037-4-21"},"59":{"_start":"1040-11-10"},"60":{"_start":"1044-11-24"},"61":{"_start":"1046-4-14"},"62":{"_start":"1053-1-11"},"63":{"_start":"1058-8-29"},"64":{"_start":"1065-8-2"},"65":{"_start":"1069-4-13"},"66":{"_start":"1074-8-23"},"67":{"_start":"1077-11-17"},"68":{"_start":"1081-2-10"},"69":{"_start":"1084-2-7"},"70":{"_start":"1087-4-7"},"71":{"_start":"1094-12-15"},"72":{"_start":"1096-12-17"},"73":{"_start":"1097-11-21"},"74":{"_start":"1099-8-28"},"75":{"_start":"1104-2-10"},"76":{"_start":"1106-4-9"},"77":{"_start":"1108-8-3"},"78":{"_start":"1110-7-13"},"79":{"_start":"1113-7-13"},"80":{"_start":"1118-4-3"},"81":{"_start":"1120-4-10"},"82":{"_start":"1124-4-3"},"83":{"_start":"1126-1-22"},"84":{"_start":"1131-1-29"},"85":{"_start":"1132-8-11"},"86":{"_start":"1135-4-27"},"87":{"_start":"1141-7-10"},"88":{"_start":"1142-4-28"},"89":{"_start":"1144-2-23"},"90":{"_start":"1145-7-22"},"91":{"_start":"1151-1-26"},"92":{"_start":"1154-10-28"},"93":{"_start":"1156-4-27"},"94":{"_start":"1159-4-20"},"95":{"_start":"1160-1-10"},"96":{"_start":"1161-9-4"},"97":{"_start":"1163-3-29"},"98":{"_start":"1165-6-5"},"99":{"_start":"1166-8-27"},"100":{"_start":"1169-4-8"},"101":{"_start":"1171-4-21"},"102":{"_start":"1175-7-28"},"103":{"_start":"1177-8-4"},"104":{"_start":"1181-7-14"},"105":{"_start":"1182-5-27"},"106":{"_start":"1184-4-16"},"107":{"_start":"1185-8-14"},"108":{"_start":"1190-4-11"},"109":{"_start":"1199-4-27"},"110":{"_start":"1201-2-13"},"111":{"_start":"1204-2-20"},"112":{"_start":"1206-4-27"},"113":{"_start":"1207-10-25"},"114":{"_start":"1211-3-9"},"115":{"_start":"1213-12-6"},"116":{"_start":"1219-4-12"},"117":{"_start":"1222-4-13"},"118":{"_start":"1224-11-20"},"119":{"_start":"1225-4-20"},"120":{"_start":"1227-12-10"},"121":{"_start":"1229-3-5"},"122":{"_start":"1232-4-2"},"123":{"_start":"1233-4-15"},"124":{"_start":"1234-11-5"},"125":{"_start":"1235-9-19"},"126":{"_start":"1238-11-23"},"127":{"_start":"1239-2-7"},"128":{"_start":"1240-7-16"},"129":{"_start":"1243-2-26"},"130":{"_start":"1247-2-28"},"131":{"_start":"1249-3-18"},"132":{"_start":"1256-10-5"},"133":{"_start":"1257-3-14"},"134":{"_start":"1259-3-26"},"135":{"_start":"1260-4-13"},"136":{"_start":"1261-2-20"},"137":{"_start":"1264-2-28"},"138":{"_start":"1275-4-25"},"139":{"_start":"1278-2-29"},"140":{"_start":"1288-4-28"},"141":{"_start":"1293-8-5"},"142":{"_start":"1299-4-25"},"143":{"_start":"1302-11-21"},"144":{"_start":"1303-8-5"},"145":{"_start":"1306-12-14"},"146":{"_start":"1308-10-9"},"147":{"_start":"1311-4-28"},"148":{"_start":"1312-3-20"},"149":{"_start":"1317-2-3"},"150":{"_start":"1319-4-28"},"151":{"_start":"1321-2-23"},"152":{"_start":"1324-12-9"},"153":{"_start":"1326-4-26"},"154":{"_start":"1329-8-29"},"155":{"_start":"1331-8-9"},"156":{"_start":"1334-1-29"},"157":{"_start":"1336-2-29"},"158":{"_start":"1340-4-28"},"159":{"_start":"1346-12-8"},"160":{"_start":"1370-7-24"},"161":{"_start":"1372-4-1"},"162":{"_start":"1375-5-27"},"163":{"_start":"1379-3-22"},"164":{"_start":"1381-2-10"},"165":{"_start":"1384-4-28"},"166":{"_start":"1387-8-22"},"167":{"_start":"1387-8-23"},"168":{"_start":"1389-2-9"},"169":{"_start":"1390-3-26"},"170":{"_start":"1394-7-5"},"171":{"_start":"1428-4-27"},"172":{"_start":"1429-9-5"},"173":{"_start":"1441-2-17"},"174":{"_start":"1444-2-5"},"175":{"_start":"1449-7-28"},"176":{"_start":"1452-7-25"},"177":{"_start":"1455-7-25"},"178":{"_start":"1457-9-28"},"179":{"_start":"1460-12-21"},"180":{"_start":"1466-2-28"},"181":{"_start":"1467-3-3"},"182":{"_start":"1469-4-28"},"183":{"_start":"1487-7-29"},"184":{"_start":"1489-8-21"},"185":{"_start":"1492-7-19"},"186":{"_start":"1501-2-29"},"187":{"_start":"1504-2-30"},"188":{"_start":"1521-8-23"},"189":{"_start":"1528-8-20"},"190":{"_start":"1532-7-29"},"191":{"_start":"1555-10-23"},"192":{"_start":"1558-2-28"},"193":{"_start":"1570-4-23"},"194":{"_start":"1573-7-28"},"195":{"_start":"1592-12-8"},"196":{"_start":"1596-10-27"},"197":{"_start":"1615-7-13"},"198":{"_start":"1624-2-30"},"199":{"_start":"1644-12-16"},"200":{"_start":"1648-2-15"},"201":{"_start":"1652-9-18"},"202":{"_start":"1655-4-13"},"203":{"_start":"1658-7-23"},"204":{"_start":"1661-4-25"},"205":{"_start":"1673-9-21"},"206":{"_start":"1681-9-29"},"207":{"_start":"1684-2-21"},"208":{"_start":"1688-9-30"},"209":{"_start":"1704-3-13"},"210":{"_start":"1711-4-25"},"211":{"_start":"1716-6-22"},"212":{"_start":"1736-4-28"},"213":{"_start":"1741-2-27"},"214":{"_start":"1744-2-21"},"215":{"_start":"1748-7-12"},"216":{"_start":"1751-10-27"},"217":{"_start":"1764-6-2"},"218":{"_start":"1772-11-16"},"219":{"_start":"1781-4-2"},"220":{"_start":"1789-1-25"},"221":{"_start":"1801-2-5"},"222":{"_start":"1804-2-11"},"223":{"_start":"1818-4-22"},"224":{"_start":"1830-12-10"},"225":{"_start":"1844-12-2"},"226":{"_start":"1848-2-28"},"227":{"_start":"1854-11-27"},"228":{"_start":"1860-3-18"},"229":{"_start":"1861-2-19"},"230":{"_start":"1864-2-20"},"231":{"_start":"1865-4-7"},"232":{"_start":"1868-9-8"},"233":{"_start":"1912-7-30"},"234":{"_start":"1926-12-25"},"235":{"_start":"1989-1-8"},"236":{"_start":"2019-5-1"}}},"persian":{"calendarSystem":"solar","eras":{"0":{"_start":"622-01-01"}}},"roc":{"eras":{"0":{"_end":"1911-12-31"},"1":{"_start":"1912-01-01"}}}}'),{tmpl:te,sel:"lwc-components-lightning-scopedImports"}),p.registerComponent(JSON.parse('{"buddhist":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"BE"},"eraAbbr":{"0":"BE"},"eraNarrow":{"0":"BE"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"ethiopic-amete-alem":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"ERA0"},"eraAbbr":{"0":"ERA0"},"eraNarrow":{"0":"ERA0"}},"months":{"format":{"abbreviated":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12","13":"13"},"wide":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"}},"stand-alone":{"abbreviated":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12","13":"13"},"wide":{"1":"Meskerem","2":"Tekemt","3":"Hedar","4":"Tahsas","5":"Ter","6":"Yekatit","7":"Megabit","8":"Miazia","9":"Genbot","10":"Sene","11":"Hamle","12":"Nehasse","13":"Pagumen"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"generic":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"ERA0","1":"ERA1"},"eraAbbr":{"0":"ERA0","1":"ERA1"},"eraNarrow":{"0":"ERA0","1":"ERA1"}},"months":{"format":{"abbreviated":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"}},"stand-alone":{"abbreviated":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"gregorian":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Before Christ","1":"Anno Domini","0-alt-variant":"Before Common Era","1-alt-variant":"Common Era"},"eraAbbr":{"0":"BC","1":"AD","0-alt-variant":"BCE","1-alt-variant":"CE"},"eraNarrow":{"0":"B","1":"A","0-alt-variant":"BCE","1-alt-variant":"CE"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"indian":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Saka"},"eraAbbr":{"0":"Saka"},"eraNarrow":{"0":"Saka"}},"months":{"format":{"abbreviated":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"}},"stand-alone":{"abbreviated":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Chaitra","2":"Vaisakha","3":"Jyaistha","4":"Asadha","5":"Sravana","6":"Bhadra","7":"Asvina","8":"Kartika","9":"Agrahayana","10":"Pausa","11":"Magha","12":"Phalguna"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"japanese":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Taika (645\u2013650)","1":"Hakuchi (650\u2013671)","2":"Hakuh\u014D (672\u2013686)","3":"Shuch\u014D (686\u2013701)","4":"Taih\u014D (701\u2013704)","5":"Keiun (704\u2013708)","6":"Wad\u014D (708\u2013715)","7":"Reiki (715\u2013717)","8":"Y\u014Dr\u014D (717\u2013724)","9":"Jinki (724\u2013729)","10":"Tenpy\u014D (729\u2013749)","11":"Tenpy\u014D-kamp\u014D (749\u2013749)","12":"Tenpy\u014D-sh\u014Dh\u014D (749\u2013757)","13":"Tenpy\u014D-h\u014Dji (757\u2013765)","14":"Tenpy\u014D-jingo (765\u2013767)","15":"Jingo-keiun (767\u2013770)","16":"H\u014Dki (770\u2013780)","17":"Ten-\u014D (781\u2013782)","18":"Enryaku (782\u2013806)","19":"Daid\u014D (806\u2013810)","20":"K\u014Dnin (810\u2013824)","21":"Tench\u014D (824\u2013834)","22":"J\u014Dwa (834\u2013848)","23":"Kaj\u014D (848\u2013851)","24":"Ninju (851\u2013854)","25":"Saik\u014D (854\u2013857)","26":"Ten-an (857\u2013859)","27":"J\u014Dgan (859\u2013877)","28":"Gangy\u014D (877\u2013885)","29":"Ninna (885\u2013889)","30":"Kanpy\u014D (889\u2013898)","31":"Sh\u014Dtai (898\u2013901)","32":"Engi (901\u2013923)","33":"Ench\u014D (923\u2013931)","34":"J\u014Dhei (931\u2013938)","35":"Tengy\u014D (938\u2013947)","36":"Tenryaku (947\u2013957)","37":"Tentoku (957\u2013961)","38":"\u014Cwa (961\u2013964)","39":"K\u014Dh\u014D (964\u2013968)","40":"Anna (968\u2013970)","41":"Tenroku (970\u2013973)","42":"Ten\u2019en (973\u2013976)","43":"J\u014Dgen (976\u2013978)","44":"Tengen (978\u2013983)","45":"Eikan (983\u2013985)","46":"Kanna (985\u2013987)","47":"Eien (987\u2013989)","48":"Eiso (989\u2013990)","49":"Sh\u014Dryaku (990\u2013995)","50":"Ch\u014Dtoku (995\u2013999)","51":"Ch\u014Dh\u014D (999\u20131004)","52":"Kank\u014D (1004\u20131012)","53":"Ch\u014Dwa (1012\u20131017)","54":"Kannin (1017\u20131021)","55":"Jian (1021\u20131024)","56":"Manju (1024\u20131028)","57":"Ch\u014Dgen (1028\u20131037)","58":"Ch\u014Dryaku (1037\u20131040)","59":"Ch\u014Dky\u016B (1040\u20131044)","60":"Kantoku (1044\u20131046)","61":"Eish\u014D (1046\u20131053)","62":"Tengi (1053\u20131058)","63":"K\u014Dhei (1058\u20131065)","64":"Jiryaku (1065\u20131069)","65":"Enky\u016B (1069\u20131074)","66":"Sh\u014Dho (1074\u20131077)","67":"Sh\u014Dryaku (1077\u20131081)","68":"Eih\u014D (1081\u20131084)","69":"\u014Ctoku (1084\u20131087)","70":"Kanji (1087\u20131094)","71":"Kah\u014D (1094\u20131096)","72":"Eich\u014D (1096\u20131097)","73":"J\u014Dtoku (1097\u20131099)","74":"K\u014Dwa (1099\u20131104)","75":"Ch\u014Dji (1104\u20131106)","76":"Kash\u014D (1106\u20131108)","77":"Tennin (1108\u20131110)","78":"Ten-ei (1110\u20131113)","79":"Eiky\u016B (1113\u20131118)","80":"Gen\u2019ei (1118\u20131120)","81":"H\u014Dan (1120\u20131124)","82":"Tenji (1124\u20131126)","83":"Daiji (1126\u20131131)","84":"Tensh\u014D (1131\u20131132)","85":"Ch\u014Dsh\u014D (1132\u20131135)","86":"H\u014Den (1135\u20131141)","87":"Eiji (1141\u20131142)","88":"K\u014Dji (1142\u20131144)","89":"Ten\u2019y\u014D (1144\u20131145)","90":"Ky\u016Ban (1145\u20131151)","91":"Ninpei (1151\u20131154)","92":"Ky\u016Bju (1154\u20131156)","93":"H\u014Dgen (1156\u20131159)","94":"Heiji (1159\u20131160)","95":"Eiryaku (1160\u20131161)","96":"\u014Cho (1161\u20131163)","97":"Ch\u014Dkan (1163\u20131165)","98":"Eiman (1165\u20131166)","99":"Nin\u2019an (1166\u20131169)","100":"Ka\u014D (1169\u20131171)","101":"Sh\u014Dan (1171\u20131175)","102":"Angen (1175\u20131177)","103":"Jish\u014D (1177\u20131181)","104":"Y\u014Dwa (1181\u20131182)","105":"Juei (1182\u20131184)","106":"Genryaku (1184\u20131185)","107":"Bunji (1185\u20131190)","108":"Kenky\u016B (1190\u20131199)","109":"Sh\u014Dji (1199\u20131201)","110":"Kennin (1201\u20131204)","111":"Genky\u016B (1204\u20131206)","112":"Ken\u2019ei (1206\u20131207)","113":"J\u014Dgen (1207\u20131211)","114":"Kenryaku (1211\u20131213)","115":"Kenp\u014D (1213\u20131219)","116":"J\u014Dky\u016B (1219\u20131222)","117":"J\u014D\u014D (1222\u20131224)","118":"Gennin (1224\u20131225)","119":"Karoku (1225\u20131227)","120":"Antei (1227\u20131229)","121":"Kanki (1229\u20131232)","122":"J\u014Dei (1232\u20131233)","123":"Tenpuku (1233\u20131234)","124":"Bunryaku (1234\u20131235)","125":"Katei (1235\u20131238)","126":"Ryakunin (1238\u20131239)","127":"En\u2019\u014D (1239\u20131240)","128":"Ninji (1240\u20131243)","129":"Kangen (1243\u20131247)","130":"H\u014Dji (1247\u20131249)","131":"Kench\u014D (1249\u20131256)","132":"K\u014Dgen (1256\u20131257)","133":"Sh\u014Dka (1257\u20131259)","134":"Sh\u014Dgen (1259\u20131260)","135":"Bun\u2019\u014D (1260\u20131261)","136":"K\u014Dch\u014D (1261\u20131264)","137":"Bun\u2019ei (1264\u20131275)","138":"Kenji (1275\u20131278)","139":"K\u014Dan (1278\u20131288)","140":"Sh\u014D\u014D (1288\u20131293)","141":"Einin (1293\u20131299)","142":"Sh\u014Dan (1299\u20131302)","143":"Kengen (1302\u20131303)","144":"Kagen (1303\u20131306)","145":"Tokuji (1306\u20131308)","146":"Enky\u014D (1308\u20131311)","147":"\u014Cch\u014D (1311\u20131312)","148":"Sh\u014Dwa (1312\u20131317)","149":"Bunp\u014D (1317\u20131319)","150":"Gen\u014D (1319\u20131321)","151":"Genk\u014D (1321\u20131324)","152":"Sh\u014Dch\u016B (1324\u20131326)","153":"Karyaku (1326\u20131329)","154":"Gentoku (1329\u20131331)","155":"Genk\u014D (1331\u20131334)","156":"Kenmu (1334\u20131336)","157":"Engen (1336\u20131340)","158":"K\u014Dkoku (1340\u20131346)","159":"Sh\u014Dhei (1346\u20131370)","160":"Kentoku (1370\u20131372)","161":"Bunch\u016B (1372\u20131375)","162":"Tenju (1375\u20131379)","163":"K\u014Dryaku (1379\u20131381)","164":"K\u014Dwa (1381\u20131384)","165":"Gench\u016B (1384\u20131392)","166":"Meitoku (1384\u20131387)","167":"Kakei (1387\u20131389)","168":"K\u014D\u014D (1389\u20131390)","169":"Meitoku (1390\u20131394)","170":"\u014Cei (1394\u20131428)","171":"Sh\u014Dch\u014D (1428\u20131429)","172":"Eiky\u014D (1429\u20131441)","173":"Kakitsu (1441\u20131444)","174":"Bun\u2019an (1444\u20131449)","175":"H\u014Dtoku (1449\u20131452)","176":"Ky\u014Dtoku (1452\u20131455)","177":"K\u014Dsh\u014D (1455\u20131457)","178":"Ch\u014Droku (1457\u20131460)","179":"Kansh\u014D (1460\u20131466)","180":"Bunsh\u014D (1466\u20131467)","181":"\u014Cnin (1467\u20131469)","182":"Bunmei (1469\u20131487)","183":"Ch\u014Dky\u014D (1487\u20131489)","184":"Entoku (1489\u20131492)","185":"Mei\u014D (1492\u20131501)","186":"Bunki (1501\u20131504)","187":"Eish\u014D (1504\u20131521)","188":"Taiei (1521\u20131528)","189":"Ky\u014Droku (1528\u20131532)","190":"Tenbun (1532\u20131555)","191":"K\u014Dji (1555\u20131558)","192":"Eiroku (1558\u20131570)","193":"Genki (1570\u20131573)","194":"Tensh\u014D (1573\u20131592)","195":"Bunroku (1592\u20131596)","196":"Keich\u014D (1596\u20131615)","197":"Genna (1615\u20131624)","198":"Kan\u2019ei (1624\u20131644)","199":"Sh\u014Dho (1644\u20131648)","200":"Keian (1648\u20131652)","201":"J\u014D\u014D (1652\u20131655)","202":"Meireki (1655\u20131658)","203":"Manji (1658\u20131661)","204":"Kanbun (1661\u20131673)","205":"Enp\u014D (1673\u20131681)","206":"Tenna (1681\u20131684)","207":"J\u014Dky\u014D (1684\u20131688)","208":"Genroku (1688\u20131704)","209":"H\u014Dei (1704\u20131711)","210":"Sh\u014Dtoku (1711\u20131716)","211":"Ky\u014Dh\u014D (1716\u20131736)","212":"Genbun (1736\u20131741)","213":"Kanp\u014D (1741\u20131744)","214":"Enky\u014D (1744\u20131748)","215":"Kan\u2019en (1748\u20131751)","216":"H\u014Dreki (1751\u20131764)","217":"Meiwa (1764\u20131772)","218":"An\u2019ei (1772\u20131781)","219":"Tenmei (1781\u20131789)","220":"Kansei (1789\u20131801)","221":"Ky\u014Dwa (1801\u20131804)","222":"Bunka (1804\u20131818)","223":"Bunsei (1818\u20131830)","224":"Tenp\u014D (1830\u20131844)","225":"K\u014Dka (1844\u20131848)","226":"Kaei (1848\u20131854)","227":"Ansei (1854\u20131860)","228":"Man\u2019en (1860\u20131861)","229":"Bunky\u016B (1861\u20131864)","230":"Genji (1864\u20131865)","231":"Kei\u014D (1865\u20131868)","232":"Meiji","233":"Taish\u014D","234":"Sh\u014Dwa","235":"Heisei","236":"Reiwa"},"eraAbbr":{"0":"Taika (645\u2013650)","1":"Hakuchi (650\u2013671)","2":"Hakuh\u014D (672\u2013686)","3":"Shuch\u014D (686\u2013701)","4":"Taih\u014D (701\u2013704)","5":"Keiun (704\u2013708)","6":"Wad\u014D (708\u2013715)","7":"Reiki (715\u2013717)","8":"Y\u014Dr\u014D (717\u2013724)","9":"Jinki (724\u2013729)","10":"Tenpy\u014D (729\u2013749)","11":"Tenpy\u014D-kamp\u014D (749\u2013749)","12":"Tenpy\u014D-sh\u014Dh\u014D (749\u2013757)","13":"Tenpy\u014D-h\u014Dji (757\u2013765)","14":"Tenpy\u014D-jingo (765\u2013767)","15":"Jingo-keiun (767\u2013770)","16":"H\u014Dki (770\u2013780)","17":"Ten-\u014D (781\u2013782)","18":"Enryaku (782\u2013806)","19":"Daid\u014D (806\u2013810)","20":"K\u014Dnin (810\u2013824)","21":"Tench\u014D (824\u2013834)","22":"J\u014Dwa (834\u2013848)","23":"Kaj\u014D (848\u2013851)","24":"Ninju (851\u2013854)","25":"Saik\u014D (854\u2013857)","26":"Ten-an (857\u2013859)","27":"J\u014Dgan (859\u2013877)","28":"Gangy\u014D (877\u2013885)","29":"Ninna (885\u2013889)","30":"Kanpy\u014D (889\u2013898)","31":"Sh\u014Dtai (898\u2013901)","32":"Engi (901\u2013923)","33":"Ench\u014D (923\u2013931)","34":"J\u014Dhei (931\u2013938)","35":"Tengy\u014D (938\u2013947)","36":"Tenryaku (947\u2013957)","37":"Tentoku (957\u2013961)","38":"\u014Cwa (961\u2013964)","39":"K\u014Dh\u014D (964\u2013968)","40":"Anna (968\u2013970)","41":"Tenroku (970\u2013973)","42":"Ten\u2019en (973\u2013976)","43":"J\u014Dgen (976\u2013978)","44":"Tengen (978\u2013983)","45":"Eikan (983\u2013985)","46":"Kanna (985\u2013987)","47":"Eien (987\u2013989)","48":"Eiso (989\u2013990)","49":"Sh\u014Dryaku (990\u2013995)","50":"Ch\u014Dtoku (995\u2013999)","51":"Ch\u014Dh\u014D (999\u20131004)","52":"Kank\u014D (1004\u20131012)","53":"Ch\u014Dwa (1012\u20131017)","54":"Kannin (1017\u20131021)","55":"Jian (1021\u20131024)","56":"Manju (1024\u20131028)","57":"Ch\u014Dgen (1028\u20131037)","58":"Ch\u014Dryaku (1037\u20131040)","59":"Ch\u014Dky\u016B (1040\u20131044)","60":"Kantoku (1044\u20131046)","61":"Eish\u014D (1046\u20131053)","62":"Tengi (1053\u20131058)","63":"K\u014Dhei (1058\u20131065)","64":"Jiryaku (1065\u20131069)","65":"Enky\u016B (1069\u20131074)","66":"Sh\u014Dho (1074\u20131077)","67":"Sh\u014Dryaku (1077\u20131081)","68":"Eih\u014D (1081\u20131084)","69":"\u014Ctoku (1084\u20131087)","70":"Kanji (1087\u20131094)","71":"Kah\u014D (1094\u20131096)","72":"Eich\u014D (1096\u20131097)","73":"J\u014Dtoku (1097\u20131099)","74":"K\u014Dwa (1099\u20131104)","75":"Ch\u014Dji (1104\u20131106)","76":"Kash\u014D (1106\u20131108)","77":"Tennin (1108\u20131110)","78":"Ten-ei (1110\u20131113)","79":"Eiky\u016B (1113\u20131118)","80":"Gen\u2019ei (1118\u20131120)","81":"H\u014Dan (1120\u20131124)","82":"Tenji (1124\u20131126)","83":"Daiji (1126\u20131131)","84":"Tensh\u014D (1131\u20131132)","85":"Ch\u014Dsh\u014D (1132\u20131135)","86":"H\u014Den (1135\u20131141)","87":"Eiji (1141\u20131142)","88":"K\u014Dji (1142\u20131144)","89":"Ten\u2019y\u014D (1144\u20131145)","90":"Ky\u016Ban (1145\u20131151)","91":"Ninpei (1151\u20131154)","92":"Ky\u016Bju (1154\u20131156)","93":"H\u014Dgen (1156\u20131159)","94":"Heiji (1159\u20131160)","95":"Eiryaku (1160\u20131161)","96":"\u014Cho (1161\u20131163)","97":"Ch\u014Dkan (1163\u20131165)","98":"Eiman (1165\u20131166)","99":"Nin\u2019an (1166\u20131169)","100":"Ka\u014D (1169\u20131171)","101":"Sh\u014Dan (1171\u20131175)","102":"Angen (1175\u20131177)","103":"Jish\u014D (1177\u20131181)","104":"Y\u014Dwa (1181\u20131182)","105":"Juei (1182\u20131184)","106":"Genryaku (1184\u20131185)","107":"Bunji (1185\u20131190)","108":"Kenky\u016B (1190\u20131199)","109":"Sh\u014Dji (1199\u20131201)","110":"Kennin (1201\u20131204)","111":"Genky\u016B (1204\u20131206)","112":"Ken\u2019ei (1206\u20131207)","113":"J\u014Dgen (1207\u20131211)","114":"Kenryaku (1211\u20131213)","115":"Kenp\u014D (1213\u20131219)","116":"J\u014Dky\u016B (1219\u20131222)","117":"J\u014D\u014D (1222\u20131224)","118":"Gennin (1224\u20131225)","119":"Karoku (1225\u20131227)","120":"Antei (1227\u20131229)","121":"Kanki (1229\u20131232)","122":"J\u014Dei (1232\u20131233)","123":"Tenpuku (1233\u20131234)","124":"Bunryaku (1234\u20131235)","125":"Katei (1235\u20131238)","126":"Ryakunin (1238\u20131239)","127":"En\u2019\u014D (1239\u20131240)","128":"Ninji (1240\u20131243)","129":"Kangen (1243\u20131247)","130":"H\u014Dji (1247\u20131249)","131":"Kench\u014D (1249\u20131256)","132":"K\u014Dgen (1256\u20131257)","133":"Sh\u014Dka (1257\u20131259)","134":"Sh\u014Dgen (1259\u20131260)","135":"Bun\u2019\u014D (1260\u20131261)","136":"K\u014Dch\u014D (1261\u20131264)","137":"Bun\u2019ei (1264\u20131275)","138":"Kenji (1275\u20131278)","139":"K\u014Dan (1278\u20131288)","140":"Sh\u014D\u014D (1288\u20131293)","141":"Einin (1293\u20131299)","142":"Sh\u014Dan (1299\u20131302)","143":"Kengen (1302\u20131303)","144":"Kagen (1303\u20131306)","145":"Tokuji (1306\u20131308)","146":"Enky\u014D (1308\u20131311)","147":"\u014Cch\u014D (1311\u20131312)","148":"Sh\u014Dwa (1312\u20131317)","149":"Bunp\u014D (1317\u20131319)","150":"Gen\u014D (1319\u20131321)","151":"Genk\u014D (1321\u20131324)","152":"Sh\u014Dch\u016B (1324\u20131326)","153":"Karyaku (1326\u20131329)","154":"Gentoku (1329\u20131331)","155":"Genk\u014D (1331\u20131334)","156":"Kenmu (1334\u20131336)","157":"Engen (1336\u20131340)","158":"K\u014Dkoku (1340\u20131346)","159":"Sh\u014Dhei (1346\u20131370)","160":"Kentoku (1370\u20131372)","161":"Bunch\u016B (1372\u20131375)","162":"Tenju (1375\u20131379)","163":"K\u014Dryaku (1379\u20131381)","164":"K\u014Dwa (1381\u20131384)","165":"Gench\u016B (1384\u20131392)","166":"Meitoku (1384\u20131387)","167":"Kakei (1387\u20131389)","168":"K\u014D\u014D (1389\u20131390)","169":"Meitoku (1390\u20131394)","170":"\u014Cei (1394\u20131428)","171":"Sh\u014Dch\u014D (1428\u20131429)","172":"Eiky\u014D (1429\u20131441)","173":"Kakitsu (1441\u20131444)","174":"Bun\u2019an (1444\u20131449)","175":"H\u014Dtoku (1449\u20131452)","176":"Ky\u014Dtoku (1452\u20131455)","177":"K\u014Dsh\u014D (1455\u20131457)","178":"Ch\u014Droku (1457\u20131460)","179":"Kansh\u014D (1460\u20131466)","180":"Bunsh\u014D (1466\u20131467)","181":"\u014Cnin (1467\u20131469)","182":"Bunmei (1469\u20131487)","183":"Ch\u014Dky\u014D (1487\u20131489)","184":"Entoku (1489\u20131492)","185":"Mei\u014D (1492\u20131501)","186":"Bunki (1501\u20131504)","187":"Eish\u014D (1504\u20131521)","188":"Taiei (1521\u20131528)","189":"Ky\u014Droku (1528\u20131532)","190":"Tenbun (1532\u20131555)","191":"K\u014Dji (1555\u20131558)","192":"Eiroku (1558\u20131570)","193":"Genki (1570\u20131573)","194":"Tensh\u014D (1573\u20131592)","195":"Bunroku (1592\u20131596)","196":"Keich\u014D (1596\u20131615)","197":"Genna (1615\u20131624)","198":"Kan\u2019ei (1624\u20131644)","199":"Sh\u014Dho (1644\u20131648)","200":"Keian (1648\u20131652)","201":"J\u014D\u014D (1652\u20131655)","202":"Meireki (1655\u20131658)","203":"Manji (1658\u20131661)","204":"Kanbun (1661\u20131673)","205":"Enp\u014D (1673\u20131681)","206":"Tenna (1681\u20131684)","207":"J\u014Dky\u014D (1684\u20131688)","208":"Genroku (1688\u20131704)","209":"H\u014Dei (1704\u20131711)","210":"Sh\u014Dtoku (1711\u20131716)","211":"Ky\u014Dh\u014D (1716\u20131736)","212":"Genbun (1736\u20131741)","213":"Kanp\u014D (1741\u20131744)","214":"Enky\u014D (1744\u20131748)","215":"Kan\u2019en (1748\u20131751)","216":"H\u014Dreki (1751\u20131764)","217":"Meiwa (1764\u20131772)","218":"An\u2019ei (1772\u20131781)","219":"Tenmei (1781\u20131789)","220":"Kansei (1789\u20131801)","221":"Ky\u014Dwa (1801\u20131804)","222":"Bunka (1804\u20131818)","223":"Bunsei (1818\u20131830)","224":"Tenp\u014D (1830\u20131844)","225":"K\u014Dka (1844\u20131848)","226":"Kaei (1848\u20131854)","227":"Ansei (1854\u20131860)","228":"Man\u2019en (1860\u20131861)","229":"Bunky\u016B (1861\u20131864)","230":"Genji (1864\u20131865)","231":"Kei\u014D (1865\u20131868)","232":"Meiji","233":"Taish\u014D","234":"Sh\u014Dwa","235":"Heisei","236":"Reiwa"},"eraNarrow":{"0":"Taika (645\u2013650)","1":"Hakuchi (650\u2013671)","2":"Hakuh\u014D (672\u2013686)","3":"Shuch\u014D (686\u2013701)","4":"Taih\u014D (701\u2013704)","5":"Keiun (704\u2013708)","6":"Wad\u014D (708\u2013715)","7":"Reiki (715\u2013717)","8":"Y\u014Dr\u014D (717\u2013724)","9":"Jinki (724\u2013729)","10":"Tenpy\u014D (729\u2013749)","11":"Tenpy\u014D-kamp\u014D (749\u2013749)","12":"Tenpy\u014D-sh\u014Dh\u014D (749\u2013757)","13":"Tenpy\u014D-h\u014Dji (757\u2013765)","14":"Tenpy\u014D-jingo (765\u2013767)","15":"Jingo-keiun (767\u2013770)","16":"H\u014Dki (770\u2013780)","17":"Ten-\u014D (781\u2013782)","18":"Enryaku (782\u2013806)","19":"Daid\u014D (806\u2013810)","20":"K\u014Dnin (810\u2013824)","21":"Tench\u014D (824\u2013834)","22":"J\u014Dwa (834\u2013848)","23":"Kaj\u014D (848\u2013851)","24":"Ninju (851\u2013854)","25":"Saik\u014D (854\u2013857)","26":"Ten-an (857\u2013859)","27":"J\u014Dgan (859\u2013877)","28":"Gangy\u014D (877\u2013885)","29":"Ninna (885\u2013889)","30":"Kanpy\u014D (889\u2013898)","31":"Sh\u014Dtai (898\u2013901)","32":"Engi (901\u2013923)","33":"Ench\u014D (923\u2013931)","34":"J\u014Dhei (931\u2013938)","35":"Tengy\u014D (938\u2013947)","36":"Tenryaku (947\u2013957)","37":"Tentoku (957\u2013961)","38":"\u014Cwa (961\u2013964)","39":"K\u014Dh\u014D (964\u2013968)","40":"Anna (968\u2013970)","41":"Tenroku (970\u2013973)","42":"Ten\u2019en (973\u2013976)","43":"J\u014Dgen (976\u2013978)","44":"Tengen (978\u2013983)","45":"Eikan (983\u2013985)","46":"Kanna (985\u2013987)","47":"Eien (987\u2013989)","48":"Eiso (989\u2013990)","49":"Sh\u014Dryaku (990\u2013995)","50":"Ch\u014Dtoku (995\u2013999)","51":"Ch\u014Dh\u014D (999\u20131004)","52":"Kank\u014D (1004\u20131012)","53":"Ch\u014Dwa (1012\u20131017)","54":"Kannin (1017\u20131021)","55":"Jian (1021\u20131024)","56":"Manju (1024\u20131028)","57":"Ch\u014Dgen (1028\u20131037)","58":"Ch\u014Dryaku (1037\u20131040)","59":"Ch\u014Dky\u016B (1040\u20131044)","60":"Kantoku (1044\u20131046)","61":"Eish\u014D (1046\u20131053)","62":"Tengi (1053\u20131058)","63":"K\u014Dhei (1058\u20131065)","64":"Jiryaku (1065\u20131069)","65":"Enky\u016B (1069\u20131074)","66":"Sh\u014Dho (1074\u20131077)","67":"Sh\u014Dryaku (1077\u20131081)","68":"Eih\u014D (1081\u20131084)","69":"\u014Ctoku (1084\u20131087)","70":"Kanji (1087\u20131094)","71":"Kah\u014D (1094\u20131096)","72":"Eich\u014D (1096\u20131097)","73":"J\u014Dtoku (1097\u20131099)","74":"K\u014Dwa (1099\u20131104)","75":"Ch\u014Dji (1104\u20131106)","76":"Kash\u014D (1106\u20131108)","77":"Tennin (1108\u20131110)","78":"Ten-ei (1110\u20131113)","79":"Eiky\u016B (1113\u20131118)","80":"Gen\u2019ei (1118\u20131120)","81":"H\u014Dan (1120\u20131124)","82":"Tenji (1124\u20131126)","83":"Daiji (1126\u20131131)","84":"Tensh\u014D (1131\u20131132)","85":"Ch\u014Dsh\u014D (1132\u20131135)","86":"H\u014Den (1135\u20131141)","87":"Eiji (1141\u20131142)","88":"K\u014Dji (1142\u20131144)","89":"Ten\u2019y\u014D (1144\u20131145)","90":"Ky\u016Ban (1145\u20131151)","91":"Ninpei (1151\u20131154)","92":"Ky\u016Bju (1154\u20131156)","93":"H\u014Dgen (1156\u20131159)","94":"Heiji (1159\u20131160)","95":"Eiryaku (1160\u20131161)","96":"\u014Cho (1161\u20131163)","97":"Ch\u014Dkan (1163\u20131165)","98":"Eiman (1165\u20131166)","99":"Nin\u2019an (1166\u20131169)","100":"Ka\u014D (1169\u20131171)","101":"Sh\u014Dan (1171\u20131175)","102":"Angen (1175\u20131177)","103":"Jish\u014D (1177\u20131181)","104":"Y\u014Dwa (1181\u20131182)","105":"Juei (1182\u20131184)","106":"Genryaku (1184\u20131185)","107":"Bunji (1185\u20131190)","108":"Kenky\u016B (1190\u20131199)","109":"Sh\u014Dji (1199\u20131201)","110":"Kennin (1201\u20131204)","111":"Genky\u016B (1204\u20131206)","112":"Ken\u2019ei (1206\u20131207)","113":"J\u014Dgen (1207\u20131211)","114":"Kenryaku (1211\u20131213)","115":"Kenp\u014D (1213\u20131219)","116":"J\u014Dky\u016B (1219\u20131222)","117":"J\u014D\u014D (1222\u20131224)","118":"Gennin (1224\u20131225)","119":"Karoku (1225\u20131227)","120":"Antei (1227\u20131229)","121":"Kanki (1229\u20131232)","122":"J\u014Dei (1232\u20131233)","123":"Tenpuku (1233\u20131234)","124":"Bunryaku (1234\u20131235)","125":"Katei (1235\u20131238)","126":"Ryakunin (1238\u20131239)","127":"En\u2019\u014D (1239\u20131240)","128":"Ninji (1240\u20131243)","129":"Kangen (1243\u20131247)","130":"H\u014Dji (1247\u20131249)","131":"Kench\u014D (1249\u20131256)","132":"K\u014Dgen (1256\u20131257)","133":"Sh\u014Dka (1257\u20131259)","134":"Sh\u014Dgen (1259\u20131260)","135":"Bun\u2019\u014D (1260\u20131261)","136":"K\u014Dch\u014D (1261\u20131264)","137":"Bun\u2019ei (1264\u20131275)","138":"Kenji (1275\u20131278)","139":"K\u014Dan (1278\u20131288)","140":"Sh\u014D\u014D (1288\u20131293)","141":"Einin (1293\u20131299)","142":"Sh\u014Dan (1299\u20131302)","143":"Kengen (1302\u20131303)","144":"Kagen (1303\u20131306)","145":"Tokuji (1306\u20131308)","146":"Enky\u014D (1308\u20131311)","147":"\u014Cch\u014D (1311\u20131312)","148":"Sh\u014Dwa (1312\u20131317)","149":"Bunp\u014D (1317\u20131319)","150":"Gen\u014D (1319\u20131321)","151":"Genk\u014D (1321\u20131324)","152":"Sh\u014Dch\u016B (1324\u20131326)","153":"Karyaku (1326\u20131329)","154":"Gentoku (1329\u20131331)","155":"Genk\u014D (1331\u20131334)","156":"Kenmu (1334\u20131336)","157":"Engen (1336\u20131340)","158":"K\u014Dkoku (1340\u20131346)","159":"Sh\u014Dhei (1346\u20131370)","160":"Kentoku (1370\u20131372)","161":"Bunch\u016B (1372\u20131375)","162":"Tenju (1375\u20131379)","163":"K\u014Dryaku (1379\u20131381)","164":"K\u014Dwa (1381\u20131384)","165":"Gench\u016B (1384\u20131392)","166":"Meitoku (1384\u20131387)","167":"Kakei (1387\u20131389)","168":"K\u014D\u014D (1389\u20131390)","169":"Meitoku (1390\u20131394)","170":"\u014Cei (1394\u20131428)","171":"Sh\u014Dch\u014D (1428\u20131429)","172":"Eiky\u014D (1429\u20131441)","173":"Kakitsu (1441\u20131444)","174":"Bun\u2019an (1444\u20131449)","175":"H\u014Dtoku (1449\u20131452)","176":"Ky\u014Dtoku (1452\u20131455)","177":"K\u014Dsh\u014D (1455\u20131457)","178":"Ch\u014Droku (1457\u20131460)","179":"Kansh\u014D (1460\u20131466)","180":"Bunsh\u014D (1466\u20131467)","181":"\u014Cnin (1467\u20131469)","182":"Bunmei (1469\u20131487)","183":"Ch\u014Dky\u014D (1487\u20131489)","184":"Entoku (1489\u20131492)","185":"Mei\u014D (1492\u20131501)","186":"Bunki (1501\u20131504)","187":"Eish\u014D (1504\u20131521)","188":"Taiei (1521\u20131528)","189":"Ky\u014Droku (1528\u20131532)","190":"Tenbun (1532\u20131555)","191":"K\u014Dji (1555\u20131558)","192":"Eiroku (1558\u20131570)","193":"Genki (1570\u20131573)","194":"Tensh\u014D (1573\u20131592)","195":"Bunroku (1592\u20131596)","196":"Keich\u014D (1596\u20131615)","197":"Genna (1615\u20131624)","198":"Kan\u2019ei (1624\u20131644)","199":"Sh\u014Dho (1644\u20131648)","200":"Keian (1648\u20131652)","201":"J\u014D\u014D (1652\u20131655)","202":"Meireki (1655\u20131658)","203":"Manji (1658\u20131661)","204":"Kanbun (1661\u20131673)","205":"Enp\u014D (1673\u20131681)","206":"Tenna (1681\u20131684)","207":"J\u014Dky\u014D (1684\u20131688)","208":"Genroku (1688\u20131704)","209":"H\u014Dei (1704\u20131711)","210":"Sh\u014Dtoku (1711\u20131716)","211":"Ky\u014Dh\u014D (1716\u20131736)","212":"Genbun (1736\u20131741)","213":"Kanp\u014D (1741\u20131744)","214":"Enky\u014D (1744\u20131748)","215":"Kan\u2019en (1748\u20131751)","216":"H\u014Dreki (1751\u20131764)","217":"Meiwa (1764\u20131772)","218":"An\u2019ei (1772\u20131781)","219":"Tenmei (1781\u20131789)","220":"Kansei (1789\u20131801)","221":"Ky\u014Dwa (1801\u20131804)","222":"Bunka (1804\u20131818)","223":"Bunsei (1818\u20131830)","224":"Tenp\u014D (1830\u20131844)","225":"K\u014Dka (1844\u20131848)","226":"Kaei (1848\u20131854)","227":"Ansei (1854\u20131860)","228":"Man\u2019en (1860\u20131861)","229":"Bunky\u016B (1861\u20131864)","230":"Genji (1864\u20131865)","231":"Kei\u014D (1865\u20131868)","232":"M","233":"T","234":"S","235":"H","236":"R"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"persian":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"AP"},"eraAbbr":{"0":"AP"},"eraNarrow":{"0":"AP"}},"months":{"format":{"abbreviated":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"}},"stand-alone":{"abbreviated":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Farvardin","2":"Ordibehesht","3":"Khordad","4":"Tir","5":"Mordad","6":"Shahrivar","7":"Mehr","8":"Aban","9":"Azar","10":"Dey","11":"Bahman","12":"Esfand"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}},"roc":{"dayPeriods":{"format":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"narrow":{"midnight":"mi","am":"a","am-alt-variant":"am","noon":"n","pm":"p","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"in the morning","afternoon1":"in the afternoon","evening1":"in the evening","night1":"at night"}},"stand-alone":{"abbreviated":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"narrow":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"},"wide":{"midnight":"midnight","am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm","morning1":"morning","afternoon1":"afternoon","evening1":"evening","night1":"night"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"eras":{"eraNames":{"0":"Before R.O.C.","1":"Minguo"},"eraAbbr":{"0":"Before R.O.C.","1":"Minguo"},"eraNarrow":{"0":"Before R.O.C.","1":"Minguo"}},"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"narrow":{"1":"J","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}}}}'),{tmpl:te,sel:"lwc-components-lightning-scopedImports"});const zm=/^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d[:]?\d\d)|Z)?)?)?)?$/i,Gm=/^\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d[:]?\d\d)|Z)?$/i,Vm="HH:mm:ss.SSS",Do="YYYY-MM-DD",ko="T",Bm=/(Z|([+-])(\d{2})[:]?(\d{2}))$/i;function $o(t){return Hm(t)&&xo(t)}function Wm(t){if(!Jm(t))return!1;const e=Lo(t);return xo(`2018-09-09T${e}Z`)}function Lo(t){return typeof t=="string"?t.split(Bm)[0]:t}function Hm(t){return typeof t!="string"?!1:zm.test(t)}function Jm(t){return typeof t!="string"?!1:Gm.test(t)}function xo(t){const e=Date.parse(t);return isFinite(e)}var qm="in a few seconds",Qm="a few seconds ago";const jo=t=>typeof t=="string"?t.trim().split(/\s+/).reduce((e,n)=>(e[n]=!0,e),{}):t,Xm={add(t){return Object.assign(this,jo(t)),this},invert(){return Object.keys(this).forEach(t=>{this[t]=!this[t]}),this},toString(){return Object.keys(this).filter(t=>this[t]).join(" ")}};function Ym(t){return Object.assign(Object.create(Xm),jo(t))}function Zm(t){const e=Array.prototype.slice.call(arguments,1);let n=e;return Array.isArray(e[0])&&([n]=e),t.replace(/{(\d+)}/g,(r,i)=>{const a=n[i];return a??""})}const ef="in {0} {1}",tf="{0} {1} ago",nf="s",V={SECONDS:{name:"second",threshold:45},MINUTES:{name:"minute",threshold:45},HOURS:{name:"hour",threshold:22},DAYS:{name:"day",threshold:26},MONTHS:{name:"month",threshold:11},YEARS:{name:"year"}},rf=1e3,af=6e4,of=36e5,yr=864e5;class Fo{constructor(e){if(this.milliseconds=0,typeof e!="number"){this.isValid=!1,console.warn(`The value of milliseconds passed into Duration must be of type number, |
| | | but we are getting the ${typeof e} value "${e}" instead. |
| | | `);return}this.isValid=!0,this.milliseconds=e}humanize(e){if(!this.isValid)return"";const n=df(this);return n===V.SECONDS?this.milliseconds>0?qm:Qm:lf(e,this.asIn(n),n.name)}asIn(e){switch(e){case V.SECONDS:return Math.round(this.milliseconds/rf);case V.MINUTES:return Math.round(this.milliseconds/af);case V.HOURS:return Math.round(this.milliseconds/of);case V.DAYS:return Math.round(this.milliseconds/yr);case V.MONTHS:return Math.round(Uo(this.milliseconds/yr));case V.YEARS:default:return Math.round(Uo(this.milliseconds/yr)/12)}}}p.registerDecorators(Fo,{fields:["milliseconds"]});var sf=p.registerComponent(Fo,{tmpl:te,sel:"lightning-configProvider"});function Uo(t){const e=4800/146097;return t*e}function df(t){const e=Object.keys(V).find(n=>{const r=V[n];return r===V.YEARS||Math.abs(t.asIn(r))<r.threshold});return V[e]}function lf(t,e,n){return"Intl"in window&&Intl.RelativeTimeFormat?new Intl.RelativeTimeFormat(t,{style:"long",numeric:"always"}).format(e,n):cf(e,n)}function cf(t,e){console.warn("The current environment does not support formatters for relative time.");const n=Math.abs(t),r=n!==1?e+nf:e,i=t>0?ef:tf;return Zm(i,n,r)}const wr=["January","February","March","April","May","June","July","August","September","October","November","December"],Oe={short:"M/d/yyyy",medium:"MMM d, yyyy",long:"MMMM d, yyyy"},Tr={short:"h:mm a",medium:"h:mm:ss a",long:"h:mm:ss a"},uf={short:"h:m a",medium:"h:m:s a",long:"h:m:s a"};function hf(t,e){let n=!1,r=t;return typeof t=="string"&&(r=t.split(ko)[0],n=!0),Go(r,e,n)}function Ko(t,e){return Go(t,e,!0)}function zo(t,e){if(!We(t))return new Date("");const n=(t.getHours()+11)%12+1,r=t.getHours()>=12?"PM":"AM";switch(e){case Vm:return`${B(t.getHours())}:${B(t.getMinutes())}:${B(t.getSeconds())}.${Mf(t.getMilliseconds())}`;case Tr.short:return`${n}:${B(t.getMinutes())} ${r}`;case Tr.medium:case Tr.long:default:return`${n}:${B(t.getMinutes())}:${B(t.getSeconds())} ${r}`}}function mf(t){if(!We(t))return new Date("");const e=new Date(t.getTime());return`${Ko(e)}, ${zo(Et(e))}`}function mn(t){let e=null,n=!0;if(Wm(t)?e=`${Vo()}T${Pr(t)}`:$o(t)&&(t.indexOf(ko)>0?(e=Pr(t),n=!1):e=`${t}T00:00:00.000Z`),e){const r=new Date(e);return n&&Et(r),r}return null}function ff(t,e){return e===Do&&$o(t)?mn(t):Object.values(Oe).includes(e)?Nf(t,e):Object.values(uf).includes(e)?Sf(t):null}function pf(t){return mn(Pr(t))}function gf(t,e,n){const r=_t(t),i=_t(e);return!r||!i?!1:fn(r,n).getTime()<fn(i,n).getTime()}function bf(t,e,n){const r=_t(t),i=_t(e);return!r||!i?!1:fn(r,n).getTime()>fn(i,n).getTime()}function vf(t,e,n){const r=new Date(t.getTime());n(Af(r))}function yf(t,e,n){const r=new Date(t.getTime());n(Et(r))}function wf(t){return t}function Tf(t){return t}function Pf(t){return t}function Ef(t){return t}function _f(){return{format:t=>(console.warn(`The current environment does not support large numbers and the original value of ${t} will be returned.`),t)}}function Of(t){return new sf(t*60*1e3)}function Cf(t){return t.humanize("en")}function Sf(t){const e=t.trim().split(/[:.\s*]/),n=e.length;if(!e||n<2||n>5)return null;const r=e[n-1],i=r.toLowerCase()==="am",a=r.toLowerCase()==="pm";e.splice(-1,1);const o=e.every(b=>!isNaN(b));if(!a&&!i||!o)return null;const s=e[0],l=B(a?s%12+12:s%12),d=n>=3&&e[1]||"0",h=n>=4&&e[2]||"0",m=n===5&&e[3]||"0",g=new Date(Vo());return g.setHours(l,d,h,m),We(g)?g:null}function Nf(t,e){let n=/^([a-zA-Z]{3})\s*(\d{1,2}),\s*(\d{4})$/;switch(e){case Oe.short:n=/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/;break;case Oe.long:n=/^([a-zA-Z]+)\s*(\d{1,2}),\s*(\d{4})$/;break}const r=n.exec(t.trim());if(!r)return null;let i=r[1];const a=r[2],o=r[3];e!==Oe.short&&(i=wr.findIndex(d=>d.toLowerCase().includes(i.toLowerCase())),i+=1);const s=`${o}-${B(i)}-${B(a)}`,l=new Date(`${s}T00:00:00.000Z`);return We(l)?Et(l):null}function Go(t,e,n){const r=_t(t);if(!r)return new Date("");switch(n&&We(t)&&Et(r),e){case Do:return`${r.getFullYear()}-${B(r.getMonth()+1)}-${B(r.getDate())}`;case Oe.short:return`${r.getMonth()+1}/${r.getDate()}/${r.getFullYear()}`;case Oe.long:return`${wr[r.getMonth()]} ${r.getDate()}, ${r.getFullYear()}`;case Oe.medium:default:return`${wr[r.getMonth()].substring(0,3)} ${r.getDate()}, ${r.getFullYear()}`}}function fn(t,e){switch(e){case"day":t.setHours(0),t.setMinutes(0);case"minute":t.setSeconds(0),t.setMilliseconds(0);break}return t}function We(t){return Object.prototype.toString.call(t)==="[object Date]"&&!isNaN(t.getTime())}function Pr(t){return Lo(t)+"Z"}function Et(t){return t.setMinutes(t.getMinutes()+t.getTimezoneOffset()),t}function Af(t){return t.setMinutes(t.getMinutes()-t.getTimezoneOffset()),t}function _t(t){return t?We(t)?new Date(t.getTime()):isFinite(t)&&(typeof t=="number"||typeof t=="string")?new Date(parseInt(t,10)):typeof t=="string"?mn(t):null:null}function Vo(){return new Date().toISOString().split("T")[0]}function B(t){return Number(t)<10?"0"+t:t}function Mf(t){return Number(t)<10?"00"+t:Number(t)<100?"0"+t:t}var Rf={formatDate:hf,formatDateUTC:Ko,formatTime:zo,formatDateTimeUTC:mf,parseDateTimeISO8601:mn,parseDateTime:ff,parseDateTimeUTC:pf,isBefore:gf,isAfter:bf,UTCToWallTime:vf,WallTimeToUTC:yf,translateToOtherCalendar:wf,translateFromOtherCalendar:Tf,translateToLocalizedDigits:Pf,translateFromLocalizedDigits:Ef,getNumberFormat:_f,duration:Of,displayDuration:Cf};function If(t){return{getLocalizationService(){return t.localizationService},getPathPrefix(){return t.getContext().getPathPrefix()},getToken(e){return t.getToken(e)}}}function Df(){return{getLocalizationService(){return Rf},getPathPrefix(){return""},getToken(){},getOneConfig(){return{densitySetting:""}}}}function kf(){return ze&&window.$A!==void 0&&window.$A.localizationService?If(window.$A):Df()}kf(),ze&&window.$A&&window.$A.localizationService,function(){try{Intl.DateTimeFormat("en-US",{timeZone:"America/Los_Angeles"})}catch(t){return!1}return!0}();const He="data-position-id";class $f{get window(){return this._window||(this._window=window,this.window.getComputedStyle||(this.window.getComputedStyle=e=>e.style)),this._window}mockWindow(e){this._window=e}get documentElement(){return _e(this.window.document,"Missing window.document"),this.window.document.documentElement}get MutationObserver(){return this.window.MutationObserver}isWindow(e){return e&&e.toString()==="[object Window]"}}const S=new $f;function Ot(t){return t&&t.nodeType===11}function Er(t,e,n){if(!t||t===e||t===document.body)return null;try{const r=S.window.getComputedStyle(t);return r?n(r)?t:Er(Ot(t.parentNode)?t.parentNode.host:t.parentNode,e,n):null}catch(r){return null}}function Lf(t,e){return Er(t,e,n=>{const r=n["overflow-y"];return r==="auto"||r==="scroll"})}function xf(t){var e,n;for(let r=0;r<t.length;r++){let i=t[r];if(i instanceof HTMLElement&&(e=S.window.getComputedStyle(i),n=e["overflow-y"],n==="auto"||n==="scroll"))return i}return null}function jf(t,e){return Er(t,e,n=>n["overflow-x"]==="hidden"||n["overflow-y"]==="hidden")}function _r(t){return t===S.window||!Ot(t.parentNode)&&t.parentNode&&t.parentNode.tagName&&t.parentNode.tagName.toUpperCase()==="BODY"?!0:Ot(t.parentNode)&&t.parentNode.host?_r(t.parentNode.host):t.parentNode?_r(t.parentNode):!1}function Bo(t){return t.nodeType&&(t.nodeType===1||t.nodeType===11)}function Ff(t){return new Promise(e=>{setTimeout(()=>{e()},t)})}function Uf(t){return t.tagName==="TEXTAREA"?Ot(t.parentNode)?t.parentNode.host:t.parentNode:t}let Kf=1e6;function zf(){return`lgcp-${Kf++}`}function pn(t){const e=zf();return t.setAttribute(He,e),t=document.querySelector(`[${He}="${e}"]`)||t,t}function Gf(t,e,n,r,i){const a=e.isInside||!i&&jf(r,S.window);return t.style.position=a?"fixed":"absolute",t.style.zIndex=n||0,t.style.left="-9999px",t.style.right="auto",t.style.top="0px",{element:t,overlay:e}}function Vf(){return new Promise(t=>{requestAnimationFrame(()=>t())})}function Bf(t){return t.slice(-2)==="px"}function Wo(t){return t&&Bf(t)?parseInt(t,10):0}const w={Center:"center",Middle:"middle",Right:"right",Left:"left",Bottom:"bottom",Top:"top",Default:"default"},Wf={top:w.Top,bottom:w.Bottom,center:w.Middle},Hf={left:w.Left,right:w.Right,center:w.Center},Jf={left:w.Right,right:w.Left,top:w.Bottom,bottom:w.Top,center:w.Center,default:w.Right};function Ho(t){if(t)return t.getBoundingClientRect();const e={width:S.window.innerWidth||document.body.clientWidth||0,height:S.window.innerHeight||document.body.clientHeight||0,top:0,left:0};return e.bottom=e.height,e.right=e.width,e}function Ce(t,e){return Ao(t,{fallbackValue:e||w.Default,validValues:[w.Center,w.Right,w.Left,w.Bottom,w.Top,w.Middle,w.Default]})}function qf(t){return t=Ce(t,w.Left),Hf[t]}function Qf(t){return t=Ce(t,w.Left),Wf[t]}function Je(t){return t=Ce(t,w.Left),Jf[t]}function Xf(t,e,n,r){const i=Ho(t),a=Ho(),o=e.getBoundingClientRect(),s=n.getBoundingClientRect(),l=typeof o.height!="undefined"?o.height:o.bottom-o.top,d=typeof o.width!="undefined"?o.width:o.right-o.left;let h=!1;document.dir==="rtl"&&(h=r,r=!1);let m=s.top-i.top-l,g=i.height-s.bottom-l,b=m>=0||t==null&&g<0&&m>g,T=g>=0||m<0&&g>m,E=!1;t?E=s.right-i.left>=d&&s.left+d>(h?s.right:i.width):E=s.right>=d&&s.left+d>(h?s.right:i.width);let _=!1;t?_=s.left+d<=i.right&&s.right-i.left-d<(r?s.left:0):_=s.left+d<=i.width&&s.right-d<(r?s.left:0),!_&&!E&&t&&(E=(s.right-i.left>=d||s.right>=d)&&s.left+d>(h?s.right:i.width),_=(s.left+d<=i.right||s.left+d<=a.width)&&s.right-d<(r?s.left:0)),!b&&!T&&t&&e.style&&e.style.position==="fixed"&&(b=s.top-a.top-l>0,T=a.height-s.bottom-l>0);const I={left:s.left-d*.5<0,right:s.right+d*.5>i.width,top:s.top-l*.5<0,bottom:s.bottom+l*.5>i.height};return{shouldAlignToLeft:_,shouldAlignToRight:E,hasSpaceAbove:b,hasSpaceBelow:T,centerOverflow:I}}class W{constructor(e,n,r,i){this.pad=e||0,this.boxDirections=n||{left:!0,right:!0},this.transformX=r||function(){},this.transformY=i||function(){}}transform(){}}class Yf extends W{transform(e,n){return{top:Math.floor(this.transformY(e.top,e,n)+this.pad)}}}class Zf extends W{transform(e,n){return{top:Math.floor(this.transformY(e.top,e,n)-n.height-this.pad)}}}class ep extends W{transform(e,n){return{left:Math.floor(this.transformX(e.left,e,n)-.5*n.width)}}}class tp extends W{transform(e,n){return{top:Math.floor(.5*(2*e.top+e.height-n.height))}}}class np extends W{transform(e,n){return{left:Math.floor(this.transformX(e.left,e,n)+this.pad)}}}class rp extends W{transform(e,n){return{left:Math.floor(this.transformX(e.left,e,n)-n.width-this.pad)}}}class ip extends W{transform(e,n){const r=e.top+e.height+this.pad;return n.top<r?{top:r}:{}}}const Jo=36,qo=36;class ap extends W{transform(e,n){const r={};return this.boxDirections.top&&n.top<e.top+this.pad&&(r.top=e.top+this.pad,r.height=Math.max(n.height-(r.top-n.top),Jo)),this.boxDirections.left&&n.left<e.left+this.pad&&(r.left=e.left+this.pad,r.width=Math.max(n.width-(r.left-n.left),qo)),this.boxDirections.right&&n.left+n.width>e.left+e.width-this.pad&&(r.right=e.left+e.width-this.pad,r.width=Math.max(r.right-(r.left||n.left),qo)),this.boxDirections.bottom&&n.top+n.height>e.top+e.height-this.pad&&(r.bottom=e.top+e.height-this.pad,r.height=Math.max(r.bottom-(r.top||n.top),Jo)),r}}class op extends W{transform(e,n){const r={};return this.boxDirections.top&&n.top<e.top+this.pad&&(r.top=e.top+this.pad),this.boxDirections.left&&n.left<e.left+this.pad&&(r.left=e.left+this.pad),this.boxDirections.right&&n.left+n.width>e.left+e.width-this.pad&&(r.left=e.left+e.width-n.width-this.pad),this.boxDirections.bottom&&n.top+n.height>e.top+e.height-this.pad&&(r.top=e.top+e.height-n.height-this.pad),r}}class sp extends W{transform(e,n){const r={};return this.boxDirections.left&&e.left-this.pad<n.left&&(r.left=e.left-this.pad),this.boxDirections.right&&n.left+n.width<e.left+e.width+this.pad&&(r.left=e.width+this.pad-n.width+e.left),this.boxDirections.top&&e.top<n.top+this.pad&&(r.top=e.top-this.pad),this.boxDirections.bottom&&n.top+n.height<e.top+e.height+this.pad&&(r.top=e.height+this.pad-n.height+e.top),r}}const Qo={center(t,e){return Math.floor(t+.5*e.width)},right(t,e){return t+e.width},left(t){return t},bottom(t,e){return t+e.height}},Or={top:Yf,bottom:Zf,center:ep,middle:tp,left:np,right:rp,below:ip,"bounding box":op,"shrinking box":ap,"inverse bounding box":sp,default:W};function gn(t){return Qo[t]||Qo.left}class dp{type(e){return this._type=e,this}align(e,n){return this._transformX=gn(e),this._transformY=gn(n),this}pad(e){return this._pad=parseInt(e,10),this}boxDirections(e){return this._boxDirections=e,this}build(){const e=Or[this._type]?Or[this._type]:Or[w.Default];return new e(this._pad||0,this._boxDirections||{},this._transformX||gn(w.left),this._transformY||gn(w.left))}}class Ct{constructor(e,n){const{target:r,element:i,pad:a,boxDirections:o}=n,{horizontal:s,vertical:l}=n.targetAlign;this._element=i,this._targetElement=r,this.destroyed=!1,this._transformer=new dp().type(e).align(s,l).pad(a).boxDirections(o).build()}detach(){this._disabled=!0}attach(){this._disabled=!1}computeDisplacement(){return this._disabled||(this._targetElement.refresh(),this._element.refresh(),this._pendingBox=this._transformer.transform(this._targetElement,this._element)),this}computePosition(){const e=this._element;return this._disabled||Object.keys(this._pendingBox).forEach(n=>{e.setDirection(n,this._pendingBox[n])}),this}destroy(){this._element.release(),this._targetElement.release(),this._disabled=!0,this.destroyed=!0}}class lp{constructor(e,n){if(this.id=n,this.width=0,this.height=0,this.left=0,this.top=0,this.right=0,this.bottom=0,this._dirty=!1,this._node=null,this._releaseCb=null,!e)throw new Error("Element missing");S.isWindow(e)&&(e=S.window),this._node=e,this.setupObserver(),this.refresh()}setupObserver(){S.MutationObserver&&!this._node.isObserved&&(this._observer=new S.MutationObserver(this.refresh.bind(this)),S.isWindow(this._node)||(this._observer.observe(this._node,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),this._node.isObserved=!0))}setReleaseCallback(e,n){const r=n||this;this._releaseCb=e.bind(r)}checkNodeIsInDom(){return!!_r(this._node)}refresh(){const e=S.window;if(!this.isDirty()){if(!this.checkNodeIsInDom())return this.release();let n,r,i,a;if(typeof e.pageYOffset!="undefined"?(i=e.pageYOffset,a=e.pageXOffset):(i=e.scrollY,a=e.scrollX),S.isWindow(this._node))n={},this.width=S.documentElement.clientWidth,this.height=S.documentElement.clientHeight,this.left=a,this.top=i,this.right=S.documentElement.clientWidth+a,this.bottom=S.documentElement.clientHeight;else{this._node.offsetHeight,n=this._node.getBoundingClientRect();for(r in n)this[r]=Math.floor(n[r]);this.top=Math.floor(this.top+i),this.bottom=Math.floor(this.top+n.height),this.left=Math.floor(this.left+a),this.right=Math.floor(this.left+n.width)}this._dirty=!1}return this._dirty}getNode(){return this._node}isDirty(){return this._dirty}bake(){const e=S.window,n=this._node.getBoundingClientRect(),r=e.getComputedStyle(this._node)||this._node.style,i=typeof e.pageYOffset!="undefined",a=i?e.pageYOffset:e.scrollY,o=i?e.pageXOffset:e.scrollX,s=r.left.match(/auto|fixed/)?"0":parseInt(r.left.replace("px",""),10),l=r.top.match(/auto|fixed/)?"0":parseInt(r.top.replace("px",""),10),d=this.top<n.top?Wo(r.marginBottom):Wo(r.marginTop)*-1;let h=Math.round(this.left-(n.left+o));const m=this.top-(n.top+d+a),g=e.innerWidth||document.body.clientWidth;let b=parseInt(r.right,10);s+h+parseInt(r.width,10)>g&&b<=0&&(b=b<0?-b:h,this._node.style.right=-b+"px",h=0),this._node.style.left=`${s+h}px`,this._node.style.top=`${l+m}px`,this._restoreSize&&(this.originalHeight===void 0&&(this.originalHeight=this._node.style.height),this.originalWidth===void 0&&(this.originalWidth=this._node.style.width),this._node.style.width=`${this.width}px`,this._node.style.height=`${this.height}px`),this._dirty=!1}setDirection(e,n){this[e]=n,this._dirty=!0,(e==="height"||e==="width")&&(this._restoreSize=!0)}release(){this._restoreSize&&(this._node.style.width=this.originalWidth,this._node.style.height=this.originalHeight,this._removeMinHeight&&(this._node.style.minHeight="")),this._releaseCb&&this._releaseCb(this),this._observer&&(this._observer.disconnect(),this._observer=null)}querySelectorAll(e){return this._node.querySelectorAll(e)}}class Xo{constructor(){this.proxyCache={}}get count(){return Object.keys(this.proxyCache).length}releaseOrphanProxies(){for(const e in this.proxyCache)this.proxyCache[e].el.checkNodeIsInDom()||this.proxyCache[e].el.release()}bakeOff(){for(const e in this.proxyCache)this.proxyCache[e].el.isDirty()&&this.proxyCache[e].el.bake()}getReferenceCount(e){const n=e.id;return!n||!this.proxyCache[n]?0:this.proxyCache[n].refCount}release(e){const n=this.proxyCache[e.id];n&&--n.refCount,n&&n.refCount<=0&&delete this.proxyCache[e.id]}reset(){this.proxyCache={}}create(e){let n="window";if(S.isWindow(e)||(n=e?e.getAttribute(He):null,_e(n&&e.nodeType&&(e.nodeType!==1||e.nodeType!==11),`Element Proxy requires an element and has property ${He}`)),this.proxyCache[n])return this.proxyCache[n].refCount++,this.proxyCache[n].el;const r=new lp(e,n);return r.setReleaseCallback(up,r),this.proxyCache[n]={el:r,refCount:1},Ff(0).then(()=>{this.releaseOrphanProxies()}),this.proxyCache[n].el}}p.registerDecorators(Xo,{fields:["proxyCache"]});const Cr=new Xo;function cp(){Cr.bakeOff()}function up(t){return Cr.release(t)}function bn(t){return Cr.create(t)}class Yo{constructor(){this.callbacks=[],this.repositionScheduled=!1,this._constraints=[],this.timeoutId=0,this.lastIndex=km(),this.eventsBound=!1}get nextIndex(){return this.lastIndex++}get constraints(){return this._constraints}set constraints(e){this._constraints=this._constraints.concat(e)}dispatchRepositionCallbacks(){for(;this.callbacks.length>0;)this.callbacks.shift()()}add(e){return typeof e=="function"?(this.callbacks.push(e),!0):!1}scheduleReposition(e){this.timeoutId===0&&(this.timeoutId=setTimeout(()=>{this.reposition(e)},10))}reposition(e){typeof e=="function"&&this.callbacks.push(e),clearTimeout(this.timeoutId),this.timeoutId=0,this.repositionScheduled||(requestAnimationFrame(()=>{this.repositionScheduled=!1,this._constraints=this._constraints.filter(n=>n.destroyed?!1:(n.computeDisplacement().computePosition(),!0)),cp(),this.dispatchRepositionCallbacks()}),this.repositionScheduled=!0)}get repositioning(){return this._reposition||(this._reposition=this.scheduleReposition.bind(this)),this._reposition}bindEvents(){this.eventsBound||(window.addEventListener("resize",this.repositioning),window.addEventListener("scroll",this.repositioning),this.eventsBound=!0)}detachEvents(){window.removeEventListener("resize",this.repositioning),window.removeEventListener("scroll",this.repositioning),this.eventsBound=!1}rebase(e){this.lastIndex<=e&&(this.lastIndex=e+1)}}p.registerDecorators(Yo,{fields:["callbacks","repositionScheduled","_constraints","timeoutId","lastIndex","eventsBound"]});const qe=new Yo;function Zo(t){qe.scheduleReposition(t)}function hp(){qe.bindEvents()}function mp(t){qe.constraints=t}function es(t){qe.reposition(t)}function fp(){return qe.nextIndex}function ts(t){return qe.rebase(t)}class pp{constructor(e,n,r,i){this.config=e,this.constraintList=n,this.scrollableParent=r,this.observer=i}disable(){this.constraintList.forEach(e=>{e.detach()})}enable(){this.constraintList.forEach(e=>{e.attach()})}destroy(){for(this.config.removeListeners&&(this.config.removeListeners(),this.config.removeListeners=void 0);this.constraintList.length>0;)this.constraintList.pop().destroy();if(this.config.appendToBody&&this.config.element){const e=document.querySelector(`[${He}="${this.config.element.getAttribute(He)}"]`);e&&e.parentNode.removeChild(e)}this.observer&&(this.observer.disconnect(),this.observer=null)}reposition(){return new Promise(e=>{es(()=>{e()})})}}const L={NONE:"none",MODAL:"uiModal",DIALOG:"lightning-dialog",POPOVER:"lightning-popover",PANEL:"uiPanel",SLDSMODAL:"slds-modal"};function gp(t){return t.localName===L.DIALOG?L.DIALOG:t.localName===L.POPOVER?L.POPOVER:t.classList&&t.classList.contains(L.MODAL)?L.MODAL:t.classList&&t.classList.contains(L.PANEL)?L.PANEL:t.classList&&t.classList.contains(L.SLDSMODAL)?L.SLDSMODAL:L.NONE}function ns(t){if(!t)return{isInside:!1,type:null,overlay:null};const e=gp(t);return e!==L.NONE?{isInside:!0,type:e,overlay:t}:t.parentNode?ns(Ot(t.parentNode)?t.parentNode.host:t.parentNode):{isInside:!1,type:null,overlay:null}}class rs{constructor(e){this._element=e,this._detection=ns(this._element)||{isInside:!1,overlay:null}}get isInsideModal(){return this.isInside&&(this._detection.type===L.MODAL||this._detection.type===L.DIALOG||this._detection.type===L.SLDSMODAL)}get isInside(){return this._detection.isInside}get overlay(){return this._detection.overlay}}const bp="1.875rem";function vp(t,e){const n=t.element;let r=null;return S.MutationObserver&&!n.isObserved&&(r=new S.MutationObserver(()=>{}),r.observe(n,{attributes:!0,subtree:!0,childList:!0}),n.isObserved=!0),e&&(e.addEventListener("scroll",Zo),t.removeListeners=()=>{e.removeEventListener("scroll",Zo)}),r}function yp(t){_e(t.element&&Bo(t.element),"Element is undefined or missing, or not a Dom Node"),_e(t.target&&(S.isWindow(t.target)||Bo(t.target)),"Target is undefined or missing")}function is(t,e,n){hp();let r=Lf(Uf(t.target),S.window);!r&&n&&(r=xf(n));const i=Ep(r,t);i.alignWidth&&i.element.style.position==="fixed"&&(i.element.style.width=i.target.getBoundingClientRect().width+"px");const a=[],o=vp(i,r);i.appendToBody&&document.body.appendChild(i.element),i.element=bn(i.element),i.target=bn(i.target);const s=Object.assign({},i);s.padLeft!==void 0&&(s.pad=s.padLeft);const l=Object.assign({},i);l.padTop!==void 0&&(l.pad=l.padTop),a.push(new Ct(qf(i.align.horizontal),s)),a.push(new Ct(Qf(i.align.vertical),l));const d=i.autoShrink.height||i.autoShrink.width;if(i.scrollableParentBound&&r){const h=pn(r),m={element:i.element,enabled:i.enabled,target:bn(h),align:{},targetAlign:{},pad:3,boxDirections:{top:!0,bottom:!0,left:!0,right:!0}};if(d){const g=m.element.getNode().style;g.minHeight||(g.minHeight=i.minHeight,m.element._removeMinHeight=!0),m.boxDirections={top:!!i.autoShrink.height,bottom:!!i.autoShrink.height,left:!!i.autoShrink.width,right:!!i.autoShrink.width},a.push(new Ct("shrinking box",m))}else a.push(new Ct("bounding box",m))}return i.keepInViewport&&a.push(new Ct("bounding box",{element:i.element,enabled:i.enabled,target:bn(window),align:{},targetAlign:{},pad:3,boxDirections:{top:!0,bottom:!0,left:!0,right:!0}})),mp(a),e||es(),new pp(i,a,r,o)}function wp(t){return t.autoFlip||t.autoFlipHorizontal}function Tp(t){return t.autoFlip||t.autoFlipVertical}function Pp(t,e){const n={horizontal:t.align.horizontal,vertical:t.align.vertical},r={horizontal:t.targetAlign.horizontal,vertical:t.targetAlign.vertical};document.dir==="rtl"&&(n.horizontal=Je(n.horizontal),r.horizontal=Je(r.horizontal));let i=!1;Tp(t)&&(n.vertical===w.Bottom?i=!e.hasSpaceAbove&&e.hasSpaceBelow:n.vertical===w.Top?i=e.hasSpaceAbove&&!e.hasSpaceBelow:n.vertical===w.Center&&(e.centerOverflow.top&&!e.centerOverflow.bottom?n.vertical=r.vertical=w.Top:e.centerOverflow.bottom&&!e.centerOverflow.top&&(n.vertical=r.vertical=w.Bottom)));let a=!1;return wp(t)&&(n.horizontal===w.Left?a=e.shouldAlignToRight&&!e.shouldAlignToLeft:n.horizontal===w.Right?a=e.shouldAlignToLeft&&!e.shouldAlignToRight:n.horizontal===w.Center&&(e.centerOverflow.left&&!e.centerOverflow.right?n.horizontal=r.horizontal=w.Left:e.centerOverflow.right&&!e.centerOverflow.left&&(n.horizontal=r.horizontal=w.Right))),{align:{horizontal:a?Je(n.horizontal):Ce(n.horizontal,w.Left),vertical:i?Je(n.vertical):Ce(n.vertical,w.Top)},targetAlign:{horizontal:a?Je(r.horizontal):Ce(r.horizontal,w.Left),vertical:i?Je(r.vertical):Ce(r.vertical,w.Bottom)}}}function Ep(t,e){e.align=e.align||{},e.targetAlign=e.targetAlign||{};const n=Xf(e.overlay.isInside?null:t,e.element,e.target,e.leftAsBoundary),{align:r,targetAlign:i}=Pp(e,n);return e.isInsideModal&&!n.hasSpaceAbove&&!n.hasSpaceBelow&&(e.scrollableParentBound=!0),{target:e.target,element:e.element,align:r,targetAlign:i,alignWidth:e.alignWidth,scrollableParentBound:e.scrollableParentBound,keepInViewport:e.keepInViewport,pad:e.pad,padTop:e.padTop,padLeft:e.padLeft,autoShrink:{height:e.autoShrink||e.autoShrinkHeight,width:e.autoShrink||e.autoShrinkWidth},minHeight:e.minHeight||bp}}function as(t,e){return e&&typeof e=="string"?t.querySelector(e):e&&typeof e=="function"?e():e}function _p(t,e,n){_e(t,"Root is undefined or missing"),_e(e,"Config is undefined or missing");const r=pn(t),i=as(r,e.target),a=as(r,e.element);if(!i||!a)return null;e.target=pn(i),e.element=pn(a);const o=new rs(e.element);if(e.isInsideModal=o.isInsideModal,e.isInsideModal&&o.overlay){const h=parseInt(o.overlay.style.zIndex,10);ts(h)}const s=new rs(e.target);if(s.isInsideModal&&s.overlay){const h=parseInt(s.overlay.style.zIndex,10);ts(h)}const l=Gf(e.element,o,fp(),e.target,e.alignWidth);e.element=l.element,e.overlay=l.overlay,yp(e);const d=is(e,n);return t.dispatchEvent(new CustomEvent("privatescrollablecontainer",{composed:!0,bubbles:!0,detail:{callback:h=>{var m=is(e,n,h);d.config.align.horizontal=m.config.align.horizontal,d.config.align.vertical=m.config.align.vertical}}})),d}function Op(t){t&&t.destroy()}class os{constructor(e){this._autoPositionUpdater=null,this._root=e}start(e){return Vf().then(()=>{let n=Promise.resolve();return this._autoPositionUpdater?n=n.then(()=>this._autoPositionUpdater.reposition()):this._autoPositionUpdater=_p(this._root,e),n.then(()=>this._autoPositionUpdater)})}stop(){return this._autoPositionUpdater&&(Op(this._autoPositionUpdater),this._autoPositionUpdater=null),Promise.resolve()}}p.registerDecorators(os,{fields:["_autoPositionUpdater"]});function Cp(t,e,n){var r=t?"["+t+"]":"";return["*",r,",",r,"::before,",r,"::after {box-sizing: border-box;}h1",r,",h2",r,",h3",r,",h4",r,",h5",r,",h6",r," {font-weight: var(--sds-s-heading-font-weight, inherit);margin-block-start: var(--sds-s-heading-spacing-block-start, var(--sds-s-heading-spacing-block));margin-block-end: var(--sds-s-heading-spacing-block-end, var(--sds-s-heading-spacing-block));font-size: 1em;}a",r," {color: var(--slds-g-link-color, var(--slds-g-color-brand-base-50, #0176d3));text-decoration: var(--_slds-g-font-decoration, none);transition: color 0.1s linear;background-color: transparent;}a:active",r,",a:hover",r," {outline: 0;}a:hover",r,",a:focus",r," {text-decoration: var(--_slds-g-font-decoration-hover, underline);color: var(--slds-g-link-color-hover, var(--slds-g-color-brand-base-30, #014486));}a:active",r," {color: var(--slds-g-link-color-active, var(--slds-g-color-brand-base-30, #014486));}a:focus-visible",r," {outline-color: var(--_slds-g-color-outline, var(--slds-g-color-brand-base-50, #0176d3));}a:focus",r," {box-shadow: var(--_slds-g-shadow);border-color: var(--_slds-g-color-border);border-width: var(--_slds-g-sizing-border);border-style: var(--_slds-g-style-border);outline: var(--_slds-g-font-decoration-hover);}a",r,",button",r," {cursor: pointer;}p",r,` {margin-block-start: var(--sds-s-content-spacing-block-start, |
| | | var(--sds-s-content-spacing-block, 0));margin-block-end: var(--sds-s-content-spacing-block-end, |
| | | var(--sds-s-content-spacing-block, 0));margin-inline-start: 0;margin-inline-end: 0;padding-block-start: 0;padding-block-end: 0;padding-inline-start: 0;padding-inline-end: 0;}ol`,r,",ul",r,` {list-style: none;padding: 0;margin-block-start: var(--sds-s-content-spacing-block-start, |
| | | var(--sds-s-content-spacing-block));margin-block-end: var(--sds-s-content-spacing-block-end, |
| | | var(--sds-s-content-spacing-block));}button`,r,",[type='button']",r,",[type='reset']",r,",[type='submit']",r," {-webkit-appearance: button;appearance: button;cursor: pointer;}[type='search']",r," {-webkit-appearance: textfield;outline-offset: -2px;}[type=search]",r,"::-webkit-search-decoration,[type=search]",r,"::-webkit-search-cancel-button,[type=search]",r,"::-webkit-search-results-button,[type=search]",r,"::-webkit-search-results-decoration {display: none;}select",r," {color: inherit;font: inherit;margin: 0;}input:focus",r,",button:focus",r,",select:focus",r,",textarea:focus",r," {outline-offset: 0;}",r,"::-moz-focus-inner {border-style: none;padding: 0;}",r,"::-webkit-search-decoration {-webkit-appearance: none;}",r,"::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}:-moz-focusring",r," {outline: 1px dotted ButtonText;}:-moz-ui-invalid",r," {box-shadow: none;}code",r,",kbd",r,",samp",r,",pre",r," {font-family: var(--sds-g-font-family-monospace, monospace);font-size: var(--sds-g-font-size-base, 1rem);}img",r,",[type='image']",r," {max-width: 100%;height: auto;border: 0;vertical-align: middle;}iframe",r," {border-style: none;}svg:not([fill])",r," {fill: currentColor;}abbr[title]",r," {text-decoration: none;cursor: help;}table",r," {border-collapse: collapse;border-spacing: 0;border: 0;width: 100%;}hr",r," {display: block;margin: var(--sds-g-spacing-6, 2rem) 0;border-top: var(--sds-g-sizing-border-1, 1px) solid var(--slds-g-color-border-base-1, #c9c9c9);height: var(--sds-g-sizing-border-1, 1px);clear: both;box-sizing: content-box;border: 0;padding: 0;}abbr[title]",r," {border-bottom: var(--sds-g-sizing-border-1, 1px) dotted;text-decoration: none;border: 0;cursor: help;}caption",r,",th",r,",td",r," {text-align: left;}td",r,",th",r," {padding: 0;}dl",r," {margin: 0;padding: 0;}dd",r," {margin: 0;}pre",r," {overflow: auto;}mark",r," {background-color: #ff0;color: #000;}small",r," {font-size: 80%;}sub",r,",sup",r," {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sup",r," {top: -0.5em;}sub",r," {bottom: -0.25em;}b",r,",strong",r,",dfn",r," {font-weight: var(--sds-g-font-weight-7, 700);}b",r,",strong",r," {font-weight: var(--sds-g-font-weight-bold, bold);}"].join("")}var Sp=[Cp];function Np(t,e,n){var r=t?"["+t+"]":"",i=t?"["+t+"-host]":"";return[e?`:host([data-render-mode="shadow"]) [part~='overlay']`:i+`[data-render-mode="shadow"] [part~='overlay']`,r,` {background-color: var( |
| | | --sds-c-overlay-color-background, |
| | | var(--sds-s-popup-color-background, var(--sds-g-color-neutral-base-1)) |
| | | );color: var( |
| | | --sds-c-overlay-text-color, |
| | | var(--sds-s-popup-text-color, var(--sds-g-color-neutral-base-contrast-4)) |
| | | );border-radius: var( |
| | | --sds-c-overlay-radius-border, |
| | | var(--sds-s-popup-radius-border, var(--sds-g-radius-border-2, 0.25rem)) |
| | | );border-width: var( |
| | | --sds-c-overlay-sizing-border, |
| | | var(--sds-s-popup-sizing-border, var(--sds-g-sizing-border-1, 1px)) |
| | | );border-color: var( |
| | | --sds-c-overlay-color-border, |
| | | var(--sds-s-popup-color-border, var(--sds-g-color-border-base-1, #c9c9c9)) |
| | | );box-shadow: var(--sds-c-overlay-shadow, var(--sds-s-popup-shadow, var(--sds-g-shadow-1, 0 0 2px 0 #18181814, 0 2px 4px 1px #18181828)));padding-left: var( |
| | | --sds-c-overlay-spacing-inline-start, |
| | | var(--sds-c-overlay-spacing-inline, var(--sds-s-popup-spacing-inline, var(--sds-g-spacing-3, 0.75rem))) |
| | | );padding-right: var( |
| | | --sds-c-overlay-spacing-inline-end, |
| | | var(--sds-c-overlay-spacing-inline, var(--sds-s-popup-spacing-inline, var(--sds-g-spacing-3, 0.75rem))) |
| | | );padding-top: var( |
| | | --sds-c-overlay-spacing-block-start, |
| | | var(--sds-c-overlay-spacing-block, var(--sds-s-popup-spacing-block, var(--sds-g-spacing-3, 0.75rem))) |
| | | );padding-bottom: var( |
| | | --sds-c-overlay-spacing-block-end, |
| | | var(--sds-c-overlay-spacing-block, var(--sds-s-popup-spacing-block, var(--sds-g-spacing-3, 0.75rem))) |
| | | );}@supports (--styling-hooks: '') {`,e?`:host([data-render-mode="shadow"]) [part~='overlay']`:i+`[data-render-mode="shadow"] [part~='overlay']`,r,` {--sds-c-overlay-color-background: var(--slds-c-tooltip-color-background, #032d60);--sds-c-overlay-text-color: var(--slds-c-tooltip-text-color, #fff);--sds-c-overlay-radius-border: var(--slds-c-tooltip-radius-border, 0.25rem);--sds-c-overlay-sizing-border: var(--slds-c-tooltip-sizing-border, 0);--sds-c-overlay-color-border: var(--slds-c-tooltip-color-border);--sds-c-overlay-shadow: var(--slds-c-tooltip-shadow, 0 2px 3px 0 rgb(0 0 0 / 16%));--sds-c-overlay-spacing-inline-start: var( |
| | | --slds-c-tooltip-spacing-inline-start, |
| | | var(--sds-c-tooltip-spacing-inline, 0.75rem) |
| | | );--sds-c-overlay-spacing-inline-end: var( |
| | | --slds-c-tooltip-spacing-inline-end, |
| | | var(--sds-c-tooltip-spacing-inline, 0.75rem) |
| | | );--sds-c-overlay-spacing-block-start: var( |
| | | --slds-c-tooltip-spacing-block-start, |
| | | var(--sds-c-tooltip-spacing-block, 0.5rem) |
| | | );--sds-c-overlay-spacing-block-end: var( |
| | | --slds-c-tooltip-spacing-block-end, |
| | | var(--sds-c-tooltip-spacing-block, 0.5rem) |
| | | );font-size: var(--slds-c-tooltip-font-size, 0.75rem);max-width: var(--slds-c-tooltip-sizing-width-max, 20rem);position: relative;}}`,e?`:host([data-render-mode="shadow"]) [part~='overlay']`:i+`[data-render-mode="shadow"] [part~='overlay']`,r,"::after {box-shadow: -1px -1px 0 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top':i+'[data-render-mode="shadow"] .slds-nubbin_top',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top':i+'[data-render-mode="shadow"] .slds-nubbin_top',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::after {left: 1.5rem;top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;top: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::after {left: auto;right: 1.5rem;top: -0.5rem;margin-right: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom':i+'[data-render-mode="shadow"] .slds-nubbin_bottom',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom':i+'[data-render-mode="shadow"] .slds-nubbin_bottom',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom':i+'[data-render-mode="shadow"] .slds-nubbin_bottom',r,"::after {-webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {-webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {left: 1.5rem;top: 100%;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;left: 50%;bottom: -0.5rem;margin-left: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {-webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {left: auto;right: 1.5rem;top: 100%;margin-top: -0.5rem;margin-right: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left':i+'[data-render-mode="shadow"] .slds-nubbin_left',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left':i+'[data-render-mode="shadow"] .slds-nubbin_left',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left':i+'[data-render-mode="shadow"] .slds-nubbin_left',r,"::after {-webkit-box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {-webkit-box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {top: 1.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;left: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::before {margin-bottom: -1px;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {-webkit-box-shadow: -1px 2px 3px 0 rgba(0, 0, 0, 0.16);box-shadow: -1px 2px 3px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {top: auto;bottom: 1rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right':i+'[data-render-mode="shadow"] .slds-nubbin_right',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right':i+'[data-render-mode="shadow"] .slds-nubbin_right',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right':i+'[data-render-mode="shadow"] .slds-nubbin_right',r,"::after {-webkit-box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {-webkit-box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {top: 1.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::before {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {width: 1rem;height: 1rem;position: absolute;transform: rotate(45deg);content: '';background-color: inherit;top: 50%;right: -0.5rem;margin-top: -0.5rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::before {margin-bottom: -1px;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {-webkit-box-shadow: 2px -1px 3px 0 rgba(0, 0, 0, 0.16);box-shadow: 2px -1px 3px 0 rgba(0, 0, 0, 0.16);z-index: -1;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom'+r+'::after,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom'+r+"::after,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {top: auto;bottom: 1rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r," {border-radius: 0.125rem 0.25rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-left-corner',r,"::after {left: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r," {border-radius: 0.25rem 0.25rem 0.25rem 0.125rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-left-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-left-corner',r,"::after {left: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r," {border-radius: 0.25rem 0.125rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_top-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_top-right-corner',r,"::after {right: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r," {border-radius: 0.25rem 0.25rem 0.125rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_bottom-right-corner':i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_bottom-right-corner',r,"::after {right: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r," {border-radius: 0.125rem 0.25rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-top-corner',r,"::after {top: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r," {border-radius: 0.25rem 0.125rem 0.25rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-top-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-top-corner',r,"::after {top: 0.75rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r," {border-radius: 0.25rem 0.25rem 0.25rem 0.125rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_left-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_left-bottom-corner',r,"::after {bottom: 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r," {border-radius: 0.25rem 0.25rem 0.125rem 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner'+r+'::before,:host([data-render-mode="shadow"]) .slds-nubbin_right-bottom-corner':i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner'+r+"::before,"+i+'[data-render-mode="shadow"] .slds-nubbin_right-bottom-corner',r,"::after {bottom: 0.25rem;}",e?':host([data-render-mode="shadow"]) .slds-rise-from-ground':i+'[data-render-mode="shadow"] .slds-rise-from-ground',r," {visibility: visible;opacity: 1;transform: translate(0%, 0%);transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear;will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-fall-into-ground':i+'[data-render-mode="shadow"] .slds-fall-into-ground',r," {visibility: hidden;opacity: 0;transform: translate(0%, 0%);transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear;will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-bottom-to-top':i+'[data-render-mode="shadow"] .slds-slide-from-bottom-to-top',r," {transform: translateY(10%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-top-to-bottom':i+'[data-render-mode="shadow"] .slds-slide-from-top-to-bottom',r," {transform: translateY(-10%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-right-to-left':i+'[data-render-mode="shadow"] .slds-slide-from-right-to-left',r," {transform: translateX(5%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-slide-from-left-to-right':i+'[data-render-mode="shadow"] .slds-slide-from-left-to-right',r," {transform: translateX(-5%);will-change: transform;}",e?':host([data-render-mode="shadow"]) .slds-hide':i+'[data-render-mode="shadow"] .slds-hide',r," {display: none;}"].join("")}var Ap=[Np];function Mp(t,e,n){var r=t?"["+t+"]":"";return".fix-popover_tooltip_alignment"+r+" {min-width: inherit;}"}var ss=[Sp,Ap,Mp];const Rp={part:"overlay"},Ip={"slds-popover__body":!0},Dp={lwc:{dom:"manual"}};function Qe(t,e,n,r){const{b:i,h:a}=t,{_m0:o,_m1:s}=r;return[a("div",{className:e.computedPopoverClass,attrs:Rp,key:0,on:{transitionend:o||(r._m0=i(e.handleTransitionEnd))}},[a("div",{classMap:Ip,context:Dp,key:1,on:{mouseleave:s||(r._m1=i(e.handleMouseLeave))}})])]}var kp=p.registerTemplate(Qe);Qe.stylesheets=[],ss&&Qe.stylesheets.push.apply(Qe.stylesheets,ss),Qe.stylesheetToken="lightning-primitiveBubble_primitiveBubble",p.freezeTemplate(Qe);const $p=[];function vn(t,e,n,r){return $p}var Lp=p.registerTemplate(vn);vn.stylesheets=[],vn.stylesheetToken="lightning-shadowBaseClassPrivate_shadowBaseClassPrivate",p.freezeTemplate(vn);class ds extends p.LightningElement{connectedCallback(){this.template.synthetic||this.setAttribute("data-render-mode","shadow")}}ds.shadowSupportMode="any";var xp=p.registerComponent(ds,{tmpl:Lp,sel:"lightning-shadowBaseClassPrivate"});const jp={horizontal:"left",vertical:"bottom"};class ls extends xp{constructor(...e){super(...e);this.state={visible:!1,hidden:!0,contentId:""},this.disableVisibilityChangeOnLeave=void 0}get contentId(){return this.state.contentId}set contentId(e){this.state.contentId=e,this.state.inDOM&&this.divEl.setAttribute("id",this.state.contentId)}connectedCallback(){super.connectedCallback(),this.setAttribute("role","tooltip"),this.state.inDOM=!0}disconnectedCallback(){this.state.inDOM=!1}renderedCallback(){this.setContentManually(),this.setIdManually()}set content(e){this.state.content=e,this.state.inDOM&&this.setContentManually()}get content(){return this.state.content||""}get align(){return this.state.align||jp}set align(e){this.state.align=e}get visible(){return this.state.visible}set visible(e){this.state.visible=e,this.state.visible&&(this.state.hidden=!1)}handleTransitionEnd(){this.state.visible||(this.state.hidden=!0)}setIdManually(){this.setAttribute("id",this.state.contentId)}setContentManually(){this.template.querySelector(".slds-popover__body").textContent=this.state.content}get computedPopoverClass(){const e=Ym("slds-popover").add("slds-popover_tooltip").add("fix-popover_tooltip_alignment");e.add({"slds-rise-from-ground":this.visible,"slds-fall-into-ground":!this.visible,"slds-hide":this.state.hidden});const{horizontal:n,vertical:r}=this.align;return e.add({"slds-nubbin_top-left":n==="left"&&r==="top","slds-nubbin_top-right":n==="right"&&r==="top","slds-nubbin_bottom-left":n==="left"&&r==="bottom","slds-nubbin_bottom-right":n==="right"&&r==="bottom","slds-nubbin_bottom":n==="center"&&r==="bottom","slds-nubbin_top":n==="center"&&r==="top","slds-nubbin_left":n==="left"&&r==="center","slds-nubbin_right":n==="right"&&r==="center"}),e.toString()}handleMouseLeave(){this.disableVisibilityChangeOnLeave||(this.visible=!1)}}p.registerDecorators(ls,{publicProps:{disableVisibilityChangeOnLeave:{config:0},contentId:{config:3},content:{config:3},align:{config:3},visible:{config:3}},track:{state:1}});var Fp=p.registerComponent(ls,{tmpl:kp,sel:"lightning-primitiveBubble"});const Up=` |
| | | position: absolute; |
| | | width: 1px; |
| | | height: 1px; |
| | | padding: 0; |
| | | margin: -1px; |
| | | overflow: hidden; |
| | | clip: rect(0,0,0,0); |
| | | border: 0; |
| | | `;let Sr=!1;const Nr=[];function Kp(){const t=[...Nr].sort((e,n)=>e.priority-n.priority);Nr.length=0,Sr=!1,t.forEach(({callback:e})=>e())}function cs(t,e){Nr.push({callback:e,priority:t}),!Sr&&(Sr=!0,Promise.resolve().then(Kp))}function us(t){if(t.shadowRoot)return t.shadowRoot.childNodes;if(typeof t.assignedNodes=="function"){const e=t.assignedNodes();return e.length?e:t.childNodes}return t.childNodes}function zp(t){if(typeof t.assignedNodes!="function"&&t.assignedSlot&&t.assignedSlot.parentElement)return t.assignedSlot.parentElement;if(t.parentElement)return t.parentElement;const e=t.getRootNode();return e!==document?e.host:null}function hs(t,e){let n=t;for(;n!=null;)if(n=zp(n),n===e)return!0;return!1}class Gp{constructor(e){this._observers=[],this._callbacks=[];const n=[],r=a=>n.some(o=>o.contains(a)),i=a=>{if(!r(a)){n.push(a);const o=new MutationObserver(()=>this._mutationCallback());o.observe(a,{subtree:!0,attributes:!0,childList:!0,characterData:!0}),this._observers.push(o)}us(a).forEach(o=>i(o))};i(e)}onMutation(e){this._callbacks.push(e)}_mutationCallback(){cs(0,()=>this._callbacks.forEach(e=>e()))}disconnect(){this._observers.forEach(e=>e.disconnect()),this._observers=void 0,this._callbacks=void 0}}function Vp(t){const e=new Map;return t.forEach(n=>{const{fromNode:r}=n,i=r.getRootNode();let a=e.get(i);a||(a={relationships:[],redundantChildNodes:new Set},e.set(i,a)),a.relationships.push(n)}),e.forEach(n=>{const{relationships:r,redundantChildNodes:i}=n,a=r.map(o=>o.toNodes).flat();for(let o=0;o<a.length;o++)for(let s=o+1;s<a.length;s++){const l=a[o],d=a[s];l&&d&&o!==s&&(hs(l,d)?i.add(l):hs(d,l)&&i.add(d))}}),e}function ms(t){const e={},{attributes:n}=t;for(let r=0;r<n.length;r++){const i=n[r];e[i.name]=i.value}return e}const fs=new WeakMap;function Bp(){return"shadow-aria-"+Math.floor(Math.random()*1e9).toString(16)}function Wp(t){let e=fs.get(t);return e||(e=Bp(),fs.set(t,e)),e}const Hp=new Set(["a","audio","button","details","input","select","summary","textarea","video"]);function Jp(t,e){t&&e&&qp(t,e)}function qp(t,e){t.addEventListener("focus",n=>{n.preventDefault(),n.stopImmediatePropagation(),e.dispatchEvent(new n.constructor(n.type,n)),e.focus()})}const Qp=["display","visibility"];function Xp(t,e){if(t.nodeType===Node.TEXT_NODE)return e&&e.nodeType===Node.TEXT_NODE?(e.textContent!==t.textContent&&(e.textContent=t.textContent),e):t.cloneNode();if(t.nodeType!==Node.ELEMENT_NODE)return document.createComment("shadow-aria-deleted");let{tagName:n}=t;if(["style","link","script"].includes(n.toLowerCase()))return document.createComment("shadow-aria-deleted");(n.includes("-")||n.toLowerCase()==="slot")&&(n="div");let r,i;e&&e.nodeType===Node.ELEMENT_NODE&&e.tagName.toLowerCase()===n.toLowerCase()?(i=e,r=ms(i)):i=document.createElement(n);const a=Object.fromEntries([...Object.entries(ms(t))].filter(([l])=>l.toLowerCase().startsWith("aria-")||l.toLowerCase()==="role")),o=getComputedStyle(t);let s="";return Qp.forEach(l=>s+=`${l}:${o[l]};`),o?.display!=="contents"&&(a.id=Wp(t)),a.style=s,Hp.has(n.toLowerCase())&&(a.tabindex="-1"),Object.entries(a).forEach(([l,d])=>{(!r||r[l]!==d)&&i.setAttribute(l,d)}),r&&Object.keys(r).forEach(l=>{l in a||i.removeAttribute(l)}),Jp(i,t),i}function Yp(t,e,n){const r=new Map,i=(o,s)=>{const l=Xp(o,s);if(l.nodeType===Node.COMMENT_NODE)return l;n.has(o)&&r.set(o,l);const d=us(o);if(s&&s.childNodes.length===d.length)for(let h=0;h<d.length;h++){const m=s.childNodes[h],g=d[h],b=i(g,m);b!==m&&s.replaceChild(b,m)}else{if(s)for(;s.childNodes.length;)s.childNodes[s.childNodes.length-1].remove();d.forEach(h=>{const m=i(h,null);l.appendChild(m)})}return l};return{mirroredNode:i(t,e),trackedNodesToMirroredNodes:r}}function ps(t,e,n){const r=e.map(s=>s.getAttribute("id")),i=Zp(t.getAttribute(n)),a=r.filter(s=>!i.includes(s)),o=i.filter(s=>!r.includes(s));return t.setAttribute(n,r.join(" ")),{linkedNodeIds:a,unlinkedNodeIds:o}}function Zp(t){return t?t.trim().split(/\s+/):[]}const e1=["aria-activedescendant","aria-errormessage"],gs=new WeakMap,Ar=[];function t1(t,e){const n=n1(t);r1(n,e),i1(n,e)}function n1(t){let e=gs.get(t);if(!e){const n=document.createElement("div");n.setAttribute("class","aria-element-reflection-mirror"),n.setAttribute("style",Up),(t.body||t).appendChild(n),e={redundantChildNodes:new Set,nodesToMirroredNodes:new Map,mirrorRoot:n},gs.set(t,e)}return e}function r1(t,e){const{redundantChildNodes:n,nodesToMirroredNodes:r,mirrorRoot:i}=t;e.redundantChildNodes.forEach(o=>n.add(o)),new Set(e.relationships.map(({toNodes:o})=>o).flat().filter(Boolean).filter(o=>!n.has(o))).forEach(o=>{const s=new Set([...n,o]),{node:l=null,usage:d=0}=r.get(o)||{},{mirroredNode:h,trackedNodesToMirroredNodes:m}=Yp(o,l,s);h!==l&&(l&&i.removeChild(l),i.appendChild(h)),m.forEach((g,b)=>r.set(b,{node:g,usage:d}))})}function i1(t,e){const{nodesToMirroredNodes:n}=t;e.relationships.forEach(r=>{const{fromNode:i,toNodes:a,relationship:o,track:s,signal:l,mirrorOnly:d}=r;if(a?.length){if(!d){const h=a.map(b=>n.get(b).node),{linkedNodeIds:m,unlinkedNodeIds:g}=ps(i,h,o);bs(t,g,m),s&&a1(i,a,l)}}else{const{unlinkedNodeIds:h}=ps(i,[],o);bs(t,h),i.removeAttribute(o)}})}function bs(t,e,n=[]){const{nodesToMirroredNodes:r,mirrorRoot:i}=t;r.forEach((a,o)=>{n.includes(a.node.id)?a.usage++:e.includes(a.node.id)&&--a.usage<=0&&(r.delete(o),a.node.parentElement===i&&i.removeChild(a.node))})}function a1(t,e,n){e.forEach(r=>{const i=new Gp(r);i.onMutation(()=>{s1(t,[r])}),n&&n.addEventListener("abort",()=>{i.disconnect()})})}function o1(){const t=Vp(Ar);Ar.length=0,t.forEach((e,n)=>t1(n,e))}function s1(t,e){vs({fromNode:t,toNodes:e,mirrorOnly:!0})}function vs(t){Ar.push(t),cs(1,o1)}function d1(t,e){return Array.isArray(t)||(t=[t]),t=t.filter(Boolean),t.length>1&&e1.includes(e)&&(console.warn(`Multiple targets passed to aria relationship "${e}". This API only accepts a single target. Ignoring elements beyond the first one.`),t=t.slice(0,1)),t}function yn(t,e,n,r={}){const{track:i,signal:a}=r;e=d1(e,n),vs({fromNode:t,toNodes:e,relationship:n,track:i,signal:a})}function l1(t,e,n){yn(t,e,"aria-activedescendant",n)}function c1(t,e,n){yn(t,e,"aria-controls",n)}function u1(t,e,n){yn(t,e,"aria-describedby",n)}function h1(t,e,n){yn(t,e,"aria-labelledby",n)}const ys=new Map([["aria-controls",{ariaReflection:"ariaControlsElements",polyfill:c1}],["aria-labelledby",{ariaReflection:"ariaLabelledByElements",polyfill:h1}],["aria-describedby",{ariaReflection:"ariaDescribedByElements",polyfill:u1}],["aria-activedescendant",{ariaReflection:"ariaActiveDescendantElement",polyfill:l1}]]);function m1(t,e){return typeof e!="string"||e===""?[]:Mr(e).map(n=>t.querySelector(`#${n}`)).filter(n=>!!n)}function Mr(t){return t?(t+"").trim().split(/\s+/):[]}class f1{constructor(e){this.component=e,this.template=e.template,this.isNativeShadow=$m(e),this.state={},this.liveIds={},this.guid=No(),this.placeholderContainer=null}connectLiveIdRef(e,n){const r=(e+"").trim().split(/\s+/).map(a=>`[id*="${a}"]`).join(","),i={refs:e,selector:r,callback:n};this.liveIds[e]=i}connect({attribute:e,targetSelector:n,targetNode:r,relatedNodeIds:i,relatedNodes:a}){this.state[e]=this.state[e]||{};const o=this.state[e];o.targetNode=r,o.targetSelector=n,o.relatedNodes=(Array.isArray(a)?a:[a]).filter(Boolean),o.relatedNodeIds=Array.isArray(i)?i.join(" "):i,this.component.isConnected&&this.privateUpdate(e)}sync(e){if(e!=null&&(this.isNativeShadow=e),!this.component.isConnected)throw new Error("Invalid sync invocation. It can only be invoked during renderedCallback().");this.root||(this.root=this.template&&this.template.host?this.template.host.getRootNode():null),this.privateUpdateLiveIds();for(const n in this.state)Object.prototype.hasOwnProperty.call(this.state,n)&&this.privateUpdate(n)}get privateIsMoRequired(){return this.isNativeShadow||Object.keys(this.liveIds).length!==0}get root(){return this._root}set root(e){this._root=e,this._root&&this.privateIsMoRequired&&this.privateCreateMutationObserver()}privateUpdate(e){const{targetSelector:n,targetNode:r=this.template.querySelector(n),relatedNodeIds:i,relatedNodes:a}=this.state[e];if(!r)return;const o=ys.get(e);if(!o)throw new Error(`${e} is not supported by AriaObserver. Supported attributes: ${Array.from(ys.keys())}`);if(this.isNativeShadow){const s=[...a,...m1(this.root,i)];r[o.ariaReflection]?(o.polyfill(r,null,e),r[o.ariaReflection]=a):o.polyfill(r,s,e)}else Im(r,{[e]:[...Mr(i),...a.map(s=>s.id)].join(" ")})}privateExtractCorrectElements(e="",n){const i=`(${e.split(/\s/g).join("|")})`,a=new RegExp(`^${i}(-[0-9]+)$`);return[...n].filter(o=>a.test(o.id))}privateCreateMutationObserver(){this.disconnect(),this.mo=new MutationObserver(()=>{!this.component.isConnected||this.sync()}),this.mo.observe(this.root,{characterData:!0,childList:!0,subtree:!0})}privateExtractIds(e){return e.map(n=>n.getAttribute("id")).join(" ")}privateUpdateLiveIds(){const e=this.template&&this.template.host?this.template.host.getRootNode():null;if(!!e){for(const n in this.liveIds)if(Object.prototype.hasOwnProperty.call(this.liveIds,n)){const r=this.liveIds[n];if(!r.elements||!r.elements.length){const o=Mr(n),s=[...e.querySelectorAll(r.selector)];r.elements=s.sort((l,d)=>{const h=l.getAttribute("id")?.replace(/-[0-9]+$/g,""),m=d.getAttribute("id")?.replace(/-[0-9]+$/g,"");return o.indexOf(h)-o.indexOf(m)})}const i=this.privateExtractCorrectElements(r.refs,r.elements),a=this.privateExtractIds(i);a.length&&a!==r.ids&&(r.callback(a),r.ids=a)}}}disconnect(){this.mo&&(this.mo.disconnect(),this.mo=void 0)}}var p1=p.registerComponent(f1,{tmpl:te,sel:"lightning-ariaObserver"});function ws(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function g1(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ws(Object(n),!0).forEach(function(r){b1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ws(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function b1(t,e,n){return e=v1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function v1(t){var e=y1(t,"string");return typeof e=="symbol"?e:String(e)}function y1(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const w1=`salesforce-lightning-tooltip-bubble_${No()}`;function Ts(){return window.ResizeObserver!=null}let Se,Ne;function Ps(){return Se||(Se=p.createElement("lightning-primitive-bubble",{is:Fp}),Se.contentId=w1,Se.style.position="absolute",Se.style.minWidth="75px",Se.disableVisibilityChangeOnLeave=!0),Se}const T1="aria-describedby",P1=16,E1=24,wn={Info:"info",Toggle:"toggle"};class _1{constructor(e,n){if(this._autoPosition=null,this._disabled=!0,this._initialized=!1,this._visible=!1,this._isFocusEvent=!1,this._initialResize=!0,this._ariaObserver=null,this._config={},_e(n.target,"target for tooltip is undefined or missing"),this.value=e,this._root=n.root,this._target=n.target,this._config=g1({},n),this._config.align=n.align||{},this._config.targetAlign=n.targetAlign||{},this._type=Ao(n.type,{fallbackValue:wn.Info,validValues:Object.values(wn)}),this._element=n.element,ze&&!this._element){this._element=Ps;const r=Ps();r.parentNode===null&&document.body.appendChild(r)}this.handleDocumentTouch=this.handleDocumentTouch.bind(this),this.handleEscape=this.handleEscape.bind(this),this.hide=this.hide.bind(this)}detach(){this._disabled=!0}attach(){this._disabled=!1}initialize(){const e=this._target();if(!this._initialized&&e){switch(this._type){case wn.Toggle:this.addToggleListeners();break;case wn.Info:default:this.addInfoListeners();break}this._ariaObserver=new p1(this._root),this._ariaObserver.connect({attribute:T1,targetNode:this._target(),relatedNodes:this._element()}),this._initialized=!0}}disconnect(){this._ariaObserver.disconnect()}addInfoListeners(){const e=this._target();!this._initialized&&e&&(["mouseenter","focus"].forEach(n=>e.addEventListener(n,()=>this.show())),["mouseleave","blur","click","keydown"].forEach(n=>e.addEventListener(n,r=>{!this._visible||(this.hideIfNotSelfCover(r),r.key==="Escape"&&r.stopPropagation())})))}hideIfNotSelfCover(e){if(!!this._visible){if(e.type==="mouseleave"&&e.clientX&&e.clientY)try{if((document.elementFromPoint?document.elementFromPoint(e.clientX,e.clientY):null)===this._element()){Ts()||this.startPositioning();return}}catch(n){}this.hide()}}handleDocumentTouch(){this._visible&&this.hide()}addToggleListeners(){const e=this._target();!this._initialized&&e&&(e.addEventListener("touchstart",n=>{n.stopPropagation(),this.toggle()}),["mouseenter","focus"].forEach(n=>e.addEventListener(n,r=>this.show(r))),["mouseleave","blur"].forEach(n=>e.addEventListener(n,r=>this.hideIfNotSelfCover(r))),e.addEventListener("keydown",n=>{n.keyCode===13&&!this._visible?this.toggle():this._visible&&(this.hide(),n.key==="Escape"&&n.stopPropagation())}))}handleEscape(e){e.key==="Escape"&&this._isFocusEvent&&(e.stopPropagation(),this.hideIfNotSelfCover(e))}get resizeObserver(){return this._resizeObserver||(this._resizeObserver=this._buildResizeObserver(()=>{if(this._visible&&this._autoPosition){const e=this._element();if(Ne!==this){this.hide(!1);return}this.startPositioning().then(()=>{this._initialResize&&(e.addEventListener("mouseleave",this.hide),this._initialResize=!1)})}})),this._resizeObserver}show(e){if(this._disabled||this._visible)return;Ne&&Ne!==this&&Ne._visible&&Ne.hide(!1),Ne=this,this._isFocusEvent=e&&e.type==="focus",this._visible=!0,this._initialResize=!0;const n=this._element();n.visible=this._visible,n.content=this._value,this._ariaObserver.sync(),this.startPositioning(),document.addEventListener("keydown",this.handleEscape),document.addEventListener("touchstart",this.handleDocumentTouch),this.resizeObserver.observe(n)}hide(e=!0){this._visible=!1;const n=this._element();e&&(n.visible=this._visible),this.stopPositioning(),document.removeEventListener("touchstart",this.handleDocumentTouch),document.removeEventListener("keydown",this.handleEscape),n.removeEventListener("mouseleave",this.hide),this.resizeObserver.unobserve(n),Ne=null}toggle(){this._visible?this.hide():this.show()}get value(){return this._value}set value(e){this._value=e,this._disabled=!e}get initialized(){return this._initialized}get visible(){return this._visible}startPositioning(){this._autoPosition||(this._autoPosition=new os(this._root));const e={horizontal:this._config.align.horizontal||w.Left,vertical:this._config.align.vertical||w.Bottom},n={horizontal:this._config.targetAlign.horizontal||w.Left,vertical:this._config.targetAlign.vertical||w.Top},i=this._target().getBoundingClientRect().width*.5-E1;return this._autoPosition.start({target:this._target,element:this._element,align:e,targetAlign:n,autoFlip:!0,padTop:P1,padLeft:i}).then(a=>{if(a){const o=this._element();o.align=a.config.align,o.visible=this._visible}})}stopPositioning(){this._autoPosition&&this._autoPosition.stop()}_buildResizeObserver(e){return Ts()?new ResizeObserver(e):{observe(){},unobserve(){}}}}p.registerDecorators(_1,{fields:["_autoPosition","_disabled","_initialized","_visible","_isFocusEvent","_initialResize","_ariaObserver","_config"]});function O1(t){const e=[];return St(t,n=>{try{M1({element:n,rootContainer:t})&&e.push(n)}catch(r){console.warn(r)}}),e}function St(t,e){if(!t)return;if(t.nodeType===Node.ELEMENT_NODE){if(t.hasAttribute("inert"))return;if(C1(t)){S1(t)?St(t.contentDocument,e):e&&e(t);return}if(e&&e(t),t.shadowRoot){St(t.shadowRoot,e);return}if(t.localName==="slot"){const r=t.assignedNodes({flatten:!0});for(let i=0;i<r.length;i++)St(r[i],e);return}}let n=t.firstChild;for(;n!==null;)St(n,e),n=n.nextSibling}function C1(t){return t.tagName==="IFRAME"||t instanceof HTMLIFrameElement}function S1(t){return!!t.contentDocument}const N1=["button","select","textarea","input"],A1=["a","select","textarea","input","button","iframe","object","area","frame"];function M1({element:t,rootContainer:e}){const n=t.localName;if(n==="input"&&n.type==="hidden")return!1;const r=t.getAttribute("tabindex");return r==="-1"||t.disabled&&N1.includes(t.localName)?!1:(r==="0"||t.tabIndex===0&&A1.includes(t.localName))&&R1(t)&&I1({element:t,rootContainer:e})}function R1(t){const{width:e,height:n}=t.getBoundingClientRect();return(e>0||n>0)&&getComputedStyle(t).visibility!=="hidden"}function I1({element:t,rootContainer:e}){const n=e.getRootNode(),r=t.ownerDocument;let i=t.getRootNode();for(;i!==n&&i!==r;){const a=i.host;if(a.getAttribute("tabindex")==="-1")return!1;i=a&&a.getRootNode()}return!0}function Es(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function _s(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Es(Object(n),!0).forEach(function(r){D1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Es(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function D1(t,e,n){return e=k1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function k1(t){var e=$1(t,"string");return typeof e=="symbol"?e:String(e)}function $1(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const L1=300,Os={navKey:"F6",f6RegionAttribute:"data-f6-region",f6RegionHighlightClass:"f6-highlight"},Rr=t=>t&&(t.shadowRoot?t.shadowRoot.activeElement?Rr(t.shadowRoot.activeElement):t:t.activeElement?Rr(t.activeElement):t);class Cs{constructor(e={}){this.regions=[],this.config=Os,this._debounceKeyDownHandler=void 0,this._styleElement=void 0,this.handleClick=()=>{this.clearRegionHighlights()},this.handleKeyDown=n=>{this.clearRegionHighlights();const{key:r,ctrlKey:i,metaKey:a}=n;r===this.config.navKey&&(i||a)&&(this.populateRegions(),this.handleNavigation(n))},this.elementFilter=n=>n.parentElement&&n.parentElement.matches(`*[${this.config.f6RegionAttribute}]`)?NodeFilter.FILTER_REJECT:n.matches(`*[${this.config.f6RegionAttribute}]`)&&this.isVisible(n)&&!this.isEmpty(n)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP,this._debounceKeyDownHandler=Lm(this.handleKeyDown.bind(this),L1),this.initialize(e)}appendStyleElement(){this._styleElement=document.createElement("style");const e=`[${this.config.f6RegionAttribute}].${this.config.f6RegionHighlightClass}`;this._styleElement.innerText=`${e} { position: relative; } ${e}::after { width: 100%; height: 100%; content: ''; outline: rgb(94, 158, 214) 3px solid; outline-offset: -3px; position: absolute; top: 0; left: 0; z-index: 9999; }`,this._styleElement.setAttribute("type","text/css"),document.head.appendChild(this._styleElement)}clearRegionHighlights(){!this.regions||!this.regions.length||this.regions.forEach(e=>{e.classList.remove(this.config.f6RegionHighlightClass)})}addRegionHighlight(e){e.classList.add(this.config.f6RegionHighlightClass)}findFocusableElement(e){if(!e||!e.isConnected)return;const n=O1(e);return n&&n.length?n[0]:(e.tabIndex="-1",e)}focusIn(e){const n=this.findFocusableElement(e);n&&n.focus()}handleNavigation(e){if(e.preventDefault(),!this.regions.length)return;const n=e.shiftKey,r=this.getElementRegionIndex(Rr(e.target)),i=this.getAdjacentRegionIndex(r,n);if(i===-1)return;const a=this.regions[i];this.focusIn(a),this.addRegionHighlight(a)}shadowContains(e,n){return e===n||e.contains(n)||e.shadowRoot&&this.isElementInContainerElements(e.shadowRoot.children,n)||e.tagName==="SLOT"&&this.isElementInContainerElements(e.assignedElements(),n)?!0:this.isElementInContainerElements(e.children,n)}isElementInContainerElements(e,n){if(!e||!e.length)return!1;const r=e.length;for(let i=0;i<r;i++)if(this.shadowContains(e[i],n))return!0;return!1}getElementRegionIndex(e){return!this.regions||!this.regions.length?-1:this.regions.findIndex(n=>this.shadowContains(n,e))}getAdjacentRegionIndex(e,n){const r=this.regions.length-1;return r<0?-1:n?e<=0?r:e-1:e===r?0:e+1}isVisible(e){if(e===document.body||!(e instanceof Element))return!0;try{const n=window.getComputedStyle(e)||e.style;if(!n)return!1;const{display:r,visibility:i}=n;return r&&r.toLowerCase()==="none"||i&&i.toLowerCase()==="hidden"?!1:this.isVisible(e.parentNode)}catch(n){return!1}}isEmpty(e){if(e.tagName==="SLOT"&&!this.isEmptyChildren(e.assignedElements()))return!1;let n=e.children;return(!n||!n.length)&&e.shadowRoot&&(n=e.shadowRoot.children),this.isEmptyChildren(n)}isEmptyChildren(e){if(!e||!e.length)return!0;const n=e.length;for(let r=0;r<n;r++){const i=e[r];if(i.tagName!=="SLOT"||!this.isEmpty(i))return!1}return!0}populateRegions(){this.regions=[];const e=document.createTreeWalker(document.body,NodeFilter.SHOW_ELEMENT,this.elementFilter,!1);for(;e.nextNode();)this.regions.push(e.currentNode)}initialize(e={}){document.addEventListener("keydown",this._debounceKeyDownHandler),document.addEventListener("click",this.handleClick),this.regions=[],this.config=_s(_s({},this.config),e),this.appendStyleElement()}cleanUp(){document.removeEventListener("keydown",this._debounceKeyDownHandler),document.removeEventListener("click",this.handleClick),this._regions=[],this._config=Os,this._debounceKeyDownHandler=null,this._styleElement&&(document.head.removeChild(this._styleElement),this._styleElement=null)}getConfig(){return Object.freeze(this.config)}}p.registerDecorators(Cs,{fields:["regions","config","_debounceKeyDownHandler","_styleElement","handleClick","handleKeyDown","elementFilter"]});let Ir;const x1=t=>(Ir||(Ir=new Cs(t)),Ir),j1={guestUuidCookieMaxAge:365*24*60*60},{document:Dr}=globalThis;if(Dr&&Dn.default){let t=Hi(Dn.default);Fl(t)||(t=jl()),Dr.cookie=`${Dn.default}=${t};Max-Age=${j1.guestUuidCookieMaxAge};SameSite=LAX;Path=/`;const e={name:"set-guest-uuid",guestUuid:t};Dr.dispatchEvent(new CustomEvent("experience_interaction",{bubbles:!0,composed:!0,detail:e}))}function Ss(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Tn(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Ss(Object(n),!0).forEach(function(r){F1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Ss(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function F1(t,e,n){return e=U1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function U1(t){var e=K1(t,"string");return typeof e=="symbol"?e:String(e)}function K1(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}class kr extends p.LightningElement{constructor(...e){super(...e);this.generatedTemplateHtml=un,this.attributes={},this.routeParams={},this.previousRouteId=null,this.route={},this.isInitialized=void 0,this._f6Controller=void 0}render(){return this.generatedTemplateHtml}renderedCallback(){if(this.generatedTemplateHtml!==un){const e=Tn(Tn({},this.route),{},{state:void 0});pl({route:e,previousRouteId:this.previousRouteId})}this.isInitialized||(this.isInitialized=!0,window.performance.measure(`${De}-app-bootstrap`))}updateTemplate(e){this.generatedTemplateHtml=e.html}updateRoute(e,n){ar(n);const{state:r,attributes:i}=n;this.previousRouteId=this.route?.id||null,this.routeParams=Tn(Tn({},r),i),this.attributes=e.attributes(this,this.routeParams),this.route=n}restoreDefaultTemplate(){this.generatedTemplateHtml=un}async connectedCallback(){await Sm(),await Cm(),this.subscription=on(this.loadThemeLayout.bind(this)),this._f6Controller=x1()}async loadThemeLayout(e){let n=!1;const r=e.routeDefinition.view,i=Rn.default[r];setTimeout(async()=>{!n&&this.themeLayout!==i&&this.restoreDefaultTemplate()},10);let a;try{a=await wm(bi(i))}catch(o){await this.handleFetchViewFailed(o,e.routeDefinition.metadata?.isPublic)}if(!!a)try{n=!0,window?.scrollTo(0,0),this.themeLayout!==i&&(this.themeLayout=i,this.updateTemplate(a.default)),this.updateRoute(a.default,e.route)}catch(o){vt({subject:"InnerApp.loadThemeLayout error",type:at.FAILED_TO_LOAD_RESOURCE,error:o})}}async handleFetchViewFailed(e,n){await Fa.run({error:e,isPublic:n})&&vt({subject:"InnerApp.loadThemeLayout#getViewModule error",type:at.FAILED_TO_LOAD_RESOURCE,error:e})}disconnectedCallback(){this.subscription&&this.subscription.unsubscribe(),this._f6Controller&&(this._f6Controller.cleanUp(),this._f6Controller=null)}}kr.renderMode="light",p.registerDecorators(kr,{publicMethods:["updateTemplate","updateRoute","restoreDefaultTemplate"],fields:["generatedTemplateHtml","attributes","routeParams","previousRouteId","route","isInitialized","_f6Controller"]});var z1=p.registerComponent(kr,{tmpl:un,sel:"webruntime-innerApp"});function G1(t,e,n){var r=t?"["+t+"]":"";return"span.router-title"+r+" {position: absolute;margin: -1px;border: 0;padding: 0;width: 1px;height: 1px;overflow: hidden;clip: rect(0 0 0 0);text-transform: none;white-space: nowrap;}"}var Ns=[G1];const V1=p.parseFragment`<span class="router-title${0}" aria-live="polite" aria-atomic="true"${2}></span>`,B1={key:0},W1=[];function pe(t,e,n,r){const{s:i,st:a,f:o}=t;return o([i("",B1,W1,n),a(V1(),2)])}var H1=p.registerTemplate(pe);pe.slots=[""],pe.stylesheets=[],pe.renderMode="light",Ns&&pe.stylesheets.push.apply(pe.stylesheets,Ns),pe.stylesheetToken="lwr-routerContainer_routerContainer",p.freezeTemplate(pe);const J1=re?p.createContextProvider(qt):void 0,q1=re?p.createContextProvider(ft):void 0,Q1=re?p.createContextProvider(Yn):void 0;function $r(t,e,n,r){n&&r&&(r.setContext(e,t),n(e,{consumerConnectedCallback:r.subscribeContext.bind(r,e),consumerDisconnectedCallback:r.unsubscribeContext.bind(r,e)}))}const Lr="lwr.router.",As=`${Lr}navigate`,Ms=`${Lr}view`,X1=`${Lr}error`;var Rs;(function(t){t[t.Start=0]="Start",t[t.End=1]="End"})(Rs||(Rs={}));const oe=globalThis.performance,Is=typeof oe!="undefined"&&typeof oe.mark=="function"&&typeof oe.clearMarks=="function"&&typeof oe.measure=="function"&&typeof oe.clearMeasures=="function";function xr({id:t,specifier:e}){Is&&oe.mark(t+(e?`.${e}`:""))}function Ds({id:t,specifier:e}){if(Is){const n=e?`.${e}`:"",r=t+n,i=`${t}.duration${n}`;oe.measure(i,r),oe.clearMarks(r),oe.clearMeasures(i)}}function ks(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Ae(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?ks(Object(n),!0).forEach(function(r){Y1(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ks(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function Y1(t,e,n){return e=Z1(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Z1(t){var e=eg(t,"string");return typeof e=="symbol"?e:String(e)}function eg(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}const jr=`universalcontainernavigationevent${tr()}`,Fr=`universalcontainerparentevent${tr()}`;class Ur{constructor(e,n,r){this.pendingRoute=null,this.committedRoute=null,this.contextId=Object.freeze(()=>{}),this.connected=!1,this.preNavFilters=fa(),this.errorNavFilters=fa(),this._handleNavigationEvent=i=>{const a=i;if(a.detail&&typeof a.detail=="object"){const{url:o,replace:s,address:l}=a.detail;this.config.handleNavigation(l,s)?this.root&&!o?this.root.processError(ce(M.MISSING_URL,[JSON.stringify(l)])):this.parent||this.process(o,s):a.stopPropagation()}},this._handleParentEvent=i=>{i.stopImmediatePropagation();const a=i;a&&a.detail&&typeof a.detail=="function"&&a.detail(this)},this.config={handleNavigation:e.handleNavigation||(()=>!0)},this.target=r||window,this.router=n,this.router.contextId=this.contextId,this.routeObservable=Da()}get root(){if(!this.parent)return this;let e=this.parent;for(;e;){if(!e.parent)return e;e=e.parent}throw new Error("No root router could be found")}updateWires(e,n,r){if(r)this.processError(r);else{if(this.committedRoute&&e.route===this.committedRoute.route)return;Ds({id:Ms,specifier:this.eventId}),this.pendingRoute=this.pendingRoute||Ae(Ae({},e),{},{url:n}),this.committedRoute=Ae(Ae({},this.pendingRoute),e),qt.setContext(this.target,e.route.pageReference),this.routeObservable.next(Ae(Ae({},this.committedRoute),{},{viewset:e.viewset})),Ds({id:As,specifier:this.eventId}),this.child&&this.child.process(this._stripUrlForChild(this.committedRoute.url))}}connect(){this._sendEvent(Fr,n=>{this.parent=n,n.addChild(this)});const e={navigate:(n,r)=>this.navigate(n,r),generateUrl:n=>this.generateUrl(n),subscribe:(n,r)=>this.subscribe(n,r)};ha(this.contextId,e),$r(this.contextId,this.target,Q1,Yn),$r(void 0,this.target,J1,qt),$r(void 0,this.target,q1,ft),this.router.subscribe(n=>{if(n.status===404){this.processError(ce(M.DESTINATION_NOT_FOUND));return}if(n.status&&n.status>=400){const a=n.error||new Error;this.processError(ce(M.DESTINATION_ERROR,[n.status.toString(),a.message,a.stack||""]));return}const r=n.route.pageReference||{},i=this.router.generateUrl(r)||"";if(xr({id:Ms,specifier:this.eventId}),n.viewset){const a={viewset:n.viewset,onComplete:this.updateWires.bind(this,n,i)};ft.setContext(this.target,a)}else n.route.pageReference&&this.updateWires(n,i)},!0),re&&(this.target.addEventListener(jr,this._handleNavigationEvent),this.target.addEventListener(Fr,this._handleParentEvent),this.target.addEventListener(Na,n=>{const r=n;r.detail.callback&&r.detail.callback(this.contextId)})),this.connected=!0}disconnect(){this.target.removeEventListener(jr,this._handleNavigationEvent),this.target.removeEventListener(Fr,this._handleParentEvent),this.parent&&(this.parent.child=void 0),this.parent=void 0,this.child&&(this.child.parent=void 0),this.child=void 0,this.connected=!1}addPreNavigate(e){this.preNavFilters.add(e)}addErrorNavigate(e){this.errorNavFilters.add(e)}async addChild(e){if(await new Promise(n=>{setTimeout(()=>{ue(!this.child,M.MULTIPLE_CHILDREN),this.child=e,n()},0)}),this.child&&this.committedRoute){const n=this._stripUrlForChild(this.committedRoute.url);await this.child.preProcess(n)&&this.child.process(n)}}async process(e,n){this.eventId=new Date().getTime().toString(),xr({id:As,specifier:this.eventId});try{this.parent||await this.preProcess(e)}catch(i){if(i.code)return this.processError(i),!1;throw i}const r=this.router.parseUrl(e);return r&&this.router.navigate(r),!0}preProcess(e){const n=this.router.parseUrl(e),r=n&&this.router.matchRoute(n);return r?(this.pendingRoute=Ae({url:e},r),(this.preNavFilters.empty()?Promise.resolve(!0):this.preNavFilters.compile({current:this.committedRoute||void 0,next:this.pendingRoute})).then(a=>a&&this.child?this.child.preProcess(this._stripUrlForChild(e)):a).then(a=>a||Promise.reject(ce(M.PRENAV_FAILED,[e])))):Promise.reject(ce(M.MISSING_ROUTE,[e]))}processError(e){xr({id:X1}),this.errorNavFilters.compile(e),this.child&&this.child.processError(e)}navigate(e,n){let r=this.router.generateUrl(e);r&&(r=(this.parent&&this.parent.committedRoute&&this.parent.committedRoute.pathMatch||"").concat(r)),this._sendEvent(jr,{url:r,replace:n,address:e})}generateUrl(e){const n=this.router.generateUrl(e);return n?`${this.parent&&this.parent.committedRoute&&this.parent.committedRoute.pathMatch||""}${n}`:null}subscribe(e,n){return this.routeObservable.subscribe({next:e,error:()=>{},complete:()=>{}},Boolean(n))}_sendEvent(e,n){re&&this.target.dispatchEvent(new CustomEvent(e,{bubbles:!0,composed:!0,detail:n}))}_stripUrlForChild(e){return this.pendingRoute&&e.indexOf(this.pendingRoute.pathMatch)===0?e.replace(this.pendingRoute.pathMatch,""):e}}p.registerDecorators(Ur,{fields:["pendingRoute","committedRoute","contextId","connected","preNavFilters","errorNavFilters","_handleNavigationEvent","_handleParentEvent"]});function tg(t=""){if(t=t||"",t.indexOf("://")<0){const i=window.location.port?`:${window.location.port}`:"",a=`${window.location.protocol}//${window.location.hostname}${i}`,o=t.charAt(0)==="/"?"":"/";t=a+o+t}const e={},n=document.createElement("a");n.href=t;const r=n.search.substring(1);return r&&r.split("&").forEach(i=>{const[a,o=""]=i.split("=");e[Te(a)]=Te(o)}),{href:n.href,origin:`${n.protocol}//${n.hostname}${n.port?`:${n.port}`:""}`,pathname:n.pathname.replace(/(\/)?/,"/"),searchParams:e}}function ng(t){const e=tg(t),n=e.href.replace(/:\d+/,""),r=e.origin.replace(/:\d+/,"");return n.replace(r,"")}function rg(t,e){const n=e||{};window.history.pushState(n,"",t)}function ig(t,e){const n=e||{};window.history.replaceState(n,"",t)}class $s extends Ur{constructor(...e){super(...e);this.historyDisabled=!1}connect(){super.connect(),this.historyDisabled||(re&&window.addEventListener("popstate",this.onpopstate.bind(this)),this.onpopstate())}onpopstate(){!this.parent&&re&&this.catchBrowserUpdate(ng(document.location.href))}disconnect(){super.disconnect(),re&&window.removeEventListener("popstate",this.onpopstate)}async process(e,n,r=!0){const i=await super.process(e);return i&&!this.historyDisabled&&r&&this.connected&&!this.parent&&(n?ig(e):rg(e)),i}catchBrowserUpdate(e){this.process(e,!1,!1)}}p.registerDecorators($s,{fields:["historyDisabled"]});let Nt=!1;function ag(t,e={},n){const r=e.historyDisabled?new Ur(e,n,t):new $s(e,n,t),i={addPreNavigate:a=>(r.addPreNavigate(a),i),addPostNavigate:a=>(r.subscribe(a),i),addErrorNavigate:a=>(r.addErrorNavigate(a),i),connect:()=>{r.connect(),ue(!Nt||!!r.parent,M.MULTIPLE_ROOTS),Nt=Nt||!r.parent,i.id=r.contextId},disconnect:()=>{Nt=Nt&&!!r.parent,r.disconnect()}};return i}let Kr=class extends p.LightningElement{constructor(){super();this.router=void 0,this.historyDisabled=!1,this.currentTitle=re?document.title:""}connectedCallback(){const e={historyDisabled:this.historyDisabled,handleNavigation:this.handleNavigation.bind(this)};this.router&&(this.routerApi=ag(this,e,this.router),this.routerApi.addPreNavigate(this.preNavigate.bind(this)).addPostNavigate(this.postNavigate.bind(this)).addErrorNavigate(this.errorNavigate.bind(this)).connect())}preNavigate(e){const n=this._createEvent("prenavigate",e,!0);return this.dispatchEvent(n),!n.defaultPrevented}postNavigate(e){this.dispatchEvent(this._createEvent("postnavigate",e));const n=e.routeDefinition.metadata&&e.routeDefinition.metadata.title;n&&(this.currentTitle=n,document.title=n);const r=this.querySelector("span.router-title");r&&(r.innerHTML=this.currentTitle)}errorNavigate(e){return this.dispatchEvent(this._createEvent("errornavigate",e)),!0}handleNavigation(e,n){const r=this._createEvent("handlenavigation",{address:e,replace:n},!0);return this.dispatchEvent(r),!r.defaultPrevented}disconnectedCallback(){this.routerApi&&this.routerApi.disconnect()}_createEvent(e,n,r){return new CustomEvent(e,{detail:n,bubbles:!1,composed:!1,cancelable:r})}};Kr.renderMode="light",p.registerDecorators(Kr,{publicProps:{router:{config:0},historyDisabled:{config:0}}});var og=p.registerComponent(Kr,{tmpl:H1,sel:"lwr-routerContainer"});function At(t,e,n,r){const{c:i,b:a}=t,{_m0:o}=r;return[i("lwr-router-container",og,{props:{router:e.router},key:0},[i("experience-data-layer-object",vm,{props:{scriptDataAttributes:e.pageDataForDataLayer.scriptDataAttributes,customObject:e.pageDataForDataLayer.customObject},key:1}),i("webruntime-inner-app",z1,{key:2,on:{viewchange:o||(r._m0=a(e.handleViewChanged))}})])]}var Ls=p.registerTemplate(At);At.stylesheets=[],At.renderMode="light",At.stylesheetToken="webruntime-app_app",p.freezeTemplate(At);function xs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Pn(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?xs(Object(n),!0).forEach(function(r){sg(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):xs(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function sg(t,e,n){return e=dg(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function dg(t){var e=lg(t,"string");return typeof e=="symbol"?e:String(e)}function lg(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}p.setHooks({sanitizeHtmlContent(t){return t}});class zr extends p.LightningElement{constructor(...e){super(...e);this.themeLayout=void 0,this.isInitialized=void 0,this.router=ie,this.routerContainer=void 0,this.pageDataForDataLayer={scriptDataAttributes:{providerType:"page"}}}renderedCallback(){this.isInitialized||(this.routerContainer=this.querySelector("lwr-router-container"),ro(this.routerContainer),window?.addEventListener("click",this.handleClick),this.isInitialized=!0)}errorCallback(e,n){vt({subject:"app level error",error:e,wcstack:n})}disconnectedCallback(){document.body.removeEventListener("click",this.handleClick),this.isInitialized=!1}render(){return Ls}handleClick(e){const n=e.composedPath().find(m=>m.tagName==="A");if(!n||e.defaultPrevented||Oo())return;let r=n.getAttribute("href");if(!r||r.includes("#"))return;const i=new URL(r,window.location.href),a=i?.protocol==="http:"||i?.protocol==="https:",o=Wn(r);o||r.startsWith("/")||(r=window.location.pathname+r);const s=o||Boolean(ie.matchRoute(r)),l=n.getAttribute("target"),d=!l&&!o||l==="_self"||l===window.name||l==="_top"&&window.top===window||l==="_parent"&&window.parent===window;a&&s&&d^o&&(e.preventDefault(),an({type:"standard__webPage",attributes:{url:r}}))}handleViewChanged(e){const n=e.detail?.route?.attributes?.recordId;let r={type:e.detail?.route?.pageReference?.type,url:window.location.href,urlReferrer:document.referrer};n&&(r=Pn(Pn({},r),{},{recordId:n})),this.pageDataForDataLayer=Pn(Pn({},this.pageDataForDataLayer),{},{customObject:r})}}zr.renderMode="light",p.registerDecorators(zr,{fields:["themeLayout","isInitialized","router","routerContainer","pageDataForDataLayer"]});var cg=p.registerComponent(zr,{tmpl:Ls,sel:"webruntime-app"}),ug={};const hg=[];function Mt(t,e,n,r){return hg}var js=p.registerTemplate(Mt);Mt.stylesheets=[],Mt.renderMode="light",Mt.stylesheetToken="webruntime-routerContainer_routerContainer",p.freezeTemplate(Mt);function Fs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),n.push.apply(n,r)}return n}function Us(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{};e%2?Fs(Object(n),!0).forEach(function(r){mg(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Fs(Object(n)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))})}return t}function mg(t,e,n){return e=fg(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function fg(t){var e=pg(t,"string");return typeof e=="symbol"?e:String(e)}function pg(t,e){if(typeof t!="object"||t===null)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}class Gr extends p.LightningElement{constructor(...e){super(...e);this.generatedTemplateHtml=js,this.attributes={},this.routeParams={},this.route={}}render(){return this.generatedTemplateHtml}connectedCallback(){this.subscription=on(this.routeChange.bind(this))}viewChange(e){ar(this.route),this.generatedTemplateHtml=e.html;const{state:n,attributes:r}=this.route;this.routeParams=Us(Us({},n),r),this.attributes=e.attributes(this,this.routeParams)}routeChange(e){this.route=e.route||null}disconnectedCallback(){this.subscription&&this.subscription.unsubscribe()}errorCallback(e,n){vt({subject:"router level error",error:e,wcstack:n})}renderedCallback(){this.dispatchEvent(new CustomEvent("viewchange",{bubbles:!0,composed:!0,detail:{route:this.route}})),this.dispatchEvent(new CustomEvent("experience_interaction",{bubbles:!0,composed:!0,detail:{name:"page-view"}}))}}Gr.renderMode="light",p.registerDecorators(Gr,{wire:{viewChange:{adapter:ft,method:1,config:function(t){return{}}}},fields:["generatedTemplateHtml","attributes","routeParams","route"]});var gg=p.registerComponent(Gr,{tmpl:js,sel:"webruntime-routerContainer"});function Ks(t,e,n){var r=t?"."+t+"-host":"";return(e?":host {":r+" {")+"display: flow-root;}"}Ks.$scoped$=!0;var zs=[Ks];const bg={key:0},vg=[];function ge(t,e,n,r){const{s:i}=t;return i("",bg,vg,n)}var yg=p.registerTemplate(ge);ge.slots=[""],ge.stylesheets=[],ge.renderMode="light",zs&&ge.stylesheets.push.apply(ge.stylesheets,zs),ge.stylesheetToken="webruntime-componentContainer_componentContainer",p.freezeTemplate(ge);class Gs extends p.LightningElement{}Gs.renderMode="light";var wg=p.registerComponent(Gs,{tmpl:yg,sel:"webruntime-componentContainer"});const Vs=[];function Xe(t,e,n,r){const{s:i}=t;return e.isVisible?i("",{key:0,slotData:e.variations},Vs,n):Vs}var Tg=p.registerTemplate(Xe);Xe.slots=[""],Xe.stylesheets=[],Xe.renderMode="light",Xe.stylesheetToken="webruntime-slotContainer_slotContainer",p.freezeTemplate(Xe);class Vr extends p.LightningElement{constructor(...e){super(...e);this.visibilityExpression=void 0,this.hidden=void 0,this.variationExpressions=void 0}get isVisible(){return this.hidden?!this.visibilityExpression:this.visibilityExpression}get variations(){const e={},n=this.variationExpressions?.find(a=>a===!0),r=this.variationExpressions?.findIndex(a=>a===!0),i=this.variationExpressions?.find(a=>typeof a=="undefined");return this.variationExpressions?.forEach(function(a,o){const s=`variation${o+1}`;i||n&&r!==o?e[s]=!1:a===!0?e[s]=!0:(typeof a=="undefined",e[s]=!1)}),e.variation0=!n&&!i,e}}Vr.renderMode="light",p.registerDecorators(Vr,{publicProps:{visibilityExpression:{config:0},hidden:{config:0},variationExpressions:{config:0}}});var Pg=p.registerComponent(Vr,{tmpl:Tg,sel:"webruntime-slotContainer"});function Bs(t,e,n){var r=t?"."+t+"-host":"";return"@media only screen and (max-width: 47.9375em) {"+(e?":host.webruntime-visibility-container.dxp-sm-hide {":r+".webruntime-visibility-container.dxp-sm-hide {")+"display: none;}}@media only screen and (min-width: 48em) and (max-width: 64em) {"+(e?":host.webruntime-visibility-container.dxp-md-hide {":r+".webruntime-visibility-container.dxp-md-hide {")+"display: none;}}@media only screen and (min-width: 64.0625em) {"+(e?":host.webruntime-visibility-container.dxp-lg-hide {":r+".webruntime-visibility-container.dxp-lg-hide {")+"display: none;}}"}Bs.$scoped$=!0;var Ws=[Bs];const Eg={key:0},Hs=[];function be(t,e,n,r){const{s:i}=t;return e.hidden?Hs:i("",Eg,Hs,n)}var _g=p.registerTemplate(be);be.slots=[""],be.stylesheets=[],be.renderMode="light",Ws&&be.stylesheets.push.apply(be.stylesheets,Ws),be.stylesheetToken="webruntime-visibilityContainer_visibilityContainer",p.freezeTemplate(be);class Br extends p.LightningElement{constructor(...e){super(...e);this.hiddenInDesktop=!1,this.hiddenInTablet=!1,this.hiddenInMobile=!1,this.hidden=!0}connectedCallback(){const e={Small:{isHidden:this.hiddenInMobile,mediaQuery:"only screen and (max-width: 47.9375em)",class:"dxp-sm-hide"},Medium:{isHidden:this.hiddenInTablet,mediaQuery:"only screen and (min-width: 48em) and (max-width: 64em)",class:"dxp-md-hide"},Large:{isHidden:this.hiddenInDesktop,mediaQuery:"only screen and (min-width: 64.0625em)",class:"dxp-lg-hide"}};let n="";Object.values(e).forEach(r=>{r.isHidden?this.classList.add(r.class):n+=n?`, ${r.mediaQuery}`:r.mediaQuery}),In.default?this.classList.add("interactions-element","webruntime-design-visibility-container"):this.classList.add("webruntime-visibility-container"),Promise.resolve().then(function(){return ph}).then(({getFormFactor:r})=>{if(typeof window!="undefined"&&!In.default&&e[r()].isHidden){if(n){const i=window.matchMedia(n),a=o=>{o.matches&&(this.hidden=!1,i.removeEventListener("change",a))};i.addEventListener("change",a)}}else this.hidden=!1})}}Br.renderMode="light",p.registerDecorators(Br,{publicProps:{hiddenInDesktop:{config:0},hiddenInTablet:{config:0},hiddenInMobile:{config:0}},track:{hidden:1}});var Og=p.registerComponent(Br,{tmpl:_g,sel:"webruntime-visibilityContainer"});let Me;const Cg="1970-01-01T",Sg="T00:00:00",Rt="provider",En="providers";function Js(t){return t!==null&&typeof t=="object"}function Wr(t){try{const e=t?.indexOf(":")>-1,n=t?.indexOf("-")>-1;return t===""||!e&&!n?null:(typeof t=="string"&&(n||(t=Cg+t),e||(t=t+Sg),t=t.trim().replace(" ","T"),t.endsWith("Z")||(t+="Z")),new Date(t))}catch(e){return null}}function Ng(t){try{const e=t(),n=Reflect.get(this,En);for(const r of n)if(!r?.hasData?.())throw new Error;return e??null}catch(e){return}}function Ag(t){return Js(this)&&(Reflect.set(this,Rt,t),Reflect.get(this,En).push(t)),t?.getData?.()}function Mg(t={},e){if(!!t&&Object.prototype.hasOwnProperty.call(t,e))return t[e]}function Rg(t,e){Array.isArray(t)||(t=[t]);const n=t.filter(e);if(!!n.length)return n.length===1?n[0]:n}function Ig(t,e){if(Js(this)&&Reflect.has(this,Rt)){const n=Reflect.get(this,Rt);if(Reflect.deleteProperty(this,Rt),!n?.hasData?.(e))throw new Error;const r=Reflect.get(this,En);r.indexOf(n)>=0&&r.splice(r.indexOf(n),1)}return typeof e=="string"&&Array.isArray(t)?(t=t.map(n=>n[e]).filter(n=>n!==void 0),t.length===0?void 0:t.length===1?t[0]:t):t?.[e]}function Dg(){}var kg=Object.freeze({__proto__:null,EXPR_CLOSURE:(...t)=>(Me={[En]:[],[Rt]:null},Ng.apply(Me,t)),EXPR_FILTER:(...t)=>Rg.apply(Me,t),EXPR_FUNCTION:(...t)=>Dg.apply(Me,t),EXPR_GLOBAL:(...t)=>Mg.apply(Me,t),EXPR_MEMBER:(...t)=>Ig.apply(Me,t),EXPR_PROVIDER:(...t)=>Ag.apply(Me,t),EXPR_RUNTIME:{toDate(t){if(t!=null){const e=Wr(t)?.setUTCHours(0,0,0,0);if(e!==void 0&&!isNaN(e))return new Date(e)}return null},toTime(t){if(t!=null){const e=Wr(t)?.setUTCFullYear(1970,0,1);if(e!==void 0&&!isNaN(e))return new Date(e)}return null},toDatetime(t){return t!=null?Wr(t):null},isBlank(t){return!t&&typeof t!="number"},contains(t,e){return t!=null?t.includes(e):!1}}});function qs(t){Object.entries(t).forEach(([e,n])=>{LWR.define(e,[],function(){return n})})}qs({"@salesforce/client/formFactor":lr(),"aura-instrumentation":Wi,"aura-storage":ug,"instrumentation/service":Wi,"instrumentation/utility":Gl,"webruntime/expressions":kg,"lightning/configProvider":Ic,"lightning/navigation":_u,"webruntime/routerContainer":gg,"webruntime/routingService":hh,"webruntime/slotContainer":Pg,"webruntime/visibilityContainer":Og,"webruntime/componentContainer":wg,"webruntime/formFactor":lr,"wire-service":zh,"webruntime/overrides":Iu,aura:Nh,logger:Ki,assert:lt}),li.default&&!Hi(li.default)&&qs({"@app/user":{isGuest:!0,id:null,csrfToken:null}});var $g=p.registerComponent(cg,{tmpl:te,sel:"client-src"});di.default=$g,Object.defineProperty(di,"__esModule",{value:!0})}); |
| New file |
| | |
| | | LWR.define("@salesforce/label/MyCommunities.errorInFileDownload/v/0_9_0",["exports"],function(f){"use strict";var p="MyCommunities.errorInFileDownload";f.default=p,Object.defineProperty(f,"__esModule",{value:!0})}),LWR.define("mobileruntime/hybridAppManager/v/1",["exports","lwr/loaderLegacy/v/0_9_0","logger/v/1_66_319-244_0","webruntime/routingService/v/1_66_319-244_0","@salesforce/site/Id/v/1","webruntime/transport/v/1_66_319-244_0","lwc/v/2_41_4","@app/basePath/v/1","@app/loginPath/v/1","@app/uiBasePath/v/1","@salesforce/label/MyCommunities.errorInFileDownload/v/0_9_0","webruntime/overrides/v/1_66_319-244_0"],function(f,p,l,R,x,B,d,V,_,W,H,g){"use strict";function h(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var G=h(x),M=h(V),y=h(_),J=h(W),q=h(H);function K(){if(window.navigator?.userAgent?.includes("android")){const{head:e}=document,t=document.createElement("script");t.src="/localhost/cordova.js",e.appendChild(t)}}function Y(){window.native={sendAILTNData:function(e){if(!e?.logLines)return new Promise(function(t,n){n("Received null or invalid payload")})},refreshNotifications:function(){document.dispatchEvent(new CustomEvent("refreshNotifications",{detail:{},bubbles:!0,cancelable:!0,composed:!1}))},navigateTo:function(e){return new Promise(function(t,n){if(!e){n("Received invalid pageReference payload");return}R.generateUrl(e).then(o=>{window.open(new URL(o,window.location.href)),t()},o=>n(o))})}}}const z=d.parseFragment`<div class="slds-backdrop slds-backdrop_open${0}"${2}></div>`,Q={key:0},X={"slds-modal":!0,"slds-fade-in-open":!0,"slds-modal_large":!0},Z={classMap:{"slds-modal__container":!0},key:2},$={classMap:{"slds-modal__header":!0},key:3},ee={"slds-modal__title":!0,"slds-hyphenate":!0},te={"slds-modal__content":!0,"slds-var-p-around_medium":!0},ne={classMap:{"slds-text-align_center":!0,"slds-text-heading_small":!0,"slds-var-p-around_medium":!0},key:6},oe={classMap:{"slds-modal__footer":!0},key:7},E={"slds-button":!0,"slds-button_brand":!0},ie={key:9},ae={key:11};function w(e,t,n,o){const{gid:i,d:a,t:r,h:s,b:c,st:u}=e,{_m0:m,_m1:U}=o;return[t.showModal?s("section",Q,[s("section",{classMap:X,attrs:{role:"dialog",tabindex:"-1","aria-labelledby":i("modal-heading-01"),"aria-modal":"true","aria-describedby":i("modal-content-id-1")},key:1},[s("div",Z,[s("header",$,[s("h2",{classMap:ee,attrs:{id:i("modal-heading-01")},key:4},[r(a(t.labels.ModalHeader))])]),s("div",{classMap:te,attrs:{id:i("modal-content-id-1")},key:5},[s("div",ne,[r(a(t.modalBody))])]),s("footer",oe,[t.forceAppUpdate?null:s("button",{classMap:E,key:8,on:{click:m||(o._m0=c(t.remindMeLater))}},[s("label",ie,[r(a(t.labels.RemindMeLater))])]),s("button",{classMap:E,key:10,on:{click:U||(o._m1=c(t.openStore))}},[s("label",ae,[r(a(t.labels.UpdateNow))])])])])]),u(z(),13)]):null]}var re=d.registerTemplate(w);w.stylesheets=[],w.stylesheetToken="mobileruntime-appUpdateModal_appUpdateModal",d.freezeTemplate(w);const se={ModalHeader:"Update Your App",ForceUpdateModalBody:"You must update to the latest version of this app to continue using it.",ModalBody:"A new version of this app is available.Find and install the latest version of the app for your device.",RemindMeLater:"Remind Me Later",UpdateNow:"Update Now"};class D extends d.LightningElement{constructor(...t){super(...t);this.showModal=!0,this.config={}}get labels(){return se}get modalBody(){return this.config.forceAppUpdate?this.labels.ForceUpdateModalBody:this.labels.ModalBody}openStore(){window.open(this.config?.minVersion?.url?.trim())}remindMeLater(){this.showModal=!1}}d.registerDecorators(D,{publicProps:{config:{config:0}},fields:["showModal"]});var le=d.registerComponent(D,{tmpl:re,sel:"mobileruntime-appUpdateModal"});const ce=["payload"];function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,o)}return n}function v(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?C(Object(n),!0).forEach(function(o){de(e,o,n[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):C(Object(n)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(n,o))})}return e}function de(e,t,n){return t=ue(t),t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ue(e){var t=fe(e,"string");return typeof t=="symbol"?t:String(t)}function fe(e,t){if(typeof e!="object"||e===null)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var o=n.call(e,t||"default");if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function pe(e,t){if(e==null)return{};var n=he(e,t),o,i;if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i<a.length;i++)o=a[i],!(t.indexOf(o)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,o)||(n[o]=e[o]))}return n}function he(e,t){if(e==null)return{};var n={},o=Object.keys(e),i,a;for(a=0;a<o.length;a++)i=o[a],!(t.indexOf(i)>=0)&&(n[i]=e[i]);return n}const me=`/services/data/v57.0/connect/sites/${G.default}/cms/delivery/contents?contentTypeFQN=sfdc_cms__mobilePublisherConfig&includeContentBody=true`;function P(e,t){if(!b()){l.log("Native JS API is not available");return}const{invokeNative:n}=window.mycommunities.nativejsapi;return n(e,t)}function ge(e=""){return new RegExp("^([a-z]+://)","i").test(e)}function we(e=""){if(!ge(e))return!1;const t=new URL(e),n=window.location.host;return t.host!==n}async function ve(){if(!b()){l.log("Native JS API is not available");return}K();try{const e=await B.fetch(me,{method:"GET"});if(e.status===200){const t=await e.json(),n=window.location.href.endsWith("/")?window.location.href.slice(0,-1):window.location.href,{nativeTabMenu:o,mobilePublisherAppUpdateConfig:i}=t.contents[0]?.contentBody||{};if(o?.menuItems?.forEach((a,r)=>{const{payload:s}=a,c=pe(a,ce);o.menuItems[r]=v(v({},c),{},{id:(r+1)*10,position:r+1,targetUrl:n+a.targetUrl,iconDetails:v(v({},c.iconDetails),{},{mimeType:"image/png",url:`data:image/png;base64,${s}`})})}),i){const{forceAppUpdate:a,enableAppUpdate:r,minVersion:s}=i,c=Me()?"ios":Ee()?"android":"",u={forceAppUpdate:a,enableAppUpdate:r,minVersion:s[c]};Oe("forceAppUpdate")?o.appUpdateConfig={enableAppUpdate:r,gracePeriod:a?0:15}:Ue(u)}L(o)}else l.log("Failed to fetch bottom tab bar. Status is: ",e.status),L(!0)}catch(e){l.log("Failed to fetch bottom tab bar",e),L(!0)}l.log("Initial load done! Splash Screen hidden")}function be(e,t){const n=new URL(e||"",window.location.origin);e=n.href;const o="/servlet/networks/switch",i=n.pathname,a=i.indexOf("/s/"),r=a===-1?i:i.substring(0,a+2);return[o,encodeURIComponent(o)].some(s=>e.includes(s))||!r.startsWith(t)}function ye(e){if(!e)return null;switch(e.length){case 15:return Ce(e);case 18:return e;default:return null}}function Pe(){const{cordova:e}=window;return typeof e!="undefined"&&e&&e.require("cordova/channel")&&e.require("cordova/channel").onDeviceReady&&e.require("cordova/channel").onDeviceReady.state===2}function A(){return Pe()?window.cordova.require("com.salesforce.plugin.oauth"):null}function Ae(e){if(!e)return!1;const t="/secur/logout.jsp";return e.includes(t)||e.includes(encodeURIComponent(t))}function Le(e){const t=A();t&&t.logout(e)}function T(){l.log("hybrid_app_manager_utils:handle_page_loaded"),Y(),b()&&(typeof window.mycommunities.nativejsapi.webAppPageLoadDone=="function"?(l.log("hybrid_app_manager_utils:handle_page_loaded: webAppPageLoadDone function called"),window.mycommunities.nativejsapi.webAppPageLoadDone()):l.log("hybrid_app_manager_utils:handle_page_loaded:webAppPageLoadDone function is not available"))}function L(e){const{webAppBootstrapDone:t}=window.mycommunities.nativejsapi;l.log("Triggering webAppBootstrapDone"),t(e)}function Oe(e){return b()?window.mycommunities.nativejsapi.clientFeatures?.[e]?.enabled:!1}function Ue(e){const t=De();if(e.enableAppUpdate&&t){const n=e.minVersion.version;if(Re(t,n)){const i=d.createElement("app-update-modal",{is:le});i.config=e,document.body.appendChild(i)}}}function Re(e,t){let n=e.split("."),o=t.split("."),i=0;for(;n.length<o.length;)n.push("0");for(;o.length<n.length;)o.push("0");n=n.map(Number),o=o.map(Number);for(let a=0;a<n.length;++a)if(n[a]!==o[a])if(n[a]>o[a]){i=1;break}else{i=-1;break}return i===-1}function Me(){const e=window.navigator.userAgent;return e.toLowerCase().includes("iphone")||e.toLowerCase().includes("ipad")}function Ee(){return window.navigator.userAgent.toLowerCase().includes("android")}function De(){const t=window.navigator.userAgent.split("CommunityHybridContainer/")[1];return t&&(t.match(/(\d{1,3}\.)?(\d{1,3}\.)?(\d{1,3})/)||[])[0]}function Ce(e){let t="";const n="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456";for(let o=0;o<3;++o){let i=0;for(let a=0;a<5;a++){const r=e.charAt(o*5+a);r>="A"&&r<="Z"&&(i+=1<<a)}t+=n.charAt(i)}return e+t}function b(){return window?.mycommunities?.nativejsapi}const Te="/secur/frontdoor.jsp";function ke({routeUrl:e}){const t=A();t?t.authenticate(function(n){n&&n.accessToken&&(document.cookie=`sid=${n.accessToken}; path=/; secure=true`,e!=null&&window.open(e))},function(){l.logError("Error in handler Session Timeout. Cordova OAuth Plugin authentication failed.")}):l.logError("Error in handler Session Timeout. OAuth Plugin is not available.")}async function Ne(){let e=!1;const t=await p.load("@app/user/v/1");try{await p.load(`@app/user?c=${crypto.randomUUID()}`,"mobileruntime/hybridAppManager/v/1")}catch(n){e=!t.isGuest}return e}function k(e){const t=new URL(y.default,window.location.href),n=new URL(e,window.location.href);return y.default&&t.pathname===n.pathname&&t.origin===n.origin}function N(e){const t=A();t?t.authenticate(function(n){window.location.href=`${n.loginUrl}${Te}?sid=${n.accessToken}&retURL=${encodeURIComponent(e||J.default)}&display=touch`},function(){throw new Error("Authentication via Cordova OAuth Plugin failed.")}):window.location.href=e||y.default}function Se(e){if(typeof e=="object"){const{attributes:{url:t}={url:null}}=e;if(k(t)){const n=new URL(t,window.location.href);return N(n.searchParams.get("startURL")),!1}}return!0}async function je({next:{route:e,data:t}={}}={}){if(t&&t.isPublic!==!1)return!0;const{default:n}=await p.load("@app/user/v/1");if(n.isGuest){const o=await R.generateUrl(e);if(o){const i=new URL(o,window.location.href);return N(i.pathname+i.search+i.hash),!1}}return!0}const Ie=["/sfc/servlet.shepherd","/servlet/servlet.FileDownload","/servlet/fileField","version/renditionDownload"];function O(){l.log("Handle showing of Toast Message for Error case.")}function Fe(e){const t="/sfc/servlet.:type/:contentType/download/:recordId",n=new RegExp(t.replace(/:[^\s/]+/g,"([\\w-]+)")),o=e.match(n);if(o&&o.length===4)return{recordId:o[3]};const i="/servlet/servlet.:type?file=:recordId",a=new RegExp(i.replace(/:[^\s/?]+/g,"([\\w-]+)").replace(/\?/g,"[?]")),r=e.match(a);if(r&&r.length===3)return{recordId:r[2]};const s="/servlet/fileField";if(e.includes(s)){const u=new URLSearchParams(decodeURIComponent(e).split("?")[1]),m=u.get("entityId"),U=u.get("field");return{recordId:m,fieldId:U}}const c="version/renditionDownload";if(e.includes(c)){const m=new URL(e).searchParams.get("versionId");return{recordId:ye(m)}}return null}function xe(e){const t=P("downloadFile",e);if(t)return t.catch(n=>{l.log(`Error while downloading file of record id: ${e.recordId} message: ${n}`&&n.message),O()})}function Be(e){if(!e){l.log(`${q.default}. URL is ${e}`),O();return}const t=Fe(e);if(!t){l.log(`Parsing the file URL "${e}" yielded null`),O();return}return xe(t)}function Ve(e){return e=e||"",Ie.some(t=>e.indexOf(t)>-1)}const _e=globalThis.open;function S(e){const t=new URL(e,window.location.href);if(e=t.href,e.indexOf("/")!==0&&e.indexOf("http://")!==0&&e.indexOf("https://")!==0)return _e(e,"_self");if(Ae(e))Le(e);else if(we(t))P("navigateToExternalURL",{url:e});else if(k(e))j({type:"standard__webPage",attributes:{url:t.pathname+t.searchParams+t.hash}},!1);else if(Ve(e))Be(e);else if(be(e,M.default))P("navigateToExternalURL",{url:e});else{const n=t.pathname,o=n==="/"||n===M.default;j({type:"standard__webPage",attributes:{url:n}},o)}}function j(e,t){return document.dispatchEvent(new CustomEvent("notify-client-module",{cancelable:!0,composed:!0,detail:{action:"navigate",data:{routeObj:e,replaceState:t}}}))}function We(){He()}function He(){document.addEventListener("click",Je),document.addEventListener("notify-mobile-module",qe)}function Ge({pathMatch:e,route:t,routeDefinition:n}){const{id:o}=t||{},{type:i}=t?.pageReference||{},{isRoot:a}=n?.metadata||{};document.dispatchEvent(new CustomEvent("routeChangeSuccess",{bubbles:!0,composed:!0,detail:{routeType:i,routeId:o,routeUrl:e,backNavigation:{canGoBack:!a}}}))}function Je(e){const t=e.composedPath()[0];if(t.tagName.toLowerCase()==="a")return e.preventDefault(),e.stopPropagation(),S(t.href)}function qe({detail:e}){const{action:t,data:n}=e||{action:"",data:null};switch(t){case"navigationcompleted":Ge(n?.routeResult||{});break;default:l.log(`No such ${t} exists in notify-mobile-module event. Please re-check!!`);break}}function Ke(){window.open=e=>S(e)}async function I(){return await ve(),/interactive|complete/.test(document.readyState)?T():document.addEventListener("DOMContentLoaded",T,!1),Ke(),We()}function F(){return ke({routeUrl:window.location.pathname}),!1}g.PreNavigateOverrides.add(e=>je(e)),g.NavigationOverrides.add(e=>Se(e)),g.PageNavigationFailureOverrides.add(async({error:e,isPublic:t})=>{const n=await Ne();return e?.constructor?.name==="LoaderError"&&!t&&n?F():!0}),g.SessionTimeoutOverrides.add(()=>F());function Ye(e){Object.entries(e).forEach(([t,n])=>{LWR.define(t,[],function(){return n})})}Ye({"mobileruntime/hybridAppManager":I}),f.hybridAppManager=I,Object.defineProperty(f,"__esModule",{value:!0})}); |
| New file |
| | |
| | | /** |
| | | * Copyright (c) 2021, salesforce.com, inc. |
| | | * All rights reserved. |
| | | * SPDX-License-Identifier: MIT |
| | | * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT |
| | | */ |
| | | /* LWR Legacy Module Loader Shim v0.9.0 */ |
| | | !function(){"use strict";var e;let t;function r(e){t=e}!function(e){e[e.Start=0]="Start",e[e.End=1]="End"}(e||(e={}));const o=globalThis.performance,s=void 0!==o&&"function"==typeof o.mark&&"function"==typeof o.clearMarks&&"function"==typeof o.measure&&"function"==typeof o.clearMeasures;function n({id:r,specifier:n}){t?t({id:r,phase:e.Start,specifier:n}):s&&o.mark(r+(n?`.${n}`:""))}function i({id:r,specifier:n}){if(t)t({id:r,phase:e.End,specifier:n});else if(s){const e=n?`.${n}`:"",t=r+e,s=`${r}.duration${e}`;o.measure(s,t),o.clearMarks(t),o.clearMeasures(s)}}function a(e,t,o,s){const{autoBoot:n,customInit:i}=e;if(function(e,t){if(!e&&!t)throw new Error("The customInit hook is required when autoBoot is false");if(e&&t)throw new Error("The customInit hook must not be defined when autoBoot is true")}(n,i),i){i({initializeApp:t,define:o,onBootstrapError:s,attachDispatcher:r},e)}}const l="function"==typeof setTimeout,d="undefined"!=typeof console;const c=globalThis;c.LWR.requiredModules=c.LWR.requiredModules||[],c.LWR.requiredModules.indexOf("lwr/loaderLegacy/v/0_9_0")<0&&c.LWR.requiredModules.push("lwr/loaderLegacy/v/0_9_0"),new class{constructor(e){this.defineCache={},this.orderedDefs=[],l&&(this.watchdogTimerId=this.startWatchdogTimer()),this.global=e,this.config=e.LWR,this.loaderModule="lwr/loaderLegacy/v/0_9_0",this.errorHandler=this.config.onError;const t=this.tempDefine.bind(this);e.LWR.define=t,this.bootReady=this.config.autoBoot;try{this.createProfilerModule(this.config),a(Object.freeze(this.config),this.postCustomInit.bind(this),t,(e=>{this.errorHandler=e}))}catch(e){this.enterErrorState(e)}}canInit(){const e=this.config.requiredModules.every((e=>this.orderedDefs.includes(e)));return this.bootReady&&e}tempDefine(...e){const t=e[0];this.defineCache[t]=e,this.orderedDefs.push(t),this.canInit()&&(l&&clearTimeout(this.watchdogTimerId),this.initApp())}postCustomInit(){this.bootReady=!0,this.canInit()&&this.initApp()}initApp(){try{const e={baseUrl:this.config.baseUrl,profiler:{logOperationStart:n,logOperationEnd:i},appMetadata:{appId:this.config.appId,bootstrapModule:this.config.bootstrapModule,rootComponent:this.config.rootComponent,rootComponents:this.config.rootComponents}},t=function(e,t,r,o){if(!t||"function"!=typeof t[2])throw new Error(`Expected loader with specifier "${e}" to be a module`);const s={};t[2].call(null,s);const{Loader:n}=s,i=new n(r);return o&&o.length&&i.registerExternalModules(o),i.define(e,["exports"],(e=>{Object.assign(e,{define:i.define.bind(i),load:i.load.bind(i),services:i.services})}),t[3]),i}(this.loaderModule,this.defineCache[this.loaderModule],e,this.config.preloadModules);this.mountApp(t)}catch(e){this.enterErrorState(e)}}waitForDOMContentLoaded(){return void 0===typeof document||"interactive"===document.readyState||"complete"===document.readyState?Promise.resolve():new Promise((e=>{document.addEventListener("DOMContentLoaded",(()=>{e()}))}))}createProfilerModule(e){e.define("lwr/profiler/v/0_9_0",["exports"],(e=>{Object.assign(e,{logOperationStart:n,logOperationEnd:i})}),{})}mountApp(e){const{bootstrapModule:t,rootComponent:r,importMappings:o,rootComponents:s,ssrProps:n,endpoints:i}=this.config;this.global.LWR=Object.freeze({define:e.define.bind(e),rootComponent:r,rootComponents:s,ssrProps:n,importMappings:o,endpoints:i}),this.orderedDefs.forEach((t=>{t!==this.loaderModule&&e.define(...this.defineCache[t])}));const{disableInitDefer:a}=this.config;e.registerImportMappings(o).then((()=>{if(!a)return this.waitForDOMContentLoaded()})).then((()=>e.load(t))).catch((e=>{this.enterErrorState(new Error(`Application ${r||t} could not be loaded: ${e}`))}))}enterErrorState(e){n({id:"lwr.bootstrap.error"}),this.errorHandler?this.errorHandler(e):d&&console.error(`An error occurred during LWR bootstrap. ${e.message}`,e.stack)}startWatchdogTimer(){return setTimeout((()=>{this.enterErrorState(new Error("Failed to load required modules - timed out"))}),3e5)}}(c)}(),LWR.define("lwr/loaderLegacy/v/0_9_0",["exports"],(function(exports){"use strict";const templateRegex=/\{([0-9]+)\}/g;function templateString(e,t){return e.replace(templateRegex,((e,r)=>t[r]))}function generateErrorMessage(e,t){const r=Array.isArray(t)?templateString(e.message,t):e.message;return`LWR${e.code}: ${r}`}class LoaderError extends Error{constructor(e,t){super(),this.message=generateErrorMessage(e,t)}}function invariant(e,t){if(!e)throw new LoaderError(t)}const MISSING_NAME=Object.freeze({code:3e3,message:"A module name is required.",level:0}),FAIL_INSTANTIATE=Object.freeze({code:3004,message:"Failed to instantiate module: {0}",level:0}),NO_AMD_REQUIRE=Object.freeze({code:3005,message:"AMD require not supported.",level:0}),FAILED_DEP=Object.freeze({code:3006,level:0,message:"Failed to load dependency: {0}"}),INVALID_DEPS=Object.freeze({code:3007,message:"Unexpected value received for dependencies argument; expected an array.",level:0}),FAIL_LOAD=Object.freeze({code:3008,level:0,message:"Error loading {0}"}),UNRESOLVED=Object.freeze({code:3009,level:0,message:"Unable to resolve bare specifier: {0}"}),NO_BASE_URL=Object.freeze({code:3010,level:0,message:"baseUrl not set"});Object.freeze({code:3011,level:0,message:"Cannot set a loader service multiple times"});const INVALID_HOOK=Object.freeze({code:3012,level:0,message:"Invalid hook received"}),INVALID_LOADER_SERVICE_RESPONSE=Object.freeze({code:3013,level:0,message:"Invalid response received from hook"}),MODULE_LOAD_TIMEOUT=Object.freeze({code:3014,level:0,message:"Error loading {0} - timed out"}),HTTP_FAIL_LOAD=Object.freeze({code:3015,level:0,message:"Error loading {0}, status code {1}"}),STALE_HOOK_ERROR=Object.freeze({code:3016,level:0,message:"An error occurred handling module conflict"});Object.freeze({code:3017,level:0,message:"Marking module(s) as externally loaded, but they are already loaded: {0}"});const FAIL_HOOK_LOAD=Object.freeze({code:3018,level:0,message:'Error loading "{0}" from hook'}),BAD_IMPORT_MAP=Object.freeze({code:3011,level:0,message:"import map is not valid"}),hasDocument="undefined"!=typeof document,hasSetTimeout="function"==typeof setTimeout,hasConsole="undefined"!=typeof console;function getBaseUrl(){let e;if(hasDocument){const t=document.querySelector("base[href]");e=t&&t.href}if(!e&&"undefined"!=typeof location){e=location.href.split("#")[0].split("?")[0];const t=e.lastIndexOf("/");-1!==t&&(e=e.slice(0,t+1))}return e}function isUrl(e){return-1!==e.indexOf("://")}function resolveIfNotPlainOrUrl(e,t){if(-1!==e.indexOf("\\")&&(e=e.replace(/\\/g,"/")),"/"===e[0]&&"/"===e[1])return t.slice(0,t.indexOf(":")+1)+e;if("."===e[0]&&("/"===e[1]||"."===e[1]&&("/"===e[2]||2===e.length&&(e+="/"))||1===e.length&&(e+="/"))||"/"===e[0]){const r=t.slice(0,t.indexOf(":")+1);let o;if("/"===t[r.length+1]?"file:"!==r?(o=t.slice(r.length+2),o=o.slice(o.indexOf("/")+1)):o=t.slice(8):o=t.slice(r.length+("/"===t[r.length]?1:0)),"/"===e[0])return t.slice(0,t.length-o.length-1)+e;const s=o.slice(0,o.lastIndexOf("/")+1)+e,n=[];let i=-1;for(let e=0;e<s.length;e++)-1!==i?"/"===s[e]&&(n.push(s.slice(i,e+1)),i=-1):"."===s[e]?"."!==s[e+1]||"/"!==s[e+2]&&e+2!==s.length?"/"===s[e+1]||e+1===s.length?e+=1:i=e:(n.pop(),e+=2):i=e;return-1!==i&&n.push(s.slice(i)),t.slice(0,t.length-o.length)+n.join("")}}function resolveUrl(e,t){return resolveIfNotPlainOrUrl(e,t)||(isUrl(e)?e:resolveIfNotPlainOrUrl("./"+e,t))}function createScript(e){const t=document.createElement("script");return t.async=!0,t.crossOrigin="anonymous",t.src=e,t}let lastWindowError$1,lastWindowErrorUrl;function loadModuleDef(e){return new Promise((function(t,r){if(hasDocument){const o=createScript(e);o.addEventListener("error",(()=>{r(new LoaderError(FAIL_LOAD,[e]))})),o.addEventListener("load",(()=>{document.head.removeChild(o),lastWindowErrorUrl===e?r(lastWindowError$1):t()})),document.head.appendChild(o)}}))}hasDocument&&window.addEventListener("error",(e=>{lastWindowErrorUrl=e.filename,lastWindowError$1=e.error}));const MODULE_LOAD_TIMEOUT_TIMER=3e5;let lastWindowError;function isCustomResponse(e){return Object.prototype.hasOwnProperty.call(e,"data")&&!Object.prototype.hasOwnProperty.call(e,"blob")}function isFetchResponse(e){return"function"==typeof e.blob}function isResponseAPromise(e){return!(!e||!e.then)}async function evaluateLoadHookResponse(response,id){return Promise.resolve().then((async()=>{if(!response.status)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);if(200!==response.status)throw new LoaderError(HTTP_FAIL_LOAD,[id,`${response.status}`]);const isResponse=isFetchResponse(response);let code;if(isCustomResponse(response))code=response.data;else{if(!isResponse)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);code=await response.text()}if(!code)throw new LoaderError(FAIL_LOAD,[id]);code=`${code}\n//# sourceURL=${id}`;try{eval(code)}catch(e){throw new LoaderError(FAIL_LOAD,[id])}if(lastWindowError)throw new LoaderError(FAIL_LOAD,[id]);return!0}))}async function evaluateLoadHook(e,t){return hasSetTimeout?new Promise(((r,o)=>{const s=setTimeout((()=>{o(new LoaderError(MODULE_LOAD_TIMEOUT,[e]))}),MODULE_LOAD_TIMEOUT_TIMER);t.then((e=>{r(e)})).catch((()=>{o(new LoaderError(FAIL_HOOK_LOAD,[e]))})).finally((()=>{clearTimeout(s)}))})):t}function reportError(e){hasConsole&&console.error(e)}function evaluateHandleStaleModuleHooks(e,t){const{name:r,oldHash:o,newHash:s}=t;for(let t=0;t<e.length;t++){const n=e[t];try{if(null!==n({name:r,oldHash:o,newHash:s}))break}catch(e){reportError(new LoaderError(STALE_HOOK_ERROR))}}}hasDocument&&globalThis.addEventListener("error",(e=>{lastWindowError=e.error}));const LOADER_PREFIX="lwr.loader.",MODULE_DEFINE=`${LOADER_PREFIX}module.define`,MODULE_FETCH=`${LOADER_PREFIX}module.fetch`,MODULE_ERROR=`${LOADER_PREFIX}module.error`;class ModuleRegistry{constructor(e){this.namedDefineRegistry=new Map,this.moduleRegistry=new Map,this.aliases=new Map,this.baseUrl=e.baseUrl||"",this.profiler=e.profiler}async load(e,t){const r=await this.resolve(e,t),o=this.getModuleRecord(r,e);return o.evaluated?o.module:(o.evaluationPromise||(o.evaluationPromise=this.topLevelEvaluation(o)),o.evaluationPromise)}async resolve(e,t){const r=this.baseUrl;let o,s=e;const n=this.resolveHook;if(n){for(let e=0;e<n.length;e++){const t=(0,n[e])(s,{parentUrl:r});let i;if((t||null===t)&&(i=isResponseAPromise(t)?await t:t),null!==i){if("string"==typeof i){if(resolveIfNotPlainOrUrl(i,r))throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);s=i;continue}if(o=i&&i.url&&(resolveIfNotPlainOrUrl(i.url,r)||i.url),!o)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);break}}if(s!==e){if(!o&&this.namedDefineRegistry.has(s))return s;e=s}}if(!o){const t=resolveIfNotPlainOrUrl(e,r)||e;if(this.moduleRegistry.has(t))return t;if(this.resolver){if(o=this.resolver.resolve(t,r),this.namedDefineRegistry.has(t)&&this.namedDefineRegistry.get(t).defined){if(!this.moduleRegistry.get(o)||!this.aliases.has(t))return t}}else o=t}if(!o||!isUrl(o)){if(this.namedDefineRegistry.has(e))return e;throw new LoaderError(UNRESOLVED,[e])}return t&&isUrl(o)&&(o+=`?importer=${encodeURIComponent(t)}`),o}has(e){return this.moduleRegistry.has(e)}define(e,t,r,o){const s=this.namedDefineRegistry.get(e);if(s&&s.defined)return void(this.lastDefine=s);const n={name:e,dependencies:t,exporter:r,signatures:o,defined:!0};s&&s.external&&s.external.resolveExternal(n),this.profiler.logOperationStart({id:MODULE_DEFINE,specifier:e}),this.namedDefineRegistry.set(e,n),this.lastDefine=n,o.hashes&&Object.entries(o.hashes).forEach((([e,t])=>{this.checkModuleSignature(e,t)}))}registerExternalModules(e){e.map((e=>{if(!this.namedDefineRegistry.has(e)){let t,r;const o=new Promise(((o,s)=>{t=o,r=setTimeout((()=>{s(new LoaderError(MODULE_LOAD_TIMEOUT,[e]))}),MODULE_LOAD_TIMEOUT_TIMER)})).finally((()=>{clearTimeout(r)})),s={name:e,defined:!1,external:{resolveExternal:t,moduleDefPromise:o}};this.namedDefineRegistry.set(e,s)}}))}checkModuleSignature(e,t){const r=this.namedDefineRegistry.get(e);if(!r){const r={name:e,signatures:{ownHash:t},defined:!1};return void this.namedDefineRegistry.set(e,r)}const o=r.signatures?r.signatures.ownHash:void 0;if(o&&t!==o){const r=this.handleStaleModuleHook;r&&evaluateHandleStaleModuleHooks(r,{name:e,oldHash:o,newHash:t})}}setImportResolver(e){this.resolver=e}getExistingModuleRecord(e,t){const r=this.moduleRegistry.get(e);if(r)return this.storeModuleAlias(t,e),r;if(e!==t){const e=this.aliases.get(t);if(e){const t=this.moduleRegistry.get(e);if(t)return t}}return r}getModuleRecord(e,t){const r=this.getExistingModuleRecord(e,t);if(r)return r;const o=this.getModuleDef(e,t),s=o.then((e=>{const t=e.dependencies.map((e=>{if("exports"!==e)return invariant("require"!==e,NO_AMD_REQUIRE),this.getModuleDependencyRecord.call(this,e)})).filter((e=>void 0!==e));return Promise.all(t)})),n={id:e,module:Object.create(null),dependencyRecords:s,instantiation:o,evaluated:!1,evaluationPromise:null};return this.moduleRegistry.set(e,n),this.storeModuleAlias(t,e),n}storeModuleAlias(e,t){if(e!==t)if(this.aliases.has(e)){if(hasConsole){const r=this.aliases.get(e);r!==t&&console.warn(`Alias update attempt: ${e}=>${r}, ${t}`)}}else this.aliases.set(e,t)}async getModuleDependencyRecord(e){const t=await this.resolve(e);return this.getModuleRecord(t,e)}async topLevelEvaluation(e){return await this.instantiateAll(e,{}),this.evaluateModule(e,{})}async instantiateAll(e,t){if(!t[e.id]){t[e.id]=!0;const r=await e.dependencyRecords;if(r)for(let e=0;e<r.length;e++){const o=r[e];await this.instantiateAll(o,t)}}}async evaluateModule(e,t){const r=await e.dependencyRecords;r.length>0&&(t[e.id]=!0,await this.evaluateModuleDependencies(r,t));const{exporter:o,dependencies:s}=await e.instantiation,n={},i=await Promise.all(s.map((async e=>{if("exports"===e)return n;const t=await this.resolve(e),r=this.moduleRegistry.get(t);if(!r)throw new LoaderError(FAILED_DEP,[t]);const o=r.module;if(!r.evaluated)return this.getCircularDependencyWrapper(o);if(o)return o.__defaultInterop?o.default:o;throw new LoaderError(FAILED_DEP,[t])})));if(e.evaluated)return e.module;let a=o(...i);void 0!==a?(a={default:a},Object.defineProperty(a,"__defaultInterop",{value:!0})):this.isNamedExportDefaultOnly(n)&&Object.defineProperty(n,"__useDefault",{value:!0});const l=a||n;for(const t in l)Object.defineProperty(e.module,t,{enumerable:!0,set(e){l[t]=e},get:()=>l[t]});return l.__useDefault&&Object.defineProperty(e.module,"__useDefault",{value:!0}),l.__defaultInterop&&Object.defineProperty(e.module,"__defaultInterop",{value:!0}),l.__esModule&&Object.defineProperty(e.module,"__esModule",{value:!0}),e.evaluated=!0,Object.freeze(e.module),e.module}isNamedExportDefaultOnly(e){return void 0!==e&&2===Object.getOwnPropertyNames(e).length&&Object.prototype.hasOwnProperty.call(e,"default")&&Object.prototype.hasOwnProperty.call(e,"__esModule")}getCircularDependencyWrapper(e){const t=()=>e.__useDefault||e.__defaultInterop?e.default:e;return t.__circular__=!0,t}async evaluateModuleDependencies(e,t){for(let r=0;r<e.length;r++){const o=e[r];o.evaluated||t[o.id]||(t[o.id]=!0,await this.evaluateModule(o,t))}}async getModuleDef(e,t){this.lastDefine=void 0;const r=isUrl(e)?t!==e?t:void 0:e;let o=r&&this.namedDefineRegistry.get(r);if(o&&o.external)return o.external.moduleDefPromise;if(o&&o.defined)return o;const s=this.baseUrl,n=r||t;return this.profiler.logOperationStart({id:MODULE_FETCH,specifier:n}),Promise.resolve().then((async()=>{const t=this.loadHook;if(t)for(let r=0;r<t.length;r++){const o=(0,t[r])(e,s),n=isResponseAPromise(o)?await evaluateLoadHook(e,o):o;if(void 0===n)throw new LoaderError(INVALID_LOADER_SERVICE_RESPONSE);if(n&&null!==n)return evaluateLoadHookResponse(n,e)}return!1})).then((t=>{if(!0!==t&&hasDocument)return loadModuleDef(e)})).then((()=>{if(o=r&&this.namedDefineRegistry.get(r),o||(o=this.lastDefine),!o)throw new LoaderError(FAIL_INSTANTIATE,[e]);return this.profiler.logOperationEnd({id:MODULE_FETCH,specifier:n}),o})).catch((e=>{throw this.profiler.logOperationStart({id:MODULE_ERROR,specifier:n}),e}))}addLoaderPlugin(e){if("object"!=typeof e)throw new LoaderError(INVALID_HOOK);const{loadModule:t,resolveModule:r}=e;r&&(this.resolveHook?this.resolveHook.push(r):this.resolveHook=[r]),t&&(this.loadHook?this.loadHook.push(t):this.loadHook=[t])}registerHandleStaleModuleHook(e){this.handleStaleModuleHook?this.handleStaleModuleHook.push(e):this.handleStaleModuleHook=[e]}}function getMatch(e,t){if(t[e])return e;let r=e.length;do{const o=e.slice(0,r+1);if(o in t)return o}while(-1!==(r=e.lastIndexOf("/",r-1)))}function targetWarning(e,t,r){hasConsole&&console.warn("Package target "+r+", resolving target '"+t+"' for "+e)}function applyPackages(e,t,r){const o=getMatch(e,t);if(o){const r=t[o];if(null===r)return;if(!(e.length>o.length&&"/"!==r[r.length-1])){return e.length>o.length&&"/"===r[r.length-1]&&r.lastIndexOf(o)===r.length-o.length?r.substring(0,r.lastIndexOf(o))+encodeURIComponent(e):r+e.slice(o.length)}targetWarning(o,r,"should have a trailing '/'")}else if(r&&!isUrl(e))return r+encodeURIComponent(e)}function resolveImportMapEntry(e,t,r){e.scopes||(e.scopes={}),e.imports||(e.imports={});const o=e.scopes;let s=r&&getMatch(r,o);for(;s;){const e=applyPackages(t,o[s]);if(e)return e;s=getMatch(s.slice(0,s.lastIndexOf("/")),o)}return applyPackages(t,e.imports,e.default)||isUrl(t)&&t||void 0}function resolveAndComposePackages(e,t,r,o,s){for(const n in e){const i=resolveIfNotPlainOrUrl(n,r)||n,a=e[n];if("string"!=typeof a)continue;const l=resolveImportMapEntry(o,resolveIfNotPlainOrUrl(a,r)||a,s);l?t[i]=l:targetWarning(n,a,"bare specifier did not resolve")}}function resolveAndComposeImportMap(e,t,r={imports:{},scopes:{}}){const o={imports:Object.assign({},r.imports),scopes:Object.assign({},r.scopes),default:e.default};if(e.imports&&resolveAndComposePackages(e.imports,o.imports,t,r),e.scopes)for(const s in e.scopes){const n=resolveUrl(s,t);resolveAndComposePackages(e.scopes[s],o.scopes[n]||(o.scopes[n]={}),t,r,n)}return e.default&&(o.default=resolveIfNotPlainOrUrl(e.default,t)),o}class ImportMapResolver{constructor(e){this.importMap=e}resolve(e,t){return resolveImportMapEntry(this.importMap,e,t)}}const IMPORTMAP_SCRIPT_TYPE="lwr-importmap";function iterateDocumentImportMaps(e,t){const r=document.querySelectorAll(`script[type="${IMPORTMAP_SCRIPT_TYPE}"]`+t),o=Array.from(r).filter((e=>!e.src||(hasConsole&&console.warn("LWR does not support import maps from script src"),!1)));Array.prototype.forEach.call(o,e)}async function getImportMapFromScript(e){return Promise.resolve(e.innerHTML)}async function evaluateImportMaps(e){let t={imports:{},scopes:{}},r=Promise.resolve(t);if(hasDocument){if(e||(e=getBaseUrl()),!e)throw new LoaderError(NO_BASE_URL);iterateDocumentImportMaps((o=>{r=r.then((()=>getImportMapFromScript(o))).then((e=>{try{return JSON.parse(e)}catch(e){throw new LoaderError(BAD_IMPORT_MAP)}})).then((r=>(t=resolveAndComposeImportMap(r,o.src||e,t),t)))}),"")}return r}class Loader{constructor(e){let t=(e=e||{}).baseUrl,r=e.profiler;if(t&&(t=t.replace(/\/?$/,"/")),t||(t=getBaseUrl()),!t)throw new LoaderError(NO_BASE_URL);this.baseUrl=t,r||(r={logOperationStart:()=>{},logOperationEnd:()=>{}}),this.registry=new ModuleRegistry({baseUrl:t,profiler:r}),this.services=Object.freeze({addLoaderPlugin:this.registry.addLoaderPlugin.bind(this.registry),handleStaleModule:this.registry.registerHandleStaleModuleHook.bind(this.registry),appMetadata:e.appMetadata})}define(e,t,r,o){invariant("string"==typeof e,MISSING_NAME);let s=r,n=t,i=o;"function"==typeof n&&(s=t,n=[],i=r),i=i||{},invariant(Array.isArray(n),INVALID_DEPS),this.registry.define(e,n,s,i)}async load(e,t){return this.registry.load(e,t)}has(e){return this.registry.has(e)}async resolve(e,t){return this.registry.resolve(e,t)}async registerImportMappings(e){let t;if(t=e?resolveAndComposeImportMap(e,this.baseUrl,this.parentImportMap):await evaluateImportMaps(this.baseUrl),this.parentImportMap=t,this.parentImportMap){const e=new ImportMapResolver(this.parentImportMap);this.registry.setImportResolver(e)}}registerExternalModules(e){this.registry.registerExternalModules(e)}}exports.Loader=Loader,Object.defineProperty(exports,"__esModule",{value:!0})})); |
| New file |
| | |
| | | LWR.define("lwr/metrics/v/0_9_0",["exports"],function(T){"use strict";const V="lwr.bootstrap.",ue=`${V}end`,ne=`${V}error`,ce=`${ne}.count`,Y=`${V}duration`,P="lwr.loader.",C=`${P}module.define`,N=`${C}.count`,j=`${P}module.fetch`,_=`${j}.count`,_e=`${j}.duration`,oe=`${P}module.error`,S=`${oe}.count`,ie=`${P}mappings.fetch`,st=`${ie}.count`,ve=`${ie}.duration`,Q=`${P}mappings.error`,ze=`${Q}.count`,Te="lwr.router.",Le=`${Te}navigate`,dr=`${Le}.count`,W=`${Le}.duration`,Me=`${Te}view`,B=`${Me}.duration`,at=`${Te}error`,ke=`${at}.count`;T.BOOTSTRAP_DURATION=Y,T.BOOTSTRAP_END=ue,T.BOOTSTRAP_ERROR=ne,T.BOOTSTRAP_ERROR_COUNT=ce,T.BOOTSTRAP_PREFIX=V,T.LOADER_PREFIX=P,T.MAPPINGS_ERROR=Q,T.MAPPINGS_ERROR_COUNT=ze,T.MAPPINGS_FETCH=ie,T.MAPPINGS_FETCH_COUNT=st,T.MAPPINGS_FETCH_DURATION=ve,T.MODULE_DEFINE=C,T.MODULE_DEFINE_COUNT=N,T.MODULE_ERROR=oe,T.MODULE_ERROR_COUNT=S,T.MODULE_FETCH=j,T.MODULE_FETCH_COUNT=_,T.MODULE_FETCH_DURATION=_e,T.ROUTER_ERROR=at,T.ROUTER_ERROR_COUNT=ke,T.ROUTER_NAV=Le,T.ROUTER_NAV_COUNT=dr,T.ROUTER_NAV_DURATION=W,T.ROUTER_PREFIX=Te,T.ROUTER_VIEW=Me,T.ROUTER_VIEW_DURATION=B,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("lwr/init/v/0_9_0",["exports","lwr/metrics/v/0_9_0","lwr/profiler/v/0_9_0","lwc/v/2_41_4"],function(T,V,ue,ne){"use strict";function ce(j,_){return ne.createElement(j,{is:_})}function Y(j){return j.replace(/\/v\/[a-zA-Z0-9-_.]+$/,"").replace("/","-").replace(/([A-Z])/g,_=>`-${_.toLowerCase()}`)}const P=/-([a-z])/g;function C(j){return j.replace(P,_=>_[1].toUpperCase())}function N(j){if(typeof customElements!="undefined"&&typeof document!="undefined"){const _=document.querySelector("[lwr-root]");j.forEach(([_e,oe])=>{const S=Y(_e);let ie=document.body.querySelector(S);ie?document.querySelectorAll(S).forEach(ve=>{const Q=ce(S,oe);for(const{name:ze,value:Te}of ve.attributes){Q.setAttribute(ze,Te);const Le=C(ze);Le in Q&&(Q[Le]=Te)}for(;ve.childNodes.length>0;)Q.appendChild(ve.childNodes[0]);ve.parentElement.replaceChild(Q,ve)}):(ie=ce(S,oe),_?_.appendChild(ie):document.body.appendChild(ie))})}ue.logOperationStart({id:V.BOOTSTRAP_END})}T.getPropFromAttrName=C,T.init=N,T.toKebabCase=Y,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("webruntime/dynamicImportResourceHook/v/1_66_319-244_0",["exports","@app/basePath/v/1","@app/versionKey/v/1"],function(T,V,ue){"use strict";function ne(C){return C&&typeof C=="object"&&"default"in C?C:{default:C}}var ce=ne(V),Y=ne(ue);function P(C){const N="@salesforce/resourceUrl/",j="resourceUrl://";C.addLoaderPlugin({resolveModule:async _=>_.startsWith(N)?{url:`${j}${_}`}:null,loadModule:async _=>{if(_.startsWith(j)){const _e=_.split("/"),oe=_e[_e.length-1];return{data:`LWR.define('${N}${oe}', ['exports'], function(exports) { |
| | | exports.default = '${ce.default}/webruntime/org-asset/${Y.default}/resource-name/${oe}'; |
| | | });`,status:200}}return null}})}T.default=P,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("webruntime/o11yHook/v/1_66_319-244_0",["exports","lwr/loaderLegacy/v/0_9_0","@app/basePath/v/1","@app/apiBasePath/v/1","@salesforce/i18n/lang/v/1","webruntime/dispatcher/v/1","@app/o11yConfiguration/v/1","@app/o11yGuestToken/v/1","@app/isDesignMode/v/1","@app/isMobileAppMode/v/1","@app/isPreviewMode/v/1","@app/versionKey/v/1","@salesforce/site/Id/v/1"],function(T,V,ue,ne,ce,Y,P,C,N,j,_,_e,oe){"use strict";function S(u){return u&&typeof u=="object"&&"default"in u?u:{default:u}}var ie=S(ue),st=S(ne),ve=S(ce),Q=S(Y),ze=S(P),Te=S(C),Le=S(N),dr=S(j),W=S(_),Me=S(_e),B=S(oe);function at(u,t){var r=Object.keys(u);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(u);t&&(i=i.filter(function(s){return Object.getOwnPropertyDescriptor(u,s).enumerable})),r.push.apply(r,i)}return r}function ke(u){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?at(Object(r),!0).forEach(function(i){ni(u,i,r[i])}):Object.getOwnPropertyDescriptors?Object.defineProperties(u,Object.getOwnPropertyDescriptors(r)):at(Object(r)).forEach(function(i){Object.defineProperty(u,i,Object.getOwnPropertyDescriptor(r,i))})}return u}function ni(u,t,r){return t=K(t),t in u?Object.defineProperty(u,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):u[t]=r,u}function K(u){var t=Ut(u,"string");return typeof t=="symbol"?t:String(t)}function Ut(u,t){if(typeof u!="object"||u===null)return u;var r=u[Symbol.toPrimitive];if(r!==void 0){var i=r.call(u,t||"default");if(typeof i!="object")return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(u)}const xt={};var ii=Object.freeze({__proto__:null,_o11y:xt});class L{constructor(t){if(this._lazyMap=new Map,t!==void 0){if(typeof t=="number"&&t>0){this._maxSize=Math.ceil(t);return}throw new Error("maxSize must be a positive number")}}get maxSize(){return this._maxSize}get size(){return this._lazyMap.size}push(t,r){let i=this._lazyMap.get(t);if(!i){if(this.maxSize!==void 0&&this.size===this.maxSize)return!1;i=new Array,this._lazyMap.set(t,i)}return i.push(r),!0}getMessages(t,r){const i=this._lazyMap.get(t);return r&&this._lazyMap.has(t)&&this._lazyMap.set(t,[]),i||[]}getAllMessages(t){const r=new Map;for(const[i,s]of this._lazyMap.entries())s.length&&r.set(i,this.getMessages(i,t));return r}extractMessages(t){return this.getMessages(t,!0)}extractAllMessages(){return this.getAllMessages(!0)}get totalItemCount(){let t=0;for(const r of this._lazyMap.values())t+=r.length;return t}}class vt{constructor(){this.notImplemented="Method not implemented.";const t=typeof performance!="undefined";t?performance.timeOrigin?this._timeOrigin=performance.timeOrigin:this._timeOrigin=Date.now():this._timeOrigin=Date.now();const r=this._timeOrigin;t&&typeof performance.now=="function"?(this.perfNow=performance.now.bind(performance),this.time=()=>{const i=this.perfNow();return{tsNow:r+i,perfNow:i,timeOrigin:r}}):(this.perfNow=()=>Date.now()-r,this.time=()=>{const i=this.perfNow();return{tsNow:Date.now(),perfNow:i,timeOrigin:r}})}get isProduction(){return vt._isProduction}markProduction(){vt._isProduction=!0}_checkArgument(t,r){if(typeof r=="string")return typeof t===r;if(typeof r=="function")return t instanceof r;if(Array.isArray(r))return r.some(i=>this._checkArgument(t,i));throw new Error(`Invalid argKind ${r}`)}requireArgument(t,r,i){let s=t==null||t==="";const l=i!==void 0;if(!s&&l&&(s=!this._checkArgument(t,i)),s)throw new Error(`${r} argument is required${l?" and must be of a supported type.":"."}`)}requireArgumentIfDefined(t,r,i){if(t===void 0)return!1;if(t===null||t===""||!this._checkArgument(t,i))throw new Error(`${r} argument, if defined, must be of a supported type.`);return!0}checkForDenyListedValues(t,r,i){if(i.some(s=>t===s))throw new Error(`The value ${t} isn't allowed for ${r} argument.`)}checkForReservedCharacters(t,r,i){if(t&&i.some(s=>t.indexOf(s)>=0))throw new Error(`The argument ${r} isn't allowed to contain characters from ['${i.join(", ")}']. Received: ${t}.`)}generateUniqueId(t=16){const r=[],i="0123456789abcdef";if(!(t===void 0||t>0))throw new Error('If specified, the argument "length" must be a positive integer');for(let s=0;s<t;s++){const l=Math.floor(Math.random()*16);r.push(i[l])}return r.join("")}getXpath(t){function r(l){const c=l.localName;for(;l.nextElementSibling;)if(l=l.nextElementSibling,l.localName===c)return!0;return!1}function i(l,c){return l?i(l.previousElementSibling,c||l.localName)+(l.localName===c?1:0):1}function s(l){if(!l||l.nodeType!==1)return[""];const c=i(l)>1||r(l)?`${l.localName.toLowerCase()}[${i(l)}]`:l.localName.toLowerCase();return[...s(l.parentNode),c]}return s(t).join("/")}getAge(t){return t-this._timeOrigin}getConnectionType(){var t;let r;if(typeof navigator!="undefined"){const i=navigator;r=(t=i==null?void 0:i.connection)===null||t===void 0?void 0:t.effectiveType}return r}clone(t){return JSON.parse(JSON.stringify(t))}definedValueOrDefault(t,r){return t!==void 0?t:r}getGlobal(){if(typeof globalThis=="object")return globalThis;if(typeof self=="object")return self;throw new Error("Unable to locate globalThis or self")}getIsBeaconSupported(){var t;const r=this.getGlobal();return typeof((t=r.navigator)===null||t===void 0?void 0:t.sendBeacon)=="function"&&typeof r.Blob=="function"}estimateObjectSize(t){const r=new Set,i=[t];let s=0;for(;i.length;){const l=i.pop();if(typeof l=="boolean")s+=4;else if(typeof l=="string")s+=l.length*2;else if(typeof l=="number")s+=8;else if(l instanceof Uint8Array||l instanceof Uint8ClampedArray||l instanceof Uint16Array||l instanceof Uint32Array||l instanceof Int8Array||l instanceof Int16Array||l instanceof Int32Array||l instanceof Float32Array||l instanceof Float64Array)s+=l.byteLength;else if(typeof l=="object"){const c=l;if(!r.has(c)){r.add(c);for(const f in c)i.push(c[f])}}}return s}noProdThrow(t){if(!h.isProduction)throw t}}vt._isProduction=!1;const h=Object.freeze(new vt);class Ye{constructor(t){this._errorCounter=t,this._safeCatchMode=!1}tryCatch(t){try{t()}catch(r){this._prodSafeCatch(r)}}tryCatchReturn(t,r){try{return h.requireArgument(r,"noopValue"),t()}catch(i){return this._prodSafeCatch(i),r}}_prodSafeCatch(t){let r;try{if(r=!h.isProduction,r)throw t;if(this._safeCatchMode)throw this._safeCatchMode=!1,new Error("Internal error in prodSafeCatch.");if(this._safeCatchMode=!0,this._errorCounter&&this._errorCounter.increment(),!(t instanceof Error)){const i=t&&t.message||(typeof t.toString=="function"?t.toString():"");t=new Error(i)}this._safeCatchMode=!1}catch(i){if(r)throw i;if(i&&console&&typeof console.error=="function")try{console.error(i)}catch(s){}this._safeCatchMode=!1}}}class oi{getSchemaId(t){return`${t.namespace}.${t.name}`}isInternal(t){return(t==null?void 0:t.namespace)==="sf.instrumentation"}makePayload(t,r,i=!0){if(!i||t!==void 0&&r!==void 0)return{schema:t,payload:r}}checkSchema(t){h.requireArgument(t,"schema","object"),h.requireArgument(t.namespace,"schema.namespace","string"),h.requireArgument(t.name,"schema.name","string"),h.requireArgument(t.pbjsSchema,"schema.pbjsSchema","object");const r=t.namespace.split(".");if(r.length!==2)throw new Error(`Schema "${this.getSchemaId(t)}" must have a namespace of the form "domain.feature".`);return{domain:r[0],feature:r[1],message:t.name}}_getAnyNestedObject(t,r){return r.reduce((i,s)=>{const l=i.nested;if(l){const c=l[s];if(c)return c}throw new Error(`Cannot locate ${r.join(".")} in schema with ID ${this.getSchemaId(t)}`)},t.pbjsSchema)}getTypes(t){const r=this.checkSchema(t),s=this._getAnyNestedObject(t,[r.domain,r.feature]).nested;if(!s)throw new Error(`Cannot parse schema with ID ${this.getSchemaId(t)}`);return s}getType(t,r){h.requireArgument(r,"messageName","string");const s=this.getTypes(t)[r];if(!s)throw new Error(`Cannot locate message ${r} in schema with ID ${this.getSchemaId(t)}`);return s}getOptions(t,r,i){i&&h.requireArgument(r,"messageName","string");const s=this.checkSchema(t);if(!r)return this._getAnyNestedObject(t,[s.domain,s.feature]).options;const l=this.getType(t,r);if(!i)return l.options;const c=l.fields[i];if(!c){const f=this.getSchemaId(t);throw new Error(`Cannot locate field ${i} in message ${r} in schema with ID ${f}`)}return c.options}}const H=new oi;var bt=Object.freeze({__proto__:null,LazyMapToList:L,PublicSafety:Ye,schemaUtil:H,utility:h});const si={namespace:"sf.instrumentation",name:"Activity",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Activity:{reserved:[[5,5],[7,7]],fields:{duration:{id:3,type:"double"},stopReason:{id:6,type:"string"},isRoot:{id:8,type:"bool"},timerOverridden:{id:12,type:"uint32"},name:{options:{"(meta.max_length)":25},id:2,type:"string"},isSampled:{id:11,type:"bool"},preRootId:{id:9,type:"string"},id:{id:1,type:"string"},userPayload:{id:4,type:"Payload"},errorCount:{id:10,type:"uint32"},parentId:{id:13,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},ai={namespace:"sf.instrumentation",name:"Error",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Error:{reserved:[[5,5],[7,7]],fields:{activityId:{id:6,type:"string"},stack:{id:3,type:"string"},name:{id:1,type:"string"},message:{options:{"(meta.max_length)":200},id:2,type:"string"},userPayload:{id:4,type:"Payload"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},li={namespace:"sf.instrumentation",name:"IdleDetectorReport",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{IdleDetectorReport:{fields:{listenerCount:{id:3,type:"uint32"},busyTasks:{rule:"repeated",id:5,type:"string"},busyDurations:{rule:"repeated",id:6,type:"double"},pollableCount:{id:4,type:"uint32"},pollCounts:{rule:"repeated",id:8,type:"double"},logThreshold:{id:2,type:"double"},maxDuration:{id:1,type:"double"},pollables:{rule:"repeated",id:7,type:"string"}}}}}}}}}},ui={namespace:"sf.instrumentation",name:"InstrumentedEvent",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{MouseEvent:{fields:{cancelable:{id:5,type:"bool"},ctrlKey:{id:9,type:"bool"},type:{id:25,type:"string"},button:{id:3,type:"uint32"},offsetX:{id:17,type:"uint32"},eventPhase:{id:12,type:"uint32"},shiftKey:{id:23,type:"bool"},offsetY:{id:18,type:"uint32"},composed:{id:8,type:"bool"},altKey:{id:1,type:"bool"},isTrusted:{id:13,type:"bool"},buttons:{id:4,type:"uint32"},movementY:{id:16,type:"uint32"},clientY:{id:7,type:"uint32"},clientX:{id:6,type:"uint32"},movementX:{id:15,type:"uint32"},defaultPrevented:{id:10,type:"bool"},metaKey:{id:14,type:"bool"},timeStamp:{id:24,type:"double"},bubbles:{id:2,type:"bool"},detail:{id:11,type:"int64"},pageY:{id:20,type:"uint32"},pageX:{id:19,type:"uint32"},screenX:{id:21,type:"uint32"},screenY:{id:22,type:"uint32"}}},InstrumentedEvent:{oneofs:{event:{oneof:["mouseEvent"]}},reserved:[[4,4],"xpath",[6,6],[8,8]],fields:{mouseEvent:{id:7,type:"MouseEvent"},auto:{id:3,type:"bool"},parentComponent:{id:2,type:"string"},ownerComponent:{id:1,type:"string"},userPayload:{id:5,type:"Payload"},simplePath:{id:9,type:"string"}}},Payload:{fields:{payload:{id:2,type:"bytes"},schemaName:{id:1,type:"string"}}}}}}}}}},y={namespace:"sf.instrumentation",name:"Simple",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{Simple:{fields:{text:{options:{"(meta.max_length)":25},id:1,type:"string"}}}}}}}}}};class w{get isBusy(){return this._isOk?this._busyCount>0:void 0}constructor(t,r,i,s){this.name=t,this._doneCallback=i,this._overDoneCallback=s,this._busyCount=0,this._isOk=!0,this._busyCount=r}add(){this._isOk&&(this._busyCount+=1)}done(){this._isOk&&(this._busyCount>0?(this._busyCount-=1,this._busyCount||this._doneCallback()):(this._isOk=!1,this._overDoneCallback()))}}const De=300;class $e{constructor(t){this._taskers=new Map,this._listeners=new Set,this._busyCheckers=new Map,this._logThreshold=De,this._endedTasks=new Array,this._pollableReport=new Array,h.requireArgumentIfDefined(t==null?void 0:t.logThreshold,"options.logThreshold","number")&&(this._logThreshold=t.logThreshold),h.requireArgumentIfDefined(t==null?void 0:t.reportListener,"options.reportListener","function")&&(this._reportListener=t.reportListener),h.requireArgumentIfDefined(t==null?void 0:t.errorListener,"options.errorListener","function")&&(this._errorListener=t.errorListener)}requestIdleDetectedCallback(t){h.requireArgument(t,"callback","function"),this._listeners.size===0&&(this._firstCallbackTime=h.time().perfNow),this._listeners.add(t),this._checkIfLoaded()}_reportTaskEnded(t){if(this._listeners.size){const r=Object.assign({},this._taskers.get(t));this._endedTasks.push(r)}}declareNotifierTaskSingle(t){h.requireArgument(t,"name","string");const r=this._addTasker(t,1);return{get isBusy(){return r.isBusy},done:()=>{r.done(),this._taskers.delete(r)}}}declareNotifierTaskMulti(t,r=0){if(h.requireArgument(t,"name","string"),r!==void 0&&(h.requireArgument(r,"existingBusyCount","number"),!Number.isInteger(r)||r<0))throw new Error("existingBusyCount accepts only non-negative integers");const i=this._addTasker(t,r);return{get isBusy(){return i.isBusy},add:()=>{if(!i.isBusy){const l=this._taskers.get(i);l.start=h.time().perfNow,l.end=void 0}i.add()},done:i.done.bind(i)}}declarePollableTaskMulti(t,r){h.requireArgument(t,"name","string"),h.requireArgument(r,"isBusyChecker","function"),this._busyCheckers.set(r,t)}_addTasker(t,r){const i=new w(t,r,()=>{this._taskers.get(i).end=h.time().perfNow,this._reportTaskEnded(i),this._checkIfLoaded()},()=>{var s;(s=this._errorListener)===null||s===void 0||s.call(this,`Overdone: ${i.name}`),h.noProdThrow(`Tasker '${i.name}' is done too many times.`)});return this._taskers.set(i,{name:t,start:r>0?h.time().perfNow:void 0,end:void 0}),i}_areAllNotifiersIdle(){return!Array.from(this._taskers.keys()).some(t=>t.isBusy)}_getFirstBusyPollable(){const t=Array.from(this._busyCheckers).find(r=>{var i;const s=r[0],l=r[1];try{return s()}catch(c){return(i=this._errorListener)===null||i===void 0||i.call(this,c,`BusyChecker ${l}`),h.noProdThrow(c),!1}});return t?t[1]:void 0}_checkIfLoaded(){!this._listeners.size||(this._timerCheckQueued&&clearTimeout(this._timerCheckQueued),this._areAllNotifiersIdle()&&(this._timerCheckQueued=setTimeout(()=>{this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},40)},0)))}_doubleCheck(){if(this._timerCheckQueued=void 0,this._areAllNotifiersIdle()){const t=this._getFirstBusyPollable();if(t!==void 0)this._addToPollableReport(t),this._timerCheckQueued=setTimeout(()=>{this._doubleCheck()},15);else{const r=h.time().perfNow-this._firstCallbackTime,i=Array.from(this._listeners.values());this._listeners.clear(),this._firstCallbackTime=void 0;const s=this._endedTasks.splice(0),l=this._pollableReport.splice(0);this._notify(i,r,s,l)}}}_addToPollableReport(t){const r=this._pollableReport.length?this._pollableReport[this._pollableReport.length-1]:void 0;(r==null?void 0:r.name)===t?r.count+=1:this._pollableReport.push({name:t,count:1})}_notify(t,r,i,s){var l;if(r>=this._logThreshold&&this._reportListener){const f=this._getReport(r,t.length,i,s);this._reportListener(f)}t.reverse();const c=h.time().tsNow;for(const[f,g]of t.entries())try{g(c)}catch(p){(l=this._errorListener)===null||l===void 0||l.call(this,p,`Listener #${t.length-1-f}`),h.noProdThrow(p)}}getReport(){const t=h.time().perfNow,r=this._firstCallbackTime>0?t-this._firstCallbackTime:void 0,i=Array.from(this._taskers.entries()).filter(s=>s[0].isBusy).map(s=>({name:s[1].name,start:s[1].start,end:t}));return this._getReport(r,this._listeners.size,this._endedTasks.concat(i),this._pollableReport)}_getReport(t,r,i,s){const l=i.map(c=>({name:c.name,duration:c.end-c.start})).sort((c,f)=>f.duration-c.duration);return{logThreshold:this._logThreshold,maxDuration:t,listenerCount:r,pollableCount:this._busyCheckers.size,busyTasks:l.map(c=>c.name),busyDurations:l.map(c=>c.duration),pollables:s.map(c=>c.name),pollCounts:s.map(c=>c.count)}}}const be=32,hr=16,fr=16,tn="traceparent",Fe="b3",rn="X-B3-TraceId",lt="X-B3-SpanId",pr="X-B3-Sampled",nn="X-B3-ParentSpanId",mr="fetch",Bt="xhr_send";class b{constructor(t,r){this._instr=t,this._idleDetector=r,h.requireArgument(t,"_instr","object"),h.requireArgument(r,"_idleDetector","object")}static _getB3CompactFormat(t,r,i,s){let l=`${t}-${r}`;return(i!==void 0||s!==void 0)&&(l+=i?"-1":"-0",s!==void 0&&(l+=`-${s}`)),l}static _getW3CompactFormat(t,r,i){return`00-${t}-${r}-${i?"01":"00"}`}static _conformTextAsId(t,r){t=t.toLowerCase();const i=t.length;for(let s=0;s<i;s+=1){const l=t[s];if(!(l>="a"&&l<="f")&&!(l>="0"&&l<="9"))throw new Error(`The text '${t}' has an invalid character at index #${s}`)}return i>r?t.substr(i-r):i<r?t.padStart(r,"0"):t}static getHeaders(t,r,i,s){h.requireArgument(t,"traceId","string"),h.requireArgument(r,"spanId","string");const l=s==null?void 0:s.useB3Headers;t=this._conformTextAsId(t,(s==null?void 0:s.traceIdEffectiveLength)!==void 0?s.traceIdEffectiveLength:l?hr:be),r=this._conformTextAsId(r,fr);const c=s&&s.parentSpanId!==void 0&&this._conformTextAsId(s.parentSpanId,fr)||void 0,f={};return l?(s==null?void 0:s.useCompactHeader)?f[Fe]=this._getB3CompactFormat(t,r,i,c):(f[rn]=t,f[lt]=r,c!==void 0&&(f[nn]=c),i!==void 0&&(f[pr]=i?"1":"0")):f[tn]=this._getW3CompactFormat(t,r,i),f}_disableNetworkInstrumentation(){b._isNetworkInstrumentationEnabled&&(b._originalFetch&&(b._global.fetch=b._originalFetch,b._originalFetch=void 0),b._originalXhr&&(b._global.XMLHttpRequest=b._originalXhr,b._originalXhr=void 0),b._originalXhrOpen&&(b._global.XMLHttpRequest.prototype.open=b._originalXhrOpen,b._originalXhrOpen=void 0),b._originalXhrSend&&(b._global.XMLHttpRequest.prototype.send=b._originalXhrSend,b._originalXhrSend=void 0),b._isNetworkInstrumentationEnabled=!1)}_enableNetworkInstrumentation(t,r,i,s,l,c){typeof b._global.fetch=="function"&&(this._overrideFetch(t,r,i,s,l,c),b._isNetworkInstrumentationEnabled=!0),typeof b._global.XMLHttpRequest=="function"&&(this._overrideXhr(t,r,i,s,l,c),b._isNetworkInstrumentationEnabled=!0)}static _getTraceHeaders(t,r,i,s){let l=(t==null?void 0:t.getTraceHeaders(r))||{};if(typeof(r==null?void 0:r.headerProcessor)=="function")l=r.headerProcessor({method:i,url:s,defaultHeaders:l});else if(typeof window=="object"){let c;try{c=new URL(s)}catch(f){}c&&c.host!==window.location.host&&(l=void 0)}return l||{}}_overrideFetch(t,r,i,s,l,c){b._originalFetch=b._global.fetch;const f=async(g,p,...E)=>{let v;try{c==null||c.add();const A=p==null?void 0:p.o11y;if(!(A==null?void 0:A.skipInstr))v=t.startActivity(i||mr);else{b._reqIndex+=1;try{if(g instanceof URL)g.searchParams.append("o11y",b._reqIndex.toString());else if(typeof g=="string"){const O=new URL(g),X=`o11y=${b._reqIndex}`;O.search+=O.search.startsWith("?")?`&${X}`:X,g=O.toString()}}catch(O){}}if(p==null||delete p.o11y,s){let O=p==null?void 0:p.method,X=g==null?void 0:g.toString();g instanceof Request&&(O||(O=g.method),X=g.url);const ye=b._getTraceHeaders(v,l,O,X);!this._applyTraceHeaders(g,p,ye)&&p===void 0&&(p={headers:ye})}return await b._originalFetch.call(b._global,g,p,...E)}catch(A){throw r&&(v?v.error(A):t.error(A)),A}finally{v==null||v.stop(),c==null||c.done()}};b._global.fetch=f}_overrideXhr(t,r,i,s,l,c){b._originalXhr=b._global.XMLHttpRequest,b._originalXhrOpen=b._originalXhr.prototype.open,b._originalXhrSend=b._originalXhr.prototype.send,b._originalXhr.prototype.open=function(g,p,E,v,A){this._o11y={method:g,url:p==null?void 0:p.toString()},b._originalXhrOpen.call(this,g,p,E,v,A)},b._originalXhr.prototype.send=function(...g){let p;try{c==null||c.add();const E=this;if(E._o11y=E._o11y||{},E._o11y.activity=p=t.startActivity(i||Bt),s){const v=b._getTraceHeaders(p,l,E._o11y.method,E._o11y.url);Object.entries(v).forEach(A=>{E.setRequestHeader(A[0],A[1])})}b._originalXhrSend.call(this,...g)}catch(E){throw r&&(p?p.error(E):t.error(E)),p==null||p.stop(),c==null||c.done(),E}};const f=new Proxy(b._originalXhr,{construct(g){const p=new g;return p.addEventListener("load",()=>{var E,v;(v=(E=p._o11y)===null||E===void 0?void 0:E.activity)===null||v===void 0||v.stop(),c==null||c.done()}),p.addEventListener("error",E=>{var v;const A=new Error("XHR Network-Level Error"),O=(v=p._o11y)===null||v===void 0?void 0:v.activity;O?(r&&O.error(A),O.stop()):r&&t.error(A),c==null||c.done()}),p.addEventListener("abort",()=>{var E,v;(v=(E=p._o11y)===null||E===void 0?void 0:E.activity)===null||v===void 0||v.discard(),c==null||c.done()}),p}});b._global.XMLHttpRequest=f}networkInstrumentation(t){var r;if(h.requireArgument(t,"options",["boolean","object"]),this._disableNetworkInstrumentation(),t){const i=typeof t=="object"?t:{};let s;h.definedValueOrDefault(i.useTasker,!0)&&(s=(r=this._idleDetector)===null||r===void 0?void 0:r.declareNotifierTaskMulti("o11y network")),this._enableNetworkInstrumentation(h.definedValueOrDefault(i.instrumentation,this._instr),h.definedValueOrDefault(i.logErrors,!0),i.activityName,h.definedValueOrDefault(i.useTracing,!0),i.tracingHeadersOptions,s)}}resetRequestCounter(){b._reqIndex=0}_applyTraceHeaders(t,r,i){if((r==null?void 0:r.headers)!==void 0){if(r.headers instanceof Headers&&typeof r.headers.set=="function")return Object.entries(i).forEach(([s,l])=>{r.headers.set(s,l)}),!0;if(Array.isArray(r.headers))return Object.entries(i).forEach(s=>{r.headers.push(s)}),!0;if(typeof r.headers=="object")return r.headers=Object.assign(r.headers,i),!0}else{if(t instanceof Request&&t.headers instanceof Headers)return Object.entries(i).forEach(([s,l])=>{t.headers.set(s,l)}),!0;if(r)return r.headers=Object.assign({},i),!0}return!1}}b._global=h.getGlobal(),b._isNetworkInstrumentationEnabled=!1,b._reqIndex=0;var de;(function(u){u[u.none=0]="none",u[u.start=1]="start",u[u.stop=2]="stop",u[u.both=3]="both"})(de||(de={}));const gr="timedout",yr="terminated",_r="discarded",U={timedout:gr,terminated:yr,discarded:_r};class q{constructor(t,r,i,s,l,c,f){this._name=t,this._rootId=r,this._onStopped=i,this._onError=s,this._isSampled=f,this._errorCount=0,this._timerOverridden=de.none;const{tsNow:g,perfNow:p}=h.time();if(q._count+=1,this._id=c||h.generateUniqueId(),this._usePerf=typeof performance!="undefined"&&typeof performance.mark=="function"&&typeof performance.measure=="function",this._usePerf){this._perfName=`${this._name}__${q._count}`,this._perfId=`${this._name}__${this.id}`;try{performance.mark(this._perfId)}catch(E){this._usePerf=!1}}this._startTimestamp=g,this._startPerfTime=p,l>0&&(this._timer=setTimeout(()=>{this._stopReason=this._stopReason||U.timedout,this.stop()},l)),this._safety=new Ye}get id(){return this._id}getId(){return this.id}getRootId(){return this._rootId}get stopReason(){return this._stopReason}error(t,r,i){this._safety.tryCatch(()=>{this._errorCount+=1,typeof t=="string"&&(t=new Error(t)),this._onError(t,this._getDetail(r,i))})}stop(t,r,i){this._safety.tryCatch(()=>{if(h.requireArgumentIfDefined(t,"userSchemaOrText",["object","string"]),h.requireArgumentIfDefined(r,"userData","object"),i){const s=i.perfStartOverride,l=h.requireArgumentIfDefined(s,"options.perfStartOverride","number"),c=i.perfStopOverride,f=h.requireArgumentIfDefined(c,"options.perfStopOverride","number");if(l&&s<0)throw new Error("perfStartOverride, if defined, must be >= 0");if(f&&(c<0||c<(l?s:this._startPerfTime)))throw new Error("perfStopOverride, if defined, must be >= 0 and >= startTime")}this._stopInternal(t,r,i)})}_overrideTimer(t,r){t!==void 0&&(this._startTimestamp=Math.round(this._startTimestamp-(this._startPerfTime-t)),this._startPerfTime=t,this._setTimerOverride(de.start)),r!==void 0&&(this._stopPerfTime=r,this._setTimerOverride(de.stop))}_setTimerOverride(t){this._timerOverridden===de.both||this._timerOverridden===t||t===de.none||(this._timerOverridden=this._timerOverridden===de.none?t:de.both)}_stopInternal(t,r,i){const s=h.perfNow();if(this._usePerf)try{this._stopReason!==U.discarded&&performance.measure(this._perfName,this._perfId),performance.clearMarks(this._perfId),performance.clearMeasures(this._perfName)}catch(c){}if(this._timer&&(clearTimeout(this._timer),this._timer=void 0),this.isStopped)return;i&&this._overrideTimer(i.perfStartOverride,i.perfStopOverride),this._stopPerfTime=this._timerOverridden===de.none||this._timerOverridden===de.start?s:this._stopPerfTime;const l=this._getDetail(t,r);this._onStopped(l)}get isStopped(){return this._stopPerfTime!==void 0}discard(){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||U.discarded,this.stop()})}terminate(t,r,i){this._safety.tryCatch(()=>{this._stopReason=this._stopReason||U.terminated,this.stop(t,r,i)})}getIsSampled(){return this._isSampled||!1}_getDetail(t,r){return{id:this._id,rootId:this._rootId,name:this._name,userSchemaOrText:t,userData:r,stopReason:this._stopReason,startTimestamp:this._startTimestamp,startPerfTime:this._startPerfTime,stopPerfTime:this._stopPerfTime,errorCount:this._errorCount,isSampled:this.getIsSampled(),timerOverridden:this._timerOverridden}}getTraceHeaders(t){const r=this.id,i=this._rootId||r;return b.getHeaders(i,r,this.getIsSampled(),t)}getStartTimestamp(){return this._startTimestamp}getStartPerfTime(){return this._startPerfTime}getStopPerfTime(){return this._stopPerfTime}}q._count=0;const He=new Array(16).fill(0).join("");class ci{getId(){return He}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(t){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const on=Object.freeze(new ci);class sn{getInstrumentedEventData(t,r,i){var s;const l={ownerComponent:r.tagName,parentComponent:((s=r.parentElement)===null||s===void 0?void 0:s.tagName)||void 0,event:t,simplePath:h.getXpath(r)};return i&&(l.userPayload=H.makePayload(i.schema,i.payload,!0)),l}getMouseEventData(t){return{altKey:t.altKey,bubbles:t.bubbles,button:t.button,buttons:t.buttons,cancelable:t.cancelable,clientX:t.clientX,clientY:t.clientY,composed:t.composed,defaultPrevented:t.defaultPrevented,detail:t.detail,eventPhase:t.eventPhase,isTrusted:t.isTrusted,timeStamp:t.timeStamp,type:t.type,ctrlKey:t.ctrlKey,metaKey:t.metaKey,movementX:t.movementX,movementY:t.movementY,offsetX:t.offsetX,offsetY:t.offsetY,pageX:t.pageX,pageY:t.pageY,screenX:t.screenX,screenY:t.screenY,shiftKey:t.shiftKey}}}const vr=new sn,qt=1e4,br=1e4,wt=0,di=2147483647,ln=-2147483648,wr=4294967295,he=9223372036854776e3,un=-9223372036854776e3,cn=18446744073709552e3;class Er{constructor(t,r,i,s){this.errorCode=t,this.fields=r,this.expected=i,this.received=s}asMessage(t){const r=this.fields[0]+this.fields.slice(1).reduce((s,l)=>Number(l)>=0?`${s}[${l}]`:`${s}.${l}`,"");let i;switch(this.errorCode){case 1:i="Repeated field must be an array";break;case 2:i=`Expected type ${this.expected} but received type ${this.received}`;break;case 3:i="Value must be finite";break;case 4:i="Value is out of range for its type";break;case 5:i="Bytes array is malformed";break;case 6:i="Exceeded app limit for maximum string length";break;case 7:i="Exceeded app limit for item count";break;case 12:i="Value must be an integer";break;case 13:i="Values like null or undefined are not allowed for items in repeated fields";break;default:i=`Unknown error code: ${this.errorCode}`;break}return`Schema ${t} on field "${r}": ${i}`}}class dn{validate(t,r,i=!1){const s=H.checkSchema(t);h.requireArgument(r,"data","object");const l=H.getSchemaId(t),c=new Array,f=H.getTypes(t);if(this._validateFields(c,[],r,f[s.message],f,l),c.length&&!i)throw new Error(c[0].asMessage(l));return c}_validateFields(t,r,i,s,l,c){const f=s.oneofs||{},g=s.fields||{};for(const p in i){const E=i[p];if(E!=null){const v=(A,O,X)=>this._matchFieldTypes(t,[...r,p],E,A,l,c,p,O,X);f[p]?v(g[f[p].oneof[0]].type):g[p]&&v(g[p].type,g[p].rule==="repeated")}}}_matchFieldTypes(t,r,i,s,l,c,f,g,p){let E;if(g)Array.isArray(i)?(i.length>br&&(E=7),i.forEach((v,A)=>{this._matchFieldTypes(t,[...r,A.toString()],v,s,l,c,f,void 0,!0)})):E=1;else if(i==null||i===void 0)p&&(E=13);else{let v,A;switch(s){case"string":A="string",i.length>qt&&(E=6);break;case"bytes":A="object",i instanceof Uint8Array||(E=5);break;case"bool":A="boolean";break;case"uint32":A="number",v={min:wt,max:wr,isInt:!0,isItem:p};break;case"int32":case"sint32":case"fixed32":case"sfixed32":A="number",v={min:ln,max:di,isInt:!0,isItem:p};break;case"uint64":A="number",v={min:wt,max:cn,isInt:!0,isItem:p};break;case"fixed64":case"sfixed64":case"int64":case"sint64":A="number",v={min:un,max:he,isInt:!0,isItem:p};break;case"double":case"float":A="number",v={min:Number.NEGATIVE_INFINITY,max:Number.POSITIVE_INFINITY,isInt:!1,isItem:p};break;default:new Set(Object.keys(l)).has(s)&&(this._validateFields(t,r,i,l[s],l,c),A="object");break}typeof i!==A?t.push(new Er(2,r,s,typeof i)):v&&(v.isInt&&!Number.isFinite(i)?E=3:v.isInt&&!Number.isInteger(i)?E=12:!(!v.isInt&&Number.isNaN(i))&&!(i>=v.min&&i<=v.max)&&(E=4))}E&&t.push(new Er(E,r))}}const Tr=new dn;class hn{constructor(t,r,i,s,l){this._name=t,this._ownerName=r,this._ownerAppName=i,this._tags=s,this._buckets=l,this._values=new Array,this._createdOn=h.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}getBuckets(){return this.buckets}get buckets(){return this._buckets.slice(0,this._buckets.length)}get values(){return this._values.slice(0,this._values.length)}record(t){if(typeof t=="number"){this._values.push(t),this._lastUpdatedOn=h.time().tsNow;return}throw new Error("BucketHistogram can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class fn{constructor(t,r,i,s){this._name=t,this._ownerName=r,this._ownerAppName=i,this._tags=s,this._value=0,this._createdOn=h.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this._value}increment(t=1){if(typeof t=="number"&&t>0){this._value+=Math.round(t),this._lastUpdatedOn=h.time().tsNow;return}throw new Error("UpCounter can only increment positive numbers.")}reset(){this._lastUpdatedOn=void 0,this._value=0}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class pn{constructor(t,r,i,s){this._name=t,this._ownerName=r,this._ownerAppName=i,this._tags=s,this._values=new Array,this._createdOn=h.time().tsNow}getName(){return this._name}getCreatedOn(){return this._createdOn}getLastUpdatedOn(){return this._lastUpdatedOn}getData(){return this.values}get values(){return this._values.slice(0,this._values.length)}record(t){if(typeof t=="number"){this._values.push(t),this._lastUpdatedOn=h.time().tsNow;return}throw new Error("ValueRecorder can only record numbers.")}reset(){this._lastUpdatedOn=void 0,this._values=[]}getOwnerName(){return this._ownerName}getOwnerAppName(){return this._ownerAppName}getTags(){return this._tags}}class ge{constructor(t){if(this._map=new Map,typeof t=="number"&&t>0){this._maxSize=Math.ceil(t);return}throw new Error("maxSize must be a positive number")}get maxSize(){return this._maxSize}get(t){return this._map.get(t)}has(t){return this._map.has(t)}set(t,r){return this.has(t)||this._map.size<this.maxSize?(this._map.set(t,r),!0):!1}getElements(){return Array.from(this._map.values())}clear(){this._map.clear()}}const Gt=1e3,Se=500,Vt=500;var J;(function(u){u[u.Counter=0]="Counter",u[u.Percentile=1]="Percentile",u[u.BucketHistogram=2]="BucketHistogram"})(J||(J={}));class jt{constructor(t,r){this._ownerName=t,this._getOwnerAppName=r,this._upCounters=new ge(Gt),this._valueRecorders=new ge(Se),this._bucketHistograms=new ge(Vt)}incrementCounter(t,r,i=!1,s={}){this._tagError(s,i),this._upCounter(t,s).increment(r)}trackValue(t,r,i=!1,s={}){this._tagError(s,i),this._valueRecorder(t,s).record(r)}bucketValue(t,r,i,s=!1,l={}){this._tagError(l,s),this._bucketHistogram(t,l,i).record(r)}_bucketHistogram(t,r,i){const{key:s,sortedTags:l}=this._getKeyAndSortedTags(t,r,J.BucketHistogram);let c=this._bucketHistograms.get(s);if(!c&&(c=new hn(t,this._ownerName,this._getOwnerAppName(),l,i),!this._bucketHistograms.set(s,c)))throw new Error(`Max size of ${Vt} exceeded for BucketHistograms`);return c}_upCounter(t,r){const{key:i,sortedTags:s}=this._getKeyAndSortedTags(t,r,J.Counter);let l=this._upCounters.get(i);if(!l&&(l=new fn(t,this._ownerName,this._getOwnerAppName(),s),!this._upCounters.set(i,l)))throw new Error(`Max size of ${Gt} exceeded for UpCounters`);return l}_valueRecorder(t,r){const{key:i,sortedTags:s}=this._getKeyAndSortedTags(t,r,J.Percentile);let l=this._valueRecorders.get(i);if(!l&&(l=new pn(t,this._ownerName,this._getOwnerAppName(),s),!this._valueRecorders.set(i,l)))throw new Error(`Max size of ${Se} exceeded for ValueRecorders`);return l}getUpCounters(){return this._upCounters.getElements()}getValueRecorders(){return this._valueRecorders.getElements()}getBucketHistograms(){return this._bucketHistograms.getElements()}_tagError(t,r){t.status=r===!0?"error":"success"}_getKeyAndSortedTags(t,r,i){const s=Object.keys(r).sort().reduce((c,f)=>(c[f]=r[f],c),{});return{key:`${J[i]}:${t}${JSON.stringify(s)}`,sortedTags:s}}}class Qe{constructor(){this.isMock=!0}}const mn=void 0,Et=["`"],Sr={internalError:"o11y-error"},Ue=Object.freeze(Array.from(Object.values(Sr)));class ut{constructor(t,r){this._nextGen=t,this._name=r,this._onActivityStoppedCallback=this._handleActivityStop.bind(this),this._onActivityErrorCallback=this._handleActivityError.bind(this);for(const s of Et)if(this._name.indexOf(s)>=0)throw new Error(`Name cannot include the reserved character "${s}"`);this._safety=new Ye({increment:s=>this._incrementError(s)}),this._metrics=this._initMetrics();const i=H.getOptions(y,"Simple","text");this._simpleTextMaxLength=i?i["(meta.max_length)"]:qt}_initMetrics(){return new jt(this.name,()=>this._nextGen.appName||ut.defaultAppName)}_incrementError(t=1){this._metrics.incrementCounter(Sr.internalError,t,!1)}get name(){return this._name}_wrapUserPayload(t,r,i=!1){let s;return typeof t=="string"?(s=y,t?r={text:t.substring(0,this._simpleTextMaxLength)}:r=void 0):s=t,H.makePayload(s,r,i)}_getEffectiveRootId(t){var r,i;return(i=(r=t==null?void 0:t.instrumentationContext)===null||r===void 0?void 0:r.rootId)!==null&&i!==void 0?i:this._nextGen.getDefaultInstrumentationContext().rootId}log(t,r,i){this._safety.tryCatch(()=>{const s=h.time().tsNow;h.requireArgument(t,"userSchemaOrText",["object","string"]),h.requireArgumentIfDefined(r,"userData","object"),h.requireArgumentIfDefined(i,"options","object");const l=this._wrapUserPayload(t,r);(l==null?void 0:l.payload)&&this._logInternal(this.name,l.schema,l.payload,s,this._getEffectiveRootId(i))})}_logInternal(t,r,i,s,l){this._checkInputs(r,i);const c=this._getPayloadFromProvider(this._nextGen.appPayloadProvider),f=this._getPayloadFromProvider(this._nextGen.pagePayloadProvider);return this._nextGen.addLog(t,r,i,s,l,f,c)}error(t,r,i,s){return this._safety.tryCatch(()=>{h.requireArgumentIfDefined(r,"userSchemaOrText",["object","string"]),h.requireArgumentIfDefined(i,"userData","object"),h.requireArgumentIfDefined(s,"options","object");const l=this._getEffectiveRootId(s);this._errorInternal(t,r,i,void 0,l)})}_errorInternal(t,r,i,s,l){const c=h.time().tsNow;let f;if(t instanceof Error)f=t;else{let E;t==null||typeof t.toString!="function"?E="UNKNOWN":E=t.toString(),f=new Error(E)}const g=this._wrapUserPayload(r,i,!0),p={name:f.name,message:f.message,stack:f.stack,userPayload:g,activityId:s};return this._logInternal(this.name,ai,p,c,l)}startActivity(t,r){return this._safety.tryCatchReturn(()=>{var i;h.requireArgument(t,"name"),h.requireArgumentIfDefined(r,"options","object");let s;const l=(i=r==null?void 0:r.instrumentationContext)===null||i===void 0?void 0:i.rootId;return l?s={rootId:l,isRootActivitySampled:r.instrumentationContext.isRootActivitySampled}:s=this._nextGen.getDefaultInstrumentationContext(),new q(t,s.rootId,this._onActivityStoppedCallback,this._onActivityErrorCallback,mn,void 0,s.isRootActivitySampled)},on)}_getActivityData(t){const r=this._wrapUserPayload(t.userSchemaOrText,t.userData,!0);return{id:t.id,name:t.name,duration:t.stopPerfTime-t.startPerfTime,stopReason:t.stopReason,userPayload:r,errorCount:t.errorCount,isSampled:t.isSampled,timerOverridden:t.timerOverridden}}_handleActivityStop(t){if(t.stopReason===_r)return;const r=this._getActivityData(t);this._logActivity(r,t.startTimestamp,t.rootId)}_logActivity(t,r,i){this._logInternal(this.name,si,t,r,i)}_handleActivityError(t,r){this._errorInternal(t,r.userSchemaOrText,r.userData,r.id,r.rootId)}_getPayloadFromProvider(t){const r=(t==null?void 0:t.getPayload())||void 0;return r&&this._checkInputs(r.schema,r.payload),r}domEvent(t,r,i,s,l){this._safety.tryCatch(()=>{var c;const f=h.time().tsNow;h.requireArgument(t,"event",[Event,Qe]),h.requireArgument(r,"handledBy",[HTMLElement,"object"]);let g;r instanceof HTMLElement?g=r:(r=r,((c=r.template)===null||c===void 0?void 0:c.host)instanceof HTMLElement?g=r.template.host:h.requireArgument(void 0,"handledBy"));const p=this._wrapUserPayload(i,s,!0),E=this._getEffectiveRootId(l);switch(t.type){case"click":{const v=t,A=this._nextGen.getClickTracker();A&&A.markEventHandled(v);const O=vr.getMouseEventData(v),X=vr.getInstrumentedEventData(O,g,p);X.auto=l==null?void 0:l._auto,this._logInternal(this.name,ui,X,f,E);break}default:throw new Error(h.notImplemented)}})}incrementCounter(t,r=1,i=!1,s={}){this._safety.tryCatch(()=>{h.requireArgument(t,"operation","string"),h.checkForDenyListedValues(t,"operation",Ue),h.checkForReservedCharacters(t,"operation",Et),h.requireArgument(r,"increment","number"),h.requireArgument(i,"hasError","boolean"),h.requireArgument(s,"tags","object"),Object.entries(s).forEach(l=>{h.requireArgument(l[1],`Tag value for '${l[0]}'`,["string","number","boolean"])}),this._metrics.incrementCounter(t,r,i,s)})}trackValue(t,r,i=!1,s={}){this._safety.tryCatch(()=>{h.requireArgument(t,"operation","string"),h.checkForDenyListedValues(t,"operation",Ue),h.checkForReservedCharacters(t,"operation",Et),h.requireArgument(r,"value","number"),h.requireArgument(i,"hasError","boolean"),h.requireArgument(s,"tags","object"),Object.entries(s).forEach(l=>{h.requireArgument(l[1],`Tag value for '${l[0]}'`,["string","number","boolean"])}),this._metrics.trackValue(t,r,i,s)})}bucketValue(t,r,i=[],s=!1,l={}){this._safety.tryCatch(()=>{h.requireArgument(t,"operation","string"),h.checkForDenyListedValues(t,"operation",Ue),h.checkForReservedCharacters(t,"operation",Et),h.requireArgument(r,"value","number"),h.requireArgument(i,"buckets",Array),Object.entries(i).forEach(c=>{h.requireArgument(c[1],`Bucket value for '${c[0]}'`,"number")}),h.requireArgument(s,"hasError","boolean"),h.requireArgument(l,"tags","object"),Object.entries(l).forEach(c=>{h.requireArgument(c[1],`Tag value for '${c[0]}'`,["string","number","boolean"])}),this._metrics.bucketValue(t,r,i,s,l)})}_checkInputs(t,r){H.checkSchema(t),h.requireArgument(r,"data","object");let i,s;r.userPayload!==void 0&&H.isInternal(t)&&(s=r.userPayload,i=Tr.validate(s.schema,s.payload,!0),this._processValidationResults(H.getSchemaId(s.schema),s.payload,i),r.userPayload=void 0),i=Tr.validate(t,r,!0),this._processValidationResults(H.getSchemaId(t),r,i),s!==void 0&&(r.userPayload=s)}_processValidationResults(t,r,i){for(let s=0;s<i.length;s+=1){const l=i[s];if(l.errorCode==6||l.errorCode==7){const c=l.fields.length-1,f=this._traverseFields(r,l.fields.slice(0,c)),g=l.fields[c];l.errorCode==6?f[g]=f[g].substring(0,qt):f[g].splice(br)}else throw new Error(l.asMessage(t))}}_traverseFields(t,r){return r.length?this._traverseFields(t[r[0]],r.slice(1)):t}getUpCounters(){return this._metrics.getUpCounters().filter(t=>t.getLastUpdatedOn())}getValueRecorders(){return this._metrics.getValueRecorders().filter(t=>t.getLastUpdatedOn())}getBucketHistograms(){return this._metrics.getBucketHistograms().filter(t=>t.getLastUpdatedOn())}registerForLogPrompt(t){h.requireArgument(t,"listener","function"),this._nextGen.registerForLogPrompt(t)}activity(t,r,i){var s,l,c,f;const g=this.startActivity(t,i);try{return r(g)}catch(p){throw g.error(p,(s=i==null?void 0:i.errorPayload)===null||s===void 0?void 0:s.schema,(l=i==null?void 0:i.errorPayload)===null||l===void 0?void 0:l.payload),p}finally{g.stop((c=i==null?void 0:i.stopPayload)===null||c===void 0?void 0:c.schema,(f=i==null?void 0:i.stopPayload)===null||f===void 0?void 0:f.payload)}}async activityAsync(t,r,i){var s,l,c,f;const g=this.startActivity(t,i);try{return await r(g)}catch(p){throw g.error(p,(s=i==null?void 0:i.errorPayload)===null||s===void 0?void 0:s.schema,(l=i==null?void 0:i.errorPayload)===null||l===void 0?void 0:l.payload),p}finally{g.stop((c=i==null?void 0:i.stopPayload)===null||c===void 0?void 0:c.schema,(f=i==null?void 0:i.stopPayload)===null||f===void 0?void 0:f.payload)}}}ut.defaultAppName="APP_NOT_REGISTERED";class xe extends q{constructor(t,r,i,s,l){super(t,void 0,r,i,void 0,s||h.generateUniqueId(32),l)}get preRootId(){return this._preRootId}set preRootId(t){this._preRootId=t}_getDetail(t,r){const i=super._getDetail(t,r);return i.isRoot=!0,i.preRootId=this.preRootId,i}}const gn=new Array(32).fill(0).join("");class Nr{getId(){return gn}getRootId(){}error(){}stop(){}discard(){}terminate(){}getIsSampled(){return!1}getTraceHeaders(t){return{}}getStartTimestamp(){}getStartPerfTime(){}getStopPerfTime(){}}const yn=Object.freeze(new Nr);class _n extends ut{constructor(t,r,i){super(t,r);this._allowMulti=i,this._onRootActivityStoppedCallback=this._handleRootActivityStop.bind(this)}startRootActivity(t,r,i){return this._safety.tryCatchReturn(()=>{h.requireArgument(t,"name");const s=new xe(t,this._onRootActivityStoppedCallback,this._onActivityErrorCallback,r,i);if(!this._allowMulti){if(this._singleRootActivity&&!this._singleRootActivity.isStopped){const l=this._singleRootActivity.getId();this._singleRootActivity.terminate(),s.preRootId=l}this._singleRootActivity=s}return s},yn)}_handleRootActivityStop(t){if(t.stopReason===_r)return;const r=this._getActivityData(t);this._logActivity(r,t.startTimestamp),this._singleRootActivity=void 0}_getActivityData(t){const r=super._getActivityData(t);return r.isRoot=t.isRoot,r.preRootId=t.preRootId,r}getSingleRootActivityId(){var t;return(t=this._singleRootActivity)===null||t===void 0?void 0:t.getId()}isSingleRootActivitySampled(){var t;return(t=this._singleRootActivity)===null||t===void 0?void 0:t.getIsSampled()}_initMetrics(){return new jt(this.name,()=>this.name)}}const vn=5;class bn{constructor(t,r){this._instr=t,this._doc=r,this._isActive=!1,this._boundClickListener=this._clickListener.bind(this),h.requireArgument(t,"_instr"),h.requireArgument(r,"_doc")}activate(){this._isActive||(this._doc.addEventListener("click",this._boundClickListener,!0),this._isActive=!0)}deactivate(){this._isActive&&(this._doc.removeEventListener("click",this._boundClickListener,!0),this._isActive=!1)}markEventHandled(t){this._ignoredEvent=t}_clickListener(t){var r;let i=(r=t.composedPath)===null||r===void 0?void 0:r.call(t);(!i||!i.length)&&(i=t.path);const s=this._getClickableElement(i);s&&setTimeout(()=>{t!==this._ignoredEvent&&this._instr.domEvent(t,s,void 0,void 0,{_auto:!0})})}_getClickableElement(t){var r,i;const s=t?Math.min(t.length,vn):0;for(let l=0;l<s;l+=1){const c=t[l],f=(r=c.tagName)===null||r===void 0?void 0:r.toLowerCase();if(f==="a"||f==="button")return c;if(f==="input"){const g=c;if(((i=g.type)===null||i===void 0?void 0:i.toLowerCase())==="button")return g}}}}const ct=80,Wt="_CUT",Cr=ct-Wt.length;class Be{get pagePayloadProvider(){return this._pagePayloadProvider}set pagePayloadProvider(t){this._pagePayloadProvider=t}get appPayloadProvider(){return this._appPayloadProvider}set appPayloadProvider(t){this._appPayloadProvider=t}constructor(t){this._idleDetector=t,this._logCollectors=new Set,this._instruments=new Map,this._seqBySchema=new Map,this._sequence=0,this._forceDisabledLogCollectors=new Set,this._logCollectorFailures=new Map,this._isBufferingEnabled=!1,this._buffer=[],this._logCollectionListeners=new Set}registerApp(t,r){var i;if(h.requireArgument(t,"name","string"),this._appInstr)throw new Error("An app has already been registered with instrumentation.");if(this._instruments.get(t))throw new Error(`The instrumentation name ${t} is already taken`);this._clientSessionId=((i=r==null?void 0:r.clientSessionId)===null||i===void 0?void 0:i.toString())||h.generateUniqueId(),this._appInstr=new _n(this,t,r==null?void 0:r.allowMultipleRootActivities),this._instruments.set(t,this._appInstr),this._isBufferingEnabled=r==null?void 0:r.enableBuffering;const l=new b(this.getInstrumentation("Network"),this._idleDetector);return{log:this._appInstr.log.bind(this._appInstr),error:this._appInstr.error.bind(this._appInstr),startActivity:this._appInstr.startActivity.bind(this._appInstr),domEvent:this._appInstr.domEvent.bind(this._appInstr),incrementCounter:this._appInstr.incrementCounter.bind(this._appInstr),trackValue:this._appInstr.trackValue.bind(this._appInstr),bucketValue:this._appInstr.bucketValue.bind(this._appInstr),networkInstrumentation:l.networkInstrumentation.bind(l),registerForLogPrompt:this._appInstr.registerForLogPrompt.bind(this._appInstr),activity:this._appInstr.activity.bind(this._appInstr),activityAsync:this._appInstr.activityAsync.bind(this._appInstr),startRootActivity:this._appInstr.startRootActivity.bind(this._appInstr),registerLogCollector:this.registerLogCollector.bind(this),registerMetricsCollector:this.registerMetricsCollector.bind(this),activateClickTracker:this.activateClickTracker.bind(this),deactivateClickTracker:this.deactivateClickTracker.bind(this),disableBuffering:this.disableBuffering.bind(this),promptLogCollection:this.promptLogCollection.bind(this),getClientSessionId:this.getClientSessionId.bind(this)}}getInstrumentation(t){h.requireArgument(t,"name","string"),t.length>ct&&(t=t.substr(0,Cr)+Wt);let r=this._instruments.get(t);if(!r)r=new ut(this,t),this._instruments.set(t,r);else if(r===this._appInstr)throw new Error(`The instrumentation name ${t} is being used by the app.`);return r}get appName(){var t;return(t=this._appInstr)===null||t===void 0?void 0:t.name}addLog(t,r,i,s,l,c,f){this._sequence+=1;const g=H.isInternal(r)&&(i==null?void 0:i.userPayload)?i.userPayload.schema:r,p=H.getSchemaId(g);let E=this._seqBySchema.get(p)||0;E+=1,this._seqBySchema.set(p,E);const v={timestamp:s,rootId:l,sequence:this._sequence,schemaSequence:E,loggerName:t,pagePayload:c?h.clone(c):void 0,appPayload:f?h.clone(f):void 0,loggerAppName:this.appName,connectionType:h.getConnectionType(),clientSessionId:this._clientSessionId};this._isBufferingEnabled&&this._buffer.push({schema:r,data:h.clone(i),logMeta:v});const A=Array.from(this._logCollectors).filter(O=>{var X;return!this._forceDisabledLogCollectors.has(O)&&!((X=O.getIsCollectDisabled)===null||X===void 0?void 0:X.call(O))});if(A.length>0)for(const O of A){const X=h.clone(i);let ye=this._logCollectorFailures.get(O)||0;try{O.collect(r,X,v),ye>0&&this._logCollectorFailures.set(O,ye-1)}catch(Xe){ye+=1,ye>=Be._collectorFailureLimit?(this._forceDisabledLogCollectors.add(O),this._appInstr&&(typeof Xe=="string"||Xe instanceof Error)&&this._appInstr.error(Xe)):this._logCollectorFailures.set(O,ye)}}return this._sequence}getBuffer(){return this._buffer}disableBuffering(){this._isBufferingEnabled=!1,this._buffer=[]}getClickTracker(){return this._autoClickTracker}getDefaultInstrumentationContext(){var t,r;return{rootId:(t=this._appInstr)===null||t===void 0?void 0:t.getSingleRootActivityId(),isRootActivitySampled:(r=this._appInstr)===null||r===void 0?void 0:r.isSingleRootActivitySampled()}}activateClickTracker(){typeof document!="undefined"&&(this._autoClickTracker||(this._autoClickTracker=new bn(this._appInstr,document)),this._autoClickTracker.activate())}deactivateClickTracker(){this._autoClickTracker&&(this._autoClickTracker.deactivate(),this._autoClickTracker=void 0)}registerLogCollector(t,r){if(h.requireArgument(t,"collector"),!this._logCollectors.has(t)&&(this._logCollectors.add(t),this._logCollectorFailures.set(t,0),(!t.getIsCollectDisabled||!t.getIsCollectDisabled())&&r&&r.retroactive))for(const i of this._buffer)t.collect(i.schema,i.data,i.logMeta)}registerMetricsCollector(t){if(h.requireArgument(t,"collector"),this._metricsCollector)throw new Error("A metrics Collector is already registered.");this._metricsCollector=t,this._metricsCollector.receiveMetricsExtractors({getAllUpCounters:this._getAllUpCounters.bind(this),getAllValueRecorders:this._getAllValueRecorders.bind(this),getAllBucketHistograms:this._getAllBucketHistograms.bind(this)})}_getAllUpCounters(){return Array.from(this._instruments.values()).map(r=>r.getUpCounters()).reduce((r,i)=>r.concat(i),[])}_getAllValueRecorders(){return Array.from(this._instruments.values()).map(r=>r.getValueRecorders()).reduce((r,i)=>r.concat(i),[])}_getAllBucketHistograms(){return Array.from(this._instruments.values()).map(r=>r.getBucketHistograms()).reduce((r,i)=>r.concat(i),[])}registerForLogPrompt(t){this._logCollectionListeners.add(t)}promptLogCollection(t){for(const r of this._logCollectionListeners.keys())try{r(t)}catch(i){if(!h.isProduction)throw i}}getClientSessionId(){return this._clientSessionId}}Be._collectorFailureLimit=5;class Ar{get _lazyNextGen(){return this._nextgen||(this._nextgen=new Be(this._idleDetector)),this._nextgen}constructor(t){this._idleDetector=t,h.requireArgument(t,"_idleDetector")}registerInstrumentedApp(t,r){(!r||r.isProduction!==!1)&&h.markProduction();const i=this._lazyNextGen.registerApp(t,r);return r&&(this._nextgen.appPayloadProvider=r.appPayloadProvider,this._nextgen.pagePayloadProvider=r.pagePayloadProvider),i}getInstrumentation(t){return this._lazyNextGen.getInstrumentation(t)}}const Je=h.time.bind(h),Rr={Error:"Crimson",Activity:"CadetBlue",InstrumentedEvent:"DarkOliveGreen",O11ySample:"BlueViolet"},wn={Error:"white",Activity:"white",InstrumentedEvent:"white",O11ySample:"white"},Kt="black",Xt="Gainsboro";let En=class{constructor(t){t&&this._log("ConsoleCollector",t)}collect(t,r,i){let s,l,c;t.namespace==="sf.instrumentation"?(s=t.name,l=wn[t.name]||Kt,c=Rr[t.name]||Xt):s=H.getSchemaId(t),this._log(s,r,i,l,c)}_log(t,r,i,s=Kt,l=Xt){const c=`color:${s};background-color:${l}`;console.log(`%cO11Y%c ${t}`,"color:white;background-color:#FF6600;font-weight:bold",c,r||"",i||"")}};const Tn="244.9.0",Ze=new $e({logThreshold:300,reportListener:u=>{et==null||et.log(li,u)},errorListener:(u,t)=>{et==null||et.error(u,t)}}),dt=new Ar(Ze),Tt=dt.registerInstrumentedApp.bind(dt),St=dt.getInstrumentation.bind(dt),et=St("IdleDetector");var Ir=Object.freeze({__proto__:null,ConsoleCollector:En,_version:Tn,getInstrumentation:St,idleDetector:Ze,registerInstrumentedApp:Tt,time:Je});const Pr="244.39.0",Or={namespace:"sf.instrumentation",name:"WebVitals",pbjsSchema:{nested:{sf:{nested:{instrumentation:{nested:{WebVitals:{fields:{name:{id:1,type:"string"},delta:{id:3,type:"double"},value:{id:2,type:"double"}}}}}}}}}};var Ne,qe,Nt,Ce,G=function(u,t){return{name:u,value:t===void 0?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},ht=function(u,t){try{if(PerformanceObserver.supportedEntryTypes.includes(u)){if(u==="first-input"&&!("PerformanceEventTiming"in self))return;var r=new PerformanceObserver(function(i){return i.getEntries().map(t)});return r.observe({type:u,buffered:!0}),r}}catch(i){}},Ct=function(u,t){var r=function i(s){s.type!=="pagehide"&&document.visibilityState!=="hidden"||(u(s),t&&(removeEventListener("visibilitychange",i,!0),removeEventListener("pagehide",i,!0)))};addEventListener("visibilitychange",r,!0),addEventListener("pagehide",r,!0)},Ge=function(u){addEventListener("pageshow",function(t){t.persisted&&u(t)},!0)},Ae=function(u,t,r){var i;return function(s){t.value>=0&&(s||r)&&(t.delta=t.value-(i||0),(t.delta||i===void 0)&&(i=t.value,u(t)))}},ft=-1,Lr=function(){return document.visibilityState==="hidden"?0:1/0},Mr=function(){Ct(function(u){var t=u.timeStamp;ft=t},!0)},tt=function(){return ft<0&&(ft=Lr(),Mr(),Ge(function(){setTimeout(function(){ft=Lr(),Mr()},0)})),{get firstHiddenTime(){return ft}}},zt=function(u,t){var r,i=tt(),s=G("FCP"),l=function(g){g.name==="first-contentful-paint"&&(f&&f.disconnect(),g.startTime<i.firstHiddenTime&&(s.value=g.startTime,s.entries.push(g),r(!0)))},c=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],f=c?null:ht("paint",l);(c||f)&&(r=Ae(u,s,t),c&&l(c),Ge(function(g){s=G("FCP"),r=Ae(u,s,t),requestAnimationFrame(function(){requestAnimationFrame(function(){s.value=performance.now()-g.timeStamp,r(!0)})})}))},kr=!1,Yt=-1,Sn=function(u,t){kr||(zt(function(p){Yt=p.value}),kr=!0);var r,i=function(p){Yt>-1&&u(p)},s=G("CLS",0),l=0,c=[],f=function(p){if(!p.hadRecentInput){var E=c[0],v=c[c.length-1];l&&p.startTime-v.startTime<1e3&&p.startTime-E.startTime<5e3?(l+=p.value,c.push(p)):(l=p.value,c=[p]),l>s.value&&(s.value=l,s.entries=c,r())}},g=ht("layout-shift",f);g&&(r=Ae(i,s,t),Ct(function(){g.takeRecords().map(f),r(!0)}),Ge(function(){l=0,Yt=-1,s=G("CLS",0),r=Ae(i,s,t)}))},pt={passive:!0,capture:!0},At=new Date,mt=function(u,t){Ne||(Ne=t,qe=u,Nt=new Date,Rt(removeEventListener),Nn())},Nn=function(){if(qe>=0&&qe<Nt-At){var u={entryType:"first-input",name:Ne.type,target:Ne.target,cancelable:Ne.cancelable,startTime:Ne.timeStamp,processingStart:Ne.timeStamp+qe};Ce.forEach(function(t){t(u)}),Ce=[]}},hi=function(u){if(u.cancelable){var t=(u.timeStamp>1e12?new Date:performance.now())-u.timeStamp;u.type=="pointerdown"?function(r,i){var s=function(){mt(r,i),c()},l=function(){c()},c=function(){removeEventListener("pointerup",s,pt),removeEventListener("pointercancel",l,pt)};addEventListener("pointerup",s,pt),addEventListener("pointercancel",l,pt)}(t,u):mt(t,u)}},Rt=function(u){["mousedown","keydown","touchstart","pointerdown"].forEach(function(t){return u(t,hi,pt)})},Qt=function(u,t){var r,i=tt(),s=G("FID"),l=function(f){f.startTime<i.firstHiddenTime&&(s.value=f.processingStart-f.startTime,s.entries.push(f),r(!0))},c=ht("first-input",l);r=Ae(u,s,t),c&&Ct(function(){c.takeRecords().map(l),c.disconnect()},!0),c&&Ge(function(){var f;s=G("FID"),r=Ae(u,s,t),Ce=[],qe=-1,Ne=null,Rt(addEventListener),f=l,Ce.push(f),Nn()})},rt={},Cn=function(u,t){var r,i=tt(),s=G("LCP"),l=function(g){var p=g.startTime;p<i.firstHiddenTime&&(s.value=p,s.entries.push(g),r())},c=ht("largest-contentful-paint",l);if(c){r=Ae(u,s,t);var f=function(){rt[s.id]||(c.takeRecords().map(l),c.disconnect(),rt[s.id]=!0,r(!0))};["keydown","click"].forEach(function(g){addEventListener(g,f,{once:!0,capture:!0})}),Ct(f,!0),Ge(function(g){s=G("LCP"),r=Ae(u,s,t),requestAnimationFrame(function(){requestAnimationFrame(function(){s.value=performance.now()-g.timeStamp,rt[s.id]=!0,r(!0)})})})}},It=function(u){var t,r=G("TTFB");t=function(){try{var i=performance.getEntriesByType("navigation")[0]||function(){var s=performance.timing,l={entryType:"navigation",startTime:0};for(var c in s)c!=="navigationStart"&&c!=="toJSON"&&(l[c]=Math.max(s[c]-s.navigationStart,0));return l}();if(r.value=r.delta=i.responseStart,r.value<0||r.value>performance.now())return;r.entries=[i],u(r)}catch(s){}},document.readyState==="complete"?setTimeout(t,0):addEventListener("load",function(){return setTimeout(t,0)})},se;(function(u){u[u.CLS=0]="CLS",u[u.FCP=1]="FCP",u[u.FID=2]="FID",u[u.LCP=3]="LCP",u[u.TBT=4]="TBT",u[u.TTFB=5]="TTFB"})(se||(se={}));const An=[se.CLS,se.FCP,se.FID,se.LCP,se.TTFB];class Rn{constructor(){this._isInitialized=!1,this._safety=new Ye,this._instr=St("WebVitals")}activate(t,r){this._safety.tryCatch(()=>{if(this._isInitialized)throw new Error("WebVitals is already activated.");h.requireArgumentIfDefined(r,"metrics",Array),this._isInitialized=!0;const i=new Set(r||An);if(i.delete(se.CLS)&&Sn(this._logHandler.bind(this)),i.delete(se.FCP)&&zt(this._activityHandler.bind(this)),i.delete(se.FID)&&Qt(this._logHandler.bind(this)),i.delete(se.LCP)&&Cn(this._activityHandler.bind(this)),i.delete(se.TTFB)&&It(this._activityHandler.bind(this)),i.size>0){const s=JSON.stringify(Array.from(i.keys()));this._instr.error(`Unsupported WebVital metrics: ${s}`)}})}_logHandler(t){this._instr.log(Or,{name:t.name,value:t.value,delta:t.delta})}_activityHandler(t){this._instr.startActivity(t.name).stop(void 0,void 0,{perfStartOverride:0,perfStopOverride:t.value})}}const In=new Rn;function Pn(u,t){if(!u)throw new Error(t)}const On={APEX_ACTION_ERROR:"APEX_ACTION_ERROR",FAILED_TO_LOAD_RESOURCE:"FAILED_TO_LOAD_RESOURCE",TOO_MANY_REQUESTS:"TOO_MANY_REQUESTS",UNKNOWN_ERROR:"UNKNOWN_ERROR"},Ln=["POST","PATCH","PUT","DELETE"],ee="X-SFDC-Request-Id",Dr="X-Salesforce-Too-Many-Requests",Pt="asGuest",ae="language",k="htmlEncode",{location:$r,navigator:fe}=globalThis;async function Jt(u,t={}){Pn(typeof u=="string","Valid path not provided for fetch request");const r=ke(ke({},t),{},{headers:ke({},t.headers),credentials:t.credentials||"same-origin"});t.credentials===null&&delete r.credentials;const i=r.isNonApiRequest===!0,s=r.asGuest===!0||await M(),l=r.basePath!==void 0?r.basePath:st.default,c=new URL(l+u,$r);if(!i){const p=c.searchParams;p.has(ae)||p.append(ae,ve.default),p.has(Pt)||p.append(Pt,s),p.has(k)||p.append(k,!1)}const f=r.headers["Content-Type"];f===null?delete r.headers["Content-Type"]:f?r.headers["Content-Type"]=f:t.body&&(r.headers["Content-Type"]="application/json; charset=utf-8"),r.headers[ee]=Mn(),await Hr(r);const g=await globalThis.fetch(c.toString(),r);return Fr(g)&&nt(),g}function nt(){document.dispatchEvent(new CustomEvent("client-error",{detail:{type:On.TOO_MANY_REQUESTS}}))}function Fr(u){return!!((u.status===503||u.status===429)&&u.headers.get(Dr))}async function Hr(u){if(u.method&&Ln.includes(u.method)){const{default:t}=await V.load("@app/user/v/1");u.headers["CSRF-Token"]=t.csrfToken}}async function Ur({path:u,payload:t,contentType:r}){const i=ie.default+u;fe&&fe.sendBeacon&&fe.sendBeacon(i,t)||await globalThis.fetch(u,{headers:{"Content-Type":r},basePath:ie.default,body:t,method:"POST",isNonApiRequest:!0})}function Mn(){return(Date.now()+kn()+Math.round(Math.random()*1e8)).substring(0,18)}function kn(){function u(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return u()+u()}async function M(){const{default:u}=await V.load("@app/user/v/1");return u.isGuest}var le=Object.freeze({__proto__:null,fetch:Jt,sendBeacon:Ur});const Ve={namespace:"sf.clwr",name:"AppPayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{AppPayload:{fields:{visd:{id:1,type:"double"},isPreview:{id:4,type:"bool"},siteId:{id:6,type:"string"},isMobile:{id:3,type:"bool"},lang:{id:5,type:"string"},isDesign:{id:2,type:"bool"},vKey:{id:7,type:"string"}}}}}}}}}},Z={namespace:"sf.clwr",name:"Nav",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Nav:{fields:{isIdleHit:{id:1,type:"bool"},isManual:{id:2,type:"bool"}}}}}}}}}},Zt={namespace:"sf.clwr",name:"NavTransition",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{NavTransition:{fields:{code:{id:4,type:"string"},isSsr:{id:3,type:"bool"},level:{id:5,type:"string"},nextUrl:{id:1,type:"string"},type:{id:2,type:"string"}}}}}}}}}},xr={namespace:"sf.clwr",name:"PagePayload",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{PagePayload:{fields:{isSsr:{id:3,type:"bool"},type:{id:2,type:"string"},url:{id:1,type:"string"}}}}}}}}}},te={namespace:"sf.clwr",name:"Root",pbjsSchema:{nested:{sf:{nested:{clwr:{nested:{Root:{fields:{sequence:{id:1,type:"uint32"},navCount:{id:2,type:"uint32"},clickCount:{id:3,type:"uint32"},isManual:{id:4,type:"bool"}}}}}}}}}},it=5e4,we=3e3,Re=300,Br="O11Y_ENDPOINT_NOT_CONFIGURED",qr=Math.random(),re={coreEnabled:!1,coreSamplingRate:0,coreRelativeEndpoint:"",falconEnabled:!1,falconSamplingRate:0,falconAbsoluteEndpoint:"",guestToken:"",traceSamplingRate:0},Ie=!0;Ie&&h.markProduction();let Ot,Lt;new Ye().tryCatch(()=>{const u=JSON.parse(ze.default);Object.keys(re).forEach(t=>{const r=u[t],i=typeof re[t];(i==="string"&&r===""||h.requireArgumentIfDefined(r,`srvConfig.${t}`,i))&&(re[t]=u[t])}),Ot=Dn(Te.default),re.guestToken=Ot.guestToken});function Gr(){return re}function ot(u,t){return u&&t!==""&&t!==Br}function Mt(u){return!Ie||u>0&&u>=qr}function er(){return!Lt&&ot(re.coreEnabled,re.coreRelativeEndpoint)&&Mt(re.coreSamplingRate)}function tr(){return ot(re.falconEnabled,re.falconAbsoluteEndpoint)&&Mt(re.falconSamplingRate)}function Dn(u){if(!u)throw new Error("o11yGuestToken not set");const t={},r=u.indexOf("|");return r>=0?(t.guestToken=u.substring(0,r),t.meta=JSON.parse(u.substring(r+1))):t.guestToken=u,t}function kt(){const u=re.coreRelativeEndpoint?.indexOf("services/data/");return u===0||u===1}function Vr(){const u=re.coreRelativeEndpoint||"";return kt()&&u.length>1&&u[0]!=="/"}async function jr(){if(Lt===void 0&&(Lt=!1,kt()&&!Ot.meta?.isGuestApiAccessEnabled)){const{default:u}=await V.load("@app/user/v/1");u.isGuest&&(Lt=!0)}}function $n(){const u=Math.random(),t=re.traceSamplingRate||0;return t>0&&t>=u}const Wr={perfStartOverride:0};let pe;class Fn{constructor(t){this._rootPayload={sequence:0,navCount:0,clickCount:0,isManual:!1},this._navPayload={isIdleHit:!1,isManual:!1},this._hadRootActivity=!1,this._hadNavActivity=!1,this._isFirstNavActivity=!0;const r=!1;pe=i=>r&&console.log(`O11YR ${i}`),pe("Started"),this._o11yApp=t,this._startRoot(),document.body.addEventListener("click",this._handleClick.bind(this),{capture:!0,passive:!0}),window.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleClick(){this._rootActivity?this._rootPayload.clickCount+=1:this._startRoot()}_handleVisibilityChange(){const t=document.visibilityState==="hidden";pe(t?"Hide":"Show"),t?(this._stopNavTransition(),this._stopNav(),this._stopRoot(!1)):(this._hadRootActivity&&this._startRoot(!0),this._hadNavActivity&&!this._navActivity&&this._startNav(this._navData,!0))}get _isFirstRootActivity(){return this._rootPayload.sequence===1}_startRoot(t=!1){this._rootActivity&&this._stopRoot(!1),this._rootPayload.clickCount=0,this._rootPayload.navCount=0,this._rootPayload.sequence+=1,this._rootPayload.isManual=t,this._rootActivity=this._o11yApp.startRootActivity("root",void 0,$n()),this._hadRootActivity=!0,pe(`Root Started ${this._rootActivity.getId()}`),Ze.requestIdleDetectedCallback(()=>{this._stopRoot(!0)})}_stopRoot(t){if(!!this._rootActivity){pe(`Root Stop ${t?"idle":"busy"} ${this._rootActivity.getId()}`);try{if(!this._isFirstRootActivity&&this._rootPayload.navCount===0&&Je().perfNow-this._rootActivity.getStartPerfTime()<Re){this._rootActivity.discard(),this._rootPayload.sequence-=1;return}const r=this._isFirstRootActivity?Wr:void 0;t?this._rootActivity.stop(te,this._rootPayload,r):this._rootActivity.terminate(te,this._rootPayload,r)}finally{this._rootActivity=void 0,this._hadRootActivity=!1}}}_startNav(t,r){this._stopNav(),this._navPayload.isIdleHit=!1,this._navPayload.isManual=r,this._rootPayload.navCount+=1,this._navData=t?{url:t.url,pageRef:t.pageRef,isSsr:t.isSsr}:void 0,this._navActivity=this._o11yApp.startActivity("navigation"),this._hadNavActivity=!0,pe(`Nav Started ${this._navActivity.getId()}`),Ze.requestIdleDetectedCallback(()=>{pe(`Nav Idle ${this._navActivity?.getId()}`),this._navPayload.isIdleHit=!0})}_stopNav(){if(this._navActivity){pe(`Nav Stop ${this._navActivity.getId()}`);try{const t=this._isFirstNavActivity?Wr:void 0;this._isFirstNavActivity=!1,this._navActivity.stop(Z,this._navPayload,t)}finally{this._navActivity=void 0}}}_startNavTransition(t){this._navTransitionActivity&&this._stopNavTransition(void 0,!0),this._navTransitionData=t,this._navTransitionActivity=this._o11yApp.startActivity("navigation transition"),pe(`Trans Started ${this._navTransitionActivity.getId()}`)}_stopNavTransition(t,r=!1){if(this._navTransitionActivity){pe(`Trans ${r?"Terminate":"Stop"} ${this._navTransitionActivity.getId()}`);try{if(t){const{code:s,message:l,level:c}=t,f=["Fatal","Error","Warning","Log"][c];this._navTransitionActivity.error(l,Zt,{code:s?.toString(),level:f})}const i=this._navTransitionData?{nextUrl:this._navTransitionData.url,type:this._navTransitionData.pageRef?.type,isSsr:this._navTransitionData.isSsr}:void 0;r?this._navTransitionActivity.terminate(Zt,i):this._navTransitionActivity.stop(Zt,i)}finally{this._navTransitionActivity=void 0,this._navTransitionData=void 0}}}preNavigate(t){this._startNavTransition({url:t.next.url,pageRef:t.next.route.pageReference,isSsr:t.next.routeDefinition?.bootstrap?.ssr})}postNavigate(t){this._stopNavTransition(),this._startNav({url:t.url,pageRef:t.route.pageReference,isSsr:t.routeDefinition?.bootstrap?.ssr},!1)}errorNavigate(t){pe(`Err level ${t?.level}: ${t?.code}`),this._stopNavTransition(t)}getCurrentPageData(){if(this._navData){const{pageRef:t,url:r,isSsr:i}=this._navData;return{url:r,type:t?.type,isSsr:i}}}}class Dt{constructor(){this._totalVisibleDuration=0,this._isVisible=document?.visibilityState==="visible",this._isVisible&&(this._lastVisibleTime=0),window?.addEventListener("visibilitychange",this._handleVisibilityChange.bind(this))}_handleVisibilityChange(){if(document.visibilityState==="hidden"){if(this._isVisible=!1,this._lastVisibleTime!==void 0){const t=Je().perfNow;this._totalVisibleDuration+=t-this._lastVisibleTime,this._lastVisibleTime=t}}else this._isVisible=!0,this._lastVisibleTime=Je().perfNow}getPayload(){const t=this._isVisible&&this._lastVisibleTime!==void 0?Je().perfNow-this._lastVisibleTime:0,r={isDesign:Le.default,isMobile:dr.default,isPreview:W.default,lang:ve.default,siteId:B.default,vKey:Me.default,visd:this._totalVisibleDuration+t};return{schema:Ve,payload:r}}}class rr{linkWithRouterSupport(t){this._routingSupport=t}getPayload(){if(this._routingSupport){const t=this._routingSupport.getCurrentPageData();if(t)return{schema:xr,payload:t}}}}const{ConsoleCollector:je,idleDetector:gt,registerInstrumentedApp:We,_version:Kr}=Ir,Hn="lwr_experience";let Ke,$t;const D=xt;D.clientVersion=Kr,D.schemaVersion=Pr;const Ee=`${Kr}:${Pr}`,Pe=Jt;globalThis.LWR?.define&&(globalThis.LWR.define("o11y/shared",[],()=>bt),globalThis.LWR.define("o11y/client",[],()=>Ir),globalThis.LWR.define("transport",[],()=>le),globalThis.LWR.define("webruntime/o11y",[],()=>ii));async function Xr(u){const t=!0;try{if(typeof window=="undefined"){D.isUnavailable=!0;return}const r=gt.declareNotifierTaskMulti("o11y LWR module fetch");D.willUpload=er()||tr();const i=new Dt,s=new rr;D.app=We(Hn,{isProduction:t,enableBuffering:!0,appPayloadProvider:i,pagePayloadProvider:s}),Q.default?.(c=>{c.id==="lwr.loader.module.fetch"&&(c.phase===0?r.add():r.done())}),D.app.networkInstrumentation({tracingHeadersOptions:{useB3Headers:!0}}),In.activate(),D.routingSupport=new Fn(D.app),s.linkWithRouterSupport(D.routingSupport);let l=!1;if(D.initConsole=c=>{if(!l&&D.app){const f=new je;D.app.registerLogCollector(f,c),l=!0}},t||(D.initConsole(),D.app.log(`o11y ${Ee}`)),D.upload=nr,D.willUpload){if(await xn(),await jr(),D.willUpload=er()||tr(),!D.willUpload)return;await Bn(D.app,{appName:u.appMetadata.bootstrapModule,sdkVersion:`o11y ${Ee}`}),Un(),await nr(!0)}}catch(r){if(!t)throw r;try{console?.error("Failed to start o11y",r)}catch{}}finally{try{D.app?.disableBuffering()}catch{}}}function Un(){window.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&nr(!0)})}async function xn(){const u=t=>{let r=!1;setTimeout(()=>{r||(r=!0,t())},we),gt.requestIdleDetectedCallback(()=>{r||(r=!0,t())})};return new Promise(t=>{document.readyState==="complete"?u(t):window.addEventListener("load",()=>u(t))})}async function Bn(u,t){const[r,i]=await Promise.all([V.load("o11y/simple_collector/v/244_9_0"),V.load("o11y/collectors/v/244_9_0")]);$t=(i.default||i).encodeCoreEnvelopeContentsRaw,Ke=new(r.default||r).SimpleCollector({environment:t}),u.registerLogCollector(Ke,{retroactive:!0}),u.registerMetricsCollector(Ke)}function nr(u=!1){const t=[],r=er(),i=tr();if(Ke?.hasData&&(r||i)&&(u||Ke.estimatedByteSize>=it)){const s=Ke.getRawContentsOfCoreEnvelope(),l=$t(s);r&&t.push(qn(l)),i&&t.push(Gn(l))}return Promise.allSettled(t)}function qn(u){const t=String.fromCharCode,r=[];for(let c=0,f=u.length;c<f;c++)r.push(t(u[c]));const i=window.btoa(r.join("")),s={method:"POST",body:JSON.stringify({base64Env:i}),keepalive:!0,isNonApiRequest:!kt(),o11y:{skipInstr:!0}};let l=Gr().coreRelativeEndpoint;return Vr()?l[0]!=="/"&&(l=`/${l}`):s.basePath=ie.default,Pe(l,s)}function Gn(u){const t=Gr(),r={method:"POST",body:u,headers:{"x-sfdc-o11y-token":t.guestToken||"","Content-Type":"application/octet-stream"},keepalive:!0,o11y:{skipInstr:!0}};return fetch(t.falconAbsoluteEndpoint,r)}T.default=Xr,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("webruntime/hook/v/1_66_319-244_0",["exports"],function(T){"use strict";var V=["@app/apexApiBasePath","@app/apiBasePath","@app/authenticationCookieName","@app/basePath","@app/guestUuidCookieName","@app/isDesignMode","@app/isPreviewMode","@app/isMobileAppMode","@app/loginPath","@app/o11yGuestToken","@app/o11yConfiguration","@app/routes","@app/extraRouteParams","@app/uiBasePath","@app/versionKey","@app/viewToThemeLayoutMap","@app/views","@salesforce/community/basePath","@salesforce/i18n/lang","@salesforce/site/Id","@salesforce/webstore/Id","webruntime/dispatcher"],ue=["@salesforce/cssvars/customProperties","aura-instrumentation","aura-storage","aura","instrumentation/service","instrumentation/utility","lightning/configProvider","lightning/navigation","transport","webruntime/transport","logger","assert","o11y/shared","o11y/client","webruntime/o11y","webruntime_navigation/link","webruntime/expressions","webruntime/routerContainer","webruntime/componentContainer","webruntime/slotContainer","webruntime/visibilityContainer","webruntime/routingService","webruntime/overrides","webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent","mobileruntime/hybridAppManager","wire-service","@salesforce/client/formFactor"];const ne=["webruntimedesign/componentWrapper","webruntimedesign/regionWrapper","webruntimedesign/dropRegion","webruntimedesign/componentService","webruntimedesign/designComponent"];function ce(Y){Y.addLoaderPlugin({resolveModule:async P=>{const[C]=P.split("/v/");return C==="webruntime/transport"?"transport":C&&(ue.includes(C)||ne.includes(C)||V.includes(C))?C:C==="@salesforce/loader"?"lwr/loaderLegacy/v/0_9_0":null}})}T.default=ce,Object.defineProperty(T,"__esModule",{value:!0})}),LWR.define("@lwc/synthetic-shadow/v/2_41_4",function(){"use strict";function T(e,n){if(!e)throw new Error(`Invariant Violation: ${n}`)}function V(e,n){if(!e)throw new Error(`Assert Violation: ${n}`)}function ue(e,n){if(e)throw new Error(`Assert Violation: ${n}`)}function ne(e){throw new Error(e)}var ce=Object.freeze({__proto__:null,fail:ne,invariant:T,isFalse:ue,isTrue:V});const{assign:Y,create:P,defineProperties:C,defineProperty:N,freeze:j,getOwnPropertyDescriptor:_,getOwnPropertyNames:_e,getPrototypeOf:oe,hasOwnProperty:S,isFrozen:ie,keys:st,seal:ve,setPrototypeOf:Q}=Object,{isArray:ze}=Array,{concat:Te,copyWithin:Le,fill:dr,filter:W,find:Me,indexOf:B,join:at,map:ke,pop:ni,push:K,reduce:Ut,reverse:xt,shift:ii,slice:L,some:vt,sort:h,splice:Ye,unshift:oi,forEach:H}=Array.prototype,{charCodeAt:bt,replace:si,split:ai,slice:li,toLowerCase:ui}=String.prototype;function y(e){return e===void 0}function w(e){return e===null}function De(e){return e===!0}function $e(e){return e===!1}function be(e){return typeof e=="function"}function hr(e){return typeof e=="object"}const fr={}.toString;function tn(e){return e&&e.toString?ze(e)?at.call(ke.call(e,tn),","):e.toString():typeof e=="object"?fr.call(e):e+""}const Fe=typeof globalThis=="object"?globalThis:window,rn="$isNativeShadowRootDefined$",lt="$shadowResolver$",pr="$$ShadowResolverKey$$",nn="$shadowStaticNode$",mr="$shadowStaticNodeKey$",Bt="$shadowToken$",b="$$ShadowTokenKey$$",de="$$lwc-synthetic-mode",gr="$nativeGetElementById$",yr="$nativeQuerySelectorAll$",_r=(()=>Symbol("x").toString()==="Symbol(x)")();Fe.lwcRuntimeFlags||Object.defineProperty(Fe,"lwcRuntimeFlags",{value:P(null)});const U=Node,q=U.prototype,{DOCUMENT_POSITION_CONTAINED_BY:He,DOCUMENT_POSITION_CONTAINS:ci,DOCUMENT_POSITION_PRECEDING:on,DOCUMENT_POSITION_FOLLOWING:sn,ELEMENT_NODE:an,TEXT_NODE:vr,CDATA_SECTION_NODE:qt,PROCESSING_INSTRUCTION_NODE:br,COMMENT_NODE:wt,DOCUMENT_FRAGMENT_NODE:di}=U,{appendChild:ln,cloneNode:wr,compareDocumentPosition:he,insertBefore:un,removeChild:cn,replaceChild:Er,hasChildNodes:dn}=q,{contains:Tr}=HTMLElement.prototype,hn=_(q,"firstChild").get,fn=_(q,"lastChild").get,pn=_(q,"textContent").get,ge=_(q,"parentNode").get,Gt=_(q,"ownerDocument").get,Se=S.call(q,"parentElement")?_(q,"parentElement").get:_(HTMLElement.prototype,"parentElement").get,Vt=_(q,"textContent").set,J=S.call(q,"childNodes")?_(q,"childNodes").get:_(HTMLElement.prototype,"childNodes").get,jt=S.call(q,"isConnected")?_(q,"isConnected").get:function(){const e=Gt.call(this);return e===null||(he.call(e,this)&He)!=0},{getAttribute:Qe,getBoundingClientRect:mn,getElementsByTagName:Et,getElementsByTagNameNS:Sr,hasAttribute:Ue,querySelector:ut,querySelectorAll:xe,removeAttribute:gn,setAttribute:Nr}=Element.prototype,yn=S.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:()=>{throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},_n=_(Element.prototype,"childElementCount").get,vn=_(Element.prototype,"firstElementChild").get,bn=_(Element.prototype,"lastElementChild").get,ct=_(HTMLElement.prototype,"innerText"),Wt=ct?ct.get:null,Cr=ct?ct.set:null,Be=_(HTMLElement.prototype,"outerText"),Ar=Be?Be.get:null,Je=Be?Be.set:null,Rr=S.call(Element.prototype,"innerHTML")?_(Element.prototype,"innerHTML"):_(HTMLElement.prototype,"innerHTML"),wn=Rr.get,Kt=Rr.set,Xt=S.call(Element.prototype,"outerHTML")?_(Element.prototype,"outerHTML"):_(HTMLElement.prototype,"outerHTML"),En=Xt.get,Tn=Xt.set,Ze=_(Element.prototype,"tagName").get,dt=_(HTMLElement.prototype,"tabIndex"),Tt=dt.get,St=dt.set,et=S.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,Ir=S.call(Element.prototype,"children")?_(Element.prototype,"children").get:_(HTMLElement.prototype,"children").get,{getElementsByClassName:Pr}=HTMLElement.prototype,Or=S.call(Element.prototype,"shadowRoot")?_(Element.prototype,"shadowRoot").get:()=>null,Ne=S.call(Element.prototype,"assignedSlot")?_(Element.prototype,"assignedSlot").get:()=>null;let qe,Nt;typeof HTMLSlotElement!="undefined"?(qe=HTMLSlotElement.prototype.assignedNodes,Nt=HTMLSlotElement.prototype.assignedElements):(qe=()=>{throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},Nt=()=>{throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});const Ce=_(Event.prototype,"target").get,G=_(Event.prototype,"currentTarget").get,ht=_(FocusEvent.prototype,"relatedTarget").get,Ct=S.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],Ge=_(Document.prototype,"activeElement").get,Ae=S.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,ft=S.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Lr=_(Document.prototype,"defaultView").get,{createComment:Mr,querySelectorAll:tt,getElementById:zt,getElementsByClassName:kr,getElementsByTagName:Yt,getElementsByTagNameNS:Sn}=Document.prototype,{getElementsByName:pt}=HTMLDocument.prototype,{addEventListener:At,removeEventListener:mt,getComputedStyle:Nn,getSelection:hi}=window,Rt=MutationObserver,Qt=Rt.prototype.observe;let rt=null;typeof ShadowRoot!="undefined"&&(rt=ShadowRoot);const Cn=!w(rt),It=w(rt)?()=>!1:e=>e instanceof rt;function se(){return typeof HTMLSlotElement=="undefined"}const{createElement:An}=Document.prototype,Rn=115,In=108,Pn=111,On=116;function Ln(){class e{}Q(e,HTMLElement.constructor),Q(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,N(Document.prototype,"createElement",{value:function(n,o){const a=An.apply(this,L.call(arguments));return n.length===4&&bt.call(n,0)===Rn&&bt.call(n,1)===In&&bt.call(n,2)===Pn&&bt.call(n,3)===On&&Q(a,e.prototype),a}})}se()&&Ln();function ee(e){const n=Gt.call(e);return n===null?e:n}function Dr(e){const n=ee(e),o=Lr.call(n);if(o===null)throw new TypeError;return o}let Pt;function ae(e){if(y(Pt)){const n=ee(e);Pt=n.body&&Qe.call(n.body,"data-global-patching-bypass")==="temporary-bypass"}return De(Pt)}function k(e){const n=e.length,o=[];if(n>0)for(let a=0;a<n;a++)o[a]=e[a];return o}const $r=typeof EventTarget!="undefined"?EventTarget.prototype:U.prototype,{addEventListener:fe,dispatchEvent:Jt,removeEventListener:nt}=$r,Fr="$$HostElementKey$$",Hr="$$ShadowedNodeKey$$";function Ur(e,n,o){const a=e;{const{value:d}=o;a[n]=d}}function Mn(e,n){Ur(e,Fr,{value:n,configurable:!0})}function kn(e,n){Ur(e,Hr,{value:n})}function M(e){return e[Fr]}function le(e){let n=e,o;for(;!w(n);){if(o=M(n),!y(o))return o;if(n=ge.call(n),!w(n)&&it(n))return}}function Ve(e){return e[Hr]}function Z(e){return!y(M(e))}function Zt(e){let n=Se.call(e);for(;!w(n)&&we(n);)e=n,n=Se.call(e);return e}function xr(e,n){const o=Ve(e);let a=n instanceof Element?n:Se.call(n);for(;!w(a)&&a!==e;){const d=le(a),m=Se.call(a);if(d===o)return we(a);if(m===e)return!1;if(!w(m)&&le(m)!==d)if(we(m)){if(a=te(Zt(m)),!w(a)){if(a===e)return!0;if(le(a)===o)return!0}}else return!1;else a=m}return!1}function te(e){if(!(e instanceof U))return null;const n=le(e);if(y(n))return null;let o=e;for(;!w(o)&&Ve(o)!==n;)o=ge.call(o);return w(o)?null:o}function it(e){return we(e)&&Z(e)}function we(e){return e instanceof HTMLSlotElement}function Re(e,n){const o=le(n);if(y(o)){const a=ge.call(n);return!(!w(a)&&it(a))}return Ve(e)===o}function Br(e){const n=x(e);return Ie(n,k(J.call(n)))}function qr(e,n){const o=[];for(let a=0,d=n.length;a<d;a+=1){const m=n[a];!Re(e,m)&&xr(e,m)&&K.call(o,m)}return o}function re(e,n){for(let o=0,a=n.length;o<a;o+=1){const d=n[o];if(!Re(e,d)&&xr(e,d))return d}return null}function Ie(e,n){const o=[];for(let a=0,d=n.length;a<d;a+=1){const m=n[a];Re(e,m)&&K.call(o,m)}return o}function Ot(e,n){for(let o=0,a=n.length;o<a;o+=1)if(Re(e,n[o]))return n[o];return null}function Lt(e,n){const o=x(e),a=k(xe.call(o,n));return Ot(o,a)}function Gr(e,n){const o=x(e),a=xe.call(o,n);return Ie(o,k(a))}function ot(e){if(!F(e)&&!we(e)){const n=J.call(e);return k(n)}if(F(e)){const n=k(xe.call(e,"slot")),o=_t(Oe(e));return Ut.call(n,(a,d)=>(o===_t(d)&&K.apply(a,Mt(d)),a),[])}else{const n=k(J.call(e)),o=_t(e);return W.call(n,a=>o===_t(a))}}function Mt(e){const n=te(e);if(w(n))return[];const o=k(J.call(e));return W.call(o,a=>!Z(a)||!Re(n,a))}function er(e){let n="";const o=ot(e);for(let a=0,d=o.length;a<d;a+=1)n+=Dt(o[a]);return n}const tr=/[&\u00A0"]/g,Dn=/[&\u00A0<>]/g,{replace:kt,toLowerCase:Vr}=String.prototype;function jr(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"\xA0":return" ";default:return""}}function $n(e){return kt.call(e,tr,jr)}function Wr(e){return kt.call(e,Dn,jr)}const pe=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Fn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Dt(e){switch(e.nodeType){case an:{const{attributes:n}=e,o=Ze.call(e);let a="<"+Vr.call(o);for(let d=0,m;m=n[d];d++)a+=" "+m.name+'="'+$n(m.value)+'"';return a+=">",pe.has(o)?a:a+er(e)+"</"+Vr.call(o)+">"}case vr:{const{data:n,parentNode:o}=e;return o instanceof Element&&Fn.has(Ze.call(o))?n:Wr(n)}case qt:return`<!CDATA[[${e.data}]]>`;case br:return`<?${e.target} ${e.data}?>`;case wt:return`<!--${e.data}-->`;default:return""}}function rr(e){switch(e.nodeType){case an:{const n=ot(e);let o="";for(let a=0,d=n.length;a<d;a+=1){const m=n[a];m.nodeType!==wt&&(o+=rr(m))}return o}default:return e.nodeValue}}const je=new WeakMap;function gt(){throw new TypeError("Illegal constructor")}gt.prototype=P(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:gt},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return je.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(e,n){H.call(je.get(this),e,n)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return ke.call(je.get(this),(e,n)=>[n,e])}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return ke.call(je.get(this),(e,n)=>n)}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return je.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let e=0;return{next:()=>{const n=je.get(this);return e<n.length?{value:n[e++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get(){return"NodeList"}},toString:{writable:!0,configurable:!0,value(){return"[object NodeList]"}}}),Q(gt,NodeList);function We(e){const n=P(gt.prototype);return je.set(n,e),H.call(e,(o,a)=>{N(n,a,{value:o,enumerable:!0,configurable:!0})}),n}function Kr(e){var n;const o=[];let a=e.getRootNode();for(;!y(a);)o.push(a),a=(n=a.host)===null||n===void 0?void 0:n.getRootNode();return o}const Hn=(e,n)=>{let o;for(;!y(o=e.host);){const a=o.getRootNode();if(a===n)return o;e=a}};function Ke(e,n,o,a){const d=ft.call(n,o,a),m=[],R=Kr(e);if(!w(d))for(let I=0;I<d.length;I++){const $=d[I];if(it($))continue;const z=$.getRootNode();if(B.call(R,z)!==-1){K.call(m,$);continue}const me=Hn(z,R[0]);!y(me)&&B.call(d,me)===-1&&B.call(m,me)===-1&&K.call(m,me)}return m}const $t=new WeakMap;function D(){throw new TypeError("Illegal constructor")}D.prototype=P(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:D},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return $t.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(e){if(e==="")return null;const n=$t.get(this);for(let o=0,a=n.length;o<a;o++){const d=n[a];if(e===Qe.call(d,"id")||e===Qe.call(d,"name"))return d}return null}},[Symbol.toStringTag]:{configurable:!0,get(){return"HTMLCollection"}},toString:{writable:!0,configurable:!0,value(){return"[object HTMLCollection]"}}}),Q(D,HTMLCollection);function Ee(e){const n=P(D.prototype);return $t.set(n,e),H.call(e,(o,a)=>{N(n,a,{value:o,enumerable:!0,configurable:!0})}),n}function Pe(e){return it(e)||F(e)}function Xr(e,n){const o=te(e);if(n===o)return Oe(o);if(n instanceof Element){if(le(e)===le(n))return n;if(!w(o)&&we(n)){const a=te(n);if(!w(a)&&Re(o,a))return a}}return null}function Un(){return v(this).length>0}function xn(){return v(this)[0]||null}function Bn(){const e=v(this);return e[e.length-1]||null}function nr(){return rr(this)}function qn(e){Vt.call(this,e)}function Gn(){const e=ge.call(this);return w(e)?e:Xr(this,e)}function u(){const e=ge.call(this);if(w(e))return null;const n=Xr(this,e);return n instanceof Element?n:null}function t(e){return this===e?0:this.getRootNode()===e?10:M(this)!==M(e)?35:he.call(this,e)}function r(e){return e==null||M(this)!==M(e)?!1:(he.call(this,e)&He)!=0}function i(e){const n=wr.call(this,!1);if(!e)return n;const o=v(this);for(let a=0,d=o.length;a<d;a+=1)n.appendChild(o[a].cloneNode(!0));return n}function s(){if(F(this)){const e=te(this),n=w(e)?[]:Ie(e,ot(this));return We(n)}return J.call(this)}const l=U.prototype.getRootNode,c=y(l)?function(){let e=this,n;for(;!w(n=ge.call(e));)e=n;return e}:l;function f(e){const n=te(e);return w(n)?c.call(e):Oe(n)}function g(e){const n=y(e)?!1:!!e.composed;return De(n)?c.call(this,e):f(this)}C(U.prototype,{firstChild:{get(){return Pe(this)?xn.call(this):hn.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return Pe(this)?Bn.call(this):fn.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return Z(this)||F(this)?nr.call(this):pn.call(this)},set:qn,enumerable:!0,configurable:!0},parentNode:{get(){if(Z(this))return Gn.call(this);const e=ge.call(this);return!w(e)&&it(e)?te(e):e},enumerable:!0,configurable:!0},parentElement:{get(){if(Z(this))return u.call(this);const e=Se.call(this);return!w(e)&&it(e)?te(e):e},enumerable:!0,configurable:!0},childNodes:{get(){return Pe(this)?s.call(this):J.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return Pe(this)?Un.call(this):dn.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(e){return ae(this)?he.call(this,e):t.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value(e){return this===e?!0:e==null?!1:Z(this)||F(this)?r.call(this,e):Tr.call(this,e)},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(e){return Z(this)||F(this)?i.call(this,e):wr.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:g,enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return jt.call(this)}}});let p=!1;function E(){return!p}const v=function(e){return e.childNodes};S.call(HTMLElement.prototype,"contains")&&N(HTMLElement.prototype,"contains",_(U.prototype,"contains")),S.call(HTMLElement.prototype,"parentElement")&&N(HTMLElement.prototype,"parentElement",_(U.prototype,"parentElement"));const A=new WeakMap,O=new WeakMap;function X(e){return be(e)||hr(e)&&!w(e)&&be(e.handleEvent)}function ye(e,n,o){if(n===o)return!0;let a=O.get(e);return y(a)&&(a=e.composedPath(),O.set(e,a)),a.includes(o)}function Xe(e){if(!X(e))return e;let n=A.get(e);return y(n)&&(n=function(o){const a=G.call(o),d=jn(o);if(!!ye(o,d,a))return be(e)?e.call(this,o):e.handleEvent&&e.handleEvent(o)},A.set(e,n)),n}const ir=new WeakMap,fi=new WeakMap;function Vn(e){let n=fi.get(e);return y(n)&&(n=P(null),fi.set(e,n)),n}function jn(e){var n;return(n=zr.get(e))!==null&&n!==void 0?n:Ce.call(e)}const pi=new WeakMap;function mi(e){if(!be(e))throw new TypeError;let n=pi.get(e);return y(n)&&(n=function(o){let a=G.call(o);It(a)||(a=Oe(a));const d=jn(o);ye(o,d,a)&&e.call(a,o)},n.placement=1,pi.set(e,n)),n}const gi=new WeakMap;function yi(e){if(!be(e))throw new TypeError;let n=gi.get(e);return y(n)&&(n=function(o){const a=G.call(o),d=jn(o);ye(o,d,a)&&e.call(a,o)},n.placement=0,gi.set(e,n)),n}function _i(e){let n=!1,o=!1;const{type:a,stopImmediatePropagation:d,stopPropagation:m}=e,R=G.call(e),$=Vn(R)[a];N(e,"stopImmediatePropagation",{value(){n=!0,d.call(e)},writable:!0,enumerable:!0,configurable:!0}),N(e,"stopPropagation",{value(){o=!0,m.call(e)},writable:!0,enumerable:!0,configurable:!0});const z=L.call($);function me(cs){H.call(z,ri=>{$e(n)&&ri.placement===cs&&B.call($,ri)!==-1&&ri.call(void 0,e)})}ir.set(e,1),me(1),$e(n)&&$e(o)&&(ir.set(e,0),me(0)),ir.set(e,2)}function vi(e,n,o){const a=Vn(e);let d=a[n];y(d)&&(d=a[n]=[]),B.call(d,o)===-1&&(d.length===0&&fe.call(e,n,_i),K.call(d,o))}function bi(e,n,o){const a=Vn(e);let d,m;!y(m=a[n])&&(d=B.call(m,o))!==-1&&(Ye.call(m,d,1),m.length===0&&nt.call(e,n,_i))}function Qi(e,n,o){if(be(n)){const a=yi(n);vi(this,e,a)}}function Ji(e,n,o){if(be(n)){const a=yi(n);bi(this,e,a)}}function Zi(e,n,o,a){if(be(o)){const d=x(e),m=mi(o);vi(d,n,m)}}function eo(e,n,o,a){if(be(o)){const d=x(e),m=mi(o);bi(d,n,m)}}const yt=new WeakMap,{createDocumentFragment:to}=document;function ro(e){return yt.has(e)}function or(e){const n=yt.get(e);if(y(n))throw new TypeError;return n}N(U.prototype,lt,{set(e){y(e)||(this[pr]=e,Mn(this,e.nodeKey))},get(){return this[pr]},configurable:!0,enumerable:!0}),N(Fe,rn,{value:Cn}),y(Fe[gr])&&N(Fe,gr,{value:zt,configurable:!0}),y(Fe[yr])&&N(Fe,yr,{value:tt,configurable:!0});function _t(e){return e[lt]}function wi(e,n){e[lt]=n}function sr(e){return or(e).delegatesFocus}function x(e){return or(e).host}function Oe(e){return or(e).shadowRoot}function F(e){const n=yt.get(e);return!y(n)&&e===n.host}function Wn(e){const n=yt.get(e);return!y(n)&&e===n.shadowRoot}let no=0;function io(e,n){if(yt.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");const{mode:o,delegatesFocus:a}=n,d=ee(e),m=to.call(d),R={mode:o,delegatesFocus:!!a,host:e,shadowRoot:m};yt.set(m,R),yt.set(e,R);const I=()=>m,$=I.nodeKey=no++;return kn(e,$),wi(m,I),Q(m,Ft.prototype),m}const Ei={constructor:{writable:!0,configurable:!0,value:Ft},toString:{writable:!0,configurable:!0,value(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},oo={activeElement:{enumerable:!0,configurable:!0,get(){const e=x(this),n=ee(e),o=Ge.call(n);if(w(o))return o;if((he.call(e,o)&He)==0)return null;let a=o;for(;!Re(e,a);)a=Se.call(a);return we(a)?null:a}},delegatesFocus:{configurable:!0,get(){return or(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,n){const o=x(this),a=ee(o);return Ti(this,a,e,n)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,n){const o=x(this),a=ee(o);return Ke(this,a,e,n)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return x(this)}},mode:{configurable:!0,get(){return or(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},zr=new WeakMap;Y(Ei,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(e,n){return un.call(x(this),e,n),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return cn.call(x(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return ln.call(x(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(e,n){return Er.call(x(this),e,n),n}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,n,o){Zi(this,e,n)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(e){return zr.set(e,this),Jt.apply(x(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,n,o){eo(this,e,n)}},baseURI:{enumerable:!0,configurable:!0,get(){return x(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return We(Br(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value(e){const n=x(this);return this===e?0:this.contains(e)?20:he.call(n,e)&He?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(e){if(this===e)return!0;const n=x(this);return(he.call(n,e)&He)!=0&&Re(n,e)}},firstChild:{enumerable:!0,configurable:!0,get(){return v(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const e=v(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return v(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return jt.call(x(this))}},nextSibling:{enumerable:!0,configurable:!0,get(){return null}},previousSibling:{enumerable:!0,configurable:!0,get(){return null}},nodeName:{enumerable:!0,configurable:!0,get(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get(){return x(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get(){return null}},parentNode:{enumerable:!0,configurable:!0,get(){return null}},textContent:{enumerable:!0,configurable:!0,get(){const e=v(this);let n="";for(let o=0,a=e.length;o<a;o+=1){const d=e[o];d.nodeType!==wt&&(n+=rr(d))}return n},set(e){const n=x(this);Vt.call(n,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(e){return!y(e)&&De(e.composed)?x(this).getRootNode(e):this}}},{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return Ee(W.call(Br(this),e=>e instanceof Element))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:e}=this;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value(e){return Lt(this,e)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(e){return We(Gr(this,e))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const e=v(this);let n="";for(let o=0,a=e.length;o<a;o+=1)n+=Dt(e[o]);return n},set(e){const n=x(this);Kt.call(n,e)}}},oo);function Ft(){throw new TypeError("Illegal constructor")}Ft.prototype=P(DocumentFragment.prototype,Ei),N(Ft,Symbol.hasInstance,{value:function(e){return hr(e)&&!w(e)&&(It(e)||oe(e)===Ft.prototype)}});function ps(e){const n=Oe(e);let o=n.$$placeholder$$;if(!y(o))return o;const a=ee(e);return o=n.$$placeholder$$=Mr.call(a,""),C(o,{childNodes:{get(){return n.childNodes},enumerable:!0,configurable:!0},tagName:{get(){return`#shadow-root (${n.mode})`},enumerable:!0,configurable:!0}}),o}function Ht(e,n){const o=[];let a;if(e instanceof Window)a=e;else if(e instanceof U)a=e.getRootNode();else return o;let d=e;for(;!w(d);)if(o.push(d),d instanceof Element||d instanceof Text){const R=d.assignedSlot;w(R)?d=d.parentNode:d=R}else(Wn(d)||It(d))&&(n||d!==a)?d=d.host:d instanceof U?d=d.parentNode:d=null;let m;return e instanceof Window?m=e.document:m=ee(e),o[o.length-1]===m&&o.push(window),o}/** |
| | | @license |
| | | Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
| | | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
| | | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| | | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
| | | Code distributed by Google as part of the polymer project is also |
| | | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
| | | */function ar(e,n){if(w(e))return null;const o=Ht(e,!0),a=n;for(let d=0,m,R,I,$;d<a.length;d++)if(m=a[d],I=m instanceof Window?m:m.getRootNode(),I!==R&&($=o.indexOf(I),R=I),!Wn(I)||!y($)&&$>-1)return m;return null}function Ti(e,n,o,a){const d=Ae.call(n,o,a);return w(d)?d:ar(e,Ht(d,!0))}function so(e,n){return Ti(this,this,e,n)}Document.prototype.elementFromPoint=so;function ao(e,n){return Ke(this,this,e,n)}Document.prototype.elementsFromPoint=ao,N(Document.prototype,"activeElement",{get(){let e=Ge.call(this);if(w(e))return e;for(;!y(M(e));)if(e=Se.call(e),w(e))return null;return e.tagName==="HTML"&&(e=this.body),e},enumerable:!0,configurable:!0}),N(Document.prototype,"getElementById",{value(){const e=zt.apply(this,L.call(arguments));return w(e)?null:y(M(e))||ae(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"querySelector",{value(){const e=k(tt.apply(this,L.call(arguments))),n=Me.call(e,o=>y(M(o))||ae(o));return y(n)?null:n},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"querySelectorAll",{value(){const e=k(tt.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return We(n)},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"getElementsByClassName",{value(){const e=k(kr.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return Ee(n)},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"getElementsByTagName",{value(){const e=k(Yt.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return Ee(n)},writable:!0,enumerable:!0,configurable:!0}),N(Document.prototype,"getElementsByTagNameNS",{value(){const e=k(Sn.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return Ee(n)},writable:!0,enumerable:!0,configurable:!0}),N(_(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const e=k(pt.apply(this,L.call(arguments))),n=W.call(e,o=>y(M(o))||ae(o));return We(n)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:Ft,configurable:!0,writable:!0});const Si=Object.getOwnPropertyDescriptor(Event.prototype,"composed");function lo(){if(!Si)return!1;let e=new Event("click");const n=document.createElement("button");return n.addEventListener("click",o=>e=o),n.click(),!Si.get.call(e)}const uo=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function Ni(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get(){return!0}})}function co(){HTMLElement.prototype.click=function(){fe.call(this,"click",Ni);try{uo.value.call(this)}finally{nt.call(this,"click",Ni)}}}lo()&&co();function ho(){return new Event("test",{composed:!0}).composed!==!0}function fo(){const e=Y(P(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),n=Event;function o(a,d){const m=new n(a,d),R=!!(d&&d.composed);return Object.defineProperties(m,{composed:{get(){return R},configurable:!0,enumerable:!0}}),m}o.prototype=n.prototype,o.AT_TARGET=n.AT_TARGET,o.BUBBLING_PHASE=n.BUBBLING_PHASE,o.CAPTURING_PHASE=n.CAPTURING_PHASE,o.NONE=n.NONE,window.Event=o,Object.defineProperties(Event.prototype,{composed:{get(){const{type:a}=this;return e[a]===1},configurable:!0,enumerable:!0}})}ho()&&fo();const Ci=CustomEvent;function Ai(e,n){const o=new Ci(e,n),a=!!(n&&n.composed);return Object.defineProperties(o,{composed:{get(){return a},configurable:!0,enumerable:!0}}),o}if(Ai.prototype=Ci.prototype,window.CustomEvent=Ai,typeof ClipboardEvent!="undefined"){const e=Y(P(null),{copy:1,cut:1,paste:1});C(ClipboardEvent.prototype,{composed:{get(){const{type:n}=this;return e[n]===1},configurable:!0,enumerable:!0}})}function po(){const e=typeof HTMLIFrameElement!="undefined",n=typeof Proxy!="undefined"&&De(Proxy.isCompat);return e&&n}function mo(){const e=_(HTMLIFrameElement.prototype,"contentWindow"),{get:n}=e;e.get=function(){const o=n.call(this);return w(o)||y(M(this))?o:go(o)},N(HTMLIFrameElement.prototype,"contentWindow",e)}function go(e){return{addEventListener(){return e.addEventListener.apply(e,arguments)},blur(){return e.blur.apply(e,arguments)},close(){return e.close.apply(e,arguments)},focus(){return e.focus.apply(e,arguments)},postMessage(){return e.postMessage.apply(e,arguments)},removeEventListener(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(n){e.location=n},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}}}po()&&mo();const Kn=MutationObserver,{disconnect:yo,observe:_o,takeRecords:vo}=Kn.prototype,Ri="$$lwcObserverCallbackWrapper$$",Xn="$$lwcNodeObservers$$",Yr=new WeakMap;function Qr(e){return e[Xn]}function bo(e,n){e[Xn]=n}function Ii(e){const{addedNodes:n,removedNodes:o,target:a,type:d}=e,m=P(MutationRecord.prototype);return C(m,{addedNodes:{get(){return n},enumerable:!0,configurable:!0},removedNodes:{get(){return o},enumerable:!0,configurable:!0},type:{get(){return d},enumerable:!0,configurable:!0},target:{get(){return a.shadowRoot},enumerable:!0,configurable:!0}}),m}function zn(e,n){let o=n;for(;!w(o);){const a=Qr(o);if(!y(a)&&(a[0]===e||B.call(a,e)!==-1))return!0;o=o.parentNode}return!1}function Pi(e,n){return Ut.call(e,(o,a)=>{const{target:d,addedNodes:m,removedNodes:R,type:I}=a;if(I==="childList"&&!y(Ve(d)))if(m.length>0){const $=m[0];if(zn(n,$)){const z=Qr(d);z&&(z[0]===n||B.call(z,n)!==-1)?K.call(o,a):K.call(o,Ii(a))}}else{const $=d.shadowRoot,z=R[0];if(le(d)===le(z)&&zn(n,d))K.call(o,a);else if($){const me=Qr($);me&&(me[0]===n||B.call(me,n)!==-1)&&K.call(o,Ii(a))}}else zn(n,d)&&K.call(o,a);return o},[])}function wo(e){let n=e[Ri];return y(n)&&(n=e[Ri]=(o,a)=>{const d=Pi(o,a);d.length!==0&&e.call(a,d,a)}),n}function lr(e){const n=wo(e);return new Kn(n)}function Eo(){yo.call(this);const e=Yr.get(this);y(e)||(H.call(e,n=>{const o=n[Xn];if(!y(o)){const a=B.call(o,this);a!==-1&&Ye.call(o,a,1)}}),e.length=0)}function To(e,n){let o=Qr(e);if(y(o)&&(o=[],bo(e,o)),B.call(o,this)===-1&&K.call(o,this),Wn(e)&&(e=e.host),Yr.has(this)){const a=Yr.get(this);B.call(a,e)===-1&&K.call(a,e)}else Yr.set(this,[e]);return _o.call(this,e,n)}function So(){return Pi(vo.call(this),this)}lr.prototype=Kn.prototype,lr.prototype.disconnect=Eo,lr.prototype.observe=To,lr.prototype.takeRecords=So,N(window,"MutationObserver",{value:lr,configurable:!0,writable:!0});function No(e,n,o){if(F(this))return Qi.apply(this,arguments);if(arguments.length<2){const d=L.call(arguments);return d.length>1&&(d[1]=Xe(d[1])),fe.apply(this,d)}const a=Xe(n);return fe.call(this,e,a,o)}function Co(e,n,o){if(F(this))return Ji.apply(this,arguments);const a=L.call(arguments);arguments.length>1&&(a[1]=Xe(a[1])),nt.apply(this,a),nt.apply(this,arguments)}C($r,{addEventListener:{value:No,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Co,enumerable:!0,writable:!0,configurable:!0}});function Ao(){return typeof EventTarget=="undefined"}function Ro(e,n,o){if(arguments.length>1){const a=L.call(arguments);return a[1]=Xe(a[1]),At.apply(this,a)}return At.apply(this,arguments)}function Io(e,n,o){if(arguments.length>1){const a=L.call(arguments);a[1]=Xe(a[1]),mt.apply(this,a)}mt.apply(this,arguments)}function Po(){C(Window.prototype,{addEventListener:{value:Ro,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Io,enumerable:!0,writable:!0,configurable:!0}})}Ao()&&Po();function Oo(){const e=G.call(this);return w(e)?null:ir.get(this)===1?Oe(e):e}function Oi(){const e=Ce.call(this);if(!(e instanceof U))return e;const n=ee(e),o=Ht(e,this.composed),a=G.call(this);if(a instanceof U){if(a===n||a===n.body)return y(M(e))?e:ar(n,o)}else return w(a)&&y(M(e))?e:ar(n,o);let d=a,m=o;return F(a)&&ir.get(this)===1&&(d=Oe(a)),F(e)&&zr.has(this)&&(m=Ht(Oe(e),this.composed)),ar(d,m)}function Li(){const e=Ce.call(this);if(!(e instanceof U))return[];const n=Boolean(e.shadowRoot),o=ro(e);if(n&&!o)return Ct.call(this);const a=G.call(this);if(w(a))return[];let d=e;return F(e)&&zr.has(this)&&(d=Oe(e)),Ht(d,this.composed)}C(Event.prototype,{target:{get:Oi,enumerable:!0,configurable:!0},currentTarget:{get:Oo,enumerable:!0,configurable:!0},composedPath:{value:Li,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Oi,enumerable:!0,configurable:!0},path:{get:Li,enumerable:!0,configurable:!0}});function Mi(e){const n=_(e.prototype,"relatedTarget").get;N(e.prototype,"relatedTarget",{get(){const o=n.call(this);if(w(o))return null;if(!(o instanceof U)||!Z(o))return o;let a=G.call(this);return w(a)&&(a=ee(o)),ar(a,Ht(o,!0))},enumerable:!0,configurable:!0})}Mi(FocusEvent),Mi(MouseEvent);const Lo=S.call(Text.prototype,"assignedSlot")?_(Text.prototype,"assignedSlot").get:()=>null;let Yn;const Mo={childList:!0},ki=new WeakMap;function ko(){return new Rt(e=>{const n=[];H.call(e,o=>{const{target:a}=o;B.call(n,a)===-1&&(K.call(n,a),Jt.call(a,new CustomEvent("slotchange")))})})}function Qn(e){const n=k(J.call(e));return Ut.call(n,(o,a)=>(a instanceof Element&&we(a)?K.apply(o,Qn(a)):K.call(o,a),o),[])}function Di(){const e=ge.call(this);if(e instanceof Element){const n=Or.call(e);if(It(n))return this instanceof Text?Lo.call(this):Ne.call(this)}return!w(e)&&we(e)&&M(e)!==M(this)?e:null}C(HTMLSlotElement.prototype,{addEventListener:{value(e,n,o){HTMLElement.prototype.addEventListener.call(this,e,n,o),e==="slotchange"&&!ki.get(this)&&(ki.set(this,!0),Yn||(Yn=ko()),Qt.call(Yn,this,Mo))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(e){if(Z(this)){const o=!y(e)&&De(e.flatten)?Qn(this):Mt(this);return W.call(o,a=>a instanceof Element)}else return Nt.apply(this,L.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(e){return Z(this)?!y(e)&&De(e.flatten)?Qn(this):Mt(this):qe.apply(this,L.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const e=Qe.call(this,"name");return w(e)?"":e},set(e){Nr.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get(){if(Z(this)){const e=te(this),n=w(e)?[]:Ie(e,ot(this));return We(n)}return J.call(this)},enumerable:!0,configurable:!0}}),C(Text.prototype,{assignedSlot:{get:Di,enumerable:!0,configurable:!0}});function Jn(e,n){let o;const a=M(e);if(y(a))e instanceof HTMLBodyElement?o=W.call(n,d=>y(M(d))||ae(e)):o=L.call(n);else if(F(e)){const d=te(e);w(d)?o=[]:Ve(e)?o=qr(e,n):o=Ie(d,n)}else o=W.call(n,d=>le(d)===a);return o}function Do(){const e=v(this);let n="";for(let o=0,a=e.length;o<a;o+=1)n+=Dt(e[o]);return n}function $o(){return Dt(this)}function Fo(e){return e[de]?io(this,e):yn.call(this,e)}function Ho(){if(F(this)){const e=Oe(this);if(e.mode==="open")return e}return Or.call(this)}function Uo(){const e=te(this),n=w(e)?[]:Ie(e,ot(this));return Ee(W.call(n,o=>o instanceof Element))}function xo(){return this.children.length}function Bo(){return this.children[0]||null}function qo(){const{children:e}=this;return e.item(e.length-1)||null}C(Element.prototype,{innerHTML:{get(){return Z(this)||F(this)?Do.call(this):wn.call(this)},set(e){Kt.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get(){return Z(this)||F(this)?$o.call(this):En.call(this)},set(e){Tn.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:Fo,enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:Ho,enumerable:!0,configurable:!0},children:{get(){return Pe(this)?Uo.call(this):Ir.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return Pe(this)?xo.call(this):_n.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return Pe(this)?Bo.call(this):vn.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return Pe(this)?qo.call(this):bn.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Di,enumerable:!0,configurable:!0}}),S.call(HTMLElement.prototype,"innerHTML")&&N(HTMLElement.prototype,"innerHTML",_(Element.prototype,"innerHTML")),S.call(HTMLElement.prototype,"outerHTML")&&N(HTMLElement.prototype,"outerHTML",_(Element.prototype,"outerHTML")),S.call(HTMLElement.prototype,"children")&&N(HTMLElement.prototype,"children",_(Element.prototype,"children"));function Go(){const e=k(xe.apply(this,L.call(arguments)));if(F(this)){const n=te(this);return y(Ve(this))?w(n)?null:Ot(n,e):re(this,e)}else if(Z(this)){const n=M(this);if(y(n))return e.length===0?null:e[0];{const o=Me.call(e,a=>le(a)===n);return y(o)?null:o}}else{if(!(this instanceof HTMLBodyElement)){const o=e[0];return y(o)?null:o}const n=Me.call(e,o=>y(M(o))||ae(this));return y(n)?null:n}}function Vo(e,n){let o;if(F(e)){const a=te(e);y(Ve(e))?w(a)?o=[]:o=Ie(a,n):o=qr(e,n)}else if(Z(e)){const a=M(e);y(a)?o=L.call(n):o=W.call(n,d=>le(d)===a)}else e instanceof HTMLBodyElement?o=W.call(n,a=>y(M(a))||ae(e)):o=L.call(n);return o}C(Element.prototype,{querySelector:{value:Go,writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const e=k(xe.apply(this,L.call(arguments))),n=Vo(this,e);return We(n)},writable:!0,enumerable:!0,configurable:!0}}),C(Element.prototype,{getElementsByClassName:{value(){const e=k(Pr.apply(this,L.call(arguments)));return Ee(Jn(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const e=k(Et.apply(this,L.call(arguments)));return Ee(Jn(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const e=k(Sr.apply(this,L.call(arguments)));return Ee(Jn(this,e))},writable:!0,enumerable:!0,configurable:!0}}),S.call(HTMLElement.prototype,"getElementsByClassName")&&N(HTMLElement.prototype,"getElementsByClassName",_(Element.prototype,"getElementsByClassName"));const ur=` |
| | | [contenteditable], |
| | | [tabindex], |
| | | a[href], |
| | | area[href], |
| | | audio[controls], |
| | | button, |
| | | iframe, |
| | | input, |
| | | select, |
| | | textarea, |
| | | video[controls] |
| | | `,jo=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function $i(e){return e.filter(n=>Ue.call(n,"tabindex")?Qe.call(n,"tabindex")==="0":jo.has(Ze.call(n))?!Ue.call(n,"disabled"):!0)}const Fi=new WeakMap;function Wo(e){const{width:n,height:o}=mn.call(e),a=n>0||o>0,d=e.tagName==="AREA";return(a||d)&&getComputedStyle(e).visibility!=="hidden"}function Ko(e){return F(e)&&sr(e)?!1:et.call(e,ur)&&Wo(e)}function Xo(){const e=this.getRootNode();if(e===this){const d=ut.call(this,ur);w(d)||d.focus.apply(d,arguments);return}if(e.activeElement===this)return;const o=k(xe.call(this,ur));let a=!1;for(;!a&&o.length!==0;){const d=o.shift();d.focus.apply(d,arguments),a=d.getRootNode().activeElement===d}}function Hi(e){const n=ee(e),o=$i(k(tt.call(n,ur))),a=$i(k(xe.call(e,ur))),d=a[0],m=a[a.length-1],R=B.call(o,e),I=R>-1?R:B.call(o,d),$=a.length===0?I+1:B.call(o,m)+1,z=L.call(o,0,I),me=L.call(o,$);return{prev:z,inner:a,next:me}}function zo(e){const n=ee(e),o=Ge.call(n);return w(o)||(he.call(e,o)&He)!=0?o:null}function Ui(e,n){const o=he.call(e,n);return o&He?0:o&on?1:o&sn?2:-1}function Jr(e){e.preventDefault(),e.stopPropagation()}function Zn(e,n){At.call(e,"focusin",Jr,!0),At.call(e,"focusout",Jr,!0),n(),mt.call(e,"focusin",Jr,!0),mt.call(e,"focusout",Jr,!0)}function Zr(e,n,o){const a=Dr(o),d=Qo(e,o);w(d)?Zn(a,()=>{n.blur()}):Zn(a,()=>{d.focus()})}let cr=!1;function xi(){cr=!0}function ei(){cr=!1}function Yo(){return!cr}function Bi(e){if(cr)return;const n=G.call(e),o=Ce.call(e);if(n!==o)return;const a=ht.call(e);if(w(a))return;const d=Hi(n);if(Ui(n,a)===1){const R=Gi.bind(null,n.getRootNode()),I=Me.call(d.inner,R);if(y(I))Zr(d.next,o,a);else{const $=Dr(I);Zn($,()=>{I.focus()})}}else n===o&&Zr(xt.call(d.prev),o,a)}function qi(e){if(cr)return;const n=ht.call(e);if(w(n))return;const o=G.call(e),a=Hi(o);if(B.call(a.inner,n)!==-1)return;const d=Ce.call(e),m=Ui(o,n);m===1&&Zr(a.next,d,n),m===2&&Zr(xt.call(a.prev),d,n)}function Gi(e,n){if(!Ko(n))return!1;const o=ee(n);let a=n.getRootNode();for(;a!==o&&a!==e;){const m=a.host;if(Qe.call(m,"tabindex")==="-1")return!1;a=m&&m.getRootNode()}return!0}function Qo(e,n){const o=e.length;if(o>0)for(let a=0;a<o;a+=1){const d=e[a];if(Gi(n.getRootNode(),d))return d}return null}function Jo(e){ji(e),Wi(e),fe.call(e,"focusin",Bi,!0)}function Vi(e){nt.call(e,"focusin",Bi,!0)}function ji(e){const n=ee(e);Fi.get(n)||(Fi.set(n,!0),fe.call(n,"mousedown",xi,!0),fe.call(n,"mouseup",()=>{setTimeout(ei)},!0),fe.call(n,"dragstart",ei,!0))}function Zo(e){ji(e),Vi(e),fe.call(e,"focusin",qi,!0)}function Wi(e){nt.call(e,"focusin",qi,!0)}const{blur:Ki,focus:es}=HTMLElement.prototype;function ts(){return sr(this)&&$e(Ue.call(this,"tabindex"))?0:Tt.call(this)}function rs(e){const n=sr(this),o=Tt.call(this),a=Ue.call(this,"tabindex");St.call(this,e);const d=Tt.call(this),m=Ue.call(this,"tabindex"),R=o!==d;a&&(R||$e(m))&&(o===-1&&Wi(this),o===0&&n&&Vi(this)),!$e(m)&&(a&&m&&$e(R)||(d===-1&&Zo(this),d===0&&n&&Jo(this)))}function ns(){if(sr(this)){const e=zo(this);if(!w(e)){e.blur();return}}return Ki.call(this)}function is(){const e=Yo();if(e&&xi(),F(this)&&sr(this)){Xo.call(this);return}es.apply(this,arguments),e&&ei()}C(HTMLElement.prototype,{tabIndex:{get(){return F(this)?ts.call(this):Tt.call(this)},set(e){return F(this)?rs.call(this,e):St.call(this,e)},enumerable:!0,configurable:!0},blur:{value(){if(F(this))return ns.call(this);Ki.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){is.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),Wt!==null&&Cr!==null&&N(HTMLElement.prototype,"innerText",{get(){return Wt.call(this)},set(e){Cr.call(this,e)},enumerable:!0,configurable:!0}),Ar!==null&&Je!==null&&N(HTMLElement.prototype,"outerText",{get(){return Ar.call(this)},set(e){Je.call(this,e)},enumerable:!0,configurable:!0});function os(e){return e[Bt]}function ss(e,n){e[Bt]=n}N(Element.prototype,Bt,{set(e){const n=this[b];!y(n)&&n!==e&&gn.call(this,n),y(e)||Nr.call(this,e,""),this[b]=e},get(){return this[b]},configurable:!0});function Xi(e,n){e[lt]=n;const o=J.call(e);for(let a=0,d=o.length;a<d;a++)Xi(o[a],n)}N(Element.prototype,nn,{set(e){if(e){const n=this[lt];Xi(this,n)}this[mr]=e},get(){return this[mr]},configurable:!0});const zi="$$DomManualKey$$",as=function(){};let en;const Yi={childList:!0};function ti(e,n,o){const a=_t(e);if(a!==n&&(wi(e,n),e instanceof Element)){if(ss(e,o),F(e))return;y(a)&&Qt.call(en,e,Yi);const d=J.call(e);for(let m=0,R=d.length;m<R;m+=1)ti(d[m],n,o)}}function ls(){return new Rt(e=>{H.call(e,n=>{const{target:o,addedNodes:a,removedNodes:d}=n,m=_t(o),R=os(o);for(let I=0,$=d.length;I<$;I+=1){const z=d[I];he.call(o,z)&U.DOCUMENT_POSITION_CONTAINED_BY||ti(z,as,void 0)}for(let I=0,$=a.length;I<$;I+=1){const z=a[I];he.call(o,z)&U.DOCUMENT_POSITION_CONTAINED_BY&&ti(z,m,R)}})})}function us(e){if(y(en)&&(en=ls()),y(_t(e)))throw new Error("Invalid Element");Qt.call(en,e,Yi)}N(Element.prototype,"$domManual$",{set(e){this[zi]=e,De(e)&&us(this)},get(){return this[zi]},configurable:!0})}),LWR.define("@lwrjs/app-service/communities_app/module/amd/v/0_9_0",["lwr/loaderLegacy/v/0_9_0","@lwc/synthetic-shadow/v/2_41_4","webruntime/hook/v/1_66_319-244_0","webruntime/o11yHook/v/1_66_319-244_0","webruntime/dynamicImportResourceHook/v/1_66_319-244_0","lwr/init/v/0_9_0"],function(T,V,ue,ne,ce,Y){"use strict";function P(S){return S&&typeof S=="object"&&"default"in S?S:{default:S}}var C=P(ue),N=P(ne),j=P(ce);C.default(T.services),N.default(T.services),j.default(T.services);const _=globalThis.LWR,{rootComponents:_e,ssrProps:oe}=_;Promise.all(_e.map(async S=>{const ie=Y.toKebabCase(S);return T.load(S,"@lwrjs/app-service/communities_app/module/amd/v/0_9_0").then(({default:st})=>{Y.init([[ie,st]],oe)})})),globalThis.LWR=Object.freeze({define:globalThis.LWR.define})}); |
| New file |
| | |
| | | LWR.define("lwc/v/2_41_4",["exports"],function(N){"use strict";function ti(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)}function ni(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)}function oi(e,t){if(e)throw new Error(`Assert Violation: ${t}`)}function ri(e){throw new Error(e)}var P=Object.freeze({__proto__:null,fail:ri,invariant:ti,isFalse:oi,isTrue:ni});const{assign:x,create:b,defineProperties:Z,defineProperty:_,freeze:we,getOwnPropertyDescriptor:Y,getOwnPropertyNames:_t,getPrototypeOf:ve,hasOwnProperty:ze,isFrozen:ii,keys:F,seal:qe,setPrototypeOf:Qe}=Object,{isArray:G}=Array,{concat:Ql,copyWithin:si,fill:ai,filter:Ot,find:Xl,indexOf:kt,join:be,map:qn,pop:Qn,push:M,reduce:Jl,reverse:ci,shift:li,slice:Xn,some:Zl,sort:ui,splice:At,unshift:$t,forEach:Ne}=Array.prototype,{fromCharCode:Jn}=String,{charCodeAt:ue,replace:Rt,split:di,slice:Zn,toLowerCase:Vt}=String.prototype;function c(e){return e===void 0}function g(e){return e===null}function de(e){return e===!0}function Q(e){return e===!1}function fi(e){return typeof e=="boolean"}function D(e){return typeof e=="function"}function Xe(e){return typeof e=="object"}function Je(e){return typeof e=="string"}function eu(e){return typeof e=="number"}function k(){}const pi={}.toString;function ee(e){return e&&e.toString?G(e)?be.call(qn.call(e,ee),","):e.toString():typeof e=="object"?pi.call(e):e+""}function K(e,t){do{const n=Y(e,t);if(!c(n))return n;e=ve(e)}while(e!==null)}const hi=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:mi,AriaPropNameToAttrNameMap:Ze}=(()=>{const e=b(null),t=b(null);return Ne.call(hi,n=>{const o=Vt.call(Rt.call(n,/^aria/,()=>"aria-"));e[o]=n,t[n]=o}),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),eo=new Set(["aria-activedescendant","aria-controls","aria-describedby","aria-details","aria-errormessage","aria-flowto","aria-labelledby","aria-owns","for"]),X=typeof globalThis=="object"?globalThis:window,gi="$isNativeShadowRootDefined$",Lt="$shadowResolver$",yi="$shadowStaticNode$",to="$shadowToken$",Ei="$$lwc-synthetic-mode",no="$scoped$",oo="$nativeGetElementById$",ro="$nativeQuerySelectorAll$",io="http://www.w3.org/XML/1998/namespace",wi="http://www.w3.org/2000/svg",so="http://www.w3.org/1999/xlink",vi=/-([a-z])/g,{NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING:bi,NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING:Ni}=(()=>{const e=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),t=new Map;return e.forEach((n,o)=>t.set(n,o)),{NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING:t,NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING:e}})(),ao=new Map,co=new Map;function lo(e){const t=Ze[e];if(!c(t))return t;const n=Ni.get(e);if(!c(n))return n;const o=ao.get(e);if(!c(o))return o;let r="";for(let i=0,s=e.length;i<s;i++){const a=ue.call(e,i);a>=65&&a<=90?r+="-"+Jn(a+32):r+=Jn(a)}return ao.set(e,r),r}function Ci(e){const t=mi[e];if(!c(t))return t;const n=bi.get(e);if(!c(n))return n;const o=co.get(e);if(!c(o))return o;const r=Rt.call(e,vi,i=>i[1].toUpperCase());return co.set(e,r),r}const Ti={'"':""","'":"'","<":"<",">":">","&":"&"};function Si(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,o=>Ti[o])}const It="2.41.4",Mi=/\/\*LWC compiler v([\d.]+)\*\/\s*}/,uo={DUMMY_TEST_FLAG:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_WIRE_SYNC_EMIT:null,DISABLE_LIGHT_DOM_UNSCOPED_CSS:null,ENABLE_FROZEN_TEMPLATE:null,DISABLE_ARIA_REFLECTION_POLYFILL:null};X.lwcRuntimeFlags||Object.defineProperty(X,"lwcRuntimeFlags",{value:b(null)});const fo=X.lwcRuntimeFlags;function Di(e,t){if(!fi(t)){const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n);return}if(c(uo[e])){const n=F(uo).map(o=>`"${o}"`).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`);return}{const n=fo[e];if(!c(n)){console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);return}_(fo,e,{value:t})}}function _i(e,t){}function Oi(e,t){return c(Y(t,e))}function ki(e){return{get(){return this.hasAttribute(e)?this.getAttribute(e):null},set(t){g(t)?this.removeAttribute(e):this.setAttribute(e,t)},configurable:!0,enumerable:!0}}function Ai(e,t){const n=Ze[e],o=ki(n);_(t,e,o)}function po(e=Element.prototype){const t=F(Ze);for(let n=0,o=t.length;n<o;n+=1){const r=t[n];Oi(r,e)&&Ai(r,e)}}po();const Pt=[];let Ft=k,et=!1;const $i={attachDispatcher(e){et=!0,Ft=e;for(const t of Pt)try{t()}catch(n){console.error("Could not invoke callback",n)}Pt.length=0},detachDispatcher(){et=!1,Ft=k}};function Bt(e){et?e():Pt.push(e)}function tt(e,t){et&&Ft(e,t)}function te(e){return`<${Vt.call(e.tagName)}>`}function Ri(e){const t=[];let n="";for(;!g(e.owner);)M.call(t,n+te(e)),e=e.owner,n+=" ";return be.call(t,` |
| | | `)}function Vi(e){const t=[];let n=e;for(;!g(n);)M.call(t,te(n)),n=n.owner;return t.reverse().join(` |
| | | `)}function ho(e,t){if(!ii(t)&&c(t.wcStack)){const n=Vi(e);_(t,"wcStack",{get(){return n}})}}const mo=new Set;function Ht(e,t,n,o){let r=`[LWC ${e}]: ${t}`;if(c(n)||(r=`${r} |
| | | ${Ri(n)}`),o){if(mo.has(r))return;mo.add(r)}try{throw new Error(r)}catch(i){console[e](i)}}function B(e,t){Ht("error",e,t,!1)}function tu(e,t){Ht("warn",e,t,!1)}function nu(e,t){Ht("warn",e,t,!0)}const Wt=new WeakMap;function Li(e){let t=Wt.get(e);if(c(t)){const n=b(null);t=n,Wt.set(e,n)}return t}let Ce=null;function go(e,t){const n=Wt.get(e);if(!c(n)){const o=n[t];if(!c(o))for(let r=0,i=o.length;r<i;r+=1)o[r].notify()}}function yo(e,t){if(Ce===null)return;const n=Ce,o=Li(e);let r=o[t];if(c(r))r=[],o[t]=r;else if(r[0]===n)return;kt.call(r,n)===-1&&n.link(r)}class Ii{constructor(t){this.listeners=[],this.callback=t}observe(t){const n=Ce;Ce=this;let o;try{t()}catch(r){o=Object(r)}finally{if(Ce=n,o!==void 0)throw o}}reset(){const{listeners:t}=this,n=t.length;if(n>0){for(let o=0;o<n;o+=1){const r=t[o],i=kt.call(t[o],this);At.call(r,i,1)}t.length=0}}notify(){this.callback.call(void 0,this)}link(t){M.call(t,this),M.call(this.listeners,t)}}function Eo(e,t){go(e.component,t)}function Te(e,t){yo(e.component,t)}function wo(e){return new Ii(e)}let nt=[];const Pi=32,I=qe(b(null)),H=qe([]);function Fi(){const e=nt;nt=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function vo(e){nt.length===0&&Promise.resolve().then(Fi),M.call(nt,e)}function Bi(){function e(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}const Hi=/;(?![^(]*\))/g,Wi=/:(.+)/;function xi(e){const t={},n=e.split(Hi);for(const o of n)if(o){const[r,i]=o.split(Wi);r!==void 0&&i!==void 0&&(t[r.trim()]=i.trim())}return t}function Ui(e,t){const n={};for(const o of F(e))o!==t&&(n[o]=e[o]);return n}function xt(e){const t=[];for(const n of e)G(n)?t.push(...xt(n)):t.push(n);return t}function bo(e,t,n){const o=e.refVNodes;(!(t in o)||o[t].key<n.key)&&(o[t]=n)}function U(){throw new ReferenceError}function Ut(e){const t=e();return(t==null?void 0:t.__esModule)?t.default:t}function jt(e){return D(e)&&ze.call(e,"__circular__")}const No=typeof HTMLElement!="undefined"?HTMLElement:function(){},Co=No.prototype,ji=["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"];function ot(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}const Yt={accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:ot("offsetHeight")},offsetLeft:{readOnly:!0,error:ot("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:ot("offsetTop")},offsetWidth:{readOnly:!0,error:ot("offsetWidth")},role:{attribute:"role"}};let Gt=null,Kt;function Yi(e,t){return e!==Gt||t!==Kt}function Se(e,t){Gt=null,Kt=void 0}function Me(e,t){Gt=e,Kt=t}const De=b(null);Ne.call(F(Ze),e=>{const t=K(Co,e);c(t)||(De[e]=t)}),Ne.call(ji,e=>{const t=K(Co,e);c(t)||(De[e]=t)});function ne(e){return x({configurable:!0,enumerable:!0,writable:!0},e)}function z(e){return x({configurable:!0,enumerable:!0},e)}let _e=!1;function ou(){U(),_e=!0}function ru(){U(),_e=!1}function oe(e,t){return B(`The \`${e}\` ${t} is available only on elements that use the \`lwc:dom="manual"\` directive.`)}function iu(e,t){U();const n=K(e,"outerHTML"),o={outerHTML:z({get(){return n.get.call(this)},set(r){throw new TypeError("Invalid attempt to set outerHTML on Element.")}})};if(!t.isLight&&t.isSynthetic&&!t.isPortal){const{appendChild:r,insertBefore:i,removeChild:s,replaceChild:a}=e,l=K(e,"nodeValue"),u=K(e,"innerHTML"),d=K(e,"textContent");x(o,{appendChild:ne({value(f){return oe("appendChild","method"),r.call(this,f)}}),insertBefore:ne({value(f,E){return _e||oe("insertBefore","method"),i.call(this,f,E)}}),removeChild:ne({value(f){return _e||oe("removeChild","method"),s.call(this,f)}}),replaceChild:ne({value(f,E){return oe("replaceChild","method"),a.call(this,f,E)}}),nodeValue:z({get(){return l.get.call(this)},set(f){_e||oe("nodeValue","property"),l.set.call(this,f)}}),textContent:z({get(){return d.get.call(this)},set(f){oe("textContent","property"),d.set.call(this,f)}}),innerHTML:z({get(){return u.get.call(this)},set(f){return oe("innerHTML","property"),u.set.call(this,f)}})})}Z(e,o)}function Gi(e){U();const t=e.addEventListener,n=K(e,"innerHTML"),o=K(e,"textContent");return{innerHTML:z({get(){return n.get.call(this)},set(r){throw new TypeError("Invalid attempt to set innerHTML on ShadowRoot.")}}),textContent:z({get(){return o.get.call(this)},set(r){throw new TypeError("Invalid attempt to set textContent on ShadowRoot.")}}),addEventListener:ne({value(r,i,s){return c(s)||B("The `addEventListener` method on ShadowRoot does not support any options.",q(this)),t.apply(this,arguments)}})}}function Ki(e){U();const t=e.addEventListener,n=K(e,"innerHTML"),o=K(e,"outerHTML"),r=K(e,"textContent");return{innerHTML:z({get(){return n.get.call(this)},set(i){throw new TypeError("Invalid attempt to set innerHTML on HTMLElement.")}}),outerHTML:z({get(){return o.get.call(this)},set(i){throw new TypeError("Invalid attempt to set outerHTML on HTMLElement.")}}),textContent:z({get(){return r.get.call(this)},set(i){throw new TypeError("Invalid attempt to set textContent on HTMLElement.")}}),addEventListener:ne({value(i,s,a){return c(a)||B("The `addEventListener` method in `LightningElement` does not support any options.",q(this)),t.apply(this,arguments)}})}}function zi(){return U(),{tagName:z({get(){throw new Error("Usage of property `tagName` is disallowed because the component itself does not know which tagName will be used to create the element, therefore writing code that check for that value is error prone.")},configurable:!0,enumerable:!1})}}function qi(e){U();const t=e.dispatchEvent,n={dispatchEvent:ne({value(o){const r=w(this);if(!g(o)&&Xe(o)){const{type:i}=o;/^[a-z][a-z0-9_]*$/.test(i)||B(`Invalid event type "${i}" dispatched in element ${te(r)}. Event name must start with a lowercase letter and followed only lowercase letters, numbers, and underscores`,r)}return t.apply(this,arguments)}})};return Ne.call(_t(Yt),o=>{o in e||(n[o]=z({get(){const{error:r,attribute:i}=Yt[o],s=[];s.push(`Accessing the global HTML property "${o}" is disabled.`),r?s.push(r):i&&s.push(`Instead access it via \`this.getAttribute("${i}")\`.`),B(s.join(` |
| | | `),w(this))},set(){const{readOnly:r}=Yt[o];r&&B(`The global HTML property \`${o}\` is read-only.`,w(this))}}))}),n}function su(e){Z(e,Gi(e))}function au(e){const t=Ki(e),n=ve(e);Qe(e,b(n,t))}function cu(e){Z(e,zi())}function lu(e){Z(e,qi(e))}function Oe(e,t,n){const{cmpFields:o}=e;n!==o[t]&&(o[t]=n,Eo(e,t))}const{isArray:rt}=Array,{prototype:Qi,getPrototypeOf:it,create:To,defineProperty:st,isExtensible:at,getOwnPropertyDescriptor:So,getOwnPropertyNames:zt,getOwnPropertySymbols:qt,preventExtensions:Mo,hasOwnProperty:ke}=Object,{push:Qt,concat:Do}=Array.prototype,Xi={}.toString;function uu(e){return e&&e.toString?e.toString():typeof e=="object"?Xi.call(e):e+""}function R(e){return e===void 0}function Xt(e){return typeof e=="function"}const _o=new WeakMap;function Oo(e,t){_o.set(e,t)}const j=e=>_o.get(e)||e;class ko{constructor(t,n){this.originalTarget=n,this.membrane=t}wrapDescriptor(t){if(ke.call(t,"value"))t.value=this.wrapValue(t.value);else{const{set:n,get:o}=t;R(o)||(t.get=this.wrapGetter(o)),R(n)||(t.set=this.wrapSetter(n))}return t}copyDescriptorIntoShadowTarget(t,n){const{originalTarget:o}=this,r=So(o,n);if(!R(r)){const i=this.wrapDescriptor(r);st(t,n,i)}}lockShadowTarget(t){const{originalTarget:n}=this;Do.call(zt(n),qt(n)).forEach(i=>{this.copyDescriptorIntoShadowTarget(t,i)});const{membrane:{tagPropertyKey:r}}=this;!R(r)&&!ke.call(t,r)&&st(t,r,To(null)),Mo(t)}apply(t,n,o){}construct(t,n,o){}get(t,n){const{originalTarget:o,membrane:{valueObserved:r}}=this,i=o[n];return r(o,n),this.wrapValue(i)}has(t,n){const{originalTarget:o,membrane:{tagPropertyKey:r,valueObserved:i}}=this;return i(o,n),n in o||n===r}ownKeys(t){const{originalTarget:n,membrane:{tagPropertyKey:o}}=this,r=R(o)||ke.call(n,o)?[]:[o];return Qt.apply(r,zt(n)),Qt.apply(r,qt(n)),r}isExtensible(t){const{originalTarget:n}=this;return at(t)?at(n)?!0:(this.lockShadowTarget(t),!1):!1}getPrototypeOf(t){const{originalTarget:n}=this;return it(n)}getOwnPropertyDescriptor(t,n){const{originalTarget:o,membrane:{valueObserved:r,tagPropertyKey:i}}=this;r(o,n);let s=So(o,n);return R(s)?n!==i?void 0:(s={value:void 0,writable:!1,configurable:!1,enumerable:!1},st(t,i,s),s):(s.configurable===!1&&this.copyDescriptorIntoShadowTarget(t,n),this.wrapDescriptor(s))}}const Jt=new WeakMap,Zt=new WeakMap,en=new WeakMap,tn=new WeakMap;class Ji extends ko{wrapValue(t){return this.membrane.getProxy(t)}wrapGetter(t){const n=Jt.get(t);if(!R(n))return n;const o=this,r=function(){return o.wrapValue(t.call(j(this)))};return Jt.set(t,r),en.set(r,t),r}wrapSetter(t){const n=Zt.get(t);if(!R(n))return n;const o=function(r){t.call(j(this),j(r))};return Zt.set(t,o),tn.set(o,t),o}unwrapDescriptor(t){if(ke.call(t,"value"))t.value=j(t.value);else{const{set:n,get:o}=t;R(o)||(t.get=this.unwrapGetter(o)),R(n)||(t.set=this.unwrapSetter(n))}return t}unwrapGetter(t){const n=en.get(t);if(!R(n))return n;const o=this,r=function(){return j(t.call(o.wrapValue(this)))};return Jt.set(r,t),en.set(t,r),r}unwrapSetter(t){const n=tn.get(t);if(!R(n))return n;const o=this,r=function(i){t.call(o.wrapValue(this),o.wrapValue(i))};return Zt.set(r,t),tn.set(t,r),r}set(t,n,o){const{originalTarget:r,membrane:{valueMutated:i}}=this;return r[n]!==o?(r[n]=o,i(r,n)):n==="length"&&rt(r)&&i(r,n),!0}deleteProperty(t,n){const{originalTarget:o,membrane:{valueMutated:r}}=this;return delete o[n],r(o,n),!0}setPrototypeOf(t,n){}preventExtensions(t){if(at(t)){const{originalTarget:n}=this;if(Mo(n),at(n))return!1;this.lockShadowTarget(t)}return!0}defineProperty(t,n,o){const{originalTarget:r,membrane:{valueMutated:i,tagPropertyKey:s}}=this;return n===s&&!ke.call(r,n)||(st(r,n,this.unwrapDescriptor(o)),o.configurable===!1&&this.copyDescriptorIntoShadowTarget(t,n),i(r,n)),!0}}const Ao=new WeakMap,$o=new WeakMap;class Zi extends ko{wrapValue(t){return this.membrane.getReadOnlyProxy(t)}wrapGetter(t){const n=Ao.get(t);if(!R(n))return n;const o=this,r=function(){return o.wrapValue(t.call(j(this)))};return Ao.set(t,r),r}wrapSetter(t){const n=$o.get(t);if(!R(n))return n;const o=this,r=function(i){};return $o.set(t,r),r}set(t,n,o){return!1}deleteProperty(t,n){return!1}setPrototypeOf(t,n){}preventExtensions(t){return!1}defineProperty(t,n,o){return!1}}function nn(e){if(rt(e))return e.map(o=>{const r=j(o);return r!==o?nn(r):o});const t=To(it(e)),n=zt(e);return Do.call(n,qt(e)).reduce((o,r)=>{const i=e[r],s=j(i);return s!==i?o[r]=nn(s):o[r]=i,o},t)}const es={header:e=>{const t=j(e);if(!t||t===e)return null;const n=nn(e);return["object",{object:n}]},hasBody:()=>!1,body:()=>null};function ts(){return typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{}}function du(){throw new ReferenceError}function ns(e){if(e===null||typeof e!="object")return!1;if(rt(e))return!0;const t=it(e);return t===Qi||t===null||it(t)===null}const os=(e,t)=>{},rs=(e,t)=>{};function Ro(e){return rt(e)?[]:{}}class is{constructor(t={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:n,valueObserved:o,valueIsObservable:r,tagPropertyKey:i}=t;this.valueMutated=Xt(n)?n:rs,this.valueObserved=Xt(o)?o:os,this.valueIsObservable=Xt(r)?r:ns,this.tagPropertyKey=i}getProxy(t){const n=j(t);return this.valueIsObservable(n)?this.readOnlyObjectGraph.get(n)===t?t:this.getReactiveHandler(n):n}getReadOnlyProxy(t){return t=j(t),this.valueIsObservable(t)?this.getReadOnlyHandler(t):t}unwrapProxy(t){return j(t)}getReactiveHandler(t){let n=this.reactiveObjectGraph.get(t);if(R(n)){const o=new Ji(this,t);n=new Proxy(Ro(t),o),Oo(n,t),this.reactiveObjectGraph.set(t,n)}return n}getReadOnlyHandler(t){let n=this.readOnlyObjectGraph.get(t);if(R(n)){const o=new Zi(this,t);n=new Proxy(Ro(t),o),Oo(n,t),this.readOnlyObjectGraph.set(t,n)}return n}}const Vo=Symbol.for("@@lockerLiveValue"),on=new is({valueObserved:yo,valueMutated:go,tagPropertyKey:Vo});function ss(e){return on.unwrapProxy(e)}function Lo(e){return on.getReadOnlyProxy(e)}function Io(e){return on.getProxy(e)}function as(e){e[Vo]=void 0}function cs(e,t){const{get:n,set:o,enumerable:r,configurable:i}=t;if(!D(n))throw new TypeError;if(!D(o))throw new TypeError;return{enumerable:r,configurable:i,get(){const s=w(this);if(!Dn(s))return Te(s,e),n.call(s.elm)},set(s){const a=w(this);return Oe(a,e,s),o.call(a.elm,s)}}}const Po=new WeakMap,O=function(){if(g(ce))throw new TypeError("Illegal constructor");const e=ce,{def:t,elm:n}=e,{bridge:o}=t,r=this;if(Qe(n,o.prototype),e.component=this,arguments.length===1){const{callHook:i,setHook:s,getHook:a}=arguments[0];e.callHook=i,e.setHook=s,e.getHook=a}return as(this),Rn(r,e),Rn(n,e),e.renderMode===1?e.renderRoot=ls(e):e.renderRoot=n,this};function ls(e){const{elm:t,mode:n,shadowMode:o,def:{ctor:r},renderer:{attachShadow:i}}=e,s=i(t,{[Ei]:o===1,delegatesFocus:Boolean(r.delegatesFocus),mode:n});return e.shadowRoot=s,Rn(s,e),s}function fu(e,t){Dn(e)&&B(`this.${t} should not be called during the construction of the custom element for ${te(e)} because the element is not yet in the DOM or has no children yet.`)}O.prototype={constructor:O,dispatchEvent(e){const t=w(this),{elm:n,renderer:{dispatchEvent:o}}=t;return o(n,e)},addEventListener(e,t,n){const o=w(this),{elm:r,renderer:{addEventListener:i}}=o,s=Tr(o,t);i(r,e,s,n)},removeEventListener(e,t,n){const o=w(this),{elm:r,renderer:{removeEventListener:i}}=o,s=Tr(o,t);i(r,e,s,n)},hasAttribute(e){const t=w(this),{elm:n,renderer:{getAttribute:o}}=t;return!g(o(n,e))},hasAttributeNS(e,t){const n=w(this),{elm:o,renderer:{getAttribute:r}}=n;return!g(r(o,t,e))},removeAttribute(e){const t=w(this),{elm:n,renderer:{removeAttribute:o}}=t;Me(n,e),o(n,e),Se()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:o}}=w(this);Me(n,t),o(n,t,e),Se()},getAttribute(e){const t=w(this),{elm:n}=t,{getAttribute:o}=t.renderer;return o(n,e)},getAttributeNS(e,t){const n=w(this),{elm:o}=n,{getAttribute:r}=n.renderer;return r(o,t,e)},setAttribute(e,t){const n=w(this),{elm:o,renderer:{setAttribute:r}}=n;Me(o,e),r(o,e,t),Se()},setAttributeNS(e,t,n){const o=w(this),{elm:r,renderer:{setAttribute:i}}=o;Me(r,t),i(r,t,n,e),Se()},getBoundingClientRect(){const e=w(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=w(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=w(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return w(this).shadowRoot},get refs(){const e=w(this);if(yt)return;const{refVNodes:t,cmpTemplate:n}=e;if(g(t))return;let o=Po.get(t);if(c(o)){o=b(null);for(const r of F(t))o[r]=t[r].elm;we(o),Po.set(t,o)}return o},set refs(e){_(this,"refs",{configurable:!0,enumerable:!0,writable:!0,value:e})},get shadowRoot(){return null},get children(){const e=w(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=w(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=w(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=w(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=w(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=w(this);return e.renderer.getLastElementChild(e.elm)},get ownerDocument(){const e=w(this);return e.renderer.ownerDocument(e.elm)},render(){return w(this).def.template},toString(){return`[object ${w(this).def.name}]`}};const Fo=b(null),us=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of us)Fo[e]={value(t){const n=w(this),{elm:o,renderer:r}=n;return r[e](o,t)},configurable:!0,enumerable:!0,writable:!0};Z(O.prototype,Fo);const rn=b(null);for(const e in De)rn[e]=cs(e,De[e]);Z(O.prototype,rn);function pu(){po(O.prototype)}_(O,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});function ds(e){return{get(){const t=w(this);return Te(t,e),t.cmpFields[e]},set(t){const n=w(this);Oe(n,e,t)},enumerable:!0,configurable:!0}}const sn=new Map;function fs(e,t){let n=sn.get(e);if(!c(n))throw new Error("Adapter already has a context provider.");n=Bi(),sn.set(e,n);const o=new WeakSet;return(r,i)=>{if(o.has(r))throw new Error(`Adapter was already installed on ${r}.`);o.add(r);const{consumerConnectedCallback:s,consumerDisconnectedCallback:a}=i;t(r,n,l=>{const{setNewContext:u,setDisconnectedCallback:d}=l,f={provide(v){u(v)}};d(()=>{c(a)||a(f)}),s(f)})}}function ps(e,t,n){const{adapter:o}=t,r=sn.get(o);if(c(r))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:a},renderer:{registerContextConsumer:l}}=e;M.call(s,()=>{l(i,r,{setNewContext(u){n(u)},setDisconnectedCallback(u){M.call(a,u)}})})}const hs="$$DeprecatedWiredElementHostKey$$",ms="$$DeprecatedWiredParamsMetaKey$$",hu="@wire",an=new Map;function gs(e,t){return n=>{Oe(e,t,n)}}function ys(e,t){return n=>{J(e,e.owner,k,()=>{t.call(e.component,n)},k)}}function Es(e,t,n){let o=!1;const r=wo(()=>{o===!1&&(o=!0,Promise.resolve().then(()=>{o=!1,r.reset(),i()}))}),i=()=>{let s;r.observe(()=>s=t(e)),n(s)};return{computeConfigAndUpdate:i,ro:r}}function ws(e,t,n){const{method:o,adapter:r,configCallback:i,dynamic:s}=n;let a;const l=c(o)?gs(e,t):ys(e,o),u=h=>{l(h)};let d,f;_(u,hs,{value:e.elm}),_(u,ms,{value:s}),J(e,e,k,()=>{f=new r(u)},k);const E=h=>{J(e,e,k,()=>{f.update(h,d)},k)},{computeConfigAndUpdate:v,ro:m}=Es(e.component,i,E);return c(r.contextSchema)||ps(e,n,h=>{d!==h&&(d=h,e.state===1&&v())}),{connector:f,computeConfigAndUpdate:v,resetConfigWatcher:()=>m.reset()}}function vs(e,t,n,o){t.adapter&&(t=t.adapter);const r=e.value,i={adapter:t,method:r,configCallback:n,dynamic:o};an.set(e,i)}function bs(e,t,n,o){t.adapter&&(t=t.adapter);const r={adapter:t,configCallback:n,dynamic:o};an.set(e,r)}function Ns(e){const{context:t,def:{wire:n}}=e,o=t.wiredConnecting=[],r=t.wiredDisconnecting=[];for(const i in n){const s=n[i],a=an.get(s);if(!c(a)){const{connector:l,computeConfigAndUpdate:u,resetConfigWatcher:d}=ws(e,i,a),f=a.dynamic.length>0;M.call(o,()=>{if(l.connect(),f){Promise.resolve().then(u);return}u()}),M.call(r,()=>{l.disconnect(),d()})}}}function Cs(e){const{wiredConnecting:t}=e.context;for(let n=0,o=t.length;n<o;n+=1)t[n]()}function Ts(e){const{wiredDisconnecting:t}=e.context;J(e,e,k,()=>{for(let n=0,o=t.length;n<o;n+=1)t[n]()},k)}function Ss(){throw new Error}function Ms(e){return{get(){const t=w(this);if(!Dn(t))return Te(t,e),t.cmpProps[e]},set(t){const n=w(this);n.cmpProps[e]=t,Eo(n,e)},enumerable:!0,configurable:!0}}function Bo(e,t){const{get:n,set:o,enumerable:r,configurable:i}=t;if(!D(n))throw new Error;return{get(){return n.call(this)},set(s){const a=w(this);o&&o.call(this,s)},enumerable:r,configurable:i}}function Ds(e){if(arguments.length===1)return Io(e);throw new Error}function _s(e){return{get(){const t=w(this);return Te(t,e),t.cmpFields[e]},set(t){const n=w(this),o=Io(t);Oe(n,e,o)},enumerable:!0,configurable:!0}}function Os(e,t){throw new Error}function ks(e){return{get(){const t=w(this);return Te(t,e),t.cmpFields[e]},set(t){const n=w(this);Oe(n,e,t)},enumerable:!0,configurable:!0}}function ct(e){return D(e.value)?"method":D(e.set)||D(e.get)?"accessor":"field"}function mu(e,t,n){if(!c(n)){const o=ct(n),r=`Invalid observed ${t} field. Found a duplicate ${o} with the same name.`;o==="accessor"?B(r):P.fail(r)}}function gu(e,t,n){if(!c(n)){const o=ct(n);P.fail(`Invalid @track ${t} field. Found a duplicate ${o} with the same name.`)}}function yu(e,t,n){if(!c(n)){const o=ct(n);P.fail(`Invalid @wire ${t} field. Found a duplicate ${o} with the same name.`)}}function Eu(e,t,n){(c(n)||!D(n.value)||Q(n.writable))&&P.fail(`Invalid @wire ${t} method.`)}function wu(e,t,n){if(!c(n)){const o=ct(n),r=`Invalid @api ${t} field. Found a duplicate ${o} with the same name.`;o==="accessor"?B(r):P.fail(r)}}function vu(e,t,n){c(n)?P.fail(`Invalid @api get ${t} accessor.`):D(n.set)?P.isTrue(D(n.get),`Missing getter for property ${t} decorated with @api in ${e}. You cannot have a setter without the corresponding getter.`):D(n.get)||P.fail(`Missing @api get ${t} accessor.`)}function bu(e,t,n){(c(n)||!D(n.value)||Q(n.writable))&&P.fail(`Invalid @api ${t} method.`)}function As(e,t){const n=e.prototype,{publicProps:o,publicMethods:r,wire:i,track:s,fields:a}=t,l=b(null),u=b(null),d=b(null),f=b(null),E=b(null),v=b(null);let m;if(!c(o))for(const h in o){const C=o[h];if(v[h]=C.config,m=Y(n,h),C.config>0){if(c(m))throw new Error;m=Bo(h,m)}else!c(m)&&!c(m.get)?m=Bo(h,m):m=Ms(h);u[h]=m,_(n,h,m)}if(c(r)||Ne.call(r,h=>{if(m=Y(n,h),c(m))throw new Error;l[h]=m}),!c(i))for(const h in i){const{adapter:C,method:S,config:$,dynamic:L=[]}=i[h];if(m=Y(n,h),S===1){if(c(m))throw new Error;d[h]=m,vs(m,C,$,L)}else m=ks(h),f[h]=m,bs(m,C,$,L),_(n,h,m)}if(!c(s))for(const h in s)m=Y(n,h),m=_s(h),_(n,h,m);if(!c(a))for(let h=0,C=a.length;h<C;h++){const S=a[h];m=Y(n,S);const $=!c(o)&&S in o,L=!c(s)&&S in s;!$&&!L&&(E[S]=ds(S))}return $s(e,{apiMethods:l,apiFields:u,apiFieldsConfig:v,wiredMethods:d,wiredFields:f,observedFields:E}),e}const Ho=new Map;function $s(e,t){Ho.set(e,t)}const Rs={apiMethods:I,apiFields:I,apiFieldsConfig:I,wiredMethods:I,wiredFields:I,observedFields:I};function Vs(e){const t=Ho.get(e);return c(t)?Rs:t}let Wo=!1;function Nu(e,t){const n=e.toString().match(Mi);if(!g(n)&&!Wo){const o=n[1],[r,i]=o.split("."),[s,a]=It.split(".");if(r!==s||i!==a){Wo=!0;const l=t==="component"?`${t} ${e.name}`:t;B(`LWC WARNING: current engine is v${It}, but ${l} was compiled with v${o}. |
| | | Please update your compiled code or LWC engine so that the versions match. |
| | | No further warnings will appear.`),tt("CompilerRuntimeVersionMismatch",{compilerVersion:o,runtimeVersion:It})}}}const cn=new Set;function ln(){return[]}cn.add(ln);function Ls(e){return cn.has(e)}function Is(e){return cn.add(e),e}function Ps(e,t,n,o){return o}const xo=b(null),Uo=b(null);function Fs(e){let t=xo[e];return c(t)&&(t=xo[e]=function(){const n=w(this),{getHook:o}=n;return o(n.component,e)}),t}function Bs(e){let t=Uo[e];return c(t)&&(t=Uo[e]=function(n){const o=w(this),{setHook:r}=o;n=Lo(n),r(o.component,e,n)}),t}function Hs(e){return function(){const t=w(this),{callHook:n,component:o}=t,r=o[e];return n(t.component,r,Xn.call(arguments))}}function Ws(e,t){return function(o,r,i){if(r===i)return;const s=e[o];if(c(s)){c(t)||t.apply(this,arguments);return}!Yi(this,o)||(this[s]=i)}}function jo(e,t,n){let o;D(e)?o=class extends e{}:(o=function(){throw new TypeError("Illegal constructor")},Qe(o,e),Qe(o.prototype,e.prototype),_(o.prototype,"constructor",{writable:!0,configurable:!0,value:o}));const r=b(null),{attributeChangedCallback:i}=e.prototype,{observedAttributes:s=[]}=e,a=b(null);for(let l=0,u=t.length;l<u;l+=1){const d=t[l];r[lo(d)]=d,a[d]={get:Fs(d),set:Bs(d),enumerable:!0,configurable:!0}}for(let l=0,u=n.length;l<u;l+=1){const d=n[l];a[d]={value:Hs(d),writable:!0,configurable:!0}}return a.attributeChangedCallback={value:Ws(r,i)},_(o,"observedAttributes",{get(){return[...s,...F(r)]}}),Z(o.prototype,a),o}const lt=jo(No,_t(De),[]);we(lt),qe(lt.prototype);const xs=typeof WeakRef=="function"&&typeof FinalizationRegistry=="function";class Us{constructor(){this._map=new WeakMap}_getValues(t){let n=this._map.get(t);return c(n)&&(n=new Set,this._map.set(t,n)),n}get(t){return this._getValues(t)}add(t,n){this._getValues(t).add(n)}delete(t){this._map.delete(t)}}class js{constructor(){this._map=new WeakMap,this._registry=new FinalizationRegistry(t=>{for(let n=t.length-1;n>=0;n--){const o=t[n].deref();c(o)&&At.call(t,n,1)}})}_getWeakRefs(t){let n=this._map.get(t);return c(n)&&(n=[],this._map.set(t,n)),n}get(t){const n=this._getWeakRefs(t),o=new Set;for(const r of n){const i=r.deref();c(i)||o.add(i)}return o}add(t,n){const o=this._getWeakRefs(t);M.call(o,new WeakRef(n)),this._registry.register(n,o)}delete(t){this._map.delete(t)}}const un=xs?js:Us,Yo=new WeakMap,Go=new WeakMap,Ko=new WeakMap,dn=new un,fn=new un,pn=new un;function Cu(e){const t=dn.get(e);for(const n of t)Q(n.isDirty)&&(me(n),Ln(n));return dn.delete(e),!0}function Tu(e){const t=pn.get(e);for(const n of t)$r(n);return pn.delete(e),!0}function Su(e){const t=fn.get(e);let n=!0;for(const o of t){const{owner:r}=o;g(r)?n=!1:$r(r)}return fn.delete(e),n}function Mu(e){U();const t=new Set;for(;Yo.has(e)&&!t.has(e);)t.add(e),e=Yo.get(e);return e}function Du(e){U();const t=new Set;for(;Go.has(e)&&!t.has(e);)t.add(e),e=Go.get(e);return e}function Ys(e){U();const t=new Set;for(;Ko.has(e)&&!t.has(e);)t.add(e),e=Ko.get(e);return e}function _u(e){U();const t=e.def.ctor;fn.add(t,e);const n=e.cmpTemplate;if(n){dn.add(n,e);const o=n.stylesheets;if(!c(o))for(const r of xt(o)){const i=Ys(r);pn.add(i,e)}}}function Gs(e,t){return!1}function Ks(e,t){return!1}function zs(e,t){return!1}const hn=new WeakMap;function qs(e){let t=ve(e);if(g(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(jt(t)){const n=Ut(t);t=n===t?O:n}return t}function Qs(e){const{shadowSupportMode:t,renderMode:n}=e,o=Vs(e),{apiFields:r,apiFieldsConfig:i,apiMethods:s,wiredFields:a,wiredMethods:l,observedFields:u}=o,d=e.prototype;let{connectedCallback:f,disconnectedCallback:E,renderedCallback:v,errorCallback:m,render:h}=d;const C=qs(e),S=C!==O?fe(C):Js,$=jo(S.bridge,F(r),F(s)),L=x(b(null),S.props,r),je=x(b(null),S.propsConfig,i),Ye=x(b(null),S.methods,s),Yn=x(b(null),S.wire,a,l);f=f||S.connectedCallback,E=E||S.disconnectedCallback,v=v||S.renderedCallback,m=m||S.errorCallback,h=h||S.render;let St=S.shadowSupportMode;c(t)||(St=t);let Mt=S.renderMode;c(n)||(Mt=n==="light"?0:1);const Gn=oc(e)||S.template,Kn=e.name||S.name;return Z(d,u),{ctor:e,name:Kn,wire:Yn,props:L,propsConfig:je,methods:Ye,bridge:$,template:Gn,renderMode:Mt,shadowSupportMode:St,connectedCallback:f,disconnectedCallback:E,renderedCallback:v,errorCallback:m,render:h}}function ut(e){if(!D(e))return!1;if(e.prototype instanceof O)return!0;let t=e;do{if(jt(t)){const n=Ut(t);if(n===t)return!0;t=n}if(t===O)return!0}while(!g(t)&&(t=ve(t)));return!1}function fe(e){let t=hn.get(e);if(c(t)){if(jt(e)){const n=Ut(e);return t=fe(n),hn.set(e,t),t}if(!ut(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=Qs(e),hn.set(e,t)}return t}function Xs(e){return fe(e).bridge}const Js={ctor:O,name:O.name,props:rn,propsConfig:I,methods:I,renderMode:1,shadowSupportMode:"reset",wire:I,bridge:lt,template:ln,render:O.prototype.render};function Zs(e){const t=fe(e),{ctor:n,name:o,props:r,propsConfig:i,methods:s}=t,a={};for(const u in r)a[u]={config:i[u]||0,type:"any",attr:lo(u)};const l={};for(const u in s)l[u]=s[u].value;return{ctor:n,name:o,props:a,methods:l}}function Ae(e){return`${e}-host`}function ea(e){return Cn.h("style",{key:"style",attrs:{type:"text/css"}},[Cn.t(e)])}function ta(e,t){const{elm:n,context:o,renderMode:r,shadowMode:i,renderer:{getClassList:s,removeAttribute:a,setAttribute:l}}=e,{stylesheets:u,stylesheetToken:d}=t,{stylesheets:f}=e,E=r===1&&i===1,{hasScopedStyles:v}=o;let m,h,C;const{stylesheetToken:S,hasTokenInClass:$,hasTokenInAttribute:L}=o;c(S)||($&&s(n).remove(Ae(S)),L&&a(n,Ae(S)));const je=Fe(u),Ye=Fe(f);(je||Ye)&&(m=d),c(m)||(v&&(s(n).add(Ae(m)),h=!0),E&&(l(n,Ae(m),""),C=!0)),o.stylesheetToken=m,o.hasTokenInClass=h,o.hasTokenInAttribute=C}function mn(e,t,n){const o=[];let r;for(let i=0;i<e.length;i++){let s=e[i];if(G(s))M.apply(o,mn(s,t,n));else{const a=s[no],l=a||n.shadowMode===1&&n.renderMode===1?t:void 0,u=n.renderMode===0?!a:n.shadowMode===0;let d;n.renderMode===1?d=n.shadowMode===0:(c(r)&&(r=zo(n)),d=g(r)||r.shadowMode===0),M.call(o,s(l,u,d))}}return o}function na(e,t){const{stylesheets:n,stylesheetToken:o}=t,{stylesheets:r}=e;let i=[];return Fe(n)&&(i=mn(n,o,e)),Fe(r)&&M.apply(i,mn(r,o,e)),i}function zo(e){let t=e;for(;!g(t);){if(t.renderMode===1)return t;t=t.owner}return t}function qo(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(t==null?void 0:t.stylesheetToken)||null}function oa(e){const{template:t}=fe(e.ctor),{vm:n}=e,{stylesheetToken:o}=t;return!c(o)&&vr(t,n)?Ae(o):null}function ra(e){const t=zo(e);return!g(t)&&t.shadowMode===1?null:t}function ia(e,t){const{renderMode:n,shadowMode:o,renderer:{insertStylesheet:r}}=e;if(n===1&&o===1)for(let i=0;i<t.length;i++)r(t[i]);else{if(e.hydrated)return qn.call(t,ea);{const i=ra(e),s=g(i)?void 0:i.shadowRoot;for(let a=0;a<t.length;a++)r(t[a],s)}}return null}function sa(e){const{type:t}=e;return t===2||t===3}function $e(e,t){return e.key===t.key&&e.sel===t.sel}function aa(e){return e.type===3}function Re(e){return e.type===5}function Qo(e){return e.type===6}const Xo=58;function ca(e,t,n){const{attrs:o}=t.data;if(c(o))return;const r=g(e)?I:e.data.attrs;if(r===o)return;const{elm:i}=t,{setAttribute:s,removeAttribute:a}=n;for(const l in o){const u=o[l];r[l]!==u&&(Me(i,l),ue.call(l,3)===Xo?s(i,l,u,io):ue.call(l,5)===Xo?s(i,l,u,so):g(u)||c(u)?a(i,l):s(i,l,u),Se())}}const Jo=58;function la(e,t,n){const{data:{attrs:o},elm:r}=t;if(c(o))return;const{removeAttribute:i,setAttribute:s,setProperty:a}=n,l=g(e)?I:e.data.attrs;for(const u in o){const d=o[u];l[u]!==d&&(Ci(u)in r?a(r,u,d):ue.call(u,3)===Jo?s(r,u,d,io):ue.call(u,5)===Jo?s(r,u,d,so):g(d)||c(d)?i(r,u):s(r,u,d))}}function ua(e,t){return e==="input"&&(t==="value"||t==="checked")}function Zo(e,t,n){let{props:o}=t.data;const{spread:r}=t.data;if(c(o)&&c(r))return;let i;if(!g(e)){i=e.data.props;const f=e.data.spread;if(i===o&&f===r)return;c(i)&&(i=I),c(f)||(i=x({},i,f))}c(r)||(o=x({},o,r));const s=g(e),{elm:a,sel:l}=t,{getProperty:u,setProperty:d}=n;for(const f in o){const E=o[f];(s||E!==(ua(l,f)?u(a,f):i[f])||!(f in i))&&d(a,f,E)}}const er=b(null);function tr(e){if(e==null)return I;e=Je(e)?e:e+"";let t=er[e];if(t)return t;t=b(null);let n=0,o;const r=e.length;for(o=0;o<r;o++)ue.call(e,o)===Pi&&(o>n&&(t[Zn.call(e,n,o)]=!0),n=o+1);return o>n&&(t[Zn.call(e,n,o)]=!0),er[e]=t,t}function da(e,t,n){const{elm:o,data:{className:r}}=t,i=g(e)?void 0:e.data.className;if(i===r)return;const{getClassList:s}=n,a=s(o),l=tr(r),u=tr(i);let d;for(d in u)c(l[d])&&a.remove(d);for(d in l)c(u[d])&&a.add(d)}function fa(e,t,n){const{elm:o,data:{style:r}}=t;if((g(e)?void 0:e.data.style)===r)return;const{setAttribute:s,removeAttribute:a}=n;!Je(r)||r===""?a(o,"style"):s(o,"style",r)}function nr(e,t){const{elm:n,data:{on:o}}=e;if(c(o))return;const{addEventListener:r}=t;for(const i in o){const s=o[i];r(n,i,s)}}function pa(e,t){const{elm:n,data:{classMap:o}}=e;if(c(o))return;const{getClassList:r}=t,i=r(n);for(const s in o)i.add(s)}function ha(e,t){const{elm:n,data:{styleDecls:o}}=e;if(c(o))return;const{setCSSStyleProperty:r}=t;for(let i=0;i<o.length;i++){const[s,a,l]=o[i];r(n,s,a,l)}}function gn(e,t,n,o){cr(t)?lr(e,t,n,o):ur(e,t,n,o)}function pe(e,t,n,o){var r,i;if(e!==t)switch(t.type){case 0:ma(e,t,o);break;case 1:ya(e,t,o);break;case 4:t.elm=e.elm;break;case 5:va(e,t,n,o);break;case 2:Na(e,t,(r=t.data.renderer)!==null&&r!==void 0?r:o);break;case 3:Ta(e,t,n,(i=t.data.renderer)!==null&&i!==void 0?i:o);break}}function re(e,t,n,o){var r,i;switch(e.type){case 0:ga(e,t,o,n);break;case 1:Ea(e,t,o,n);break;case 4:Ca(e,t,o,n);break;case 5:wa(e,t,o,n);break;case 2:ba(e,t,o,(r=e.data.renderer)!==null&&r!==void 0?r:n);break;case 3:or(e,t,o,(i=e.data.renderer)!==null&&i!==void 0?i:n);break}}function ma(e,t,n){t.elm=e.elm,t.text!==e.text&&rr(t,n)}function ga(e,t,n,o){const{owner:r}=e,{createText:i}=o,s=e.elm=i(e.text);Le(s,r,o),Ie(s,t,n,o)}function ya(e,t,n){t.elm=e.elm,t.text!==e.text&&rr(t,n)}function Ea(e,t,n,o){const{owner:r}=e,{createComment:i}=o,s=e.elm=i(e.text);Le(s,r,o),Ie(s,t,n,o)}function wa(e,t,n,o){const{children:r}=e;Ve(r,t,o,n),e.elm=e.leading.elm}function va(e,t,n,o){const{children:r,stable:i}=t;i?ur(e.children,r,n,o):lr(e.children,r,n,o),t.elm=t.leading.elm}function ba(e,t,n,o){const{sel:r,owner:i,data:{svg:s}}=e,{createElement:a}=o,l=de(s)?wi:void 0,u=e.elm=a(r,l);Le(u,i,o),ir(u,i,o),Sa(u,e),sr(u,e),pt(null,e,o),Ie(u,t,n,o),Ve(e.children,u,o,null)}function Na(e,t,n){const o=t.elm=e.elm;pt(e,t,n),gn(e.children,t.children,o,n)}function Ca(e,t,n,o){const{owner:r}=e,{cloneNode:i,isSyntheticShadowDefined:s}=o,a=e.elm=i(e.fragment,!0);Le(a,r,o),sr(a,e);const{renderMode:l,shadowMode:u}=r;s&&(u===1||l===0)&&(a[yi]=!0),Ie(a,t,n,o)}function or(e,t,n,o){const{sel:r,owner:i}=e,{createCustomElement:s}=o;let a;const l=v=>{a=Da(v,e,o)};let u,d;const f=r.toLowerCase(),E=s(f,l,u,d);e.elm=E,e.vm=a,Le(E,i,o),ir(E,i,o),a&&wn(e,a),pt(null,e,o),Ie(E,t,n,o),a&&Nt(a),Ve(e.children,E,o,null),a&&fc(a)}function Ta(e,t,n,o){if(e.ctor!==t.ctor){const r=o.nextSibling(e.elm);dt(e,n,o,!0),or(t,n,r,o)}else{const r=t.elm=e.elm,i=t.vm=e.vm;if(pt(e,t,o),!c(i)){wn(t,i);const{shadowMode:s,renderMode:a}=i;s==0&&a!==0&&cr(e.children)&&vn(t.children)}gn(e.children,t.children,r,o),c(i)||dc(i)}}function Ve(e,t,n,o,r=0,i=e.length){for(;r<i;++r){const s=e[r];W(s)&&re(s,t,n,o)}}function dt(e,t,n,o=!1){const{type:r,elm:i,sel:s}=e;switch(o&&(r===5?ft(e.children,t,n,o):En(i,t,n)),r){case 2:{const a=s==="slot"&&e.owner.shadowMode===1;ft(e.children,i,n,a);break}case 3:{const{vm:a}=e;c(a)||pc(a)}}}function ft(e,t,n,o=!1,r=0,i=e.length){for(;r<i;++r){const s=e[r];W(s)&&dt(s,t,n,o)}}function W(e){return e!=null}function Le(e,t,n){const{renderRoot:o,renderMode:r,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(i===1||r===0)&&(e[Lt]=o[Lt])}function rr(e,t){const{elm:n,text:o}=e,{setText:r}=t;r(n,o)}function yn(e,t,n,o){if(Re(e)){const r=e.children;for(let i=0;i<r.length;i+=1){const s=r[i];g(s)||o.insert(s.elm,t,n)}}else o.insert(e.elm,t,n)}function Ie(e,t,n,o){o.insert(e,t,n)}function En(e,t,n){n.remove(e,t)}function pt(e,t,n){g(e)&&(nr(t,n),pa(t,n),ha(t,n)),da(e,t,n),fa(e,t,n),t.data.external?la(e,t,n):ca(e,t,n),Zo(e,t,n)}function ir(e,t,n){const o=qo(t);if(!g(o)){const{getClassList:i}=n;i(e).add(o)}const{stylesheetToken:r}=t.context;t.shadowMode===1&&!c(r)&&(e.$shadowToken$=r)}function Sa(e,t){var n;const{owner:o,data:{context:r}}=t;o.shadowMode===1&&((n=r==null?void 0:r.lwc)===null||n===void 0?void 0:n.dom)==="manual"&&(e.$domManual$=!0)}function sr(e,t){var n,o}function wn(e,t){const n=e.aChildren||e.children,{renderMode:o,shadowMode:r}=t,i=Ma(n);e.children=i,t.aChildren=i,(r===1||o===0)&&(_a(t,i,e.owner),e.aChildren=i,e.children=H)}function Ma(e){const t=[],n=[];let o=!1;for(let i=e.length-1;i>-1;i-=1){const s=e[i];M.call(n,s),o=o||!!(s&&Re(s))}if(!o)return e;let r;for(;!c(r=Qn.call(n));)if(!g(r)&&Re(r)){const i=r.children;for(let s=i.length-2;s>0;s-=1)M.call(n,i[s])}else M.call(t,r);return vn(t),t}function Da(e,t,n){let o=q(e);if(!c(o))return o;const{sel:r,mode:i,ctor:s,owner:a}=t;return o=He(e,s,n,{mode:i,owner:a,tagName:r}),o}function _a(e,t,n){var o,r;const{cmpSlots:{slotAssignments:i}}=e,s=b(null);for(let a=0,l=t.length;a<l;a+=1){const u=t[a];if(g(u))continue;let d="";sa(u)?d=(r=(o=u.data.attrs)===null||o===void 0?void 0:o.slot)!==null&&r!==void 0?r:"":Qo(u)&&(d=u.slotName);const f=""+d,E=s[f]=s[f]||[];M.call(E,u)}if(e.cmpSlots={owner:n,slotAssignments:s},Q(e.isDirty)){const a=F(i);if(a.length!==F(s).length){me(e);return}for(let l=0,u=a.length;l<u;l+=1){const d=a[l];if(c(s[d])||i[d].length!==s[d].length){me(e);return}const f=i[d],E=s[d];for(let v=0,m=s[d].length;v<m;v+=1)if(f[v]!==E[v]){me(e);return}}}}const ar=new WeakMap;function vn(e){ar.set(e,1)}function cr(e){return ar.has(e)}function Oa(e,t,n){const o={};for(let r=t;r<=n;++r){const i=e[r];if(W(i)){const{key:s}=i;s!==void 0&&(o[s]=r)}}return o}function lr(e,t,n,o){let r=0,i=0,s=e.length-1,a=e[0],l=e[s];const u=t.length-1;let d=u,f=t[0],E=t[d],v,m,h,C,S=!1;for(;r<=s&&i<=d;)if(!W(a))a=e[++r];else if(!W(l))l=e[--s];else if(!W(f))f=t[++i];else if(!W(E))E=t[--d];else if($e(a,f))pe(a,f,n,o),a=e[++r],f=t[++i];else if($e(l,E))pe(l,E,n,o),l=e[--s],E=t[--d];else if($e(a,E)){pe(a,E,n,o);let $;Re(l)?$=o.nextSibling(l.trailing.elm):$=o.nextSibling(l.elm),yn(a,n,$,o),a=e[++r],E=t[--d]}else $e(l,f)?(pe(l,f,n,o),yn(f,n,a.elm,o),l=e[--s],f=t[++i]):(v===void 0&&(v=Oa(e,r,s)),m=v[f.key],c(m)?(re(f,n,o,a.elm),f=t[++i]):(h=e[m],W(h)&&(h.sel!==f.sel?re(f,n,o,a.elm):(pe(h,f,n,o),S||(S=!0,e=[...e]),e[m]=void 0,yn(h,n,a.elm,o))),f=t[++i]));if(r<=s||i<=d)if(r>s){let $=d,L;do L=t[++$];while(!W(L)&&$<u);C=W(L)?L.elm:null,Ve(t,n,o,C,i,d+1)}else ft(e,n,o,!0,r,s+1)}function ur(e,t,n,o){const r=e.length,i=t.length;if(r===0){Ve(t,n,o,null);return}if(i===0){ft(e,n,o,!0);return}let s=null;for(let a=i-1;a>=0;a-=1){const l=e[a],u=t[a];u!==l&&(W(l)?W(u)?$e(l,u)?(pe(l,u,n,o),s=u.elm):(dt(l,n,o,!0),re(u,n,o,s),s=u.elm):dt(l,n,o,!0):W(u)&&(re(u,n,o,s),s=u.elm))}}const ka=Symbol.iterator;function Aa(e){M.call(V().velements,e)}function $a(e,t){return{type:6,factory:t,owner:V(),elm:void 0,sel:void 0,key:void 0,slotName:e}}function Ra(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:V()}}function Va(e,t,n){const o=Nn(""),r=Nn("");return{type:5,sel:void 0,key:e,elm:void 0,children:[o,...t,r],stable:n,owner:V(),leading:o,trailing:r}}function dr(e,t,n=H){const o=V(),{key:r,ref:i}=t,s={type:2,sel:e,data:t,children:n,elm:void 0,key:r,owner:o};return c(i)||bo(o,i,s),s}function La(e){return e>0&&!(de(e)||Q(e))?0:e}function Ia(e,t,n,o){if(!c(o)&&!c(o.slotAssignments)&&!c(o.slotAssignments[e])&&o.slotAssignments[e].length!==0){const a=[],l=o.slotAssignments[e];for(let u=0;u<l.length;u++){const d=l[u];if(!g(d)){const f=Qo(d),E=!c(t.slotData);if(f!==E)continue;if(f){const v=V();Et(o.owner);try{const{tro:m}=o.owner;m.observe(()=>{M.call(a,d.factory(t.slotData,t.key))})}finally{Et(v)}}else M.call(a,d)}}n=a}const r=V(),{renderMode:i,shadowMode:s}=r;return i===0?(ht(n),n):(s===1&&ht(n),dr("slot",t,n))}function bn(e,t,n,o=H){const r=V(),{key:i,ref:s}=n;let a,l,u;const d={type:3,sel:e,data:n,children:o,elm:a,key:i,ctor:t,owner:r,mode:"open",aChildren:l,vm:u};return Aa(d),c(s)||bo(r,s,d),d}function Pa(e,t){const n=[];ht(n);const o=V();if(c(e)||e===null)return n;const r=e[ka]();let i=r.next(),s=0,{value:a,done:l}=i,u,d;for(;l===!1;){i=r.next(),l=i.done;const f=t(a,s,s===0,l===!0);G(f)?M.apply(n,f):M.call(n,f),s+=1,a=i.value}return n}function Fa(e){const t=e.length,n=[];ht(n);for(let o=0;o<t;o+=1){const r=e[o];G(r)?M.apply(n,r):M.call(n,r)}return n}function Nn(e){let t,n,o;return{type:0,sel:t,text:e,elm:o,key:n,owner:V()}}function Ba(e){let t,n;return{type:1,sel:t,text:e,elm:n,key:"c",owner:V()}}function Ha(e){return e==null?"":String(e)}function Wa(e){const t=V();if(g(t))throw new Error;const n=t;return function(o){br(n,e,n.component,o)}}function xa(e,t){switch(typeof t){case"number":case"string":return e+":"+t;case"object":}}function Ua(e){const t=V();if(c(e)||e==="")return e;if(g(e))return null;const{idx:n,shadowMode:o}=t;return o===1?Rt.call(e,/\S+/g,r=>`${r}-${n}`):e}function ja(e){const t=V();if(c(e)||e==="")return e;if(g(e))return null;const{idx:n,shadowMode:o}=t;return o===1&&/^#/.test(e)?`${e}-${n}`:e}function Ya(e,t,n,o=H){if(g(t)||c(t))return null;if(!ut(t))throw new Error(`Invalid LWC Constructor ${ee(t)} for custom element <${e}>.`);return bn(e,t,n,o)}function Ga(e,t,n=H){if(g(e)||c(e))return null;if(!ut(e))throw new Error(`Invalid constructor ${ee(e)} is not a LightningElement constructor.`);const o=rc(e);if(c(o)||o==="")throw new Error(`Invalid LWC constructor ${ee(e)} does not have a registered name`);return bn(o,e,t,n)}function ht(e){return vn(e),e}let fr=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};function Ka(e){fr=e}function za(e){return fr(e)}const Cn=we({s:Ia,h:dr,c:bn,i:Pa,f:Fa,t:Nn,d:Ha,b:Wa,k:xa,co:Ba,dc:Ga,fr:Va,ti:La,st:Ra,gid:Ua,fid:ja,shc:za,ssf:$a,ddc:Ya}),qa=["constructor","render","patch","connectedCallback","renderedCallback","disconnectedCallback","errorCallback","lwc-hydrate","lwc-rehydrate"],pr=typeof performance!="undefined"&&typeof performance.mark=="function"&&typeof performance.clearMarks=="function"&&typeof performance.measure=="function"&&typeof performance.clearMeasures=="function",hr=pr?e=>{performance.mark(e)}:k,mr=pr?(e,t)=>{performance.measure(e,t),performance.clearMarks(t),performance.clearMeasures(e)}:k;function Tn(e){return qa[e]}function gr(e,t){return`${te(t)} - ${Tn(e)}`}function mt(e,t){return`${gr(e,t)} - ${t.idx}`}const gt=!1;let he=!1,ie=k;const Qa={enableProfiler(){he=!0},disableProfiler(){he=!1},attachDispatcher(e){ie=e,this.enableProfiler()},detachDispatcher(){const e=ie;return ie=k,this.disableProfiler(),e}};function se(e,t){if(gt){const n=mt(e,t);hr(n)}he&&ie(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function ae(e,t){if(gt){const n=mt(e,t),o=gr(e,t);mr(o,n)}he&&ie(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function yr(e,t){if(gt){const n=Tn(e),o=c(t)?n:mt(e,t);hr(o)}he&&ie(e,0,t==null?void 0:t.tagName,t==null?void 0:t.idx,t==null?void 0:t.renderMode,t==null?void 0:t.shadowMode)}function Sn(e,t){if(gt){const n=Tn(e),o=c(t)?n:mt(e,t);mr(n,o)}he&&ie(e,1,t==null?void 0:t.tagName,t==null?void 0:t.idx,t==null?void 0:t.renderMode,t==null?void 0:t.shadowMode)}let yt=!1,Pe=null;function V(){return Pe}function Et(e){Pe=e}function Ou(e,t){U();const{cmpSlots:n}=e,{slots:o=H}=t;for(const r in n.slotAssignments)P.isTrue(G(n.slotAssignments[r]),`Slots can only be set to an array, instead received ${ee(n.slotAssignments[r])} for slot "${r}" in ${e}.`),r!==""&&kt.call(o,r)===-1&&B(`Ignoring unknown provided slot name "${r}" in ${e}. Check for a typo on the slot attribute.`,e)}function ku(e,t){e!==ln&&(t.renderMode===0?P.isTrue(e.renderMode==="light",`Light DOM components can't render shadow DOM templates. Add an 'lwc:render-mode="light"' directive to the root template tag of ${te(t)}.`):P.isTrue(c(e.renderMode),`Shadow DOM components template can't render light DOM templates. Either remove the 'lwc:render-mode' directive from ${te(t)} or set it to 'lwc:render-mode="shadow"`))}function Er(e){return(t,...n)=>{const o=b(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:a}=V(),l=!c(i),u=s===1;let d=0;if(l&&r&&(d|=1),l&&u&&(d|=2),!c(o[d]))return o[d];const f=r&&l?" "+i:"",E=r&&l?` class="${i}"`:"",v=l&&u?" "+i:"";let m="";for(let h=0,C=n.length;h<C;h++)switch(n[h]){case 0:m+=t[h]+f;break;case 1:m+=t[h]+E;break;case 2:m+=t[h]+v;break;case 3:m+=t[h]+E+v;break}return m+=t[t.length-1],o[d]=e(m,a),o[d]}}}const Xa=Er((e,t)=>{const{createFragment:n}=t;return n(e)}),Ja=Er((e,t)=>{const{createFragment:n,getFirstChild:o}=t,r=n("<svg>"+e+"</svg>");return o(r)});function Za(e,t){const n=yt,o=Pe;let r=[];return J(e,e.owner,()=>{Pe=e,se(1,e)},()=>{const{component:i,context:s,cmpSlots:a,cmpTemplate:l,tro:u}=e;u.observe(()=>{if(t!==l){if(g(l)||kr(e),!Ls(t))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${ee(t)}.`);e.cmpTemplate=t,s.tplCache=b(null),s.hasScopedStyles=vr(t,e),ta(e,t);const f=na(e,t);s.styleVNodes=f.length===0?null:ia(e,f)}e.refVNodes=t.hasRefs?b(null):null,e.velements=[],yt=!0,r=t.call(void 0,Cn,i,a,s.tplCache);const{styleVNodes:d}=s;g(d)||$t.apply(r,d)})},()=>{yt=n,Pe=o,ae(1,e)}),r}function wr(e){if(Fe(e)){for(let t=0;t<e.length;t++)if(de(e[t][no]))return!0}return!1}function vr(e,t){const{stylesheets:n}=e,o=c(t)?null:t.stylesheets;return wr(n)||wr(o)}function Fe(e){return!c(e)&&!g(e)&&e.length>0}let Mn=!1,ce=null;function Dn(e){return ce===e}function wt(e,t,n){const{component:o,callHook:r,owner:i}=e;J(e,i,k,()=>{r(o,t,n)},k)}function ec(e,t){const n=ce;let o;se(0,e),ce=e;try{const r=new t;if(ce.component!==r)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(r){o=Object(r)}finally{if(ae(0,e),ce=n,!c(o))throw ho(e,o),o}}function tc(e){const{def:{render:t},callHook:n,component:o,owner:r}=e,i=Mn,s=V();let a,l=!1;return J(e,r,()=>{Mn=!0,Et(e)},()=>{e.tro.observe(()=>{a=n(o,t),l=!0})},()=>{Mn=i,Et(s)}),l?Za(e,a):[]}function br(e,t,n,o){const{callHook:r,owner:i}=e;J(e,i,k,()=>{r(n,t,[o])},k)}const _n=new Map;function nc(e,t){return D(e)&&_n.set(e,t),e}function oc(e){var t;return(t=_n.get(e))===null||t===void 0?void 0:t.tmpl}function rc(e){var t;return(t=_n.get(e))===null||t===void 0?void 0:t.sel}function ic(e){return wo(()=>{const{isDirty:t}=e;Q(t)&&(me(e),Ln(e))})}function Nr(e){e.tro.reset();const t=tc(e);return e.isDirty=!1,e.isScheduled=!1,t}function me(e){e.isDirty=!0}const Cr=new WeakMap;function Tr(e,t){if(!D(t))throw new TypeError("Expected an EventListener but received "+typeof t);let n=Cr.get(t);return c(n)&&(n=function(o){br(e,t,void 0,o)},Cr.set(t,n)),n}const Be=b(null),Sr=["rendered","connected","disconnected"];function sc(e){for(let t=0;t<Sr.length;++t){const n=Sr[t];if(n in e){let o=Be[n];c(o)&&(Be[n]=o=[]),M.call(o,e[n])}}}function On(e,t){const{component:n,def:o,context:r}=e;for(let i=0,s=t.length;i<s;++i)t[i].call(void 0,n,{},o,r)}let ac=0;const kn=new WeakMap;function cc(e,t,n=[]){return t.apply(e,n)}function lc(e,t,n){e[t]=n}function uc(e,t){return e[t]}function dc(e){bt(e)}function An(e){const t=w(e);yr(7,t),t.state===1&&$n(e),Nt(t),bt(t),Sn(7,t)}function $n(e){const t=w(e);vt(t)}function fc(e){bt(e)}function vt(e){const{state:t}=e;if(t!==2){const{tro:n}=e;n.reset(),wc(e),_r(e),vc(e)}}function pc(e){vt(e)}function Au(e){let t=e.owner;for(;!g(t)&&t.renderMode===0;)t=t.owner;return t}function He(e,t,n,o){const{mode:r,owner:i,tagName:s,hydrated:a}=o,l=fe(t),u={elm:e,def:l,idx:ac++,state:0,isScheduled:!1,isDirty:!0,tagName:s,mode:r,owner:i,refVNodes:null,children:H,aChildren:H,velements:H,cmpProps:b(null),cmpFields:b(null),cmpSlots:{slotAssignments:b(null)},cmpTemplate:null,hydrated:Boolean(a),renderMode:l.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:I,wiredConnecting:H,wiredDisconnecting:H},tro:null,shadowMode:null,stylesheets:null,component:null,shadowRoot:null,renderRoot:null,callHook:cc,setHook:lc,getHook:uc,renderer:n};return u.stylesheets=mc(u,l.ctor),u.shadowMode=yc(u,n),u.tro=ic(u),ec(u,l.ctor),Vn(u)&&Ns(u),u}function hc(e,t){let n=!0;const o=r=>{if(G(r))for(let i=0;i<r.length;i++)o(r[i]);else D(r)||(n=!1)};return G(t)?o(t):n=!1,n}function mc(e,t){gc(t);const{stylesheets:n}=t;return!c(n)&&hc(e,n)?xt(n):null}function gc(e){}function yc(e,t){const{def:n}=e,{isSyntheticShadowDefined:o,isNativeShadowDefined:r}=t;let i;return o?n.renderMode===0?i=0:i=1:i=0,i}function $u(e){if(g(e)||!Xe(e)||!("renderRoot"in e))throw new TypeError(`${e} is not a VM.`)}function Rn(e,t){kn.set(e,t)}function w(e){return kn.get(e)}function q(e){return kn.get(e)}function bt(e){if(de(e.isDirty)){const t=Nr(e);Ec(e,t)}}function Ec(e,t){const{renderRoot:n,children:o,renderer:r}=e;e.children=t,(t.length>0||o.length>0)&&o!==t&&J(e,e,()=>{se(2,e)},()=>{gn(o,t,n,r)},()=>{ae(2,e)}),e.state===1&&Mr(e)}function Mr(e){const{def:{renderedCallback:t}}=e,{rendered:n}=Be;n&&On(e,n),c(t)||(se(4,e),wt(e,t),ae(4,e))}let ge=[];function Dr(){yr(8);const e=ge.sort((t,n)=>t.idx-n.idx);ge=[];for(let t=0,n=e.length;t<n;t+=1){const o=e[t];try{bt(o)}catch(r){throw t+1<n&&(ge.length===0&&vo(Dr),$t.apply(ge,Xn.call(e,t+1))),Sn(8),r}}Sn(8)}function Nt(e){const{state:t}=e;if(t===1)return;e.state=1;const{connected:n}=Be;n&&On(e,n),Vn(e)&&Cs(e);const{connectedCallback:o}=e.def;c(o)||(se(3,e),wt(e,o),ae(3,e))}function Vn(e){return _t(e.def.wire).length>0}function wc(e){Q(e.isDirty)&&(e.isDirty=!0),e.state=2;const{disconnected:t}=Be;t&&On(e,t),Vn(e)&&Ts(e);const{disconnectedCallback:n}=e.def;c(n)||(se(5,e),wt(e,n),ae(5,e))}function _r(e){const{velements:t}=e;for(let n=t.length-1;n>=0;n-=1){const{elm:o}=t[n];if(!c(o)){const r=q(o);c(r)||vt(r)}}}function vc(e){const{aChildren:t}=e;Or(t)}function Or(e){for(let t=0,n=e.length;t<n;t+=1){const o=e[t];if(!g(o)&&!c(o.elm))switch(o.type){case 2:Or(o.children);break;case 3:{const r=w(o.elm);vt(r);break}}}}function kr(e){Ar(e.children,e),e.children=H,_r(e),e.velements=H}function Ar(e,t){const{renderRoot:n,renderer:{remove:o}}=t;for(let r=0,i=e.length;r<i;r+=1){const s=e[r];g(s)||(Re(s)?Ar(s.children,t):c(s.elm)||o(s.elm,n))}}function Ln(e){de(e.isScheduled)||(e.isScheduled=!0,ge.length===0&&vo(Dr),M.call(ge,e))}function bc(e){let t=e;for(;!g(t);){if(!c(t.def.errorCallback))return t;t=t.owner}}function J(e,t,n,o,r){let i;n();try{o()}catch(s){i=Object(s)}finally{if(r(),!c(i)){ho(e,i);const s=g(t)?void 0:bc(t);if(c(s))throw i;kr(e),se(6,e);const a=s.def.errorCallback;wt(s,a,[i,i.wcStack]),ae(6,e)}}}function $r(e){e.cmpTemplate=()=>[],Q(e.isDirty)&&(me(e),Ln(e))}const Nc=X[oo],Cc=X[ro];delete X[oo],delete X[ro];function Tc(e){return e!==document&&de(e.synthetic)}function Rr(e,t,n){let o=q(e.getRootNode().host);c(o)&&(o=q(t.getRootNode().host)),!c(o)&&tt("CrossRootAriaInSyntheticShadow",{tagName:o.tagName,attributeName:n})}function Sc(e){return Je(e)?Ot.call(di.call(e,/\s+/),Boolean):[]}function Vr(e,t,n){const o=e.getRootNode();if(!!Tc(o))if(t==="id"){if(!Je(n)||n.length===0)return;for(const r of eo){const i=`[${r}~="${CSS.escape(n)}"]`,s=Cc.call(document,i);for(let a=0;a<s.length;a++){const l=s[a];if(l.getRootNode()!==o){Rr(l,e,r);break}}}}else{const r=Sc(n);for(const i of r){const s=Nc.call(document,i);g(s)||s.getRootNode()!==o&&Rr(e,s,t)}}}let Lr=!1;function Mc(){if(Lr)return;Lr=!0;const{setAttribute:e}=Element.prototype;x(Element.prototype,{setAttribute(n,o){e.call(this,n,o),(n==="id"||eo.has(n))&&Vr(this,n,o)}});const t=Y(Element.prototype,"id");if(!c(t)){const{get:n,set:o}=t;D(n)&&D(o)&&_(Element.prototype,"id",{get(){return n.call(this)},set(r){o.call(this,r),Vr(this,"id",r)},enumerable:!0,configurable:!0})}}function Dc(){return typeof CSS!="undefined"&&D(CSS.escape)}function _c(){return ze.call(Element.prototype,to)}Dc()&&_c()&&Bt(Mc);const Oc=["ariaActiveDescendant","ariaControls","ariaDescribedBy","ariaDetails","ariaErrorMessage","ariaFlowTo","ariaLabelledBy","ariaOwns"];function Ir(e){return e instanceof O||e instanceof lt}function kc(e){const{host:t}=e.getRootNode(),n=c(t)?void 0:q(t);if(!c(n))return n;let o=e;for(;!g(o=o.parentElement);)if(Ir(o)){const r=q(o);if(!c(r))return r}}function Pr(e,t,n,o){if(!Ir(e)){const r=kc(e);let i;n&&(i=g(o)?"null":typeof o),tt("NonStandardAriaReflection",{tagName:r==null?void 0:r.tagName,propertyName:t,isSetter:n,setValueType:i})}}function Ac(){const{prototype:e}=Element;for(const t of Oc){const n=Y(e,t),{get:o,set:r}=n;_(e,t,{get(){return Pr(this,t,!1,void 0),o.call(this)},set(i){return Pr(this,t,!0,i),r.call(this,i)},configurable:!0,enumerable:!0})}}Bt(Ac);let We=!1;function $c(e){We=!1,Nt(e),Fr(e),We&&B("Hydration completed with errors.",e)}function Fr(e){const t=Nr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:o}}=e;Ct(o(n),t,n,e),Mr(e)}function Rc(e,t,n){var o,r;let i;switch(t.type){case 0:i=Ic(e,t,n);break;case 1:i=Pc(e,t,n);break;case 4:i=Fc(e,t,n);break;case 5:i=Bc(e,t,n);break;case 2:i=Hc(e,t,(o=t.data.renderer)!==null&&o!==void 0?o:n);break;case 3:i=Wc(e,t,(r=t.data.renderer)!==null&&r!==void 0?r:n);break}return n.nextSibling(i)}const ye="nodeValue",Vc="parentNode",Lc="tagName";function Ru(e,t,n){const{getProperty:o}=n,r=o(e,ye);if(r===t.text||r==="\u200D"&&t.text==="")return!0;const i=o(e,Vc);return!g(i)&&o(i,Lc)==="STYLE"&&Si(t.text)===r}function Ic(e,t,n){var o;if(!le(t,e,3,n))return xe(e,t,n);const{setText:r}=n;return r(e,(o=t.text)!==null&&o!==void 0?o:null),t.elm=e,e}function Pc(e,t,n){var o;if(!le(t,e,8,n))return xe(e,t,n);const{setProperty:r}=n;return r(e,ye,(o=t.text)!==null&&o!==void 0?o:null),t.elm=e,e}function Fc(e,t,n){return Gc(t.fragment,e,t,n)?(t.elm=e,e):xe(e,t,n)}function Bc(e,t,n){const{children:o,owner:r}=t;return Ct(e,o,n.getProperty(e,"parentNode"),r),t.elm=o[o.length-1].elm}function Hc(e,t,n){if(!le(t,e,1,n)||!Hr(t,e,n))return xe(e,t,n);t.elm=e;const{owner:o}=t,{context:r}=t.data,i=Boolean(!c(r)&&!c(r.lwc)&&r.lwc.dom==="manual");if(i){const{data:{props:s}}=t,{getProperty:a}=n;!c(s)&&!c(s.innerHTML)&&a(e,"innerHTML")===s.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:Ui(s,"innerHTML")}))}if(Br(t,n),!i){const{getFirstChild:s}=n;Ct(s(e),t.children,e,o)}return e}function Wc(e,t,n){if(!le(t,e,1,n)||!Hr(t,e,n))return xe(e,t,n);const{sel:o,mode:r,ctor:i,owner:s}=t,a=He(e,i,n,{mode:r,owner:s,tagName:o,hydrated:!0});if(t.elm=e,t.vm=a,wn(t,a),Br(t,n),Nt(a),a.renderMode!==0){const{getFirstChild:l}=n;Ct(l(e),t.children,e,a)}return Fr(a),e}function Ct(e,t,n,o){let r=!1,i=e,s=null;const{renderer:a}=o;for(let l=0;l<t.length;l++){const u=t[l];g(u)||(i?(i=Rc(i,u,a),s=u.elm):(We=!0,re(u,n,a,s),s=u.elm))}if(i){We=!0;const{nextSibling:l}=a;do{const u=i;i=l(i),En(u,n,a)}while(i)}}function xe(e,t,n){We=!0;const{getProperty:o}=n,r=o(e,"parentNode");return re(t,r,n,e),En(e,r,n),t.elm}function Br(e,t){nr(e,t),Zo(null,e,t)}function le(e,t,n,o){const{getProperty:r}=o;return r(t,"nodeType")===n}function Hr(e,t,n){const{getProperty:o}=n;if(e.sel.toLowerCase()!==o(t,"tagName").toLowerCase())return!1;const r=Uc(e,t,n),i=jc(e,t,n),s=Yc(e,t,n);return r&&i&&s}function xc(e,t){return!!(String(e)===t||g(t)&&(c(e)||g(e)))}function Uc(e,t,n){const{data:{attrs:o={}}}=e;let r=!0;for(const[i,s]of Object.entries(o)){const{owner:a}=e,{getAttribute:l}=n,u=l(t,i);xc(s,u)||(r=!1)}return r}function jc(e,t,n){const{data:o,owner:r}=e;let{className:i,classMap:s}=o;const{getProperty:a,getClassList:l}=n,u=qo(r),d=aa(e)?oa(e):null;if(!g(u)||!g(d))if(c(i))if(!c(s))s=Object.assign(Object.assign(Object.assign({},s),g(u)?{}:{[u]:!0}),g(d)?{}:{[d]:!0});else{const m=[u,d],h=Ot.call(m,C=>!g(C));h.length&&(i=be.call(h," "))}else{const m=[u,i,d],h=Ot.call(m,C=>!g(C));i=be.call(h," ")}let f=!0,E;const v=a(t,"className");if(!c(i)&&String(i)!==v)f=!1,E=i;else if(c(s))c(i)&&v!==""&&(f=!1,E="");else{const m=l(t);let h="";for(const C in s)h+=" "+C,m.contains(C)||(f=!1);E=h.trim(),m.length>F(s).length&&(f=!1)}return f}function Yc(e,t,n){const{data:{style:o,styleDecls:r}}=e,{getAttribute:i}=n,s=i(t,"style")||"";let a,l=!0;if(!c(o)&&o!==s)l=!1,a=o;else if(!c(r)){const u=xi(s),d=[];for(let f=0,E=r.length;f<E;f++){const[v,m,h]=r[f];d.push(`${v}: ${m+(h?" important!":"")}`);const C=u[v];c(C)?l=!1:C.startsWith(m)?h&&!C.endsWith("!important")&&(l=!1):l=!1}F(u).length>r.length&&(l=!1),a=be.call(d,";")}return l}function Gc(e,t,n,o){const{getProperty:r,getAttribute:i}=o;if(r(e,"nodeType")===3)return le(n,t,3,o)?r(e,ye)===r(t,ye):!1;if(r(e,"nodeType")===8)return le(n,t,8,o)?r(e,ye)===r(t,ye):!1;if(!le(n,t,1,o))return!1;let s=!0;return r(e,"tagName")!==r(t,"tagName")?!1:(r(e,"getAttributeNames").call(e).forEach(l=>{i(e,l)!==i(t,l)&&(B(`Mismatch hydrating element <${r(e,"tagName").toLowerCase()}>: attribute "${l}" has different values, expected "${i(e,l)}" but found "${i(t,l)}"`,n.owner),s=!1)}),s)}let Wr=!1;function Kc(e){P.isFalse(Wr,"Hooks are already overridden, only one definition is allowed."),Wr=!0,Ka(e.sanitizeHtmlContent)}const zc=["slots","stylesheetToken","stylesheets","renderMode"],qc=["$scoped$"],Qc=["pop","push","shift","unshift","reverse","sort","fill","splice","copyWithin"];let In=!1;function Xc(e){switch(e){case"pop":return Qn;case"push":return M;case"shift":return li;case"unshift":return $t;case"reverse":return ci;case"sort":return ui;case"fill":return ai;case"splice":return At;case"copyWithin":return si}}function xr(e,t,n){tt(t,{propertyName:n})}function Pn(e){xr("template","TemplateMutation",e)}function Jc(e){xr("stylesheet","StylesheetMutation",e)}function Zc(e){for(const t of Qc){const n=Xc(t);e[t]=function(){return Pn("stylesheets"),n.apply(this,arguments)}}}function el(e){for(const t of qc){let n=e[t];_(e,t,{enumerable:!0,configurable:!0,get(){return n},set(o){Jc(t),n=o}})}}function tl(e){Fn(e,t=>{G(t)?Zc(t):el(t)})}function Vu(e){Fn(e,t=>{we(t)})}function Fn(e,t){t(e);for(let n=0;n<e.length;n++){const o=e[n];G(o)?Fn(o,t):t(o)}}function nl(e){c(e.stylesheets)||tl(e.stylesheets);for(const n of zc){let o=e[n];_(e,n,{enumerable:!0,configurable:!0,get(){return o},set(r){In||Pn(n),o=r}})}const t=Y(e,"stylesheetTokens");_(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get:t.get,set(n){Pn("stylesheetTokens"),In=!0,t.set.call(this,n),In=!1}})}function ol(e){_(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:t}=this;return c(t)?t:{hostAttribute:`${t}-host`,shadowAttribute:t}},set(t){this.stylesheetToken=c(t)?void 0:t.shadowAttribute}})}function rl(e){ol(e),Bt(()=>{nl(e)})}function il(e){let t=null;if(!c(e)){const n=q(e);c(n)||(t=n.def.ctor)}return t}function sl(e){return Lo(e)}function al(e,t){return["div",{},["object",{object:e,config:{skip:!0}}],["div",{},["span",{style:"margin: 0 5px; color: red"},"LWC:"],["object",{object:t}]]]}function cl(e,t){return F(t).length===0?null:["div",{},["object",{object:e,config:{skip:!0}}],["div",{},["span",{style:"margin: 0 5px; color: red"},"Debug:"],["object",{object:t}]]]}const ll={name:"LightningElementFormatter",header(e,t){const n=q(e);return!c(n)&&(c(t)||!t.skip)?e instanceof HTMLElement?al(e,n.component):cl(e,n.debugInfo):null},hasBody(){return!1}};function Lu(){const e=X.devtoolsFormatters||[];M.call(e,ll),X.devtoolsFormatters=e}const Bn=D(CSSStyleSheet.prototype.replaceSync)&&G(document.adoptedStyleSheets),ul=Bn&&Y(document.adoptedStyleSheets,"length").writable,dl=!c(document.documentMode),Ur=new Map;function jr(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function fl(e,t){const{element:n,usedElement:o}=t;return o?dl?jr(e):n.cloneNode(!0):(t.usedElement=!0,n)}function pl(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}function hl(e,t,n){const{adoptedStyleSheets:o}=t,{stylesheet:r}=n;ul?o.push(r):t.adoptedStyleSheets=[...o,r]}function Yr(e,t,n){const o=fl(e,n);t.appendChild(o)}function Gr(e,t){let n=Ur.get(e);return c(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},Ur.set(e,n)),t&&c(n.stylesheet)?n.stylesheet=pl(e):!t&&c(n.element)&&(n.element=jr(e)),n}function ml(e){const t=Gr(e,!1);t.global||(t.global=!0,Yr(e,document.head,t))}function gl(e,t){const n=Gr(e,Bn);let{roots:o}=n;if(c(o))o=n.roots=new WeakSet;else if(o.has(t))return;o.add(t),Bn?hl(e,t,n):Yr(e,t,n)}function yl(e,t){c(t)?ml(e):gl(e,t)}function El(){if(typeof customElements=="undefined")return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(Math.random()*1e6),t),new t,!0}catch(e){return!1}}const wl=El(),vl=(e,t)=>{const n=document.createElement(e);return t(n),n},Kr=new Map,Hn=new WeakSet;let Wn=!1;const bl=(e,t)=>{const n=!c(e),o=!c(t);class r extends HTMLElement{constructor(s){super();Wn?s(this):(n||o)&&Hn.add(this)}}return n&&(r.prototype.connectedCallback=function(){Hn.has(this)||e(this)}),o&&(r.prototype.disconnectedCallback=function(){Hn.has(this)||t(this)}),r},Nl=(e,t,n,o)=>{let r=Kr.get(e);if(c(r)){if(!c(customElements.get(e)))throw new Error(`Unexpected tag name "${e}". This name is a registered custom element, preventing LWC to upgrade the element.`);r=bl(n,o),customElements.define(e,r),Kr.set(e,r)}Wn=!0;try{return new r(t)}finally{Wn=!1}};let xn;wl?xn=Nl:xn=vl;function zr(e){const t=function(n){function o(p,y){if(!p)throw new Error(`Invariant Violation: ${y}`)}function r(p,y){if(!p)throw new Error(`Assert Violation: ${y}`)}function i(p,y){if(p)throw new Error(`Assert Violation: ${y}`)}function s(p){throw new Error(p)}var a=Object.freeze({__proto__:null,fail:s,invariant:o,isFalse:i,isTrue:r});function l(p){return p===void 0}function u(p){return p===null}class d extends CustomEvent{constructor(y,{setNewContext:T,setDisconnectedCallback:A}){super(y,{bubbles:!0,composed:!0});this.setNewContext=T,this.setDisconnectedCallback=A}}function f(p,y,T){ei(p,new d(y,T))}function E(p,y,T){zn(p,y,A=>{A.stopImmediatePropagation();const{setNewContext:Dt,setDisconnectedCallback:Ge}=A;T({setNewContext:Dt,setDisconnectedCallback:Ge})})}function v(p,y){return p.cloneNode(y)}function m(p,y){return l(y)?document.createElement(p):document.createElementNS(y,p)}function h(p){return document.createTextNode(p)}function C(p){return document.createComment(p)}if(n.createFragment=void 0,typeof HTMLTemplateElement=="function")n.createFragment=function(p){const y=document.createElement("template");return y.innerHTML=p,y.content.firstChild};else{const p={caption:["table"],col:["colgroup","table"],colgroup:["table"],option:["select"],tbody:["table"],td:["tr","tbody","table"],th:["tr","tbody","table"],thead:["table"],tfoot:["table"],tr:["tbody","table"]},y=function(T){return(/<([a-z][^/\0>\x20\t\r\n\f]+)/i.exec(T)||["",""])[1].toLowerCase()};n.createFragment=function(T){const A=p[y(T)];if(!l(A))for(const Ke of A)T=`<${Ke}>${T}</${Ke}>`;const Dt=document.implementation.createHTMLDocument("");Dt.body.innerHTML=T;let Ge=Dt.body;if(!l(A))for(let Ke=0;Ke<A.length;Ke++)Ge=Ge.firstChild;return Ge.firstChild}}function $(p,y,T){y.insertBefore(p,T)}function L(p,y){y.removeChild(p)}function je(p){return p.nextSibling}function Ye(p,y){return u(p.shadowRoot)?p.attachShadow(y):p.shadowRoot}function Yn(p,y){p.nodeValue=y}function St(p,y){return p[y]}function Mt(p,y,T){p[y]=T}function Gn(p,y,T){return l(T)?p.getAttribute(y):p.getAttributeNS(T,y)}function Kn(p,y,T,A){return l(A)?p.setAttribute(y,T):p.setAttributeNS(A,y,T)}function Zr(p,y,T){l(T)?p.removeAttribute(y):p.removeAttributeNS(T,y)}function zn(p,y,T,A){p.addEventListener(y,T,A)}function Rl(p,y,T,A){p.removeEventListener(y,T,A)}function ei(p,y){return p.dispatchEvent(y)}function Vl(p){return p.classList}function Ll(p,y,T,A){p.style.setProperty(y,T,A?"important":"")}function Il(p){return p.getBoundingClientRect()}function Pl(p,y){return p.querySelector(y)}function Fl(p,y){return p.querySelectorAll(y)}function Bl(p,y){return p.getElementsByTagName(y)}function Hl(p,y){return p.getElementsByClassName(y)}function Wl(p){return p.children}function xl(p){return p.childNodes}function Ul(p){return p.firstChild}function jl(p){return p.firstElementChild}function Yl(p){return p.lastChild}function Gl(p){return p.lastElementChild}function Kl(p){return p.isConnected}function zl(p,y){a.invariant(p instanceof HTMLElement,y)}function ql(p){return p.ownerDocument}return n.addEventListener=zn,n.assertInstanceOfHTMLElement=zl,n.attachShadow=Ye,n.cloneNode=v,n.createComment=C,n.createElement=m,n.createText=h,n.dispatchEvent=ei,n.getAttribute=Gn,n.getBoundingClientRect=Il,n.getChildNodes=xl,n.getChildren=Wl,n.getClassList=Vl,n.getElementsByClassName=Hl,n.getElementsByTagName=Bl,n.getFirstChild=Ul,n.getFirstElementChild=jl,n.getLastChild=Yl,n.getLastElementChild=Gl,n.getProperty=St,n.insert=$,n.isConnected=Kl,n.nextSibling=je,n.ownerDocument=ql,n.querySelector=Pl,n.querySelectorAll=Fl,n.registerContextConsumer=f,n.registerContextProvider=E,n.remove=L,n.removeAttribute=Zr,n.removeEventListener=Rl,n.setAttribute=Kn,n.setCSSStyleProperty=Ll,n.setProperty=Mt,n.setText=Yn,n}({});return Object.setPrototypeOf(t,e),t}const Ee=x(zr(null),{insertStylesheet:yl,createCustomElement:xn,isNativeShadowDefined:X[gi],isSyntheticShadowDefined:ze.call(Element.prototype,to)});function Cl(e,t){if(e.shadowRoot){const n=e.shadowRoot;for(;!g(n.firstChild);)n.removeChild(n.firstChild)}if(t.renderMode==="light")for(;!g(e.firstChild);)e.removeChild(e.firstChild)}function qr(e,t,n){const o=He(e,t,Ee,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[r,i]of Object.entries(n))e[r]=i;return o}function Qr(e,t,n={}){if(!(e instanceof Element))throw new TypeError(`"hydrateComponent" expects a valid DOM element as the first parameter but instead received ${e}.`);if(!D(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!Xe(n)||g(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(q(e)){console.warn('"hydrateComponent" expects an element that is not hydrated.',e);return}try{const o=qr(e,t,n);$c(o)}catch(o){console.error("Recovering from error while hydrating: ",o),Cl(e,t),qr(e,t,n),An(e)}}function Tl(e){return e.CustomElementConstructor}const Un=new WeakSet;function Sl(e){var t;const n=Xs(e),{observedAttributes:o}=n,{attributeChangedCallback:r}=n.prototype;return t=class extends HTMLElement{constructor(){super();this.isConnected?(Qr(this,e,{}),Un.add(this)):He(this,e,Ee,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){Un.has(this)?Un.delete(this):An(this)}disconnectedCallback(){$n(this)}attributeChangedCallback(i,s,a){r.call(this,i,s,a)}},t.observedAttributes=o,t}const Xr=Node,Tt=new WeakMap,jn=new WeakMap;function Ue(e,t){const n=t.get(e);return c(n)||n(e),e}{const{appendChild:e,insertBefore:t,removeChild:n,replaceChild:o}=Xr.prototype;x(Xr.prototype,{appendChild(r){const i=e.call(this,r);return Ue(i,Tt)},insertBefore(r,i){const s=t.call(this,r,i);return Ue(s,Tt)},removeChild(r){const i=n.call(this,r);return Ue(i,jn)},replaceChild(r,i){const s=o.call(this,r,i);return Ue(s,jn),Ue(r,Tt),s}})}function Ml(e,t){if(!Xe(t)||g(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${ee(t)}".`);const n=t.is;if(!D(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const{createCustomElement:o}=Ee,r=Vt.call(e),i=u=>{He(u,n,Ee,{tagName:r,mode:t.mode!=="closed"?"open":"closed",owner:null}),Tt.set(u,An),jn.set(u,$n)};let s,a;return o(r,i,s,a)}const Dl=Node;function _l(e){if(Q(e instanceof Dl)||e instanceof ShadowRoot)return!1;const t=e.getRootNode();return t instanceof ShadowRoot&&Q(ze.call(ve(t),"synthetic"))?!0:Ee.isSyntheticShadowDefined&&!c(e[Lt])}const Jr=new Map;function Ol(e){if(e===O)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=Jr.get(e);return c(t)&&(t=Sl(e),Jr.set(e,t)),t}_(O,"CustomElementConstructor",{get(){return Ol(this)}}),we(O),qe(O.prototype);function kl(e,t,n,o){e.addEventListener(t,n,o)}function Al(e){return fs(e,$l)}function $l(e,t,n){kl(e,t,o=>{o.stopImmediatePropagation();const{setNewContext:r,setDisconnectedCallback:i}=o;n({setNewContext:r,setDisconnectedCallback:i})})}N.LightningElement=O,N.__unstable__ProfilerControl=Qa,N.__unstable__ReportingControl=$i,N.api=Ss,N.buildCustomElementConstructor=Tl,N.createContextProvider=Al,N.createElement=Ml,N.freezeTemplate=rl,N.getComponentConstructor=il,N.getComponentDef=Zs,N.hydrateComponent=Qr,N.isComponentConstructor=ut,N.isNodeFromTemplate=_l,N.parseFragment=Xa,N.parseSVGFragment=Ja,N.readonly=sl,N.register=sc,N.registerComponent=nc,N.registerDecorators=As,N.registerTemplate=Is,N.renderer=Ee,N.rendererFactory=zr,N.sanitizeAttribute=Ps,N.setFeatureFlag=Di,N.setFeatureFlagForTest=_i,N.setHooks=Kc,N.swapComponent=Ks,N.swapStyle=zs,N.swapTemplate=Gs,N.track=Ds,N.unwrap=ss,N.wire=Os,Object.defineProperty(N,"__esModule",{value:!0})}); |
| New file |
| | |
| | | (function() { LWR.define("community_builder/richTextUtil",["exports","@salesforce/community/basePath"],function(e,t){function n(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var c=n(t);const r="/sfsites/c";const s=/\{!contentAsset\.(.+?)\.(.+?)\}/g;const o=/\{!cmsMedia\.(.+?)\}/g;function l(e){let t=e;let n;while((n=o.exec(e))!==null){const[e,c]=n;let r=f(c);t=t.replace(e,r)}return u(t)}function u(e){let t=e;let n;while((n=s.exec(e))!==null){const[e,c,r]=n;let s=a(c,r);t=t.replace(e,s)}return t}function i(){return c.default+r}function f(e){return`${i()}/cms/delivery/media/${e}`}function a(e,t){return`${i()}/file-asset/${e}?v=${t}`}e.getCMSContentUrl=f;e.getPathPrefix=i;e.processContentAssets=u;e.processContents=l;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();LWR.define('@salesforce/community/Id', [], function() { return "0DB10000000GnHmGAK"; });(function() { LWR.define("dxp_util/common",["exports"],function(e){function t(e,t,r){const n=r||{};let i=n.leading;let c;return function r(){const u=Array.prototype.slice.apply(arguments);if(i){e.apply(this,u);i=false}clearTimeout(c);c=setTimeout(function(){e.apply(this,u);i=n.leading},t)}}const r={tab:9,backspace:8,enter:13,escape:27,space:32,pageup:33,pagedown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46,shift:16};function n(e,t){return function r(){try{return e.apply(this,arguments)}catch(e){return t?.apply(this,[e].concat(arguments))}}}function i(e,t){if(typeof e!=="string"){return e??{}}return n(JSON.parse,t)(e)??{}}function c(e){return JSON.stringify(e,(e,t)=>t?t:undefined)}function u(e){if(Object(e)!==e){return e}if(e instanceof Set){return new Set(e)}if(e instanceof Date){return new Date(e)}if(typeof e==="function"){return e.bind({})}if(Array.isArray(e)){const t=[];const r=e.length;for(let n=0;n<r;n++){t.push(u(e[n]))}return t}const t=Object.create({});let r=Object.keys(e);if(e instanceof Error){r=Object.getOwnPropertyNames(e)}const n=r.length;for(let i=0;i<n;i++){const n=r[i];t[n]=u(e[n])}return t}function o(e,...t){if(!t.length)return e;const r=t.shift();if(s(e)&&s(r)){for(const t in r){if(s(r[t])){if(!e[t])Object.assign(e,{[t]:{}});o(e[t],r[t])}else if(Array.isArray(r[t])&&Array.isArray(e[t])){e[t]=[...e[t],...r[t]]}else{Object.assign(e,{[t]:r[t]})}}}return o(e,...t)}function s(e){return e&&typeof e==="object"&&!Array.isArray(e)}const a=(...e)=>t=>e.filter(e=>typeof e==="function").reduce((e,t)=>t(e),t);const y=(...e)=>t=>e.filter(e=>typeof e==="function").reduceRight((e,t)=>t(e),t);const g=e=>t=>t.forEach(e);const f=e=>t=>t.find(e);const M=e=>t=>t.filter(e);const j=e=>t=>t.map(e);const l=e=>t=>t.every(e);const I=e=>t=>Object.keys(t).forEach(e);const N=e=>t=>y(l(e),Object.keys)(t);function p(e,t,r){const n=Array.isArray(e)?e:[];const i=Array.isArray(t)?t:[];const c=i.filter(e=>{const t=n.findIndex(t=>t[r]===e[r]);if(t>=0){n[t]=e}return t<0});return n.concat(c)}const D=e=>function t(...r){if(r.length>=e.length){return e.apply(this,r)}return(...e)=>t.apply(this,r.concat(e))};function A(e){return typeof e==="function"}const O=e=>A(e)?e():e;const b=D((e,t,r)=>O(e)?O(t):O(r));const z=D((e,t)=>b(e,t,null));const m=e=>t=>t(e);const h=(...e)=>t=>e?.filter(A).some(m(t));const d=(...e)=>t=>e?.filter(A).every(m(t));function T(e){return e!==Object(e)}function C(e){return Array.isArray(e)?"array":typeof e}function E(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function w(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?E(Object(r),!0).forEach(function(t){L(e,t,r[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):E(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}function L(e,t,r){t=Y(t);if(t in e){Object.defineProperty(e,t,{value:r,enumerable:true,configurable:true,writable:true})}else{e[t]=r}return e}function Y(e){var t=Q(e,"string");return typeof t==="symbol"?t:String(t)}function Q(e,t){if(typeof e!=="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==undefined){var n=r.call(e,t||"default");if(typeof n!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}const S=D((e,t)=>{if(R(t)){return e}const r=t.split(".");let n=e??{};let i=0;for(i=0;i<r.length-1;i++){if(R(n[r[i]])){return null}n=n[r[i]]}return n[r[i]]});const x=D((e,t,r)=>{if(R(t)){return}const n=t.split(".");let i=e;let c=0;for(c=0;c<n.length-1;c++){i[n[c]]=i[n[c]]||{};i=i[n[c]]}i[n[c]]=r});const v=D((e,t,r,n)=>{const i=S(e,r);x(t,n,i)});function k(e,t,r,n){I(i=>{if(n){v(e,t,r[i],i)}else{v(e,t,i,r[i])}})(r??{});return t}function P(...e){const[t,r,...n]=e;return t?.[r]?.apply(t,n)}const U=e=>[...Array(e).keys()];const Z=e=>!R(e);function R(e){if(Array.isArray(e)){return e.length===0}const t=typeof e;switch(t){case"string":return e==="";case"boolean":case"number":case"function":return false;case"object":return Object.keys(e??{}).length===0;default:return e==null}}function _(e,t=""){return Object.prototype.hasOwnProperty.call(e??{},t)}const F="__sfdc_default__";function V(e){return w({patchRecord:true,getter:(e,t)=>()=>S(e,t)},e)}function $(e){return Z(e?.value?.fields)}function H(e){return e?.displayValue||e?.value||e}function G(e,t){if(J(e)){return t??""}return t}function J(e){return typeof e==="object"&&!Array.isArray(e)&&_(e,"value")&&_(e,"displayValue")}function B(e,t,r={}){if(R(e)||T(e)||A(e)){return e}t=V(t);if(Array.isArray(e)){return e.map(e=>B(e,t))}return Object.entries(e).reduce((r,n)=>{const[i,c]=n;const u=typeof c;if(T(c)){Object.defineProperty(r,i,{get(){return t.getter(e,i)()},enumerable:true})}else if(Array.isArray(c)){r[i]=c.map(e=>B(e,t))}else if(A(c)){r[i]=c}else if(u==="object"){const n={};if(t.patchRecord){Object.defineProperties(n,{[F]:{get(){return G(c,t.getter(e,i)())},enumerable:true},_rawValue:{get(){return t.getter(n,"value")()},enumerable:true},_displayValue:{get(){return t.getter(n,"displayValue")()},enumerable:true}})}B(c,t,n);if($(n)){const e=n.value.fields;Object.entries(e).forEach(e=>{const[t,r]=e;if(!_(n,t)){Object.defineProperty(n,t,{get(){if($(r)){return r}return H(r)},enumerable:true})}})}r[i]=n}return r},r)}function W(e,t,r){const n=Number.parseInt(e,10);if(n<t)return t;if(n>r)return r;return n}function K(e){return e!==""&&!isNaN(Number(e))&&/^-?[0-9a-fA-Fx.]*$/.exec(e)}const q=["%","cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh"];function X(e,t=q){const r=/^([^a-z%]*)(.*)/.exec(e);let n=r[1];let i=r[2];if(!K(n)||!t.includes(i)){n="";i=""}return{value:n,unit:i}}const ee=e=>typeof e==="object"?e:{};const te={toString(){return Object.keys(this).map(e=>{const[t,r]=e.split(":");const n=X(this[e]);let i;if(Z(n.unit)){i=this[e]}else{i=Z(this[e])?`${this[e]}${r??""}`:"initial"}return`${t}: ${i};`}).join(" ")}};function re(e){return Object.assign(Object.create(te),ee(e))}const ne="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDEiIHZpZXdCb3g9IjAgMCAxNDA2IDQ0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHk9IjAuMzMwMDc4IiB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDAiIGZpbGw9IiNGM0YzRjMiLz4KPHBhdGggZD0iTTY3OCAyNTJDNjcxLjkyIDI1MiA2NjcgMjQ3LjA4IDY2NyAyNDFWMTk5QzY2NyAxOTIuOTIgNjcxLjkyIDE4OCA2NzggMTg4SDcyOEM3MzQuMDggMTg4IDczOSAxOTIuOTIgNzM5IDE5OVYyNDFDNzM5IDI0Ny4wOCA3MzQuMDggMjUyIDcyOCAyNTJINjc4VjI1MlpNNjczIDIzMS43Nkw2ODEuODggMjI0LjhDNjgyLjU2IDIyNC4yOCA2ODMuMjggMjI0IDY4NC4wNCAyMjRDNjg0LjggMjI0IDY4NS41NiAyMjQuMjggNjg2LjIgMjI0LjhMNjk2LjY0IDIzMy4yNEw3MTQuMDggMjE4LjhDNzE0Ljc2IDIxOC4yNCA3MTUuNDggMjE4IDcxNi4yNCAyMThDNzE3IDIxOCA3MTcuNzYgMjE4LjI4IDcxOC40IDIxOC44TDczMyAyMzAuNDhWMTk5QzczMyAxOTYuMjQgNzMwLjc2IDE5NCA3MjggMTk0SDY3OEM2NzUuMjQgMTk0IDY3MyAxOTYuMjQgNjczIDE5OVYyMzEuNzZWMjMxLjc2Wk02OTUgMjIwQzY4OS40OCAyMjAgNjg1IDIxNS41MiA2ODUgMjEwQzY4NSAyMDQuNDggNjg5LjQ4IDIwMCA2OTUgMjAwQzcwMC41MiAyMDAgNzA1IDIwNC40OCA3MDUgMjEwQzcwNSAyMTUuNTIgNzAwLjUyIDIyMCA2OTUgMjIwWk02OTUgMjE0QzY5Ny4yIDIxNCA2OTkgMjEyLjIgNjk5IDIxMEM2OTkgMjA3LjggNjk3LjIgMjA2IDY5NSAyMDZDNjkyLjggMjA2IDY5MSAyMDcuOCA2OTEgMjEwQzY5MSAyMTIuMiA2OTIuOCAyMTQgNjk1IDIxNFpNNjc4IDI0Nkg3MjhDNzMwLjc2IDI0NiA3MzMgMjQzLjc2IDczMyAyNDFWMjM5LjY0QzczMyAyMzguNjggNzMyLjYgMjM3Ljg0IDczMS44NCAyMzcuMjRMNzE2LjI0IDIyNC43Nkw2OTguOCAyMzkuMjRDNjk4LjE2IDIzOS43NiA2OTcuNCAyNDAgNjk2LjY0IDI0MEM2OTUuODggMjQwIDY5NS4xNiAyMzkuOCA2OTQuNDggMjM5LjI0TDY4NC4wNCAyMzAuNzZMNjc0LjE2IDIzOC41MkM2NzMuNCAyMzkuMTIgNjczIDIzOS45NiA2NzMgMjQwLjkyVjI0MUM2NzMgMjQzLjc2IDY3NS4yNCAyNDYgNjc4IDI0NlYyNDZaIiBmaWxsPSIjQUJBQ0FEIi8+Cjwvc3ZnPg==";const ie="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMxMiIgaGVpZ2h0PSI0NDAiIHZpZXdCb3g9IjAgMCAxMzEyIDQ0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHdpZHRoPSIxMzEyIiBoZWlnaHQ9IjQ0MCIgZmlsbD0iI0YzRjNGMyIvPgo8cGF0aCBkPSJNNjM5LjA4IDE5MkM2NDAuNzYgMTkyIDY0Mi42OCAxOTIuNTYgNjQ0LjY4IDE5My42OEw2NzguNzYgMjEyLjg0QzY4Mi4yOCAyMTQuOCA2ODQgMjE3LjQgNjg0IDIyMEM2ODQgMjIyLjYgNjgyLjMyIDIyNS4xNiA2NzguNzYgMjI3LjE2TDY0NC42OCAyNDYuMzJDNjQyLjY4IDI0Ny40NCA2NDAuNzYgMjQ4IDYzOS4wOCAyNDhDNjM0Ljg4IDI0OCA2MzIgMjQ0LjY0IDYzMiAyMzguOTJWMjAxLjA4QzYzMiAxOTUuMzYgNjM0Ljg4IDE5MiA2MzkuMDggMTkyVjE5MloiIGZpbGw9IiNBQkFDQUQiLz4KPC9zdmc+";function ce(e){return e&&e!==""}function ue(e){return ce(e)?`url("${e}")`:""}function oe(e){return a(se,ue)(e)}function se(e){return ce(e)?e:ne}const ae=e=>t=>Array.from(t?.querySelectorAll(e));const ye=D((e,t)=>t?.toString().split(e)??[]);function ge(e=""){e=e?.toString();return!e||e.length===0?"":`${e.charAt(0).toUpperCase()}${e.slice(1)}`}function fe(e){return y(M(e=>e?.length>0),ye("/"))(e)}function Me(e=0){return new Promise(t=>{setTimeout(t,e)})}function je(){return new Promise(e=>{requestAnimationFrame(e)})}const le="l";const Ie="m";const Ne="s";const pe=[le,Ie,Ne];const De={top:"flex-start",left:"flex-start",bottom:"flex-end",right:"flex-end",center:"center"};function Ae(e,t,r){const n={};pe.forEach(i=>{e.forEach(e=>{const c=`${t}-${i}-${e.customTitle||e.name}`;const u=`${t}-${i}-${e.name}`;n[`${c}:${e.unit}`]=e.name.match(/alignment/gi)&&Object.keys(r).includes(u)?De[r[u]]:r[u]})});return n}function Oe(e,t,r){const n={};if(!r||!e||!t){return{}}const i=r.split(e);i.filter(e=>{const r=e.match(new RegExp(t,"g"))||[];return e&&r.length===1&&r[0]===t}).forEach(e=>{const[r,i]=e.split(t);n[r.trim()]=i.trim()});return n}const be=150;const ze={top:0,right:0,bottom:0,left:0};function me(e,...t){return t.reduce((e,t,r)=>e?.replaceAll(`{${r}}`,t),e)}e.DEBOUNCE_TIMEOUT=be;e.EMPTY_RECT=ze;e.KeyCodes=r;e.PLACEHOLDER_DATA_URI=ne;e.SFDC_DEFAULT=F;e.VIDEO_PLACEHOLDER_DATA_URI=ie;e.and=d;e.apply=P;e.compose=y;e.curry=D;e.debounce=t;e.deepCopy=u;e.deepMerge=o;e.empty=R;e.every=l;e.everyKey=N;e.fieldToValue=H;e.filter=M;e.find=f;e.forEach=g;e.forEachKey=I;e.formatString=me;e.get=S;e.getify=B;e.hasOwnProperty=_;e.hasUri=ce;e.ifElse=b;e.ifVal=z;e.isField=J;e.isFunction=A;e.isNumber=K;e.isPrimitive=T;e.map=j;e.mapObject=k;e.mapping=v;e.mergeUniqueRecords=p;e.nextFrame=je;e.notEmpty=Z;e.or=h;e.parseUnit=X;e.pipe=a;e.prependFormFactor=Ae;e.propertySet=re;e.querySelectorAll=ae;e.range=W;e.safeCssUrl=oe;e.safeFieldValue=G;e.safeImageSrc=se;e.safeParseJson=i;e.set=x;e.split=ye;e.splitStringToObj=Oe;e.splitUrl=fe;e.stringify=c;e.timeout=Me;e.toCapitalized=ge;e.toCssUrl=ue;e.toIndexes=U;e.tryCatch=n;e.typeOf=C;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/siteInfo",["exports","@salesforce/community/basePath","dxp_util/common","@salesforce/i18n/lang","@salesforce/community/Id","@salesforce/site/Id"],function(t,e,n,u,a,r){function o(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var s=o(e);var f=o(u);var i=o(a);var c=o(r);const l="/sfsites/c";const d=`${s.default}${l}`;const P=n.curry((t,e,n)=>e?n:`${s.default}${t??""}${n}`);const m=P(l);const h=P("");const I={CurrentLanguage:f.default.replace("-","_"),CommunityId:i.default,CurrentLocale:f.default,SiteId:c.default};function _(){return d}function p(t,e=false){return h(e,t)}function y(t,e=false){return m(e,t)}function S(t){return t?.startsWith(s.default)}t.CMS_PATH_PREFIX=l;t.SiteInfo=I;t.buildSiteCmsPath=y;t.buildSitePath=p;t.constructUrlPath=P;t.getPathPrefix=_;t.isSitePath=S;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/contentInfo",["exports","dxp_util/siteInfo"],function(t,e){const n=/^\/cms\//;const o=/^\/img\//;const r=/^\/assets\//;function s(t){return n.test(t)}function u(t){return o.test(t)}function c(t){return r.test(t)}function i(t){return s(t)||u(t)}function l(t){return c(t)?e.buildSitePath(t):i(t)?e.buildSiteCmsPath(t):t}function a(t){const{url:n,isExternal:o}=t;return e.buildSiteCmsPath(n,o)}function f(t){return{url:t.contentNodes?.source?.url??"",isExternal:!!t.contentNodes?.source?.isExternal,altText:t.contentNodes?.altText?.value??""}}function d(t=[]){return t.filter(t=>t.contentKey&&t.contentNodes).reduce((t,e)=>{t.set(e.contentKey,f(e));return t},new Map)}function m(t,e){const n=d(t?.items??[]);const[o]=e;const r=n.get(o);const s=r?{url:a(r),altText:r.altText}:{};return s}function x(t){const n=t?.contentBody??{};const o=n["sfdc_cms:media"]??{};const r={url:e.buildSiteCmsPath(o.url??"",o.source?.type==="url"),altText:n.altText??""};return r}t.convertItemsToContentKeyMap=d;t.extractImageInfo=m;t.extractImageInfoV2=x;t.getCMSContentUrl=a;t.isCmsAsset=c;t.isCmsResource=s;t.isResource=i;t.isStaticImageResource=u;t.resolveUrl=l;t.toUrlInfo=f;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/idGenerator",["exports","dxp_util/common"],function(e,t){const n=["","one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"];const r=["","","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"];function o(e=0){if(typeof e==="string"){e=parseInt(e,10)}if(e<0)throw new Error("Negative numbers are not supported.");if(e===0)return"zero";if(e<20){return n[e]}const t=e.toString();if(t.length===2){return`${r[t[0]]}${n[t[1]]?"-"+n[t[1]]:""}`}if(t.length===3){if(t[1]==="0"&&t[2]==="0"){return`${n[t[0]]}-hundred`}const e=o(+(t[1]+t[2]));return`${n[t[0]]}-hundred-${e}`}if(t.length===4){const e=+(t[1]+t[2]+t[3]);if(e===0){return n[t[0]]+"-thousand"}if(e<100){return`${n[t[0]]}-thousand-${o(e)}`}return`${n[t[0]]}-thousand-${o(e)}`}throw new Error(`${e} are not supported.`)}const i=e=>t=>o(t+e);const s=e=>n=>e??false?t.toCapitalized(n):n;const u=e=>t=>`${e}${t}`;function a(e,n,r,o){return t.compose(u(r),s(n),i(e))(o)}const f=t.curry(a);function d(e,n,r={baseIndex:0,capitalCase:false}){return t.compose(t.map(f(r.baseIndex,r.capitalCase,e)),t.toIndexes)(n)}function c(){return Math.floor((new Date).valueOf()*Math.random())}e.fnGenerateId=f;e.generateId=a;e.generateIds=d;e.generateUniqueNumber=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_data_provider/dataProviderUtils",["exports","dxp_util/contentInfo","@app/isDesignMode","dxp_util/idGenerator"],function(e,t,n,r){function o(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var i=o(n);function _(e){return i.default?r.generateIds("",e).map(e=>({key:e,data:{}})):[]}const d=/\{!Item\.(.+?)\}/g;const l="dxp_data_provider__getfielddata";const a="_";const u=`${a}data`;const c={RECORD:"sfdc_record__",CMS:"sfdc_cms__"};const s=e=>{const t=e.split(".");if(t.length>0&&t[t.length-1].startsWith("_")){const e=t[t.length-1];const n=t.slice(0,t.length-1);if(t.length===1){return[null,e]}return[n,e]}return[e,null]};function f(e){if(e?.includes("-")){return e.split("-").slice(-1)[0]}return e}function A(e,t){return!e?t:`${e}.${t}`}Object.defineProperty(e,"resolve",{enumerable:true,get:function(){return t.resolveUrl}});e.DATA_BIND_REGEX=d;e.DATA_PROVIDER_DATA_ACCESS=u;e.DATA_PROVIDER_FIELD_METADATA_PREFIX=a;e.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME=l;e.SFDC_TYPES=c;e.buildFieldPath=A;e.generateMockCollection=_;e.getFieldAndMetadata=s;e.normalizeContentKey=f;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("lightning/utils",["exports"],function(t){const e=t=>typeof t==="string"?t.trim().split(/\s+/).reduce((t,e)=>{t[e]=true;return t},{}):t;const n={add(t){Object.assign(this,e(t));return this},invert(){Object.keys(this).forEach(t=>{this[t]=!this[t]});return this},toString(){return Object.keys(this).filter(t=>this[t]).join(" ")}};function r(t){return Object.assign(Object.create(n),e(t))}const i=/input|select|textarea|button|object/;function s(t){const{width:e,height:n}=t.getBoundingClientRect();const r=e>0||n>0;return r&&window.getComputedStyle(t).visibility!=="hidden"}function c(t){const e=t.tagName.toLowerCase();const n=i.test(e)&&!t.disabled||e==="a"&&t.href;return n&&s(t)}function o(t){const e=t.getAttribute("data-navigation")==="enable";const n=t.tabIndex;return n>=0&&c(t)||e}function u(t){return[].slice.call(t.querySelectorAll("*"),0).filter(o)}function a(t){const e=Array.prototype.slice.call(arguments,1);let n=e;if(Array.isArray(e[0])){[n]=e}return t.replace(/{(\d+)}/g,(t,e)=>{const r=n[e];return r!==null&&r!==undefined?r:""})}t.classSet=r;t.formatLabel=a;t.queryFocusable=u;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/outputRichText",["exports","lwc","lightning/utils","community_builder/richTextUtil","dxp_data_provider/dataProviderUtils"],function(t,e,i,o,n){function l(t,e,i){var o=t?"["+t+"]":"";return[".cb-outputRichText-container.ql-editor",o," {box-sizing: border-box;line-height: 1.42;height: 100%;outline: none;overflow-y: auto;tab-size: 4;-moz-tab-size: 4;text-align: left;white-space: pre-wrap;word-wrap: break-word;}.cb-outputRichText-container.ql-editor",o," > *",o," {cursor: text;}.cb-outputRichText-container.ql-editor",o," p",o,",.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o,",.cb-outputRichText-container.ql-editor",o," pre",o,",.cb-outputRichText-container.ql-editor",o," blockquote",o,",.cb-outputRichText-container.ql-editor",o," h1",o,",.cb-outputRichText-container.ql-editor",o," h2",o,",.cb-outputRichText-container.ql-editor",o," h3",o,",.cb-outputRichText-container.ql-editor",o," h4",o,",.cb-outputRichText-container.ql-editor",o," h5",o,",.cb-outputRichText-container.ql-editor",o," h6",o," {margin: 0;padding: 0;counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," > li",o,",.cb-outputRichText-container.ql-editor",o," ul",o," > li",o," {list-style-type: none;}.cb-outputRichText-container.ql-editor",o," ul",o," > li",o,"::before {content: '\\2022';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," {pointer-events: none;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o," *",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o," *",o," {pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before,.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {color: #777;cursor: pointer;pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before {content: '\\2611';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {content: '\\2610';}.cb-outputRichText-container.ql-editor",o," li",o,"::before {display: inline-block;white-space: nowrap;width: 1.2em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o,"::before {margin-left: -1.5em;margin-right: 0.3em;text-align: right;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o,"::before {margin-left: 0.3em;margin-right: -1.5em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o," {padding-right: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o," {counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment: list-0;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o,":before {content: counter(list-0, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-increment: list-1;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o,":before {content: counter(list-1, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-increment: list-2;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o,":before {content: counter(list-2, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-increment: list-3;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o,":before {content: counter(list-3, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-increment: list-4;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o,":before {content: counter(list-4, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-reset: list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-increment: list-5;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o,":before {content: counter(list-5, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-reset: list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-increment: list-6;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o,":before {content: counter(list-6, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-reset: list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-increment: list-7;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o,":before {content: counter(list-7, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-reset: list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-increment: list-8;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o,":before {content: counter(list-8, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-reset: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o," {counter-increment: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o,":before {content: counter(list-9, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," .ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-video",o," {display: block;max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-center",o," {margin: 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-right",o," {margin: 0 0 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-bg-black",o," {background-color: #000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-red",o," {background-color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-orange",o," {background-color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-bg-yellow",o," {background-color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-bg-green",o," {background-color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-bg-blue",o," {background-color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-bg-purple",o," {background-color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-color-white",o," {color: #fff;}.cb-outputRichText-container.ql-editor",o," .ql-color-red",o," {color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-color-orange",o," {color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-color-yellow",o," {color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-color-green",o," {color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-color-blue",o," {color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-color-purple",o," {color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-direction-rtl",o," {direction: rtl;text-align: inherit;}.cb-outputRichText-container.ql-editor",o," .ql-align-center",o," {text-align: center;}.cb-outputRichText-container.ql-editor",o," .ql-align-justify",o," {text-align: justify;}.cb-outputRichText-container.ql-editor",o," .ql-align-right",o," {text-align: right;}.cb-outputRichText-container.ql-editor",o," .ql-blank",o,"::before {color: rgba(0, 0, 0, 0.6);content: attr(data-placeholder);font-style: italic;left: 15px;pointer-events: none;position: absolute;right: 15px;}.cb-outputRichText-container.ql-editor",o," blockquote",o," {border-left: 4px solid #ccc;margin-bottom: 5px;margin-top: 5px;padding-left: 16px;}.cb-outputRichText-container.ql-editor",o," code",o,",.cb-outputRichText-container.ql-editor",o," pre",o," {background-color: #f0f0f0;border-radius: 3px;}.cb-outputRichText-container.ql-editor",o," pre",o," {white-space: pre-wrap;margin-bottom: 5px;margin-top: 5px;padding: 5px 10px;}.cb-outputRichText-container.ql-editor",o," code",o," {font-size: 85%;padding: 2px 4px;}.cb-outputRichText-container.ql-editor",o," pre.ql-syntax",o," {background-color: #23241f;color: #f8f8f2;overflow: visible;}.cb-outputRichText-container.ql-editor",o," img",o," {max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," {position: relative;padding-bottom: 56.25%;overflow: hidden;max-width: 100%;height: 0;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," .ql-video",o," {position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: none;}"].join("")}var r=[l];function c(t,e,i){var o=t?"."+t+"-host":"";return(e?":host {":o+" {")+"display: block;overflow: auto;}"}c.$scoped$=true;var d=[c];function u(t,e,i,o){const{h:n}=t;return[n("div",{className:e.containerClass,key:0})]}var a=e.registerTemplate(u);u.stylesheets=[];u.renderMode="light";if(r){u.stylesheets.push.apply(u.stylesheets,r)}if(d){u.stylesheets.push.apply(u.stylesheets,d)}u.stylesheetToken="community_builder-outputRichText_outputRichText";e.freezeTemplate(u);class q extends e.LightningElement{constructor(...t){super(...t);this.processedValue="";this.isDomReady=false;this.pendingEvent=void 0;this.enableQuillCss=false}get value(){return this.processedValue}set value(t){this.processedValue=o.processContents(t);this.processDataExpressions(this.processedValue);this.renderRichText()}setDataExpressions(t){this.processedValue=this.resolveDataExpressions(this.value,t);this.renderRichText()}get containerClass(){return i.classSet({"cb-outputRichText-container":true,"ql-editor":this.enableQuillCss}).toString()}resolveDataExpressions(t,e){let i=t;let o;while((o=n.DATA_BIND_REGEX.exec(t))!==null){const[t,n]=o;i=i.replace(t,e[n])}return i}processDataExpressions(t){let e;let i=[];while((e=n.DATA_BIND_REGEX.exec(t))!==null){const[,t]=e;i.push(t)}if(i.length>0){this.pendingEvent=new CustomEvent(n.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME,{detail:i,bubbles:true,composed:true})}}renderedCallback(){this.isDomReady=true;this.renderRichText()}renderRichText(){if(this.isDomReady){const t=this.querySelector("div");t.innerHTML=this.processedValue;if(this.pendingEvent){const t=this.pendingEvent;this.pendingEvent=null;this.dispatchEvent(t)}}}}q.renderMode="light";e.registerDecorators(q,{publicProps:{enableQuillCss:{config:0},value:{config:3}},publicMethods:["setDataExpressions"],fields:["processedValue","isDomReady","pendingEvent"]});var p=e.registerComponent(q,{tmpl:a,sel:"community_builder-outputRichText"});t.default=p;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/htmlEditor",["exports","lwc","community_builder/outputRichText"],function(e,t,r){function i(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var l=i(r);function u(e,t,r){var i=e?"."+e+"-host":"";return(t?":host {":i+" {")+"display: block;}"}u.$scoped$=true;var n=[u];function o(e,t,r,i){const{c:u}=e;return[u("community_builder-output-rich-text",l.default,{props:{value:t.richTextValue},key:0})]}var s=t.registerTemplate(o);o.stylesheets=[];o.renderMode="light";if(n){o.stylesheets.push.apply(o.stylesheets,n)}o.stylesheetToken="community_builder-htmlEditor_htmlEditor";t.freezeTemplate(o);class a extends t.LightningElement{constructor(...e){super(...e);this.internalValue=""}get richTextValue(){return this.internalValue}set richTextValue(e){this.internalValue=e}}a.renderMode="light";t.registerDecorators(a,{publicProps:{richTextValue:{config:3}},fields:["internalValue"]});var c=t.registerComponent(a,{tmpl:s,sel:"community_builder-htmlEditor"});e.default=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/sldsFlexibleLayout",["exports","lwc"],function(e,t){function n(e,t,n){var s=e?"."+e:"";return".content-container"+s+" {display: flex;flex-direction: column;}"}n.$scoped$=true;var s=[n];const l={classMap:{"content-container":true},key:0};const o={attrs:{name:"content"},key:1};const r=[];function i(e,t,n,s){const{s:i,h:a}=e;return[a("div",l,i("content",o,r,n))]}var a=t.registerTemplate(i);i.slots=["content"];i.stylesheets=[];i.renderMode="light";if(s){i.stylesheets.push.apply(i.stylesheets,s)}i.stylesheetToken="community_layout-sldsFlexibleLayout_sldsFlexibleLayout";t.freezeTemplate(i);class c extends t.LightningElement{}c.renderMode="light";var u=t.registerComponent(c,{tmpl:a,sel:"community_layout-sldsFlexibleLayout"});e.default=u;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/section",["exports","lwc","@salesforce/community/basePath"],function(n,t,e){function o(n){return n&&typeof n==="object"&&"default"in n?n:{default:n}}var i=o(e);function c(n,t,e){var o=n?"."+n:"";var i=n?"."+n+"-host":"";return(t?":host.comm-section-container {":i+".comm-section-container {")+"display: block;position: relative;padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-m,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-m,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-m,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-m,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}.columns-content"+o+" {display: flex;flex-direction: column;max-width: var(--dxp-c-section-columns-max-width, var(--dxp-s-section-columns-max-width));margin-left: auto;margin-right: auto;position: relative;}@media (min-width: 64em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start,\n var(--dxp-style-c-padding-top, var(--dxp-s-section-content-spacing-block-start))\n )\n var(\n --dxp-c-section-content-spacing-inline-end,\n var(--dxp-style-c-padding-right, var(--dxp-s-section-content-spacing-inline-end))\n )\n var(\n --dxp-c-section-content-spacing-block-end,\n var(--dxp-style-c-padding-bottom, var(--dxp-s-section-content-spacing-block-end))\n )\n var(\n --dxp-c-section-content-spacing-inline-start,\n var(--dxp-style-c-padding-left, var(--dxp-s-section-content-spacing-inline-start))\n );}.columns-content"+o+" {flex-direction: row;}}@media (max-width: 47.9375em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-s,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-s,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-s,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-s,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}}.background-image"+o+",.background-image-overlay"+o+" {position: absolute;width: 100%;height: 100%;top: 0;left: 0;right: 0;bottom: 0;z-index: 0;}"}c.$scoped$=true;var s=[c];const a=t.parseFragment`<div class="background-image${0}"${2}></div>`;const r=t.parseFragment`<div class="background-image-overlay${0}"${2}></div>`;const d={classMap:{"columns-content":true},key:4};const l={attrs:{name:"columns"},key:5};const g=[];function p(n,t,e,o){const{st:i,s:c,h:s}=n;return[i(a(),1),i(r(),3),s("div",d,c("columns",l,g,e))]}var m=t.registerTemplate(p);p.slots=["columns"];p.stylesheets=[];p.renderMode="light";if(s){p.stylesheets.push.apply(p.stylesheets,s)}p.stylesheetToken="community_layout-section_section";t.freezeTemplate(p);const u="/sfsites/c/cms/delivery/media";function b(){return i.default+u}function v(n){return n&&n!==""?b()+"/"+n:""}class h extends t.LightningElement{constructor(...n){super(...n);this.sectionConfig='{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}';this.backgroundImageOverlay=void 0;this.url="";this._background=void 0}get backgroundImageConfig(){return this._background}set backgroundImageConfig(n){try{this._background=JSON.parse(n);if(this._background.contentKey){this.url=v(this._background.contentKey)}}catch{this._background={}}}renderedCallback(){if(this.backgroundImageConfig){const n=this.querySelector(".background-image");const t=this.querySelector(".background-image-overlay");n.style.background=this.getBackgroundValue(this.backgroundImageConfig);if(this.backgroundImageConfig.url){t.style.backgroundColor=this.backgroundImageOverlay}}}connectedCallback(){this.classList.add("comm-section-container")}getBackgroundValue(n){const{bgPosition:t,bgSizeOrRepeat:e}=n;let o="";if(this.url){o+=" url("+this.url+") "+t+" "+e}return o}}h.renderMode="light";t.registerDecorators(h,{publicProps:{sectionConfig:{config:0},backgroundImageOverlay:{config:0},backgroundImageConfig:{config:3}},fields:["url","_background"]});var x=t.registerComponent(h,{tmpl:m,sel:"community_layout-section"});n.default=x;Object.defineProperty(n,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/column",["exports","lwc"],function(o,e){function n(o,e,n){var t=o?"."+o:"";var l=o?"."+o+"-host":"";return(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start-mobile)\n var(--dxp-c-column-container-spacing-inline-end-mobile)\n var(--dxp-c-column-container-spacing-block-end-mobile)\n var(--dxp-c-column-container-spacing-inline-start-mobile);display: flex;}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start-mobile)\n var(--dxp-c-column-content-spacing-inline-end-mobile)\n var(--dxp-c-column-content-spacing-block-end-mobile)\n var(--dxp-c-column-content-spacing-inline-start-mobile);display: flex;flex-direction: column;flex: 1;}@media (min-width: 64em) {"+(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start)\n var(--dxp-c-column-container-spacing-inline-end)\n var(--dxp-c-column-container-spacing-block-end)\n var(--dxp-c-column-container-spacing-inline-start);}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start)\n var(--dxp-c-column-content-spacing-inline-end)\n var(--dxp-c-column-content-spacing-block-end)\n var(--dxp-c-column-content-spacing-inline-start);}"+(e?":host.col-large-size_1-of-12 {":l+".col-large-size_1-of-12 {")+"width: 8.3333333333%;}"+(e?":host.col-large-size_2-of-12 {":l+".col-large-size_2-of-12 {")+"width: 16.6666666667%;}"+(e?":host.col-large-size_3-of-12 {":l+".col-large-size_3-of-12 {")+"width: 25%;}"+(e?":host.col-large-size_4-of-12 {":l+".col-large-size_4-of-12 {")+"width: 33.3333333333%;}"+(e?":host.col-large-size_5-of-12 {":l+".col-large-size_5-of-12 {")+"width: 41.6666666667%;}"+(e?":host.col-large-size_6-of-12 {":l+".col-large-size_6-of-12 {")+"width: 50%;}"+(e?":host.col-large-size_7-of-12 {":l+".col-large-size_7-of-12 {")+"width: 58.3333333333%;}"+(e?":host.col-large-size_8-of-12 {":l+".col-large-size_8-of-12 {")+"width: 66.6666666667%;}"+(e?":host.col-large-size_9-of-12 {":l+".col-large-size_9-of-12 {")+"width: 75%;}"+(e?":host.col-large-size_10-of-12 {":l+".col-large-size_10-of-12 {")+"width: 83.3333333333%;}"+(e?":host.col-large-size_11-of-12 {":l+".col-large-size_11-of-12 {")+"width: 91.6666666667%;}"+(e?":host.col-large-size_12-of-12 {":l+".col-large-size_12-of-12 {")+"width: 100%;}}"}n.$scoped$=true;var t=[n];const l={classMap:{"column-content":true},key:0};const c={attrs:{name:"column"},key:1};const s=[];function i(o,e,n,t){const{s:i,h:a}=o;return[a("div",l,i("column",c,s,n))]}var a=e.registerTemplate(i);i.slots=["column"];i.stylesheets=[];i.renderMode="light";if(t){i.stylesheets.push.apply(i.stylesheets,t)}i.stylesheetToken="community_layout-column_column";e.freezeTemplate(i);const r=12;const d="col-size_12-of-12";class h extends e.LightningElement{constructor(...o){super(...o);this._columnWidth=r}get columnWidth(){return this._columnWidth}set columnWidth(o){this._columnWidth=o;this.updateHostCssClasses()}connectedCallback(){this.updateHostCssClasses()}updateHostCssClasses(){const o=[d,this.colWidthClass];let e,n;for(e=0;e<this.classList.length;e++){n=this.classList[e];this.classList.remove(n)}for(e=0;e<o.length;e++){n=o[e];this.classList.add(n)}}get colWidthClass(){return this.columnWidth?`col-large-size_${this.columnWidth}-of-12`:"col"}}h.renderMode="light";e.registerDecorators(h,{publicProps:{columnWidth:{config:3}},fields:["_columnWidth"]});var u=e.registerComponent(h,{tmpl:a,sel:"community_layout-column"});o.default=u;Object.defineProperty(o,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("@view/service_Not_Available",["exports","lwc","community_builder/htmlEditor","community_layout/column","community_layout/section","community_layout/sldsFlexibleLayout"],function(t,e,i,o,l,n){function u(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var s=u(i);var a=u(o);var c=u(l);var r=u(n);var m=void 0;const y={key:0};const d={slot:"content"};const _={slot:"columns"};const f={slot:"column"};function p(t,e,i,o){const{c:l}=t;return[l("community_layout-slds-flexible-layout",r.default,y,[l("community_layout-section",c.default,{attrs:d,props:{sectionConfig:e.attributes.community_layoutsection_0_2.sectionConfig},key:1},[l("community_layout-column",a.default,{attrs:_,props:{columnWidth:e.attributes.community_layoutcolumn_0_0.columnWidth},key:2},[l("community_builder-html-editor",s.default,{attrs:f,props:{richTextValue:e.attributes.community_builderhtmleditor_0_1.richTextValue},key:3})])])])]}var v=e.registerTemplate(p);p.stylesheets=[];p.renderMode="light";p.stylesheetToken="___at___view-736572766963655f4e6f745f417661696c61626c65_service_Not_Available";e.freezeTemplate(p);class b{static get html(){return v}static get attributes(){return function t(e){return{community_builderhtmleditor_0_1:{richTextValue:'<div style="display: flex; align-items: center; flex-direction: column; margin: 60px 25px 40px 25px;"><div style="background: url(assets/Images/serviceNotAvailable/serviceNotAvailable.svg) center no-repeat; background-size: contain; height: 331px; width: 100%; max-width: 538px;"></div></div><div style="margin: 0 25px; text-align: center;"><p><b style="font-size: 3.4em">Looks like the site is temporarily unavailable</b></p><br><p><span style="font-size: 2em;">Please try again in a bit.</span></p></div>'},community_layoutsection_0_2:{sectionConfig:'{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}'},community_layoutcolumn_0_0:{columnWidth:"12"}}}}}var h=e.registerComponent(b,{tmpl:m,sel:"@view-736572766963655f4e6f745f417661696c61626c65"});t.default=h;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })(); |
| New file |
| | |
| | | (function() { LWR.define("community_layout/simpleThemeLayout",["exports","lwc"],function(e,t){function o(e,t,o){var n=e?"["+e+"]":"";var a=e?"["+e+"-host]":"";return(t?":host {":a+" {")+"display: flex;flex-flow: column;height: 100%;}header"+n+" {display: flex;justify-content: center;padding: var(--dxp-c-header-container-spacing-block-start)\n var(--dxp-c-header-container-spacing-inline-end)\n var(--dxp-c-header-container-spacing-block-end)\n var(--dxp-c-header-container-spacing-inline-start);}.header-content"+n+" {max-width: var(--dxp-c-header-content-max-width, var(--dxp-s-header-content-max-width));flex: 1 1 auto;}main"+n+" {flex: 1 0 auto;}footer"+n+" {display: flex;justify-content: center;padding: var(--dxp-c-footer-container-spacing-block-start)\n var(--dxp-c-footer-container-spacing-inline-end)\n var(--dxp-c-footer-container-spacing-block-end)\n var(--dxp-c-footer-container-spacing-inline-start);}.footer-content"+n+" {max-width: var(--dxp-c-footer-content-max-width, var(--dxp-s-footer-content-max-width));flex: 1 1 auto;}@media (max-width: 48em) {header"+n+" {padding: var(--dxp-c-header-container-spacing-block-start-mobile)\n var(--dxp-c-header-container-spacing-inline-end-mobile)\n var(--dxp-c-header-container-spacing-block-end-mobile)\n var(--dxp-c-header-container-spacing-inline-start-mobile);}.header-content"+n+" {max-width: var(\n --dxp-c-header-content-max-width-mobile,\n var(--dxp-s-header-content-max-width-mobile)\n );}footer"+n+" {padding: var(--dxp-c-footer-container-spacing-block-start-mobile)\n var(--dxp-c-footer-container-spacing-inline-end-mobile)\n var(--dxp-c-footer-container-spacing-block-end-mobile)\n var(--dxp-c-footer-container-spacing-inline-start-mobile);}.footer-content"+n+" {max-width: var(\n --dxp-c-footer-content-max-width-mobile,\n var(--dxp-s-footer-content-max-width-mobile)\n );}}"}var n=[o];const a={"data-f6-region":""};const r={classMap:{"header-content":true},key:1};const i={attrs:{name:"header"},key:2};const c=[];const d={"data-f6-region":"",role:"main"};const s={key:4};const l={classMap:{"footer-content":true},key:6};const p={attrs:{name:"footer"},key:7};function h(e,t,o,n){const{s:h,h:m}=e;return[m("header",{style:t.headerStyle,attrs:a,key:0},[m("div",r,[h("header",i,c,o)])]),m("main",{style:t.mainStyle,attrs:d,key:3},[h("",s,c,o)]),m("footer",{style:t.footerStyle,attrs:a,key:5},[m("div",l,[h("footer",p,c,o)])])]}var m=t.registerTemplate(h);h.slots=["","footer","header"];h.stylesheets=[];if(n){h.stylesheets.push.apply(h.stylesheets,n)}h.stylesheetToken="community_layout-simpleThemeLayout_simpleThemeLayout";t.freezeTemplate(h);class f extends t.LightningElement{constructor(...e){super(...e);this.headerBackgroundColor=void 0;this.mainBackgroundColor=void 0;this.footerBackgroundColor=void 0}get headerStyle(){return`background-color: ${this.headerBackgroundColor}`}get footerStyle(){return`background-color: ${this.footerBackgroundColor}`}get mainStyle(){return`background-color: ${this.mainBackgroundColor}`}}t.registerDecorators(f,{publicProps:{headerBackgroundColor:{config:0},mainBackgroundColor:{config:0},footerBackgroundColor:{config:0}}});var g=t.registerComponent(f,{tmpl:m,sel:"community_layout-simpleThemeLayout"});e.default=g;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("@view/serviceNotAvailable",["exports","lwc","webruntime/routerContainer","community_layout/simpleThemeLayout"],function(e,t,r,n){function o(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var u=o(r);var i=o(n);var a=void 0;const c={key:0};const l={key:1};function s(e,t,r,n){const{c:o}=e;return[o("community_layout-simple-theme-layout",i.default,c,[o("webruntime-router-container",u.default,l)])]}var f=t.registerTemplate(s);s.stylesheets=[];s.renderMode="light";s.stylesheetToken="___at___view-736572766963654e6f74417661696c61626c65_serviceNotAvailable";t.freezeTemplate(s);class m{static get html(){return f}static get attributes(){return function e(t){return{}}}}var v=t.registerComponent(m,{tmpl:a,sel:"@view-736572766963654e6f74417661696c61626c65"});e.default=v;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })(); |
| New file |
| | |
| | | (function() { LWR.define("community_builder/richTextUtil",["exports","@salesforce/community/basePath"],function(e,t){function n(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var c=n(t);const r="/sfsites/c";const s=/\{!contentAsset\.(.+?)\.(.+?)\}/g;const o=/\{!cmsMedia\.(.+?)\}/g;function l(e){let t=e;let n;while((n=o.exec(e))!==null){const[e,c]=n;let r=f(c);t=t.replace(e,r)}return u(t)}function u(e){let t=e;let n;while((n=s.exec(e))!==null){const[e,c,r]=n;let s=a(c,r);t=t.replace(e,s)}return t}function i(){return c.default+r}function f(e){return`${i()}/cms/delivery/media/${e}`}function a(e,t){return`${i()}/file-asset/${e}?v=${t}`}e.getCMSContentUrl=f;e.getPathPrefix=i;e.processContentAssets=u;e.processContents=l;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();LWR.define('@salesforce/community/Id', [], function() { return "0DB10000000GnHmGAK"; });(function() { LWR.define("dxp_util/common",["exports"],function(e){function t(e,t,r){const n=r||{};let i=n.leading;let c;return function r(){const u=Array.prototype.slice.apply(arguments);if(i){e.apply(this,u);i=false}clearTimeout(c);c=setTimeout(function(){e.apply(this,u);i=n.leading},t)}}const r={tab:9,backspace:8,enter:13,escape:27,space:32,pageup:33,pagedown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46,shift:16};function n(e,t){return function r(){try{return e.apply(this,arguments)}catch(e){return t?.apply(this,[e].concat(arguments))}}}function i(e,t){if(typeof e!=="string"){return e??{}}return n(JSON.parse,t)(e)??{}}function c(e){return JSON.stringify(e,(e,t)=>t?t:undefined)}function u(e){if(Object(e)!==e){return e}if(e instanceof Set){return new Set(e)}if(e instanceof Date){return new Date(e)}if(typeof e==="function"){return e.bind({})}if(Array.isArray(e)){const t=[];const r=e.length;for(let n=0;n<r;n++){t.push(u(e[n]))}return t}const t=Object.create({});let r=Object.keys(e);if(e instanceof Error){r=Object.getOwnPropertyNames(e)}const n=r.length;for(let i=0;i<n;i++){const n=r[i];t[n]=u(e[n])}return t}function o(e,...t){if(!t.length)return e;const r=t.shift();if(s(e)&&s(r)){for(const t in r){if(s(r[t])){if(!e[t])Object.assign(e,{[t]:{}});o(e[t],r[t])}else if(Array.isArray(r[t])&&Array.isArray(e[t])){e[t]=[...e[t],...r[t]]}else{Object.assign(e,{[t]:r[t]})}}}return o(e,...t)}function s(e){return e&&typeof e==="object"&&!Array.isArray(e)}const a=(...e)=>t=>e.filter(e=>typeof e==="function").reduce((e,t)=>t(e),t);const y=(...e)=>t=>e.filter(e=>typeof e==="function").reduceRight((e,t)=>t(e),t);const g=e=>t=>t.forEach(e);const f=e=>t=>t.find(e);const M=e=>t=>t.filter(e);const j=e=>t=>t.map(e);const l=e=>t=>t.every(e);const I=e=>t=>Object.keys(t).forEach(e);const N=e=>t=>y(l(e),Object.keys)(t);function p(e,t,r){const n=Array.isArray(e)?e:[];const i=Array.isArray(t)?t:[];const c=i.filter(e=>{const t=n.findIndex(t=>t[r]===e[r]);if(t>=0){n[t]=e}return t<0});return n.concat(c)}const D=e=>function t(...r){if(r.length>=e.length){return e.apply(this,r)}return(...e)=>t.apply(this,r.concat(e))};function A(e){return typeof e==="function"}const O=e=>A(e)?e():e;const b=D((e,t,r)=>O(e)?O(t):O(r));const z=D((e,t)=>b(e,t,null));const m=e=>t=>t(e);const h=(...e)=>t=>e?.filter(A).some(m(t));const d=(...e)=>t=>e?.filter(A).every(m(t));function T(e){return e!==Object(e)}function C(e){return Array.isArray(e)?"array":typeof e}function E(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function w(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?E(Object(r),!0).forEach(function(t){L(e,t,r[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):E(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}function L(e,t,r){t=Y(t);if(t in e){Object.defineProperty(e,t,{value:r,enumerable:true,configurable:true,writable:true})}else{e[t]=r}return e}function Y(e){var t=Q(e,"string");return typeof t==="symbol"?t:String(t)}function Q(e,t){if(typeof e!=="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==undefined){var n=r.call(e,t||"default");if(typeof n!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}const S=D((e,t)=>{if(R(t)){return e}const r=t.split(".");let n=e??{};let i=0;for(i=0;i<r.length-1;i++){if(R(n[r[i]])){return null}n=n[r[i]]}return n[r[i]]});const x=D((e,t,r)=>{if(R(t)){return}const n=t.split(".");let i=e;let c=0;for(c=0;c<n.length-1;c++){i[n[c]]=i[n[c]]||{};i=i[n[c]]}i[n[c]]=r});const v=D((e,t,r,n)=>{const i=S(e,r);x(t,n,i)});function k(e,t,r,n){I(i=>{if(n){v(e,t,r[i],i)}else{v(e,t,i,r[i])}})(r??{});return t}function P(...e){const[t,r,...n]=e;return t?.[r]?.apply(t,n)}const U=e=>[...Array(e).keys()];const Z=e=>!R(e);function R(e){if(Array.isArray(e)){return e.length===0}const t=typeof e;switch(t){case"string":return e==="";case"boolean":case"number":case"function":return false;case"object":return Object.keys(e??{}).length===0;default:return e==null}}function _(e,t=""){return Object.prototype.hasOwnProperty.call(e??{},t)}const F="__sfdc_default__";function V(e){return w({patchRecord:true,getter:(e,t)=>()=>S(e,t)},e)}function $(e){return Z(e?.value?.fields)}function H(e){return e?.displayValue||e?.value||e}function G(e,t){if(J(e)){return t??""}return t}function J(e){return typeof e==="object"&&!Array.isArray(e)&&_(e,"value")&&_(e,"displayValue")}function B(e,t,r={}){if(R(e)||T(e)||A(e)){return e}t=V(t);if(Array.isArray(e)){return e.map(e=>B(e,t))}return Object.entries(e).reduce((r,n)=>{const[i,c]=n;const u=typeof c;if(T(c)){Object.defineProperty(r,i,{get(){return t.getter(e,i)()},enumerable:true})}else if(Array.isArray(c)){r[i]=c.map(e=>B(e,t))}else if(A(c)){r[i]=c}else if(u==="object"){const n={};if(t.patchRecord){Object.defineProperties(n,{[F]:{get(){return G(c,t.getter(e,i)())},enumerable:true},_rawValue:{get(){return t.getter(n,"value")()},enumerable:true},_displayValue:{get(){return t.getter(n,"displayValue")()},enumerable:true}})}B(c,t,n);if($(n)){const e=n.value.fields;Object.entries(e).forEach(e=>{const[t,r]=e;if(!_(n,t)){Object.defineProperty(n,t,{get(){if($(r)){return r}return H(r)},enumerable:true})}})}r[i]=n}return r},r)}function W(e,t,r){const n=Number.parseInt(e,10);if(n<t)return t;if(n>r)return r;return n}function K(e){return e!==""&&!isNaN(Number(e))&&/^-?[0-9a-fA-Fx.]*$/.exec(e)}const q=["%","cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh"];function X(e,t=q){const r=/^([^a-z%]*)(.*)/.exec(e);let n=r[1];let i=r[2];if(!K(n)||!t.includes(i)){n="";i=""}return{value:n,unit:i}}const ee=e=>typeof e==="object"?e:{};const te={toString(){return Object.keys(this).map(e=>{const[t,r]=e.split(":");const n=X(this[e]);let i;if(Z(n.unit)){i=this[e]}else{i=Z(this[e])?`${this[e]}${r??""}`:"initial"}return`${t}: ${i};`}).join(" ")}};function re(e){return Object.assign(Object.create(te),ee(e))}const ne="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDEiIHZpZXdCb3g9IjAgMCAxNDA2IDQ0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHk9IjAuMzMwMDc4IiB3aWR0aD0iMTQwNiIgaGVpZ2h0PSI0NDAiIGZpbGw9IiNGM0YzRjMiLz4KPHBhdGggZD0iTTY3OCAyNTJDNjcxLjkyIDI1MiA2NjcgMjQ3LjA4IDY2NyAyNDFWMTk5QzY2NyAxOTIuOTIgNjcxLjkyIDE4OCA2NzggMTg4SDcyOEM3MzQuMDggMTg4IDczOSAxOTIuOTIgNzM5IDE5OVYyNDFDNzM5IDI0Ny4wOCA3MzQuMDggMjUyIDcyOCAyNTJINjc4VjI1MlpNNjczIDIzMS43Nkw2ODEuODggMjI0LjhDNjgyLjU2IDIyNC4yOCA2ODMuMjggMjI0IDY4NC4wNCAyMjRDNjg0LjggMjI0IDY4NS41NiAyMjQuMjggNjg2LjIgMjI0LjhMNjk2LjY0IDIzMy4yNEw3MTQuMDggMjE4LjhDNzE0Ljc2IDIxOC4yNCA3MTUuNDggMjE4IDcxNi4yNCAyMThDNzE3IDIxOCA3MTcuNzYgMjE4LjI4IDcxOC40IDIxOC44TDczMyAyMzAuNDhWMTk5QzczMyAxOTYuMjQgNzMwLjc2IDE5NCA3MjggMTk0SDY3OEM2NzUuMjQgMTk0IDY3MyAxOTYuMjQgNjczIDE5OVYyMzEuNzZWMjMxLjc2Wk02OTUgMjIwQzY4OS40OCAyMjAgNjg1IDIxNS41MiA2ODUgMjEwQzY4NSAyMDQuNDggNjg5LjQ4IDIwMCA2OTUgMjAwQzcwMC41MiAyMDAgNzA1IDIwNC40OCA3MDUgMjEwQzcwNSAyMTUuNTIgNzAwLjUyIDIyMCA2OTUgMjIwWk02OTUgMjE0QzY5Ny4yIDIxNCA2OTkgMjEyLjIgNjk5IDIxMEM2OTkgMjA3LjggNjk3LjIgMjA2IDY5NSAyMDZDNjkyLjggMjA2IDY5MSAyMDcuOCA2OTEgMjEwQzY5MSAyMTIuMiA2OTIuOCAyMTQgNjk1IDIxNFpNNjc4IDI0Nkg3MjhDNzMwLjc2IDI0NiA3MzMgMjQzLjc2IDczMyAyNDFWMjM5LjY0QzczMyAyMzguNjggNzMyLjYgMjM3Ljg0IDczMS44NCAyMzcuMjRMNzE2LjI0IDIyNC43Nkw2OTguOCAyMzkuMjRDNjk4LjE2IDIzOS43NiA2OTcuNCAyNDAgNjk2LjY0IDI0MEM2OTUuODggMjQwIDY5NS4xNiAyMzkuOCA2OTQuNDggMjM5LjI0TDY4NC4wNCAyMzAuNzZMNjc0LjE2IDIzOC41MkM2NzMuNCAyMzkuMTIgNjczIDIzOS45NiA2NzMgMjQwLjkyVjI0MUM2NzMgMjQzLjc2IDY3NS4yNCAyNDYgNjc4IDI0NlYyNDZaIiBmaWxsPSIjQUJBQ0FEIi8+Cjwvc3ZnPg==";const ie="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMxMiIgaGVpZ2h0PSI0NDAiIHZpZXdCb3g9IjAgMCAxMzEyIDQ0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgb3BhY2l0eT0iMC4yODMxNTgiIHdpZHRoPSIxMzEyIiBoZWlnaHQ9IjQ0MCIgZmlsbD0iI0YzRjNGMyIvPgo8cGF0aCBkPSJNNjM5LjA4IDE5MkM2NDAuNzYgMTkyIDY0Mi42OCAxOTIuNTYgNjQ0LjY4IDE5My42OEw2NzguNzYgMjEyLjg0QzY4Mi4yOCAyMTQuOCA2ODQgMjE3LjQgNjg0IDIyMEM2ODQgMjIyLjYgNjgyLjMyIDIyNS4xNiA2NzguNzYgMjI3LjE2TDY0NC42OCAyNDYuMzJDNjQyLjY4IDI0Ny40NCA2NDAuNzYgMjQ4IDYzOS4wOCAyNDhDNjM0Ljg4IDI0OCA2MzIgMjQ0LjY0IDYzMiAyMzguOTJWMjAxLjA4QzYzMiAxOTUuMzYgNjM0Ljg4IDE5MiA2MzkuMDggMTkyVjE5MloiIGZpbGw9IiNBQkFDQUQiLz4KPC9zdmc+";function ce(e){return e&&e!==""}function ue(e){return ce(e)?`url("${e}")`:""}function oe(e){return a(se,ue)(e)}function se(e){return ce(e)?e:ne}const ae=e=>t=>Array.from(t?.querySelectorAll(e));const ye=D((e,t)=>t?.toString().split(e)??[]);function ge(e=""){e=e?.toString();return!e||e.length===0?"":`${e.charAt(0).toUpperCase()}${e.slice(1)}`}function fe(e){return y(M(e=>e?.length>0),ye("/"))(e)}function Me(e=0){return new Promise(t=>{setTimeout(t,e)})}function je(){return new Promise(e=>{requestAnimationFrame(e)})}const le="l";const Ie="m";const Ne="s";const pe=[le,Ie,Ne];const De={top:"flex-start",left:"flex-start",bottom:"flex-end",right:"flex-end",center:"center"};function Ae(e,t,r){const n={};pe.forEach(i=>{e.forEach(e=>{const c=`${t}-${i}-${e.customTitle||e.name}`;const u=`${t}-${i}-${e.name}`;n[`${c}:${e.unit}`]=e.name.match(/alignment/gi)&&Object.keys(r).includes(u)?De[r[u]]:r[u]})});return n}function Oe(e,t,r){const n={};if(!r||!e||!t){return{}}const i=r.split(e);i.filter(e=>{const r=e.match(new RegExp(t,"g"))||[];return e&&r.length===1&&r[0]===t}).forEach(e=>{const[r,i]=e.split(t);n[r.trim()]=i.trim()});return n}const be=150;const ze={top:0,right:0,bottom:0,left:0};function me(e,...t){return t.reduce((e,t,r)=>e?.replaceAll(`{${r}}`,t),e)}e.DEBOUNCE_TIMEOUT=be;e.EMPTY_RECT=ze;e.KeyCodes=r;e.PLACEHOLDER_DATA_URI=ne;e.SFDC_DEFAULT=F;e.VIDEO_PLACEHOLDER_DATA_URI=ie;e.and=d;e.apply=P;e.compose=y;e.curry=D;e.debounce=t;e.deepCopy=u;e.deepMerge=o;e.empty=R;e.every=l;e.everyKey=N;e.fieldToValue=H;e.filter=M;e.find=f;e.forEach=g;e.forEachKey=I;e.formatString=me;e.get=S;e.getify=B;e.hasOwnProperty=_;e.hasUri=ce;e.ifElse=b;e.ifVal=z;e.isField=J;e.isFunction=A;e.isNumber=K;e.isPrimitive=T;e.map=j;e.mapObject=k;e.mapping=v;e.mergeUniqueRecords=p;e.nextFrame=je;e.notEmpty=Z;e.or=h;e.parseUnit=X;e.pipe=a;e.prependFormFactor=Ae;e.propertySet=re;e.querySelectorAll=ae;e.range=W;e.safeCssUrl=oe;e.safeFieldValue=G;e.safeImageSrc=se;e.safeParseJson=i;e.set=x;e.split=ye;e.splitStringToObj=Oe;e.splitUrl=fe;e.stringify=c;e.timeout=Me;e.toCapitalized=ge;e.toCssUrl=ue;e.toIndexes=U;e.tryCatch=n;e.typeOf=C;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/siteInfo",["exports","@salesforce/community/basePath","dxp_util/common","@salesforce/i18n/lang","@salesforce/community/Id","@salesforce/site/Id"],function(t,e,n,u,a,r){function o(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var s=o(e);var f=o(u);var i=o(a);var c=o(r);const l="/sfsites/c";const d=`${s.default}${l}`;const P=n.curry((t,e,n)=>e?n:`${s.default}${t??""}${n}`);const m=P(l);const h=P("");const I={CurrentLanguage:f.default.replace("-","_"),CommunityId:i.default,CurrentLocale:f.default,SiteId:c.default};function _(){return d}function p(t,e=false){return h(e,t)}function y(t,e=false){return m(e,t)}function S(t){return t?.startsWith(s.default)}t.CMS_PATH_PREFIX=l;t.SiteInfo=I;t.buildSiteCmsPath=y;t.buildSitePath=p;t.constructUrlPath=P;t.getPathPrefix=_;t.isSitePath=S;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/contentInfo",["exports","dxp_util/siteInfo"],function(t,e){const n=/^\/cms\//;const o=/^\/img\//;const r=/^\/assets\//;function s(t){return n.test(t)}function u(t){return o.test(t)}function c(t){return r.test(t)}function i(t){return s(t)||u(t)}function l(t){return c(t)?e.buildSitePath(t):i(t)?e.buildSiteCmsPath(t):t}function a(t){const{url:n,isExternal:o}=t;return e.buildSiteCmsPath(n,o)}function f(t){return{url:t.contentNodes?.source?.url??"",isExternal:!!t.contentNodes?.source?.isExternal,altText:t.contentNodes?.altText?.value??""}}function d(t=[]){return t.filter(t=>t.contentKey&&t.contentNodes).reduce((t,e)=>{t.set(e.contentKey,f(e));return t},new Map)}function m(t,e){const n=d(t?.items??[]);const[o]=e;const r=n.get(o);const s=r?{url:a(r),altText:r.altText}:{};return s}function x(t){const n=t?.contentBody??{};const o=n["sfdc_cms:media"]??{};const r={url:e.buildSiteCmsPath(o.url??"",o.source?.type==="url"),altText:n.altText??""};return r}t.convertItemsToContentKeyMap=d;t.extractImageInfo=m;t.extractImageInfoV2=x;t.getCMSContentUrl=a;t.isCmsAsset=c;t.isCmsResource=s;t.isResource=i;t.isStaticImageResource=u;t.resolveUrl=l;t.toUrlInfo=f;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_util/idGenerator",["exports","dxp_util/common"],function(e,t){const n=["","one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"];const r=["","","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"];function o(e=0){if(typeof e==="string"){e=parseInt(e,10)}if(e<0)throw new Error("Negative numbers are not supported.");if(e===0)return"zero";if(e<20){return n[e]}const t=e.toString();if(t.length===2){return`${r[t[0]]}${n[t[1]]?"-"+n[t[1]]:""}`}if(t.length===3){if(t[1]==="0"&&t[2]==="0"){return`${n[t[0]]}-hundred`}const e=o(+(t[1]+t[2]));return`${n[t[0]]}-hundred-${e}`}if(t.length===4){const e=+(t[1]+t[2]+t[3]);if(e===0){return n[t[0]]+"-thousand"}if(e<100){return`${n[t[0]]}-thousand-${o(e)}`}return`${n[t[0]]}-thousand-${o(e)}`}throw new Error(`${e} are not supported.`)}const i=e=>t=>o(t+e);const s=e=>n=>e??false?t.toCapitalized(n):n;const u=e=>t=>`${e}${t}`;function a(e,n,r,o){return t.compose(u(r),s(n),i(e))(o)}const f=t.curry(a);function d(e,n,r={baseIndex:0,capitalCase:false}){return t.compose(t.map(f(r.baseIndex,r.capitalCase,e)),t.toIndexes)(n)}function c(){return Math.floor((new Date).valueOf()*Math.random())}e.fnGenerateId=f;e.generateId=a;e.generateIds=d;e.generateUniqueNumber=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("dxp_data_provider/dataProviderUtils",["exports","dxp_util/contentInfo","@app/isDesignMode","dxp_util/idGenerator"],function(e,t,n,r){function o(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var i=o(n);function _(e){return i.default?r.generateIds("",e).map(e=>({key:e,data:{}})):[]}const d=/\{!Item\.(.+?)\}/g;const l="dxp_data_provider__getfielddata";const a="_";const u=`${a}data`;const c={RECORD:"sfdc_record__",CMS:"sfdc_cms__"};const s=e=>{const t=e.split(".");if(t.length>0&&t[t.length-1].startsWith("_")){const e=t[t.length-1];const n=t.slice(0,t.length-1);if(t.length===1){return[null,e]}return[n,e]}return[e,null]};function f(e){if(e?.includes("-")){return e.split("-").slice(-1)[0]}return e}function A(e,t){return!e?t:`${e}.${t}`}Object.defineProperty(e,"resolve",{enumerable:true,get:function(){return t.resolveUrl}});e.DATA_BIND_REGEX=d;e.DATA_PROVIDER_DATA_ACCESS=u;e.DATA_PROVIDER_FIELD_METADATA_PREFIX=a;e.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME=l;e.SFDC_TYPES=c;e.buildFieldPath=A;e.generateMockCollection=_;e.getFieldAndMetadata=s;e.normalizeContentKey=f;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("lightning/utils",["exports"],function(t){const e=t=>typeof t==="string"?t.trim().split(/\s+/).reduce((t,e)=>{t[e]=true;return t},{}):t;const n={add(t){Object.assign(this,e(t));return this},invert(){Object.keys(this).forEach(t=>{this[t]=!this[t]});return this},toString(){return Object.keys(this).filter(t=>this[t]).join(" ")}};function r(t){return Object.assign(Object.create(n),e(t))}const i=/input|select|textarea|button|object/;function s(t){const{width:e,height:n}=t.getBoundingClientRect();const r=e>0||n>0;return r&&window.getComputedStyle(t).visibility!=="hidden"}function c(t){const e=t.tagName.toLowerCase();const n=i.test(e)&&!t.disabled||e==="a"&&t.href;return n&&s(t)}function o(t){const e=t.getAttribute("data-navigation")==="enable";const n=t.tabIndex;return n>=0&&c(t)||e}function u(t){return[].slice.call(t.querySelectorAll("*"),0).filter(o)}function a(t){const e=Array.prototype.slice.call(arguments,1);let n=e;if(Array.isArray(e[0])){[n]=e}return t.replace(/{(\d+)}/g,(t,e)=>{const r=n[e];return r!==null&&r!==undefined?r:""})}t.classSet=r;t.formatLabel=a;t.queryFocusable=u;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/outputRichText",["exports","lwc","lightning/utils","community_builder/richTextUtil","dxp_data_provider/dataProviderUtils"],function(t,e,i,o,n){function l(t,e,i){var o=t?"["+t+"]":"";return[".cb-outputRichText-container.ql-editor",o," {box-sizing: border-box;line-height: 1.42;height: 100%;outline: none;overflow-y: auto;tab-size: 4;-moz-tab-size: 4;text-align: left;white-space: pre-wrap;word-wrap: break-word;}.cb-outputRichText-container.ql-editor",o," > *",o," {cursor: text;}.cb-outputRichText-container.ql-editor",o," p",o,",.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o,",.cb-outputRichText-container.ql-editor",o," pre",o,",.cb-outputRichText-container.ql-editor",o," blockquote",o,",.cb-outputRichText-container.ql-editor",o," h1",o,",.cb-outputRichText-container.ql-editor",o," h2",o,",.cb-outputRichText-container.ql-editor",o," h3",o,",.cb-outputRichText-container.ql-editor",o," h4",o,",.cb-outputRichText-container.ql-editor",o," h5",o,",.cb-outputRichText-container.ql-editor",o," h6",o," {margin: 0;padding: 0;counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o,",.cb-outputRichText-container.ql-editor",o," ul",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," > li",o,",.cb-outputRichText-container.ql-editor",o," ul",o," > li",o," {list-style-type: none;}.cb-outputRichText-container.ql-editor",o," ul",o," > li",o,"::before {content: '\\2022';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," {pointer-events: none;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o," *",o,",.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o," *",o," {pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before,.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {color: #777;cursor: pointer;pointer-events: all;}.cb-outputRichText-container.ql-editor",o," ul[data-checked='true']",o," > li",o,"::before {content: '\\2611';}.cb-outputRichText-container.ql-editor",o," ul[data-checked='false']",o," > li",o,"::before {content: '\\2610';}.cb-outputRichText-container.ql-editor",o," li",o,"::before {display: inline-block;white-space: nowrap;width: 1.2em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o,"::before {margin-left: -1.5em;margin-right: 0.3em;text-align: right;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o,"::before {margin-left: 0.3em;margin-right: -1.5em;}.cb-outputRichText-container.ql-editor",o," li:not(.ql-direction-rtl)",o," {padding-left: 1.5em;}.cb-outputRichText-container.ql-editor",o," li.ql-direction-rtl",o," {padding-right: 1.5em;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o," {counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment: list-0;}.cb-outputRichText-container.ql-editor",o," ol",o," li",o,":before {content: counter(list-0, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-increment: list-1;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o,":before {content: counter(list-1, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-1",o," {counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-increment: list-2;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o,":before {content: counter(list-2, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-2",o," {counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-increment: list-3;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o,":before {content: counter(list-3, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-3",o," {counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-increment: list-4;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o,":before {content: counter(list-4, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-4",o," {counter-reset: list-5 list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-increment: list-5;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o,":before {content: counter(list-5, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-5",o," {counter-reset: list-6 list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-increment: list-6;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o,":before {content: counter(list-6, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-6",o," {counter-reset: list-7 list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-increment: list-7;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o,":before {content: counter(list-7, lower-alpha) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-7",o," {counter-reset: list-8 list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-increment: list-8;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o,":before {content: counter(list-8, lower-roman) '. ';}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-8",o," {counter-reset: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o," {counter-increment: list-9;}.cb-outputRichText-container.ql-editor",o," ol",o," li.ql-indent-9",o,":before {content: counter(list-9, decimal) '. ';}.cb-outputRichText-container.ql-editor",o," .ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1:not(.ql-direction-rtl)",o," {padding-left: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 3em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-1.ql-direction-rtl.ql-align-right",o," {padding-right: 4.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2:not(.ql-direction-rtl)",o," {padding-left: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 6em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-2.ql-direction-rtl.ql-align-right",o," {padding-right: 7.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3:not(.ql-direction-rtl)",o," {padding-left: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 9em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-3.ql-direction-rtl.ql-align-right",o," {padding-right: 10.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4:not(.ql-direction-rtl)",o," {padding-left: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 12em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-4.ql-direction-rtl.ql-align-right",o," {padding-right: 13.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5:not(.ql-direction-rtl)",o," {padding-left: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 15em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-5.ql-direction-rtl.ql-align-right",o," {padding-right: 16.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6:not(.ql-direction-rtl)",o," {padding-left: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 18em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-6.ql-direction-rtl.ql-align-right",o," {padding-right: 19.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7:not(.ql-direction-rtl)",o," {padding-left: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 21em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-7.ql-direction-rtl.ql-align-right",o," {padding-right: 22.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8:not(.ql-direction-rtl)",o," {padding-left: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 24em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-8.ql-direction-rtl.ql-align-right",o," {padding-right: 25.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9:not(.ql-direction-rtl)",o," {padding-left: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 27em;}.cb-outputRichText-container.ql-editor",o," li.ql-indent-9.ql-direction-rtl.ql-align-right",o," {padding-right: 28.5em;}.cb-outputRichText-container.ql-editor",o," .ql-video",o," {display: block;max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-center",o," {margin: 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-video.ql-align-right",o," {margin: 0 0 0 auto;}.cb-outputRichText-container.ql-editor",o," .ql-bg-black",o," {background-color: #000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-red",o," {background-color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-bg-orange",o," {background-color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-bg-yellow",o," {background-color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-bg-green",o," {background-color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-bg-blue",o," {background-color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-bg-purple",o," {background-color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-color-white",o," {color: #fff;}.cb-outputRichText-container.ql-editor",o," .ql-color-red",o," {color: #e60000;}.cb-outputRichText-container.ql-editor",o," .ql-color-orange",o," {color: #f90;}.cb-outputRichText-container.ql-editor",o," .ql-color-yellow",o," {color: #ff0;}.cb-outputRichText-container.ql-editor",o," .ql-color-green",o," {color: #008a00;}.cb-outputRichText-container.ql-editor",o," .ql-color-blue",o," {color: #06c;}.cb-outputRichText-container.ql-editor",o," .ql-color-purple",o," {color: #93f;}.cb-outputRichText-container.ql-editor",o," .ql-direction-rtl",o," {direction: rtl;text-align: inherit;}.cb-outputRichText-container.ql-editor",o," .ql-align-center",o," {text-align: center;}.cb-outputRichText-container.ql-editor",o," .ql-align-justify",o," {text-align: justify;}.cb-outputRichText-container.ql-editor",o," .ql-align-right",o," {text-align: right;}.cb-outputRichText-container.ql-editor",o," .ql-blank",o,"::before {color: rgba(0, 0, 0, 0.6);content: attr(data-placeholder);font-style: italic;left: 15px;pointer-events: none;position: absolute;right: 15px;}.cb-outputRichText-container.ql-editor",o," blockquote",o," {border-left: 4px solid #ccc;margin-bottom: 5px;margin-top: 5px;padding-left: 16px;}.cb-outputRichText-container.ql-editor",o," code",o,",.cb-outputRichText-container.ql-editor",o," pre",o," {background-color: #f0f0f0;border-radius: 3px;}.cb-outputRichText-container.ql-editor",o," pre",o," {white-space: pre-wrap;margin-bottom: 5px;margin-top: 5px;padding: 5px 10px;}.cb-outputRichText-container.ql-editor",o," code",o," {font-size: 85%;padding: 2px 4px;}.cb-outputRichText-container.ql-editor",o," pre.ql-syntax",o," {background-color: #23241f;color: #f8f8f2;overflow: visible;}.cb-outputRichText-container.ql-editor",o," img",o," {max-width: 100%;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," {position: relative;padding-bottom: 56.25%;overflow: hidden;max-width: 100%;height: 0;}.cb-outputRichText-container.ql-editor",o," .cb-video-container",o," .ql-video",o," {position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: none;}"].join("")}var r=[l];function c(t,e,i){var o=t?"."+t+"-host":"";return(e?":host {":o+" {")+"display: block;overflow: auto;}"}c.$scoped$=true;var d=[c];function u(t,e,i,o){const{h:n}=t;return[n("div",{className:e.containerClass,key:0})]}var a=e.registerTemplate(u);u.stylesheets=[];u.renderMode="light";if(r){u.stylesheets.push.apply(u.stylesheets,r)}if(d){u.stylesheets.push.apply(u.stylesheets,d)}u.stylesheetToken="community_builder-outputRichText_outputRichText";e.freezeTemplate(u);class q extends e.LightningElement{constructor(...t){super(...t);this.processedValue="";this.isDomReady=false;this.pendingEvent=void 0;this.enableQuillCss=false}get value(){return this.processedValue}set value(t){this.processedValue=o.processContents(t);this.processDataExpressions(this.processedValue);this.renderRichText()}setDataExpressions(t){this.processedValue=this.resolveDataExpressions(this.value,t);this.renderRichText()}get containerClass(){return i.classSet({"cb-outputRichText-container":true,"ql-editor":this.enableQuillCss}).toString()}resolveDataExpressions(t,e){let i=t;let o;while((o=n.DATA_BIND_REGEX.exec(t))!==null){const[t,n]=o;i=i.replace(t,e[n])}return i}processDataExpressions(t){let e;let i=[];while((e=n.DATA_BIND_REGEX.exec(t))!==null){const[,t]=e;i.push(t)}if(i.length>0){this.pendingEvent=new CustomEvent(n.DATA_PROVIDER_GET_FIELD_DATA_EVENT_NAME,{detail:i,bubbles:true,composed:true})}}renderedCallback(){this.isDomReady=true;this.renderRichText()}renderRichText(){if(this.isDomReady){const t=this.querySelector("div");t.innerHTML=this.processedValue;if(this.pendingEvent){const t=this.pendingEvent;this.pendingEvent=null;this.dispatchEvent(t)}}}}q.renderMode="light";e.registerDecorators(q,{publicProps:{enableQuillCss:{config:0},value:{config:3}},publicMethods:["setDataExpressions"],fields:["processedValue","isDomReady","pendingEvent"]});var p=e.registerComponent(q,{tmpl:a,sel:"community_builder-outputRichText"});t.default=p;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_builder/htmlEditor",["exports","lwc","community_builder/outputRichText"],function(e,t,r){function i(e){return e&&typeof e==="object"&&"default"in e?e:{default:e}}var l=i(r);function u(e,t,r){var i=e?"."+e+"-host":"";return(t?":host {":i+" {")+"display: block;}"}u.$scoped$=true;var n=[u];function o(e,t,r,i){const{c:u}=e;return[u("community_builder-output-rich-text",l.default,{props:{value:t.richTextValue},key:0})]}var s=t.registerTemplate(o);o.stylesheets=[];o.renderMode="light";if(n){o.stylesheets.push.apply(o.stylesheets,n)}o.stylesheetToken="community_builder-htmlEditor_htmlEditor";t.freezeTemplate(o);class a extends t.LightningElement{constructor(...e){super(...e);this.internalValue=""}get richTextValue(){return this.internalValue}set richTextValue(e){this.internalValue=e}}a.renderMode="light";t.registerDecorators(a,{publicProps:{richTextValue:{config:3}},fields:["internalValue"]});var c=t.registerComponent(a,{tmpl:s,sel:"community_builder-htmlEditor"});e.default=c;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/sldsFlexibleLayout",["exports","lwc"],function(e,t){function n(e,t,n){var s=e?"."+e:"";return".content-container"+s+" {display: flex;flex-direction: column;}"}n.$scoped$=true;var s=[n];const l={classMap:{"content-container":true},key:0};const o={attrs:{name:"content"},key:1};const r=[];function i(e,t,n,s){const{s:i,h:a}=e;return[a("div",l,i("content",o,r,n))]}var a=t.registerTemplate(i);i.slots=["content"];i.stylesheets=[];i.renderMode="light";if(s){i.stylesheets.push.apply(i.stylesheets,s)}i.stylesheetToken="community_layout-sldsFlexibleLayout_sldsFlexibleLayout";t.freezeTemplate(i);class c extends t.LightningElement{}c.renderMode="light";var u=t.registerComponent(c,{tmpl:a,sel:"community_layout-sldsFlexibleLayout"});e.default=u;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("experience_availability/autoRefresh",["exports","lwc"],function(e,t){function n(e,t,n){var r=e?"["+e+"-host]":"";return(t?":host {":r+" {")+"display: none;}"}var r=[n];const a=[];function s(e,t,n,r){return a}var l=t.registerTemplate(s);s.stylesheets=[];if(r){s.stylesheets.push.apply(s.stylesheets,r)}s.stylesheetToken="experience_availability-autoRefresh_autoRefresh";t.freezeTemplate(s);class i extends t.LightningElement{connectedCallback(){let e=document.head.querySelector("meta[http-equiv=refresh]");if(e==null){e=document.createElement("meta");e.setAttribute("http-equiv","refresh");e.setAttribute("content","30");document.head.appendChild(e)}}}var o=t.registerComponent(i,{tmpl:l,sel:"experience_availability-autoRefresh"});e.default=o;Object.defineProperty(e,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/section",["exports","lwc","@salesforce/community/basePath"],function(n,t,e){function o(n){return n&&typeof n==="object"&&"default"in n?n:{default:n}}var i=o(e);function c(n,t,e){var o=n?"."+n:"";var i=n?"."+n+"-host":"";return(t?":host.comm-section-container {":i+".comm-section-container {")+"display: block;position: relative;padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-m,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-m,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-m,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-m,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}.columns-content"+o+" {display: flex;flex-direction: column;max-width: var(--dxp-c-section-columns-max-width, var(--dxp-s-section-columns-max-width));margin-left: auto;margin-right: auto;position: relative;}@media (min-width: 64em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start,\n var(--dxp-style-c-padding-top, var(--dxp-s-section-content-spacing-block-start))\n )\n var(\n --dxp-c-section-content-spacing-inline-end,\n var(--dxp-style-c-padding-right, var(--dxp-s-section-content-spacing-inline-end))\n )\n var(\n --dxp-c-section-content-spacing-block-end,\n var(--dxp-style-c-padding-bottom, var(--dxp-s-section-content-spacing-block-end))\n )\n var(\n --dxp-c-section-content-spacing-inline-start,\n var(--dxp-style-c-padding-left, var(--dxp-s-section-content-spacing-inline-start))\n );}.columns-content"+o+" {flex-direction: row;}}@media (max-width: 47.9375em) {"+(t?":host.comm-section-container {":i+".comm-section-container {")+"padding: var(\n --dxp-c-section-content-spacing-block-start-mobile,\n var(\n --dxp-style-c-padding-top-s,\n var(--dxp-s-section-content-spacing-block-start-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-end-mobile,\n var(\n --dxp-style-c-padding-right-s,\n var(--dxp-s-section-content-spacing-inline-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-block-end-mobile,\n var(\n --dxp-style-c-padding-bottom-s,\n var(--dxp-s-section-content-spacing-block-end-mobile)\n )\n )\n var(\n --dxp-c-section-content-spacing-inline-start-mobile,\n var(\n --dxp-style-c-padding-left-s,\n var(--dxp-s-section-content-spacing-inline-start-mobile)\n )\n );}}.background-image"+o+",.background-image-overlay"+o+" {position: absolute;width: 100%;height: 100%;top: 0;left: 0;right: 0;bottom: 0;z-index: 0;}"}c.$scoped$=true;var s=[c];const a=t.parseFragment`<div class="background-image${0}"${2}></div>`;const r=t.parseFragment`<div class="background-image-overlay${0}"${2}></div>`;const d={classMap:{"columns-content":true},key:4};const l={attrs:{name:"columns"},key:5};const g=[];function p(n,t,e,o){const{st:i,s:c,h:s}=n;return[i(a(),1),i(r(),3),s("div",d,c("columns",l,g,e))]}var m=t.registerTemplate(p);p.slots=["columns"];p.stylesheets=[];p.renderMode="light";if(s){p.stylesheets.push.apply(p.stylesheets,s)}p.stylesheetToken="community_layout-section_section";t.freezeTemplate(p);const u="/sfsites/c/cms/delivery/media";function b(){return i.default+u}function v(n){return n&&n!==""?b()+"/"+n:""}class h extends t.LightningElement{constructor(...n){super(...n);this.sectionConfig='{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}';this.backgroundImageOverlay=void 0;this.url="";this._background=void 0}get backgroundImageConfig(){return this._background}set backgroundImageConfig(n){try{this._background=JSON.parse(n);if(this._background.contentKey){this.url=v(this._background.contentKey)}}catch{this._background={}}}renderedCallback(){if(this.backgroundImageConfig){const n=this.querySelector(".background-image");const t=this.querySelector(".background-image-overlay");n.style.background=this.getBackgroundValue(this.backgroundImageConfig);if(this.backgroundImageConfig.url){t.style.backgroundColor=this.backgroundImageOverlay}}}connectedCallback(){this.classList.add("comm-section-container")}getBackgroundValue(n){const{bgPosition:t,bgSizeOrRepeat:e}=n;let o="";if(this.url){o+=" url("+this.url+") "+t+" "+e}return o}}h.renderMode="light";t.registerDecorators(h,{publicProps:{sectionConfig:{config:0},backgroundImageOverlay:{config:0},backgroundImageConfig:{config:3}},fields:["url","_background"]});var x=t.registerComponent(h,{tmpl:m,sel:"community_layout-section"});n.default=x;Object.defineProperty(n,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("community_layout/column",["exports","lwc"],function(o,e){function n(o,e,n){var t=o?"."+o:"";var l=o?"."+o+"-host":"";return(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start-mobile)\n var(--dxp-c-column-container-spacing-inline-end-mobile)\n var(--dxp-c-column-container-spacing-block-end-mobile)\n var(--dxp-c-column-container-spacing-inline-start-mobile);display: flex;}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start-mobile)\n var(--dxp-c-column-content-spacing-inline-end-mobile)\n var(--dxp-c-column-content-spacing-block-end-mobile)\n var(--dxp-c-column-content-spacing-inline-start-mobile);display: flex;flex-direction: column;flex: 1;}@media (min-width: 64em) {"+(e?":host {":l+" {")+"padding: var(--dxp-c-column-container-spacing-block-start)\n var(--dxp-c-column-container-spacing-inline-end)\n var(--dxp-c-column-container-spacing-block-end)\n var(--dxp-c-column-container-spacing-inline-start);}.column-content"+t+" {padding: var(--dxp-c-column-content-spacing-block-start)\n var(--dxp-c-column-content-spacing-inline-end)\n var(--dxp-c-column-content-spacing-block-end)\n var(--dxp-c-column-content-spacing-inline-start);}"+(e?":host.col-large-size_1-of-12 {":l+".col-large-size_1-of-12 {")+"width: 8.3333333333%;}"+(e?":host.col-large-size_2-of-12 {":l+".col-large-size_2-of-12 {")+"width: 16.6666666667%;}"+(e?":host.col-large-size_3-of-12 {":l+".col-large-size_3-of-12 {")+"width: 25%;}"+(e?":host.col-large-size_4-of-12 {":l+".col-large-size_4-of-12 {")+"width: 33.3333333333%;}"+(e?":host.col-large-size_5-of-12 {":l+".col-large-size_5-of-12 {")+"width: 41.6666666667%;}"+(e?":host.col-large-size_6-of-12 {":l+".col-large-size_6-of-12 {")+"width: 50%;}"+(e?":host.col-large-size_7-of-12 {":l+".col-large-size_7-of-12 {")+"width: 58.3333333333%;}"+(e?":host.col-large-size_8-of-12 {":l+".col-large-size_8-of-12 {")+"width: 66.6666666667%;}"+(e?":host.col-large-size_9-of-12 {":l+".col-large-size_9-of-12 {")+"width: 75%;}"+(e?":host.col-large-size_10-of-12 {":l+".col-large-size_10-of-12 {")+"width: 83.3333333333%;}"+(e?":host.col-large-size_11-of-12 {":l+".col-large-size_11-of-12 {")+"width: 91.6666666667%;}"+(e?":host.col-large-size_12-of-12 {":l+".col-large-size_12-of-12 {")+"width: 100%;}}"}n.$scoped$=true;var t=[n];const l={classMap:{"column-content":true},key:0};const c={attrs:{name:"column"},key:1};const s=[];function i(o,e,n,t){const{s:i,h:a}=o;return[a("div",l,i("column",c,s,n))]}var a=e.registerTemplate(i);i.slots=["column"];i.stylesheets=[];i.renderMode="light";if(t){i.stylesheets.push.apply(i.stylesheets,t)}i.stylesheetToken="community_layout-column_column";e.freezeTemplate(i);const r=12;const d="col-size_12-of-12";class h extends e.LightningElement{constructor(...o){super(...o);this._columnWidth=r}get columnWidth(){return this._columnWidth}set columnWidth(o){this._columnWidth=o;this.updateHostCssClasses()}connectedCallback(){this.updateHostCssClasses()}updateHostCssClasses(){const o=[d,this.colWidthClass];let e,n;for(e=0;e<this.classList.length;e++){n=this.classList[e];this.classList.remove(n)}for(e=0;e<o.length;e++){n=o[e];this.classList.add(n)}}get colWidthClass(){return this.columnWidth?`col-large-size_${this.columnWidth}-of-12`:"col"}}h.renderMode="light";e.registerDecorators(h,{publicProps:{columnWidth:{config:3}},fields:["_columnWidth"]});var u=e.registerComponent(h,{tmpl:a,sel:"community_layout-column"});o.default=u;Object.defineProperty(o,"__esModule",{value:true})}); |
| | | })();(function() { LWR.define("@view/too_Many_Requests",["exports","lwc","community_builder/htmlEditor","experience_availability/autoRefresh","community_layout/column","community_layout/section","community_layout/sldsFlexibleLayout"],function(t,e,o,n,i,l,s){function a(t){return t&&typeof t==="object"&&"default"in t?t:{default:t}}var u=a(o);var r=a(n);var c=a(i);var m=a(l);var d=a(s);var y=void 0;const _={key:0};const f={slot:"content"};const p={slot:"columns"};const h={"component-wrapper-spacer":true};const g={slot:"column"};const v={attrs:{slot:"column"},key:4};function x(t,e,o,n){const{c:i}=t;return[i("community_layout-slds-flexible-layout",d.default,_,[i("community_layout-section",m.default,{attrs:f,props:{sectionConfig:e.attributes.community_layoutsection_0_2.sectionConfig},key:1},[i("community_layout-column",c.default,{attrs:p,props:{columnWidth:e.attributes.community_layoutcolumn_0_0.columnWidth},key:2},[i("community_builder-html-editor",u.default,{classMap:h,attrs:g,props:{richTextValue:e.attributes.community_builderhtmleditor_0_1.richTextValue},key:3}),i("experience_availability-auto-refresh",r.default,v)])])])]}var b=e.registerTemplate(x);x.stylesheets=[];x.renderMode="light";x.stylesheetToken="___at___view-746f6f5f4d616e795f5265717565737473_too_Many_Requests";e.freezeTemplate(x);class k{static get html(){return b}static get attributes(){return function t(e){return{community_builderhtmleditor_0_1:{richTextValue:'<div style="display: flex; align-items: center; flex-direction: column; margin: 60px 25px 30px 25px;"><div style="background-image: url(assets/Images/tooManyRequests/tooManyRequests.svg); background-size: contain; height: 350px; width: 100%; background-repeat: no-repeat; background-position: center;"></div></div><div style="margin: 0 25px; text-align: center;"><h1 class="slds-text-heading_large">Looks like the site is experiencing higher than usual demand…</h1><p class="slds-text-heading_small">Don\'t go anywhere. We\'ll redirect you in a moment.</p></div>'},community_layoutsection_0_2:{sectionConfig:'{"columns":[{"columnKey":"col1","columnName":"Column 1","columnWidth":"12","seedComponents":[]}]}'},community_layoutcolumn_0_0:{columnWidth:"12"}}}}}var w=e.registerComponent(k,{tmpl:y,sel:"@view-746f6f5f4d616e795f5265717565737473"});t.default=w;Object.defineProperty(t,"__esModule",{value:true})}); |
| | | })(); |
| | |
| | | |
| | | .slds-table th, |
| | | .slds-table td { |
| | | font-size: 16px; |
| | | font-size: 14px; |
| | | } |
| | | |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <Package xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <types> |
| | | <members>AccountGif</members> |
| | | <members>LexCustomDataTable</members> |
| | | <members>lexdatatable</members> |
| | | <members>Olympus_Logo</members> |
| | | <members>SNA_Demo1_sf_default_cdn_PqhAN</members> |
| | | <members>SNA_Partner_Sales1_sf_default_cdn_JaBaQ</members> |
| | | <name>StaticResource</name> |
| | | </types> |
| | | <types> |
| | | <members>LicenceReminderDate__c</members> |
| | | <members>NoteStay__c</members> |
| | | <name>CustomObject</name> |
| | | </types> |
| | | <version>57.0</version> |
| | | <fullName>01_LEXCommunity_BaesCmp</fullName> |
| | | <types> |
| | | <members>OlympusCommunityLoginBG</members> |
| | | <members>OlympusCommunityLogo</members> |
| | | <name>ContentAsset</name> |
| | | </types> |
| | | <types> |
| | | <members>LicenceReminderDate__c.ReminderDays__c</members> |
| | | <members>NoteStay__c.IsStay__c</members> |
| | | <name>CustomField</name> |
| | | </types> |
| | | <types> |
| | | <members>LicenceReminderDate__c</members> |
| | | <members>NoteStay__c</members> |
| | | <name>CustomObject</name> |
| | | </types> |
| | | <types> |
| | | <members>AccountGif</members> |
| | | <members>LexCustomDataTable</members> |
| | | <members>Olympus_Logo</members> |
| | | <members>SNA_Demo1_sf_default_cdn_PqhAN</members> |
| | | <members>SNA_Partner_Sales1_sf_default_cdn_JaBaQ</members> |
| | | <members>lexdatatable</members> |
| | | <name>StaticResource</name> |
| | | </types> |
| | | <version>50.0</version> |
| | | </Package> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <Package xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <types> |
| | | <members>LexArriveGoodsMainController</members> |
| | | <members>LexArriveGsDetailsController</members> |
| | | <members>LexCancelRemoveBoxController</members> |
| | | <members>LexConInvoiceList</members> |
| | | <members>LexConInvoiceViewController</members> |
| | | <members>LexConInvoicedetailsController</members> |
| | | <members>LexConsumableAccountController</members> |
| | | <members>LexConsumableAccountInfoController</members> |
| | | <members>LexConsumableAccountSOQL</members> |
| | | <members>LexConsumableController</members> |
| | | <members>LexConsumableGoodsInfo</members> |
| | | <members>LexConsumableOrderManageController</members> |
| | | <members>LexDealerInquiryModifyStateController</members> |
| | | <members>LexInventoryController</members> |
| | | <members>LexInventoryListController</members> |
| | | <members>LexInventoryViewController</members> |
| | | <members>LexLicenceReminderController</members> |
| | | <members>LexOutboundorderImportController</members> |
| | | <members>LexOverdueStockController</members> |
| | | <members>LexProductLimitEditController</members> |
| | | <members>LexRemoveBoxController</members> |
| | | <members>LexSaleAndDeliveryController</members> |
| | | <members>LexSaleOrderController</members> |
| | | <members>LexSearchContractController</members> |
| | | <members>LexSearchHospitalController</members> |
| | | <members>LexSummonsCreatController</members> |
| | | <members>LexTopPageController</members> |
| | | <members>LexUpAccountProLimit</members> |
| | | <members>LexUtility</members> |
| | | <members>LookupSearchResult</members> |
| | | <members>ResponseBodyLWC</members> |
| | | <members>lexSearchAgencyHospitalController</members> |
| | | <name>ApexClass</name> |
| | | </types> |
| | | <types> |
| | | <members>ContentDocumentLink</members> |
| | | <members>ContentDocumentTrigger</members> |
| | | <members>ContentVersionTrigger</members> |
| | | <name>ApexTrigger</name> |
| | | </types> |
| | | <types> |
| | | <members>boxorpieceType</members> |
| | | <members>commonToast</members> |
| | | <members>customLightningDatatable</members> |
| | | <members>customOutboundCountComp</members> |
| | | <members>customOutputGood</members> |
| | | <members>customShipmentAmountComp</members> |
| | | <members>customShipmentNumberComp</members> |
| | | <members>customShippingUnitPriceComp</members> |
| | | <members>customUnitComp</members> |
| | | <members>customWeeklyReportComp</members> |
| | | <members>datatableWithCustomTypes</members> |
| | | <members>lexAgencyInfo</members> |
| | | <members>lexAgencyOppCusCell</members> |
| | | <members>lexArriveGoodsMain</members> |
| | | <members>lexArriveGsDetails</members> |
| | | <members>lexCancelRemoveBox</members> |
| | | <members>lexConInvoiceView</members> |
| | | <members>lexConsumable</members> |
| | | <members>lexConsumableAccount</members> |
| | | <members>lexConsumableAccountInfoPrint</members> |
| | | <members>lexConsumableOrderManage</members> |
| | | <members>lexCssUtility</members> |
| | | <members>lexCustomAttachmentTypeComp</members> |
| | | <members>lexCustomDiffReasonComp</members> |
| | | <members>lexCustomInventoryColor</members> |
| | | <members>lexCustomLightningDatatable</members> |
| | | <members>lexCustomTableInput</members> |
| | | <members>lexDealerInquiryModifyState</members> |
| | | <members>lexInventory</members> |
| | | <members>lexLicenceReminder</members> |
| | | <members>lexLookup</members> |
| | | <members>lexNewOrder</members> |
| | | <members>lexOutboundorderImport</members> |
| | | <members>lexOverdueStock</members> |
| | | <members>lexProductLimitEdit</members> |
| | | <members>lexRemoveBox</members> |
| | | <members>lexReturnGoodCusInput</members> |
| | | <members>lexSaleAndDelivery</members> |
| | | <members>lexSummonsCreat</members> |
| | | <members>lexTableCellIcon</members> |
| | | <members>lexTopPage</members> |
| | | <members>lexinventoryViewLWC</members> |
| | | <members>lwcDatatableUtility</members> |
| | | <members>myCustomTypeDatatable</members> |
| | | <members>paginator</members> |
| | | <members>navigateToRecord</members> |
| | | <name>LightningComponentBundle</name> |
| | | </types> |
| | | <types> |
| | | <members>invoiceStart</members> |
| | | <members>View_Weekly_Report</members> |
| | | <members>LexConInvoiceViewReport</members> |
| | | <members>LexArrivegsDetailsPageHelpText</members> |
| | | <name>CustomLabel</name> |
| | | </types> |
| | | <types> |
| | | <members>Community_LEX_PS</members> |
| | | <name>PermissionSet</name> |
| | | </types> |
| | | <version>57.0</version> |
| | | </Package> |
| | | <fullName>02_LEXCommunity_New_6%2E0</fullName> |
| | | <types> |
| | | <members>Batch_FixAttachmentToFiles</members> |
| | | <members>Batch_FixAttachmentToFilesTest</members> |
| | | <members>LexArriveGoodsMainController</members> |
| | | <members>LexArriveGoodsMainControllerTest</members> |
| | | <members>LexArriveGsDetailsController</members> |
| | | <members>LexArriveGsDetailsControllerTest</members> |
| | | <members>LexCancelRemoveBoxController</members> |
| | | <members>LexCancelRemoveBoxControllerTest</members> |
| | | <members>LexConInvoiceList</members> |
| | | <members>LexConInvoiceListTest</members> |
| | | <members>LexConInvoiceViewController</members> |
| | | <members>LexConInvoiceViewControllerTest</members> |
| | | <members>LexConInvoicedetailsController</members> |
| | | <members>LexConInvoicedetailsControllerTest</members> |
| | | <members>LexConsumableAccountController</members> |
| | | <members>LexConsumableAccountControllerTest</members> |
| | | <members>LexConsumableAccountInfoController</members> |
| | | <members>LexConsumableAccountInfoControllerTest</members> |
| | | <members>LexConsumableAccountSOQL</members> |
| | | <members>LexConsumableAccountSOQLTest</members> |
| | | <members>LexConsumableController</members> |
| | | <members>LexConsumableControllerTest</members> |
| | | <members>LexConsumableGoodsInfo</members> |
| | | <members>LexConsumableGoodsInfoTest</members> |
| | | <members>LexConsumableOrderManageController</members> |
| | | <members>LexConsumableOrderManageControllerTest</members> |
| | | <members>LexInventoryController</members> |
| | | <members>LexInventoryControllerTest</members> |
| | | <members>LexInventoryListController</members> |
| | | <members>LexInventoryListControllerTest</members> |
| | | <members>LexInventoryViewController</members> |
| | | <members>LexInventoryViewControllerTest</members> |
| | | <members>LexLicenceReminderController</members> |
| | | <members>LexLicenceReminderControllerTest</members> |
| | | <members>LexOutboundorderImportController</members> |
| | | <members>LexOutboundorderImportControllerTest</members> |
| | | <members>LexOverdueStockController</members> |
| | | <members>LexOverdueStockControllerTest</members> |
| | | <members>LexProductLimitEditController</members> |
| | | <members>LexProductLimitEditControllerTest</members> |
| | | <members>LexRemoveBoxController</members> |
| | | <members>LexRemoveBoxControllerTest</members> |
| | | <members>LexSaleAndDeliveryController</members> |
| | | <members>LexSaleAndDeliveryControllerTest</members> |
| | | <members>LexSaleOrderController</members> |
| | | <members>LexSaleOrderControllerTest</members> |
| | | <members>LexSearchContractController</members> |
| | | <members>LexSearchContractControllerTest</members> |
| | | <members>LexSearchHospitalController</members> |
| | | <members>LexSearchHospitalControllerTest</members> |
| | | <members>LexSummonsCreatController</members> |
| | | <members>LexSummonsCreatControllerTest</members> |
| | | <members>LexTopPageController</members> |
| | | <members>LexTopPageControllerTest</members> |
| | | <members>LexUpAccountProLimit</members> |
| | | <members>LexUpAccountProLimitControllerTest</members> |
| | | <members>LexUtility</members> |
| | | <members>LexUtilityTest</members> |
| | | <members>LookupSearchResult</members> |
| | | <members>LookupSearchResultTest</members> |
| | | <members>ResponseBodyLWC</members> |
| | | <members>ResponseBodyLWCTest</members> |
| | | <members>lexSearchAgencyHospitalController</members> |
| | | <members>lexSearchAgencyHospitalControllerTest</members> |
| | | <name>ApexClass</name> |
| | | </types> |
| | | <types> |
| | | <members>ContentDocumentLink</members> |
| | | <members>ContentDocumentTrigger</members> |
| | | <members>ContentVersionTrigger</members> |
| | | <name>ApexTrigger</name> |
| | | </types> |
| | | <types> |
| | | <members>boxorpieceType</members> |
| | | <members>commonToast</members> |
| | | <members>customAccountUrlComp</members> |
| | | <members>customDeleteReasonComp</members> |
| | | <members>customLightningDatatable</members> |
| | | <members>customMydrComp</members> |
| | | <members>customOutboundCountComp</members> |
| | | <members>customOutputGood</members> |
| | | <members>customShipmentAmountComp</members> |
| | | <members>customShipmentNumberComp</members> |
| | | <members>customShippingUnitPriceComp</members> |
| | | <members>customUnitComp</members> |
| | | <members>customWeeklyReportComp</members> |
| | | <members>datatableWithCustomTypes</members> |
| | | <members>lexAgencyInfo</members> |
| | | <members>lexAgencyOppCusCell</members> |
| | | <members>lexArriveGoodsMain</members> |
| | | <members>lexArriveGsDetails</members> |
| | | <members>lexCancelRemoveBox</members> |
| | | <members>lexConInvoiceView</members> |
| | | <members>lexConsumable</members> |
| | | <members>lexConsumableAccount</members> |
| | | <members>lexConsumableAccountInfoPrint</members> |
| | | <members>lexConsumableOrderManage</members> |
| | | <members>lexCssUtility</members> |
| | | <members>lexCustomAttachmentTypeComp</members> |
| | | <members>lexCustomDiffReasonComp</members> |
| | | <members>lexCustomInventoryColor</members> |
| | | <members>lexCustomLightningDatatable</members> |
| | | <members>lexCustomTableInput</members> |
| | | <members>lexInventory</members> |
| | | <members>lexLicenceReminder</members> |
| | | <members>lexLookup</members> |
| | | <members>lexNewOrder</members> |
| | | <members>lexOutboundorderImport</members> |
| | | <members>lexOverdueStock</members> |
| | | <members>lexProductLimitEdit</members> |
| | | <members>lexRemoveBox</members> |
| | | <members>lexReturnGoodCusInput</members> |
| | | <members>lexSaleAndDelivery</members> |
| | | <members>lexSummonsCreat</members> |
| | | <members>lexTableCellIcon</members> |
| | | <members>lexTopPage</members> |
| | | <members>lexinventoryViewLWC</members> |
| | | <members>lwcDatatableUtility</members> |
| | | <members>myCustomTypeDatatable</members> |
| | | <members>navigateToRecord</members> |
| | | <members>paginator</members> |
| | | <name>LightningComponentBundle</name> |
| | | </types> |
| | | <types> |
| | | <members>Community_Consumable_LEX_PS</members> |
| | | <name>PermissionSet</name> |
| | | </types> |
| | | <version>50.0</version> |
| | | </Package> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <Package xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <fullName>LEXCommunityDeployUpdate</fullName> |
| | | <description>1. Update Class 2. New LWC</description> |
| | | <types> |
| | | <members>ArriveGoodsController</members> |
| | | <members>ArriveGoodsControllerTest</members> |
| | | <members>LexArriveGoodsController</members> |
| | | <members>DealerInquiryModifyStateController</members> |
| | | <name>ApexClass</name> |
| | | </types> |
| | | <types> |
| | | <members>DealerInquiryModifyState</members> |
| | | <name>ApexPage</name> |
| | | </types> |
| | | <types> |
| | | <members>CreateTarget</members> |
| | | <members>WeeklyReport</members> |
| | | <members>RetrospectiveWeeklyReport</members> |
| | | <name>AuraDefinitionBundle</name> |
| | | </types> |
| | | <types> |
| | | <members>lexArriveGoods</members> |
| | | <name>LightningComponentBundle</name> |
| | | </types> |
| | | <types> |
| | | <members>ConsumableOrderDetail2Trigger</members> |
| | | <name>ApexTrigger</name> |
| | | </types> |
| | | <types> |
| | | <members>Community_LEX_PS</members> |
| | | <name>PermissionSet</name> |
| | | </types> |
| | | <version>57.0</version> |
| | | </Package> |
| | | <fullName>03_LEXCommunity_Update1%2E0</fullName> |
| | | <types> |
| | | <members>ArriveGoodsController</members> |
| | | <members>ArriveGoodsControllerTest</members> |
| | | <members>ArriveGoodsControllerTestV2</members> |
| | | <members>DealerInquiryModifyStateController</members> |
| | | <members>DealerInquiryModifyStateControllerTest</members> |
| | | <members>LexArriveGoodsController</members> |
| | | <members>LexArriveGoodsControllerTest</members> |
| | | <members>LexArriveGoodsControllerTest1</members> |
| | | <name>ApexClass</name> |
| | | </types> |
| | | <types> |
| | | <members>DealerInquiryModifyState</members> |
| | | <name>ApexPage</name> |
| | | </types> |
| | | <types> |
| | | <members>ConsumableOrderDetail2Trigger</members> |
| | | <name>ApexTrigger</name> |
| | | </types> |
| | | <types> |
| | | <members>CreateTarget</members> |
| | | <members>RetrospectiveWeeklyReport</members> |
| | | <members>WeeklyReport</members> |
| | | <name>AuraDefinitionBundle</name> |
| | | </types> |
| | | <types> |
| | | <members>lexArriveGoods</members> |
| | | <name>LightningComponentBundle</name> |
| | | </types> |
| | | <version>50.0</version> |
| | | </Package> |