From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: *** X-Spam-Status: No, score=3.2 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, HTML_OFF_PAGE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,WEIRD_QUOTING autolearn=no autolearn_force=no version=3.4.6 Received: from mail-pf1-f181.google.com (mail-pf1-f181.google.com [209.85.210.181]) by gnuweeb.org (Postfix) with ESMTPS id 7599A8176A for ; Sun, 27 Nov 2022 20:32:31 +0000 (UTC) Received: by mail-pf1-f181.google.com with SMTP id a9so5204174pfr.0 for ; Sun, 27 Nov 2022 12:32:31 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=3KL6242PCRmStMkYIY4vq4NEgpYzhOpcgROLIcSU2AY=; b=Ft5vwvfCvzkDxg6DN5hKdaLixJ7rNVQhSQ/x4zFoF9mXELeUDPsTWpwKysUGTSgjDr fiMEiTd1Wdj9DRdLJyj5fOCwyDNLcfSdepAjrSqMWgYdHLG9BoG2j37N0t5n+a5RKY5J okJ0MVJBr0TrlXkGDmCfbjffg4GRg1wfeDp7WCKoS0mFRg1cXwzb97z9d4/pZK9trXnR gMYR0ETtf2ILwSGbBGhnXAv0+tvajFaXt5EQ13Oe2FP+D1Gx8iGYD20mFm205CZUgWDi AETuN4UsvGb9WDS1HNBo34gF49Xo762LWR6p07MtOrY4YYdHwhnZ8pYD+qh4zM7WBgSQ 0fcg== X-Gm-Message-State: ANoB5plgkjLXbIRYFKMQeQCvCJByX7JdMjD8WThw5WAcHYV4vorbDAQt 3J8Jlf+yLAADoC6wtHBbRvo= X-Google-Smtp-Source: AA0mqf7EZ28Cr7IdNhEUAwSq8mB7M1E7Hkjb1+Ck9wEjTaunsvU7CvVTUS50rQnKrLfPCEDzYL1Jgw== X-Received: by 2002:a63:5544:0:b0:477:6fe2:c1d1 with SMTP id f4-20020a635544000000b004776fe2c1d1mr24554567pgm.444.1669581150573; Sun, 27 Nov 2022 12:32:30 -0800 (PST) Received: from localhost.localdomain ([2404:8000:1021:2a9:da99:231d:4dfa:7f54]) by smtp.gmail.com with ESMTPSA id ij13-20020a170902ab4d00b0018685257c0dsm7234904plb.58.2022.11.27.12.32.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 27 Nov 2022 12:32:30 -0800 (PST) From: Ammar Faizi To: Gilang Fachrezy Cc: Ammar Faizi , Taufiq Pohan , Aldy Prastyo , Muhammad Fitrah Pandjalu , Nauvalsa Yanandana , GNU/Weeb Mailing List , VNLX Kernel Department Subject: [PATCH v1 01/13] Initial index page Date: Mon, 28 Nov 2022 03:32:04 +0700 Message-Id: <20221127203216.408808-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221127203216.408808-1-ammarfaizi2@gnuweeb.org> References: <20221127203216.408808-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: Also, add select2 library. Co-authored-by: Muhammad Fitrah Pandjalu Signed-off-by: Muhammad Fitrah Pandjalu Co-authored-by: Taufiq Pohan Signed-off-by: Taufiq Pohan Co-authored-by: Nauvalsa Yanandana Signed-off-by: Nauvalsa Yanandana Signed-off-by: Ammar Faizi --- .../assets}/css/bootstrap.min.css | 0 .../assets}/css/bootstrap.min.css.map | 0 public/assets/css/select2.min.css | 1 + {assets =3D> public/assets}/js/bootstrap.min.js | 0 .../assets}/js/bootstrap.min.js.map | 0 public/assets/js/select2.full.min.js | 2 ++ public/index.php | 36 +++++++++++++++++++ 7 files changed, 39 insertions(+) rename {assets =3D> public/assets}/css/bootstrap.min.css (100%) rename {assets =3D> public/assets}/css/bootstrap.min.css.map (100%) create mode 100644 public/assets/css/select2.min.css rename {assets =3D> public/assets}/js/bootstrap.min.js (100%) rename {assets =3D> public/assets}/js/bootstrap.min.js.map (100%) create mode 100644 public/assets/js/select2.full.min.js create mode 100644 public/index.php diff --git a/assets/css/bootstrap.min.css b/public/assets/css/bootstrap.min= .css similarity index 100% rename from assets/css/bootstrap.min.css rename to public/assets/css/bootstrap.min.css diff --git a/assets/css/bootstrap.min.css.map b/public/assets/css/bootstrap= .min.css.map similarity index 100% rename from assets/css/bootstrap.min.css.map rename to public/assets/css/bootstrap.min.css.map diff --git a/public/assets/css/select2.min.css b/public/assets/css/select2.= min.css new file mode 100644 index 0000000..7c18ad5 --- /dev/null +++ b/public/assets/css/select2.min.css @@ -0,0 +1 @@ +.select2-container{box-sizing:border-box;display:inline-block;margin:0;pos= ition:relative;vertical-align:middle}.select2-container .select2-selection-= -single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user= -select:none;-webkit-user-select:none}.select2-container .select2-selection= --single .select2-selection__rendered{display:block;padding-left:8px;paddin= g-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sel= ect2-container .select2-selection--single .select2-selection__clear{positio= n:relative}.select2-container[dir=3D"rtl"] .select2-selection--single .sele= ct2-selection__rendered{padding-right:8px;padding-left:20px}.select2-contai= ner .select2-selection--multiple{box-sizing:border-box;cursor:pointer;displ= ay:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2= -container .select2-selection--multiple .select2-selection__rendered{displa= y:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;whit= e-space:nowrap}.select2-container .select2-search--inline{float:left}.selec= t2-container .select2-search--inline .select2-search__field{box-sizing:bord= er-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-contain= er .select2-search--inline .select2-search__field::-webkit-search-cancel-bu= tton{-webkit-appearance:none}.select2-dropdown{background-color:white;borde= r:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;posi= tion:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{displ= ay:block}.select2-results__options{list-style:none;margin:0;padding:0}.sele= ct2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.= select2-results__option[aria-selected]{cursor:pointer}.select2-container--o= pen .select2-dropdown{left:0}.select2-container--open .select2-dropdown--ab= ove{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radi= us:0}.select2-container--open .select2-dropdown--below{border-top:none;bord= er-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{di= splay:block;padding:4px}.select2-search--dropdown .select2-search__field{pa= dding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .selec= t2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.sel= ect2-search--dropdown.select2-search--hide{display:none}.select2-close-mask= {border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-= height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;back= ground-color:#fff;filter:alpha(opacity=3D0)}.select2-hidden-accessible{bord= er:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) = !important;clip-path:inset(50%) !important;height:1px !important;overflow:h= idden !important;padding:0 !important;position:absolute !important;width:1p= x !important;white-space:nowrap !important}.select2-container--default .sel= ect2-selection--single{background-color:#fff;border:1px solid #aaa;border-r= adius:4px}.select2-container--default .select2-selection--single .select2-s= election__rendered{color:#444;line-height:28px}.select2-container--default = .select2-selection--single .select2-selection__clear{cursor:pointer;float:r= ight;font-weight:bold}.select2-container--default .select2-selection--singl= e .select2-selection__placeholder{color:#999}.select2-container--default .s= elect2-selection--single .select2-selection__arrow{height:26px;position:abs= olute;top:1px;right:1px;width:20px}.select2-container--default .select2-sel= ection--single .select2-selection__arrow b{border-color:#888 transparent tr= ansparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:= 0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width= :0}.select2-container--default[dir=3D"rtl"] .select2-selection--single .sel= ect2-selection__clear{float:left}.select2-container--default[dir=3D"rtl"] .= select2-selection--single .select2-selection__arrow{left:1px;right:auto}.se= lect2-container--default.select2-container--disabled .select2-selection--si= ngle{background-color:#eee;cursor:default}.select2-container--default.selec= t2-container--disabled .select2-selection--single .select2-selection__clear= {display:none}.select2-container--default.select2-container--open .select2-= selection--single .select2-selection__arrow b{border-color:transparent tran= sparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--def= ault .select2-selection--multiple{background-color:white;border:1px solid #= aaa;border-radius:4px;cursor:text}.select2-container--default .select2-sele= ction--multiple .select2-selection__rendered{box-sizing:border-box;list-sty= le:none;margin:0;padding:0 5px;width:100%}.select2-container--default .sele= ct2-selection--multiple .select2-selection__rendered li{list-style:none}.se= lect2-container--default .select2-selection--multiple .select2-selection__c= lear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-righ= t:10px;padding:1px}.select2-container--default .select2-selection--multiple= .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;= border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px= ;padding:0 5px}.select2-container--default .select2-selection--multiple .se= lect2-selection__choice__remove{color:#999;cursor:pointer;display:inline-bl= ock;font-weight:bold;margin-right:2px}.select2-container--default .select2-= selection--multiple .select2-selection__choice__remove:hover{color:#333}.se= lect2-container--default[dir=3D"rtl"] .select2-selection--multiple .select2= -selection__choice,.select2-container--default[dir=3D"rtl"] .select2-select= ion--multiple .select2-search--inline{float:right}.select2-container--defau= lt[dir=3D"rtl"] .select2-selection--multiple .select2-selection__choice{mar= gin-left:5px;margin-right:auto}.select2-container--default[dir=3D"rtl"] .se= lect2-selection--multiple .select2-selection__choice__remove{margin-left:2p= x;margin-right:auto}.select2-container--default.select2-container--focus .s= elect2-selection--multiple{border:solid black 1px;outline:0}.select2-contai= ner--default.select2-container--disabled .select2-selection--multiple{backg= round-color:#eee;cursor:default}.select2-container--default.select2-contain= er--disabled .select2-selection__choice__remove{display:none}.select2-conta= iner--default.select2-container--open.select2-container--above .select2-sel= ection--single,.select2-container--default.select2-container--open.select2-= container--above .select2-selection--multiple{border-top-left-radius:0;bord= er-top-right-radius:0}.select2-container--default.select2-container--open.s= elect2-container--below .select2-selection--single,.select2-container--defa= ult.select2-container--open.select2-container--below .select2-selection--mu= ltiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-co= ntainer--default .select2-search--dropdown .select2-search__field{border:1p= x solid #aaa}.select2-container--default .select2-search--inline .select2-s= earch__field{background:transparent;border:none;outline:0;box-shadow:none;-= webkit-appearance:textfield}.select2-container--default .select2-results>.s= elect2-results__options{max-height:200px;overflow-y:auto}.select2-container= --default .select2-results__option[role=3Dgroup]{padding:0}.select2-contain= er--default .select2-results__option[aria-disabled=3Dtrue]{color:#999}.sele= ct2-container--default .select2-results__option[aria-selected=3Dtrue]{backg= round-color:#ddd}.select2-container--default .select2-results__option .sele= ct2-results__option{padding-left:1em}.select2-container--default .select2-r= esults__option .select2-results__option .select2-results__group{padding-lef= t:0}.select2-container--default .select2-results__option .select2-results__= option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-= container--default .select2-results__option .select2-results__option .selec= t2-results__option .select2-results__option{margin-left:-2em;padding-left:3= em}.select2-container--default .select2-results__option .select2-results__o= ption .select2-results__option .select2-results__option .select2-results__o= ption{margin-left:-3em;padding-left:4em}.select2-container--default .select= 2-results__option .select2-results__option .select2-results__option .select= 2-results__option .select2-results__option .select2-results__option{margin-= left:-4em;padding-left:5em}.select2-container--default .select2-results__op= tion .select2-results__option .select2-results__option .select2-results__op= tion .select2-results__option .select2-results__option .select2-results__op= tion{margin-left:-5em;padding-left:6em}.select2-container--default .select2= -results__option--highlighted[aria-selected]{background-color:#5897fb;color= :white}.select2-container--default .select2-results__group{cursor:default;d= isplay:block;padding:6px}.select2-container--classic .select2-selection--si= ngle{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outli= ne:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);bac= kground-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image= :linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x= ;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=3D'#FFFFFF= FF', endColorstr=3D'#FFEEEEEE', GradientType=3D0)}.select2-container--class= ic .select2-selection--single:focus{border:1px solid #5897fb}.select2-conta= iner--classic .select2-selection--single .select2-selection__rendered{color= :#444;line-height:28px}.select2-container--classic .select2-selection--sing= le .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;ma= rgin-right:10px}.select2-container--classic .select2-selection--single .sel= ect2-selection__placeholder{color:#999}.select2-container--classic .select2= -selection--single .select2-selection__arrow{background-color:#ddd;border:n= one;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-ri= ght-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;b= ackground-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);backgroun= d-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linea= r-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filte= r:progid:DXImageTransform.Microsoft.gradient(startColorstr=3D'#FFEEEEEE', e= ndColorstr=3D'#FFCCCCCC', GradientType=3D0)}.select2-container--classic .se= lect2-selection--single .select2-selection__arrow b{border-color:#888 trans= parent transparent transparent;border-style:solid;border-width:5px 4px 0 4p= x;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:= 50%;width:0}.select2-container--classic[dir=3D"rtl"] .select2-selection--si= ngle .select2-selection__clear{float:left}.select2-container--classic[dir= =3D"rtl"] .select2-selection--single .select2-selection__arrow{border:none;= border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;bord= er-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.s= elect2-container--open .select2-selection--single{border:1px solid #5897fb}= .select2-container--classic.select2-container--open .select2-selection--sin= gle .select2-selection__arrow{background:transparent;border:none}.select2-c= ontainer--classic.select2-container--open .select2-selection--single .selec= t2-selection__arrow b{border-color:transparent transparent #888 transparent= ;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--= open.select2-container--above .select2-selection--single{border-top:none;bo= rder-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-l= inear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(= top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%= , #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Micro= soft.gradient(startColorstr=3D'#FFFFFFFF', endColorstr=3D'#FFEEEEEE', Gradi= entType=3D0)}.select2-container--classic.select2-container--open.select2-co= ntainer--below .select2-selection--single{border-bottom:none;border-bottom-= left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-= gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top,= #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%,= #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Micro= soft.gradient(startColorstr=3D'#FFEEEEEE', endColorstr=3D'#FFFFFFFF', Gradi= entType=3D0)}.select2-container--classic .select2-selection--multiple{backg= round-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outli= ne:0}.select2-container--classic .select2-selection--multiple:focus{border:= 1px solid #5897fb}.select2-container--classic .select2-selection--multiple = .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select= 2-container--classic .select2-selection--multiple .select2-selection__clear= {display:none}.select2-container--classic .select2-selection--multiple .sel= ect2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;borde= r-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padd= ing:0 5px}.select2-container--classic .select2-selection--multiple .select2= -selection__choice__remove{color:#888;cursor:pointer;display:inline-block;f= ont-weight:bold;margin-right:2px}.select2-container--classic .select2-selec= tion--multiple .select2-selection__choice__remove:hover{color:#555}.select2= -container--classic[dir=3D"rtl"] .select2-selection--multiple .select2-sele= ction__choice{float:right;margin-left:5px;margin-right:auto}.select2-contai= ner--classic[dir=3D"rtl"] .select2-selection--multiple .select2-selection__= choice__remove{margin-left:2px;margin-right:auto}.select2-container--classi= c.select2-container--open .select2-selection--multiple{border:1px solid #58= 97fb}.select2-container--classic.select2-container--open.select2-container-= -above .select2-selection--multiple{border-top:none;border-top-left-radius:= 0;border-top-right-radius:0}.select2-container--classic.select2-container--= open.select2-container--below .select2-selection--multiple{border-bottom:no= ne;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-contai= ner--classic .select2-search--dropdown .select2-search__field{border:1px so= lid #aaa;outline:0}.select2-container--classic .select2-search--inline .sel= ect2-search__field{outline:0;box-shadow:none}.select2-container--classic .s= elect2-dropdown{background-color:#fff;border:1px solid transparent}.select2= -container--classic .select2-dropdown--above{border-bottom:none}.select2-co= ntainer--classic .select2-dropdown--below{border-top:none}.select2-containe= r--classic .select2-results>.select2-results__options{max-height:200px;over= flow-y:auto}.select2-container--classic .select2-results__option[role=3Dgro= up]{padding:0}.select2-container--classic .select2-results__option[aria-dis= abled=3Dtrue]{color:grey}.select2-container--classic .select2-results__opti= on--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2= -container--classic .select2-results__group{cursor:default;display:block;pa= dding:6px}.select2-container--classic.select2-container--open .select2-drop= down{border-color:#5897fb} diff --git a/assets/js/bootstrap.min.js b/public/assets/js/bootstrap.min.js similarity index 100% rename from assets/js/bootstrap.min.js rename to public/assets/js/bootstrap.min.js diff --git a/assets/js/bootstrap.min.js.map b/public/assets/js/bootstrap.mi= n.js.map similarity index 100% rename from assets/js/bootstrap.min.js.map rename to public/assets/js/bootstrap.min.js.map diff --git a/public/assets/js/select2.full.min.js b/public/assets/js/select= 2.full.min.js new file mode 100644 index 0000000..fa78191 --- /dev/null +++ b/public/assets/js/select2.full.min.js @@ -0,0 +1,2 @@ +/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENS= E.md */ +!function(n){"function"=3D=3Dtypeof define&&define.amd?define(["jquery"],n= ):"object"=3D=3Dtypeof module&&module.exports?module.exports=3Dfunction(e,t= ){return void 0=3D=3D=3Dt&&(t=3D"undefined"!=3Dtypeof window?require("jquer= y"):require("jquery")(e)),n(t),t}:n(jQuery)}(function(d){var e=3Dfunction()= {if(d&&d.fn&&d.fn.select2&&d.fn.select2.amd)var e=3Dd.fn.select2.amd;var t,= n,i,h,o,s,f,g,m,v,y,_,r,a,w,l;function b(e,t){return r.call(e,t)}function c= (e,t){var n,i,r,o,s,a,l,c,u,d,p,h=3Dt&&t.split("/"),f=3Dy.map,g=3Df&&f["*"]= ||{};if(e){for(s=3D(e=3De.split("/")).length-1,y.nodeIdCompat&&w.test(e[s])= &&(e[s]=3De[s].replace(w,"")),"."=3D=3D=3De[0].charAt(0)&&h&&(e=3Dh.slice(0= ,h.length-1).concat(e)),u=3D0;u":">",'"':""","'":"'","/":"/"};return"stri= ng"!=3Dtypeof e?e:String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]}= )},r.appendMany=3Dfunction(e,t){if("1.7"=3D=3D=3Do.fn.jquery.substr(0,3)){v= ar n=3Do();o.map(t,function(e){n=3Dn.add(e)}),t=3Dn}e.append(t)},r.__cache= =3D{};var n=3D0;return r.GetUniqueElementId=3Dfunction(e){var t=3De.getAttr= ibute("data-select2-id");return null=3D=3Dt&&(e.id?(t=3De.id,e.setAttribute= ("data-select2-id",t)):(e.setAttribute("data-select2-id",++n),t=3Dn.toStrin= g())),t},r.StoreData=3Dfunction(e,t,n){var i=3Dr.GetUniqueElementId(e);r.__= cache[i]||(r.__cache[i]=3D{}),r.__cache[i][t]=3Dn},r.GetData=3Dfunction(e,t= ){var n=3Dr.GetUniqueElementId(e);return t?r.__cache[n]&&null!=3Dr.__cache[= n][t]?r.__cache[n][t]:o(e).data(t):r.__cache[n]},r.RemoveData=3Dfunction(e)= {var t=3Dr.GetUniqueElementId(e);null!=3Dr.__cache[t]&&delete r.__cache[t],= e.removeAttribute("data-select2-id")},r}),e.define("select2/results",["jque= ry","./utils"],function(h,f){function i(e,t,n){this.$element=3De,this.data= =3Dn,this.options=3Dt,i.__super__.constructor.call(this)}return f.Extend(i,= f.Observable),i.prototype.render=3Dfunction(){var e=3Dh('
    ');return this.options.get("mult= iple")&&e.attr("aria-multiselectable","true"),this.$results=3De},i.prototyp= e.clear=3Dfunction(){this.$results.empty()},i.prototype.displayMessage=3Dfu= nction(e){var t=3Dthis.options.get("escapeMarkup");this.clear(),this.hideLo= ading();var n=3Dh('
  • '),i=3Dthis.options.get("translations").get(e.mes= sage);n.append(t(i(e.args))),n[0].className+=3D" select2-results__message",= this.$results.append(n)},i.prototype.hideMessages=3Dfunction(){this.$result= s.find(".select2-results__message").remove()},i.prototype.append=3Dfunction= (e){this.hideLoading();var t=3D[];if(null!=3De.results&&0!=3D=3De.results.l= ength){e.results=3Dthis.sort(e.results);for(var n=3D0;n",{class:"select2-results__= options select2-results__options--nested"});p.append(l),s.append(a),s.appen= d(p)}else this.template(e,t);return f.StoreData(t,"data",e),t},i.prototype.= bind=3Dfunction(t,e){var l=3Dthis,n=3Dt.id+"-results";this.$results.attr("i= d",n),t.on("results:all",function(e){l.clear(),l.append(e.data),t.isOpen()&= &(l.setClasses(),l.highlightFirstItem())}),t.on("results:append",function(e= ){l.append(e.data),t.isOpen()&&l.setClasses()}),t.on("query",function(e){l.= hideMessages(),l.showLoading(e)}),t.on("select",function(){t.isOpen()&&(l.s= etClasses(),l.options.get("scrollAfterSelect")&&l.highlightFirstItem())}),t= .on("unselect",function(){t.isOpen()&&(l.setClasses(),l.options.get("scroll= AfterSelect")&&l.highlightFirstItem())}),t.on("open",function(){l.$results.= attr("aria-expanded","true"),l.$results.attr("aria-hidden","false"),l.setCl= asses(),l.ensureHighlightVisible()}),t.on("close",function(){l.$results.att= r("aria-expanded","false"),l.$results.attr("aria-hidden","true"),l.$results= .removeAttr("aria-activedescendant")}),t.on("results:toggle",function(){var= e=3Dl.getHighlightedResults();0!=3D=3De.length&&e.trigger("mouseup")}),t.o= n("results:select",function(){var e=3Dl.getHighlightedResults();if(0!=3D=3D= e.length){var t=3Df.GetData(e[0],"data");"true"=3D=3De.attr("aria-selected"= )?l.trigger("close",{}):l.trigger("select",{data:t})}}),t.on("results:previ= ous",function(){var e=3Dl.getHighlightedResults(),t=3Dl.$results.find("[ari= a-selected]"),n=3Dt.index(e);if(!(n<=3D0)){var i=3Dn-1;0=3D=3D=3De.length&&= (i=3D0);var r=3Dt.eq(i);r.trigger("mouseenter");var o=3Dl.$results.offset()= .top,s=3Dr.offset().top,a=3Dl.$results.scrollTop()+(s-o);0=3D=3D=3Di?l.$res= ults.scrollTop(0):s-o<0&&l.$results.scrollTop(a)}}),t.on("results:next",fun= ction(){var e=3Dl.getHighlightedResults(),t=3Dl.$results.find("[aria-select= ed]"),n=3Dt.index(e)+1;if(!(n>=3Dt.length)){var i=3Dt.eq(n);i.trigger("mous= eenter");var r=3Dl.$results.offset().top+l.$results.outerHeight(!1),o=3Di.o= ffset().top+i.outerHeight(!1),s=3Dl.$results.scrollTop()+o-r;0=3D=3D=3Dn?l.= $results.scrollTop(0):rthis.$res= ults.outerHeight()||o<0)&&this.$results.scrollTop(r)}},i.prototype.template= =3Dfunction(e,t){var n=3Dthis.options.get("templateResult"),i=3Dthis.option= s.get("escapeMarkup"),r=3Dn(e,t);null=3D=3Dr?t.style.display=3D"none":"stri= ng"=3D=3Dtypeof r?t.innerHTML=3Di(r):h(t).append(r)},i}),e.define("select2/= keys",[],function(){return{BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:= 18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIG= HT:39,DOWN:40,DELETE:46}}),e.define("select2/selection/base",["jquery","../= utils","../keys"],function(n,i,r){function o(e,t){this.$element=3De,this.op= tions=3Dt,o.__super__.constructor.call(this)}return i.Extend(o,i.Observable= ),o.prototype.render=3Dfunction(){var e=3Dn('');return this._tabindex=3D0,null!=3Di.GetData(this.$element[0],"old-tabi= ndex")?this._tabindex=3Di.GetData(this.$element[0],"old-tabindex"):null!=3D= this.$element.attr("tabindex")&&(this._tabindex=3Dthis.$element.attr("tabin= dex")),e.attr("title",this.$element.attr("title")),e.attr("tabindex",this._= tabindex),e.attr("aria-disabled","false"),this.$selection=3De},o.prototype.= bind=3Dfunction(e,t){var n=3Dthis,i=3De.id+"-results";this.container=3De,th= is.$selection.on("focus",function(e){n.trigger("focus",e)}),this.$selection= .on("blur",function(e){n._handleBlur(e)}),this.$selection.on("keydown",func= tion(e){n.trigger("keypress",e),e.which=3D=3D=3Dr.SPACE&&e.preventDefault()= }),e.on("results:focus",function(e){n.$selection.attr("aria-activedescendan= t",e.data._resultId)}),e.on("selection:update",function(e){n.update(e.data)= }),e.on("open",function(){n.$selection.attr("aria-expanded","true"),n.$sele= ction.attr("aria-owns",i),n._attachCloseHandler(e)}),e.on("close",function(= ){n.$selection.attr("aria-expanded","false"),n.$selection.removeAttr("aria-= activedescendant"),n.$selection.removeAttr("aria-owns"),n.$selection.trigge= r("focus"),n._detachCloseHandler(e)}),e.on("enable",function(){n.$selection= .attr("tabindex",n._tabindex),n.$selection.attr("aria-disabled","false")}),= e.on("disable",function(){n.$selection.attr("tabindex","-1"),n.$selection.a= ttr("aria-disabled","true")})},o.prototype._handleBlur=3Dfunction(e){var t= =3Dthis;window.setTimeout(function(){document.activeElement=3D=3Dt.$selecti= on[0]||n.contains(t.$selection[0],document.activeElement)||t.trigger("blur"= ,e)},1)},o.prototype._attachCloseHandler=3Dfunction(e){n(document.body).on(= "mousedown.select2."+e.id,function(e){var t=3Dn(e.target).closest(".select2= ");n(".select2.select2-container--open").each(function(){this!=3Dt[0]&&i.Ge= tData(this,"element").select2("close")})})},o.prototype._detachCloseHandler= =3Dfunction(e){n(document.body).off("mousedown.select2."+e.id)},o.prototype= .position=3Dfunction(e,t){t.find(".selection").append(e)},o.prototype.destr= oy=3Dfunction(){this._detachCloseHandler(this.container)},o.prototype.updat= e=3Dfunction(e){throw new Error("The `update` method must be defined in chi= ld classes.")},o.prototype.isEnabled=3Dfunction(){return!this.isDisabled()}= ,o.prototype.isDisabled=3Dfunction(){return this.options.get("disabled")},o= }),e.define("select2/selection/single",["jquery","./base","../utils","../ke= ys"],function(e,t,n,i){function r(){r.__super__.constructor.apply(this,argu= ments)}return n.Extend(r,t),r.prototype.render=3Dfunction(){var e=3Dr.__sup= er__.render.call(this);return e.addClass("select2-selection--single"),e.htm= l(''),e},r.prototype.bind=3Dfunction(t,e){var n=3Dthis;r.__super__.bind.app= ly(this,arguments);var i=3Dt.id+"-container";this.$selection.find(".select2= -selection__rendered").attr("id",i).attr("role","textbox").attr("aria-reado= nly","true"),this.$selection.attr("aria-labelledby",i),this.$selection.on("= mousedown",function(e){1=3D=3D=3De.which&&n.trigger("toggle",{originalEvent= :e})}),this.$selection.on("focus",function(e){}),this.$selection.on("blur",= function(e){}),t.on("focus",function(e){t.isOpen()||n.$selection.trigger("f= ocus")})},r.prototype.clear=3Dfunction(){var e=3Dthis.$selection.find(".sel= ect2-selection__rendered");e.empty(),e.removeAttr("title")},r.prototype.dis= play=3Dfunction(e,t){var n=3Dthis.options.get("templateSelection");return t= his.options.get("escapeMarkup")(n(e,t))},r.prototype.selectionContainer=3Df= unction(){return e("")},r.prototype.update=3Dfunction(e){if(0!= =3D=3De.length){var t=3De[0],n=3Dthis.$selection.find(".select2-selection__= rendered"),i=3Dthis.display(t,n);n.empty().append(i);var r=3Dt.title||t.tex= t;r?n.attr("title",r):n.removeAttr("title")}else this.clear()},r}),e.define= ("select2/selection/multiple",["jquery","./base","../utils"],function(r,e,l= ){function n(e,t){n.__super__.constructor.apply(this,arguments)}return l.Ex= tend(n,e),n.prototype.render=3Dfunction(){var e=3Dn.__super__.render.call(t= his);return e.addClass("select2-selection--multiple"),e.html('
      '),e},n.prototype.bind=3Dfunction(e,t){va= r i=3Dthis;n.__super__.bind.apply(this,arguments),this.$selection.on("click= ",function(e){i.trigger("toggle",{originalEvent:e})}),this.$selection.on("c= lick",".select2-selection__choice__remove",function(e){if(!i.isDisabled()){= var t=3Dr(this).parent(),n=3Dl.GetData(t[0],"data");i.trigger("unselect",{o= riginalEvent:e,data:n})}})},n.prototype.clear=3Dfunction(){var e=3Dthis.$se= lection.find(".select2-selection__rendered");e.empty(),e.removeAttr("title"= )},n.prototype.display=3Dfunction(e,t){var n=3Dthis.options.get("templateSe= lection");return this.options.get("escapeMarkup")(n(e,t))},n.prototype.sele= ctionContainer=3Dfunction(){return r('
    • = ×
    • ')},n.prototype.update=3Dfunction(e){if(this.clear(),0!= =3D=3De.length){for(var t=3D[],n=3D0;n×
      ');a.StoreData(i[0],"data",t),this.$sele= ction.find(".select2-selection__rendered").prepend(i)}},e}),e.define("selec= t2/selection/search",["jquery","../utils","../keys"],function(i,a,l){functi= on e(e,t,n){e.call(this,t,n)}return e.prototype.render=3Dfunction(e){var t= =3Di('');this.$searchContainer=3Dt,thi= s.$search=3Dt.find("input");var n=3De.call(this);return this._transferTabIn= dex(),n},e.prototype.bind=3Dfunction(e,t,n){var i=3Dthis,r=3Dt.id+"-results= ";e.call(this,t,n),t.on("open",function(){i.$search.attr("aria-controls",r)= ,i.$search.trigger("focus")}),t.on("close",function(){i.$search.val(""),i.$= search.removeAttr("aria-controls"),i.$search.removeAttr("aria-activedescend= ant"),i.$search.trigger("focus")}),t.on("enable",function(){i.$search.prop(= "disabled",!1),i._transferTabIndex()}),t.on("disable",function(){i.$search.= prop("disabled",!0)}),t.on("focus",function(e){i.$search.trigger("focus")})= ,t.on("results:focus",function(e){e.data._resultId?i.$search.attr("aria-act= ivedescendant",e.data._resultId):i.$search.removeAttr("aria-activedescendan= t")}),this.$selection.on("focusin",".select2-search--inline",function(e){i.= trigger("focus",e)}),this.$selection.on("focusout",".select2-search--inline= ",function(e){i._handleBlur(e)}),this.$selection.on("keydown",".select2-sea= rch--inline",function(e){if(e.stopPropagation(),i.trigger("keypress",e),i._= keyUpPrevented=3De.isDefaultPrevented(),e.which=3D=3D=3Dl.BACKSPACE&&""=3D= =3D=3Di.$search.val()){var t=3Di.$searchContainer.prev(".select2-selection_= _choice");if(0this.maximumIn= putLength?this.trigger("results:message",{message:"inputTooLong",args:{maxi= mum:this.maximumInputLength,input:t.term,params:t}}):e.call(this,t,n)},e}),= e.define("select2/data/maximumSelectionLength",[],function(){function e(e,t= ,n){this.maximumSelectionLength=3Dn.get("maximumSelectionLength"),e.call(th= is,t,n)}return e.prototype.bind=3Dfunction(e,t,n){var i=3Dthis;e.call(this,= t,n),t.on("select",function(){i._checkIfMaximumSelected()})},e.prototype.qu= ery=3Dfunction(e,t,n){var i=3Dthis;this._checkIfMaximumSelected(function(){= e.call(i,t,n)})},e.prototype._checkIfMaximumSelected=3Dfunction(e,n){var i= =3Dthis;this.current(function(e){var t=3Dnull!=3De?e.length:0;0=3Di.maximumSelectionLength?i.trigger("results:message",{m= essage:"maximumSelected",args:{maximum:i.maximumSelectionLength}}):n&&n()})= },e}),e.define("select2/dropdown",["jquery","./utils"],function(t,e){functi= on n(e,t){this.$element=3De,this.options=3Dt,n.__super__.constructor.call(t= his)}return e.Extend(n,e.Observable),n.prototype.render=3Dfunction(){var e= =3Dt('');return e.attr("dir",this.options.get("dir")),this.$dropdown=3D= e},n.prototype.bind=3Dfunction(){},n.prototype.position=3Dfunction(e,t){},n= .prototype.destroy=3Dfunction(){this.$dropdown.remove()},n}),e.define("sele= ct2/dropdown/search",["jquery","../utils"],function(o,e){function t(){}retu= rn t.prototype.render=3Dfunction(e){var t=3De.call(this),n=3Do('');return this.$searchContainer=3Dn,this.= $search=3Dn.find("input"),t.prepend(n),t},t.prototype.bind=3Dfunction(e,t,n= ){var i=3Dthis,r=3Dt.id+"-results";e.call(this,t,n),this.$search.on("keydow= n",function(e){i.trigger("keypress",e),i._keyUpPrevented=3De.isDefaultPreve= nted()}),this.$search.on("input",function(e){o(this).off("keyup")}),this.$s= earch.on("keyup input",function(e){i.handleSearch(e)}),t.on("open",function= (){i.$search.attr("tabindex",0),i.$search.attr("aria-controls",r),i.$search= .trigger("focus"),window.setTimeout(function(){i.$search.trigger("focus")},= 0)}),t.on("close",function(){i.$search.attr("tabindex",-1),i.$search.remove= Attr("aria-controls"),i.$search.removeAttr("aria-activedescendant"),i.$sear= ch.val(""),i.$search.trigger("blur")}),t.on("focus",function(){t.isOpen()||= i.$search.trigger("focus")}),t.on("results:all",function(e){null!=3De.query= .term&&""!=3D=3De.query.term||(i.showSearch(e)?i.$searchContainer.removeCla= ss("select2-search--hide"):i.$searchContainer.addClass("select2-search--hid= e"))}),t.on("results:focus",function(e){e.data._resultId?i.$search.attr("ar= ia-activedescendant",e.data._resultId):i.$search.removeAttr("aria-activedes= cendant")})},t.prototype.handleSearch=3Dfunction(e){if(!this._keyUpPrevente= d){var t=3Dthis.$search.val();this.trigger("query",{term:t})}this._keyUpPre= vented=3D!1},t.prototype.showSearch=3Dfunction(e,t){return!0},t}),e.define(= "select2/dropdown/hidePlaceholder",[],function(){function e(e,t,n,i){this.p= laceholder=3Dthis.normalizePlaceholder(n.get("placeholder")),e.call(this,t,= n,i)}return e.prototype.append=3Dfunction(e,t){t.results=3Dthis.removePlace= holder(t.results),e.call(this,t)},e.prototype.normalizePlaceholder=3Dfuncti= on(e,t){return"string"=3D=3Dtypeof t&&(t=3D{id:"",text:t}),t},e.prototype.r= emovePlaceholder=3Dfunction(e,t){for(var n=3Dt.slice(0),i=3Dt.length-1;0<= =3Di;i--){var r=3Dt[i];this.placeholder.id=3D=3D=3Dr.id&&n.splice(i,1)}retu= rn n},e}),e.define("select2/dropdown/infiniteScroll",["jquery"],function(n)= {function e(e,t,n,i){this.lastParams=3D{},e.call(this,t,n,i),this.$loadingM= ore=3Dthis.createLoadingMore(),this.loading=3D!1}return e.prototype.append= =3Dfunction(e,t){this.$loadingMore.remove(),this.loading=3D!1,e.call(this,t= ),this.showLoadingMore(t)&&(this.$results.append(this.$loadingMore),this.lo= adMoreIfNeeded())},e.prototype.bind=3Dfunction(e,t,n){var i=3Dthis;e.call(t= his,t,n),t.on("query",function(e){i.lastParams=3De,i.loading=3D!0}),t.on("q= uery:append",function(e){i.lastParams=3De,i.loading=3D!0}),this.$results.on= ("scroll",this.loadMoreIfNeeded.bind(this))},e.prototype.loadMoreIfNeeded= =3Dfunction(){var e=3Dn.contains(document.documentElement,this.$loadingMore= [0]);if(!this.loading&&e){var t=3Dthis.$results.offset().top+this.$results.= outerHeight(!1);this.$loadingMore.offset().top+this.$loadingMore.outerHeigh= t(!1)<=3Dt+50&&this.loadMore()}},e.prototype.loadMore=3Dfunction(){this.loa= ding=3D!0;var e=3Dn.extend({},{page:1},this.lastParams);e.page++,this.trigg= er("query:append",e)},e.prototype.showLoadingMore=3Dfunction(e,t){return t.= pagination&&t.pagination.more},e.prototype.createLoadingMore=3Dfunction(){v= ar e=3Dn('
    • '),t=3Dthis.options.get(= "translations").get("loadingMore");return e.html(t(this.lastParams)),e},e})= ,e.define("select2/dropdown/attachBody",["jquery","../utils"],function(f,a)= {function e(e,t,n){this.$dropdownParent=3Df(n.get("dropdownParent")||docume= nt.body),e.call(this,t,n)}return e.prototype.bind=3Dfunction(e,t,n){var i= =3Dthis;e.call(this,t,n),t.on("open",function(){i._showDropdown(),i._attach= PositioningHandler(t),i._bindContainerResultHandlers(t)}),t.on("close",func= tion(){i._hideDropdown(),i._detachPositioningHandler(t)}),this.$dropdownCon= tainer.on("mousedown",function(e){e.stopPropagation()})},e.prototype.destro= y=3Dfunction(e){e.call(this),this.$dropdownContainer.remove()},e.prototype.= position=3Dfunction(e,t,n){t.attr("class",n.attr("class")),t.removeClass("s= elect2"),t.addClass("select2-container--open"),t.css({position:"absolute",t= op:-999999}),this.$container=3Dn},e.prototype.render=3Dfunction(e){var t=3D= f(""),n=3De.call(this);return t.append(n),this.$dropdownContai= ner=3Dt},e.prototype._hideDropdown=3Dfunction(e){this.$dropdownContainer.de= tach()},e.prototype._bindContainerResultHandlers=3Dfunction(e,t){if(!this._= containerResultsHandlersBound){var n=3Dthis;t.on("results:all",function(){n= ._positionDropdown(),n._resizeDropdown()}),t.on("results:append",function()= {n._positionDropdown(),n._resizeDropdown()}),t.on("results:message",functio= n(){n._positionDropdown(),n._resizeDropdown()}),t.on("select",function(){n.= _positionDropdown(),n._resizeDropdown()}),t.on("unselect",function(){n._pos= itionDropdown(),n._resizeDropdown()}),this._containerResultsHandlersBound= =3D!0}},e.prototype._attachPositioningHandler=3Dfunction(e,t){var n=3Dthis,= i=3D"scroll.select2."+t.id,r=3D"resize.select2."+t.id,o=3D"orientationchang= e.select2."+t.id,s=3Dthis.$container.parents().filter(a.hasScroll);s.each(f= unction(){a.StoreData(this,"select2-scroll-position",{x:f(this).scrollLeft(= ),y:f(this).scrollTop()})}),s.on(i,function(e){var t=3Da.GetData(this,"sele= ct2-scroll-position");f(this).scrollTop(t.y)}),f(window).on(i+" "+r+" "+o,f= unction(e){n._positionDropdown(),n._resizeDropdown()})},e.prototype._detach= PositioningHandler=3Dfunction(e,t){var n=3D"scroll.select2."+t.id,i=3D"resi= ze.select2."+t.id,r=3D"orientationchange.select2."+t.id;this.$container.par= ents().filter(a.hasScroll).off(n),f(window).off(n+" "+i+" "+r)},e.prototype= ._positionDropdown=3Dfunction(){var e=3Df(window),t=3Dthis.$dropdown.hasCla= ss("select2-dropdown--above"),n=3Dthis.$dropdown.hasClass("select2-dropdown= --below"),i=3Dnull,r=3Dthis.$container.offset();r.bottom=3Dr.top+this.$cont= ainer.outerHeight(!1);var o=3D{height:this.$container.outerHeight(!1)};o.to= p=3Dr.top,o.bottom=3Dr.top+o.height;var s=3Dthis.$dropdown.outerHeight(!1),= a=3De.scrollTop(),l=3De.scrollTop()+e.height(),c=3Dar.bottom= +s,d=3D{left:r.left,top:o.bottom},p=3Dthis.$dropdownParent;"static"=3D=3D= =3Dp.css("position")&&(p=3Dp.offsetParent());var h=3D{top:0,left:0};(f.cont= ains(document.body,p[0])||p[0].isConnected)&&(h=3Dp.offset()),d.top-=3Dh.to= p,d.left-=3Dh.left,t||n||(i=3D"below"),u||!c||t?!c&&u&&t&&(i=3D"below"):i= =3D"above",("above"=3D=3Di||t&&"below"!=3D=3Di)&&(d.top=3Do.top-h.top-s),nu= ll!=3Di&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropd= own--above").addClass("select2-dropdown--"+i),this.$container.removeClass("= select2-container--below select2-container--above").addClass("select2-conta= iner--"+i)),this.$dropdownContainer.css(d)},e.prototype._resizeDropdown=3Df= unction(){var e=3D{width:this.$container.outerWidth(!1)+"px"};this.options.= get("dropdownAutoWidth")&&(e.minWidth=3De.width,e.position=3D"relative",e.w= idth=3D"auto"),this.$dropdown.css(e)},e.prototype._showDropdown=3Dfunction(= e){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDro= pdown(),this._resizeDropdown()},e}),e.define("select2/dropdown/minimumResul= tsForSearch",[],function(){function e(e,t,n,i){this.minimumResultsForSearch= =3Dn.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.m= inimumResultsForSearch=3D1/0),e.call(this,t,n,i)}return e.prototype.showSea= rch=3Dfunction(e,t){return!(function e(t){for(var n=3D0,i=3D0;i');ret= urn e.attr("dir",this.options.get("dir")),this.$container=3De,this.$contain= er.addClass("select2-container--"+this.options.get("theme")),u.StoreData(e[= 0],"element",this.$element),e},d}),e.define("select2/compat/utils",["jquery= "],function(s){return{syncCssClasses:function(e,t,n){var i,r,o=3D[];(i=3Ds.= trim(e.attr("class")))&&s((i=3D""+i).split(/\s+/)).each(function(){0=3D=3D= =3Dthis.indexOf("select2-")&&o.push(this)}),(i=3Ds.trim(t.attr("class")))&&= s((i=3D""+i).split(/\s+/)).each(function(){0!=3D=3Dthis.indexOf("select2-")= &&null!=3D(r=3Dn(this))&&o.push(r)}),e.attr("class",o.join(" "))}}}),e.defi= ne("select2/compat/containerCss",["jquery","./utils"],function(s,a){functio= n l(e){return null}function e(){}return e.prototype.render=3Dfunction(e){va= r t=3De.call(this),n=3Dthis.options.get("containerCssClass")||"";s.isFuncti= on(n)&&(n=3Dn(this.$element));var i=3Dthis.options.get("adaptContainerCssCl= ass");if(i=3Di||l,-1!=3D=3Dn.indexOf(":all:")){n=3Dn.replace(":all:","");va= r r=3Di;i=3Dfunction(e){var t=3Dr(e);return null!=3Dt?t+" "+e:e}}var o=3Dth= is.options.get("containerCss")||{};return s.isFunction(o)&&(o=3Do(this.$ele= ment)),a.syncCssClasses(t,this.$element,i),t.css(o),t.addClass(n),t},e}),e.= define("select2/compat/dropdownCss",["jquery","./utils"],function(s,a){func= tion l(e){return null}function e(){}return e.prototype.render=3Dfunction(e)= {var t=3De.call(this),n=3Dthis.options.get("dropdownCssClass")||"";s.isFunc= tion(n)&&(n=3Dn(this.$element));var i=3Dthis.options.get("adaptDropdownCssC= lass");if(i=3Di||l,-1!=3D=3Dn.indexOf(":all:")){n=3Dn.replace(":all:","");v= ar r=3Di;i=3Dfunction(e){var t=3Dr(e);return null!=3Dt?t+" "+e:e}}var o=3Dt= his.options.get("dropdownCss")||{};return s.isFunction(o)&&(o=3Do(this.$ele= ment)),a.syncCssClasses(t,this.$element,i),t.css(o),t.addClass(n),t},e}),e.= define("select2/compat/initSelection",["jquery"],function(i){function e(e,t= ,n){n.get("debug")&&window.console&&console.warn&&console.warn("Select2: Th= e `initSelection` option has been deprecated in favor of a custom data adap= ter that overrides the `current` method. This method is now called multiple= times instead of a single time when the instance is initialized. Support w= ill be removed for the `initSelection` option in future versions of Select2= "),this.initSelection=3Dn.get("initSelection"),this._isInitialized=3D!1,e.c= all(this,t,n)}return e.prototype.current=3Dfunction(e,t){var n=3Dthis;this.= _isInitialized?e.call(this,t):this.initSelection.call(null,this.$element,fu= nction(e){n._isInitialized=3D!0,i.isArray(e)||(e=3D[e]),t(e)})},e}),e.defin= e("select2/compat/inputData",["jquery","../utils"],function(s,i){function e= (e,t,n){this._currentData=3D[],this._valueSeparator=3Dn.get("valueSeparator= ")||",","hidden"=3D=3D=3Dt.prop("type")&&n.get("debug")&&console&&console.w= arn&&console.warn("Select2: Using a hidden input with Select2 is no longer = supported and may stop working in the future. It is recommended to use a `<= select>` element instead."),e.call(this,t,n)}return e.prototype.current=3Df= unction(e,t){function i(e,t){var n=3D[];return e.selected||-1!=3D=3Ds.inArr= ay(e.id,t)?(e.selected=3D!0,n.push(e)):e.selected=3D!1,e.children&&n.push.a= pply(n,i(e.children,t)),n}for(var n=3D[],r=3D0;r + + + VNL Member Attendance Form + + + +
      +

      VNL Member Attendance Form

      +
      +
      +
      + + +
      +
      + + +
      +
      + + +
      +
      + + +
      + +
      +
      +
      +