\r\n I'm an enthusiastic software engineer, inventor and artist.\r\n This is a portfolio of some of my software, projects, articles, photography, music, and videos
The small circle inside it is the target state and hint
\r\n
Empty target means it should be off
\r\n
Filled target means it should be on
\r\n
No target means it doesn't matter what state it's in
\r\n
Green target border means it's final state is the opposite of whatever you put there, or somewhere else
\r\n
Blue target border means it only turns on when 2 other spots are on
\r\n
Red target border means it only turns on when 2 other spots are off
\r\n
\r\n >\r\n }\r\n >\r\n );\r\n}\r\n\r\nexport default BitRiddleIndex;","import 'styles/App.scss';\r\n\r\nimport React from 'react';\r\nimport { BrowserRouter, Routes, Route, } from \"react-router-dom\";\r\nimport HomeIndex from './home/Index';\r\nimport AboutIndex from './about/Index';\r\nimport GlobalContextWrapper from 'components/GlobalContext';\r\nimport Menu from './Menu';\r\nimport { Container } from 'react-bootstrap';\r\nimport BottomMenu from './BottomMenu';\r\nimport StarField from 'components/StarField';\r\nimport BitRiddleIndex from './blitriddle/Index';\r\n//import PointilizerIndex from './pointilizer/Index';\r\n//import PointilizerCustom from './pointilizer/Custom';\r\n\r\nconst App = () => {\r\n\treturn (\r\n\t\t<>\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t>\r\n\t);\r\n}\r\n\r\nconst AppContent: React.FC = () => {\r\n\treturn (\r\n\t\t<>\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t} />\r\n\t\t\t\t\t\t} />\r\n\t\t\t\t\t\t{/*} />*/}\r\n\t\t\t\t\t\t{/*} />*/}\r\n\t\t\t\t\t\t{/*} />*/}\r\n\t\t\t\t\t\t} />\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t>\r\n\t)\r\n}\r\n\r\nexport default App;","// This optional code is used to register a service worker.\n// register() is not called by default.\n\n// This lets the app load faster on subsequent visits in production, and gives\n// it offline capabilities. However, it also means that developers (and users)\n// will only see deployed updates on subsequent visits to a page, after all the\n// existing tabs open on the page have been closed, since previously cached\n// resources are updated in the background.\n\n// To learn more about the benefits of this model and instructions on how to\n// opt-in, read https://bit.ly/CRA-PWA\n\nconst isLocalhost = Boolean(\n window.location.hostname === 'localhost' ||\n // [::1] is the IPv6 localhost address.\n window.location.hostname === '[::1]' ||\n // 127.0.0.0/8 are considered localhost for IPv4.\n window.location.hostname.match(\n /^127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/\n )\n);\n\ntype Config = {\n onSuccess?: (registration: ServiceWorkerRegistration) => void;\n onUpdate?: (registration: ServiceWorkerRegistration) => void;\n};\n\nexport function register(config?: Config) {\n if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {\n // The URL constructor is available in all browsers that support SW.\n const publicUrl = new URL(\n process.env.PUBLIC_URL,\n window.location.href\n );\n if (publicUrl.origin !== window.location.origin) {\n // Our service worker won't work if PUBLIC_URL is on a different origin\n // from what our page is served on. This might happen if a CDN is used to\n // serve assets; see https://github.com/facebook/create-react-app/issues/2374\n return;\n }\n\n window.addEventListener('load', () => {\n const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;\n\n if (isLocalhost) {\n // This is running on localhost. Let's check if a service worker still exists or not.\n checkValidServiceWorker(swUrl, config);\n\n // Add some additional logging to localhost, pointing developers to the\n // service worker/PWA documentation.\n navigator.serviceWorker.ready.then(() => {\n console.log(\n 'This web app is being served cache-first by a service ' +\n 'worker. To learn more, visit https://bit.ly/CRA-PWA'\n );\n });\n } else {\n // Is not localhost. Just register service worker\n registerValidSW(swUrl, config);\n }\n });\n }\n}\n\nfunction registerValidSW(swUrl: string, config?: Config) {\n navigator.serviceWorker\n .register(swUrl)\n .then(registration => {\n registration.onupdatefound = () => {\n const installingWorker = registration.installing;\n if (installingWorker == null) {\n return;\n }\n installingWorker.onstatechange = () => {\n if (installingWorker.state === 'installed') {\n if (navigator.serviceWorker.controller) {\n // At this point, the updated precached content has been fetched,\n // but the previous service worker will still serve the older\n // content until all client tabs are closed.\n console.log(\n 'New content is available and will be used when all ' +\n 'tabs for this page are closed. See https://bit.ly/CRA-PWA.'\n );\n\n // Execute callback\n if (config && config.onUpdate) {\n config.onUpdate(registration);\n }\n } else {\n // At this point, everything has been precached.\n // It's the perfect time to display a\n // \"Content is cached for offline use.\" message.\n console.log('Content is cached for offline use.');\n\n // Execute callback\n if (config && config.onSuccess) {\n config.onSuccess(registration);\n }\n }\n }\n };\n };\n })\n .catch(error => {\n console.error('Error during service worker registration:', error);\n });\n}\n\nfunction checkValidServiceWorker(swUrl: string, config?: Config) {\n // Check if the service worker can be found. If it can't reload the page.\n fetch(swUrl, {\n headers: { 'Service-Worker': 'script' }\n })\n .then(response => {\n // Ensure service worker exists, and that we really are getting a JS file.\n const contentType = response.headers.get('content-type');\n if (\n response.status === 404 ||\n (contentType != null && contentType.indexOf('javascript') === -1)\n ) {\n // No service worker found. Probably a different app. Reload the page.\n navigator.serviceWorker.ready.then(registration => {\n registration.unregister().then(() => {\n window.location.reload();\n });\n });\n } else {\n // Service worker found. Proceed as normal.\n registerValidSW(swUrl, config);\n }\n })\n .catch(() => {\n console.log(\n 'No internet connection found. App is running in offline mode.'\n );\n });\n}\n\nexport function unregister() {\n if ('serviceWorker' in navigator) {\n navigator.serviceWorker.ready\n .then(registration => {\n registration.unregister();\n })\n .catch(error => {\n console.error(error.message);\n });\n }\n}\n","import React from 'react';\nimport ReactDOM from 'react-dom';\nimport './styles/index.scss';\nimport App from './routes/App';\nimport * as serviceWorker from './serviceWorker';\n\nReactDOM.render(, document.getElementById('root'));\n\n// If you want your app to work offline and load faster, you can change\n// unregister() to register() below. Note this comes with some pitfalls.\n// Learn more about service workers: https://bit.ly/CRA-PWA\nserviceWorker.register();\n"],"names":["module","exports","hasOwn","hasOwnProperty","classNames","classes","i","arguments","length","arg","argType","push","Array","isArray","inner","apply","toString","Object","prototype","key","call","join","default","hookCallback","some","hooks","setHookCallback","callback","input","isObject","hasOwnProp","a","b","isObjectEmpty","obj","getOwnPropertyNames","k","isUndefined","isNumber","isDate","Date","map","arr","fn","res","extend","valueOf","createUTC","format","locale","strict","createLocalOrUTC","utc","defaultParsingFlags","empty","unusedTokens","unusedInput","overflow","charsLeftOver","nullInput","invalidEra","invalidMonth","invalidFormat","userInvalidated","iso","parsedDateParts","era","meridiem","rfc2822","weekdayMismatch","getParsingFlags","m","_pf","isValid","_isValid","flags","parsedParts","isNowValid","isNaN","_d","getTime","invalidWeekday","_strict","undefined","bigHour","isFrozen","createInvalid","NaN","fun","t","this","len","momentProperties","updateInProgress","copyConfig","to","from","prop","val","_isAMomentObject","_i","_f","_l","_tzm","_isUTC","_offset","_locale","Moment","config","updateOffset","isMoment","warn","msg","suppressDeprecationWarnings","console","deprecate","firstTime","deprecationHandler","args","slice","Error","stack","keys","deprecations","deprecateSimple","name","isFunction","Function","set","_config","_dayOfMonthOrdinalParseLenient","RegExp","_dayOfMonthOrdinalParse","source","_ordinalParse","mergeConfigs","parentConfig","childConfig","Locale","defaultCalendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","mom","now","output","_calendar","zeroFill","number","targetLength","forceSign","absNumber","Math","abs","zerosToFill","pow","max","substr","formattingTokens","localFormattingTokens","formatFunctions","formatTokenFunctions","addFormatToken","token","padded","ordinal","func","localeData","removeFormattingTokens","match","replace","makeFormatFunction","array","formatMoment","expandFormat","invalidDate","replaceLongDateFormatTokens","longDateFormat","lastIndex","test","defaultLongDateFormat","LTS","LT","L","LL","LLL","LLLL","_longDateFormat","formatUpper","toUpperCase","tok","defaultInvalidDate","_invalidDate","defaultOrdinal","defaultDayOfMonthOrdinalParse","_ordinal","defaultRelativeTime","future","past","s","ss","mm","h","hh","d","dd","w","ww","M","MM","y","yy","relativeTime","withoutSuffix","string","isFuture","_relativeTime","pastFuture","diff","aliases","addUnitAlias","unit","shorthand","lowerCase","toLowerCase","normalizeUnits","units","normalizeObjectUnits","inputObject","normalizedProp","normalizedInput","priorities","addUnitPriority","priority","getPrioritizedUnits","unitsObj","u","sort","isLeapYear","year","absFloor","ceil","floor","toInt","argumentForCoercion","coercedNumber","value","isFinite","makeGetSet","keepTime","set$1","get","month","date","daysInMonth","stringGet","stringSet","prioritized","regexes","match1","match2","match3","match4","match6","match1to2","match3to4","match5to6","match1to3","match1to4","match1to6","matchUnsigned","matchSigned","matchOffset","matchShortOffset","matchTimestamp","matchWord","addRegexToken","regex","strictRegex","isStrict","getParseRegexForToken","unescapeFormat","regexEscape","matched","p1","p2","p3","p4","tokens","addParseToken","addWeekParseToken","_w","addTimeToArrayFromToken","_a","indexOf","YEAR","MONTH","DATE","HOUR","MINUTE","SECOND","MILLISECOND","WEEK","WEEKDAY","mod","n","x","modMonth","o","monthsShort","months","monthsShortRegex","monthsRegex","monthsParse","defaultLocaleMonths","split","defaultLocaleMonthsShort","MONTHS_IN_FORMAT","defaultMonthsShortRegex","defaultMonthsRegex","localeMonths","_months","isFormat","localeMonthsShort","_monthsShort","handleStrictParse","monthName","ii","llc","toLocaleLowerCase","_monthsParse","_longMonthsParse","_shortMonthsParse","localeMonthsParse","_monthsParseExact","setMonth","dayOfMonth","min","getSetMonth","getDaysInMonth","computeMonthsParse","_monthsShortStrictRegex","_monthsShortRegex","_monthsStrictRegex","_monthsRegex","cmpLenRev","shortPieces","longPieces","mixedPieces","daysInYear","parseTwoDigitYear","parseInt","getSetYear","getIsLeapYear","createDate","ms","getFullYear","setFullYear","createUTCDate","UTC","getUTCFullYear","setUTCFullYear","firstWeekOffset","dow","doy","fwd","getUTCDay","dayOfYearFromWeeks","week","weekday","resYear","resDayOfYear","dayOfYear","weekOfYear","resWeek","weekOffset","weeksInYear","weekOffsetNext","localeWeek","_week","defaultLocaleWeek","localeFirstDayOfWeek","localeFirstDayOfYear","getSetWeek","add","getSetISOWeek","parseWeekday","weekdaysParse","parseIsoWeekday","shiftWeekdays","ws","concat","weekdaysMin","weekdaysShort","weekdays","weekdaysMinRegex","weekdaysShortRegex","weekdaysRegex","defaultLocaleWeekdays","defaultLocaleWeekdaysShort","defaultLocaleWeekdaysMin","defaultWeekdaysRegex","defaultWeekdaysShortRegex","defaultWeekdaysMinRegex","localeWeekdays","_weekdays","day","localeWeekdaysShort","_weekdaysShort","localeWeekdaysMin","_weekdaysMin","handleStrictParse$1","weekdayName","_weekdaysParse","_shortWeekdaysParse","_minWeekdaysParse","localeWeekdaysParse","_weekdaysParseExact","_fullWeekdaysParse","getSetDayOfWeek","getDay","getSetLocaleDayOfWeek","getSetISODayOfWeek","computeWeekdaysParse","_weekdaysStrictRegex","_weekdaysRegex","_weekdaysShortStrictRegex","_weekdaysShortRegex","_weekdaysMinStrictRegex","_weekdaysMinRegex","minp","shortp","longp","minPieces","hFormat","hours","kFormat","lowercase","minutes","matchMeridiem","_meridiemParse","localeIsPM","charAt","seconds","kInput","_isPm","isPM","_meridiem","pos","pos1","pos2","defaultLocaleMeridiemParse","getSetHour","localeMeridiem","isLower","globalLocale","baseConfig","dayOfMonthOrdinalParse","meridiemParse","locales","localeFamilies","commonPrefix","arr1","arr2","minl","normalizeLocale","chooseLocale","names","j","next","loadLocale","oldLocale","_abbr","aliasedRequire","getSetGlobalLocale","e","values","data","getLocale","defineLocale","abbr","parentLocale","forEach","updateLocale","tmpLocale","listLocales","checkOverflow","_overflowDayOfYear","_overflowWeeks","_overflowWeekday","extendedIsoRegex","basicIsoRegex","tzRegex","isoDates","isoTimes","aspNetJsonRegex","obsOffsets","UT","GMT","EDT","EST","CDT","CST","MDT","MST","PDT","PST","configFromISO","l","allowTime","dateFormat","timeFormat","tzFormat","exec","configFromStringAndFormat","extractFromRFC2822Strings","yearStr","monthStr","dayStr","hourStr","minuteStr","secondStr","result","untruncateYear","preprocessRFC2822","checkWeekday","weekdayStr","parsedInput","calculateOffset","obsOffset","militaryOffset","numOffset","hm","configFromRFC2822","parsedArray","setUTCMinutes","getUTCMinutes","configFromString","createFromInputFallback","defaults","c","currentDateArray","nowValue","_useUTC","getUTCMonth","getUTCDate","getMonth","getDate","configFromArray","currentDate","expectedWeekday","yearToUse","dayOfYearFromWeekInfo","_dayOfYear","_nextDay","weekYear","temp","weekdayOverflow","curWeek","GG","W","E","createLocal","gg","ISO_8601","RFC_2822","skipped","stringLength","totalParsedInputLength","meridiemFixWrap","erasConvertYear","hour","isPm","meridiemHour","configFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","validFormatFound","bestFormatIsValid","score","configFromObject","dayOrDate","minute","second","millisecond","createFromConfig","prepareConfig","preparse","configFromInput","isUTC","prototypeMin","other","prototypeMax","pickBy","moments","ordering","isDurationValid","unitHasDecimal","parseFloat","isValid$1","createInvalid$1","createDuration","Duration","duration","years","quarters","quarter","weeks","isoWeek","days","milliseconds","_milliseconds","_days","_data","_bubble","isDuration","absRound","round","compareArrays","array1","array2","dontConvert","lengthDiff","diffs","offset","separator","utcOffset","sign","offsetFromString","chunkOffset","matcher","parts","matches","cloneWithOffset","model","clone","setTime","local","getDateOffset","getTimezoneOffset","getSetOffset","keepLocalTime","keepMinutes","localAdjust","_changeInProgress","addSubtract","getSetZone","setOffsetToUTC","setOffsetToLocal","subtract","setOffsetToParsedOffset","tZone","hasAlignedHourOffset","isDaylightSavingTime","isDaylightSavingTimeShifted","_isDSTShifted","toArray","isLocal","isUtcOffset","isUtc","aspNetRegex","isoRegex","ret","diffRes","parseIso","momentsDifference","inp","positiveMomentsDifference","base","isAfter","isBefore","createAdder","direction","period","tmp","isAdding","invalid","isString","String","isMomentInput","isNumberOrStringArray","isMomentInputObject","property","objectTest","propertyTest","properties","arrayTest","dataTypeTest","filter","item","isCalendarSpec","getCalendarFormat","myMoment","calendar$1","time","formats","sod","startOf","calendarFormat","localInput","endOf","isBetween","inclusivity","localFrom","localTo","isSame","inputMs","isSameOrAfter","isSameOrBefore","asFloat","that","zoneDelta","monthDiff","wholeMonthDiff","anchor","toISOString","keepOffset","toDate","inspect","prefix","datetime","suffix","zone","inputString","defaultFormatUtc","defaultFormat","postformat","humanize","fromNow","toNow","newLocaleData","lang","MS_PER_SECOND","MS_PER_MINUTE","MS_PER_HOUR","MS_PER_400_YEARS","mod$1","dividend","divisor","localStartOfDate","utcStartOfDate","startOfDate","isoWeekday","unix","toObject","toJSON","isValid$2","parsingFlags","invalidAt","creationData","localeEras","eras","_eras","since","until","localeErasParse","eraName","narrow","localeErasConvertYear","dir","getEraName","getEraNarrow","getEraAbbr","getEraYear","erasNameRegex","computeErasParse","_erasNameRegex","_erasRegex","erasAbbrRegex","_erasAbbrRegex","erasNarrowRegex","_erasNarrowRegex","matchEraAbbr","matchEraName","matchEraNarrow","matchEraYearOrdinal","_eraYearOrdinalRegex","abbrPieces","namePieces","narrowPieces","addWeekYearFormatToken","getter","getSetWeekYear","getSetWeekYearHelper","getSetISOWeekYear","getISOWeeksInYear","getISOWeeksInISOWeekYear","isoWeekYear","getWeeksInYear","weekInfo","getWeeksInWeekYear","weeksTarget","setWeekAll","dayOfYearData","getSetQuarter","erasParse","eraYearOrdinalParse","getSetDayOfMonth","getSetDayOfYear","getSetMinute","getSetMillisecond","getSetSecond","parseMs","getZoneAbbr","getZoneName","proto","createUnix","createInZone","parseZone","preParsePostFormat","Symbol","for","eraNarrow","eraAbbr","eraYear","isoWeeks","weeksInWeekYear","isoWeeksInYear","isoWeeksInISOWeekYear","isDST","zoneAbbr","zoneName","dates","isDSTShifted","proto$1","get$1","index","field","setter","listMonthsImpl","out","listWeekdaysImpl","localeSorted","shift","listMonths","listMonthsShort","listWeekdays","listWeekdaysShort","listWeekdaysMin","firstDayOfYear","firstDayOfWeek","langData","mathAbs","addSubtract$1","add$1","subtract$1","absCeil","bubble","monthsFromDays","monthsToDays","daysToMonths","as","valueOf$1","makeAs","alias","asMilliseconds","asSeconds","asMinutes","asHours","asDays","asWeeks","asMonths","asQuarters","asYears","clone$1","get$2","makeGetter","thresholds","substituteTimeAgo","relativeTime$1","posNegDuration","getSetRelativeTimeRounding","roundingFunction","getSetRelativeTimeThreshold","threshold","limit","argWithSuffix","argThresholds","withSuffix","th","assign","abs$1","toISOString$1","totalSign","ymSign","daysSign","hmsSign","total","toFixed","proto$2","toIsoString","version","relativeTimeRounding","relativeTimeThreshold","HTML5_FMT","DATETIME_LOCAL","DATETIME_LOCAL_SECONDS","DATETIME_LOCAL_MS","TIME","TIME_SECONDS","TIME_MS","factory","getOwnPropertySymbols","propIsEnumerable","propertyIsEnumerable","TypeError","test1","test2","fromCharCode","test3","letter","err","shouldUseNative","target","symbols","ReactPropTypesSecret","require","emptyFunction","emptyFunctionWithReset","resetWarningCache","shim","props","propName","componentName","location","propFullName","secret","getShim","isRequired","ReactPropTypes","bigint","bool","object","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","aa","r","encodeURIComponent","ba","Set","ca","da","ea","fa","window","document","createElement","ha","ia","ja","ka","B","f","g","acceptsBooleans","attributeName","attributeNamespace","mustUseProperty","propertyName","type","sanitizeURL","removeEmptyString","D","oa","pa","qa","ma","na","la","removeAttribute","setAttribute","setAttributeNS","xlinkHref","ra","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","sa","ta","ua","wa","xa","ya","za","Aa","Ba","Ca","Da","Ea","Fa","Ga","Ha","Ia","Ja","Ma","Ka","iterator","La","Na","trim","Oa","Pa","prepareStackTrace","defineProperty","Reflect","construct","displayName","Qa","tag","render","_render","Ra","$$typeof","_context","_payload","_init","Sa","Ta","nodeName","Va","_valueTracker","getOwnPropertyDescriptor","constructor","configurable","enumerable","getValue","setValue","stopTracking","Ua","Wa","checked","Xa","activeElement","body","Ya","defaultChecked","defaultValue","_wrapperState","initialChecked","Za","initialValue","controlled","$a","ab","bb","cb","ownerDocument","eb","children","Children","db","fb","options","selected","defaultSelected","disabled","gb","dangerouslySetInnerHTML","hb","ib","jb","textContent","kb","lb","mb","nb","ob","namespaceURI","innerHTML","firstChild","removeChild","appendChild","MSApp","execUnsafeLocalFunction","pb","lastChild","nodeType","nodeValue","qb","animationIterationCount","borderImageOutset","borderImageSlice","borderImageWidth","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","columns","flex","flexGrow","flexPositive","flexShrink","flexNegative","flexOrder","gridArea","gridRow","gridRowEnd","gridRowSpan","gridRowStart","gridColumn","gridColumnEnd","gridColumnSpan","gridColumnStart","fontWeight","lineClamp","lineHeight","opacity","order","orphans","tabSize","widows","zIndex","zoom","fillOpacity","floodOpacity","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","rb","sb","tb","style","setProperty","substring","ub","menuitem","area","br","col","embed","hr","img","keygen","link","meta","param","track","wbr","vb","wb","is","xb","srcElement","correspondingUseElement","parentNode","yb","zb","Ab","Bb","Cb","stateNode","Db","Eb","Fb","Gb","Hb","Ib","Jb","Kb","Lb","Mb","Ob","Pb","Qb","addEventListener","removeEventListener","Rb","onError","Sb","Tb","Ub","Vb","Wb","Xb","Zb","alternate","return","$b","memoizedState","dehydrated","ac","cc","child","sibling","current","bc","dc","ec","fc","gc","hc","ic","jc","kc","lc","mc","nc","Map","oc","pc","qc","rc","blockedOn","domEventName","eventSystemFlags","nativeEvent","targetContainers","sc","delete","pointerId","tc","vc","wc","lanePriority","unstable_runWithPriority","hydrate","containerInfo","xc","yc","zc","Ac","Bc","unstable_scheduleCallback","unstable_NormalPriority","Cc","Dc","Ec","animationend","animationiteration","animationstart","transitionend","Fc","Gc","Hc","animation","transition","Ic","Jc","Kc","Lc","Mc","Nc","Oc","Pc","Qc","unstable_now","F","Rc","Uc","pendingLanes","expiredLanes","suspendedLanes","pingedLanes","Vc","entangledLanes","entanglements","Wc","Xc","Yc","Zc","$c","eventTimes","clz32","bd","cd","log","LN2","unstable_UserBlockingPriority","ed","fd","gd","hd","id","bind","uc","jd","kd","ld","md","nd","od","keyCode","charCode","pd","qd","rd","_reactName","_targetInst","currentTarget","isDefaultPrevented","defaultPrevented","returnValue","isPropagationStopped","preventDefault","stopPropagation","cancelBubble","persist","isPersistent","wd","xd","yd","sd","eventPhase","bubbles","cancelable","timeStamp","isTrusted","td","ud","view","detail","vd","Ad","screenX","screenY","clientX","clientY","pageX","pageY","ctrlKey","shiftKey","altKey","metaKey","getModifierState","zd","button","buttons","relatedTarget","fromElement","toElement","movementX","movementY","Bd","Dd","dataTransfer","Fd","Hd","animationName","elapsedTime","pseudoElement","Id","clipboardData","Jd","Ld","Md","Esc","Spacebar","Left","Up","Right","Down","Del","Win","Menu","Apps","Scroll","MozPrintableKey","Nd","Od","Alt","Control","Meta","Shift","Pd","Qd","code","repeat","which","Rd","Td","width","height","pressure","tangentialPressure","tiltX","tiltY","twist","pointerType","isPrimary","Vd","touches","targetTouches","changedTouches","Xd","Yd","deltaX","wheelDeltaX","deltaY","wheelDeltaY","wheelDelta","deltaZ","deltaMode","Zd","$d","ae","be","documentMode","ce","de","ee","fe","ge","he","ie","le","color","email","password","range","search","tel","text","url","me","ne","oe","event","listeners","pe","qe","re","se","te","ue","ve","we","xe","ye","ze","oninput","Ae","detachEvent","Be","Ce","attachEvent","De","Ee","Fe","He","Ie","Je","Ke","Le","nextSibling","Me","contains","compareDocumentPosition","Ne","HTMLIFrameElement","contentWindow","href","Oe","contentEditable","Pe","Qe","Re","Se","Te","Ue","start","selectionStart","end","selectionEnd","anchorNode","defaultView","getSelection","anchorOffset","focusNode","focusOffset","Ve","We","Xe","Ye","Ze","Yb","instance","listener","G","$e","has","af","bf","random","cf","df","capture","passive","Nb","z","q","v","ef","ff","parentWindow","gf","hf","J","K","Q","je","char","ke","unshift","jf","kf","lf","mf","autoFocus","nf","__html","of","setTimeout","pf","clearTimeout","qf","rf","sf","previousSibling","tf","vf","wf","xf","yf","zf","Af","Bf","H","I","Cf","N","Df","Ef","contextTypes","__reactInternalMemoizedUnmaskedChildContext","__reactInternalMemoizedMaskedChildContext","Ff","childContextTypes","Gf","Hf","If","getChildContext","Jf","__reactInternalMemoizedMergedChildContext","Kf","Lf","Mf","Nf","Of","Pf","unstable_cancelCallback","Qf","unstable_shouldYield","Rf","unstable_requestPaint","Sf","Tf","unstable_getCurrentPriorityLevel","Uf","unstable_ImmediatePriority","Vf","Wf","Xf","unstable_LowPriority","Yf","unstable_IdlePriority","Zf","$f","ag","bg","cg","dg","O","eg","fg","hg","ig","jg","kg","ReactCurrentBatchConfig","lg","defaultProps","mg","ng","og","pg","qg","rg","_currentValue","sg","childLanes","tg","dependencies","firstContext","lanes","ug","vg","context","observedBits","responders","wg","xg","updateQueue","baseState","firstBaseUpdate","lastBaseUpdate","shared","pending","effects","yg","zg","eventTime","lane","payload","Ag","Bg","Cg","A","p","C","Dg","Eg","Fg","Component","refs","Gg","Kg","isMounted","_reactInternals","enqueueSetState","Hg","Ig","Jg","enqueueReplaceState","enqueueForceUpdate","Lg","shouldComponentUpdate","isPureReactComponent","Mg","contextType","state","updater","Ng","componentWillReceiveProps","UNSAFE_componentWillReceiveProps","Og","getDerivedStateFromProps","getSnapshotBeforeUpdate","UNSAFE_componentWillMount","componentWillMount","componentDidMount","Pg","Qg","ref","_owner","_stringRef","Rg","Sg","lastEffect","nextEffect","firstEffect","Tg","Ug","mode","Vg","implementation","Wg","Xg","done","Yg","Zg","$g","ah","bh","ch","dh","eh","documentElement","tagName","fh","gh","P","ih","memoizedProps","revealOrder","jh","kh","lh","mh","nh","oh","pendingProps","ph","qh","rh","sh","uh","_workInProgressVersionPrimary","vh","ReactCurrentDispatcher","wh","xh","R","S","T","yh","zh","Ah","Bh","Ch","Dh","Eh","Fh","Gh","Hh","baseQueue","queue","Ih","Jh","Kh","lastRenderedReducer","action","eagerReducer","eagerState","lastRenderedState","dispatch","Lh","Mh","_getVersion","_source","mutableReadLanes","Nh","U","useState","getSnapshot","subscribe","useEffect","setSnapshot","Oh","Ph","Qh","Rh","create","destroy","deps","Sh","Th","Uh","Vh","Wh","Xh","Yh","Zh","$h","ai","bi","ci","di","readContext","useCallback","useContext","useImperativeHandle","useLayoutEffect","useMemo","useReducer","useRef","useDebugValue","useDeferredValue","useTransition","useMutableSource","useOpaqueIdentifier","unstable_isNewReconciler","uf","ei","ReactCurrentOwner","fi","gi","hi","ji","compare","ki","li","mi","baseLanes","ni","oi","pi","UNSAFE_componentWillUpdate","componentWillUpdate","componentDidUpdate","qi","getDerivedStateFromError","ri","pendingContext","Bi","Di","Ei","si","retryLane","ti","fallback","unstable_avoidThisFallback","ui","unstable_expectedLoadTime","vi","wi","xi","yi","zi","isBackwards","rendering","renderingStartTime","last","tail","tailMode","Ai","Fi","Gi","wasMultiple","multiple","onClick","onclick","size","createElementNS","createTextNode","V","Hi","Ii","Ji","Ki","Li","Mi","message","Ni","error","Oi","WeakMap","Pi","Qi","Ri","Si","componentDidCatch","Ti","componentStack","Ui","WeakSet","Vi","Wi","Xi","__reactInternalSnapshotBeforeUpdate","Yi","Zi","$i","focus","aj","display","bj","onCommitFiberUnmount","componentWillUnmount","cj","dj","ej","fj","gj","hj","insertBefore","_reactRootContainer","ij","jj","kj","lj","then","mj","nj","oj","pj","X","Y","qj","rj","sj","tj","uj","vj","Infinity","wj","ck","Z","xj","yj","zj","Aj","Bj","Cj","Dj","Ej","Fj","Gj","Hj","Ij","Jj","Sc","Kj","Lj","Mj","callbackNode","expirationTimes","callbackPriority","Tc","Nj","Oj","Pj","Qj","Rj","Sj","Tj","finishedWork","finishedLanes","Uj","timeoutHandle","Wj","Xj","pingCache","Yj","Zj","va","ak","bk","dk","rangeCount","focusedElem","selectionRange","ek","createRange","setStart","removeAllRanges","addRange","setEnd","left","scrollLeft","top","scrollTop","onCommitFiberRoot","fk","gk","ik","isReactComponent","pendingChildren","jk","mutableSourceEagerHydrationData","kk","lk","mk","nk","ok","qk","hydrationOptions","mutableSources","_internalRoot","rk","tk","hasAttribute","sk","uk","hk","_calculateChangedBits","unstable_observedBits","unmount","querySelectorAll","JSON","stringify","form","Vj","vk","Events","wk","findFiberByHostInstance","bundleType","rendererPackageName","xk","rendererConfig","overrideHookState","overrideHookStateDeletePath","overrideHookStateRenamePath","overrideProps","overridePropsDeletePath","overridePropsRenamePath","setSuspenseHandler","scheduleUpdate","currentDispatcherRef","findHostInstanceByFiber","findHostInstancesForRefresh","scheduleRefresh","scheduleRoot","setRefreshHandler","getCurrentFiber","__REACT_DEVTOOLS_GLOBAL_HOOK__","yk","isDisabled","supportsFiber","inject","createPortal","findDOMNode","flushSync","unmountComponentAtNode","unstable_batchedUpdates","unstable_createPortal","unstable_renderSubtreeIntoContainer","checkDCE","Fragment","__self","__source","jsx","jsxs","StrictMode","Profiler","Suspense","setState","forceUpdate","escape","_status","_result","IsSomeRendererActing","count","only","PureComponent","cloneElement","createContext","_currentValue2","_threadCount","Provider","Consumer","createFactory","createRef","forwardRef","isValidElement","lazy","memo","runtime","Op","$Symbol","iteratorSymbol","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","toStringTag","define","writable","wrap","innerFn","outerFn","self","tryLocsList","protoGenerator","Generator","generator","Context","_invoke","GenStateSuspendedStart","method","GenStateExecuting","GenStateCompleted","doneResult","delegate","delegateResult","maybeInvokeDelegate","ContinueSentinel","sent","_sent","dispatchException","abrupt","record","tryCatch","GenStateSuspendedYield","makeInvokeMethod","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","getPrototypeOf","NativeIteratorPrototype","Gp","defineIteratorMethods","AsyncIterator","PromiseImpl","invoke","resolve","reject","__await","unwrapped","previousPromise","callInvokeWithMethodAndArg","info","resultName","nextLoc","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","reset","iterable","iteratorMethod","isGeneratorFunction","genFun","ctor","mark","setPrototypeOf","__proto__","awrap","async","Promise","iter","reverse","pop","skipTempReset","prev","stop","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","finish","thrown","delegateYield","regeneratorRuntime","accidentalStrictMode","globalThis","performance","MessageChannel","unstable_forceFrameRate","cancelAnimationFrame","requestAnimationFrame","port2","port1","onmessage","postMessage","sortIndex","startTime","expirationTime","priorityLevel","unstable_Profiling","unstable_continueExecution","unstable_getFirstCallbackNode","unstable_next","unstable_pauseExecution","delay","unstable_wrapCallback","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","__esModule","definition","nmd","paths","_arrayLikeToArray","_unsupportedIterableToArray","minLen","_s","_e","_arr","_n","invariant","cond","NavigationContext","React","LocationContext","RouteContext","outlet","Outlet","React.createElement","OutletContext","useOutlet","Route","_props","Router","basename","basenameProp","locationProp","navigationType","NavigationType","navigator","static","staticProp","useInRouterContext","normalizePathname","navigationContext","parsePath","pathname","hash","trailingPathname","stripBasename","Routes","routes","locationArg","parentMatches","routeMatch","parentParams","params","parentPathnameBase","pathnameBase","route","locationFromContext","useLocation","parsedLocationArg","_parsedLocationArg$pa","startsWith","remainingPathname","branches","flattenRoutes","siblings","every","compareIndexes","routesMeta","childrenIndex","rankRouteBranches","matchRouteBranch","matchRoutes","_renderMatches","joinPaths","useRoutes","createRoutesFromChildren","caseSensitive","path","parentsMeta","parentPath","relativePath","computeScore","paramRe","isSplat","segments","initialScore","reduce","segment","branch","matchedParams","matchedPathname","matchPath","reduceRight","pattern","paramNames","regexpSource","_","paramName","endsWith","compilePath","captureGroups","splatValue","decodeURIComponent","safelyDecodeURIComponent","nextChar","BrowserRouter","historyRef","createBrowserHistory","history","listen","asyncGeneratorStep","gen","_next","_throw","_toConsumableArray","ownKeys","enumerableOnly","sym","_objectSpread2","_defineProperty","getOwnPropertyDescriptors","defineProperties","_typeof","_defineProperties","descriptor","_slicedToArray","_arrayWithHoles","_iterableToArrayLimit","_nonIterableRest","_arrayWithoutHoles","_iterableToArray","_nonIterableSpread","noop","_WINDOW","_DOCUMENT","_MUTATION_OBSERVER","_PERFORMANCE","measure","MutationObserver","_ref$userAgent","userAgent","WINDOW","DOCUMENT","MUTATION_OBSERVER","PERFORMANCE","IS_DOM","head","IS_IE","DEFAULT_REPLACEMENT_CLASS","DATA_FA_I2SVG","DATA_FA_PSEUDO_ELEMENT","DATA_PREFIX","DATA_ICON","HTML_CLASS_I2SVG_BASE_CLASS","TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS","PRODUCTION","process","PREFIX_TO_STYLE","STYLE_TO_PREFIX","PREFIX_TO_LONG_STYLE","LONG_STYLE_TO_PREFIX","ICON_SELECTION_SYNTAX_PATTERN","LAYERS_TEXT_CLASSNAME","FONT_FAMILY_PATTERN","FONT_WEIGHT_TO_PREFIX","oneToTen","oneToTwenty","ATTRIBUTES_WATCHED_FOR_MUTATION","DUOTONE_CLASSES","RESERVED_CLASSES","initial","FontAwesomeConfig","querySelector","_ref","_ref2","attr","coerce","getAttribute","getAttrConfig","familyPrefix","styleDefault","replacementClass","autoReplaceSvg","autoAddCss","autoA11y","searchPseudoElements","observeMutations","mutateApproach","keepOriginalSource","measurePerformance","showMissingIcons","_onChangeCb","meaninglessTransform","rotate","flipX","flipY","nextUniqueId","classArray","classList","htmlEscape","str","joinStyles","styles","acc","styleName","transformIsMeaningful","transform","css","dfp","drc","fp","dPatt","customPropPatt","rPatt","_cssInserted","ensureCss","headChildren","childNodes","beforeChild","insertCss","InjectCSS","mixout","dom","beforeDOMElementCreation","beforeI2svg","shims","namespace","functions","domready","toHtml","abstractNodes","_abstractNodes$attrib","attributes","_abstractNodes$childr","joinAttributes","iconFromMapping","mapping","iconName","icon","doScroll","readyState","subject","thisContext","bindInternal4","toHex","unicode","decoded","counter","charCodeAt","extra","ucs2decode","normalizeIcons","icons","defineIcons","_params$skipHooks","skipHooks","normalized","addPack","LONG_STYLE","_defaultUsablePrefix","_byUnicode","_byLigature","_byOldName","_byOldUnicode","_byAlias","PREFIXES","getIconName","cls","build","lookup","reducer","hasRegular","autoFetchSvg","shimLookups","maybeNameMaybeUnicode","unicodes","getCanonicalPrefix","byUnicode","byAlias","byOldName","getDefaultUsablePrefix","styleOrPrefix","defined","getCanonicalIcon","_params$skipLookups","skipLookups","givenPrefix","canonical","includes","rest","aliasIconName","Library","Constructor","_classCallCheck","definitions","protoProps","staticProps","_this","_len","_key","additions","_pullDefinitions","longPrefix","_normalized$key","_plugins","_hooks","providers","defaultProviderKeys","chainHooks","hook","accumulator","hookFns","hookFn","callHooks","_len2","_key2","callProvided","findIconDefinition","iconLookup","library","i2svg","watch","autoReplaceSvgRoot","autoReplace","parse","_icon","canonicalIcon","_prefix","api","noAuto","_params$autoReplaceSv","domVariants","abstractCreator","abstract","container","html","makeInlineSvgAbstract","_params$icons","main","mask","title","maskId","titleId","_params$watchable","watchable","found","isUploadedIcon","attrClass","content","role","uploadedIconWidthStyle","asSymbol","asIcon","makeLayersTextAbstract","_params$watchable2","_ref2$width","_ref2$height","_ref2$startCentered","startCentered","transformForCss","styleString","class","makeLayersCounterAbstract","styles$1","asFoundIcon","vectorData","fill","missingIconResolutionMixin","findIcon","maybeNotifyMissing","noop$1","preamble","perf","noop$2","isWatched","convertSVG","abstractObj","_params$ceFn","ceFn","mutators","mutation","comment","createComment","outerHTML","nodeAsComment","replaceChild","remove","nest","forSvg","splitClasses","toSvg","toNode","newInnerHTML","performOperationSync","op","perform","mutations","callbackFunction","frame","mutator","disableObservation","enableObservation","mo","observe","_options$treeCallback","treeCallback","_options$nodeCallback","nodeCallback","_options$pseudoElemen","pseudoElementsCallback","_options$observeMutat","observeMutationsRoot","objects","defaultPrefix","mutationRecord","addedNodes","hasPrefixAndIcon","_getCanonicalIcon","childList","characterData","subtree","styleParser","classParser","existingPrefix","existingIconName","innerText","ligature","byLigature","attributesParser","extraAttributes","parseMeta","parser","_classParser","extraClasses","pluginMeta","extraStyles","styles$2","generateMutation","nodeMeta","onTree","root","htmlClassList","hclAdd","hclRemove","prefixes","prefixesDomQuery","candidates","all","resolvedMutations","catch","onNode","iconDefinition","_params$transform","_params$symbol","_params$mask","_params$maskId","_params$title","_params$titleId","_params$classes","_params$attributes","_params$styles","ReplaceElements","maybeIconDefinition","mutationObserverCallbacks","provides","providers$$1","_params$node","_params$callback","generateSvgReplacementMutation","generateAbstractIcon","_ref3","nextChild","containerWidth","iconWidth","Layers","layer","assembler","LayersCounter","LayersText","generateLayersText","computedFontSize","getComputedStyle","fontSize","boundingClientRect","getBoundingClientRect","CLEAN_CONTENT_PATTERN","SECONDARY_UNICODE_RANGE","replaceForPosition","position","pendingAttribute","alreadyProcessedPseudoElement","fontFamily","getPropertyValue","_content","_hexValueFromContent","cleaned","codePoint","first","codePointAt","isPrependTen","isDoubled","isSecondary","hexValueFromContent","hexValue","isV4","iconIdentifier","iconName4","oldUnicode","newUnicode","byOldUnicode","processable","operations","_unwatched","parseTransformString","transformString","PowerTransforms","parseNodeAttributes","generateAbstractTransformGrouping","outer","innerTranslate","innerScale","innerRotate","ALL_SPACE","fillBlack","force","Masks","maskData","generateAbstractMask","explicitMaskId","mainWidth","mainPath","maskWidth","maskPath","trans","transformForSvg","maskRect","maskInnerGroupChildrenMixin","maskInnerGroup","maskOuterGroup","clipId","maskTag","maskUnits","maskContentUnits","defs","MissingIconIndicator","reduceMotion","matchMedia","missingIconAbstract","gChildren","FILL","ANIMATION_BASE","attributeType","repeatCount","dur","OPACITY_ANIMATE","dot","cx","cy","nextPlugins","mixoutsTo","plugin","registerPlugins","pseudoElements2svg","unwatch","bootstrap","disconnect","symbolData","library$1","parse$1","_objectWithoutProperties","excluded","sourceKeys","_objectWithoutPropertiesLoose","sourceSymbolKeys","camelize","chr","_excluded$1","styleToObject","pair","normalizeIconArgs","objectWithKey","_excluded","FontAwesomeIcon","forwardedRef","iconArgs","maskArgs","className","_classes","beat","fade","flash","spin","spinPulse","spinReverse","pulse","fixedWidth","inverse","border","listItem","flip","rotation","pull","swapOpacity","renderedIcon","_console","extraProps","convertCurry","propTypes","PostType","convert","mixins","attrs","_extraProps$style","existingStyle","remaining","faAddressBook","faContactBook","faAddressCard","faContactCard","faVcard","faAnglesDown","faAngleDoubleDown","faAnglesLeft","faAngleDoubleLeft","faAnglesRight","faAngleDoubleRight","faAnglesUp","faAngleDoubleUp","faAppleWhole","faAppleAlt","faArrowDown19","faSortNumericAsc","faSortNumericDown","faArrowDown91","faSortNumericDesc","faSortNumericDownAlt","faArrowDownAZ","faSortAlphaAsc","faSortAlphaDown","faArrowDownLong","faLongArrowDown","faArrowDownShortWide","faSortAmountDesc","faSortAmountDownAlt","faArrowDownWideShort","faSortAmountAsc","faSortAmountDown","faArrowDownZA","faSortAlphaDesc","faSortAlphaDownAlt","faArrowLeftLong","faLongArrowLeft","faArrowPointer","faMousePointer","faArrowRightArrowLeft","faExchange","faArrowRightFromBracket","faSignOut","faArrowRightLong","faLongArrowRight","faArrowRightToBracket","faSignIn","faArrowRotateLeft","faArrowLeftRotate","faArrowRotateBack","faArrowRotateBackward","faUndo","faArrowRotateRight","faArrowRightRotate","faArrowRotateForward","faRedo","faArrowTurnDown","faLevelDown","faArrowTurnUp","faLevelUp","faArrowUp19","faSortNumericUp","faArrowUp91","faSortNumericUpAlt","faArrowUpAZ","faSortAlphaUp","faArrowUpLong","faLongArrowUp","faArrowUpRightFromSquare","faExternalLink","faArrowUpShortWide","faSortAmountUpAlt","faArrowUpWideShort","faSortAmountUp","faArrowUpZA","faSortAlphaUpAlt","faArrowsLeftRight","faArrowsH","faArrowsRotate","faRefresh","faSync","faArrowsUpDown","faArrowsV","faArrowsUpDownLeftRight","faArrows","faBabyCarriage","faCarriageBaby","faBackwardFast","faFastBackward","faBackwardStep","faStepBackward","faBagShopping","faShoppingBag","faBan","faCancel","faBanSmoking","faSmokingBan","faBandage","faBandAid","faBars","faNavicon","faBarsProgress","faTasksAlt","faBarsStaggered","faReorder","faStream","faBaseball","faBaseballBall","faBasketShopping","faShoppingBasket","faBasketball","faBasketballBall","faBath","faBathtub","faBatteryEmpty","faBattery0","faBatteryFull","faBattery","faBattery5","faBatteryHalf","faBattery3","faBatteryQuarter","faBattery2","faBatteryThreeQuarters","faBattery4","faBedPulse","faProcedures","faBeerMugEmpty","faBeer","faBellConcierge","faConciergeBell","faBolt","faZap","faBookAtlas","faAtlas","faBookBible","faBible","faBookJournalWhills","faJournalWhills","faBookOpenReader","faBookReader","faBookQuran","faQuran","faBookSkull","faBookDead","faBorderTopLeft","faBorderStyle","faBoxArchive","faArchive","faBoxesStacked","faBoxes","faBoxesAlt","faBroomBall","faQuidditch","faQuidditchBroomBall","faBuildingColumns","faBank","faInstitution","faMuseum","faUniversity","faBurger","faHamburger","faBusSimple","faBusAlt","faBusinessTime","faBriefcaseClock","faCakeCandles","faBirthdayCake","faCake","faCalendarDays","faCalendarAlt","faCalendarXmark","faCalendarTimes","faCamera","faCameraAlt","faCar","faAutomobile","faCarBattery","faBatteryCar","faCarRear","faCarAlt","faCartFlatbed","faDollyFlatbed","faCartFlatbedSuitcase","faLuggageCart","faCartShopping","faShoppingCart","faChalkboard","faBlackboard","faChalkboardUser","faChalkboardTeacher","faChampagneGlasses","faGlassCheers","faChartArea","faAreaChart","faChartBar","faBarChart","faChartLine","faLineChart","faChartPie","faPieChart","faCheckToSlot","faVoteYea","faCircleArrowDown","faArrowCircleDown","faCircleArrowLeft","faArrowCircleLeft","faCircleArrowRight","faArrowCircleRight","faCircleArrowUp","faArrowCircleUp","faCircleCheck","faCheckCircle","faCircleChevronDown","faChevronCircleDown","faCircleChevronLeft","faChevronCircleLeft","faCircleChevronRight","faChevronCircleRight","faCircleChevronUp","faChevronCircleUp","faCircleDollarToSlot","faDonate","faCircleDot","faDotCircle","faCircleDown","faArrowAltCircleDown","faCircleExclamation","faExclamationCircle","faCircleH","faHospitalSymbol","faCircleHalfStroke","faAdjust","faCircleInfo","faInfoCircle","faCircleLeft","faArrowAltCircleLeft","faCircleMinus","faMinusCircle","faCirclePause","faPauseCircle","faCirclePlay","faPlayCircle","faCirclePlus","faPlusCircle","faCircleQuestion","faQuestionCircle","faCircleRadiation","faRadiationAlt","faCircleRight","faArrowAltCircleRight","faCircleStop","faStopCircle","faCircleUp","faArrowAltCircleUp","faCircleUser","faUserCircle","faCircleXmark","faTimesCircle","faXmarkCircle","faClock","faClockFour","faClockRotateLeft","faHistory","faCloudArrowDown","faCloudDownload","faCloudDownloadAlt","faCloudArrowUp","faCloudUpload","faCloudUploadAlt","faCommentDots","faCommenting","faCommentSms","faSms","faCompassDrafting","faDraftingCompass","faComputerMouse","faMouse","faCreditCard","faCreditCardAlt","faCropSimple","faCropAlt","faDeleteLeft","faBackspace","faDesktop","faDesktopAlt","faDiagramProject","faProjectDiagram","faDiamondTurnRight","faDirections","faDollarSign","faDollar","faUsd","faDolly","faDollyBox","faDownLeftAndUpRightToCenter","faCompressAlt","faDownLong","faLongArrowAltDown","faDroplet","faTint","faDropletSlash","faTintSlash","faEarDeaf","faDeaf","faDeafness","faHardOfHearing","faEarListen","faAssistiveListeningSystems","faEarthAfrica","faGlobeAfrica","faEarthAmericas","faEarth","faEarthAmerica","faGlobeAmericas","faEarthAsia","faGlobeAsia","faEarthEurope","faGlobeEurope","faEarthOceania","faGlobeOceania","faEllipsis","faEllipsisH","faEllipsisVertical","faEllipsisV","faEnvelopesBulk","faMailBulk","faEuroSign","faEur","faEuro","faEyeDropper","faEyeDropperEmpty","faEyedropper","faEyeLowVision","faLowVision","faFaceAngry","faAngry","faFaceDizzy","faDizzy","faFaceFlushed","faFlushed","faFaceFrown","faFrown","faFaceFrownOpen","faFrownOpen","faFaceGrimace","faGrimace","faFaceGrin","faGrin","faFaceGrinBeam","faGrinBeam","faFaceGrinBeamSweat","faGrinBeamSweat","faFaceGrinHearts","faGrinHearts","faFaceGrinSquint","faGrinSquint","faFaceGrinSquintTears","faGrinSquintTears","faFaceGrinStars","faGrinStars","faFaceGrinTears","faGrinTears","faFaceGrinTongue","faGrinTongue","faFaceGrinTongueSquint","faGrinTongueSquint","faFaceGrinTongueWink","faGrinTongueWink","faFaceGrinWide","faGrinAlt","faFaceGrinWink","faGrinWink","faFaceKiss","faKiss","faFaceKissBeam","faKissBeam","faFaceKissWinkHeart","faKissWinkHeart","faFaceLaugh","faLaugh","faFaceLaughBeam","faLaughBeam","faFaceLaughSquint","faLaughSquint","faFaceLaughWink","faLaughWink","faFaceMeh","faMeh","faFaceMehBlank","faMehBlank","faFaceRollingEyes","faMehRollingEyes","faFaceSadCry","faSadCry","faFaceSadTear","faSadTear","faFaceSmile","faSmile","faFaceSmileBeam","faSmileBeam","faFaceSmileWink","faSmileWink","faFaceSurprise","faSurprise","faFaceTired","faTired","faFeatherPointed","faFeatherAlt","faFileArrowDown","faFileDownload","faFileArrowUp","faFileUpload","faFileExport","faArrowRightFromFile","faFileImport","faArrowRightToFile","faFileLines","faFileAlt","faFileText","faFileWaveform","faFileMedicalAlt","faFileZipper","faFileArchive","faFilterCircleDollar","faFunnelDollar","faFireFlameCurved","faFireAlt","faFireFlameSimple","faBurn","faFloppyDisk","faSave","faFontAwesome","faFontAwesomeFlag","faFontAwesomeLogoFull","faFootball","faFootballBall","faForwardFast","faFastForward","faForwardStep","faStepForward","faFutbol","faFutbolBall","faSoccerBall","faGauge","faDashboard","faGaugeMed","faTachometerAltAverage","faGaugeHigh","faTachometerAlt","faTachometerAltFast","faGaugeSimple","faGaugeSimpleMed","faTachometerAverage","faGaugeSimpleHigh","faTachometer","faTachometerFast","faGavel","faLegal","faGear","faCog","faGears","faCogs","faGolfBallTee","faGolfBall","faGraduationCap","faMortarBoard","faGrip","faGripHorizontal","faHand","faHandPaper","faHandBackFist","faHandRock","faHandDots","faAllergies","faHandFist","faFistRaised","faHandHoldingDollar","faHandHoldingUsd","faHandHoldingDroplet","faHandHoldingWater","faHands","faSignLanguage","faSigning","faHandsAslInterpreting","faAmericanSignLanguageInterpreting","faAslInterpreting","faHandsAmericanSignLanguageInterpreting","faHandsBubbles","faHandsWash","faHandsPraying","faPrayingHands","faHandshakeAngle","faHandsHelping","faHandshakeSimpleSlash","faHandshakeAltSlash","faHardDrive","faHdd","faHeading","faHeader","faHeadphonesSimple","faHeadphonesAlt","faHeartCrack","faHeartBroken","faHeartPulse","faHeartbeat","faHelmetSafety","faHardHat","faHatHard","faHospital","faHospitalAlt","faHospitalWide","faHotTubPerson","faHotTub","faHourglass","faHourglass2","faHourglassHalf","faHourglassEnd","faHourglass3","faHourglassStart","faHourglass1","faHouse","faHome","faHomeAlt","faHomeLgAlt","faHouseChimney","faHomeLg","faHouseChimneyCrack","faHouseDamage","faHouseChimneyMedical","faClinicMedical","faHouseLaptop","faLaptopHouse","faHouseUser","faHomeUser","faHryvniaSign","faHryvnia","faIcons","faHeartMusicCameraBolt","faIdCard","faDriversLicense","faIdCardClip","faIdCardAlt","faImagePortrait","faPortrait","faIndianRupeeSign","faIndianRupee","faInr","faJetFighter","faFighterJet","faKitMedical","faFirstAid","faLeftLong","faLongArrowAltLeft","faLeftRight","faArrowsAltH","faLink","faChain","faLinkSlash","faChainBroken","faChainSlash","faUnlink","faList","faListSquares","faListCheck","faTasks","faListOl","faList12","faListNumeric","faListUl","faListDots","faLocationCrosshairs","faLocation","faLocationDot","faMapMarkerAlt","faLocationPin","faMapMarker","faMagnifyingGlass","faSearch","faMagnifyingGlassDollar","faSearchDollar","faMagnifyingGlassLocation","faSearchLocation","faMagnifyingGlassMinus","faSearchMinus","faMagnifyingGlassPlus","faSearchPlus","faMapLocation","faMapMarked","faMapLocationDot","faMapMarkedAlt","faMarsStrokeRight","faMarsStrokeH","faMarsStrokeUp","faMarsStrokeV","faMartiniGlass","faGlassMartiniAlt","faMartiniGlassCitrus","faCocktail","faMartiniGlassEmpty","faGlassMartini","faMasksTheater","faTheaterMasks","faMaximize","faExpandArrowsAlt","faMessage","faCommentAlt","faMicrophoneLines","faMicrophoneAlt","faMicrophoneLinesSlash","faMicrophoneAltSlash","faMinimize","faCompressArrowsAlt","faMinus","faSubtract","faMobile","faMobileAndroid","faMobilePhone","faMobileScreenButton","faMobileAlt","faMoneyBill1","faMoneyBillAlt","faMoneyBill1Wave","faMoneyBillWaveAlt","faMoneyCheckDollar","faMoneyCheckAlt","faMugSaucer","faCoffee","faNoteSticky","faStickyNote","faOutdent","faDedent","faPaintbrush","faPaintBrush","faPaste","faFileClipboard","faPenClip","faPenAlt","faPenRuler","faPencilRuler","faPenToSquare","faEdit","faPencil","faPencilAlt","faPeopleArrowsLeftRight","faPeopleArrows","faPeopleCarryBox","faPeopleCarry","faPercent","faPercentage","faPerson","faMale","faPersonBiking","faBiking","faPersonDotsFromLine","faDiagnoses","faPersonDress","faFemale","faPersonHiking","faHiking","faPersonPraying","faPray","faPersonRunning","faRunning","faPersonSkating","faSkating","faPersonSkiing","faSkiing","faPersonSkiingNordic","faSkiingNordic","faPersonSnowboarding","faSnowboarding","faPersonSwimming","faSwimmer","faPersonWalking","faWalking","faPersonWalkingWithCane","faBlind","faPhoneFlip","faPhoneAlt","faPhoneVolume","faVolumeControlPhone","faPhotoFilm","faPhotoVideo","faPlus","faAdd","faPooStorm","faPooBolt","faPrescriptionBottleMedical","faPrescriptionBottleAlt","faQuoteLeft","faQuoteLeftAlt","faQuoteRight","faQuoteRightAlt","faRectangleAd","faAd","faRectangleList","faListAlt","faRectangleXmark","faRectangleTimes","faTimesRectangle","faWindowClose","faReply","faMailReply","faReplyAll","faMailReplyAll","faRightFromBracket","faSignOutAlt","faRightLeft","faExchangeAlt","faRightLong","faLongArrowAltRight","faRightToBracket","faSignInAlt","faRotate","faSyncAlt","faRotateLeft","faRotateBack","faRotateBackward","faUndoAlt","faRotateRight","faRedoAlt","faRotateForward","faRss","faFeed","faRubleSign","faRouble","faRub","faRuble","faRupeeSign","faRupee","faScaleBalanced","faBalanceScale","faScaleUnbalanced","faBalanceScaleLeft","faScaleUnbalancedFlip","faBalanceScaleRight","faScissors","faCut","faScrewdriverWrench","faTools","faScrollTorah","faTorah","faSeedling","faSprout","faShapes","faTriangleCircleSquare","faShare","faArrowTurnRight","faMailForward","faShareFromSquare","faShareSquare","faShareNodes","faShareAlt","faShekelSign","faIls","faShekel","faSheqel","faSheqelSign","faShieldBlank","faShieldAlt","faShirt","faTShirt","faTshirt","faShop","faStoreAlt","faShopSlash","faStoreAltSlash","faShuffle","faRandom","faShuttleSpace","faSpaceShuttle","faSignHanging","faSign","faSignal","faSignal5","faSignalPerfect","faSignsPost","faMapSigns","faSliders","faSlidersH","faSort","faUnsorted","faSortDown","faSortDesc","faSortUp","faSortAsc","faSpaghettiMonsterFlying","faPastafarianism","faSpoon","faUtensilSpoon","faSprayCanSparkles","faAirFreshener","faSquareArrowUpRight","faExternalLinkSquare","faSquareCaretDown","faCaretSquareDown","faSquareCaretLeft","faCaretSquareLeft","faSquareCaretRight","faCaretSquareRight","faSquareCaretUp","faCaretSquareUp","faSquareCheck","faCheckSquare","faSquareEnvelope","faEnvelopeSquare","faSquareH","faHSquare","faSquareMinus","faMinusSquare","faSquareParking","faParking","faSquarePen","faPenSquare","faPencilSquare","faSquarePhone","faPhoneSquare","faSquarePhoneFlip","faPhoneSquareAlt","faSquarePlus","faPlusSquare","faSquarePollHorizontal","faPollH","faSquarePollVertical","faPoll","faSquareRootVariable","faSquareRootAlt","faSquareRss","faRssSquare","faSquareShareNodes","faShareAltSquare","faSquareUpRight","faExternalLinkSquareAlt","faSquareXmark","faTimesSquare","faXmarkSquare","faStarHalfStroke","faStarHalfAlt","faSterlingSign","faGbp","faPoundSign","faSuitcaseMedical","faMedkit","faTableCells","faTh","faTableCellsLarge","faThLarge","faTableColumns","faColumns","faTableList","faThList","faTableTennisPaddleBall","faPingPongPaddleBall","faTableTennis","faTablet","faTabletAndroid","faTabletScreenButton","faTabletAlt","faTachographDigital","faDigitalTachograph","faTaxi","faCab","faTemperatureEmpty","faTemperature0","faThermometer0","faThermometerEmpty","faTemperatureFull","faTemperature4","faThermometer4","faThermometerFull","faTemperatureHalf","faTemperature2","faThermometer2","faThermometerHalf","faTemperatureQuarter","faTemperature1","faThermometer1","faThermometerQuarter","faTemperatureThreeQuarters","faTemperature3","faThermometer3","faThermometerThreeQuarters","faTengeSign","faTenge","faTextSlash","faRemoveFormat","faThumbtack","faTicketSimple","faTowerBroadcast","faTrainSubway","faTrainTram","faTransgender","faTrashArrowUp","faTrashCan","faTrashCanArrowUp","faTriangleExclamation","faTruckFast","faTruckMedical","faTruckRampBox","faTty","faTurkishLiraSign","faTurnDown","faTurnUp","faTv","faUnlockKeyhole","faUpDown","faUpDownLeftRight","faUpLong","faUpRightAndDownLeftFromCenter","faUpRightFromSquare","faUserDoctor","faUserGear","faUserGroup","faUserLarge","faUserLargeSlash","faUserPen","faUserXmark","faUsersGear","faUtensils","faVanShuttle","faVideo","faVolleyball","faVolumeHigh","faVolumeLow","faVolumeXmark","faWandMagic","faWandMagicSparkles","faWaterLadder","faWeightScale","faWhiskeyGlass","faWifi","faWineGlassEmpty","faWonSign","faXmark","faYenSign","_iconsCache","fa0","fa1","fa2","fa3","fa4","fa5","fa6","fa7","fa8","fa9","faA","faAlignCenter","faAlignJustify","faAlignLeft","faAlignRight","faAnchor","faAngleDown","faAngleLeft","faAngleRight","faAngleUp","faAnkh","faArchway","faArrowDown","faArrowLeft","faArrowRight","faArrowTrendDown","faArrowTrendUp","faArrowUp","faArrowUpFromBracket","faAsterisk","faAt","faAtom","faAudioDescription","faAustralSign","faAward","faB","faBaby","faBackward","faBacon","faBacteria","faBacterium","faBahai","faBahtSign","faBarcode","faBaseballBatBall","faBed","faBell","faBellSlash","faBezierCurve","faBicycle","faBinoculars","faBiohazard","faBitcoinSign","faBlender","faBlenderPhone","faBlog","faBold","faBoltLightning","faBomb","faBone","faBong","faBook","faBookMedical","faBookOpen","faBookmark","faBorderAll","faBorderNone","faBowlingBall","faBox","faBoxOpen","faBoxTissue","faBraille","faBrain","faBrazilianRealSign","faBreadSlice","faBriefcase","faBriefcaseMedical","faBroom","faBrush","faBug","faBugSlash","faBuilding","faBullhorn","faBullseye","faBus","faC","faCalculator","faCalendar","faCalendarCheck","faCalendarDay","faCalendarMinus","faCalendarPlus","faCalendarWeek","faCameraRetro","faCameraRotate","faCampground","faCandyCane","faCannabis","faCapsules","faCarCrash","faCarSide","faCaravan","faCaretDown","faCaretLeft","faCaretRight","faCaretUp","faCarrot","faCartArrowDown","faCartPlus","faCashRegister","faCat","faCediSign","faCentSign","faCertificate","faChair","faChargingStation","faChartColumn","faChartGantt","faCheck","faCheckDouble","faCheese","faChess","faChessBishop","faChessBoard","faChessKing","faChessKnight","faChessPawn","faChessQueen","faChessRook","faChevronDown","faChevronLeft","faChevronRight","faChevronUp","faChild","faChurch","faCircle","faCircleNotch","faCity","faClapperboard","faClipboard","faClipboardCheck","faClipboardList","faClone","faClosedCaptioning","faCloud","faCloudMeatball","faCloudMoon","faCloudMoonRain","faCloudRain","faCloudShowersHeavy","faCloudSun","faCloudSunRain","faClover","faCode","faCodeBranch","faCodeCommit","faCodeCompare","faCodeFork","faCodeMerge","faCodePullRequest","faCoins","faColonSign","faComment","faCommentDollar","faCommentMedical","faCommentSlash","faComments","faCommentsDollar","faCompactDisc","faCompass","faCompress","faCookie","faCookieBite","faCopy","faCopyright","faCouch","faCrop","faCross","faCrosshairs","faCrow","faCrown","faCrutch","faCruzeiroSign","faCube","faCubes","faD","faDatabase","faDemocrat","faDharmachakra","faDiagramNext","faDiagramPredecessor","faDiagramSuccessor","faDiamond","faDice","faDiceD20","faDiceD6","faDiceFive","faDiceFour","faDiceOne","faDiceSix","faDiceThree","faDiceTwo","faDisease","faDivide","faDna","faDog","faDongSign","faDoorClosed","faDoorOpen","faDove","faDownload","faDragon","faDrawPolygon","faDrum","faDrumSteelpan","faDrumstickBite","faDumbbell","faDumpster","faDumpsterFire","faDungeon","faE","faEgg","faEject","faElevator","faEnvelope","faEnvelopeOpen","faEnvelopeOpenText","faEquals","faEraser","faEthernet","faExclamation","faExpand","faEye","faEyeSlash","faF","faFan","faFaucet","faFax","faFeather","faFile","faFileAudio","faFileCode","faFileContract","faFileCsv","faFileExcel","faFileImage","faFileInvoice","faFileInvoiceDollar","faFileMedical","faFilePdf","faFilePowerpoint","faFilePrescription","faFileSignature","faFileVideo","faFileWord","faFill","faFillDrip","faFilm","faFilter","faFilterCircleXmark","faFingerprint","faFire","faFireExtinguisher","faFish","faFlag","faFlagCheckered","faFlagUsa","faFlask","faFlorinSign","faFolder","faFolderMinus","faFolderOpen","faFolderPlus","faFolderTree","faFont","faForward","faFrancSign","faFrog","faG","faGamepad","faGasPump","faGem","faGenderless","faGhost","faGift","faGifts","faGlasses","faGlobe","faGopuram","faGreaterThan","faGreaterThanEqual","faGripLines","faGripLinesVertical","faGripVertical","faGuaraniSign","faGuitar","faGun","faH","faHammer","faHamsa","faHandHolding","faHandHoldingHeart","faHandHoldingMedical","faHandLizard","faHandMiddleFinger","faHandPeace","faHandPointDown","faHandPointLeft","faHandPointRight","faHandPointUp","faHandPointer","faHandScissors","faHandSparkles","faHandSpock","faHandsClapping","faHandsHolding","faHandshake","faHandshakeSlash","faHanukiah","faHashtag","faHatCowboy","faHatCowboySide","faHatWizard","faHeadSideCough","faHeadSideCoughSlash","faHeadSideMask","faHeadSideVirus","faHeadphones","faHeadset","faHeart","faHelicopter","faHighlighter","faHippo","faHockeyPuck","faHollyBerry","faHorse","faHorseHead","faHospitalUser","faHotdog","faHotel","faHourglassEmpty","faHouseChimneyUser","faHouseChimneyWindow","faHouseCrack","faHouseMedical","faI","faICursor","faIceCream","faIcicles","faIdBadge","faIgloo","faImage","faImages","faInbox","faIndent","faIndustry","faInfinity","faInfo","faItalic","faJ","faJedi","faJoint","faK","faKaaba","faKey","faKeyboard","faKhanda","faKipSign","faKiwiBird","faL","faLandmark","faLanguage","faLaptop","faLaptopCode","faLaptopMedical","faLariSign","faLayerGroup","faLeaf","faLemon","faLessThan","faLessThanEqual","faLifeRing","faLightbulb","faLiraSign","faLitecoinSign","faLocationArrow","faLock","faLockOpen","faLungs","faLungsVirus","faM","faMagnet","faManatSign","faMap","faMapPin","faMarker","faMars","faMarsAndVenus","faMarsDouble","faMarsStroke","faMask","faMaskFace","faMedal","faMemory","faMenorah","faMercury","faMeteor","faMicrochip","faMicrophone","faMicrophoneSlash","faMicroscope","faMillSign","faMitten","faMobileButton","faMoneyBill","faMoneyBillWave","faMoneyCheck","faMonument","faMoon","faMortarPestle","faMosque","faMotorcycle","faMountain","faMugHot","faMusic","faN","faNairaSign","faNetworkWired","faNeuter","faNewspaper","faNotEqual","faNotesMedical","faO","faObjectGroup","faObjectUngroup","faOilCan","faOm","faOtter","faP","faPager","faPaintRoller","faPalette","faPallet","faPanorama","faPaperPlane","faPaperclip","faParachuteBox","faParagraph","faPassport","faPause","faPaw","faPeace","faPen","faPenFancy","faPenNib","faPepperHot","faPersonBooth","faPesetaSign","faPesoSign","faPhone","faPhoneSlash","faPiggyBank","faPills","faPizzaSlice","faPlaceOfWorship","faPlane","faPlaneArrival","faPlaneDeparture","faPlaneSlash","faPlay","faPlug","faPlusMinus","faPodcast","faPoo","faPoop","faPowerOff","faPrescription","faPrescriptionBottle","faPrint","faPumpMedical","faPumpSoap","faPuzzlePiece","faQ","faQrcode","faQuestion","faR","faRadiation","faRainbow","faReceipt","faRecordVinyl","faRecycle","faRegistered","faRepeat","faRepublican","faRestroom","faRetweet","faRibbon","faRing","faRoad","faRobot","faRocket","faRoute","faRuler","faRulerCombined","faRulerHorizontal","faRulerVertical","faRupiahSign","faS","faSailboat","faSatellite","faSatelliteDish","faSchool","faScrewdriver","faScroll","faSdCard","faSection","faServer","faShield","faShieldVirus","faShip","faShoePrints","faShower","faShrimp","faSignature","faSimCard","faSink","faSitemap","faSkull","faSkullCrossbones","faSlash","faSleigh","faSmog","faSmoking","faSnowflake","faSnowman","faSnowplow","faSoap","faSocks","faSolarPanel","faSpa","faSpellCheck","faSpider","faSpinner","faSplotch","faSprayCan","faSquare","faSquareFull","faStairs","faStamp","faStar","faStarAndCrescent","faStarHalf","faStarOfDavid","faStarOfLife","faStethoscope","faStop","faStopwatch","faStopwatch20","faStore","faStoreSlash","faStreetView","faStrikethrough","faStroopwafel","faSubscript","faSuitcase","faSuitcaseRolling","faSun","faSuperscript","faSwatchbook","faSynagogue","faSyringe","faT","faTable","faTabletButton","faTablets","faTag","faTags","faTape","faTeeth","faTeethOpen","faTemperatureHigh","faTemperatureLow","faTerminal","faTextHeight","faTextWidth","faThermometer","faThumbsDown","faThumbsUp","faThumbTack","faTicket","faTicketAlt","faTimeline","faToggleOff","faToggleOn","faToilet","faToiletPaper","faToiletPaperSlash","faToolbox","faTooth","faToriiGate","faBroadcastTower","faTractor","faTrademark","faTrafficLight","faTrailer","faTrain","faSubway","faTram","faTransgenderAlt","faTrash","faTrashRestore","faTrashAlt","faTrashRestoreAlt","faTree","faExclamationTriangle","faWarning","faTrophy","faTruck","faShippingFast","faAmbulance","faTruckMonster","faTruckMoving","faTruckPickup","faTruckLoading","faTeletype","faTry","faTurkishLira","faLevelDownAlt","faLevelUpAlt","faTelevision","faTvAlt","faU","faUmbrella","faUmbrellaBeach","faUnderline","faUniversalAccess","faUnlock","faUnlockAlt","faArrowsAltV","faArrowsAlt","faLongArrowAltUp","faExpandAlt","faExternalLinkAlt","faUpload","faUser","faUserAstronaut","faUserCheck","faUserClock","faUserMd","faUserCog","faUserGraduate","faUserFriends","faUserInjured","faUserAlt","faUserAltSlash","faUserLock","faUserMinus","faUserNinja","faUserNurse","faUserEdit","faUserPlus","faUserSecret","faUserShield","faUserSlash","faUserTag","faUserTie","faUserTimes","faUsers","faUsersCog","faUsersSlash","faCutlery","faV","faShuttleVan","faVault","faVectorSquare","faVenus","faVenusDouble","faVenusMars","faVest","faVestPatches","faVial","faVials","faVideoCamera","faVideoSlash","faVihara","faVirus","faVirusCovid","faVirusCovidSlash","faVirusSlash","faViruses","faVoicemail","faVolleyballBall","faVolumeUp","faVolumeDown","faVolumeOff","faVolumeMute","faVolumeTimes","faVrCardboard","faW","faWallet","faMagic","faMagicWandSparkles","faWandSparkles","faWarehouse","faWater","faLadderWater","faSwimmingPool","faWaveSquare","faWeightHanging","faWeight","faWheelchair","faGlassWhiskey","faWifi3","faWifiStrong","faWind","faWindowMaximize","faWindowMinimize","faWindowRestore","faWineBottle","faWineGlass","faWineGlassAlt","faKrw","faWon","faWrench","faX","faXRay","faClose","faMultiply","faRemove","faTimes","faY","faCny","faJpy","faRmb","faYen","faYinYang","faZ","fas","imageRef","registerRef","card","Photo","Video","Writing","Music","Code","shortenedTitle","hidden","inView","chosenId","postId","setChosenId","click","wayOut","rel","description","src","imageUrl","alt","fetchPostAsync","asJson","fetch","cache","redirect","referrer","credentials","headers","response","json","getPosts","getExternalData","GlobalContext","setPostFilter","loaderShowing","postFilter","loading","setLoading","setLoaderShowing","posts","setPosts","externalData","setExternalData","imagesLoaded","postResult","moment","created","post","preload","Image","onload","globalContext","cards","setCards","cardsRef","scrollDebounceID","scrollHandler","checkIfInView","active","ready","rect","clientHeight","innerHeight","bottom","find","hide","setHide","changeFilter","youtubeSubs","toLocaleString","youtubeViews","githubFollowers","githubRepos","ThemeContext","useBootstrapPrefix","Container","bsPrefix","fluid","_jsx","setInView","debounceId","calcVisibility","scrollY","starGraphics","stars","numberOfStars","innerWidth","speed","graphic","spaces","star","animationDelay","initialSettings","thisRef","FPS","waitForAnimationFrame","ctx","canvas","isMouseDown","isSecondaryMouseDown","interval","delta","lastX","lastY","canvasOffsetX","canvasOffsetY","stage","passParams","updateIntervalID","lastTime","elapsed","scene","camera","controls","renderer","initialize","THREE","Scene","PerspectiveCamera","WebGLRenderer","setPixelRatio","devicePixelRatio","setSize","TrackballControls","rotateSpeed","zoomSpeed","panSpeed","noZoom","noPan","staticMoving","dynamicDampingFactor","domElement","app","PIXI","Application","antialias","transparent","resolution","autoResize","getElementById","offsetLeft","offsetTop","getContext","allowContextMenu","oncontextmenu","touchStartHanlder","touchMoveHanlder","touchEndHanlder","mouseMoveHandler","mouseDownHandler","mouseUpHandler","keyDownHandler","keyUpHandler","keyPressHandler","deviceOrientationEvent","tiltHandler","deviceMotionEvent","initConsoleFeatures","initSettings","doInit","DF","FullRestart","clearInterval","Locked","Regenerate","Restart","SetFPS","setFPS","Values","init","fps","setInterval","update","run","settingsOverrides","settingOverride","setupSettingOverride","Max","Min","TargetValue","Update","Value","TransitionFrames","Floored","Ceiled","interpolateMove","clientWidth","distance","sqrt","steps","intervalX","intervalY","step","gamma","beta","acceleration","PI","alpha","tilt","mouseDown","secondaryMouseDown","mouseUp","secondaryMouseUp","mouseMove","secondaryMouseMove","offsetX","offsetY","keyUp","keyDown","keyPress","CANVAS_WIDTH","FADE","NOR_HINT_COLOR","AND_HINT_COLOR","FLIP_HINT_COLOR","BIT_BORDER_COLOR","shiftRegisterBits","targetBits","hintColors","moveCount","totalMoveCount","roundMessages","wonRound","setWonRound","wonGame","setWonGame","wonGameRef","setRound","roundRef","resetShiftRegisterBits","shiftBitIntoRegister","bit","checkForWin","flipBit","andBits","bit1","bit2","norBits","allCorrect","getModifiedBit","resetGame","targetRound","setupRoundBits","roundIndex","currentIndex","fillStyle","strokeStyle","lineWidth","clearRect","font","fillText","beginPath","arc","stroke","DemoFramework","newRound","winRound","backgroundColor","AppContent","isLocalhost","Boolean","hostname","registerValidSW","swUrl","serviceWorker","register","registration","onupdatefound","installingWorker","installing","onstatechange","controller","onUpdate","onSuccess","ReactDOM","URL","origin","contentType","status","unregister","reload","checkValidServiceWorker"],"sourceRoot":""}