Version Description
- 2020-07-20 =
- Fix font-awesome icons conflict with other themes and/or plugins.
- Fix bug which creates interferences in post pages with checkboxes.
- Fix broken font-family on chat client.
Download this release
Release Info
Developer | wpdev3cx |
Plugin | WP Live Chat Support |
Version | 9.0.3 |
Comparing to | |
See all releases |
Code changes from version 9.0.2 to 9.0.3
- changelog.txt +5 -0
- config.php +1 -1
- includes/blocks/wplc-chat-box/block.js +1 -1
- includes/wplc_admin_menu.php +1 -1
- js/tcx-fa.js +1 -1
- js/tcx-fa.min.js +1 -1
- js/wplc_initiate.js +2 -2
- modules/chat_client/chat_client_view.php +1 -1
- modules/google_analytics.php +1 -1
- modules/settings/settings_partials/business_hours_settings.php +2 -2
- modules/settings/settings_partials/chatbox_settings.php +12 -12
- modules/settings/settings_partials/departments_settings.php +1 -1
- modules/settings/settings_partials/encryption_settings.php +1 -1
- modules/settings/settings_partials/general_settings.php +14 -14
- modules/settings/settings_partials/gutenberg_settings.php +2 -2
- modules/settings/settings_partials/offline_messages_settings.php +2 -2
- modules/settings/settings_partials/privacy_settings.php +2 -2
- modules/settings/settings_partials/styling_settings.php +1 -1
- modules/triggers/manage_trigger_view.php +2 -2
- modules/user_settings/user_settings_view.php +1 -1
- readme.txt +5 -1
- wp-live-chat-support.php +1 -1
changelog.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
= 9.0.2 - 2020-07-17 =
|
2 |
* Fix validation error texts.
|
3 |
* Fix activation process after update from old version.
|
1 |
+
= 9.0.3 - 2020-07-20 =
|
2 |
+
* Fix font-awesome icons conflict with other themes and/or plugins.
|
3 |
+
* Fix bug which creates interferences in post pages with checkboxes.
|
4 |
+
* Fix broken font-family on chat client.
|
5 |
+
|
6 |
= 9.0.2 - 2020-07-17 =
|
7 |
* Fix validation error texts.
|
8 |
* Fix activation process after update from old version.
|
config.php
CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
9 |
|
10 |
define('WPLC_MIN_WP_VERSION', "5.3");
|
11 |
define('WPLC_MIN_PHP_VERSION', "5.4");
|
12 |
-
define('WPLC_PLUGIN_VERSION', "9.0.
|
13 |
define('WPLC_PLUGIN_DIR', dirname(__FILE__));
|
14 |
define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
|
15 |
define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
|
9 |
|
10 |
define('WPLC_MIN_WP_VERSION', "5.3");
|
11 |
define('WPLC_MIN_PHP_VERSION', "5.4");
|
12 |
+
define('WPLC_PLUGIN_VERSION', "9.0.3");
|
13 |
define('WPLC_PLUGIN_DIR', dirname(__FILE__));
|
14 |
define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
|
15 |
define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
|
includes/blocks/wplc-chat-box/block.js
CHANGED
@@ -57,7 +57,7 @@
|
|
57 |
{
|
58 |
id: 'wplc-chat-box',
|
59 |
className: classes,
|
60 |
-
dangerouslySetInnerHTML: {__html: wplc_template}
|
61 |
},
|
62 |
);
|
63 |
}
|
57 |
{
|
58 |
id: 'wplc-chat-box',
|
59 |
className: classes,
|
60 |
+
dangerouslySetInnerHTML: {__html: '<div id="wplc_wrapper">'+wplc_template+'</div>'}
|
61 |
},
|
62 |
);
|
63 |
}
|
includes/wplc_admin_menu.php
CHANGED
@@ -169,7 +169,7 @@ function wplc_maa_online_agents() {
|
|
169 |
$wp_admin_bar->add_node( array(
|
170 |
'id' => 'wplc_ma_online_switch',
|
171 |
'meta' => array('class' => 'wplc_online_switch_'.(TCXAgentsHelper::is_agent_accepting() ? 'online' : 'offline')),
|
172 |
-
'title' => '<input '.(!$wplc_settings->wplc_allow_agents_set_status ?"disabled":"").' type="checkbox" id="wplc_online_topbar_switch" '.(TCXAgentsHelper::is_agent_accepting() ? 'checked="checked"' : '') . ' class="wplc_online_topbar_switch wplc_online_topbar_switch_' . (TCXAgentsHelper::is_agent_accepting() ? 'online' : 'offline') . '" />
|
173 |
<span id="wplc_ma_online_agent_text">'.(TCXAgentsHelper::is_agent_accepting() ? __('Online', 'wp-live-chat-support') : __('Offline','wp-live-chat-support')) . '
|
174 |
</span>',
|
175 |
'href' => false
|
169 |
$wp_admin_bar->add_node( array(
|
170 |
'id' => 'wplc_ma_online_switch',
|
171 |
'meta' => array('class' => 'wplc_online_switch_'.(TCXAgentsHelper::is_agent_accepting() ? 'online' : 'offline')),
|
172 |
+
'title' => '<input '.(!$wplc_settings->wplc_allow_agents_set_status ?"disabled":"").' type="checkbox" id="wplc_online_topbar_switch" '.(TCXAgentsHelper::is_agent_accepting() ? 'checked="checked"' : '') . ' class="wplc_check wplc_online_topbar_switch wplc_online_topbar_switch_' . (TCXAgentsHelper::is_agent_accepting() ? 'online' : 'offline') . '" />
|
173 |
<span id="wplc_ma_online_agent_text">'.(TCXAgentsHelper::is_agent_accepting() ? __('Online', 'wp-live-chat-support') : __('Offline','wp-live-chat-support')) . '
|
174 |
</span>',
|
175 |
'href' => false
|
js/tcx-fa.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("TCXfa",[],e):"object"==typeof exports?exports.TCXfa=e():t.TCXfa=e()}(window,(function(){return function(t){var e={};function n(a){if(e[a])return e[a].exports;var r=e[a]={i:a,l:!1,exports:{}};return t[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(a,r,function(e){return t[e]}.bind(null,r));return a},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=5)}([function(t,e,n){"use strict";(function(t,a){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},a=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(a=a.concat(Object.getOwnPropertySymbols(n).filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable})))),a.forEach((function(e){c(t,e,n[e])}))}return t}function s(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var c,o=t[Symbol.iterator]();!(a=(c=o.next()).done)&&(n.push(c.value),!e||n.length!==e);a=!0);}catch(t){r=!0,i=t}finally{try{a||null==o.return||o.return()}finally{if(r)throw i}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function f(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}n.d(e,"b",(function(){return xe})),n.d(e,"a",(function(){return Me}));var l=function(){},u={},d={},m=null,h={mark:l,measure:l};try{"undefined"!=typeof window&&(u=window),"undefined"!=typeof document&&(d=document),"undefined"!=typeof MutationObserver&&(m=MutationObserver),"undefined"!=typeof performance&&(h=performance)}catch(t){}var p=(u.navigator||{}).userAgent,v=void 0===p?"":p,g=u,b=d,y=m,w=h,x=(g.document,!!b.documentElement&&!!b.head&&"function"==typeof b.addEventListener&&"function"==typeof b.createElement),z=~v.indexOf("MSIE")||~v.indexOf("Trident/"),M=["HTML","HEAD","STYLE","SCRIPT"],k=function(){try{return!0}catch(t){return!1}}(),C={fas:"solid",far:"regular",fal:"light",fad:"duotone",fab:"brands",fa:"solid"},N={solid:"fas",regular:"far",light:"fal",duotone:"fad",brands:"fab"},_=/Font Awesome 5 (Solid|Regular|Light|Duotone|Brands|Free|Pro)/,L={900:"fas",400:"far",normal:"far",300:"fal"},A=[1,2,3,4,5,6,7,8,9,10],S=A.concat([11,12,13,14,15,16,17,18,19,20]),T=["class","data-prefix","data-icon","data-fa-transform","data-fa-mask"],O={GROUP:"group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},H=["xs","sm","lg","fw","ul","li","border","pull-left","pull-right","spin","pulse","rotate-90","rotate-180","rotate-270","flip-horizontal","flip-vertical","flip-both","stack","stack-1x","stack-2x","inverse","layers","layers-text","layers-counter",O.GROUP,O.SWAP_OPACITY,O.PRIMARY,O.SECONDARY].concat(A.map((function(t){return"".concat(t,"x")}))).concat(S.map((function(t){return"w-".concat(t)}))),E=g.FontAwesomeConfig||{};if(b&&"function"==typeof b.querySelector){[["data-family-prefix","familyPrefix"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach((function(t){var e=s(t,2),n=e[0],a=e[1],r=function(t){return""===t||"false"!==t&&("true"===t||t)}(function(t){var e=b.querySelector("script["+t+"]");if(e)return e.getAttribute(t)}(n));null!=r&&(E[a]=r)}))}var I=o({},{familyPrefix:"fa",replacementClass:"svg-inline--fa",autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0},E);I.autoReplaceSvg||(I.observeMutations=!1);var j=o({},I);g.FontAwesomeConfig=j;var P=g||{};P.___FONT_AWESOME___||(P.___FONT_AWESOME___={}),P.___FONT_AWESOME___.styles||(P.___FONT_AWESOME___.styles={}),P.___FONT_AWESOME___.hooks||(P.___FONT_AWESOME___.hooks={}),P.___FONT_AWESOME___.shims||(P.___FONT_AWESOME___.shims=[]);var V=P.___FONT_AWESOME___,R=[],F=!1;function D(t){x&&(F?setTimeout(t,0):R.push(t))}x&&((F=(b.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(b.readyState))||b.addEventListener("DOMContentLoaded",(function t(){b.removeEventListener("DOMContentLoaded",t),F=1,R.map((function(t){return t()}))})));var Y,W=function(){},X=void 0!==t&&void 0!==t.process&&"function"==typeof t.process.emit,B=void 0===a?setTimeout:a,U=[];function q(){for(var t=0;t<U.length;t++)U[t][0](U[t][1]);U=[],Y=!1}function K(t,e){U.push([t,e]),Y||(Y=!0,B(q,0))}function G(t){var e=t.owner,n=e._state,a=e._data,r=t[n],i=t.then;if("function"==typeof r){n="fulfilled";try{a=r(a)}catch(t){Q(i,t)}}Z(i,a)||("fulfilled"===n&&$(i,a),"rejected"===n&&Q(i,a))}function Z(t,e){var n;try{if(t===e)throw new TypeError("A promises callback cannot return that same promise.");if(e&&("function"==typeof e||"object"===r(e))){var a=e.then;if("function"==typeof a)return a.call(e,(function(a){n||(n=!0,e===a?J(t,a):$(t,a))}),(function(e){n||(n=!0,Q(t,e))})),!0}}catch(e){return n||Q(t,e),!0}return!1}function $(t,e){t!==e&&Z(t,e)||J(t,e)}function J(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(et,t))}function Q(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(nt,t))}function tt(t){t._then=t._then.forEach(G)}function et(t){t._state="fulfilled",tt(t)}function nt(e){e._state="rejected",tt(e),!e._handled&&X&&t.process.emit("unhandledRejection",e._data,e)}function at(e){t.process.emit("rejectionHandled",e)}function rt(t){if("function"!=typeof t)throw new TypeError("Promise resolver "+t+" is not a function");if(this instanceof rt==!1)throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");this._then=[],function(t,e){function n(t){Q(e,t)}try{t((function(t){$(e,t)}),n)}catch(t){n(t)}}(t,this)}rt.prototype={constructor:rt,_state:"pending",_then:null,_data:void 0,_handled:!1,then:function(t,e){var n={owner:this,then:new this.constructor(W),fulfilled:t,rejected:e};return!e&&!t||this._handled||(this._handled=!0,"rejected"===this._state&&X&&K(at,this)),"fulfilled"===this._state||"rejected"===this._state?K(G,n):this._then.push(n),n.then},catch:function(t){return this.then(null,t)}},rt.all=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.all().");return new rt((function(e,n){var a=[],r=0;function i(t){return r++,function(n){a[t]=n,--r||e(a)}}for(var c,o=0;o<t.length;o++)(c=t[o])&&"function"==typeof c.then?c.then(i(o),n):a[o]=c;r||e(a)}))},rt.race=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.race().");return new rt((function(e,n){for(var a,r=0;r<t.length;r++)(a=t[r])&&"function"==typeof a.then?a.then(e,n):e(a)}))},rt.resolve=function(t){return t&&"object"===r(t)&&t.constructor===rt?t:new rt((function(e){e(t)}))},rt.reject=function(t){return new rt((function(e,n){n(t)}))};var it="function"==typeof Promise?Promise:rt,ct=16,ot={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function st(t){if(t&&x){var e=b.createElement("style");e.setAttribute("type","text/css"),e.innerHTML=t;for(var n=b.head.childNodes,a=null,r=n.length-1;r>-1;r--){var i=n[r],c=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(c)>-1&&(a=i)}return b.head.insertBefore(e,a),t}}function ft(){for(var t=12,e="";t-- >0;)e+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return e}function lt(t){for(var e=[],n=(t||[]).length>>>0;n--;)e[n]=t[n];return e}function ut(t){return t.classList?lt(t.classList):(t.getAttribute("class")||"").split(" ").filter((function(t){return t}))}function dt(t,e){var n,a=e.split("-"),r=a[0],i=a.slice(1).join("-");return r!==t||""===i||(n=i,~H.indexOf(n))?null:i}function mt(t){return"".concat(t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function ht(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,": ").concat(t[n],";")}),"")}function pt(t){return t.size!==ot.size||t.x!==ot.x||t.y!==ot.y||t.rotate!==ot.rotate||t.flipX||t.flipY}function vt(t){var e=t.transform,n=t.containerWidth,a=t.iconWidth,r={transform:"translate(".concat(n/2," 256)")},i="translate(".concat(32*e.x,", ").concat(32*e.y,") "),c="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),o="rotate(".concat(e.rotate," 0 0)");return{outer:r,inner:{transform:"".concat(i," ").concat(c," ").concat(o)},path:{transform:"translate(".concat(a/2*-1," -256)")}}}var gt={x:0,y:0,width:"100%",height:"100%"};function bt(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return t.attributes&&(t.attributes.fill||e)&&(t.attributes.fill="black"),t}function yt(t){var e=t.icons,n=e.main,a=e.mask,r=t.prefix,i=t.iconName,c=t.transform,s=t.symbol,f=t.title,l=t.maskId,u=t.titleId,d=t.extra,m=t.watchable,h=void 0!==m&&m,p=a.found?a:n,v=p.width,g=p.height,b="fa-w-".concat(Math.ceil(v/g*16)),y=[j.replacementClass,i?"".concat(j.familyPrefix,"-").concat(i):"",b].filter((function(t){return-1===d.classes.indexOf(t)})).concat(d.classes).join(" "),w={children:[],attributes:o({},d.attributes,{"data-prefix":r,"data-icon":i,class:y,role:d.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(v," ").concat(g)})};h&&(w.attributes["data-fa-i2svg"]=""),f&&w.children.push({tag:"title",attributes:{id:w.attributes["aria-labelledby"]||"title-".concat(u||ft())},children:[f]});var x=o({},w,{prefix:r,iconName:i,main:n,mask:a,maskId:l,transform:c,symbol:s,styles:d.styles}),z=a.found&&n.found?function(t){var e,n=t.children,a=t.attributes,r=t.main,i=t.mask,c=t.maskId,s=t.transform,f=r.width,l=r.icon,u=i.width,d=i.icon,m=vt({transform:s,containerWidth:u,iconWidth:f}),h={tag:"rect",attributes:o({},gt,{fill:"white"})},p=l.children?{children:l.children.map(bt)}:{},v={tag:"g",attributes:o({},m.inner),children:[bt(o({tag:l.tag,attributes:o({},l.attributes,m.path)},p))]},g={tag:"g",attributes:o({},m.outer),children:[v]},b="mask-".concat(c||ft()),y="clip-".concat(c||ft()),w={tag:"mask",attributes:o({},gt,{id:b,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[h,g]},x={tag:"defs",children:[{tag:"clipPath",attributes:{id:y},children:(e=d,"g"===e.tag?e.children:[e])},w]};return n.push(x,{tag:"rect",attributes:o({fill:"currentColor","clip-path":"url(#".concat(y,")"),mask:"url(#".concat(b,")")},gt)}),{children:n,attributes:a}}(x):function(t){var e=t.children,n=t.attributes,a=t.main,r=t.transform,i=ht(t.styles);if(i.length>0&&(n.style=i),pt(r)){var c=vt({transform:r,containerWidth:a.width,iconWidth:a.width});e.push({tag:"g",attributes:o({},c.outer),children:[{tag:"g",attributes:o({},c.inner),children:[{tag:a.icon.tag,children:a.icon.children,attributes:o({},a.icon.attributes,c.path)}]}]})}else e.push(a.icon);return{children:e,attributes:n}}(x),M=z.children,k=z.attributes;return x.children=M,x.attributes=k,s?function(t){var e=t.prefix,n=t.iconName,a=t.children,r=t.attributes,i=t.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:o({},r,{id:!0===i?"".concat(e,"-").concat(j.familyPrefix,"-").concat(n):i}),children:a}]}]}(x):function(t){var e=t.children,n=t.main,a=t.mask,r=t.attributes,i=t.styles,c=t.transform;if(pt(c)&&n.found&&!a.found){var s={x:n.width/n.height/2,y:.5};r.style=ht(o({},i,{"transform-origin":"".concat(s.x+c.x/16,"em ").concat(s.y+c.y/16,"em")}))}return[{tag:"svg",attributes:r,children:e}]}(x)}function wt(t){var e=t.content,n=t.width,a=t.height,r=t.transform,i=t.title,c=t.extra,s=t.watchable,f=void 0!==s&&s,l=o({},c.attributes,i?{title:i}:{},{class:c.classes.join(" ")});f&&(l["data-fa-i2svg"]="");var u=o({},c.styles);pt(r)&&(u.transform=function(t){var e=t.transform,n=t.width,a=void 0===n?16:n,r=t.height,i=void 0===r?16:r,c=t.startCentered,o=void 0!==c&&c,s="";return s+=o&&z?"translate(".concat(e.x/ct-a/2,"em, ").concat(e.y/ct-i/2,"em) "):o?"translate(calc(-50% + ".concat(e.x/ct,"em), calc(-50% + ").concat(e.y/ct,"em)) "):"translate(".concat(e.x/ct,"em, ").concat(e.y/ct,"em) "),s+="scale(".concat(e.size/ct*(e.flipX?-1:1),", ").concat(e.size/ct*(e.flipY?-1:1),") "),s+="rotate(".concat(e.rotate,"deg) ")}({transform:r,startCentered:!0,width:n,height:a}),u["-webkit-transform"]=u.transform);var d=ht(u);d.length>0&&(l.style=d);var m=[];return m.push({tag:"span",attributes:l,children:[e]}),i&&m.push({tag:"span",attributes:{class:"sr-only"},children:[i]}),m}function xt(t){var e=t.content,n=t.title,a=t.extra,r=o({},a.attributes,n?{title:n}:{},{class:a.classes.join(" ")}),i=ht(a.styles);i.length>0&&(r.style=i);var c=[];return c.push({tag:"span",attributes:r,children:[e]}),n&&c.push({tag:"span",attributes:{class:"sr-only"},children:[n]}),c}var zt=function(){},Mt=j.measurePerformance&&w&&w.mark&&w.measure?w:{mark:zt,measure:zt},kt='FA "5.13.0"',Ct=function(t){Mt.mark("".concat(kt," ").concat(t," ends")),Mt.measure("".concat(kt," ").concat(t),"".concat(kt," ").concat(t," begins"),"".concat(kt," ").concat(t," ends"))},Nt=function(t){return Mt.mark("".concat(kt," ").concat(t," begins")),function(){return Ct(t)}},_t=function(t,e,n,a){var r,i,c,o=Object.keys(t),s=o.length,f=void 0!==a?function(t,e){return function(n,a,r,i){return t.call(e,n,a,r,i)}}(e,a):e;for(void 0===n?(r=1,c=t[o[0]]):(r=0,c=n);r<s;r++)c=f(c,t[i=o[r]],i,t);return c};function Lt(t){for(var e="",n=0;n<t.length;n++){e+=("000"+t.charCodeAt(n).toString(16)).slice(-4)}return e}function At(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=n.skipHooks,r=void 0!==a&&a,i=Object.keys(e).reduce((function(t,n){var a=e[n];return!!a.icon?t[a.iconName]=a.icon:t[n]=a,t}),{});"function"!=typeof V.hooks.addPack||r?V.styles[t]=o({},V.styles[t]||{},i):V.hooks.addPack(t,i),"fas"===t&&At("fa",e)}var St=V.styles,Tt=V.shims,Ot={},Ht={},Et={},It=function(){var t=function(t){return _t(St,(function(e,n,a){return e[a]=_t(n,t,{}),e}),{})};Ot=t((function(t,e,n){return e[3]&&(t[e[3]]=n),t})),Ht=t((function(t,e,n){var a=e[2];return t[n]=n,a.forEach((function(e){t[e]=n})),t}));var e="far"in St;Et=_t(Tt,(function(t,n){var a=n[0],r=n[1],i=n[2];return"far"!==r||e||(r="fas"),t[a]={prefix:r,iconName:i},t}),{})};function jt(t,e){return(Ot[t]||{})[e]}It();var Pt=V.styles;function Vt(t){return t.reduce((function(t,e){var n=dt(j.familyPrefix,e);if(Pt[e])t.prefix=e;else if(j.autoFetchSvg&&["fas","far","fal","fad","fab","fa"].indexOf(e)>-1)t.prefix=e;else if(n){var a="fa"===t.prefix?Et[n]||{prefix:null,iconName:null}:{};t.iconName=a.iconName||n,t.prefix=a.prefix||t.prefix}else e!==j.replacementClass&&0!==e.indexOf("fa-w-")&&t.rest.push(e);return t}),{prefix:null,iconName:null,rest:[]})}function Rt(t,e,n){if(t&&t[e]&&t[e][n])return{prefix:e,iconName:n,icon:t[e][n]}}function Ft(t){var e=t.tag,n=t.attributes,a=void 0===n?{}:n,r=t.children,i=void 0===r?[]:r;return"string"==typeof t?mt(t):"<".concat(e," ").concat(function(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,'="').concat(mt(t[n]),'" ')}),"").trim()}(a),">").concat(i.map(Ft).join(""),"</").concat(e,">")}var Dt=function(){};function Yt(t){return"string"==typeof(t.getAttribute?t.getAttribute("data-fa-i2svg"):null)}var Wt={replace:function(t){var e=t[0],n=t[1].map((function(t){return Ft(t)})).join("\n");if(e.parentNode&&e.outerHTML)e.outerHTML=n+(j.keepOriginalSource&&"svg"!==e.tagName.toLowerCase()?"\x3c!-- ".concat(e.outerHTML," --\x3e"):"");else if(e.parentNode){var a=document.createElement("span");e.parentNode.replaceChild(a,e),a.outerHTML=n}},nest:function(t){var e=t[0],n=t[1];if(~ut(e).indexOf(j.replacementClass))return Wt.replace(t);var a=new RegExp("".concat(j.familyPrefix,"-.*"));delete n[0].attributes.style,delete n[0].attributes.id;var r=n[0].attributes.class.split(" ").reduce((function(t,e){return e===j.replacementClass||e.match(a)?t.toSvg.push(e):t.toNode.push(e),t}),{toNode:[],toSvg:[]});n[0].attributes.class=r.toSvg.join(" ");var i=n.map((function(t){return Ft(t)})).join("\n");e.setAttribute("class",r.toNode.join(" ")),e.setAttribute("data-fa-i2svg",""),e.innerHTML=i}};function Xt(t){t()}function Bt(t,e){var n="function"==typeof e?e:Dt;if(0===t.length)n();else{var a=Xt;"async"===j.mutateApproach&&(a=g.requestAnimationFrame||Xt),a((function(){var e=!0===j.autoReplaceSvg?Wt.replace:Wt[j.autoReplaceSvg]||Wt.replace,a=Nt("mutate");t.map(e),a(),n()}))}}var Ut=!1;function qt(){Ut=!1}var Kt=null;function Gt(t){if(y&&j.observeMutations){var e=t.treeCallback,n=t.nodeCallback,a=t.pseudoElementsCallback,r=t.observeMutationsRoot,i=void 0===r?b:r;Kt=new y((function(t){Ut||lt(t).forEach((function(t){if("childList"===t.type&&t.addedNodes.length>0&&!Yt(t.addedNodes[0])&&(j.searchPseudoElements&&a(t.target),e(t.target)),"attributes"===t.type&&t.target.parentNode&&j.searchPseudoElements&&a(t.target.parentNode),"attributes"===t.type&&Yt(t.target)&&~T.indexOf(t.attributeName))if("class"===t.attributeName){var r=Vt(ut(t.target)),i=r.prefix,c=r.iconName;i&&t.target.setAttribute("data-prefix",i),c&&t.target.setAttribute("data-icon",c)}else n(t.target)}))})),x&&Kt.observe(i,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Zt(t){var e,n,a=t.getAttribute("data-prefix"),r=t.getAttribute("data-icon"),i=void 0!==t.innerText?t.innerText.trim():"",c=Vt(ut(t));return a&&r&&(c.prefix=a,c.iconName=r),c.prefix&&i.length>1?c.iconName=(e=c.prefix,n=t.innerText,(Ht[e]||{})[n]):c.prefix&&1===i.length&&(c.iconName=jt(c.prefix,Lt(t.innerText))),c}var $t=function(t){var e={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return t?t.toLowerCase().split(" ").reduce((function(t,e){var n=e.toLowerCase().split("-"),a=n[0],r=n.slice(1).join("-");if(a&&"h"===r)return t.flipX=!0,t;if(a&&"v"===r)return t.flipY=!0,t;if(r=parseFloat(r),isNaN(r))return t;switch(a){case"grow":t.size=t.size+r;break;case"shrink":t.size=t.size-r;break;case"left":t.x=t.x-r;break;case"right":t.x=t.x+r;break;case"up":t.y=t.y-r;break;case"down":t.y=t.y+r;break;case"rotate":t.rotate=t.rotate+r}return t}),e):e};function Jt(t){var e=Zt(t),n=e.iconName,a=e.prefix,r=e.rest,i=function(t){var e=t.getAttribute("style"),n=[];return e&&(n=e.split(";").reduce((function(t,e){var n=e.split(":"),a=n[0],r=n.slice(1);return a&&r.length>0&&(t[a]=r.join(":").trim()),t}),{})),n}(t),c=function(t){return $t(t.getAttribute("data-fa-transform"))}(t),o=function(t){var e=t.getAttribute("data-fa-symbol");return null!==e&&(""===e||e)}(t),s=function(t){var e=lt(t.attributes).reduce((function(t,e){return"class"!==t.name&&"style"!==t.name&&(t[e.name]=e.value),t}),{}),n=t.getAttribute("title"),a=t.getAttribute("data-fa-title-id");return j.autoA11y&&(n?e["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(a||ft()):(e["aria-hidden"]="true",e.focusable="false")),e}(t),f=function(t){var e=t.getAttribute("data-fa-mask");return e?Vt(e.split(" ").map((function(t){return t.trim()}))):{prefix:null,iconName:null,rest:[]}}(t);return{iconName:n,title:t.getAttribute("title"),titleId:t.getAttribute("data-fa-title-id"),prefix:a,transform:c,symbol:o,mask:f,maskId:t.getAttribute("data-fa-mask-id"),extra:{classes:r,styles:i,attributes:s}}}function Qt(t){this.name="MissingIcon",this.message=t||"Icon unavailable",this.stack=(new Error).stack}Qt.prototype=Object.create(Error.prototype),Qt.prototype.constructor=Qt;var te={fill:"currentColor"},ee={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},ne={tag:"path",attributes:o({},te,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})},ae=o({},ee,{attributeName:"opacity"}),re={tag:"g",children:[ne,{tag:"circle",attributes:o({},te,{cx:"256",cy:"364",r:"28"}),children:[{tag:"animate",attributes:o({},ee,{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:o({},ae,{values:"1;0;1;1;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:[{tag:"animate",attributes:o({},ae,{values:"1;0;0;0;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:o({},ae,{values:"0;0;1;1;0;0;"})}]}]},ie=V.styles;function ce(t){var e=t[0],n=t[1],a=s(t.slice(4),1)[0];return{found:!0,width:e,height:n,icon:Array.isArray(a)?{tag:"g",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.GROUP)},children:[{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.SECONDARY),fill:"currentColor",d:a[0]}},{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.PRIMARY),fill:"currentColor",d:a[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:a}}}}function oe(t,e){return new it((function(n,a){var i={found:!1,width:512,height:512,icon:re};if(t&&e&&ie[e]&&ie[e][t])return n(ce(ie[e][t]));"object"===r(g.FontAwesomeKitConfig)&&"string"==typeof window.FontAwesomeKitConfig.token&&g.FontAwesomeKitConfig.token,t&&e&&!j.showMissingIcons?a(new Qt("Icon is missing for prefix ".concat(e," with icon name ").concat(t))):n(i)}))}var se=V.styles;function fe(t){var e=Jt(t);return~e.extra.classes.indexOf("fa-layers-text")?function(t,e){var n=e.title,a=e.transform,r=e.extra,i=null,c=null;if(z){var o=parseInt(getComputedStyle(t).fontSize,10),s=t.getBoundingClientRect();i=s.width/o,c=s.height/o}return j.autoA11y&&!n&&(r.attributes["aria-hidden"]="true"),it.resolve([t,wt({content:t.innerHTML,width:i,height:c,transform:a,title:n,extra:r,watchable:!0})])}(t,e):function(t,e){var n=e.iconName,a=e.title,r=e.titleId,i=e.prefix,c=e.transform,o=e.symbol,f=e.mask,l=e.maskId,u=e.extra;return new it((function(e,d){it.all([oe(n,i),oe(f.iconName,f.prefix)]).then((function(f){var d=s(f,2),m=d[0],h=d[1];e([t,yt({icons:{main:m,mask:h},prefix:i,iconName:n,transform:c,symbol:o,mask:h,maskId:l,title:a,titleId:r,extra:u,watchable:!0})])}))}))}(t,e)}function le(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(x){var n=b.documentElement.classList,a=function(t){return n.add("".concat("fontawesome-i2svg","-").concat(t))},r=function(t){return n.remove("".concat("fontawesome-i2svg","-").concat(t))},i=j.autoFetchSvg?Object.keys(C):Object.keys(se),c=[".".concat("fa-layers-text",":not([").concat("data-fa-i2svg","])")].concat(i.map((function(t){return".".concat(t,":not([").concat("data-fa-i2svg","])")}))).join(", ");if(0!==c.length){var o=[];try{o=lt(t.querySelectorAll(c))}catch(t){}if(o.length>0){a("pending"),r("complete");var s=Nt("onTree"),f=o.reduce((function(t,e){try{var n=fe(e);n&&t.push(n)}catch(t){k||t instanceof Qt&&console.error(t)}return t}),[]);return new it((function(t,n){it.all(f).then((function(n){Bt(n,(function(){a("active"),a("complete"),r("pending"),"function"==typeof e&&e(),s(),t()}))})).catch((function(){s(),n()}))}))}}}}function ue(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;fe(t).then((function(t){t&&Bt([t],e)}))}function de(t,e){var n="".concat("data-fa-pseudo-element-pending").concat(e.replace(":","-"));return new it((function(a,r){if(null!==t.getAttribute(n))return a();var i=lt(t.children).filter((function(t){return t.getAttribute("data-fa-pseudo-element")===e}))[0],c=g.getComputedStyle(t,e),s=c.getPropertyValue("font-family").match(_),f=c.getPropertyValue("font-weight"),l=c.getPropertyValue("content");if(i&&!s)return t.removeChild(i),a();if(s&&"none"!==l&&""!==l){var u=~["Solid","Regular","Light","Duotone","Brands"].indexOf(s[1])?N[s[1].toLowerCase()]:L[f],d=Lt(3===l.length?l.substr(1,1):l),m=jt(u,d),h=m;if(!m||i&&i.getAttribute("data-prefix")===u&&i.getAttribute("data-icon")===h)a();else{t.setAttribute(n,h),i&&t.removeChild(i);var p={iconName:null,title:null,titleId:null,prefix:null,transform:ot,symbol:!1,mask:null,maskId:null,extra:{classes:[],styles:{},attributes:{}}},v=p.extra;v.attributes["data-fa-pseudo-element"]=e,oe(m,u).then((function(r){var i=yt(o({},p,{icons:{main:r,mask:{prefix:null,iconName:null,rest:[]}},prefix:u,iconName:h,extra:v,watchable:!0})),c=b.createElement("svg");":before"===e?t.insertBefore(c,t.firstChild):t.appendChild(c),c.outerHTML=i.map((function(t){return Ft(t)})).join("\n"),t.removeAttribute(n),a()})).catch(r)}}else a()}))}function me(t){return it.all([de(t,":before"),de(t,":after")])}function he(t){return!(t.parentNode===document.head||~M.indexOf(t.tagName.toUpperCase())||t.getAttribute("data-fa-pseudo-element")||t.parentNode&&"svg"===t.parentNode.tagName)}function pe(t){if(x)return new it((function(e,n){var a=lt(t.querySelectorAll("*")).filter(he).map(me),r=Nt("searchPseudoElements");Ut=!0,it.all(a).then((function(){r(),qt(),e()})).catch((function(){r(),qt(),n()}))}))}function ve(){var t="svg-inline--fa",e=j.familyPrefix,n=j.replacementClass,a='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';if("fa"!==e||n!==t){var r=new RegExp("\\.".concat("fa","\\-"),"g"),i=new RegExp("\\--".concat("fa","\\-"),"g"),c=new RegExp("\\.".concat(t),"g");a=a.replace(r,".".concat(e,"-")).replace(i,"--".concat(e,"-")).replace(c,".".concat(n))}return a}function ge(){j.autoAddCss&&!ze&&(st(ve()),ze=!0)}function be(t,e){return Object.defineProperty(t,"abstract",{get:e}),Object.defineProperty(t,"html",{get:function(){return t.abstract.map((function(t){return Ft(t)}))}}),Object.defineProperty(t,"node",{get:function(){if(x){var e=b.createElement("div");return e.innerHTML=t.html,e.children}}}),t}function ye(t){var e=t.prefix,n=void 0===e?"fa":e,a=t.iconName;if(a)return Rt(xe.definitions,n,a)||Rt(V.styles,n,a)}var we,xe=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.definitions={}}var e,n,a;return e=t,(n=[{key:"add",value:function(){for(var t=this,e=arguments.length,n=new Array(e),a=0;a<e;a++)n[a]=arguments[a];var r=n.reduce(this._pullDefinitions,{});Object.keys(r).forEach((function(e){t.definitions[e]=o({},t.definitions[e]||{},r[e]),At(e,r[e]),It()}))}},{key:"reset",value:function(){this.definitions={}}},{key:"_pullDefinitions",value:function(t,e){var n=e.prefix&&e.iconName&&e.icon?{0:e}:e;return Object.keys(n).map((function(e){var a=n[e],r=a.prefix,i=a.iconName,c=a.icon;t[r]||(t[r]={}),t[r][i]=c})),t}}])&&i(e.prototype,n),a&&i(e,a),t}()),ze=!1,Me={i2svg:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(x){ge();var e=t.node,n=void 0===e?b:e,a=t.callback,r=void 0===a?function(){}:a;return j.searchPseudoElements&&pe(n),le(n,r)}return it.reject("Operation requires a DOM of some kind.")},css:ve,insertCss:function(){ze||(st(ve()),ze=!0)},watch:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=t.observeMutationsRoot;!1===j.autoReplaceSvg&&(j.autoReplaceSvg=!0),j.observeMutations=!0,D((function(){Ne({autoReplaceSvgRoot:e}),Gt({treeCallback:le,nodeCallback:ue,pseudoElementsCallback:pe,observeMutationsRoot:n})}))}},ke=(we=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.symbol,i=void 0!==r&&r,c=e.mask,s=void 0===c?null:c,f=e.maskId,l=void 0===f?null:f,u=e.title,d=void 0===u?null:u,m=e.titleId,h=void 0===m?null:m,p=e.classes,v=void 0===p?[]:p,g=e.attributes,b=void 0===g?{}:g,y=e.styles,w=void 0===y?{}:y;if(t){var x=t.prefix,z=t.iconName,M=t.icon;return be(o({type:"icon"},t),(function(){return ge(),j.autoA11y&&(d?b["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(h||ft()):(b["aria-hidden"]="true",b.focusable="false")),yt({icons:{main:ce(M),mask:s?ce(s.icon):{found:!1,width:null,height:null,icon:{}}},prefix:x,iconName:z,transform:o({},ot,a),symbol:i,title:d,maskId:l,titleId:h,extra:{attributes:b,styles:w,classes:v}})}))}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=(t||{}).icon?t:ye(t||{}),a=e.mask;return a&&(a=(a||{}).icon?a:ye(a||{})),we(n,o({},e,{mask:a}))}),Ce={noAuto:function(){j.autoReplaceSvg=!1,j.observeMutations=!1,Kt&&Kt.disconnect()},config:j,dom:Me,library:xe,parse:{transform:function(t){return $t(t)}},findIconDefinition:ye,icon:ke,text:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.title,i=void 0===r?null:r,c=e.classes,s=void 0===c?[]:c,l=e.attributes,u=void 0===l?{}:l,d=e.styles,m=void 0===d?{}:d;return be({type:"text",content:t},(function(){return ge(),wt({content:t,transform:o({},ot,a),title:i,extra:{attributes:u,styles:m,classes:["".concat(j.familyPrefix,"-layers-text")].concat(f(s))}})}))},counter:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.title,a=void 0===n?null:n,r=e.classes,i=void 0===r?[]:r,c=e.attributes,o=void 0===c?{}:c,s=e.styles,l=void 0===s?{}:s;return be({type:"counter",content:t},(function(){return ge(),xt({content:t.toString(),title:a,extra:{attributes:o,styles:l,classes:["".concat(j.familyPrefix,"-layers-counter")].concat(f(i))}})}))},layer:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.classes,a=void 0===n?[]:n;return be({type:"layer"},(function(){ge();var e=[];return t((function(t){Array.isArray(t)?t.map((function(t){e=e.concat(t.abstract)})):e=e.concat(t.abstract)})),[{tag:"span",attributes:{class:["".concat(j.familyPrefix,"-layers")].concat(f(a)).join(" ")},children:e}]}))},toHtml:Ft},Ne=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=void 0===e?b:e;(Object.keys(V.styles).length>0||j.autoFetchSvg)&&x&&j.autoReplaceSvg&&Ce.dom.i2svg({node:n})}}).call(this,n(1),n(2).setImmediate)},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(function(t){var a=void 0!==t&&t||"undefined"!=typeof self&&self||window,r=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(r.call(setTimeout,a,arguments),clearTimeout)},e.setInterval=function(){return new i(r.call(setInterval,a,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(a,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(3),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(1))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var a,r,i,c,o,s=1,f={},l=!1,u=t.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(t);d=d&&d.setTimeout?d:t,"[object process]"==={}.toString.call(t.process)?a=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},a=function(t){i.port2.postMessage(t)}):u&&"onreadystatechange"in u.createElement("script")?(r=u.documentElement,a=function(t){var e=u.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,r.removeChild(e),e=null},r.appendChild(e)}):a=function(t){setTimeout(h,0,t)}:(c="setImmediate$"+Math.random()+"$",o=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(c)&&h(+e.data.slice(c.length))},t.addEventListener?t.addEventListener("message",o,!1):t.attachEvent("onmessage",o),a=function(e){t.postMessage(c+e,"*")}),d.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var r={callback:t,args:e};return f[s]=r,a(s),s++},d.clearImmediate=m}function m(t){delete f[t]}function h(t){if(l)setTimeout(h,0,t);else{var e=f[t];if(e){l=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(void 0,n)}}(e)}finally{m(t),l=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(1),n(4))},function(t,e){var n,a,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function o(t){if(n===setTimeout)return setTimeout(t,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(t){n=i}try{a="function"==typeof clearTimeout?clearTimeout:c}catch(t){a=c}}();var s,f=[],l=!1,u=-1;function d(){l&&s&&(l=!1,s.length?f=s.concat(f):u=-1,f.length&&m())}function m(){if(!l){var t=o(d);l=!0;for(var e=f.length;e;){for(s=f,f=[];++u<e;)s&&s[u].run();u=-1,e=f.length}s=null,l=!1,function(t){if(a===clearTimeout)return clearTimeout(t);if((a===c||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function p(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];f.push(new h(t,e)),1!==f.length||l||o(m)},h.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=p,r.addListener=p,r.once=p,r.off=p,r.removeListener=p,r.removeAllListeners=p,r.emit=p,r.prependListener=p,r.prependOnceListener=p,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},function(t,e,n){"use strict";n.r(e),n.d(e,"tcxFaInit",(function(){return J}));var a=n(0),r={prefix:"fas",iconName:"arrow-circle-up",icon:[512,512,[],"f0aa","M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"]},i={prefix:"fas",iconName:"arrows-alt",icon:[512,512,[],"f0b2","M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"]},c={prefix:"fas",iconName:"arrows-alt-h",icon:[512,512,[],"f337","M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"]},o={prefix:"fas",iconName:"bolt",icon:[320,512,[],"f0e7","M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z"]},s={prefix:"fas",iconName:"book",icon:[448,512,[],"f02d","M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"]},f={prefix:"fas",iconName:"border-all",icon:[448,512,[],"f84c","M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z"]},l={prefix:"fas",iconName:"chart-area",icon:[512,512,[],"f1fe","M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"]},u={prefix:"fas",iconName:"check",icon:[512,512,[],"f00c","M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"]},d={prefix:"fas",iconName:"check-circle",icon:[512,512,[],"f058","M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"]},m={prefix:"fas",iconName:"chevron-circle-left",icon:[512,512,[],"f137","M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"]},h={prefix:"fas",iconName:"chevron-circle-right",icon:[512,512,[],"f138","M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"]},p={prefix:"fas",iconName:"clock",icon:[512,512,[],"f017","M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z"]},v={prefix:"fas",iconName:"cloud",icon:[640,512,[],"f0c2","M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"]},g={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"]},b={prefix:"fas",iconName:"code-branch",icon:[384,512,[],"f126","M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"]},y={prefix:"fas",iconName:"cog",icon:[512,512,[],"f013","M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"]},w={prefix:"fas",iconName:"comment-dots",icon:[512,512,[],"f4ad","M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"]},x={prefix:"fas",iconName:"comments",icon:[576,512,[],"f086","M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"]},z={prefix:"fas",iconName:"ellipsis-h",icon:[512,512,[],"f141","M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"]},M={prefix:"fas",iconName:"ellipsis-v",icon:[192,512,[],"f142","M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"]},k={prefix:"fas",iconName:"exclamation",icon:[192,512,[],"f12a","M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"]},C={prefix:"fas",iconName:"eye",icon:[576,512,[],"f06e","M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z"]},N={prefix:"fas",iconName:"file-export",icon:[576,512,[],"f56e","M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z"]},_={prefix:"fas",iconName:"gavel",icon:[512,512,[],"f0e3","M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"]},L={prefix:"fas",iconName:"globe",icon:[496,512,[],"f0ac","M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"]},A={prefix:"fas",iconName:"info-circle",icon:[512,512,[],"f05a","M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"]},S={prefix:"fas",iconName:"keyboard",icon:[576,512,[],"f11c","M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"]},T={prefix:"fas",iconName:"lock",icon:[448,512,[],"f023","M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"]},O={prefix:"fas",iconName:"newspaper",icon:[576,512,[],"f1ea","M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"]},H={prefix:"fas",iconName:"paperclip",icon:[448,512,[],"f0c6","M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"]},E={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},I={prefix:"fas",iconName:"play",icon:[448,512,[],"f04b","M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"]},j={prefix:"fas",iconName:"plus-circle",icon:[512,512,[],"f055","M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"]},P={prefix:"fas",iconName:"question-circle",icon:[512,512,[],"f059","M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"]},V={prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},R={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"]},F={prefix:"fas",iconName:"sliders-h",icon:[512,512,[],"f1de","M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"]},D={prefix:"fas",iconName:"smile",icon:[496,512,[],"f118","M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"]},Y={prefix:"fas",iconName:"tasks",icon:[512,512,[],"f0ae","M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"]},W={prefix:"fas",iconName:"thumbtack",icon:[384,512,[],"f08d","M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"]},X={prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]},B={prefix:"fas",iconName:"trash",icon:[448,512,[],"f1f8","M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"]},U={prefix:"fas",iconName:"university",icon:[512,512,[],"f19c","M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"]},q={prefix:"fas",iconName:"user-astronaut",icon:[448,512,[],"f4fb","M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"]},K={prefix:"fas",iconName:"user-times",icon:[640,512,[],"f235","M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"]},G={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"]},Z={prefix:"far",iconName:"envelope",icon:[512,512,[],"f0e0","M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"]},$={prefix:"far",iconName:"paper-plane",icon:[512,512,[],"f1d8","M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"]};function J(){a.b.add(q),a.b.add(o),a.b.add(s),a.b.add(l),a.b.add(u),a.b.add(d),a.b.add(p),a.b.add(v),a.b.add(g),a.b.add(b),a.b.add(y),a.b.add(w),a.b.add(x),a.b.add(z),a.b.add(M),a.b.add(Z),a.b.add(k),a.b.add(C),a.b.add(_),a.b.add(A),a.b.add(T),a.b.add(O),a.b.add(H),a.b.add($),a.b.add(E),a.b.add(P),a.b.add(V),a.b.add(R),a.b.add(F),a.b.add(D),a.b.add(Y),a.b.add(X),a.b.add(U),a.b.add(G),a.b.add(K),a.b.add(j),a.b.add(B),a.b.add(I),a.b.add(r),a.b.add(c),a.b.add(i),a.b.add(W),a.b.add(N),a.b.add(L),a.b.add(f),a.b.add(S),a.b.add(h),a.b.add(m),a.a.watch()}}])}));
|
2 |
//# sourceMappingURL=tcx-fa.js.map
|
1 |
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("TCXfa",[],e):"object"==typeof exports?exports.TCXfa=e():t.TCXfa=e()}(window,(function(){return function(t){var e={};function n(a){if(e[a])return e[a].exports;var r=e[a]={i:a,l:!1,exports:{}};return t[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(a,r,function(e){return t[e]}.bind(null,r));return a},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=5)}([function(t,e,n){"use strict";(function(t,a){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},a=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(a=a.concat(Object.getOwnPropertySymbols(n).filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable})))),a.forEach((function(e){c(t,e,n[e])}))}return t}function s(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var c,o=t[Symbol.iterator]();!(a=(c=o.next()).done)&&(n.push(c.value),!e||n.length!==e);a=!0);}catch(t){r=!0,i=t}finally{try{a||null==o.return||o.return()}finally{if(r)throw i}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function f(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}n.d(e,"b",(function(){return xe})),n.d(e,"a",(function(){return Me}));var l=function(){},u={},d={},m=null,h={mark:l,measure:l};try{"undefined"!=typeof window&&(u=window),"undefined"!=typeof document&&(d=document),"undefined"!=typeof MutationObserver&&(m=MutationObserver),"undefined"!=typeof performance&&(h=performance)}catch(t){}var p=(u.navigator||{}).userAgent,v=void 0===p?"":p,g=u,b=d,y=m,w=h,x=(g.document,!!b.documentElement&&!!b.head&&"function"==typeof b.addEventListener&&"function"==typeof b.createElement),z=~v.indexOf("MSIE")||~v.indexOf("Trident/"),M=["HTML","HEAD","STYLE","SCRIPT"],k=function(){try{return!0}catch(t){return!1}}(),C={fas:"solid",far:"regular",fal:"light",fad:"duotone",fab:"brands",fa:"solid"},N={solid:"fas",regular:"far",light:"fal",duotone:"fad",brands:"fab"},_=/Font Awesome 5 (Solid|Regular|Light|Duotone|Brands|Free|Pro)/,L={900:"fas",400:"far",normal:"far",300:"fal"},A=[1,2,3,4,5,6,7,8,9,10],S=A.concat([11,12,13,14,15,16,17,18,19,20]),T=["class","data-prefix","data-icon","data-fa-transform","data-fa-mask"],O={GROUP:"group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},H=["xs","sm","lg","fw","ul","li","border","pull-left","pull-right","spin","pulse","rotate-90","rotate-180","rotate-270","flip-horizontal","flip-vertical","flip-both","stack","stack-1x","stack-2x","inverse","layers","layers-text","layers-counter",O.GROUP,O.SWAP_OPACITY,O.PRIMARY,O.SECONDARY].concat(A.map((function(t){return"".concat(t,"x")}))).concat(S.map((function(t){return"w-".concat(t)}))),E=g.FontAwesomeConfig||{};if(b&&"function"==typeof b.querySelector){[["data-family-prefix","familyPrefix"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach((function(t){var e=s(t,2),n=e[0],a=e[1],r=function(t){return""===t||"false"!==t&&("true"===t||t)}(function(t){var e=b.querySelector("script["+t+"]");if(e)return e.getAttribute(t)}(n));null!=r&&(E[a]=r)}))}var I=o({},{familyPrefix:"fa",replacementClass:"svg-inline--fa",autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0},E);I.autoReplaceSvg||(I.observeMutations=!1);var j=o({},I);g.FontAwesomeConfig=j;var P=g||{};P.___FONT_AWESOME___||(P.___FONT_AWESOME___={}),P.___FONT_AWESOME___.styles||(P.___FONT_AWESOME___.styles={}),P.___FONT_AWESOME___.hooks||(P.___FONT_AWESOME___.hooks={}),P.___FONT_AWESOME___.shims||(P.___FONT_AWESOME___.shims=[]);var V=P.___FONT_AWESOME___,R=[],F=!1;function D(t){x&&(F?setTimeout(t,0):R.push(t))}x&&((F=(b.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(b.readyState))||b.addEventListener("DOMContentLoaded",(function t(){b.removeEventListener("DOMContentLoaded",t),F=1,R.map((function(t){return t()}))})));var Y,W=function(){},X=void 0!==t&&void 0!==t.process&&"function"==typeof t.process.emit,B=void 0===a?setTimeout:a,U=[];function q(){for(var t=0;t<U.length;t++)U[t][0](U[t][1]);U=[],Y=!1}function K(t,e){U.push([t,e]),Y||(Y=!0,B(q,0))}function G(t){var e=t.owner,n=e._state,a=e._data,r=t[n],i=t.then;if("function"==typeof r){n="fulfilled";try{a=r(a)}catch(t){Q(i,t)}}Z(i,a)||("fulfilled"===n&&$(i,a),"rejected"===n&&Q(i,a))}function Z(t,e){var n;try{if(t===e)throw new TypeError("A promises callback cannot return that same promise.");if(e&&("function"==typeof e||"object"===r(e))){var a=e.then;if("function"==typeof a)return a.call(e,(function(a){n||(n=!0,e===a?J(t,a):$(t,a))}),(function(e){n||(n=!0,Q(t,e))})),!0}}catch(e){return n||Q(t,e),!0}return!1}function $(t,e){t!==e&&Z(t,e)||J(t,e)}function J(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(et,t))}function Q(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(nt,t))}function tt(t){t._then=t._then.forEach(G)}function et(t){t._state="fulfilled",tt(t)}function nt(e){e._state="rejected",tt(e),!e._handled&&X&&t.process.emit("unhandledRejection",e._data,e)}function at(e){t.process.emit("rejectionHandled",e)}function rt(t){if("function"!=typeof t)throw new TypeError("Promise resolver "+t+" is not a function");if(this instanceof rt==!1)throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");this._then=[],function(t,e){function n(t){Q(e,t)}try{t((function(t){$(e,t)}),n)}catch(t){n(t)}}(t,this)}rt.prototype={constructor:rt,_state:"pending",_then:null,_data:void 0,_handled:!1,then:function(t,e){var n={owner:this,then:new this.constructor(W),fulfilled:t,rejected:e};return!e&&!t||this._handled||(this._handled=!0,"rejected"===this._state&&X&&K(at,this)),"fulfilled"===this._state||"rejected"===this._state?K(G,n):this._then.push(n),n.then},catch:function(t){return this.then(null,t)}},rt.all=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.all().");return new rt((function(e,n){var a=[],r=0;function i(t){return r++,function(n){a[t]=n,--r||e(a)}}for(var c,o=0;o<t.length;o++)(c=t[o])&&"function"==typeof c.then?c.then(i(o),n):a[o]=c;r||e(a)}))},rt.race=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.race().");return new rt((function(e,n){for(var a,r=0;r<t.length;r++)(a=t[r])&&"function"==typeof a.then?a.then(e,n):e(a)}))},rt.resolve=function(t){return t&&"object"===r(t)&&t.constructor===rt?t:new rt((function(e){e(t)}))},rt.reject=function(t){return new rt((function(e,n){n(t)}))};var it="function"==typeof Promise?Promise:rt,ct=16,ot={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function st(t){if(t&&x){var e=b.createElement("style");e.setAttribute("type","text/css"),e.innerHTML=t;for(var n=b.head.childNodes,a=null,r=n.length-1;r>-1;r--){var i=n[r],c=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(c)>-1&&(a=i)}return b.head.insertBefore(e,a),t}}function ft(){for(var t=12,e="";t-- >0;)e+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return e}function lt(t){for(var e=[],n=(t||[]).length>>>0;n--;)e[n]=t[n];return e}function ut(t){return t.classList?lt(t.classList):(t.getAttribute("class")||"").split(" ").filter((function(t){return t}))}function dt(t,e){var n,a=e.split("-"),r=a[0],i=a.slice(1).join("-");return r!==t||""===i||(n=i,~H.indexOf(n))?null:i}function mt(t){return"".concat(t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function ht(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,": ").concat(t[n],";")}),"")}function pt(t){return t.size!==ot.size||t.x!==ot.x||t.y!==ot.y||t.rotate!==ot.rotate||t.flipX||t.flipY}function vt(t){var e=t.transform,n=t.containerWidth,a=t.iconWidth,r={transform:"translate(".concat(n/2," 256)")},i="translate(".concat(32*e.x,", ").concat(32*e.y,") "),c="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),o="rotate(".concat(e.rotate," 0 0)");return{outer:r,inner:{transform:"".concat(i," ").concat(c," ").concat(o)},path:{transform:"translate(".concat(a/2*-1," -256)")}}}var gt={x:0,y:0,width:"100%",height:"100%"};function bt(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return t.attributes&&(t.attributes.fill||e)&&(t.attributes.fill="black"),t}function yt(t){var e=t.icons,n=e.main,a=e.mask,r=t.prefix,i=t.iconName,c=t.transform,s=t.symbol,f=t.title,l=t.maskId,u=t.titleId,d=t.extra,m=t.watchable,h=void 0!==m&&m,p=a.found?a:n,v=p.width,g=p.height,b="fa-w-".concat(Math.ceil(v/g*16)),y=[j.replacementClass,i?"".concat(j.familyPrefix,"-").concat(i):"",b].filter((function(t){return-1===d.classes.indexOf(t)})).concat(d.classes).join(" "),w={children:[],attributes:o({},d.attributes,{"data-prefix":r,"data-icon":i,class:y,role:d.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(v," ").concat(g)})};h&&(w.attributes["data-fa-i2svg"]=""),f&&w.children.push({tag:"title",attributes:{id:w.attributes["aria-labelledby"]||"title-".concat(u||ft())},children:[f]});var x=o({},w,{prefix:r,iconName:i,main:n,mask:a,maskId:l,transform:c,symbol:s,styles:d.styles}),z=a.found&&n.found?function(t){var e,n=t.children,a=t.attributes,r=t.main,i=t.mask,c=t.maskId,s=t.transform,f=r.width,l=r.icon,u=i.width,d=i.icon,m=vt({transform:s,containerWidth:u,iconWidth:f}),h={tag:"rect",attributes:o({},gt,{fill:"white"})},p=l.children?{children:l.children.map(bt)}:{},v={tag:"g",attributes:o({},m.inner),children:[bt(o({tag:l.tag,attributes:o({},l.attributes,m.path)},p))]},g={tag:"g",attributes:o({},m.outer),children:[v]},b="mask-".concat(c||ft()),y="clip-".concat(c||ft()),w={tag:"mask",attributes:o({},gt,{id:b,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[h,g]},x={tag:"defs",children:[{tag:"clipPath",attributes:{id:y},children:(e=d,"g"===e.tag?e.children:[e])},w]};return n.push(x,{tag:"rect",attributes:o({fill:"currentColor","clip-path":"url(#".concat(y,")"),mask:"url(#".concat(b,")")},gt)}),{children:n,attributes:a}}(x):function(t){var e=t.children,n=t.attributes,a=t.main,r=t.transform,i=ht(t.styles);if(i.length>0&&(n.style=i),pt(r)){var c=vt({transform:r,containerWidth:a.width,iconWidth:a.width});e.push({tag:"g",attributes:o({},c.outer),children:[{tag:"g",attributes:o({},c.inner),children:[{tag:a.icon.tag,children:a.icon.children,attributes:o({},a.icon.attributes,c.path)}]}]})}else e.push(a.icon);return{children:e,attributes:n}}(x),M=z.children,k=z.attributes;return x.children=M,x.attributes=k,s?function(t){var e=t.prefix,n=t.iconName,a=t.children,r=t.attributes,i=t.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:o({},r,{id:!0===i?"".concat(e,"-").concat(j.familyPrefix,"-").concat(n):i}),children:a}]}]}(x):function(t){var e=t.children,n=t.main,a=t.mask,r=t.attributes,i=t.styles,c=t.transform;if(pt(c)&&n.found&&!a.found){var s={x:n.width/n.height/2,y:.5};r.style=ht(o({},i,{"transform-origin":"".concat(s.x+c.x/16,"em ").concat(s.y+c.y/16,"em")}))}return[{tag:"svg",attributes:r,children:e}]}(x)}function wt(t){var e=t.content,n=t.width,a=t.height,r=t.transform,i=t.title,c=t.extra,s=t.watchable,f=void 0!==s&&s,l=o({},c.attributes,i?{title:i}:{},{class:c.classes.join(" ")});f&&(l["data-fa-i2svg"]="");var u=o({},c.styles);pt(r)&&(u.transform=function(t){var e=t.transform,n=t.width,a=void 0===n?16:n,r=t.height,i=void 0===r?16:r,c=t.startCentered,o=void 0!==c&&c,s="";return s+=o&&z?"translate(".concat(e.x/ct-a/2,"em, ").concat(e.y/ct-i/2,"em) "):o?"translate(calc(-50% + ".concat(e.x/ct,"em), calc(-50% + ").concat(e.y/ct,"em)) "):"translate(".concat(e.x/ct,"em, ").concat(e.y/ct,"em) "),s+="scale(".concat(e.size/ct*(e.flipX?-1:1),", ").concat(e.size/ct*(e.flipY?-1:1),") "),s+="rotate(".concat(e.rotate,"deg) ")}({transform:r,startCentered:!0,width:n,height:a}),u["-webkit-transform"]=u.transform);var d=ht(u);d.length>0&&(l.style=d);var m=[];return m.push({tag:"span",attributes:l,children:[e]}),i&&m.push({tag:"span",attributes:{class:"sr-only"},children:[i]}),m}function xt(t){var e=t.content,n=t.title,a=t.extra,r=o({},a.attributes,n?{title:n}:{},{class:a.classes.join(" ")}),i=ht(a.styles);i.length>0&&(r.style=i);var c=[];return c.push({tag:"span",attributes:r,children:[e]}),n&&c.push({tag:"span",attributes:{class:"sr-only"},children:[n]}),c}var zt=function(){},Mt=j.measurePerformance&&w&&w.mark&&w.measure?w:{mark:zt,measure:zt},kt='FA "5.13.0"',Ct=function(t){Mt.mark("".concat(kt," ").concat(t," ends")),Mt.measure("".concat(kt," ").concat(t),"".concat(kt," ").concat(t," begins"),"".concat(kt," ").concat(t," ends"))},Nt=function(t){return Mt.mark("".concat(kt," ").concat(t," begins")),function(){return Ct(t)}},_t=function(t,e,n,a){var r,i,c,o=Object.keys(t),s=o.length,f=void 0!==a?function(t,e){return function(n,a,r,i){return t.call(e,n,a,r,i)}}(e,a):e;for(void 0===n?(r=1,c=t[o[0]]):(r=0,c=n);r<s;r++)c=f(c,t[i=o[r]],i,t);return c};function Lt(t){for(var e="",n=0;n<t.length;n++){e+=("000"+t.charCodeAt(n).toString(16)).slice(-4)}return e}function At(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=n.skipHooks,r=void 0!==a&&a,i=Object.keys(e).reduce((function(t,n){var a=e[n];return!!a.icon?t[a.iconName]=a.icon:t[n]=a,t}),{});"function"!=typeof V.hooks.addPack||r?V.styles[t]=o({},V.styles[t]||{},i):V.hooks.addPack(t,i),"fas"===t&&At("fa",e)}var St=V.styles,Tt=V.shims,Ot={},Ht={},Et={},It=function(){var t=function(t){return _t(St,(function(e,n,a){return e[a]=_t(n,t,{}),e}),{})};Ot=t((function(t,e,n){return e[3]&&(t[e[3]]=n),t})),Ht=t((function(t,e,n){var a=e[2];return t[n]=n,a.forEach((function(e){t[e]=n})),t}));var e="far"in St;Et=_t(Tt,(function(t,n){var a=n[0],r=n[1],i=n[2];return"far"!==r||e||(r="fas"),t[a]={prefix:r,iconName:i},t}),{})};function jt(t,e){return(Ot[t]||{})[e]}It();var Pt=V.styles;function Vt(t){return t.reduce((function(t,e){var n=dt(j.familyPrefix,e);if(Pt[e])t.prefix=e;else if(j.autoFetchSvg&&["fas","far","fal","fad","fab","fa"].indexOf(e)>-1)t.prefix=e;else if(n){var a="fa"===t.prefix?Et[n]||{prefix:null,iconName:null}:{};t.iconName=a.iconName||n,t.prefix=a.prefix||t.prefix}else e!==j.replacementClass&&0!==e.indexOf("fa-w-")&&t.rest.push(e);return t}),{prefix:null,iconName:null,rest:[]})}function Rt(t,e,n){if(t&&t[e]&&t[e][n])return{prefix:e,iconName:n,icon:t[e][n]}}function Ft(t){var e=t.tag,n=t.attributes,a=void 0===n?{}:n,r=t.children,i=void 0===r?[]:r;return"string"==typeof t?mt(t):"<".concat(e," ").concat(function(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,'="').concat(mt(t[n]),'" ')}),"").trim()}(a),">").concat(i.map(Ft).join(""),"</").concat(e,">")}var Dt=function(){};function Yt(t){return"string"==typeof(t.getAttribute?t.getAttribute("data-fa-i2svg"):null)}var Wt={replace:function(t){var e=t[0],n=t[1].map((function(t){return Ft(t)})).join("\n");if(e.parentNode&&e.outerHTML)e.outerHTML=n+(j.keepOriginalSource&&"svg"!==e.tagName.toLowerCase()?"\x3c!-- ".concat(e.outerHTML," --\x3e"):"");else if(e.parentNode){var a=document.createElement("span");e.parentNode.replaceChild(a,e),a.outerHTML=n}},nest:function(t){var e=t[0],n=t[1];if(~ut(e).indexOf(j.replacementClass))return Wt.replace(t);var a=new RegExp("".concat(j.familyPrefix,"-.*"));delete n[0].attributes.style,delete n[0].attributes.id;var r=n[0].attributes.class.split(" ").reduce((function(t,e){return e===j.replacementClass||e.match(a)?t.toSvg.push(e):t.toNode.push(e),t}),{toNode:[],toSvg:[]});n[0].attributes.class=r.toSvg.join(" ");var i=n.map((function(t){return Ft(t)})).join("\n");e.setAttribute("class",r.toNode.join(" ")),e.setAttribute("data-fa-i2svg",""),e.innerHTML=i}};function Xt(t){t()}function Bt(t,e){var n="function"==typeof e?e:Dt;if(0===t.length)n();else{var a=Xt;"async"===j.mutateApproach&&(a=g.requestAnimationFrame||Xt),a((function(){var e=!0===j.autoReplaceSvg?Wt.replace:Wt[j.autoReplaceSvg]||Wt.replace,a=Nt("mutate");t.map(e),a(),n()}))}}var Ut=!1;function qt(){Ut=!1}var Kt=null;function Gt(t){if(y&&j.observeMutations){var e=t.treeCallback,n=t.nodeCallback,a=t.pseudoElementsCallback,r=t.observeMutationsRoot,i=void 0===r?b:r;Kt=new y((function(t){Ut||lt(t).forEach((function(t){if("childList"===t.type&&t.addedNodes.length>0&&!Yt(t.addedNodes[0])&&(j.searchPseudoElements&&a(t.target),e(t.target)),"attributes"===t.type&&t.target.parentNode&&j.searchPseudoElements&&a(t.target.parentNode),"attributes"===t.type&&Yt(t.target)&&~T.indexOf(t.attributeName))if("class"===t.attributeName){var r=Vt(ut(t.target)),i=r.prefix,c=r.iconName;i&&t.target.setAttribute("data-prefix",i),c&&t.target.setAttribute("data-icon",c)}else n(t.target)}))})),x&&Kt.observe(i,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Zt(t){var e,n,a=t.getAttribute("data-prefix"),r=t.getAttribute("data-icon"),i=void 0!==t.innerText?t.innerText.trim():"",c=Vt(ut(t));return a&&r&&(c.prefix=a,c.iconName=r),c.prefix&&i.length>1?c.iconName=(e=c.prefix,n=t.innerText,(Ht[e]||{})[n]):c.prefix&&1===i.length&&(c.iconName=jt(c.prefix,Lt(t.innerText))),c}var $t=function(t){var e={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return t?t.toLowerCase().split(" ").reduce((function(t,e){var n=e.toLowerCase().split("-"),a=n[0],r=n.slice(1).join("-");if(a&&"h"===r)return t.flipX=!0,t;if(a&&"v"===r)return t.flipY=!0,t;if(r=parseFloat(r),isNaN(r))return t;switch(a){case"grow":t.size=t.size+r;break;case"shrink":t.size=t.size-r;break;case"left":t.x=t.x-r;break;case"right":t.x=t.x+r;break;case"up":t.y=t.y-r;break;case"down":t.y=t.y+r;break;case"rotate":t.rotate=t.rotate+r}return t}),e):e};function Jt(t){var e=Zt(t),n=e.iconName,a=e.prefix,r=e.rest,i=function(t){var e=t.getAttribute("style"),n=[];return e&&(n=e.split(";").reduce((function(t,e){var n=e.split(":"),a=n[0],r=n.slice(1);return a&&r.length>0&&(t[a]=r.join(":").trim()),t}),{})),n}(t),c=function(t){return $t(t.getAttribute("data-fa-transform"))}(t),o=function(t){var e=t.getAttribute("data-fa-symbol");return null!==e&&(""===e||e)}(t),s=function(t){var e=lt(t.attributes).reduce((function(t,e){return"class"!==t.name&&"style"!==t.name&&(t[e.name]=e.value),t}),{}),n=t.getAttribute("title"),a=t.getAttribute("data-fa-title-id");return j.autoA11y&&(n?e["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(a||ft()):(e["aria-hidden"]="true",e.focusable="false")),e}(t),f=function(t){var e=t.getAttribute("data-fa-mask");return e?Vt(e.split(" ").map((function(t){return t.trim()}))):{prefix:null,iconName:null,rest:[]}}(t);return{iconName:n,title:t.getAttribute("title"),titleId:t.getAttribute("data-fa-title-id"),prefix:a,transform:c,symbol:o,mask:f,maskId:t.getAttribute("data-fa-mask-id"),extra:{classes:r,styles:i,attributes:s}}}function Qt(t){this.name="MissingIcon",this.message=t||"Icon unavailable",this.stack=(new Error).stack}Qt.prototype=Object.create(Error.prototype),Qt.prototype.constructor=Qt;var te={fill:"currentColor"},ee={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},ne={tag:"path",attributes:o({},te,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})},ae=o({},ee,{attributeName:"opacity"}),re={tag:"g",children:[ne,{tag:"circle",attributes:o({},te,{cx:"256",cy:"364",r:"28"}),children:[{tag:"animate",attributes:o({},ee,{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:o({},ae,{values:"1;0;1;1;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:[{tag:"animate",attributes:o({},ae,{values:"1;0;0;0;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:o({},ae,{values:"0;0;1;1;0;0;"})}]}]},ie=V.styles;function ce(t){var e=t[0],n=t[1],a=s(t.slice(4),1)[0];return{found:!0,width:e,height:n,icon:Array.isArray(a)?{tag:"g",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.GROUP)},children:[{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.SECONDARY),fill:"currentColor",d:a[0]}},{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.PRIMARY),fill:"currentColor",d:a[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:a}}}}function oe(t,e){return new it((function(n,a){var i={found:!1,width:512,height:512,icon:re};if(t&&e&&ie[e]&&ie[e][t])return n(ce(ie[e][t]));"object"===r(g.FontAwesomeKitConfig)&&"string"==typeof window.FontAwesomeKitConfig.token&&g.FontAwesomeKitConfig.token,t&&e&&!j.showMissingIcons?a(new Qt("Icon is missing for prefix ".concat(e," with icon name ").concat(t))):n(i)}))}var se=V.styles;function fe(t){var e=Jt(t);return~e.extra.classes.indexOf("fa-layers-text")?function(t,e){var n=e.title,a=e.transform,r=e.extra,i=null,c=null;if(z){var o=parseInt(getComputedStyle(t).fontSize,10),s=t.getBoundingClientRect();i=s.width/o,c=s.height/o}return j.autoA11y&&!n&&(r.attributes["aria-hidden"]="true"),it.resolve([t,wt({content:t.innerHTML,width:i,height:c,transform:a,title:n,extra:r,watchable:!0})])}(t,e):function(t,e){var n=e.iconName,a=e.title,r=e.titleId,i=e.prefix,c=e.transform,o=e.symbol,f=e.mask,l=e.maskId,u=e.extra;return new it((function(e,d){it.all([oe(n,i),oe(f.iconName,f.prefix)]).then((function(f){var d=s(f,2),m=d[0],h=d[1];e([t,yt({icons:{main:m,mask:h},prefix:i,iconName:n,transform:c,symbol:o,mask:h,maskId:l,title:a,titleId:r,extra:u,watchable:!0})])}))}))}(t,e)}function le(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(x){var n=b.documentElement.classList,a=function(t){return n.add("".concat("fontawesome-i2svg","-").concat(t))},r=function(t){return n.remove("".concat("fontawesome-i2svg","-").concat(t))},i=j.autoFetchSvg?Object.keys(C):Object.keys(se),c=[".".concat("fa-layers-text",":not([").concat("data-fa-i2svg","])")].concat(i.map((function(t){return".".concat(t,":not([").concat("data-fa-i2svg","])")}))).join(", ");if(0!==c.length){var o=[];try{o=lt(t.querySelectorAll(c))}catch(t){}if(o.length>0){a("pending"),r("complete");var s=Nt("onTree"),f=o.reduce((function(t,e){try{var n=fe(e);n&&t.push(n)}catch(t){k||t instanceof Qt&&console.error(t)}return t}),[]);return new it((function(t,n){it.all(f).then((function(n){Bt(n,(function(){a("active"),a("complete"),r("pending"),"function"==typeof e&&e(),s(),t()}))})).catch((function(){s(),n()}))}))}}}}function ue(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;fe(t).then((function(t){t&&Bt([t],e)}))}function de(t,e){var n="".concat("data-fa-pseudo-element-pending").concat(e.replace(":","-"));return new it((function(a,r){if(null!==t.getAttribute(n))return a();var i=lt(t.children).filter((function(t){return t.getAttribute("data-fa-pseudo-element")===e}))[0],c=g.getComputedStyle(t,e),s=c.getPropertyValue("font-family").match(_),f=c.getPropertyValue("font-weight"),l=c.getPropertyValue("content");if(i&&!s)return t.removeChild(i),a();if(s&&"none"!==l&&""!==l){var u=~["Solid","Regular","Light","Duotone","Brands"].indexOf(s[1])?N[s[1].toLowerCase()]:L[f],d=Lt(3===l.length?l.substr(1,1):l),m=jt(u,d),h=m;if(!m||i&&i.getAttribute("data-prefix")===u&&i.getAttribute("data-icon")===h)a();else{t.setAttribute(n,h),i&&t.removeChild(i);var p={iconName:null,title:null,titleId:null,prefix:null,transform:ot,symbol:!1,mask:null,maskId:null,extra:{classes:[],styles:{},attributes:{}}},v=p.extra;v.attributes["data-fa-pseudo-element"]=e,oe(m,u).then((function(r){var i=yt(o({},p,{icons:{main:r,mask:{prefix:null,iconName:null,rest:[]}},prefix:u,iconName:h,extra:v,watchable:!0})),c=b.createElement("svg");":before"===e?t.insertBefore(c,t.firstChild):t.appendChild(c),c.outerHTML=i.map((function(t){return Ft(t)})).join("\n"),t.removeAttribute(n),a()})).catch(r)}}else a()}))}function me(t){return it.all([de(t,":before"),de(t,":after")])}function he(t){return!(t.parentNode===document.head||~M.indexOf(t.tagName.toUpperCase())||t.getAttribute("data-fa-pseudo-element")||t.parentNode&&"svg"===t.parentNode.tagName)}function pe(t){if(x)return new it((function(e,n){var a=lt(t.querySelectorAll("*")).filter(he).map(me),r=Nt("searchPseudoElements");Ut=!0,it.all(a).then((function(){r(),qt(),e()})).catch((function(){r(),qt(),n()}))}))}function ve(){var t="svg-inline--fa",e=j.familyPrefix,n=j.replacementClass,a='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';if("fa"!==e||n!==t){var r=new RegExp("\\.".concat("fa","\\-"),"g"),i=new RegExp("\\--".concat("fa","\\-"),"g"),c=new RegExp("\\.".concat(t),"g");a=a.replace(r,".".concat(e,"-")).replace(i,"--".concat(e,"-")).replace(c,".".concat(n))}return a}function ge(){j.autoAddCss&&!ze&&(st(ve()),ze=!0)}function be(t,e){return Object.defineProperty(t,"abstract",{get:e}),Object.defineProperty(t,"html",{get:function(){return t.abstract.map((function(t){return Ft(t)}))}}),Object.defineProperty(t,"node",{get:function(){if(x){var e=b.createElement("div");return e.innerHTML=t.html,e.children}}}),t}function ye(t){var e=t.prefix,n=void 0===e?"fa":e,a=t.iconName;if(a)return Rt(xe.definitions,n,a)||Rt(V.styles,n,a)}var we,xe=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.definitions={}}var e,n,a;return e=t,(n=[{key:"add",value:function(){for(var t=this,e=arguments.length,n=new Array(e),a=0;a<e;a++)n[a]=arguments[a];var r=n.reduce(this._pullDefinitions,{});Object.keys(r).forEach((function(e){t.definitions[e]=o({},t.definitions[e]||{},r[e]),At(e,r[e]),It()}))}},{key:"reset",value:function(){this.definitions={}}},{key:"_pullDefinitions",value:function(t,e){var n=e.prefix&&e.iconName&&e.icon?{0:e}:e;return Object.keys(n).map((function(e){var a=n[e],r=a.prefix,i=a.iconName,c=a.icon;t[r]||(t[r]={}),t[r][i]=c})),t}}])&&i(e.prototype,n),a&&i(e,a),t}()),ze=!1,Me={i2svg:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(x){ge();var e=t.node,n=void 0===e?b:e,a=t.callback,r=void 0===a?function(){}:a;return j.searchPseudoElements&&pe(n),le(n,r)}return it.reject("Operation requires a DOM of some kind.")},css:ve,insertCss:function(){ze||(st(ve()),ze=!0)},watch:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=t.observeMutationsRoot;!1===j.autoReplaceSvg&&(j.autoReplaceSvg=!0),j.observeMutations=!0,D((function(){Ne({autoReplaceSvgRoot:e}),Gt({treeCallback:le,nodeCallback:ue,pseudoElementsCallback:pe,observeMutationsRoot:n})}))}},ke=(we=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.symbol,i=void 0!==r&&r,c=e.mask,s=void 0===c?null:c,f=e.maskId,l=void 0===f?null:f,u=e.title,d=void 0===u?null:u,m=e.titleId,h=void 0===m?null:m,p=e.classes,v=void 0===p?[]:p,g=e.attributes,b=void 0===g?{}:g,y=e.styles,w=void 0===y?{}:y;if(t){var x=t.prefix,z=t.iconName,M=t.icon;return be(o({type:"icon"},t),(function(){return ge(),j.autoA11y&&(d?b["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(h||ft()):(b["aria-hidden"]="true",b.focusable="false")),yt({icons:{main:ce(M),mask:s?ce(s.icon):{found:!1,width:null,height:null,icon:{}}},prefix:x,iconName:z,transform:o({},ot,a),symbol:i,title:d,maskId:l,titleId:h,extra:{attributes:b,styles:w,classes:v}})}))}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=(t||{}).icon?t:ye(t||{}),a=e.mask;return a&&(a=(a||{}).icon?a:ye(a||{})),we(n,o({},e,{mask:a}))}),Ce={noAuto:function(){j.autoReplaceSvg=!1,j.observeMutations=!1,Kt&&Kt.disconnect()},config:j,dom:Me,library:xe,parse:{transform:function(t){return $t(t)}},findIconDefinition:ye,icon:ke,text:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.title,i=void 0===r?null:r,c=e.classes,s=void 0===c?[]:c,l=e.attributes,u=void 0===l?{}:l,d=e.styles,m=void 0===d?{}:d;return be({type:"text",content:t},(function(){return ge(),wt({content:t,transform:o({},ot,a),title:i,extra:{attributes:u,styles:m,classes:["".concat(j.familyPrefix,"-layers-text")].concat(f(s))}})}))},counter:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.title,a=void 0===n?null:n,r=e.classes,i=void 0===r?[]:r,c=e.attributes,o=void 0===c?{}:c,s=e.styles,l=void 0===s?{}:s;return be({type:"counter",content:t},(function(){return ge(),xt({content:t.toString(),title:a,extra:{attributes:o,styles:l,classes:["".concat(j.familyPrefix,"-layers-counter")].concat(f(i))}})}))},layer:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.classes,a=void 0===n?[]:n;return be({type:"layer"},(function(){ge();var e=[];return t((function(t){Array.isArray(t)?t.map((function(t){e=e.concat(t.abstract)})):e=e.concat(t.abstract)})),[{tag:"span",attributes:{class:["".concat(j.familyPrefix,"-layers")].concat(f(a)).join(" ")},children:e}]}))},toHtml:Ft},Ne=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=void 0===e?b:e;(Object.keys(V.styles).length>0||j.autoFetchSvg)&&x&&j.autoReplaceSvg&&Ce.dom.i2svg({node:n})}}).call(this,n(1),n(2).setImmediate)},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(function(t){var a=void 0!==t&&t||"undefined"!=typeof self&&self||window,r=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(r.call(setTimeout,a,arguments),clearTimeout)},e.setInterval=function(){return new i(r.call(setInterval,a,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(a,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(3),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(1))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var a,r,i,c,o,s=1,f={},l=!1,u=t.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(t);d=d&&d.setTimeout?d:t,"[object process]"==={}.toString.call(t.process)?a=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},a=function(t){i.port2.postMessage(t)}):u&&"onreadystatechange"in u.createElement("script")?(r=u.documentElement,a=function(t){var e=u.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,r.removeChild(e),e=null},r.appendChild(e)}):a=function(t){setTimeout(h,0,t)}:(c="setImmediate$"+Math.random()+"$",o=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(c)&&h(+e.data.slice(c.length))},t.addEventListener?t.addEventListener("message",o,!1):t.attachEvent("onmessage",o),a=function(e){t.postMessage(c+e,"*")}),d.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var r={callback:t,args:e};return f[s]=r,a(s),s++},d.clearImmediate=m}function m(t){delete f[t]}function h(t){if(l)setTimeout(h,0,t);else{var e=f[t];if(e){l=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(void 0,n)}}(e)}finally{m(t),l=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(1),n(4))},function(t,e){var n,a,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function o(t){if(n===setTimeout)return setTimeout(t,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(t){n=i}try{a="function"==typeof clearTimeout?clearTimeout:c}catch(t){a=c}}();var s,f=[],l=!1,u=-1;function d(){l&&s&&(l=!1,s.length?f=s.concat(f):u=-1,f.length&&m())}function m(){if(!l){var t=o(d);l=!0;for(var e=f.length;e;){for(s=f,f=[];++u<e;)s&&s[u].run();u=-1,e=f.length}s=null,l=!1,function(t){if(a===clearTimeout)return clearTimeout(t);if((a===c||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function p(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];f.push(new h(t,e)),1!==f.length||l||o(m)},h.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=p,r.addListener=p,r.once=p,r.off=p,r.removeListener=p,r.removeAllListeners=p,r.emit=p,r.prependListener=p,r.prependOnceListener=p,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},function(t,e,n){"use strict";n.r(e),n.d(e,"tcxFaInit",(function(){return J}));var a=n(0),r={prefix:"fas",iconName:"arrow-circle-up",icon:[512,512,[],"f0aa","M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"]},i={prefix:"fas",iconName:"arrows-alt",icon:[512,512,[],"f0b2","M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"]},c={prefix:"fas",iconName:"arrows-alt-h",icon:[512,512,[],"f337","M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"]},o={prefix:"fas",iconName:"bolt",icon:[320,512,[],"f0e7","M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z"]},s={prefix:"fas",iconName:"book",icon:[448,512,[],"f02d","M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"]},f={prefix:"fas",iconName:"border-all",icon:[448,512,[],"f84c","M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z"]},l={prefix:"fas",iconName:"chart-area",icon:[512,512,[],"f1fe","M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"]},u={prefix:"fas",iconName:"check",icon:[512,512,[],"f00c","M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"]},d={prefix:"fas",iconName:"check-circle",icon:[512,512,[],"f058","M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"]},m={prefix:"fas",iconName:"chevron-circle-left",icon:[512,512,[],"f137","M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"]},h={prefix:"fas",iconName:"chevron-circle-right",icon:[512,512,[],"f138","M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"]},p={prefix:"fas",iconName:"clock",icon:[512,512,[],"f017","M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z"]},v={prefix:"fas",iconName:"cloud",icon:[640,512,[],"f0c2","M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"]},g={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"]},b={prefix:"fas",iconName:"code-branch",icon:[384,512,[],"f126","M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"]},y={prefix:"fas",iconName:"cog",icon:[512,512,[],"f013","M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"]},w={prefix:"fas",iconName:"comment-dots",icon:[512,512,[],"f4ad","M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"]},x={prefix:"fas",iconName:"comments",icon:[576,512,[],"f086","M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"]},z={prefix:"fas",iconName:"ellipsis-h",icon:[512,512,[],"f141","M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"]},M={prefix:"fas",iconName:"ellipsis-v",icon:[192,512,[],"f142","M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"]},k={prefix:"fas",iconName:"exclamation",icon:[192,512,[],"f12a","M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"]},C={prefix:"fas",iconName:"eye",icon:[576,512,[],"f06e","M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z"]},N={prefix:"fas",iconName:"file-export",icon:[576,512,[],"f56e","M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z"]},_={prefix:"fas",iconName:"gavel",icon:[512,512,[],"f0e3","M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"]},L={prefix:"fas",iconName:"globe",icon:[496,512,[],"f0ac","M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"]},A={prefix:"fas",iconName:"info-circle",icon:[512,512,[],"f05a","M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"]},S={prefix:"fas",iconName:"keyboard",icon:[576,512,[],"f11c","M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"]},T={prefix:"fas",iconName:"lock",icon:[448,512,[],"f023","M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"]},O={prefix:"fas",iconName:"newspaper",icon:[576,512,[],"f1ea","M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"]},H={prefix:"fas",iconName:"paperclip",icon:[448,512,[],"f0c6","M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"]},E={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},I={prefix:"fas",iconName:"play",icon:[448,512,[],"f04b","M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"]},j={prefix:"fas",iconName:"plus-circle",icon:[512,512,[],"f055","M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"]},P={prefix:"fas",iconName:"question-circle",icon:[512,512,[],"f059","M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"]},V={prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},R={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"]},F={prefix:"fas",iconName:"sliders-h",icon:[512,512,[],"f1de","M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"]},D={prefix:"fas",iconName:"smile",icon:[496,512,[],"f118","M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"]},Y={prefix:"fas",iconName:"tasks",icon:[512,512,[],"f0ae","M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"]},W={prefix:"fas",iconName:"thumbtack",icon:[384,512,[],"f08d","M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"]},X={prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]},B={prefix:"fas",iconName:"trash",icon:[448,512,[],"f1f8","M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"]},U={prefix:"fas",iconName:"university",icon:[512,512,[],"f19c","M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"]},q={prefix:"fas",iconName:"user-astronaut",icon:[448,512,[],"f4fb","M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"]},K={prefix:"fas",iconName:"user-times",icon:[640,512,[],"f235","M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"]},G={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"]},Z={prefix:"far",iconName:"envelope",icon:[512,512,[],"f0e0","M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"]},$={prefix:"far",iconName:"paper-plane",icon:[512,512,[],"f1d8","M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"]};function J(){a.b.add(q),a.b.add(o),a.b.add(s),a.b.add(l),a.b.add(u),a.b.add(d),a.b.add(p),a.b.add(v),a.b.add(g),a.b.add(b),a.b.add(y),a.b.add(w),a.b.add(x),a.b.add(z),a.b.add(M),a.b.add(Z),a.b.add(k),a.b.add(C),a.b.add(_),a.b.add(A),a.b.add(T),a.b.add(O),a.b.add(H),a.b.add($),a.b.add(E),a.b.add(P),a.b.add(V),a.b.add(R),a.b.add(F),a.b.add(D),a.b.add(Y),a.b.add(X),a.b.add(U),a.b.add(G),a.b.add(K),a.b.add(j),a.b.add(B),a.b.add(I),a.b.add(r),a.b.add(c),a.b.add(i),a.b.add(W),a.b.add(N),a.b.add(L),a.b.add(f),a.b.add(S),a.b.add(h),a.b.add(m),a.a.watch({autoReplaceSvgRoot:document.getElementById("wplc_wrapper"),observeMutationsRoot:document.getElementById("wplc_wrapper")})}}])}));
|
2 |
//# sourceMappingURL=tcx-fa.js.map
|
js/tcx-fa.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("TCXfa",[],e):"object"==typeof exports?exports.TCXfa=e():t.TCXfa=e()}(window,(function(){return function(t){var e={};function n(a){if(e[a])return e[a].exports;var r=e[a]={i:a,l:!1,exports:{}};return t[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(a,r,function(e){return t[e]}.bind(null,r));return a},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=5)}([function(t,e,n){"use strict";(function(t,a){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},a=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(a=a.concat(Object.getOwnPropertySymbols(n).filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable})))),a.forEach((function(e){c(t,e,n[e])}))}return t}function s(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var c,o=t[Symbol.iterator]();!(a=(c=o.next()).done)&&(n.push(c.value),!e||n.length!==e);a=!0);}catch(t){r=!0,i=t}finally{try{a||null==o.return||o.return()}finally{if(r)throw i}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function f(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}n.d(e,"b",(function(){return xe})),n.d(e,"a",(function(){return Me}));var l=function(){},u={},d={},m=null,h={mark:l,measure:l};try{"undefined"!=typeof window&&(u=window),"undefined"!=typeof document&&(d=document),"undefined"!=typeof MutationObserver&&(m=MutationObserver),"undefined"!=typeof performance&&(h=performance)}catch(t){}var p=(u.navigator||{}).userAgent,v=void 0===p?"":p,g=u,b=d,y=m,w=h,x=(g.document,!!b.documentElement&&!!b.head&&"function"==typeof b.addEventListener&&"function"==typeof b.createElement),z=~v.indexOf("MSIE")||~v.indexOf("Trident/"),M=["HTML","HEAD","STYLE","SCRIPT"],k=function(){try{return!0}catch(t){return!1}}(),C={fas:"solid",far:"regular",fal:"light",fad:"duotone",fab:"brands",fa:"solid"},N={solid:"fas",regular:"far",light:"fal",duotone:"fad",brands:"fab"},_=/Font Awesome 5 (Solid|Regular|Light|Duotone|Brands|Free|Pro)/,L={900:"fas",400:"far",normal:"far",300:"fal"},A=[1,2,3,4,5,6,7,8,9,10],S=A.concat([11,12,13,14,15,16,17,18,19,20]),T=["class","data-prefix","data-icon","data-fa-transform","data-fa-mask"],O={GROUP:"group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},H=["xs","sm","lg","fw","ul","li","border","pull-left","pull-right","spin","pulse","rotate-90","rotate-180","rotate-270","flip-horizontal","flip-vertical","flip-both","stack","stack-1x","stack-2x","inverse","layers","layers-text","layers-counter",O.GROUP,O.SWAP_OPACITY,O.PRIMARY,O.SECONDARY].concat(A.map((function(t){return"".concat(t,"x")}))).concat(S.map((function(t){return"w-".concat(t)}))),E=g.FontAwesomeConfig||{};if(b&&"function"==typeof b.querySelector){[["data-family-prefix","familyPrefix"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach((function(t){var e=s(t,2),n=e[0],a=e[1],r=function(t){return""===t||"false"!==t&&("true"===t||t)}(function(t){var e=b.querySelector("script["+t+"]");if(e)return e.getAttribute(t)}(n));null!=r&&(E[a]=r)}))}var I=o({},{familyPrefix:"fa",replacementClass:"svg-inline--fa",autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0},E);I.autoReplaceSvg||(I.observeMutations=!1);var j=o({},I);g.FontAwesomeConfig=j;var P=g||{};P.___FONT_AWESOME___||(P.___FONT_AWESOME___={}),P.___FONT_AWESOME___.styles||(P.___FONT_AWESOME___.styles={}),P.___FONT_AWESOME___.hooks||(P.___FONT_AWESOME___.hooks={}),P.___FONT_AWESOME___.shims||(P.___FONT_AWESOME___.shims=[]);var V=P.___FONT_AWESOME___,R=[],F=!1;function D(t){x&&(F?setTimeout(t,0):R.push(t))}x&&((F=(b.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(b.readyState))||b.addEventListener("DOMContentLoaded",(function t(){b.removeEventListener("DOMContentLoaded",t),F=1,R.map((function(t){return t()}))})));var Y,W=function(){},X=void 0!==t&&void 0!==t.process&&"function"==typeof t.process.emit,B=void 0===a?setTimeout:a,U=[];function q(){for(var t=0;t<U.length;t++)U[t][0](U[t][1]);U=[],Y=!1}function K(t,e){U.push([t,e]),Y||(Y=!0,B(q,0))}function G(t){var e=t.owner,n=e._state,a=e._data,r=t[n],i=t.then;if("function"==typeof r){n="fulfilled";try{a=r(a)}catch(t){Q(i,t)}}Z(i,a)||("fulfilled"===n&&$(i,a),"rejected"===n&&Q(i,a))}function Z(t,e){var n;try{if(t===e)throw new TypeError("A promises callback cannot return that same promise.");if(e&&("function"==typeof e||"object"===r(e))){var a=e.then;if("function"==typeof a)return a.call(e,(function(a){n||(n=!0,e===a?J(t,a):$(t,a))}),(function(e){n||(n=!0,Q(t,e))})),!0}}catch(e){return n||Q(t,e),!0}return!1}function $(t,e){t!==e&&Z(t,e)||J(t,e)}function J(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(et,t))}function Q(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(nt,t))}function tt(t){t._then=t._then.forEach(G)}function et(t){t._state="fulfilled",tt(t)}function nt(e){e._state="rejected",tt(e),!e._handled&&X&&t.process.emit("unhandledRejection",e._data,e)}function at(e){t.process.emit("rejectionHandled",e)}function rt(t){if("function"!=typeof t)throw new TypeError("Promise resolver "+t+" is not a function");if(this instanceof rt==!1)throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");this._then=[],function(t,e){function n(t){Q(e,t)}try{t((function(t){$(e,t)}),n)}catch(t){n(t)}}(t,this)}rt.prototype={constructor:rt,_state:"pending",_then:null,_data:void 0,_handled:!1,then:function(t,e){var n={owner:this,then:new this.constructor(W),fulfilled:t,rejected:e};return!e&&!t||this._handled||(this._handled=!0,"rejected"===this._state&&X&&K(at,this)),"fulfilled"===this._state||"rejected"===this._state?K(G,n):this._then.push(n),n.then},catch:function(t){return this.then(null,t)}},rt.all=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.all().");return new rt((function(e,n){var a=[],r=0;function i(t){return r++,function(n){a[t]=n,--r||e(a)}}for(var c,o=0;o<t.length;o++)(c=t[o])&&"function"==typeof c.then?c.then(i(o),n):a[o]=c;r||e(a)}))},rt.race=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.race().");return new rt((function(e,n){for(var a,r=0;r<t.length;r++)(a=t[r])&&"function"==typeof a.then?a.then(e,n):e(a)}))},rt.resolve=function(t){return t&&"object"===r(t)&&t.constructor===rt?t:new rt((function(e){e(t)}))},rt.reject=function(t){return new rt((function(e,n){n(t)}))};var it="function"==typeof Promise?Promise:rt,ct=16,ot={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function st(t){if(t&&x){var e=b.createElement("style");e.setAttribute("type","text/css"),e.innerHTML=t;for(var n=b.head.childNodes,a=null,r=n.length-1;r>-1;r--){var i=n[r],c=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(c)>-1&&(a=i)}return b.head.insertBefore(e,a),t}}function ft(){for(var t=12,e="";t-- >0;)e+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return e}function lt(t){for(var e=[],n=(t||[]).length>>>0;n--;)e[n]=t[n];return e}function ut(t){return t.classList?lt(t.classList):(t.getAttribute("class")||"").split(" ").filter((function(t){return t}))}function dt(t,e){var n,a=e.split("-"),r=a[0],i=a.slice(1).join("-");return r!==t||""===i||(n=i,~H.indexOf(n))?null:i}function mt(t){return"".concat(t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function ht(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,": ").concat(t[n],";")}),"")}function pt(t){return t.size!==ot.size||t.x!==ot.x||t.y!==ot.y||t.rotate!==ot.rotate||t.flipX||t.flipY}function vt(t){var e=t.transform,n=t.containerWidth,a=t.iconWidth,r={transform:"translate(".concat(n/2," 256)")},i="translate(".concat(32*e.x,", ").concat(32*e.y,") "),c="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),o="rotate(".concat(e.rotate," 0 0)");return{outer:r,inner:{transform:"".concat(i," ").concat(c," ").concat(o)},path:{transform:"translate(".concat(a/2*-1," -256)")}}}var gt={x:0,y:0,width:"100%",height:"100%"};function bt(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return t.attributes&&(t.attributes.fill||e)&&(t.attributes.fill="black"),t}function yt(t){var e=t.icons,n=e.main,a=e.mask,r=t.prefix,i=t.iconName,c=t.transform,s=t.symbol,f=t.title,l=t.maskId,u=t.titleId,d=t.extra,m=t.watchable,h=void 0!==m&&m,p=a.found?a:n,v=p.width,g=p.height,b="fa-w-".concat(Math.ceil(v/g*16)),y=[j.replacementClass,i?"".concat(j.familyPrefix,"-").concat(i):"",b].filter((function(t){return-1===d.classes.indexOf(t)})).concat(d.classes).join(" "),w={children:[],attributes:o({},d.attributes,{"data-prefix":r,"data-icon":i,class:y,role:d.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(v," ").concat(g)})};h&&(w.attributes["data-fa-i2svg"]=""),f&&w.children.push({tag:"title",attributes:{id:w.attributes["aria-labelledby"]||"title-".concat(u||ft())},children:[f]});var x=o({},w,{prefix:r,iconName:i,main:n,mask:a,maskId:l,transform:c,symbol:s,styles:d.styles}),z=a.found&&n.found?function(t){var e,n=t.children,a=t.attributes,r=t.main,i=t.mask,c=t.maskId,s=t.transform,f=r.width,l=r.icon,u=i.width,d=i.icon,m=vt({transform:s,containerWidth:u,iconWidth:f}),h={tag:"rect",attributes:o({},gt,{fill:"white"})},p=l.children?{children:l.children.map(bt)}:{},v={tag:"g",attributes:o({},m.inner),children:[bt(o({tag:l.tag,attributes:o({},l.attributes,m.path)},p))]},g={tag:"g",attributes:o({},m.outer),children:[v]},b="mask-".concat(c||ft()),y="clip-".concat(c||ft()),w={tag:"mask",attributes:o({},gt,{id:b,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[h,g]},x={tag:"defs",children:[{tag:"clipPath",attributes:{id:y},children:(e=d,"g"===e.tag?e.children:[e])},w]};return n.push(x,{tag:"rect",attributes:o({fill:"currentColor","clip-path":"url(#".concat(y,")"),mask:"url(#".concat(b,")")},gt)}),{children:n,attributes:a}}(x):function(t){var e=t.children,n=t.attributes,a=t.main,r=t.transform,i=ht(t.styles);if(i.length>0&&(n.style=i),pt(r)){var c=vt({transform:r,containerWidth:a.width,iconWidth:a.width});e.push({tag:"g",attributes:o({},c.outer),children:[{tag:"g",attributes:o({},c.inner),children:[{tag:a.icon.tag,children:a.icon.children,attributes:o({},a.icon.attributes,c.path)}]}]})}else e.push(a.icon);return{children:e,attributes:n}}(x),M=z.children,k=z.attributes;return x.children=M,x.attributes=k,s?function(t){var e=t.prefix,n=t.iconName,a=t.children,r=t.attributes,i=t.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:o({},r,{id:!0===i?"".concat(e,"-").concat(j.familyPrefix,"-").concat(n):i}),children:a}]}]}(x):function(t){var e=t.children,n=t.main,a=t.mask,r=t.attributes,i=t.styles,c=t.transform;if(pt(c)&&n.found&&!a.found){var s={x:n.width/n.height/2,y:.5};r.style=ht(o({},i,{"transform-origin":"".concat(s.x+c.x/16,"em ").concat(s.y+c.y/16,"em")}))}return[{tag:"svg",attributes:r,children:e}]}(x)}function wt(t){var e=t.content,n=t.width,a=t.height,r=t.transform,i=t.title,c=t.extra,s=t.watchable,f=void 0!==s&&s,l=o({},c.attributes,i?{title:i}:{},{class:c.classes.join(" ")});f&&(l["data-fa-i2svg"]="");var u=o({},c.styles);pt(r)&&(u.transform=function(t){var e=t.transform,n=t.width,a=void 0===n?16:n,r=t.height,i=void 0===r?16:r,c=t.startCentered,o=void 0!==c&&c,s="";return s+=o&&z?"translate(".concat(e.x/ct-a/2,"em, ").concat(e.y/ct-i/2,"em) "):o?"translate(calc(-50% + ".concat(e.x/ct,"em), calc(-50% + ").concat(e.y/ct,"em)) "):"translate(".concat(e.x/ct,"em, ").concat(e.y/ct,"em) "),s+="scale(".concat(e.size/ct*(e.flipX?-1:1),", ").concat(e.size/ct*(e.flipY?-1:1),") "),s+="rotate(".concat(e.rotate,"deg) ")}({transform:r,startCentered:!0,width:n,height:a}),u["-webkit-transform"]=u.transform);var d=ht(u);d.length>0&&(l.style=d);var m=[];return m.push({tag:"span",attributes:l,children:[e]}),i&&m.push({tag:"span",attributes:{class:"sr-only"},children:[i]}),m}function xt(t){var e=t.content,n=t.title,a=t.extra,r=o({},a.attributes,n?{title:n}:{},{class:a.classes.join(" ")}),i=ht(a.styles);i.length>0&&(r.style=i);var c=[];return c.push({tag:"span",attributes:r,children:[e]}),n&&c.push({tag:"span",attributes:{class:"sr-only"},children:[n]}),c}var zt=function(){},Mt=j.measurePerformance&&w&&w.mark&&w.measure?w:{mark:zt,measure:zt},kt='FA "5.13.0"',Ct=function(t){Mt.mark("".concat(kt," ").concat(t," ends")),Mt.measure("".concat(kt," ").concat(t),"".concat(kt," ").concat(t," begins"),"".concat(kt," ").concat(t," ends"))},Nt=function(t){return Mt.mark("".concat(kt," ").concat(t," begins")),function(){return Ct(t)}},_t=function(t,e,n,a){var r,i,c,o=Object.keys(t),s=o.length,f=void 0!==a?function(t,e){return function(n,a,r,i){return t.call(e,n,a,r,i)}}(e,a):e;for(void 0===n?(r=1,c=t[o[0]]):(r=0,c=n);r<s;r++)c=f(c,t[i=o[r]],i,t);return c};function Lt(t){for(var e="",n=0;n<t.length;n++){e+=("000"+t.charCodeAt(n).toString(16)).slice(-4)}return e}function At(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=n.skipHooks,r=void 0!==a&&a,i=Object.keys(e).reduce((function(t,n){var a=e[n];return!!a.icon?t[a.iconName]=a.icon:t[n]=a,t}),{});"function"!=typeof V.hooks.addPack||r?V.styles[t]=o({},V.styles[t]||{},i):V.hooks.addPack(t,i),"fas"===t&&At("fa",e)}var St=V.styles,Tt=V.shims,Ot={},Ht={},Et={},It=function(){var t=function(t){return _t(St,(function(e,n,a){return e[a]=_t(n,t,{}),e}),{})};Ot=t((function(t,e,n){return e[3]&&(t[e[3]]=n),t})),Ht=t((function(t,e,n){var a=e[2];return t[n]=n,a.forEach((function(e){t[e]=n})),t}));var e="far"in St;Et=_t(Tt,(function(t,n){var a=n[0],r=n[1],i=n[2];return"far"!==r||e||(r="fas"),t[a]={prefix:r,iconName:i},t}),{})};function jt(t,e){return(Ot[t]||{})[e]}It();var Pt=V.styles;function Vt(t){return t.reduce((function(t,e){var n=dt(j.familyPrefix,e);if(Pt[e])t.prefix=e;else if(j.autoFetchSvg&&["fas","far","fal","fad","fab","fa"].indexOf(e)>-1)t.prefix=e;else if(n){var a="fa"===t.prefix?Et[n]||{prefix:null,iconName:null}:{};t.iconName=a.iconName||n,t.prefix=a.prefix||t.prefix}else e!==j.replacementClass&&0!==e.indexOf("fa-w-")&&t.rest.push(e);return t}),{prefix:null,iconName:null,rest:[]})}function Rt(t,e,n){if(t&&t[e]&&t[e][n])return{prefix:e,iconName:n,icon:t[e][n]}}function Ft(t){var e=t.tag,n=t.attributes,a=void 0===n?{}:n,r=t.children,i=void 0===r?[]:r;return"string"==typeof t?mt(t):"<".concat(e," ").concat(function(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,'="').concat(mt(t[n]),'" ')}),"").trim()}(a),">").concat(i.map(Ft).join(""),"</").concat(e,">")}var Dt=function(){};function Yt(t){return"string"==typeof(t.getAttribute?t.getAttribute("data-fa-i2svg"):null)}var Wt={replace:function(t){var e=t[0],n=t[1].map((function(t){return Ft(t)})).join("\n");if(e.parentNode&&e.outerHTML)e.outerHTML=n+(j.keepOriginalSource&&"svg"!==e.tagName.toLowerCase()?"\x3c!-- ".concat(e.outerHTML," --\x3e"):"");else if(e.parentNode){var a=document.createElement("span");e.parentNode.replaceChild(a,e),a.outerHTML=n}},nest:function(t){var e=t[0],n=t[1];if(~ut(e).indexOf(j.replacementClass))return Wt.replace(t);var a=new RegExp("".concat(j.familyPrefix,"-.*"));delete n[0].attributes.style,delete n[0].attributes.id;var r=n[0].attributes.class.split(" ").reduce((function(t,e){return e===j.replacementClass||e.match(a)?t.toSvg.push(e):t.toNode.push(e),t}),{toNode:[],toSvg:[]});n[0].attributes.class=r.toSvg.join(" ");var i=n.map((function(t){return Ft(t)})).join("\n");e.setAttribute("class",r.toNode.join(" ")),e.setAttribute("data-fa-i2svg",""),e.innerHTML=i}};function Xt(t){t()}function Bt(t,e){var n="function"==typeof e?e:Dt;if(0===t.length)n();else{var a=Xt;"async"===j.mutateApproach&&(a=g.requestAnimationFrame||Xt),a((function(){var e=!0===j.autoReplaceSvg?Wt.replace:Wt[j.autoReplaceSvg]||Wt.replace,a=Nt("mutate");t.map(e),a(),n()}))}}var Ut=!1;function qt(){Ut=!1}var Kt=null;function Gt(t){if(y&&j.observeMutations){var e=t.treeCallback,n=t.nodeCallback,a=t.pseudoElementsCallback,r=t.observeMutationsRoot,i=void 0===r?b:r;Kt=new y((function(t){Ut||lt(t).forEach((function(t){if("childList"===t.type&&t.addedNodes.length>0&&!Yt(t.addedNodes[0])&&(j.searchPseudoElements&&a(t.target),e(t.target)),"attributes"===t.type&&t.target.parentNode&&j.searchPseudoElements&&a(t.target.parentNode),"attributes"===t.type&&Yt(t.target)&&~T.indexOf(t.attributeName))if("class"===t.attributeName){var r=Vt(ut(t.target)),i=r.prefix,c=r.iconName;i&&t.target.setAttribute("data-prefix",i),c&&t.target.setAttribute("data-icon",c)}else n(t.target)}))})),x&&Kt.observe(i,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Zt(t){var e,n,a=t.getAttribute("data-prefix"),r=t.getAttribute("data-icon"),i=void 0!==t.innerText?t.innerText.trim():"",c=Vt(ut(t));return a&&r&&(c.prefix=a,c.iconName=r),c.prefix&&i.length>1?c.iconName=(e=c.prefix,n=t.innerText,(Ht[e]||{})[n]):c.prefix&&1===i.length&&(c.iconName=jt(c.prefix,Lt(t.innerText))),c}var $t=function(t){var e={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return t?t.toLowerCase().split(" ").reduce((function(t,e){var n=e.toLowerCase().split("-"),a=n[0],r=n.slice(1).join("-");if(a&&"h"===r)return t.flipX=!0,t;if(a&&"v"===r)return t.flipY=!0,t;if(r=parseFloat(r),isNaN(r))return t;switch(a){case"grow":t.size=t.size+r;break;case"shrink":t.size=t.size-r;break;case"left":t.x=t.x-r;break;case"right":t.x=t.x+r;break;case"up":t.y=t.y-r;break;case"down":t.y=t.y+r;break;case"rotate":t.rotate=t.rotate+r}return t}),e):e};function Jt(t){var e=Zt(t),n=e.iconName,a=e.prefix,r=e.rest,i=function(t){var e=t.getAttribute("style"),n=[];return e&&(n=e.split(";").reduce((function(t,e){var n=e.split(":"),a=n[0],r=n.slice(1);return a&&r.length>0&&(t[a]=r.join(":").trim()),t}),{})),n}(t),c=function(t){return $t(t.getAttribute("data-fa-transform"))}(t),o=function(t){var e=t.getAttribute("data-fa-symbol");return null!==e&&(""===e||e)}(t),s=function(t){var e=lt(t.attributes).reduce((function(t,e){return"class"!==t.name&&"style"!==t.name&&(t[e.name]=e.value),t}),{}),n=t.getAttribute("title"),a=t.getAttribute("data-fa-title-id");return j.autoA11y&&(n?e["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(a||ft()):(e["aria-hidden"]="true",e.focusable="false")),e}(t),f=function(t){var e=t.getAttribute("data-fa-mask");return e?Vt(e.split(" ").map((function(t){return t.trim()}))):{prefix:null,iconName:null,rest:[]}}(t);return{iconName:n,title:t.getAttribute("title"),titleId:t.getAttribute("data-fa-title-id"),prefix:a,transform:c,symbol:o,mask:f,maskId:t.getAttribute("data-fa-mask-id"),extra:{classes:r,styles:i,attributes:s}}}function Qt(t){this.name="MissingIcon",this.message=t||"Icon unavailable",this.stack=(new Error).stack}Qt.prototype=Object.create(Error.prototype),Qt.prototype.constructor=Qt;var te={fill:"currentColor"},ee={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},ne={tag:"path",attributes:o({},te,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})},ae=o({},ee,{attributeName:"opacity"}),re={tag:"g",children:[ne,{tag:"circle",attributes:o({},te,{cx:"256",cy:"364",r:"28"}),children:[{tag:"animate",attributes:o({},ee,{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:o({},ae,{values:"1;0;1;1;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:[{tag:"animate",attributes:o({},ae,{values:"1;0;0;0;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:o({},ae,{values:"0;0;1;1;0;0;"})}]}]},ie=V.styles;function ce(t){var e=t[0],n=t[1],a=s(t.slice(4),1)[0];return{found:!0,width:e,height:n,icon:Array.isArray(a)?{tag:"g",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.GROUP)},children:[{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.SECONDARY),fill:"currentColor",d:a[0]}},{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.PRIMARY),fill:"currentColor",d:a[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:a}}}}function oe(t,e){return new it((function(n,a){var i={found:!1,width:512,height:512,icon:re};if(t&&e&&ie[e]&&ie[e][t])return n(ce(ie[e][t]));"object"===r(g.FontAwesomeKitConfig)&&"string"==typeof window.FontAwesomeKitConfig.token&&g.FontAwesomeKitConfig.token,t&&e&&!j.showMissingIcons?a(new Qt("Icon is missing for prefix ".concat(e," with icon name ").concat(t))):n(i)}))}var se=V.styles;function fe(t){var e=Jt(t);return~e.extra.classes.indexOf("fa-layers-text")?function(t,e){var n=e.title,a=e.transform,r=e.extra,i=null,c=null;if(z){var o=parseInt(getComputedStyle(t).fontSize,10),s=t.getBoundingClientRect();i=s.width/o,c=s.height/o}return j.autoA11y&&!n&&(r.attributes["aria-hidden"]="true"),it.resolve([t,wt({content:t.innerHTML,width:i,height:c,transform:a,title:n,extra:r,watchable:!0})])}(t,e):function(t,e){var n=e.iconName,a=e.title,r=e.titleId,i=e.prefix,c=e.transform,o=e.symbol,f=e.mask,l=e.maskId,u=e.extra;return new it((function(e,d){it.all([oe(n,i),oe(f.iconName,f.prefix)]).then((function(f){var d=s(f,2),m=d[0],h=d[1];e([t,yt({icons:{main:m,mask:h},prefix:i,iconName:n,transform:c,symbol:o,mask:h,maskId:l,title:a,titleId:r,extra:u,watchable:!0})])}))}))}(t,e)}function le(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(x){var n=b.documentElement.classList,a=function(t){return n.add("".concat("fontawesome-i2svg","-").concat(t))},r=function(t){return n.remove("".concat("fontawesome-i2svg","-").concat(t))},i=j.autoFetchSvg?Object.keys(C):Object.keys(se),c=[".".concat("fa-layers-text",":not([").concat("data-fa-i2svg","])")].concat(i.map((function(t){return".".concat(t,":not([").concat("data-fa-i2svg","])")}))).join(", ");if(0!==c.length){var o=[];try{o=lt(t.querySelectorAll(c))}catch(t){}if(o.length>0){a("pending"),r("complete");var s=Nt("onTree"),f=o.reduce((function(t,e){try{var n=fe(e);n&&t.push(n)}catch(t){k||t instanceof Qt&&console.error(t)}return t}),[]);return new it((function(t,n){it.all(f).then((function(n){Bt(n,(function(){a("active"),a("complete"),r("pending"),"function"==typeof e&&e(),s(),t()}))})).catch((function(){s(),n()}))}))}}}}function ue(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;fe(t).then((function(t){t&&Bt([t],e)}))}function de(t,e){var n="".concat("data-fa-pseudo-element-pending").concat(e.replace(":","-"));return new it((function(a,r){if(null!==t.getAttribute(n))return a();var i=lt(t.children).filter((function(t){return t.getAttribute("data-fa-pseudo-element")===e}))[0],c=g.getComputedStyle(t,e),s=c.getPropertyValue("font-family").match(_),f=c.getPropertyValue("font-weight"),l=c.getPropertyValue("content");if(i&&!s)return t.removeChild(i),a();if(s&&"none"!==l&&""!==l){var u=~["Solid","Regular","Light","Duotone","Brands"].indexOf(s[1])?N[s[1].toLowerCase()]:L[f],d=Lt(3===l.length?l.substr(1,1):l),m=jt(u,d),h=m;if(!m||i&&i.getAttribute("data-prefix")===u&&i.getAttribute("data-icon")===h)a();else{t.setAttribute(n,h),i&&t.removeChild(i);var p={iconName:null,title:null,titleId:null,prefix:null,transform:ot,symbol:!1,mask:null,maskId:null,extra:{classes:[],styles:{},attributes:{}}},v=p.extra;v.attributes["data-fa-pseudo-element"]=e,oe(m,u).then((function(r){var i=yt(o({},p,{icons:{main:r,mask:{prefix:null,iconName:null,rest:[]}},prefix:u,iconName:h,extra:v,watchable:!0})),c=b.createElement("svg");":before"===e?t.insertBefore(c,t.firstChild):t.appendChild(c),c.outerHTML=i.map((function(t){return Ft(t)})).join("\n"),t.removeAttribute(n),a()})).catch(r)}}else a()}))}function me(t){return it.all([de(t,":before"),de(t,":after")])}function he(t){return!(t.parentNode===document.head||~M.indexOf(t.tagName.toUpperCase())||t.getAttribute("data-fa-pseudo-element")||t.parentNode&&"svg"===t.parentNode.tagName)}function pe(t){if(x)return new it((function(e,n){var a=lt(t.querySelectorAll("*")).filter(he).map(me),r=Nt("searchPseudoElements");Ut=!0,it.all(a).then((function(){r(),qt(),e()})).catch((function(){r(),qt(),n()}))}))}function ve(){var t="svg-inline--fa",e=j.familyPrefix,n=j.replacementClass,a='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';if("fa"!==e||n!==t){var r=new RegExp("\\.".concat("fa","\\-"),"g"),i=new RegExp("\\--".concat("fa","\\-"),"g"),c=new RegExp("\\.".concat(t),"g");a=a.replace(r,".".concat(e,"-")).replace(i,"--".concat(e,"-")).replace(c,".".concat(n))}return a}function ge(){j.autoAddCss&&!ze&&(st(ve()),ze=!0)}function be(t,e){return Object.defineProperty(t,"abstract",{get:e}),Object.defineProperty(t,"html",{get:function(){return t.abstract.map((function(t){return Ft(t)}))}}),Object.defineProperty(t,"node",{get:function(){if(x){var e=b.createElement("div");return e.innerHTML=t.html,e.children}}}),t}function ye(t){var e=t.prefix,n=void 0===e?"fa":e,a=t.iconName;if(a)return Rt(xe.definitions,n,a)||Rt(V.styles,n,a)}var we,xe=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.definitions={}}var e,n,a;return e=t,(n=[{key:"add",value:function(){for(var t=this,e=arguments.length,n=new Array(e),a=0;a<e;a++)n[a]=arguments[a];var r=n.reduce(this._pullDefinitions,{});Object.keys(r).forEach((function(e){t.definitions[e]=o({},t.definitions[e]||{},r[e]),At(e,r[e]),It()}))}},{key:"reset",value:function(){this.definitions={}}},{key:"_pullDefinitions",value:function(t,e){var n=e.prefix&&e.iconName&&e.icon?{0:e}:e;return Object.keys(n).map((function(e){var a=n[e],r=a.prefix,i=a.iconName,c=a.icon;t[r]||(t[r]={}),t[r][i]=c})),t}}])&&i(e.prototype,n),a&&i(e,a),t}()),ze=!1,Me={i2svg:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(x){ge();var e=t.node,n=void 0===e?b:e,a=t.callback,r=void 0===a?function(){}:a;return j.searchPseudoElements&&pe(n),le(n,r)}return it.reject("Operation requires a DOM of some kind.")},css:ve,insertCss:function(){ze||(st(ve()),ze=!0)},watch:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=t.observeMutationsRoot;!1===j.autoReplaceSvg&&(j.autoReplaceSvg=!0),j.observeMutations=!0,D((function(){Ne({autoReplaceSvgRoot:e}),Gt({treeCallback:le,nodeCallback:ue,pseudoElementsCallback:pe,observeMutationsRoot:n})}))}},ke=(we=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.symbol,i=void 0!==r&&r,c=e.mask,s=void 0===c?null:c,f=e.maskId,l=void 0===f?null:f,u=e.title,d=void 0===u?null:u,m=e.titleId,h=void 0===m?null:m,p=e.classes,v=void 0===p?[]:p,g=e.attributes,b=void 0===g?{}:g,y=e.styles,w=void 0===y?{}:y;if(t){var x=t.prefix,z=t.iconName,M=t.icon;return be(o({type:"icon"},t),(function(){return ge(),j.autoA11y&&(d?b["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(h||ft()):(b["aria-hidden"]="true",b.focusable="false")),yt({icons:{main:ce(M),mask:s?ce(s.icon):{found:!1,width:null,height:null,icon:{}}},prefix:x,iconName:z,transform:o({},ot,a),symbol:i,title:d,maskId:l,titleId:h,extra:{attributes:b,styles:w,classes:v}})}))}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=(t||{}).icon?t:ye(t||{}),a=e.mask;return a&&(a=(a||{}).icon?a:ye(a||{})),we(n,o({},e,{mask:a}))}),Ce={noAuto:function(){j.autoReplaceSvg=!1,j.observeMutations=!1,Kt&&Kt.disconnect()},config:j,dom:Me,library:xe,parse:{transform:function(t){return $t(t)}},findIconDefinition:ye,icon:ke,text:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.title,i=void 0===r?null:r,c=e.classes,s=void 0===c?[]:c,l=e.attributes,u=void 0===l?{}:l,d=e.styles,m=void 0===d?{}:d;return be({type:"text",content:t},(function(){return ge(),wt({content:t,transform:o({},ot,a),title:i,extra:{attributes:u,styles:m,classes:["".concat(j.familyPrefix,"-layers-text")].concat(f(s))}})}))},counter:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.title,a=void 0===n?null:n,r=e.classes,i=void 0===r?[]:r,c=e.attributes,o=void 0===c?{}:c,s=e.styles,l=void 0===s?{}:s;return be({type:"counter",content:t},(function(){return ge(),xt({content:t.toString(),title:a,extra:{attributes:o,styles:l,classes:["".concat(j.familyPrefix,"-layers-counter")].concat(f(i))}})}))},layer:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.classes,a=void 0===n?[]:n;return be({type:"layer"},(function(){ge();var e=[];return t((function(t){Array.isArray(t)?t.map((function(t){e=e.concat(t.abstract)})):e=e.concat(t.abstract)})),[{tag:"span",attributes:{class:["".concat(j.familyPrefix,"-layers")].concat(f(a)).join(" ")},children:e}]}))},toHtml:Ft},Ne=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=void 0===e?b:e;(Object.keys(V.styles).length>0||j.autoFetchSvg)&&x&&j.autoReplaceSvg&&Ce.dom.i2svg({node:n})}}).call(this,n(1),n(2).setImmediate)},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(function(t){var a=void 0!==t&&t||"undefined"!=typeof self&&self||window,r=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(r.call(setTimeout,a,arguments),clearTimeout)},e.setInterval=function(){return new i(r.call(setInterval,a,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(a,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(3),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(1))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var a,r,i,c,o,s=1,f={},l=!1,u=t.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(t);d=d&&d.setTimeout?d:t,"[object process]"==={}.toString.call(t.process)?a=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},a=function(t){i.port2.postMessage(t)}):u&&"onreadystatechange"in u.createElement("script")?(r=u.documentElement,a=function(t){var e=u.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,r.removeChild(e),e=null},r.appendChild(e)}):a=function(t){setTimeout(h,0,t)}:(c="setImmediate$"+Math.random()+"$",o=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(c)&&h(+e.data.slice(c.length))},t.addEventListener?t.addEventListener("message",o,!1):t.attachEvent("onmessage",o),a=function(e){t.postMessage(c+e,"*")}),d.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var r={callback:t,args:e};return f[s]=r,a(s),s++},d.clearImmediate=m}function m(t){delete f[t]}function h(t){if(l)setTimeout(h,0,t);else{var e=f[t];if(e){l=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(void 0,n)}}(e)}finally{m(t),l=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(1),n(4))},function(t,e){var n,a,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function o(t){if(n===setTimeout)return setTimeout(t,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(t){n=i}try{a="function"==typeof clearTimeout?clearTimeout:c}catch(t){a=c}}();var s,f=[],l=!1,u=-1;function d(){l&&s&&(l=!1,s.length?f=s.concat(f):u=-1,f.length&&m())}function m(){if(!l){var t=o(d);l=!0;for(var e=f.length;e;){for(s=f,f=[];++u<e;)s&&s[u].run();u=-1,e=f.length}s=null,l=!1,function(t){if(a===clearTimeout)return clearTimeout(t);if((a===c||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function p(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];f.push(new h(t,e)),1!==f.length||l||o(m)},h.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=p,r.addListener=p,r.once=p,r.off=p,r.removeListener=p,r.removeAllListeners=p,r.emit=p,r.prependListener=p,r.prependOnceListener=p,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},function(t,e,n){"use strict";n.r(e),n.d(e,"tcxFaInit",(function(){return J}));var a=n(0),r={prefix:"fas",iconName:"arrow-circle-up",icon:[512,512,[],"f0aa","M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"]},i={prefix:"fas",iconName:"arrows-alt",icon:[512,512,[],"f0b2","M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"]},c={prefix:"fas",iconName:"arrows-alt-h",icon:[512,512,[],"f337","M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"]},o={prefix:"fas",iconName:"bolt",icon:[320,512,[],"f0e7","M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z"]},s={prefix:"fas",iconName:"book",icon:[448,512,[],"f02d","M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"]},f={prefix:"fas",iconName:"border-all",icon:[448,512,[],"f84c","M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z"]},l={prefix:"fas",iconName:"chart-area",icon:[512,512,[],"f1fe","M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"]},u={prefix:"fas",iconName:"check",icon:[512,512,[],"f00c","M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"]},d={prefix:"fas",iconName:"check-circle",icon:[512,512,[],"f058","M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"]},m={prefix:"fas",iconName:"chevron-circle-left",icon:[512,512,[],"f137","M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"]},h={prefix:"fas",iconName:"chevron-circle-right",icon:[512,512,[],"f138","M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"]},p={prefix:"fas",iconName:"clock",icon:[512,512,[],"f017","M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z"]},v={prefix:"fas",iconName:"cloud",icon:[640,512,[],"f0c2","M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"]},g={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"]},b={prefix:"fas",iconName:"code-branch",icon:[384,512,[],"f126","M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"]},y={prefix:"fas",iconName:"cog",icon:[512,512,[],"f013","M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"]},w={prefix:"fas",iconName:"comment-dots",icon:[512,512,[],"f4ad","M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"]},x={prefix:"fas",iconName:"comments",icon:[576,512,[],"f086","M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"]},z={prefix:"fas",iconName:"ellipsis-h",icon:[512,512,[],"f141","M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"]},M={prefix:"fas",iconName:"ellipsis-v",icon:[192,512,[],"f142","M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"]},k={prefix:"fas",iconName:"exclamation",icon:[192,512,[],"f12a","M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"]},C={prefix:"fas",iconName:"eye",icon:[576,512,[],"f06e","M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z"]},N={prefix:"fas",iconName:"file-export",icon:[576,512,[],"f56e","M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z"]},_={prefix:"fas",iconName:"gavel",icon:[512,512,[],"f0e3","M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"]},L={prefix:"fas",iconName:"globe",icon:[496,512,[],"f0ac","M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"]},A={prefix:"fas",iconName:"info-circle",icon:[512,512,[],"f05a","M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"]},S={prefix:"fas",iconName:"keyboard",icon:[576,512,[],"f11c","M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"]},T={prefix:"fas",iconName:"lock",icon:[448,512,[],"f023","M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"]},O={prefix:"fas",iconName:"newspaper",icon:[576,512,[],"f1ea","M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"]},H={prefix:"fas",iconName:"paperclip",icon:[448,512,[],"f0c6","M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"]},E={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},I={prefix:"fas",iconName:"play",icon:[448,512,[],"f04b","M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"]},j={prefix:"fas",iconName:"plus-circle",icon:[512,512,[],"f055","M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"]},P={prefix:"fas",iconName:"question-circle",icon:[512,512,[],"f059","M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"]},V={prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},R={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"]},F={prefix:"fas",iconName:"sliders-h",icon:[512,512,[],"f1de","M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"]},D={prefix:"fas",iconName:"smile",icon:[496,512,[],"f118","M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"]},Y={prefix:"fas",iconName:"tasks",icon:[512,512,[],"f0ae","M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"]},W={prefix:"fas",iconName:"thumbtack",icon:[384,512,[],"f08d","M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"]},X={prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]},B={prefix:"fas",iconName:"trash",icon:[448,512,[],"f1f8","M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"]},U={prefix:"fas",iconName:"university",icon:[512,512,[],"f19c","M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"]},q={prefix:"fas",iconName:"user-astronaut",icon:[448,512,[],"f4fb","M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"]},K={prefix:"fas",iconName:"user-times",icon:[640,512,[],"f235","M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"]},G={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"]},Z={prefix:"far",iconName:"envelope",icon:[512,512,[],"f0e0","M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"]},$={prefix:"far",iconName:"paper-plane",icon:[512,512,[],"f1d8","M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"]};function J(){a.b.add(q),a.b.add(o),a.b.add(s),a.b.add(l),a.b.add(u),a.b.add(d),a.b.add(p),a.b.add(v),a.b.add(g),a.b.add(b),a.b.add(y),a.b.add(w),a.b.add(x),a.b.add(z),a.b.add(M),a.b.add(Z),a.b.add(k),a.b.add(C),a.b.add(_),a.b.add(A),a.b.add(T),a.b.add(O),a.b.add(H),a.b.add($),a.b.add(E),a.b.add(P),a.b.add(V),a.b.add(R),a.b.add(F),a.b.add(D),a.b.add(Y),a.b.add(X),a.b.add(U),a.b.add(G),a.b.add(K),a.b.add(j),a.b.add(B),a.b.add(I),a.b.add(r),a.b.add(c),a.b.add(i),a.b.add(W),a.b.add(N),a.b.add(L),a.b.add(f),a.b.add(S),a.b.add(h),a.b.add(m),a.a.watch()}}])}));
|
2 |
//# sourceMappingURL=tcx-fa.min.js.map
|
1 |
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("TCXfa",[],e):"object"==typeof exports?exports.TCXfa=e():t.TCXfa=e()}(window,(function(){return function(t){var e={};function n(a){if(e[a])return e[a].exports;var r=e[a]={i:a,l:!1,exports:{}};return t[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(a,r,function(e){return t[e]}.bind(null,r));return a},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=5)}([function(t,e,n){"use strict";(function(t,a){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},a=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(a=a.concat(Object.getOwnPropertySymbols(n).filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable})))),a.forEach((function(e){c(t,e,n[e])}))}return t}function s(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var c,o=t[Symbol.iterator]();!(a=(c=o.next()).done)&&(n.push(c.value),!e||n.length!==e);a=!0);}catch(t){r=!0,i=t}finally{try{a||null==o.return||o.return()}finally{if(r)throw i}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function f(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}n.d(e,"b",(function(){return xe})),n.d(e,"a",(function(){return Me}));var l=function(){},u={},d={},m=null,h={mark:l,measure:l};try{"undefined"!=typeof window&&(u=window),"undefined"!=typeof document&&(d=document),"undefined"!=typeof MutationObserver&&(m=MutationObserver),"undefined"!=typeof performance&&(h=performance)}catch(t){}var p=(u.navigator||{}).userAgent,v=void 0===p?"":p,g=u,b=d,y=m,w=h,x=(g.document,!!b.documentElement&&!!b.head&&"function"==typeof b.addEventListener&&"function"==typeof b.createElement),z=~v.indexOf("MSIE")||~v.indexOf("Trident/"),M=["HTML","HEAD","STYLE","SCRIPT"],k=function(){try{return!0}catch(t){return!1}}(),C={fas:"solid",far:"regular",fal:"light",fad:"duotone",fab:"brands",fa:"solid"},N={solid:"fas",regular:"far",light:"fal",duotone:"fad",brands:"fab"},_=/Font Awesome 5 (Solid|Regular|Light|Duotone|Brands|Free|Pro)/,L={900:"fas",400:"far",normal:"far",300:"fal"},A=[1,2,3,4,5,6,7,8,9,10],S=A.concat([11,12,13,14,15,16,17,18,19,20]),T=["class","data-prefix","data-icon","data-fa-transform","data-fa-mask"],O={GROUP:"group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},H=["xs","sm","lg","fw","ul","li","border","pull-left","pull-right","spin","pulse","rotate-90","rotate-180","rotate-270","flip-horizontal","flip-vertical","flip-both","stack","stack-1x","stack-2x","inverse","layers","layers-text","layers-counter",O.GROUP,O.SWAP_OPACITY,O.PRIMARY,O.SECONDARY].concat(A.map((function(t){return"".concat(t,"x")}))).concat(S.map((function(t){return"w-".concat(t)}))),E=g.FontAwesomeConfig||{};if(b&&"function"==typeof b.querySelector){[["data-family-prefix","familyPrefix"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach((function(t){var e=s(t,2),n=e[0],a=e[1],r=function(t){return""===t||"false"!==t&&("true"===t||t)}(function(t){var e=b.querySelector("script["+t+"]");if(e)return e.getAttribute(t)}(n));null!=r&&(E[a]=r)}))}var I=o({},{familyPrefix:"fa",replacementClass:"svg-inline--fa",autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0},E);I.autoReplaceSvg||(I.observeMutations=!1);var j=o({},I);g.FontAwesomeConfig=j;var P=g||{};P.___FONT_AWESOME___||(P.___FONT_AWESOME___={}),P.___FONT_AWESOME___.styles||(P.___FONT_AWESOME___.styles={}),P.___FONT_AWESOME___.hooks||(P.___FONT_AWESOME___.hooks={}),P.___FONT_AWESOME___.shims||(P.___FONT_AWESOME___.shims=[]);var V=P.___FONT_AWESOME___,R=[],F=!1;function D(t){x&&(F?setTimeout(t,0):R.push(t))}x&&((F=(b.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(b.readyState))||b.addEventListener("DOMContentLoaded",(function t(){b.removeEventListener("DOMContentLoaded",t),F=1,R.map((function(t){return t()}))})));var Y,W=function(){},X=void 0!==t&&void 0!==t.process&&"function"==typeof t.process.emit,B=void 0===a?setTimeout:a,U=[];function q(){for(var t=0;t<U.length;t++)U[t][0](U[t][1]);U=[],Y=!1}function K(t,e){U.push([t,e]),Y||(Y=!0,B(q,0))}function G(t){var e=t.owner,n=e._state,a=e._data,r=t[n],i=t.then;if("function"==typeof r){n="fulfilled";try{a=r(a)}catch(t){Q(i,t)}}Z(i,a)||("fulfilled"===n&&$(i,a),"rejected"===n&&Q(i,a))}function Z(t,e){var n;try{if(t===e)throw new TypeError("A promises callback cannot return that same promise.");if(e&&("function"==typeof e||"object"===r(e))){var a=e.then;if("function"==typeof a)return a.call(e,(function(a){n||(n=!0,e===a?J(t,a):$(t,a))}),(function(e){n||(n=!0,Q(t,e))})),!0}}catch(e){return n||Q(t,e),!0}return!1}function $(t,e){t!==e&&Z(t,e)||J(t,e)}function J(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(et,t))}function Q(t,e){"pending"===t._state&&(t._state="settled",t._data=e,K(nt,t))}function tt(t){t._then=t._then.forEach(G)}function et(t){t._state="fulfilled",tt(t)}function nt(e){e._state="rejected",tt(e),!e._handled&&X&&t.process.emit("unhandledRejection",e._data,e)}function at(e){t.process.emit("rejectionHandled",e)}function rt(t){if("function"!=typeof t)throw new TypeError("Promise resolver "+t+" is not a function");if(this instanceof rt==!1)throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");this._then=[],function(t,e){function n(t){Q(e,t)}try{t((function(t){$(e,t)}),n)}catch(t){n(t)}}(t,this)}rt.prototype={constructor:rt,_state:"pending",_then:null,_data:void 0,_handled:!1,then:function(t,e){var n={owner:this,then:new this.constructor(W),fulfilled:t,rejected:e};return!e&&!t||this._handled||(this._handled=!0,"rejected"===this._state&&X&&K(at,this)),"fulfilled"===this._state||"rejected"===this._state?K(G,n):this._then.push(n),n.then},catch:function(t){return this.then(null,t)}},rt.all=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.all().");return new rt((function(e,n){var a=[],r=0;function i(t){return r++,function(n){a[t]=n,--r||e(a)}}for(var c,o=0;o<t.length;o++)(c=t[o])&&"function"==typeof c.then?c.then(i(o),n):a[o]=c;r||e(a)}))},rt.race=function(t){if(!Array.isArray(t))throw new TypeError("You must pass an array to Promise.race().");return new rt((function(e,n){for(var a,r=0;r<t.length;r++)(a=t[r])&&"function"==typeof a.then?a.then(e,n):e(a)}))},rt.resolve=function(t){return t&&"object"===r(t)&&t.constructor===rt?t:new rt((function(e){e(t)}))},rt.reject=function(t){return new rt((function(e,n){n(t)}))};var it="function"==typeof Promise?Promise:rt,ct=16,ot={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function st(t){if(t&&x){var e=b.createElement("style");e.setAttribute("type","text/css"),e.innerHTML=t;for(var n=b.head.childNodes,a=null,r=n.length-1;r>-1;r--){var i=n[r],c=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(c)>-1&&(a=i)}return b.head.insertBefore(e,a),t}}function ft(){for(var t=12,e="";t-- >0;)e+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return e}function lt(t){for(var e=[],n=(t||[]).length>>>0;n--;)e[n]=t[n];return e}function ut(t){return t.classList?lt(t.classList):(t.getAttribute("class")||"").split(" ").filter((function(t){return t}))}function dt(t,e){var n,a=e.split("-"),r=a[0],i=a.slice(1).join("-");return r!==t||""===i||(n=i,~H.indexOf(n))?null:i}function mt(t){return"".concat(t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function ht(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,": ").concat(t[n],";")}),"")}function pt(t){return t.size!==ot.size||t.x!==ot.x||t.y!==ot.y||t.rotate!==ot.rotate||t.flipX||t.flipY}function vt(t){var e=t.transform,n=t.containerWidth,a=t.iconWidth,r={transform:"translate(".concat(n/2," 256)")},i="translate(".concat(32*e.x,", ").concat(32*e.y,") "),c="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),o="rotate(".concat(e.rotate," 0 0)");return{outer:r,inner:{transform:"".concat(i," ").concat(c," ").concat(o)},path:{transform:"translate(".concat(a/2*-1," -256)")}}}var gt={x:0,y:0,width:"100%",height:"100%"};function bt(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return t.attributes&&(t.attributes.fill||e)&&(t.attributes.fill="black"),t}function yt(t){var e=t.icons,n=e.main,a=e.mask,r=t.prefix,i=t.iconName,c=t.transform,s=t.symbol,f=t.title,l=t.maskId,u=t.titleId,d=t.extra,m=t.watchable,h=void 0!==m&&m,p=a.found?a:n,v=p.width,g=p.height,b="fa-w-".concat(Math.ceil(v/g*16)),y=[j.replacementClass,i?"".concat(j.familyPrefix,"-").concat(i):"",b].filter((function(t){return-1===d.classes.indexOf(t)})).concat(d.classes).join(" "),w={children:[],attributes:o({},d.attributes,{"data-prefix":r,"data-icon":i,class:y,role:d.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(v," ").concat(g)})};h&&(w.attributes["data-fa-i2svg"]=""),f&&w.children.push({tag:"title",attributes:{id:w.attributes["aria-labelledby"]||"title-".concat(u||ft())},children:[f]});var x=o({},w,{prefix:r,iconName:i,main:n,mask:a,maskId:l,transform:c,symbol:s,styles:d.styles}),z=a.found&&n.found?function(t){var e,n=t.children,a=t.attributes,r=t.main,i=t.mask,c=t.maskId,s=t.transform,f=r.width,l=r.icon,u=i.width,d=i.icon,m=vt({transform:s,containerWidth:u,iconWidth:f}),h={tag:"rect",attributes:o({},gt,{fill:"white"})},p=l.children?{children:l.children.map(bt)}:{},v={tag:"g",attributes:o({},m.inner),children:[bt(o({tag:l.tag,attributes:o({},l.attributes,m.path)},p))]},g={tag:"g",attributes:o({},m.outer),children:[v]},b="mask-".concat(c||ft()),y="clip-".concat(c||ft()),w={tag:"mask",attributes:o({},gt,{id:b,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[h,g]},x={tag:"defs",children:[{tag:"clipPath",attributes:{id:y},children:(e=d,"g"===e.tag?e.children:[e])},w]};return n.push(x,{tag:"rect",attributes:o({fill:"currentColor","clip-path":"url(#".concat(y,")"),mask:"url(#".concat(b,")")},gt)}),{children:n,attributes:a}}(x):function(t){var e=t.children,n=t.attributes,a=t.main,r=t.transform,i=ht(t.styles);if(i.length>0&&(n.style=i),pt(r)){var c=vt({transform:r,containerWidth:a.width,iconWidth:a.width});e.push({tag:"g",attributes:o({},c.outer),children:[{tag:"g",attributes:o({},c.inner),children:[{tag:a.icon.tag,children:a.icon.children,attributes:o({},a.icon.attributes,c.path)}]}]})}else e.push(a.icon);return{children:e,attributes:n}}(x),M=z.children,k=z.attributes;return x.children=M,x.attributes=k,s?function(t){var e=t.prefix,n=t.iconName,a=t.children,r=t.attributes,i=t.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:o({},r,{id:!0===i?"".concat(e,"-").concat(j.familyPrefix,"-").concat(n):i}),children:a}]}]}(x):function(t){var e=t.children,n=t.main,a=t.mask,r=t.attributes,i=t.styles,c=t.transform;if(pt(c)&&n.found&&!a.found){var s={x:n.width/n.height/2,y:.5};r.style=ht(o({},i,{"transform-origin":"".concat(s.x+c.x/16,"em ").concat(s.y+c.y/16,"em")}))}return[{tag:"svg",attributes:r,children:e}]}(x)}function wt(t){var e=t.content,n=t.width,a=t.height,r=t.transform,i=t.title,c=t.extra,s=t.watchable,f=void 0!==s&&s,l=o({},c.attributes,i?{title:i}:{},{class:c.classes.join(" ")});f&&(l["data-fa-i2svg"]="");var u=o({},c.styles);pt(r)&&(u.transform=function(t){var e=t.transform,n=t.width,a=void 0===n?16:n,r=t.height,i=void 0===r?16:r,c=t.startCentered,o=void 0!==c&&c,s="";return s+=o&&z?"translate(".concat(e.x/ct-a/2,"em, ").concat(e.y/ct-i/2,"em) "):o?"translate(calc(-50% + ".concat(e.x/ct,"em), calc(-50% + ").concat(e.y/ct,"em)) "):"translate(".concat(e.x/ct,"em, ").concat(e.y/ct,"em) "),s+="scale(".concat(e.size/ct*(e.flipX?-1:1),", ").concat(e.size/ct*(e.flipY?-1:1),") "),s+="rotate(".concat(e.rotate,"deg) ")}({transform:r,startCentered:!0,width:n,height:a}),u["-webkit-transform"]=u.transform);var d=ht(u);d.length>0&&(l.style=d);var m=[];return m.push({tag:"span",attributes:l,children:[e]}),i&&m.push({tag:"span",attributes:{class:"sr-only"},children:[i]}),m}function xt(t){var e=t.content,n=t.title,a=t.extra,r=o({},a.attributes,n?{title:n}:{},{class:a.classes.join(" ")}),i=ht(a.styles);i.length>0&&(r.style=i);var c=[];return c.push({tag:"span",attributes:r,children:[e]}),n&&c.push({tag:"span",attributes:{class:"sr-only"},children:[n]}),c}var zt=function(){},Mt=j.measurePerformance&&w&&w.mark&&w.measure?w:{mark:zt,measure:zt},kt='FA "5.13.0"',Ct=function(t){Mt.mark("".concat(kt," ").concat(t," ends")),Mt.measure("".concat(kt," ").concat(t),"".concat(kt," ").concat(t," begins"),"".concat(kt," ").concat(t," ends"))},Nt=function(t){return Mt.mark("".concat(kt," ").concat(t," begins")),function(){return Ct(t)}},_t=function(t,e,n,a){var r,i,c,o=Object.keys(t),s=o.length,f=void 0!==a?function(t,e){return function(n,a,r,i){return t.call(e,n,a,r,i)}}(e,a):e;for(void 0===n?(r=1,c=t[o[0]]):(r=0,c=n);r<s;r++)c=f(c,t[i=o[r]],i,t);return c};function Lt(t){for(var e="",n=0;n<t.length;n++){e+=("000"+t.charCodeAt(n).toString(16)).slice(-4)}return e}function At(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=n.skipHooks,r=void 0!==a&&a,i=Object.keys(e).reduce((function(t,n){var a=e[n];return!!a.icon?t[a.iconName]=a.icon:t[n]=a,t}),{});"function"!=typeof V.hooks.addPack||r?V.styles[t]=o({},V.styles[t]||{},i):V.hooks.addPack(t,i),"fas"===t&&At("fa",e)}var St=V.styles,Tt=V.shims,Ot={},Ht={},Et={},It=function(){var t=function(t){return _t(St,(function(e,n,a){return e[a]=_t(n,t,{}),e}),{})};Ot=t((function(t,e,n){return e[3]&&(t[e[3]]=n),t})),Ht=t((function(t,e,n){var a=e[2];return t[n]=n,a.forEach((function(e){t[e]=n})),t}));var e="far"in St;Et=_t(Tt,(function(t,n){var a=n[0],r=n[1],i=n[2];return"far"!==r||e||(r="fas"),t[a]={prefix:r,iconName:i},t}),{})};function jt(t,e){return(Ot[t]||{})[e]}It();var Pt=V.styles;function Vt(t){return t.reduce((function(t,e){var n=dt(j.familyPrefix,e);if(Pt[e])t.prefix=e;else if(j.autoFetchSvg&&["fas","far","fal","fad","fab","fa"].indexOf(e)>-1)t.prefix=e;else if(n){var a="fa"===t.prefix?Et[n]||{prefix:null,iconName:null}:{};t.iconName=a.iconName||n,t.prefix=a.prefix||t.prefix}else e!==j.replacementClass&&0!==e.indexOf("fa-w-")&&t.rest.push(e);return t}),{prefix:null,iconName:null,rest:[]})}function Rt(t,e,n){if(t&&t[e]&&t[e][n])return{prefix:e,iconName:n,icon:t[e][n]}}function Ft(t){var e=t.tag,n=t.attributes,a=void 0===n?{}:n,r=t.children,i=void 0===r?[]:r;return"string"==typeof t?mt(t):"<".concat(e," ").concat(function(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,'="').concat(mt(t[n]),'" ')}),"").trim()}(a),">").concat(i.map(Ft).join(""),"</").concat(e,">")}var Dt=function(){};function Yt(t){return"string"==typeof(t.getAttribute?t.getAttribute("data-fa-i2svg"):null)}var Wt={replace:function(t){var e=t[0],n=t[1].map((function(t){return Ft(t)})).join("\n");if(e.parentNode&&e.outerHTML)e.outerHTML=n+(j.keepOriginalSource&&"svg"!==e.tagName.toLowerCase()?"\x3c!-- ".concat(e.outerHTML," --\x3e"):"");else if(e.parentNode){var a=document.createElement("span");e.parentNode.replaceChild(a,e),a.outerHTML=n}},nest:function(t){var e=t[0],n=t[1];if(~ut(e).indexOf(j.replacementClass))return Wt.replace(t);var a=new RegExp("".concat(j.familyPrefix,"-.*"));delete n[0].attributes.style,delete n[0].attributes.id;var r=n[0].attributes.class.split(" ").reduce((function(t,e){return e===j.replacementClass||e.match(a)?t.toSvg.push(e):t.toNode.push(e),t}),{toNode:[],toSvg:[]});n[0].attributes.class=r.toSvg.join(" ");var i=n.map((function(t){return Ft(t)})).join("\n");e.setAttribute("class",r.toNode.join(" ")),e.setAttribute("data-fa-i2svg",""),e.innerHTML=i}};function Xt(t){t()}function Bt(t,e){var n="function"==typeof e?e:Dt;if(0===t.length)n();else{var a=Xt;"async"===j.mutateApproach&&(a=g.requestAnimationFrame||Xt),a((function(){var e=!0===j.autoReplaceSvg?Wt.replace:Wt[j.autoReplaceSvg]||Wt.replace,a=Nt("mutate");t.map(e),a(),n()}))}}var Ut=!1;function qt(){Ut=!1}var Kt=null;function Gt(t){if(y&&j.observeMutations){var e=t.treeCallback,n=t.nodeCallback,a=t.pseudoElementsCallback,r=t.observeMutationsRoot,i=void 0===r?b:r;Kt=new y((function(t){Ut||lt(t).forEach((function(t){if("childList"===t.type&&t.addedNodes.length>0&&!Yt(t.addedNodes[0])&&(j.searchPseudoElements&&a(t.target),e(t.target)),"attributes"===t.type&&t.target.parentNode&&j.searchPseudoElements&&a(t.target.parentNode),"attributes"===t.type&&Yt(t.target)&&~T.indexOf(t.attributeName))if("class"===t.attributeName){var r=Vt(ut(t.target)),i=r.prefix,c=r.iconName;i&&t.target.setAttribute("data-prefix",i),c&&t.target.setAttribute("data-icon",c)}else n(t.target)}))})),x&&Kt.observe(i,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Zt(t){var e,n,a=t.getAttribute("data-prefix"),r=t.getAttribute("data-icon"),i=void 0!==t.innerText?t.innerText.trim():"",c=Vt(ut(t));return a&&r&&(c.prefix=a,c.iconName=r),c.prefix&&i.length>1?c.iconName=(e=c.prefix,n=t.innerText,(Ht[e]||{})[n]):c.prefix&&1===i.length&&(c.iconName=jt(c.prefix,Lt(t.innerText))),c}var $t=function(t){var e={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return t?t.toLowerCase().split(" ").reduce((function(t,e){var n=e.toLowerCase().split("-"),a=n[0],r=n.slice(1).join("-");if(a&&"h"===r)return t.flipX=!0,t;if(a&&"v"===r)return t.flipY=!0,t;if(r=parseFloat(r),isNaN(r))return t;switch(a){case"grow":t.size=t.size+r;break;case"shrink":t.size=t.size-r;break;case"left":t.x=t.x-r;break;case"right":t.x=t.x+r;break;case"up":t.y=t.y-r;break;case"down":t.y=t.y+r;break;case"rotate":t.rotate=t.rotate+r}return t}),e):e};function Jt(t){var e=Zt(t),n=e.iconName,a=e.prefix,r=e.rest,i=function(t){var e=t.getAttribute("style"),n=[];return e&&(n=e.split(";").reduce((function(t,e){var n=e.split(":"),a=n[0],r=n.slice(1);return a&&r.length>0&&(t[a]=r.join(":").trim()),t}),{})),n}(t),c=function(t){return $t(t.getAttribute("data-fa-transform"))}(t),o=function(t){var e=t.getAttribute("data-fa-symbol");return null!==e&&(""===e||e)}(t),s=function(t){var e=lt(t.attributes).reduce((function(t,e){return"class"!==t.name&&"style"!==t.name&&(t[e.name]=e.value),t}),{}),n=t.getAttribute("title"),a=t.getAttribute("data-fa-title-id");return j.autoA11y&&(n?e["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(a||ft()):(e["aria-hidden"]="true",e.focusable="false")),e}(t),f=function(t){var e=t.getAttribute("data-fa-mask");return e?Vt(e.split(" ").map((function(t){return t.trim()}))):{prefix:null,iconName:null,rest:[]}}(t);return{iconName:n,title:t.getAttribute("title"),titleId:t.getAttribute("data-fa-title-id"),prefix:a,transform:c,symbol:o,mask:f,maskId:t.getAttribute("data-fa-mask-id"),extra:{classes:r,styles:i,attributes:s}}}function Qt(t){this.name="MissingIcon",this.message=t||"Icon unavailable",this.stack=(new Error).stack}Qt.prototype=Object.create(Error.prototype),Qt.prototype.constructor=Qt;var te={fill:"currentColor"},ee={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},ne={tag:"path",attributes:o({},te,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})},ae=o({},ee,{attributeName:"opacity"}),re={tag:"g",children:[ne,{tag:"circle",attributes:o({},te,{cx:"256",cy:"364",r:"28"}),children:[{tag:"animate",attributes:o({},ee,{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:o({},ae,{values:"1;0;1;1;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:[{tag:"animate",attributes:o({},ae,{values:"1;0;0;0;0;1;"})}]},{tag:"path",attributes:o({},te,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:o({},ae,{values:"0;0;1;1;0;0;"})}]}]},ie=V.styles;function ce(t){var e=t[0],n=t[1],a=s(t.slice(4),1)[0];return{found:!0,width:e,height:n,icon:Array.isArray(a)?{tag:"g",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.GROUP)},children:[{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.SECONDARY),fill:"currentColor",d:a[0]}},{tag:"path",attributes:{class:"".concat(j.familyPrefix,"-").concat(O.PRIMARY),fill:"currentColor",d:a[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:a}}}}function oe(t,e){return new it((function(n,a){var i={found:!1,width:512,height:512,icon:re};if(t&&e&&ie[e]&&ie[e][t])return n(ce(ie[e][t]));"object"===r(g.FontAwesomeKitConfig)&&"string"==typeof window.FontAwesomeKitConfig.token&&g.FontAwesomeKitConfig.token,t&&e&&!j.showMissingIcons?a(new Qt("Icon is missing for prefix ".concat(e," with icon name ").concat(t))):n(i)}))}var se=V.styles;function fe(t){var e=Jt(t);return~e.extra.classes.indexOf("fa-layers-text")?function(t,e){var n=e.title,a=e.transform,r=e.extra,i=null,c=null;if(z){var o=parseInt(getComputedStyle(t).fontSize,10),s=t.getBoundingClientRect();i=s.width/o,c=s.height/o}return j.autoA11y&&!n&&(r.attributes["aria-hidden"]="true"),it.resolve([t,wt({content:t.innerHTML,width:i,height:c,transform:a,title:n,extra:r,watchable:!0})])}(t,e):function(t,e){var n=e.iconName,a=e.title,r=e.titleId,i=e.prefix,c=e.transform,o=e.symbol,f=e.mask,l=e.maskId,u=e.extra;return new it((function(e,d){it.all([oe(n,i),oe(f.iconName,f.prefix)]).then((function(f){var d=s(f,2),m=d[0],h=d[1];e([t,yt({icons:{main:m,mask:h},prefix:i,iconName:n,transform:c,symbol:o,mask:h,maskId:l,title:a,titleId:r,extra:u,watchable:!0})])}))}))}(t,e)}function le(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(x){var n=b.documentElement.classList,a=function(t){return n.add("".concat("fontawesome-i2svg","-").concat(t))},r=function(t){return n.remove("".concat("fontawesome-i2svg","-").concat(t))},i=j.autoFetchSvg?Object.keys(C):Object.keys(se),c=[".".concat("fa-layers-text",":not([").concat("data-fa-i2svg","])")].concat(i.map((function(t){return".".concat(t,":not([").concat("data-fa-i2svg","])")}))).join(", ");if(0!==c.length){var o=[];try{o=lt(t.querySelectorAll(c))}catch(t){}if(o.length>0){a("pending"),r("complete");var s=Nt("onTree"),f=o.reduce((function(t,e){try{var n=fe(e);n&&t.push(n)}catch(t){k||t instanceof Qt&&console.error(t)}return t}),[]);return new it((function(t,n){it.all(f).then((function(n){Bt(n,(function(){a("active"),a("complete"),r("pending"),"function"==typeof e&&e(),s(),t()}))})).catch((function(){s(),n()}))}))}}}}function ue(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;fe(t).then((function(t){t&&Bt([t],e)}))}function de(t,e){var n="".concat("data-fa-pseudo-element-pending").concat(e.replace(":","-"));return new it((function(a,r){if(null!==t.getAttribute(n))return a();var i=lt(t.children).filter((function(t){return t.getAttribute("data-fa-pseudo-element")===e}))[0],c=g.getComputedStyle(t,e),s=c.getPropertyValue("font-family").match(_),f=c.getPropertyValue("font-weight"),l=c.getPropertyValue("content");if(i&&!s)return t.removeChild(i),a();if(s&&"none"!==l&&""!==l){var u=~["Solid","Regular","Light","Duotone","Brands"].indexOf(s[1])?N[s[1].toLowerCase()]:L[f],d=Lt(3===l.length?l.substr(1,1):l),m=jt(u,d),h=m;if(!m||i&&i.getAttribute("data-prefix")===u&&i.getAttribute("data-icon")===h)a();else{t.setAttribute(n,h),i&&t.removeChild(i);var p={iconName:null,title:null,titleId:null,prefix:null,transform:ot,symbol:!1,mask:null,maskId:null,extra:{classes:[],styles:{},attributes:{}}},v=p.extra;v.attributes["data-fa-pseudo-element"]=e,oe(m,u).then((function(r){var i=yt(o({},p,{icons:{main:r,mask:{prefix:null,iconName:null,rest:[]}},prefix:u,iconName:h,extra:v,watchable:!0})),c=b.createElement("svg");":before"===e?t.insertBefore(c,t.firstChild):t.appendChild(c),c.outerHTML=i.map((function(t){return Ft(t)})).join("\n"),t.removeAttribute(n),a()})).catch(r)}}else a()}))}function me(t){return it.all([de(t,":before"),de(t,":after")])}function he(t){return!(t.parentNode===document.head||~M.indexOf(t.tagName.toUpperCase())||t.getAttribute("data-fa-pseudo-element")||t.parentNode&&"svg"===t.parentNode.tagName)}function pe(t){if(x)return new it((function(e,n){var a=lt(t.querySelectorAll("*")).filter(he).map(me),r=Nt("searchPseudoElements");Ut=!0,it.all(a).then((function(){r(),qt(),e()})).catch((function(){r(),qt(),n()}))}))}function ve(){var t="svg-inline--fa",e=j.familyPrefix,n=j.replacementClass,a='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';if("fa"!==e||n!==t){var r=new RegExp("\\.".concat("fa","\\-"),"g"),i=new RegExp("\\--".concat("fa","\\-"),"g"),c=new RegExp("\\.".concat(t),"g");a=a.replace(r,".".concat(e,"-")).replace(i,"--".concat(e,"-")).replace(c,".".concat(n))}return a}function ge(){j.autoAddCss&&!ze&&(st(ve()),ze=!0)}function be(t,e){return Object.defineProperty(t,"abstract",{get:e}),Object.defineProperty(t,"html",{get:function(){return t.abstract.map((function(t){return Ft(t)}))}}),Object.defineProperty(t,"node",{get:function(){if(x){var e=b.createElement("div");return e.innerHTML=t.html,e.children}}}),t}function ye(t){var e=t.prefix,n=void 0===e?"fa":e,a=t.iconName;if(a)return Rt(xe.definitions,n,a)||Rt(V.styles,n,a)}var we,xe=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.definitions={}}var e,n,a;return e=t,(n=[{key:"add",value:function(){for(var t=this,e=arguments.length,n=new Array(e),a=0;a<e;a++)n[a]=arguments[a];var r=n.reduce(this._pullDefinitions,{});Object.keys(r).forEach((function(e){t.definitions[e]=o({},t.definitions[e]||{},r[e]),At(e,r[e]),It()}))}},{key:"reset",value:function(){this.definitions={}}},{key:"_pullDefinitions",value:function(t,e){var n=e.prefix&&e.iconName&&e.icon?{0:e}:e;return Object.keys(n).map((function(e){var a=n[e],r=a.prefix,i=a.iconName,c=a.icon;t[r]||(t[r]={}),t[r][i]=c})),t}}])&&i(e.prototype,n),a&&i(e,a),t}()),ze=!1,Me={i2svg:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(x){ge();var e=t.node,n=void 0===e?b:e,a=t.callback,r=void 0===a?function(){}:a;return j.searchPseudoElements&&pe(n),le(n,r)}return it.reject("Operation requires a DOM of some kind.")},css:ve,insertCss:function(){ze||(st(ve()),ze=!0)},watch:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=t.observeMutationsRoot;!1===j.autoReplaceSvg&&(j.autoReplaceSvg=!0),j.observeMutations=!0,D((function(){Ne({autoReplaceSvgRoot:e}),Gt({treeCallback:le,nodeCallback:ue,pseudoElementsCallback:pe,observeMutationsRoot:n})}))}},ke=(we=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.symbol,i=void 0!==r&&r,c=e.mask,s=void 0===c?null:c,f=e.maskId,l=void 0===f?null:f,u=e.title,d=void 0===u?null:u,m=e.titleId,h=void 0===m?null:m,p=e.classes,v=void 0===p?[]:p,g=e.attributes,b=void 0===g?{}:g,y=e.styles,w=void 0===y?{}:y;if(t){var x=t.prefix,z=t.iconName,M=t.icon;return be(o({type:"icon"},t),(function(){return ge(),j.autoA11y&&(d?b["aria-labelledby"]="".concat(j.replacementClass,"-title-").concat(h||ft()):(b["aria-hidden"]="true",b.focusable="false")),yt({icons:{main:ce(M),mask:s?ce(s.icon):{found:!1,width:null,height:null,icon:{}}},prefix:x,iconName:z,transform:o({},ot,a),symbol:i,title:d,maskId:l,titleId:h,extra:{attributes:b,styles:w,classes:v}})}))}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=(t||{}).icon?t:ye(t||{}),a=e.mask;return a&&(a=(a||{}).icon?a:ye(a||{})),we(n,o({},e,{mask:a}))}),Ce={noAuto:function(){j.autoReplaceSvg=!1,j.observeMutations=!1,Kt&&Kt.disconnect()},config:j,dom:Me,library:xe,parse:{transform:function(t){return $t(t)}},findIconDefinition:ye,icon:ke,text:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?ot:n,r=e.title,i=void 0===r?null:r,c=e.classes,s=void 0===c?[]:c,l=e.attributes,u=void 0===l?{}:l,d=e.styles,m=void 0===d?{}:d;return be({type:"text",content:t},(function(){return ge(),wt({content:t,transform:o({},ot,a),title:i,extra:{attributes:u,styles:m,classes:["".concat(j.familyPrefix,"-layers-text")].concat(f(s))}})}))},counter:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.title,a=void 0===n?null:n,r=e.classes,i=void 0===r?[]:r,c=e.attributes,o=void 0===c?{}:c,s=e.styles,l=void 0===s?{}:s;return be({type:"counter",content:t},(function(){return ge(),xt({content:t.toString(),title:a,extra:{attributes:o,styles:l,classes:["".concat(j.familyPrefix,"-layers-counter")].concat(f(i))}})}))},layer:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.classes,a=void 0===n?[]:n;return be({type:"layer"},(function(){ge();var e=[];return t((function(t){Array.isArray(t)?t.map((function(t){e=e.concat(t.abstract)})):e=e.concat(t.abstract)})),[{tag:"span",attributes:{class:["".concat(j.familyPrefix,"-layers")].concat(f(a)).join(" ")},children:e}]}))},toHtml:Ft},Ne=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.autoReplaceSvgRoot,n=void 0===e?b:e;(Object.keys(V.styles).length>0||j.autoFetchSvg)&&x&&j.autoReplaceSvg&&Ce.dom.i2svg({node:n})}}).call(this,n(1),n(2).setImmediate)},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(function(t){var a=void 0!==t&&t||"undefined"!=typeof self&&self||window,r=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(r.call(setTimeout,a,arguments),clearTimeout)},e.setInterval=function(){return new i(r.call(setInterval,a,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(a,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(3),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(1))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var a,r,i,c,o,s=1,f={},l=!1,u=t.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(t);d=d&&d.setTimeout?d:t,"[object process]"==={}.toString.call(t.process)?a=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},a=function(t){i.port2.postMessage(t)}):u&&"onreadystatechange"in u.createElement("script")?(r=u.documentElement,a=function(t){var e=u.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,r.removeChild(e),e=null},r.appendChild(e)}):a=function(t){setTimeout(h,0,t)}:(c="setImmediate$"+Math.random()+"$",o=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(c)&&h(+e.data.slice(c.length))},t.addEventListener?t.addEventListener("message",o,!1):t.attachEvent("onmessage",o),a=function(e){t.postMessage(c+e,"*")}),d.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var r={callback:t,args:e};return f[s]=r,a(s),s++},d.clearImmediate=m}function m(t){delete f[t]}function h(t){if(l)setTimeout(h,0,t);else{var e=f[t];if(e){l=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(void 0,n)}}(e)}finally{m(t),l=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(1),n(4))},function(t,e){var n,a,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function o(t){if(n===setTimeout)return setTimeout(t,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(t){n=i}try{a="function"==typeof clearTimeout?clearTimeout:c}catch(t){a=c}}();var s,f=[],l=!1,u=-1;function d(){l&&s&&(l=!1,s.length?f=s.concat(f):u=-1,f.length&&m())}function m(){if(!l){var t=o(d);l=!0;for(var e=f.length;e;){for(s=f,f=[];++u<e;)s&&s[u].run();u=-1,e=f.length}s=null,l=!1,function(t){if(a===clearTimeout)return clearTimeout(t);if((a===c||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function p(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];f.push(new h(t,e)),1!==f.length||l||o(m)},h.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=p,r.addListener=p,r.once=p,r.off=p,r.removeListener=p,r.removeAllListeners=p,r.emit=p,r.prependListener=p,r.prependOnceListener=p,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},function(t,e,n){"use strict";n.r(e),n.d(e,"tcxFaInit",(function(){return J}));var a=n(0),r={prefix:"fas",iconName:"arrow-circle-up",icon:[512,512,[],"f0aa","M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"]},i={prefix:"fas",iconName:"arrows-alt",icon:[512,512,[],"f0b2","M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"]},c={prefix:"fas",iconName:"arrows-alt-h",icon:[512,512,[],"f337","M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"]},o={prefix:"fas",iconName:"bolt",icon:[320,512,[],"f0e7","M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z"]},s={prefix:"fas",iconName:"book",icon:[448,512,[],"f02d","M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"]},f={prefix:"fas",iconName:"border-all",icon:[448,512,[],"f84c","M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z"]},l={prefix:"fas",iconName:"chart-area",icon:[512,512,[],"f1fe","M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"]},u={prefix:"fas",iconName:"check",icon:[512,512,[],"f00c","M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"]},d={prefix:"fas",iconName:"check-circle",icon:[512,512,[],"f058","M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"]},m={prefix:"fas",iconName:"chevron-circle-left",icon:[512,512,[],"f137","M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"]},h={prefix:"fas",iconName:"chevron-circle-right",icon:[512,512,[],"f138","M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"]},p={prefix:"fas",iconName:"clock",icon:[512,512,[],"f017","M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z"]},v={prefix:"fas",iconName:"cloud",icon:[640,512,[],"f0c2","M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"]},g={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"]},b={prefix:"fas",iconName:"code-branch",icon:[384,512,[],"f126","M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"]},y={prefix:"fas",iconName:"cog",icon:[512,512,[],"f013","M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"]},w={prefix:"fas",iconName:"comment-dots",icon:[512,512,[],"f4ad","M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"]},x={prefix:"fas",iconName:"comments",icon:[576,512,[],"f086","M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"]},z={prefix:"fas",iconName:"ellipsis-h",icon:[512,512,[],"f141","M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"]},M={prefix:"fas",iconName:"ellipsis-v",icon:[192,512,[],"f142","M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"]},k={prefix:"fas",iconName:"exclamation",icon:[192,512,[],"f12a","M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"]},C={prefix:"fas",iconName:"eye",icon:[576,512,[],"f06e","M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z"]},N={prefix:"fas",iconName:"file-export",icon:[576,512,[],"f56e","M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z"]},_={prefix:"fas",iconName:"gavel",icon:[512,512,[],"f0e3","M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"]},L={prefix:"fas",iconName:"globe",icon:[496,512,[],"f0ac","M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"]},A={prefix:"fas",iconName:"info-circle",icon:[512,512,[],"f05a","M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"]},S={prefix:"fas",iconName:"keyboard",icon:[576,512,[],"f11c","M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"]},T={prefix:"fas",iconName:"lock",icon:[448,512,[],"f023","M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"]},O={prefix:"fas",iconName:"newspaper",icon:[576,512,[],"f1ea","M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"]},H={prefix:"fas",iconName:"paperclip",icon:[448,512,[],"f0c6","M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"]},E={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},I={prefix:"fas",iconName:"play",icon:[448,512,[],"f04b","M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"]},j={prefix:"fas",iconName:"plus-circle",icon:[512,512,[],"f055","M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"]},P={prefix:"fas",iconName:"question-circle",icon:[512,512,[],"f059","M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"]},V={prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},R={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"]},F={prefix:"fas",iconName:"sliders-h",icon:[512,512,[],"f1de","M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"]},D={prefix:"fas",iconName:"smile",icon:[496,512,[],"f118","M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"]},Y={prefix:"fas",iconName:"tasks",icon:[512,512,[],"f0ae","M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"]},W={prefix:"fas",iconName:"thumbtack",icon:[384,512,[],"f08d","M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"]},X={prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]},B={prefix:"fas",iconName:"trash",icon:[448,512,[],"f1f8","M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"]},U={prefix:"fas",iconName:"university",icon:[512,512,[],"f19c","M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"]},q={prefix:"fas",iconName:"user-astronaut",icon:[448,512,[],"f4fb","M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"]},K={prefix:"fas",iconName:"user-times",icon:[640,512,[],"f235","M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"]},G={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"]},Z={prefix:"far",iconName:"envelope",icon:[512,512,[],"f0e0","M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"]},$={prefix:"far",iconName:"paper-plane",icon:[512,512,[],"f1d8","M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"]};function J(){a.b.add(q),a.b.add(o),a.b.add(s),a.b.add(l),a.b.add(u),a.b.add(d),a.b.add(p),a.b.add(v),a.b.add(g),a.b.add(b),a.b.add(y),a.b.add(w),a.b.add(x),a.b.add(z),a.b.add(M),a.b.add(Z),a.b.add(k),a.b.add(C),a.b.add(_),a.b.add(A),a.b.add(T),a.b.add(O),a.b.add(H),a.b.add($),a.b.add(E),a.b.add(P),a.b.add(V),a.b.add(R),a.b.add(F),a.b.add(D),a.b.add(Y),a.b.add(X),a.b.add(U),a.b.add(G),a.b.add(K),a.b.add(j),a.b.add(B),a.b.add(I),a.b.add(r),a.b.add(c),a.b.add(i),a.b.add(W),a.b.add(N),a.b.add(L),a.b.add(f),a.b.add(S),a.b.add(h),a.b.add(m),a.a.watch({autoReplaceSvgRoot:document.getElementById("wplc_wrapper"),observeMutationsRoot:document.getElementById("wplc_wrapper")})}}])}));
|
2 |
//# sourceMappingURL=tcx-fa.min.js.map
|
js/wplc_initiate.js
CHANGED
@@ -33,7 +33,7 @@ jQuery(window).on("load", function () {
|
|
33 |
function wplc_setup_checkboxes() {
|
34 |
//When a form gets submitted unchecked checkbox inputs don't get submitted , so this function add a hidden input to each checkbox and set up a form submit callback in order to
|
35 |
//disable checkboxes before submission and prevent double submission of checked checkboxes!
|
36 |
-
jQuery.each(jQuery(":checkbox"), function (key, checkbox) {
|
37 |
var checkboxName = jQuery(checkbox).prop("name");
|
38 |
var hiddenInput = jQuery("<input type=\"hidden\" class=\"fieldname\" id=\"" + checkboxName + "_post_value\" name=\"" + checkboxName + "\" value=\"" + (jQuery(checkbox).prop("checked") ? "1" : "0") + "\" />");
|
39 |
jQuery(checkbox).attr("data-original-name", checkboxName);
|
@@ -43,7 +43,7 @@ function wplc_setup_checkboxes() {
|
|
43 |
});
|
44 |
|
45 |
|
46 |
-
jQuery(":checkbox").change(function () {
|
47 |
cb = jQuery(this);
|
48 |
jQuery("input[id='" + cb.data("original-name") + "_post_value']").val(cb.prop('checked') ? "1" : "0");
|
49 |
});
|
33 |
function wplc_setup_checkboxes() {
|
34 |
//When a form gets submitted unchecked checkbox inputs don't get submitted , so this function add a hidden input to each checkbox and set up a form submit callback in order to
|
35 |
//disable checkboxes before submission and prevent double submission of checked checkboxes!
|
36 |
+
jQuery.each(jQuery(":checkbox.wplc_check"), function (key, checkbox) {
|
37 |
var checkboxName = jQuery(checkbox).prop("name");
|
38 |
var hiddenInput = jQuery("<input type=\"hidden\" class=\"fieldname\" id=\"" + checkboxName + "_post_value\" name=\"" + checkboxName + "\" value=\"" + (jQuery(checkbox).prop("checked") ? "1" : "0") + "\" />");
|
39 |
jQuery(checkbox).attr("data-original-name", checkboxName);
|
43 |
});
|
44 |
|
45 |
|
46 |
+
jQuery(":checkbox.wplc_check").change(function () {
|
47 |
cb = jQuery(this);
|
48 |
jQuery("input[id='" + cb.data("original-name") + "_post_value']").val(cb.prop('checked') ? "1" : "0");
|
49 |
});
|
modules/chat_client/chat_client_view.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
<?php } else { ?>
|
16 |
<call-us
|
17 |
style="position: fixed; <?= $position_style ?> justify-content: flex-end;
|
18 |
-
flex-direction: column; display: flex; z-index: 99999;
|
19 |
height:<?= $chat_height ?>;
|
20 |
min-height:450px;
|
21 |
--call-us-form-width:350px;
|
15 |
<?php } else { ?>
|
16 |
<call-us
|
17 |
style="position: fixed; <?= $position_style ?> justify-content: flex-end;
|
18 |
+
flex-direction: column; display: flex; z-index: 99999;
|
19 |
height:<?= $chat_height ?>;
|
20 |
min-height:450px;
|
21 |
--call-us-form-width:350px;
|
modules/google_analytics.php
CHANGED
@@ -22,7 +22,7 @@ function wplc_hook_settings_page_ga_integration() {
|
|
22 |
<label for="wplc_enable_ga"><?php _e("Enable Google Analytics Integration",'wp-live-chat-support'); ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="When enabled we will send custom events to your Google Analytics account for events such as when a user starts a chat, sends an offline message, closes a chat, etc."></i></label>
|
23 |
</td>
|
24 |
<td valign="top">
|
25 |
-
<input type="checkbox" value="1" name="wplc_enable_ga"<?php ($wplc_ga_data['wplc_enable_ga'] ? ' checked' : '');?> />
|
26 |
</td>
|
27 |
</tr>
|
28 |
</tbody>
|
22 |
<label for="wplc_enable_ga"><?php _e("Enable Google Analytics Integration",'wp-live-chat-support'); ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="When enabled we will send custom events to your Google Analytics account for events such as when a user starts a chat, sends an offline message, closes a chat, etc."></i></label>
|
23 |
</td>
|
24 |
<td valign="top">
|
25 |
+
<input type="checkbox" class="wplc_check" value="1" name="wplc_enable_ga"<?php ($wplc_ga_data['wplc_enable_ga'] ? ' checked' : '');?> />
|
26 |
</td>
|
27 |
</tr>
|
28 |
</tbody>
|
modules/settings/settings_partials/business_hours_settings.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<table class='form-table wp-list-table wplc_list_table widefat fixed striped pages'>
|
3 |
<tr>
|
4 |
<td><?= __( "Enable Business Hours", 'wp-live-chat-support' ) ?>
|
5 |
-
<input type='checkbox' name='wplc_bh_enable' id='wplc_bh_enable'
|
6 |
value='1' <?= ( $wplc_settings->wplc_bh_enable ? ' checked' : '' ) ?> /></td>
|
7 |
</tr>
|
8 |
<tr>
|
@@ -17,7 +17,7 @@
|
|
17 |
<tr>
|
18 |
<td style="text-align:left; width:200px; min-width: 200px;">
|
19 |
<label>
|
20 |
-
<input type="checkbox" <?= ( ! empty( $wplc_settings->wplc_bh_days[ $day ] ) ? 'checked' : '' ) ?>
|
21 |
name="wplc_bh_days[<?= $day ?>]"
|
22 |
id="wplc_bh_days[<?= $day ?>]"><?= ucfirst( date_i18n( 'l', gmmktime( 12, 0, 0, 1, 2 + $day, 2000 ) ) ) ?>
|
23 |
</label>
|
2 |
<table class='form-table wp-list-table wplc_list_table widefat fixed striped pages'>
|
3 |
<tr>
|
4 |
<td><?= __( "Enable Business Hours", 'wp-live-chat-support' ) ?>
|
5 |
+
<input type='checkbox' class="wplc_check" name='wplc_bh_enable' id='wplc_bh_enable'
|
6 |
value='1' <?= ( $wplc_settings->wplc_bh_enable ? ' checked' : '' ) ?> /></td>
|
7 |
</tr>
|
8 |
<tr>
|
17 |
<tr>
|
18 |
<td style="text-align:left; width:200px; min-width: 200px;">
|
19 |
<label>
|
20 |
+
<input type="checkbox" class="wplc_check" <?= ( ! empty( $wplc_settings->wplc_bh_days[ $day ] ) ? 'checked' : '' ) ?>
|
21 |
name="wplc_bh_days[<?= $day ?>]"
|
22 |
id="wplc_bh_days[<?= $day ?>]"><?= ucfirst( date_i18n( 'l', gmmktime( 12, 0, 0, 1, 2 + $day, 2000 ) ) ) ?>
|
23 |
</label>
|
modules/settings/settings_partials/chatbox_settings.php
CHANGED
@@ -44,7 +44,7 @@
|
|
44 |
<option value="3" <?= $wplc_settings->wplc_auto_pop_up == 3 ? 'selected' : '' ?>><?= __( "Both on desktop and mobile", 'wp-live-chat-support' ); ?></option>
|
45 |
</select>
|
46 |
<br/>
|
47 |
-
<input type="checkbox" name="wplc_auto_pop_up_online"
|
48 |
value="1"<?= ( $wplc_settings->wplc_auto_pop_up_online ? ' checked' : '' ); ?>/>
|
49 |
<label><?= __( "Pop-up only when agents are online", 'wp-live-chat-support' ); ?></label>
|
50 |
</td>
|
@@ -55,10 +55,10 @@
|
|
55 |
<?= __( "Display for chat message:", 'wp-live-chat-support' ) ?>
|
56 |
</td>
|
57 |
<td>
|
58 |
-
<input type="checkbox" name="wplc_show_name"
|
59 |
value="1"<?= ( $wplc_settings->wplc_show_name ? ' checked' : '' ); ?>/>
|
60 |
<label><?= __( "Name", 'wp-live-chat-support' ); ?></label><br/>
|
61 |
-
<input type="checkbox" name="wplc_show_avatar"
|
62 |
value="1"<?= ( $wplc_settings->wplc_show_avatar ? ' checked' : '' ); ?>/>
|
63 |
<label><?= __( "Avatar", 'wp-live-chat-support' ); ?></label><br/>
|
64 |
</td>
|
@@ -73,7 +73,7 @@
|
|
73 |
<?php if ( $wplc_settings->wplc_channel === 'wp' ) { ?>
|
74 |
<small><em><?= __( "For on premise server chat users this feature is not available due to significant increase in the amount of resources required on your server.", 'wp-live-chat-support' ); ?> </em></small>
|
75 |
<?php } else { ?>
|
76 |
-
<input type="checkbox" name="wplc_typing_enabled"
|
77 |
value="1"<?= ( $wplc_settings->wplc_typing_enabled ? ' checked' : '' ); ?>/>
|
78 |
<?php } ?>
|
79 |
</td>
|
@@ -85,7 +85,7 @@
|
|
85 |
title="<?= __( "By checking this, only users that are logged in will be able to chat with you.", 'wp-live-chat-support' ) ?>"></i>
|
86 |
</td>
|
87 |
<td>
|
88 |
-
<input type="checkbox" name="wplc_display_to_loggedin_only"
|
89 |
value="1"<?= ( $wplc_settings->wplc_display_to_loggedin_only ? ' checked' : '' ); ?>/>
|
90 |
</td>
|
91 |
</tr>
|
@@ -96,7 +96,7 @@
|
|
96 |
title="<?= __( "A user's Name and Email Address will be used by default if they are logged in.", 'wp-live-chat-support' ) ?>"></i>
|
97 |
</td>
|
98 |
<td valign='top'>
|
99 |
-
<input type="checkbox" value="1"
|
100 |
name="wplc_loggedin_user_info"<?= ( $wplc_settings->wplc_loggedin_user_info ? ' checked' : '' ); ?> />
|
101 |
</td>
|
102 |
</tr>
|
@@ -105,10 +105,10 @@
|
|
105 |
<?= __( "Display a timestamp in the chat window:", 'wp-live-chat-support' ) ?>
|
106 |
</td>
|
107 |
<td>
|
108 |
-
<input type="checkbox" name="wplc_show_date"
|
109 |
value="1"<?= ( $wplc_settings->wplc_show_date ? ' checked' : '' ); ?>/>
|
110 |
<label><?= __( "Date", 'wp-live-chat-support' ); ?></label><br/>
|
111 |
-
<input type="checkbox" name="wplc_show_time"
|
112 |
value="1"<?= ( $wplc_settings->wplc_show_time ? ' checked' : '' ); ?>/>
|
113 |
<label><?= __( "Time", 'wp-live-chat-support' ); ?></label>
|
114 |
</td>
|
@@ -123,7 +123,7 @@
|
|
123 |
?>
|
124 |
</td>
|
125 |
<td>
|
126 |
-
<input type="checkbox"
|
127 |
name="wplc_disable_emojis" <?= $wplc_settings->wplc_disable_emojis ? ' checked="checked"' : '' ?>/>
|
128 |
</tr>
|
129 |
<?php
|
@@ -145,7 +145,7 @@
|
|
145 |
value="<?= $k ?>" <?= ( ( $k == $wplc_ringtones->ringtone_selected ) ? 'selected' : '' ) ?>><?= $v ?></option>
|
146 |
<?php } ?>
|
147 |
</select>
|
148 |
-
<button type='button' id='wplc_sample_ring_tone'><i class='fa fa-play'></i></button>
|
149 |
</td>
|
150 |
</tr>
|
151 |
<tr>
|
@@ -265,7 +265,7 @@
|
|
265 |
<td width='300' valign='top'><?= __( "Share files", 'wp-live-chat-support' ) ?>: <i
|
266 |
class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip"
|
267 |
title="<?= __( "Adds file sharing to your chat box!", 'wp-live-chat-support' ) ?>"></i></td>
|
268 |
-
<td><input id='wplc_ux_file_share' name='wplc_ux_file_share'
|
269 |
type='checkbox'<?= ( $wplc_settings->wplc_ux_file_share ? ' checked' : '' ) ?> /></td>
|
270 |
</tr>
|
271 |
<tr>
|
@@ -273,7 +273,7 @@
|
|
273 |
class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip"
|
274 |
title="<?= __( "Allows users to rate the chat experience with an agent.", 'wp-live-chat-support' ) ?>"></i>
|
275 |
</td>
|
276 |
-
<td><input id='wplc_ux_exp_rating' name='wplc_ux_exp_rating'
|
277 |
type='checkbox'<?= ( $wplc_settings->wplc_ux_exp_rating ? ' checked' : '' ) ?> /></td>
|
278 |
</tr>
|
279 |
</tbody>
|
44 |
<option value="3" <?= $wplc_settings->wplc_auto_pop_up == 3 ? 'selected' : '' ?>><?= __( "Both on desktop and mobile", 'wp-live-chat-support' ); ?></option>
|
45 |
</select>
|
46 |
<br/>
|
47 |
+
<input type="checkbox" class="wplc_check" name="wplc_auto_pop_up_online"
|
48 |
value="1"<?= ( $wplc_settings->wplc_auto_pop_up_online ? ' checked' : '' ); ?>/>
|
49 |
<label><?= __( "Pop-up only when agents are online", 'wp-live-chat-support' ); ?></label>
|
50 |
</td>
|
55 |
<?= __( "Display for chat message:", 'wp-live-chat-support' ) ?>
|
56 |
</td>
|
57 |
<td>
|
58 |
+
<input type="checkbox" class="wplc_check" name="wplc_show_name"
|
59 |
value="1"<?= ( $wplc_settings->wplc_show_name ? ' checked' : '' ); ?>/>
|
60 |
<label><?= __( "Name", 'wp-live-chat-support' ); ?></label><br/>
|
61 |
+
<input type="checkbox" class="wplc_check" name="wplc_show_avatar"
|
62 |
value="1"<?= ( $wplc_settings->wplc_show_avatar ? ' checked' : '' ); ?>/>
|
63 |
<label><?= __( "Avatar", 'wp-live-chat-support' ); ?></label><br/>
|
64 |
</td>
|
73 |
<?php if ( $wplc_settings->wplc_channel === 'wp' ) { ?>
|
74 |
<small><em><?= __( "For on premise server chat users this feature is not available due to significant increase in the amount of resources required on your server.", 'wp-live-chat-support' ); ?> </em></small>
|
75 |
<?php } else { ?>
|
76 |
+
<input type="checkbox" class="wplc_check" name="wplc_typing_enabled"
|
77 |
value="1"<?= ( $wplc_settings->wplc_typing_enabled ? ' checked' : '' ); ?>/>
|
78 |
<?php } ?>
|
79 |
</td>
|
85 |
title="<?= __( "By checking this, only users that are logged in will be able to chat with you.", 'wp-live-chat-support' ) ?>"></i>
|
86 |
</td>
|
87 |
<td>
|
88 |
+
<input type="checkbox" class="wplc_check" name="wplc_display_to_loggedin_only"
|
89 |
value="1"<?= ( $wplc_settings->wplc_display_to_loggedin_only ? ' checked' : '' ); ?>/>
|
90 |
</td>
|
91 |
</tr>
|
96 |
title="<?= __( "A user's Name and Email Address will be used by default if they are logged in.", 'wp-live-chat-support' ) ?>"></i>
|
97 |
</td>
|
98 |
<td valign='top'>
|
99 |
+
<input type="checkbox" class="wplc_check" value="1"
|
100 |
name="wplc_loggedin_user_info"<?= ( $wplc_settings->wplc_loggedin_user_info ? ' checked' : '' ); ?> />
|
101 |
</td>
|
102 |
</tr>
|
105 |
<?= __( "Display a timestamp in the chat window:", 'wp-live-chat-support' ) ?>
|
106 |
</td>
|
107 |
<td>
|
108 |
+
<input type="checkbox" class="wplc_check" name="wplc_show_date"
|
109 |
value="1"<?= ( $wplc_settings->wplc_show_date ? ' checked' : '' ); ?>/>
|
110 |
<label><?= __( "Date", 'wp-live-chat-support' ); ?></label><br/>
|
111 |
+
<input type="checkbox" class="wplc_check" name="wplc_show_time"
|
112 |
value="1"<?= ( $wplc_settings->wplc_show_time ? ' checked' : '' ); ?>/>
|
113 |
<label><?= __( "Time", 'wp-live-chat-support' ); ?></label>
|
114 |
</td>
|
123 |
?>
|
124 |
</td>
|
125 |
<td>
|
126 |
+
<input type="checkbox" class="wplc_check"
|
127 |
name="wplc_disable_emojis" <?= $wplc_settings->wplc_disable_emojis ? ' checked="checked"' : '' ?>/>
|
128 |
</tr>
|
129 |
<?php
|
145 |
value="<?= $k ?>" <?= ( ( $k == $wplc_ringtones->ringtone_selected ) ? 'selected' : '' ) ?>><?= $v ?></option>
|
146 |
<?php } ?>
|
147 |
</select>
|
148 |
+
<button type='button' id='wplc_sample_ring_tone'><i class='fa fa-play wplc-fa'></i></button>
|
149 |
</td>
|
150 |
</tr>
|
151 |
<tr>
|
265 |
<td width='300' valign='top'><?= __( "Share files", 'wp-live-chat-support' ) ?>: <i
|
266 |
class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip"
|
267 |
title="<?= __( "Adds file sharing to your chat box!", 'wp-live-chat-support' ) ?>"></i></td>
|
268 |
+
<td><input id='wplc_ux_file_share' class="wplc_check" name='wplc_ux_file_share'
|
269 |
type='checkbox'<?= ( $wplc_settings->wplc_ux_file_share ? ' checked' : '' ) ?> /></td>
|
270 |
</tr>
|
271 |
<tr>
|
273 |
class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip"
|
274 |
title="<?= __( "Allows users to rate the chat experience with an agent.", 'wp-live-chat-support' ) ?>"></i>
|
275 |
</td>
|
276 |
+
<td><input id='wplc_ux_exp_rating' name='wplc_ux_exp_rating' class="wplc_check"
|
277 |
type='checkbox'<?= ( $wplc_settings->wplc_ux_exp_rating ? ' checked' : '' ) ?> /></td>
|
278 |
</tr>
|
279 |
</tbody>
|
modules/settings/settings_partials/departments_settings.php
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
<i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__("Allow user to select a department before starting a chat?", 'wp-live-chat-support'); ?>"></i>
|
23 |
</td>
|
24 |
<td>
|
25 |
-
<input type="checkbox" name="wplc_allow_department_selection" id="wplc_allow_department_selection" value="1" <?=(boolval($wplc_settings->wplc_allow_department_selection) ? "CHECKED" : "") ?> />
|
26 |
</td>
|
27 |
</tr>
|
28 |
|
22 |
<i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__("Allow user to select a department before starting a chat?", 'wp-live-chat-support'); ?>"></i>
|
23 |
</td>
|
24 |
<td>
|
25 |
+
<input type="checkbox" class="wplc_check" name="wplc_allow_department_selection" id="wplc_allow_department_selection" value="1" <?=(boolval($wplc_settings->wplc_allow_department_selection) ? "CHECKED" : "") ?> />
|
26 |
</td>
|
27 |
</tr>
|
28 |
|
modules/settings/settings_partials/encryption_settings.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<td width='300' valign='top'>
|
5 |
<?=__("Enable Encryption", 'wp-live-chat-support') ?>: <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__('All messages will be encrypted when being sent to and from the user and agent.', 'wp-live-chat-support'); ?>"></i></td>
|
6 |
<td>
|
7 |
-
<input type="checkbox" name="wplc_enable_encryption" id="wplc_enable_encryption" value="1"<?= ($wplc_settings->wplc_enable_encryption ? ' checked' : ''); ?>/>
|
8 |
<p class='notice notice-error' style="margin-top:24px">
|
9 |
<?=__('Once enabled, all messages sent will be encrypted. This cannot be undone.', 'wp-live-chat-support'); ?>
|
10 |
</p>
|
4 |
<td width='300' valign='top'>
|
5 |
<?=__("Enable Encryption", 'wp-live-chat-support') ?>: <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__('All messages will be encrypted when being sent to and from the user and agent.', 'wp-live-chat-support'); ?>"></i></td>
|
6 |
<td>
|
7 |
+
<input type="checkbox" class="wplc_check" name="wplc_enable_encryption" id="wplc_enable_encryption" value="1"<?= ($wplc_settings->wplc_enable_encryption ? ' checked' : ''); ?>/>
|
8 |
<p class='notice notice-error' style="margin-top:24px">
|
9 |
<?=__('Once enabled, all messages sent will be encrypted. This cannot be undone.', 'wp-live-chat-support'); ?>
|
10 |
</p>
|
modules/settings/settings_partials/general_settings.php
CHANGED
@@ -83,7 +83,7 @@
|
|
83 |
title="<?= __( " Disabling this will mean that the Chat Box will not be displayed on mobile devices. (Smartphones and Tablets) ", "wplivechat " ) ?>"></i>
|
84 |
</td>
|
85 |
<td valign='top'>
|
86 |
-
<input type="checkbox" value="1"
|
87 |
name="wplc_enabled_on_mobile" <?= ( $wplc_settings->wplc_enabled_on_mobile ? ' checked' : '' ); ?> />
|
88 |
</td>
|
89 |
</tr>
|
@@ -96,7 +96,7 @@
|
|
96 |
title="<?= __( " Disable this to mute the sound that is played when a new visitor arrives ", 'wp-live-chat-support' ) ?>"></i>
|
97 |
</td>
|
98 |
<td valign='top'>
|
99 |
-
<input type="checkbox" value="1"
|
100 |
name="wplc_enable_visitor_sound" <?= ( $wplc_settings->wplc_enable_visitor_sound ? ' checked' : '' ); ?> />
|
101 |
</td>
|
102 |
</tr>
|
@@ -108,7 +108,7 @@
|
|
108 |
title="<?= __( " Disable this to mute the sound that is played when a new chat message is received ", 'wp-live-chat-support' ) ?>"></i>
|
109 |
</td>
|
110 |
<td valign='top'>
|
111 |
-
<input type="checkbox" value="1"
|
112 |
name="wplc_enable_msg_sound" <?= ( $wplc_settings->wplc_enable_msg_sound ? ' checked' : '' ); ?> />
|
113 |
</td>
|
114 |
</tr>
|
@@ -119,7 +119,7 @@
|
|
119 |
title="<?= __( " This will delete all WP Live Chat by 3CX related database entries such as options and chats on uninstall. ", 'wp-live-chat-support' ) ?>"></i>
|
120 |
</td>
|
121 |
<td valign='top'>
|
122 |
-
<input type="checkbox" value="1"
|
123 |
name="wplc_delete_db_on_uninstall" <?= ( $wplc_settings->wplc_delete_db_on_uninstall ? ' checked' : '' ); ?>/>
|
124 |
</td>
|
125 |
</tr>
|
@@ -131,7 +131,7 @@
|
|
131 |
title="<?= __( "Alert me via email as soon as someone wants to chat (while online only)", 'wp-live-chat-support' ); ?>"></i>
|
132 |
</td>
|
133 |
<td>
|
134 |
-
<input id="wplc_pro_chat_notification" name="wplc_pro_chat_notification" type="checkbox"
|
135 |
value="1"<?= ( $wplc_settings->wplc_pro_chat_notification ? ' checked' : '' ) ?> />
|
136 |
</td>
|
137 |
</tr>
|
@@ -155,7 +155,7 @@
|
|
155 |
title="<?= __( 'Checking this will allow you to change your status to Online or Offline on the Live Chat page.', 'wp-live-chat-support' ) . ' ' . __( 'If this option is disabled, agents will be always automatically online.', 'wp-live-chat-support' ); ?>"></i>
|
156 |
</td>
|
157 |
<td valign="top">
|
158 |
-
<input type="checkbox" value="1"
|
159 |
name="wplc_allow_agents_set_status" <?= ( $wplc_settings->wplc_allow_agents_set_status ? ' checked' : '' ); ?> />
|
160 |
</td>
|
161 |
</tr>
|
@@ -170,7 +170,7 @@
|
|
170 |
title="<?= __( " Leaving this unchecked will allow the chat window to display on your home page. ", 'wp-live-chat-support' ) ?>"></i>
|
171 |
</td>
|
172 |
<td valign='top'>
|
173 |
-
<input type="checkbox"
|
174 |
name="wplc_exclude_home" <?= ( $wplc_settings->wplc_exclude_home ? ' checked' : '' ); ?> value='1'/>
|
175 |
</td>
|
176 |
</tr>
|
@@ -181,7 +181,7 @@
|
|
181 |
title="<?= __( " Leaving this unchecked will allow the chat window to display on your archive pages. ", 'wp-live-chat-support' ) ?>"></i>
|
182 |
</td>
|
183 |
<td valign='top'>
|
184 |
-
<input type="checkbox"
|
185 |
name="wplc_exclude_archive" <?= ( $wplc_settings->wplc_exclude_archive ? ' checked' : '' ); ?>
|
186 |
value='1'/>
|
187 |
</td>
|
@@ -257,7 +257,7 @@
|
|
257 |
<?= __( "Detect Visitors Country", 'wp-live-chat-support' ); ?>:
|
258 |
</td>
|
259 |
<td valign='top'>
|
260 |
-
<input type="checkbox" value="1"
|
261 |
name="wplc_use_geolocalization" <?= ( $wplc_settings->wplc_use_geolocalization ? ' checked' : '' ) ?> />
|
262 |
(
|
263 |
<?= sprintf( __( "This feature requires the use of the GeoIP Detection plugin. Install it by going %s", 'wp-live-chat-support' ), '<a style="text-decoration: underline" href="https://wordpress.org/plugins/geoip-detect/" target="_blank">' . __( 'here', 'wp-live-chat-support' ) . '</a>' ); ?>
|
@@ -276,7 +276,7 @@
|
|
276 |
title="<?= __( " Enabling this will allow you to record the voice during the chat and send it to visitor once you hold on CTRL + SPACEBAR in main chat window ", 'wp-live-chat-support' ) ?>"></i>
|
277 |
</td>
|
278 |
<td valign='top'>
|
279 |
-
<input type="checkbox" value="1"
|
280 |
name="wplc_enable_voice_notes_on_admin" <?= ( $wplc_settings->wplc_enable_voice_notes_on_admin ? ' checked' : '' ) ?> />
|
281 |
</td>
|
282 |
</tr>
|
@@ -287,7 +287,7 @@
|
|
287 |
title="<?= __( " Enabling this will allow the visitors to record the voice during the chat and send it to agent once they hold on CTRL + SPACEBAR ", 'wp-live-chat-support' ) ?>"></i>
|
288 |
</td>
|
289 |
<td valign='top'>
|
290 |
-
<input type="checkbox" value="1"
|
291 |
name="wplc_enable_voice_notes_on_visitor" <?= ( $wplc_settings->wplc_enable_voice_notes_on_visitor ? ' checked' : '' ) ?> />
|
292 |
</td>
|
293 |
</tr>
|
@@ -303,7 +303,7 @@
|
|
303 |
title="<?= __( "Checking this will display a 'Powered by WP Live Chat by 3CX' caption at the bottom of your chatbox.", 'wp-live-chat-support' ); ?>"></i>
|
304 |
</td>
|
305 |
<td>
|
306 |
-
<input type="checkbox" value="1"
|
307 |
name="wplc_powered_by" <?= ( $wplc_settings->wplc_powered_by && $wplc_settings->wplc_powered_by == 1 ) ? "checked" : "" ?> />
|
308 |
</td>
|
309 |
</tr>
|
@@ -315,7 +315,7 @@
|
|
315 |
<tr>
|
316 |
<td width='400' valign='top'><?= __( "Enable chat transcripts:", 'wp-live-chat-support' ) ?></td>
|
317 |
<td>
|
318 |
-
<input type="checkbox" value="1"
|
319 |
name="wplc_enable_transcripts" <?= ( $wplc_settings->wplc_enable_transcripts ? ' checked' : '' ) ?>/>
|
320 |
</td>
|
321 |
</tr>
|
@@ -332,7 +332,7 @@
|
|
332 |
<tr>
|
333 |
<td width='400' valign='top'><?= __( "Send transcripts when chat ends:", 'wp-live-chat-support' ) ?></td>
|
334 |
<td>
|
335 |
-
<input type="checkbox" value="1"
|
336 |
name="wplc_send_transcripts_when_chat_ends" <?= ( $wplc_settings->wplc_send_transcripts_when_chat_ends ? ' checked' : '' ) ?> />
|
337 |
</td>
|
338 |
</tr>
|
83 |
title="<?= __( " Disabling this will mean that the Chat Box will not be displayed on mobile devices. (Smartphones and Tablets) ", "wplivechat " ) ?>"></i>
|
84 |
</td>
|
85 |
<td valign='top'>
|
86 |
+
<input type="checkbox" value="1" class="wplc_check"
|
87 |
name="wplc_enabled_on_mobile" <?= ( $wplc_settings->wplc_enabled_on_mobile ? ' checked' : '' ); ?> />
|
88 |
</td>
|
89 |
</tr>
|
96 |
title="<?= __( " Disable this to mute the sound that is played when a new visitor arrives ", 'wp-live-chat-support' ) ?>"></i>
|
97 |
</td>
|
98 |
<td valign='top'>
|
99 |
+
<input type="checkbox" value="1" class="wplc_check"
|
100 |
name="wplc_enable_visitor_sound" <?= ( $wplc_settings->wplc_enable_visitor_sound ? ' checked' : '' ); ?> />
|
101 |
</td>
|
102 |
</tr>
|
108 |
title="<?= __( " Disable this to mute the sound that is played when a new chat message is received ", 'wp-live-chat-support' ) ?>"></i>
|
109 |
</td>
|
110 |
<td valign='top'>
|
111 |
+
<input type="checkbox" value="1" class="wplc_check"
|
112 |
name="wplc_enable_msg_sound" <?= ( $wplc_settings->wplc_enable_msg_sound ? ' checked' : '' ); ?> />
|
113 |
</td>
|
114 |
</tr>
|
119 |
title="<?= __( " This will delete all WP Live Chat by 3CX related database entries such as options and chats on uninstall. ", 'wp-live-chat-support' ) ?>"></i>
|
120 |
</td>
|
121 |
<td valign='top'>
|
122 |
+
<input type="checkbox" value="1" class="wplc_check"
|
123 |
name="wplc_delete_db_on_uninstall" <?= ( $wplc_settings->wplc_delete_db_on_uninstall ? ' checked' : '' ); ?>/>
|
124 |
</td>
|
125 |
</tr>
|
131 |
title="<?= __( "Alert me via email as soon as someone wants to chat (while online only)", 'wp-live-chat-support' ); ?>"></i>
|
132 |
</td>
|
133 |
<td>
|
134 |
+
<input id="wplc_pro_chat_notification" name="wplc_pro_chat_notification" type="checkbox" class="wplc_check"
|
135 |
value="1"<?= ( $wplc_settings->wplc_pro_chat_notification ? ' checked' : '' ) ?> />
|
136 |
</td>
|
137 |
</tr>
|
155 |
title="<?= __( 'Checking this will allow you to change your status to Online or Offline on the Live Chat page.', 'wp-live-chat-support' ) . ' ' . __( 'If this option is disabled, agents will be always automatically online.', 'wp-live-chat-support' ); ?>"></i>
|
156 |
</td>
|
157 |
<td valign="top">
|
158 |
+
<input type="checkbox" value="1" class="wplc_check"
|
159 |
name="wplc_allow_agents_set_status" <?= ( $wplc_settings->wplc_allow_agents_set_status ? ' checked' : '' ); ?> />
|
160 |
</td>
|
161 |
</tr>
|
170 |
title="<?= __( " Leaving this unchecked will allow the chat window to display on your home page. ", 'wp-live-chat-support' ) ?>"></i>
|
171 |
</td>
|
172 |
<td valign='top'>
|
173 |
+
<input type="checkbox" class="wplc_check"
|
174 |
name="wplc_exclude_home" <?= ( $wplc_settings->wplc_exclude_home ? ' checked' : '' ); ?> value='1'/>
|
175 |
</td>
|
176 |
</tr>
|
181 |
title="<?= __( " Leaving this unchecked will allow the chat window to display on your archive pages. ", 'wp-live-chat-support' ) ?>"></i>
|
182 |
</td>
|
183 |
<td valign='top'>
|
184 |
+
<input type="checkbox" class="wplc_check"
|
185 |
name="wplc_exclude_archive" <?= ( $wplc_settings->wplc_exclude_archive ? ' checked' : '' ); ?>
|
186 |
value='1'/>
|
187 |
</td>
|
257 |
<?= __( "Detect Visitors Country", 'wp-live-chat-support' ); ?>:
|
258 |
</td>
|
259 |
<td valign='top'>
|
260 |
+
<input type="checkbox" value="1" class="wplc_check"
|
261 |
name="wplc_use_geolocalization" <?= ( $wplc_settings->wplc_use_geolocalization ? ' checked' : '' ) ?> />
|
262 |
(
|
263 |
<?= sprintf( __( "This feature requires the use of the GeoIP Detection plugin. Install it by going %s", 'wp-live-chat-support' ), '<a style="text-decoration: underline" href="https://wordpress.org/plugins/geoip-detect/" target="_blank">' . __( 'here', 'wp-live-chat-support' ) . '</a>' ); ?>
|
276 |
title="<?= __( " Enabling this will allow you to record the voice during the chat and send it to visitor once you hold on CTRL + SPACEBAR in main chat window ", 'wp-live-chat-support' ) ?>"></i>
|
277 |
</td>
|
278 |
<td valign='top'>
|
279 |
+
<input type="checkbox" value="1" class="wplc_check"
|
280 |
name="wplc_enable_voice_notes_on_admin" <?= ( $wplc_settings->wplc_enable_voice_notes_on_admin ? ' checked' : '' ) ?> />
|
281 |
</td>
|
282 |
</tr>
|
287 |
title="<?= __( " Enabling this will allow the visitors to record the voice during the chat and send it to agent once they hold on CTRL + SPACEBAR ", 'wp-live-chat-support' ) ?>"></i>
|
288 |
</td>
|
289 |
<td valign='top'>
|
290 |
+
<input type="checkbox" value="1" class="wplc_check"
|
291 |
name="wplc_enable_voice_notes_on_visitor" <?= ( $wplc_settings->wplc_enable_voice_notes_on_visitor ? ' checked' : '' ) ?> />
|
292 |
</td>
|
293 |
</tr>
|
303 |
title="<?= __( "Checking this will display a 'Powered by WP Live Chat by 3CX' caption at the bottom of your chatbox.", 'wp-live-chat-support' ); ?>"></i>
|
304 |
</td>
|
305 |
<td>
|
306 |
+
<input type="checkbox" value="1" class="wplc_check"
|
307 |
name="wplc_powered_by" <?= ( $wplc_settings->wplc_powered_by && $wplc_settings->wplc_powered_by == 1 ) ? "checked" : "" ?> />
|
308 |
</td>
|
309 |
</tr>
|
315 |
<tr>
|
316 |
<td width='400' valign='top'><?= __( "Enable chat transcripts:", 'wp-live-chat-support' ) ?></td>
|
317 |
<td>
|
318 |
+
<input type="checkbox" value="1" class="wplc_check"
|
319 |
name="wplc_enable_transcripts" <?= ( $wplc_settings->wplc_enable_transcripts ? ' checked' : '' ) ?>/>
|
320 |
</td>
|
321 |
</tr>
|
332 |
<tr>
|
333 |
<td width='400' valign='top'><?= __( "Send transcripts when chat ends:", 'wp-live-chat-support' ) ?></td>
|
334 |
<td>
|
335 |
+
<input type="checkbox" value="1" class="wplc_check"
|
336 |
name="wplc_send_transcripts_when_chat_ends" <?= ( $wplc_settings->wplc_send_transcripts_when_chat_ends ? ' checked' : '' ) ?> />
|
337 |
</td>
|
338 |
</tr>
|
modules/settings/settings_partials/gutenberg_settings.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<td width='300' valign='top'><?=__('Enable Gutenberg Blocks', 'wp-live-chat-support') ?>:</td>
|
6 |
|
7 |
<td>
|
8 |
-
<input type="checkbox" id="activate_block" name="wplc_gutenberg_settings[enable]" <?= $gutenberg['enable'] == 1 ? 'checked' : '' ?>/>
|
9 |
</td>
|
10 |
</tr>
|
11 |
|
@@ -41,7 +41,7 @@
|
|
41 |
|
42 |
<tr>
|
43 |
<td width='300' valign='top'><?=__('Use icon', 'wp-live-chat-support') ?>:<td>
|
44 |
-
<input type="checkbox" id="wplc_gutenberg_enable_icon" name="wplc_gutenberg_settings[enable_icon]" <?= $gutenberg['enable_icon'] == 1 ? 'checked' : '' ?>/>
|
45 |
</td>
|
46 |
</tr>
|
47 |
|
5 |
<td width='300' valign='top'><?=__('Enable Gutenberg Blocks', 'wp-live-chat-support') ?>:</td>
|
6 |
|
7 |
<td>
|
8 |
+
<input type="checkbox" class="wplc_check" id="activate_block" name="wplc_gutenberg_settings[enable]" <?= $gutenberg['enable'] == 1 ? 'checked' : '' ?>/>
|
9 |
</td>
|
10 |
</tr>
|
11 |
|
41 |
|
42 |
<tr>
|
43 |
<td width='300' valign='top'><?=__('Use icon', 'wp-live-chat-support') ?>:<td>
|
44 |
+
<input type="checkbox" id="wplc_gutenberg_enable_icon" class="wplc_check" name="wplc_gutenberg_settings[enable_icon]" <?= $gutenberg['enable_icon'] == 1 ? 'checked' : '' ?>/>
|
45 |
</td>
|
46 |
</tr>
|
47 |
|
modules/settings/settings_partials/offline_messages_settings.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
<i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__("The chat window will be hidden when it is offline. Users will not be able to send offline messages to you", 'wp-live-chat-support') ?>"></i>
|
7 |
</td>
|
8 |
<td>
|
9 |
-
<input type="checkbox" name="wplc_hide_when_offline" value="1" <?=($wplc_settings->wplc_hide_when_offline ? ' checked' : '');?>/>
|
10 |
</td>
|
11 |
</tr>
|
12 |
<tr>
|
@@ -64,7 +64,7 @@
|
|
64 |
<tr>
|
65 |
<td width="300" valign="top"><?=__("Auto-respond to visitor", 'wp-live-chat-support') ?>: <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__("Send your visitors an email as soon as they send you an offline message", 'wp-live-chat-support') ?>"></i></td>
|
66 |
<td>
|
67 |
-
<input id="wplc_ar_enable" name="wplc_autorespond_settings[wplc_ar_enable]" type="checkbox" value="1" <?= $wplc_settings->wplc_autorespond_settings['wplc_ar_enable'] ? "checked":"" ?> /> <br />
|
68 |
</td>
|
69 |
</tr>
|
70 |
<tr>
|
6 |
<i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__("The chat window will be hidden when it is offline. Users will not be able to send offline messages to you", 'wp-live-chat-support') ?>"></i>
|
7 |
</td>
|
8 |
<td>
|
9 |
+
<input type="checkbox" class="wplc_check" name="wplc_hide_when_offline" value="1" <?=($wplc_settings->wplc_hide_when_offline ? ' checked' : '');?>/>
|
10 |
</td>
|
11 |
</tr>
|
12 |
<tr>
|
64 |
<tr>
|
65 |
<td width="300" valign="top"><?=__("Auto-respond to visitor", 'wp-live-chat-support') ?>: <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__("Send your visitors an email as soon as they send you an offline message", 'wp-live-chat-support') ?>"></i></td>
|
66 |
<td>
|
67 |
+
<input id="wplc_ar_enable" name="wplc_autorespond_settings[wplc_ar_enable]" type="checkbox" class="wplc_check" value="1" <?= $wplc_settings->wplc_autorespond_settings['wplc_ar_enable'] ? "checked":"" ?> /> <br />
|
68 |
</td>
|
69 |
</tr>
|
70 |
<tr>
|
modules/settings/settings_partials/privacy_settings.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
<label for="wplc_gdpr_enabled"><?=__("Enable privacy controls", 'wp-live-chat-support'); ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__('Disabling will disable all GDPR related options, this is not advised.', 'wp-live-chat-support'); ?>"></i></label>
|
7 |
</td>
|
8 |
<td>
|
9 |
-
<input type="checkbox" name="wplc_gdpr_enabled" value="1" <?= (isset($wplc_settings->wplc_gdpr_enabled) && $wplc_settings->wplc_gdpr_enabled == '1' ? 'checked' : ''); ?>>
|
10 |
<a href="https://www.eugdpr.org/" target="_blank"><?=__("Importance of GDPR Compliance", 'wp-live-chat-support'); ?></a>
|
11 |
</td>
|
12 |
</tr>
|
@@ -63,7 +63,7 @@
|
|
63 |
</label>
|
64 |
</td>
|
65 |
<td>
|
66 |
-
<p><input type="checkbox" name="wplc_gdpr_custom" value="1" <?= (isset($wplc_settings->wplc_gdpr_custom) && $wplc_settings->wplc_gdpr_custom == '1' ? 'checked' : ''); ?>> </p>
|
67 |
|
68 |
<textarea cols="45" rows="5" maxlength="1000" name="wplc_gdpr_notice_text"><?= esc_textarea($wplc_settings->wplc_gdpr_notice_text); ?></textarea>
|
69 |
</td>
|
6 |
<label for="wplc_gdpr_enabled"><?=__("Enable privacy controls", 'wp-live-chat-support'); ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?=__('Disabling will disable all GDPR related options, this is not advised.', 'wp-live-chat-support'); ?>"></i></label>
|
7 |
</td>
|
8 |
<td>
|
9 |
+
<input type="checkbox" class="wplc_check" name="wplc_gdpr_enabled" value="1" <?= (isset($wplc_settings->wplc_gdpr_enabled) && $wplc_settings->wplc_gdpr_enabled == '1' ? 'checked' : ''); ?>>
|
10 |
<a href="https://www.eugdpr.org/" target="_blank"><?=__("Importance of GDPR Compliance", 'wp-live-chat-support'); ?></a>
|
11 |
</td>
|
12 |
</tr>
|
63 |
</label>
|
64 |
</td>
|
65 |
<td>
|
66 |
+
<p><input type="checkbox" class="wplc_check" name="wplc_gdpr_custom" value="1" <?= (isset($wplc_settings->wplc_gdpr_custom) && $wplc_settings->wplc_gdpr_custom == '1' ? 'checked' : ''); ?>> </p>
|
67 |
|
68 |
<textarea cols="45" rows="5" maxlength="1000" name="wplc_gdpr_notice_text"><?= esc_textarea($wplc_settings->wplc_gdpr_notice_text); ?></textarea>
|
69 |
</td>
|
modules/settings/settings_partials/styling_settings.php
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<tr>
|
26 |
<td width="200" valign="top"><?= __( "Use localization plugin", 'wp-live-chat-support' ) ?></td>
|
27 |
<td>
|
28 |
-
<input type="checkbox" name="wplc_using_localization_plugin" id="wplc_using_localization_plugin"
|
29 |
value="1"<?= ( $wplc_settings->wplc_using_localization_plugin ? ' checked' : '' ); ?> />
|
30 |
<br/><small><?= sprintf( __( "Enable this if you are using a localization plugin. Should you wish to change the below strings with this option enabled, please visit %sthe documentation%s", 'wp-live-chat-support' ), "<a href='https://www.3cx.com/wp-live-chat/docs/translation/' target='_BLANK'>", '</a>' ); ?></small>
|
31 |
</td>
|
25 |
<tr>
|
26 |
<td width="200" valign="top"><?= __( "Use localization plugin", 'wp-live-chat-support' ) ?></td>
|
27 |
<td>
|
28 |
+
<input type="checkbox" class="wplc_check" name="wplc_using_localization_plugin" id="wplc_using_localization_plugin"
|
29 |
value="1"<?= ( $wplc_settings->wplc_using_localization_plugin ? ' checked' : '' ); ?> />
|
30 |
<br/><small><?= sprintf( __( "Enable this if you are using a localization plugin. Should you wish to change the below strings with this option enabled, please visit %sthe documentation%s", 'wp-live-chat-support' ), "<a href='https://www.3cx.com/wp-live-chat/docs/translation/' target='_BLANK'>", '</a>' ); ?></small>
|
31 |
</td>
|
modules/triggers/manage_trigger_view.php
CHANGED
@@ -77,14 +77,14 @@
|
|
77 |
|
78 |
<tr>
|
79 |
<td style="width:150px"><?= __( "Replace Content", 'wp-live-chat-support' ) ?>:</td>
|
80 |
-
<td><input type='checkbox'
|
81 |
name='wplc_trigger_replace_content' <?= $trigger->show_content == 1 ? "checked" : "" ?>>
|
82 |
</td>
|
83 |
</tr>
|
84 |
|
85 |
<tr>
|
86 |
<td style="width:150px"><?= __( "Enable Trigger", 'wp-live-chat-support' ) ?>:</td>
|
87 |
-
<td><input type='checkbox' name='wplc_trigger_enable' <?= $trigger->status == 1 ? "checked" : "" ?>>
|
88 |
</td>
|
89 |
</tr>
|
90 |
|
77 |
|
78 |
<tr>
|
79 |
<td style="width:150px"><?= __( "Replace Content", 'wp-live-chat-support' ) ?>:</td>
|
80 |
+
<td><input type='checkbox' class="wplc_check"
|
81 |
name='wplc_trigger_replace_content' <?= $trigger->show_content == 1 ? "checked" : "" ?>>
|
82 |
</td>
|
83 |
</tr>
|
84 |
|
85 |
<tr>
|
86 |
<td style="width:150px"><?= __( "Enable Trigger", 'wp-live-chat-support' ) ?>:</td>
|
87 |
+
<td><input type='checkbox' class="wplc_check" name='wplc_trigger_enable' <?= $trigger->status == 1 ? "checked" : "" ?>>
|
88 |
</td>
|
89 |
</tr>
|
90 |
|
modules/user_settings/user_settings_view.php
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
</th>
|
21 |
<td>
|
22 |
<label for="wplc_ma_agent">
|
23 |
-
<input name="wplc_ma_agent" type="checkbox" id="wplc_ma_agent" value="1" <?=$is_user_agent ? "checked='checked'" : "" ?>>
|
24 |
<?=__("Make this user a chat agent",'wp-live-chat-support')?>
|
25 |
</label>
|
26 |
</td>
|
20 |
</th>
|
21 |
<td>
|
22 |
<label for="wplc_ma_agent">
|
23 |
+
<input name="wplc_ma_agent" type="checkbox" class="wplc_check" id="wplc_ma_agent" value="1" <?=$is_user_agent ? "checked='checked'" : "" ?>>
|
24 |
<?=__("Make this user a chat agent",'wp-live-chat-support')?>
|
25 |
</label>
|
26 |
</td>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: live chat, live support, chat plugin, live help, wordpress live chat, chat
|
|
4 |
Requires at least: 5.3
|
5 |
Tested up to: 5.4.2
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 9.0.
|
8 |
License: GPLv2
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Text Domain: wp-live-chat-support
|
@@ -158,6 +158,10 @@ If the live chat box still does not appear on your website, please go through th
|
|
158 |
Huge update with over 300 changes that include: Bugfixes, Vulnerability Fixes & Plugin Security, Plugin Optimization & Rebranding Updates. We suggest you remove any existing installations of this plugin and install 8.1.x fresh.
|
159 |
|
160 |
== Changelog ==
|
|
|
|
|
|
|
|
|
161 |
|
162 |
= 9.0.2 - 2020-07-17 =
|
163 |
* Fix validation error texts.
|
4 |
Requires at least: 5.3
|
5 |
Tested up to: 5.4.2
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 9.0.3
|
8 |
License: GPLv2
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Text Domain: wp-live-chat-support
|
158 |
Huge update with over 300 changes that include: Bugfixes, Vulnerability Fixes & Plugin Security, Plugin Optimization & Rebranding Updates. We suggest you remove any existing installations of this plugin and install 8.1.x fresh.
|
159 |
|
160 |
== Changelog ==
|
161 |
+
= 9.0.3 - 2020-07-20 =
|
162 |
+
* Fix font-awesome icons conflict with other themes and/or plugins.
|
163 |
+
* Fix bug which creates interferences in post pages with checkboxes.
|
164 |
+
* Fix broken font-family on chat client.
|
165 |
|
166 |
= 9.0.2 - 2020-07-17 =
|
167 |
* Fix validation error texts.
|
wp-live-chat-support.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP-Live Chat by 3CX
|
4 |
Plugin URI: https://www.3cx.com/wp-live-chat/
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP-Live Chat by 3CX.
|
6 |
-
Version: 9.0.
|
7 |
Author: 3CX
|
8 |
Author URI: https://www.3cx.com/wp-live-chat/
|
9 |
Domain Path: /languages
|
3 |
Plugin Name: WP-Live Chat by 3CX
|
4 |
Plugin URI: https://www.3cx.com/wp-live-chat/
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP-Live Chat by 3CX.
|
6 |
+
Version: 9.0.3
|
7 |
Author: 3CX
|
8 |
Author URI: https://www.3cx.com/wp-live-chat/
|
9 |
Domain Path: /languages
|