diff --git a/404.html b/404.html index a7ce366ba3b..9246a2546be 100644 --- a/404.html +++ b/404.html @@ -14,7 +14,7 @@ - + diff --git a/assets/js/0cd801b6.768947b9.js b/assets/js/0cd801b6.768947b9.js new file mode 100644 index 00000000000..20737a54bac --- /dev/null +++ b/assets/js/0cd801b6.768947b9.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkreact_navigation_website_next=self.webpackChunkreact_navigation_website_next||[]).push([[44554],{114:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>c,contentTitle:()=>s,default:()=>x,frontMatter:()=>o,metadata:()=>d,toc:()=>h});var r=t(85893),a=t(11151),i=t(74866),l=t(85162);const o={id:"elements",title:"Elements Library",sidebar_label:"Elements"},s=void 0,d={id:"elements",title:"Elements Library",description:"A component library containing the UI elements and helpers used in React Navigation. It can be useful if you're building your own navigator, or want to reuse a default functionality in your app.",source:"@site/versioned_docs/version-6.x/elements.md",sourceDirName:".",slug:"/elements",permalink:"/docs/elements",draft:!1,unlisted:!1,editUrl:"https://github.com/react-navigation/react-navigation.github.io/edit/main/versioned_docs/version-6.x/elements.md",tags:[],version:"6.x",frontMatter:{id:"elements",title:"Elements Library",sidebar_label:"Elements"},sidebar:"docs",previous:{title:"Developer tools",permalink:"/docs/devtools"},next:{title:"Tab View",permalink:"/docs/tab-view"}},c={},h=[{value:"Installation",id:"installation",level:2},{value:"Components",id:"components",level:2},{value:"Header",id:"header",level:3},{value:"headerTitle",id:"headertitle",level:4},{value:"headerTitleAlign",id:"headertitlealign",level:4},{value:"headerTitleAllowFontScaling",id:"headertitleallowfontscaling",level:4},{value:"headerLeft",id:"headerleft",level:4},{value:"headerRight",id:"headerright",level:4},{value:"headerShadowVisible",id:"headershadowvisible",level:4},{value:"headerStyle",id:"headerstyle",level:4},{value:"headerTitleStyle",id:"headertitlestyle",level:4},{value:"headerLeftContainerStyle",id:"headerleftcontainerstyle",level:4},{value:"headerRightContainerStyle",id:"headerrightcontainerstyle",level:4},{value:"headerTitleContainerStyle",id:"headertitlecontainerstyle",level:4},{value:"headerBackgroundContainerStyle",id:"headerbackgroundcontainerstyle",level:4},{value:"headerTintColor",id:"headertintcolor",level:4},{value:"headerPressColor",id:"headerpresscolor",level:4},{value:"headerPressOpacity",id:"headerpressopacity",level:4},{value:"headerTransparent",id:"headertransparent",level:4},{value:"headerBackground",id:"headerbackground",level:4},{value:"headerStatusBarHeight",id:"headerstatusbarheight",level:4},{value:"HeaderBackground",id:"headerbackground-1",level:3},{value:"HeaderTitle",id:"headertitle-1",level:3},{value:"HeaderBackButton",id:"headerbackbutton",level:3},{value:"MissingIcon",id:"missingicon",level:3},{value:"PlatformPressable",id:"platformpressable",level:3},{value:"ResourceSavingView",id:"resourcesavingview",level:3},{value:"Utilities",id:"utilities",level:2},{value:"SafeAreaProviderCompat",id:"safeareaprovidercompat",level:3},{value:"HeaderBackContext",id:"headerbackcontext",level:3},{value:"HeaderShownContext",id:"headershowncontext",level:3},{value:"HeaderHeightContext",id:"headerheightcontext",level:3},{value:"useHeaderHeight",id:"useheaderheight",level:3},{value:"getDefaultHeaderHeight",id:"getdefaultheaderheight",level:3},{value:"getHeaderTitle",id:"getheadertitle",level:3}];function u(e){const n={a:"a",code:"code",h2:"h2",h3:"h3",h4:"h4",li:"li",p:"p",pre:"pre",ul:"ul",...(0,a.a)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.p,{children:"A component library containing the UI elements and helpers used in React Navigation. It can be useful if you're building your own navigator, or want to reuse a default functionality in your app."}),"\n",(0,r.jsx)(n.h2,{id:"installation",children:"Installation"}),"\n",(0,r.jsxs)(n.p,{children:["To use this package, ensure that you have ",(0,r.jsxs)(n.a,{href:"/docs/getting-started",children:[(0,r.jsx)(n.code,{children:"@react-navigation/native"})," and its dependencies (follow this guide)"]}),", then install ",(0,r.jsx)(n.a,{href:"https://github.com/react-navigation/react-navigation/tree/main/packages/elements",children:(0,r.jsx)(n.code,{children:"@react-navigation/elements"})}),":"]}),"\n",(0,r.jsxs)(i.Z,{groupId:"npm2yarn",children:[(0,r.jsx)(l.Z,{value:"npm",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-bash",children:"npm install @react-navigation/elements\n"})})}),(0,r.jsx)(l.Z,{value:"yarn",label:"Yarn",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-bash",children:"yarn add @react-navigation/elements\n"})})}),(0,r.jsx)(l.Z,{value:"pnpm",label:"pnpm",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-bash",children:"pnpm add @react-navigation/elements\n"})})})]}),"\n",(0,r.jsx)(n.h2,{id:"components",children:"Components"}),"\n",(0,r.jsx)(n.h3,{id:"header",children:(0,r.jsx)(n.code,{children:"Header"})}),"\n",(0,r.jsx)(n.p,{children:"A component that can be used as a header. This is used by all the navigators by default."}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { Header } from '@react-navigation/elements';\n\nfunction MyHeader() {\n return
;\n}\n"})}),"\n",(0,r.jsxs)(n.p,{children:["To use the header in a navigator, you can use the ",(0,r.jsx)(n.code,{children:"header"})," option in the screen options:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { Header, getHeaderTitle } from '@react-navigation/elements';\n\nconst Stack = createNativeStackNavigator();\n\nfunction MyStack() {\n return (\n (\n
\n ),\n }}\n >\n \n \n );\n}\n"})}),"\n",(0,r.jsx)(n.p,{children:"It accepts the following props:"}),"\n",(0,r.jsx)(n.h4,{id:"headertitle",children:(0,r.jsx)(n.code,{children:"headerTitle"})}),"\n",(0,r.jsxs)(n.p,{children:["String or a function that returns a React Element to be used by the header. Defaults to scene ",(0,r.jsx)(n.code,{children:"title"}),". When a function is specified, it receives an object containing ",(0,r.jsx)(n.code,{children:"allowFontScaling"}),", ",(0,r.jsx)(n.code,{children:"tintColor"}),", ",(0,r.jsx)(n.code,{children:"style"})," and ",(0,r.jsx)(n.code,{children:"children"})," properties. The ",(0,r.jsx)(n.code,{children:"children"})," property contains the title string."]}),"\n",(0,r.jsx)(n.h4,{id:"headertitlealign",children:(0,r.jsx)(n.code,{children:"headerTitleAlign"})}),"\n",(0,r.jsx)(n.p,{children:"How to align the header title. Possible values:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.code,{children:"left"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.code,{children:"center"})}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Defaults to ",(0,r.jsx)(n.code,{children:"center"})," on iOS and ",(0,r.jsx)(n.code,{children:"left"})," on Android."]}),"\n",(0,r.jsx)(n.h4,{id:"headertitleallowfontscaling",children:(0,r.jsx)(n.code,{children:"headerTitleAllowFontScaling"})}),"\n",(0,r.jsx)(n.p,{children:"Whether header title font should scale to respect Text Size accessibility settings. Defaults to false."}),"\n",(0,r.jsx)(n.h4,{id:"headerleft",children:(0,r.jsx)(n.code,{children:"headerLeft"})}),"\n",(0,r.jsx)(n.p,{children:"Function which returns a React Element to display on the left side of the header. You can use it to implement your custom left button, for example:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:' (\n {\n // Do something\n }}\n />\n ),\n }}\n/>\n'})}),"\n",(0,r.jsx)(n.h4,{id:"headerright",children:(0,r.jsx)(n.code,{children:"headerRight"})}),"\n",(0,r.jsx)(n.p,{children:"Function which returns a React Element to display on the right side of the header."}),"\n",(0,r.jsx)(n.h4,{id:"headershadowvisible",children:(0,r.jsx)(n.code,{children:"headerShadowVisible"})}),"\n",(0,r.jsx)(n.p,{children:"Whether to hide the elevation shadow (Android) or the bottom border (iOS) on the header."}),"\n",(0,r.jsx)(n.p,{children:"This is a short-hand for the following styles:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"{\n elevation: 0,\n shadowOpacity: 0,\n borderBottomWidth: 0,\n}\n"})}),"\n",(0,r.jsxs)(n.p,{children:["If the above styles are specified in ",(0,r.jsx)(n.code,{children:"headerStyle"})," along with ",(0,r.jsx)(n.code,{children:"headerShadowVisible: false"}),", then ",(0,r.jsx)(n.code,{children:"headerShadowVisible: false"})," will take precedence."]}),"\n",(0,r.jsx)(n.h4,{id:"headerstyle",children:(0,r.jsx)(n.code,{children:"headerStyle"})}),"\n",(0,r.jsx)(n.p,{children:"Style object for the header. You can specify a custom background color here, for example."}),"\n",(0,r.jsx)(n.h4,{id:"headertitlestyle",children:(0,r.jsx)(n.code,{children:"headerTitleStyle"})}),"\n",(0,r.jsx)(n.p,{children:"Style object for the title component"}),"\n",(0,r.jsx)(n.h4,{id:"headerleftcontainerstyle",children:(0,r.jsx)(n.code,{children:"headerLeftContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Customize the style for the container of the ",(0,r.jsx)(n.code,{children:"headerLeft"})," component, for example to add padding."]}),"\n",(0,r.jsx)(n.h4,{id:"headerrightcontainerstyle",children:(0,r.jsx)(n.code,{children:"headerRightContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Customize the style for the container of the ",(0,r.jsx)(n.code,{children:"headerRight"})," component, for example to add padding."]}),"\n",(0,r.jsx)(n.h4,{id:"headertitlecontainerstyle",children:(0,r.jsx)(n.code,{children:"headerTitleContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Customize the style for the container of the ",(0,r.jsx)(n.code,{children:"headerTitle"})," component, for example to add padding."]}),"\n",(0,r.jsxs)(n.p,{children:["By default, ",(0,r.jsx)(n.code,{children:"headerTitleContainerStyle"})," is with an absolute position style and offsets both ",(0,r.jsx)(n.code,{children:"left"})," and ",(0,r.jsx)(n.code,{children:"right"}),". This may lead to white space or overlap between ",(0,r.jsx)(n.code,{children:"headerLeft"})," and ",(0,r.jsx)(n.code,{children:"headerTitle"})," if a customized ",(0,r.jsx)(n.code,{children:"headerLeft"})," is used. It can be solved by adjusting ",(0,r.jsx)(n.code,{children:"left"})," and ",(0,r.jsx)(n.code,{children:"right"})," style in ",(0,r.jsx)(n.code,{children:"headerTitleContainerStyle"})," and ",(0,r.jsx)(n.code,{children:"marginHorizontal"})," in ",(0,r.jsx)(n.code,{children:"headerTitleStyle"}),"."]}),"\n",(0,r.jsx)(n.h4,{id:"headerbackgroundcontainerstyle",children:(0,r.jsx)(n.code,{children:"headerBackgroundContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Style object for the container of the ",(0,r.jsx)(n.code,{children:"headerBackground"})," element."]}),"\n",(0,r.jsx)(n.h4,{id:"headertintcolor",children:(0,r.jsx)(n.code,{children:"headerTintColor"})}),"\n",(0,r.jsx)(n.p,{children:"Tint color for the header"}),"\n",(0,r.jsx)(n.h4,{id:"headerpresscolor",children:(0,r.jsx)(n.code,{children:"headerPressColor"})}),"\n",(0,r.jsx)(n.p,{children:"Color for material ripple (Android >= 5.0 only)"}),"\n",(0,r.jsx)(n.h4,{id:"headerpressopacity",children:(0,r.jsx)(n.code,{children:"headerPressOpacity"})}),"\n",(0,r.jsx)(n.p,{children:"Press opacity for the buttons in header (Android < 5.0, and iOS)"}),"\n",(0,r.jsx)(n.h4,{id:"headertransparent",children:(0,r.jsx)(n.code,{children:"headerTransparent"})}),"\n",(0,r.jsxs)(n.p,{children:["Defaults to ",(0,r.jsx)(n.code,{children:"false"}),". If ",(0,r.jsx)(n.code,{children:"true"}),", the header will not have a background unless you explicitly provide it with ",(0,r.jsx)(n.code,{children:"headerBackground"}),". The header will also float over the screen so that it overlaps the content underneath."]}),"\n",(0,r.jsx)(n.p,{children:"This is useful if you want to render a semi-transparent header or a blurred background."}),"\n",(0,r.jsx)(n.p,{children:"Note that if you don't want your content to appear under the header, you need to manually add a top margin to your content. React Navigation won't do it automatically."}),"\n",(0,r.jsxs)(n.p,{children:["To get the height of the header, you can use ",(0,r.jsx)(n.a,{href:"#headerheightcontext",children:(0,r.jsx)(n.code,{children:"HeaderHeightContext"})})," with ",(0,r.jsx)(n.a,{href:"https://reactjs.org/docs/context.html#contextconsumer",children:"React's Context API"})," or ",(0,r.jsx)(n.a,{href:"#useheaderheight",children:(0,r.jsx)(n.code,{children:"useHeaderHeight"})}),"."]}),"\n",(0,r.jsx)(n.h4,{id:"headerbackground",children:(0,r.jsx)(n.code,{children:"headerBackground"})}),"\n",(0,r.jsx)(n.p,{children:"Function which returns a React Element to render as the background of the header. This is useful for using backgrounds such as an image or a gradient."}),"\n",(0,r.jsxs)(n.p,{children:["For example, you can use this with ",(0,r.jsx)(n.code,{children:"headerTransparent"})," to render a blur view to create a translucent header."]}),"\n",(0,r.jsx)("samp",{id:"header-blur"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:'import { BlurView } from \'expo-blur\';\n\n// ...\n\n (\n \n ),\n }}\n/>;\n'})}),"\n",(0,r.jsx)(n.h4,{id:"headerstatusbarheight",children:(0,r.jsx)(n.code,{children:"headerStatusBarHeight"})}),"\n",(0,r.jsx)(n.p,{children:"Extra padding to add at the top of header to account for translucent status bar. By default, it uses the top value from the safe area insets of the device. Pass 0 or a custom value to disable the default behavior, and customize the height."}),"\n",(0,r.jsx)(n.h3,{id:"headerbackground-1",children:(0,r.jsx)(n.code,{children:"HeaderBackground"})}),"\n",(0,r.jsxs)(n.p,{children:["A component containing the styles used in the background of the header, such as the background color and shadow. It's the default for ",(0,r.jsx)(n.a,{href:"#headerbackground",children:(0,r.jsx)(n.code,{children:"headerBackground"})}),". It accepts the same props as a ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/view",children:(0,r.jsx)(n.code,{children:"View"})}),"."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headertitle-1",children:(0,r.jsx)(n.code,{children:"HeaderTitle"})}),"\n",(0,r.jsxs)(n.p,{children:["A component used to show the title text in header. It's the default for ",(0,r.jsx)(n.a,{href:"#headertitle",children:(0,r.jsx)(n.code,{children:"headerTitle"})}),". It accepts the same props as a ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/Text",children:(0,r.jsx)(n.code,{children:"Text"})}),"."]}),"\n",(0,r.jsxs)(n.p,{children:["The color of title defaults to the ",(0,r.jsx)(n.a,{href:"/docs/themes",children:"theme text color"}),". You can override it by passing a ",(0,r.jsx)(n.code,{children:"tintColor"})," prop."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"Hello\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headerbackbutton",children:(0,r.jsx)(n.code,{children:"HeaderBackButton"})}),"\n",(0,r.jsxs)(n.p,{children:["A component used to show the back button header. It's the default for ",(0,r.jsx)(n.a,{href:"#headerleft",children:(0,r.jsx)(n.code,{children:"headerLeft"})})," in the ",(0,r.jsx)(n.a,{href:"/docs/stack-navigator",children:"stack navigator"}),". It accepts the following props:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"disabled"})," - Boolean which controls Whether the button is disabled."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"onPress"})," - Callback to call when the button is pressed."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"pressColor"})," - Color for material ripple (Android >= 5.0 only)."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"backImage"})," - Function which returns a React Element to display custom image in header's back button."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"tintColor"})," - Tint color for the header."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"label"})," - Label text for the button. Usually the title of the previous screen. By default, this is only shown on iOS."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"truncatedLabel"})," - Label text to show when there isn't enough space for the full label."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"labelVisible"})," - Whether the label text is visible. Defaults to ",(0,r.jsx)(n.code,{children:"true"})," on iOS and ",(0,r.jsx)(n.code,{children:"false"})," on Android."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"labelStyle"})," - Style object for the label."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"allowFontScaling"})," - Whether label font should scale to respect Text Size accessibility settings."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"onLabelLayout"})," - Callback to trigger when the size of the label changes."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"screenLayout"})," - Layout of the screen."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"titleLayout"})," - Layout of the title element in the header."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"canGoBack"})," - Boolean to indicate whether it's possible to navigate back in stack."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"accessibilityLabel"})," - Accessibility label for the button for screen readers."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"testID"})," - ID to locate this button in tests."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"style"})," - Style object for the button."]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:" console.log('back pressed')} />\n"})}),"\n",(0,r.jsx)(n.h3,{id:"missingicon",children:(0,r.jsx)(n.code,{children:"MissingIcon"})}),"\n",(0,r.jsx)(n.p,{children:"A component that renders a missing icon symbol. It can be used as a fallback for icons to show that there's a missing icon. It accepts the following props:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"color"})," - Color of the icon."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"size"})," - Size of the icon."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"style"})," - Additional styles for the icon."]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"platformpressable",children:(0,r.jsx)(n.code,{children:"PlatformPressable"})}),"\n",(0,r.jsxs)(n.p,{children:["A component which provides an abstraction on top of ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/Pressable",children:(0,r.jsx)(n.code,{children:"Pressable"})})," to handle platform differences. In addition to ",(0,r.jsx)(n.code,{children:"Pressable"}),"'s props, it accepts following additional props:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"pressColor"})," - Color of material ripple on Android when it's pressed"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"pressOpacity"})," - Opacity when it's pressed if material ripple isn't supported by the platform"]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"resourcesavingview",children:(0,r.jsx)(n.code,{children:"ResourceSavingView"})}),"\n",(0,r.jsxs)(n.p,{children:["A component which aids in improving performance for inactive screens by utilizing ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/view#removeclippedsubviews",children:(0,r.jsx)(n.code,{children:"removeClippedSubviews"})}),". It accepts a ",(0,r.jsx)(n.code,{children:"visible"})," prop to indicate whether a screen should be clipped."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"{/* Content */}\n"})}),"\n",(0,r.jsx)(n.h2,{id:"utilities",children:"Utilities"}),"\n",(0,r.jsx)(n.h3,{id:"safeareaprovidercompat",children:(0,r.jsx)(n.code,{children:"SafeAreaProviderCompat"})}),"\n",(0,r.jsxs)(n.p,{children:["A wrapper over the ",(0,r.jsx)(n.code,{children:"SafeAreaProvider"})," component from ",(0,r.jsx)(n.a,{href:"https://github.com/th3rdwave/react-native-safe-area-context",children:"`react-native-safe-area-context"})," which includes initial values."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"{/* Your components */}\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headerbackcontext",children:(0,r.jsx)(n.code,{children:"HeaderBackContext"})}),"\n",(0,r.jsx)(n.p,{children:"React context that can be used to get the back title of the parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { HeaderBackContext } from '@react-navigation/elements';\n\n// ...\n\n\n {(headerBack) => {\n if (headerBack) {\n const backTitle = headerBack.title;\n\n /* render something */\n }\n\n /* render something */\n }}\n;\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headershowncontext",children:(0,r.jsx)(n.code,{children:"HeaderShownContext"})}),"\n",(0,r.jsx)(n.p,{children:"React context that can be used to check if a header is visible in a parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { HeaderShownContext } from '@react-navigation/elements';\n\n// ...\n\n\n {(headerShown) => {\n /* render something */\n }}\n;\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headerheightcontext",children:(0,r.jsx)(n.code,{children:"HeaderHeightContext"})}),"\n",(0,r.jsx)(n.p,{children:"React context that can be used to get the height of the nearest visible header in a parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { HeaderHeightContext } from '@react-navigation/elements';\n\n// ...\n\n\n {(headerHeight) => {\n /* render something */\n }}\n;\n"})}),"\n",(0,r.jsx)(n.h3,{id:"useheaderheight",children:(0,r.jsx)(n.code,{children:"useHeaderHeight"})}),"\n",(0,r.jsx)(n.p,{children:"Hook that returns the height of the nearest visible header in the parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { useHeaderHeight } from '@react-navigation/elements';\n\n// ...\n\nconst headerHeight = useHeaderHeight();\n"})}),"\n",(0,r.jsx)(n.h3,{id:"getdefaultheaderheight",children:(0,r.jsx)(n.code,{children:"getDefaultHeaderHeight"})}),"\n",(0,r.jsx)(n.p,{children:"Helper that returns the default header height. It takes the following parameters:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"layout"})," - Layout of the screen, i.e. an object containing ",(0,r.jsx)(n.code,{children:"height"})," and ",(0,r.jsx)(n.code,{children:"width"})," properties."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"statusBarHeight"})," - height of the statusbar"]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"getheadertitle",children:(0,r.jsx)(n.code,{children:"getHeaderTitle"})}),"\n",(0,r.jsx)(n.p,{children:"Helper that returns the title text to use in header. It takes the following parameters:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"options"})," - The options object of the screen."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"fallback"})," - Fallback title string if no title was found in options."]}),"\n"]})]})}function x(e={}){const{wrapper:n}={...(0,a.a)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(u,{...e})}):u(e)}},85162:(e,n,t)=>{t.d(n,{Z:()=>l});t(67294);var r=t(86010);const a={tabItem:"tabItem_Ymn6"};var i=t(85893);function l(e){let{children:n,hidden:t,className:l}=e;return(0,i.jsx)("div",{role:"tabpanel",className:(0,r.Z)(a.tabItem,l),hidden:t,children:n})}},74866:(e,n,t)=>{t.d(n,{Z:()=>w});var r=t(67294),a=t(86010),i=t(12466),l=t(16550),o=t(20469),s=t(91980),d=t(67392),c=t(50012);function h(e){var n,t;return null!=(n=null==(t=r.Children.toArray(e).filter((e=>"\n"!==e)).map((e=>{if(!e||(0,r.isValidElement)(e)&&function(e){const{props:n}=e;return!!n&&"object"==typeof n&&"value"in n}(e))return e;throw new Error("Docusaurus error: Bad child <"+("string"==typeof e.type?e.type:e.type.name)+'>: all children of the component should be , and every should have a unique "value" prop.')})))?void 0:t.filter(Boolean))?n:[]}function u(e){const{values:n,children:t}=e;return(0,r.useMemo)((()=>{const e=null!=n?n:function(e){return h(e).map((e=>{let{props:{value:n,label:t,attributes:r,default:a}}=e;return{value:n,label:t,attributes:r,default:a}}))}(t);return function(e){const n=(0,d.l)(e,((e,n)=>e.value===n.value));if(n.length>0)throw new Error('Docusaurus error: Duplicate values "'+n.map((e=>e.value)).join(", ")+'" found in . Every value needs to be unique.')}(e),e}),[n,t])}function x(e){let{value:n,tabValues:t}=e;return t.some((e=>e.value===n))}function p(e){let{queryString:n=!1,groupId:t}=e;const a=(0,l.k6)(),i=function(e){let{queryString:n=!1,groupId:t}=e;if("string"==typeof n)return n;if(!1===n)return null;if(!0===n&&!t)throw new Error('Docusaurus error: The component groupId prop is required if queryString=true, because this value is used as the search param name. You can also provide an explicit value such as queryString="my-search-param".');return null!=t?t:null}({queryString:n,groupId:t});return[(0,s._X)(i),(0,r.useCallback)((e=>{if(!i)return;const n=new URLSearchParams(a.location.search);n.set(i,e),a.replace({...a.location,search:n.toString()})}),[i,a])]}function j(e){const{defaultValue:n,queryString:t=!1,groupId:a}=e,i=u(e),[l,s]=(0,r.useState)((()=>function(e){var n;let{defaultValue:t,tabValues:r}=e;if(0===r.length)throw new Error("Docusaurus error: the component requires at least one children component");if(t){if(!x({value:t,tabValues:r}))throw new Error('Docusaurus error: The has a defaultValue "'+t+'" but none of its children has the corresponding value. Available values are: '+r.map((e=>e.value)).join(", ")+". If you intend to show no default tab, use defaultValue={null} instead.");return t}const a=null!=(n=r.find((e=>e.default)))?n:r[0];if(!a)throw new Error("Unexpected error: 0 tabValues");return a.value}({defaultValue:n,tabValues:i}))),[d,h]=p({queryString:t,groupId:a}),[j,g]=function(e){let{groupId:n}=e;const t=function(e){return e?"docusaurus.tab."+e:null}(n),[a,i]=(0,c.Nk)(t);return[a,(0,r.useCallback)((e=>{t&&i.set(e)}),[t,i])]}({groupId:a}),f=(()=>{const e=null!=d?d:j;return x({value:e,tabValues:i})?e:null})();(0,o.Z)((()=>{f&&s(f)}),[f]);return{selectedValue:l,selectValue:(0,r.useCallback)((e=>{if(!x({value:e,tabValues:i}))throw new Error("Can't select invalid tab value="+e);s(e),h(e),g(e)}),[h,g,i]),tabValues:i}}var g=t(72389);const f={tabList:"tabList__CuJ",tabItem:"tabItem_LNqP"};var m=t(85893);function v(e){let{className:n,block:t,selectedValue:r,selectValue:l,tabValues:o}=e;const s=[],{blockElementScrollPositionUntilNextRender:d}=(0,i.o5)(),c=e=>{const n=e.currentTarget,t=s.indexOf(n),a=o[t].value;a!==r&&(d(n),l(a))},h=e=>{var n;let t=null;switch(e.key){case"Enter":c(e);break;case"ArrowRight":{var r;const n=s.indexOf(e.currentTarget)+1;t=null!=(r=s[n])?r:s[0];break}case"ArrowLeft":{var a;const n=s.indexOf(e.currentTarget)-1;t=null!=(a=s[n])?a:s[s.length-1];break}}null==(n=t)||n.focus()};return(0,m.jsx)("ul",{role:"tablist","aria-orientation":"horizontal",className:(0,a.Z)("tabs",{"tabs--block":t},n),children:o.map((e=>{let{value:n,label:t,attributes:i}=e;return(0,m.jsx)("li",{role:"tab",tabIndex:r===n?0:-1,"aria-selected":r===n,ref:e=>s.push(e),onKeyDown:h,onClick:c,...i,className:(0,a.Z)("tabs__item",f.tabItem,null==i?void 0:i.className,{"tabs__item--active":r===n}),children:null!=t?t:n},n)}))})}function b(e){let{lazy:n,children:t,selectedValue:a}=e;const i=(Array.isArray(t)?t:[t]).filter(Boolean);if(n){const e=i.find((e=>e.props.value===a));return e?(0,r.cloneElement)(e,{className:"margin-top--md"}):null}return(0,m.jsx)("div",{className:"margin-top--md",children:i.map(((e,n)=>(0,r.cloneElement)(e,{key:n,hidden:e.props.value!==a})))})}function y(e){const n=j(e);return(0,m.jsxs)("div",{className:(0,a.Z)("tabs-container",f.tabList),children:[(0,m.jsx)(v,{...e,...n}),(0,m.jsx)(b,{...e,...n})]})}function w(e){const n=(0,g.Z)();return(0,m.jsx)(y,{...e,children:h(e.children)},String(n))}},11151:(e,n,t)=>{t.d(n,{Z:()=>o,a:()=>l});var r=t(67294);const a={},i=r.createContext(a);function l(e){const n=r.useContext(i);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function o(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:l(e.components),r.createElement(i.Provider,{value:n},e.children)}}}]); \ No newline at end of file diff --git a/assets/js/0cd801b6.f4559154.js b/assets/js/0cd801b6.f4559154.js deleted file mode 100644 index 2507c22e07c..00000000000 --- a/assets/js/0cd801b6.f4559154.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkreact_navigation_website_next=self.webpackChunkreact_navigation_website_next||[]).push([[44554],{114:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>c,contentTitle:()=>o,default:()=>x,frontMatter:()=>s,metadata:()=>d,toc:()=>h});var r=t(85893),a=t(11151),i=t(74866),l=t(85162);const s={id:"elements",title:"Elements Library",sidebar_label:"Elements"},o=void 0,d={id:"elements",title:"Elements Library",description:"A component library containing the UI elements and helpers used in React Navigation. It can be useful if you're building your own navigator, or want to reuse a default functionality in your app.",source:"@site/versioned_docs/version-6.x/elements.md",sourceDirName:".",slug:"/elements",permalink:"/docs/elements",draft:!1,unlisted:!1,editUrl:"https://github.com/react-navigation/react-navigation.github.io/edit/main/versioned_docs/version-6.x/elements.md",tags:[],version:"6.x",frontMatter:{id:"elements",title:"Elements Library",sidebar_label:"Elements"},sidebar:"docs",previous:{title:"Developer tools",permalink:"/docs/devtools"},next:{title:"Tab View",permalink:"/docs/tab-view"}},c={},h=[{value:"Installation",id:"installation",level:2},{value:"Components",id:"components",level:2},{value:"Header",id:"header",level:3},{value:"headerTitle",id:"headertitle",level:4},{value:"headerTitleAlign",id:"headertitlealign",level:4},{value:"headerTitleAllowFontScaling",id:"headertitleallowfontscaling",level:4},{value:"headerLeft",id:"headerleft",level:4},{value:"headerRight",id:"headerright",level:4},{value:"headerShadowVisible",id:"headershadowvisible",level:4},{value:"headerStyle",id:"headerstyle",level:4},{value:"headerTitleStyle",id:"headertitlestyle",level:4},{value:"headerLeftContainerStyle",id:"headerleftcontainerstyle",level:4},{value:"headerRightContainerStyle",id:"headerrightcontainerstyle",level:4},{value:"headerTitleContainerStyle",id:"headertitlecontainerstyle",level:4},{value:"headerBackgroundContainerStyle",id:"headerbackgroundcontainerstyle",level:4},{value:"headerTintColor",id:"headertintcolor",level:4},{value:"headerPressColor",id:"headerpresscolor",level:4},{value:"headerPressOpacity",id:"headerpressopacity",level:4},{value:"headerTransparent",id:"headertransparent",level:4},{value:"headerBackground",id:"headerbackground",level:4},{value:"headerStatusBarHeight",id:"headerstatusbarheight",level:4},{value:"HeaderBackground",id:"headerbackground-1",level:3},{value:"HeaderTitle",id:"headertitle-1",level:3},{value:"HeaderBackButton",id:"headerbackbutton",level:3},{value:"MissingIcon",id:"missingicon",level:3},{value:"PlatformPressable",id:"platformpressable",level:3},{value:"ResourceSavingView",id:"resourcesavingview",level:3},{value:"Utilities",id:"utilities",level:2},{value:"SafeAreaProviderCompat",id:"safeareaprovidercompat",level:3},{value:"HeaderBackContext",id:"headerbackcontext",level:3},{value:"HeaderShownContext",id:"headershowncontext",level:3},{value:"HeaderHeightContext",id:"headerheightcontext",level:3},{value:"useHeaderHeight",id:"useheaderheight",level:3},{value:"getDefaultHeaderHeight",id:"getdefaultheaderheight",level:3},{value:"getHeaderTitle",id:"getheadertitle",level:3}];function u(e){const n={a:"a",code:"code",h2:"h2",h3:"h3",h4:"h4",li:"li",p:"p",pre:"pre",ul:"ul",...(0,a.a)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.p,{children:"A component library containing the UI elements and helpers used in React Navigation. It can be useful if you're building your own navigator, or want to reuse a default functionality in your app."}),"\n",(0,r.jsx)(n.h2,{id:"installation",children:"Installation"}),"\n",(0,r.jsxs)(n.p,{children:["To use this package, ensure that you have ",(0,r.jsxs)(n.a,{href:"/docs/getting-started",children:[(0,r.jsx)(n.code,{children:"@react-navigation/native"})," and its dependencies (follow this guide)"]}),", then install ",(0,r.jsx)(n.a,{href:"https://github.com/react-navigation/react-navigation/tree/main/packages/elements",children:(0,r.jsx)(n.code,{children:"@react-navigation/elements"})}),":"]}),"\n",(0,r.jsxs)(i.Z,{groupId:"npm2yarn",children:[(0,r.jsx)(l.Z,{value:"npm",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-bash",children:"npm install @react-navigation/elements\n"})})}),(0,r.jsx)(l.Z,{value:"yarn",label:"Yarn",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-bash",children:"yarn add @react-navigation/elements\n"})})}),(0,r.jsx)(l.Z,{value:"pnpm",label:"pnpm",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-bash",children:"pnpm add @react-navigation/elements\n"})})})]}),"\n",(0,r.jsx)(n.h2,{id:"components",children:"Components"}),"\n",(0,r.jsx)(n.h3,{id:"header",children:(0,r.jsx)(n.code,{children:"Header"})}),"\n",(0,r.jsx)(n.p,{children:"A component that can be used as a header. It accepts the following props:"}),"\n",(0,r.jsx)(n.h4,{id:"headertitle",children:(0,r.jsx)(n.code,{children:"headerTitle"})}),"\n",(0,r.jsxs)(n.p,{children:["String or a function that returns a React Element to be used by the header. Defaults to scene ",(0,r.jsx)(n.code,{children:"title"}),". When a function is specified, it receives an object containing ",(0,r.jsx)(n.code,{children:"allowFontScaling"}),", ",(0,r.jsx)(n.code,{children:"tintColor"}),", ",(0,r.jsx)(n.code,{children:"style"})," and ",(0,r.jsx)(n.code,{children:"children"})," properties. The ",(0,r.jsx)(n.code,{children:"children"})," property contains the title string."]}),"\n",(0,r.jsx)(n.h4,{id:"headertitlealign",children:(0,r.jsx)(n.code,{children:"headerTitleAlign"})}),"\n",(0,r.jsx)(n.p,{children:"How to align the header title. Possible values:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.code,{children:"left"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.code,{children:"center"})}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Defaults to ",(0,r.jsx)(n.code,{children:"center"})," on iOS and ",(0,r.jsx)(n.code,{children:"left"})," on Android."]}),"\n",(0,r.jsx)(n.h4,{id:"headertitleallowfontscaling",children:(0,r.jsx)(n.code,{children:"headerTitleAllowFontScaling"})}),"\n",(0,r.jsx)(n.p,{children:"Whether header title font should scale to respect Text Size accessibility settings. Defaults to false."}),"\n",(0,r.jsx)(n.h4,{id:"headerleft",children:(0,r.jsx)(n.code,{children:"headerLeft"})}),"\n",(0,r.jsx)(n.p,{children:"Function which returns a React Element to display on the left side of the header. You can use it to implement your custom left button, for example:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:' (\n {\n // Do something\n }}\n />\n ),\n }}\n/>\n'})}),"\n",(0,r.jsx)(n.h4,{id:"headerright",children:(0,r.jsx)(n.code,{children:"headerRight"})}),"\n",(0,r.jsx)(n.p,{children:"Function which returns a React Element to display on the right side of the header."}),"\n",(0,r.jsx)(n.h4,{id:"headershadowvisible",children:(0,r.jsx)(n.code,{children:"headerShadowVisible"})}),"\n",(0,r.jsx)(n.p,{children:"Whether to hide the elevation shadow (Android) or the bottom border (iOS) on the header."}),"\n",(0,r.jsx)(n.p,{children:"This is a short-hand for the following styles:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"{\n elevation: 0,\n shadowOpacity: 0,\n borderBottomWidth: 0,\n}\n"})}),"\n",(0,r.jsxs)(n.p,{children:["If the above styles are specified in ",(0,r.jsx)(n.code,{children:"headerStyle"})," along with ",(0,r.jsx)(n.code,{children:"headerShadowVisible: false"}),", then ",(0,r.jsx)(n.code,{children:"headerShadowVisible: false"})," will take precedence."]}),"\n",(0,r.jsx)(n.h4,{id:"headerstyle",children:(0,r.jsx)(n.code,{children:"headerStyle"})}),"\n",(0,r.jsx)(n.p,{children:"Style object for the header. You can specify a custom background color here, for example."}),"\n",(0,r.jsx)(n.h4,{id:"headertitlestyle",children:(0,r.jsx)(n.code,{children:"headerTitleStyle"})}),"\n",(0,r.jsx)(n.p,{children:"Style object for the title component"}),"\n",(0,r.jsx)(n.h4,{id:"headerleftcontainerstyle",children:(0,r.jsx)(n.code,{children:"headerLeftContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Customize the style for the container of the ",(0,r.jsx)(n.code,{children:"headerLeft"})," component, for example to add padding."]}),"\n",(0,r.jsx)(n.h4,{id:"headerrightcontainerstyle",children:(0,r.jsx)(n.code,{children:"headerRightContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Customize the style for the container of the ",(0,r.jsx)(n.code,{children:"headerRight"})," component, for example to add padding."]}),"\n",(0,r.jsx)(n.h4,{id:"headertitlecontainerstyle",children:(0,r.jsx)(n.code,{children:"headerTitleContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Customize the style for the container of the ",(0,r.jsx)(n.code,{children:"headerTitle"})," component, for example to add padding."]}),"\n",(0,r.jsxs)(n.p,{children:["By default, ",(0,r.jsx)(n.code,{children:"headerTitleContainerStyle"})," is with an absolute position style and offsets both ",(0,r.jsx)(n.code,{children:"left"})," and ",(0,r.jsx)(n.code,{children:"right"}),". This may lead to white space or overlap between ",(0,r.jsx)(n.code,{children:"headerLeft"})," and ",(0,r.jsx)(n.code,{children:"headerTitle"})," if a customized ",(0,r.jsx)(n.code,{children:"headerLeft"})," is used. It can be solved by adjusting ",(0,r.jsx)(n.code,{children:"left"})," and ",(0,r.jsx)(n.code,{children:"right"})," style in ",(0,r.jsx)(n.code,{children:"headerTitleContainerStyle"})," and ",(0,r.jsx)(n.code,{children:"marginHorizontal"})," in ",(0,r.jsx)(n.code,{children:"headerTitleStyle"}),"."]}),"\n",(0,r.jsx)(n.h4,{id:"headerbackgroundcontainerstyle",children:(0,r.jsx)(n.code,{children:"headerBackgroundContainerStyle"})}),"\n",(0,r.jsxs)(n.p,{children:["Style object for the container of the ",(0,r.jsx)(n.code,{children:"headerBackground"})," element."]}),"\n",(0,r.jsx)(n.h4,{id:"headertintcolor",children:(0,r.jsx)(n.code,{children:"headerTintColor"})}),"\n",(0,r.jsx)(n.p,{children:"Tint color for the header"}),"\n",(0,r.jsx)(n.h4,{id:"headerpresscolor",children:(0,r.jsx)(n.code,{children:"headerPressColor"})}),"\n",(0,r.jsx)(n.p,{children:"Color for material ripple (Android >= 5.0 only)"}),"\n",(0,r.jsx)(n.h4,{id:"headerpressopacity",children:(0,r.jsx)(n.code,{children:"headerPressOpacity"})}),"\n",(0,r.jsx)(n.p,{children:"Press opacity for the buttons in header (Android < 5.0, and iOS)"}),"\n",(0,r.jsx)(n.h4,{id:"headertransparent",children:(0,r.jsx)(n.code,{children:"headerTransparent"})}),"\n",(0,r.jsxs)(n.p,{children:["Defaults to ",(0,r.jsx)(n.code,{children:"false"}),". If ",(0,r.jsx)(n.code,{children:"true"}),", the header will not have a background unless you explicitly provide it with ",(0,r.jsx)(n.code,{children:"headerBackground"}),". The header will also float over the screen so that it overlaps the content underneath."]}),"\n",(0,r.jsx)(n.p,{children:"This is useful if you want to render a semi-transparent header or a blurred background."}),"\n",(0,r.jsx)(n.p,{children:"Note that if you don't want your content to appear under the header, you need to manually add a top margin to your content. React Navigation won't do it automatically."}),"\n",(0,r.jsxs)(n.p,{children:["To get the height of the header, you can use ",(0,r.jsx)(n.a,{href:"#headerheightcontext",children:(0,r.jsx)(n.code,{children:"HeaderHeightContext"})})," with ",(0,r.jsx)(n.a,{href:"https://reactjs.org/docs/context.html#contextconsumer",children:"React's Context API"})," or ",(0,r.jsx)(n.a,{href:"#useheaderheight",children:(0,r.jsx)(n.code,{children:"useHeaderHeight"})}),"."]}),"\n",(0,r.jsx)(n.h4,{id:"headerbackground",children:(0,r.jsx)(n.code,{children:"headerBackground"})}),"\n",(0,r.jsx)(n.p,{children:"Function which returns a React Element to render as the background of the header. This is useful for using backgrounds such as an image or a gradient."}),"\n",(0,r.jsxs)(n.p,{children:["For example, you can use this with ",(0,r.jsx)(n.code,{children:"headerTransparent"})," to render a blur view to create a translucent header."]}),"\n",(0,r.jsx)("samp",{id:"header-blur"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:'import { BlurView } from \'expo-blur\';\n\n// ...\n\n (\n \n ),\n }}\n/>;\n'})}),"\n",(0,r.jsx)(n.h4,{id:"headerstatusbarheight",children:(0,r.jsx)(n.code,{children:"headerStatusBarHeight"})}),"\n",(0,r.jsx)(n.p,{children:"Extra padding to add at the top of header to account for translucent status bar. By default, it uses the top value from the safe area insets of the device. Pass 0 or a custom value to disable the default behavior, and customize the height."}),"\n",(0,r.jsx)(n.h3,{id:"headerbackground-1",children:(0,r.jsx)(n.code,{children:"HeaderBackground"})}),"\n",(0,r.jsxs)(n.p,{children:["A component containing the styles used in the background of the header, such as the background color and shadow. It's the default for ",(0,r.jsx)(n.a,{href:"#headerbackground",children:(0,r.jsx)(n.code,{children:"headerBackground"})}),". It accepts the same props as a ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/view",children:(0,r.jsx)(n.code,{children:"View"})}),"."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headertitle-1",children:(0,r.jsx)(n.code,{children:"HeaderTitle"})}),"\n",(0,r.jsxs)(n.p,{children:["A component used to show the title text in header. It's the default for ",(0,r.jsx)(n.a,{href:"#headertitle",children:(0,r.jsx)(n.code,{children:"headerTitle"})}),". It accepts the same props as a ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/Text",children:(0,r.jsx)(n.code,{children:"Text"})}),"."]}),"\n",(0,r.jsxs)(n.p,{children:["The color of title defaults to the ",(0,r.jsx)(n.a,{href:"/docs/themes",children:"theme text color"}),". You can override it by passing a ",(0,r.jsx)(n.code,{children:"tintColor"})," prop."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"Hello\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headerbackbutton",children:(0,r.jsx)(n.code,{children:"HeaderBackButton"})}),"\n",(0,r.jsxs)(n.p,{children:["A component used to show the back button header. It's the default for ",(0,r.jsx)(n.a,{href:"#headerleft",children:(0,r.jsx)(n.code,{children:"headerLeft"})})," in the ",(0,r.jsx)(n.a,{href:"/docs/stack-navigator",children:"stack navigator"}),". It accepts the following props:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"disabled"})," - Boolean which controls Whether the button is disabled."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"onPress"})," - Callback to call when the button is pressed."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"pressColor"})," - Color for material ripple (Android >= 5.0 only)."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"backImage"})," - Function which returns a React Element to display custom image in header's back button."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"tintColor"})," - Tint color for the header."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"label"})," - Label text for the button. Usually the title of the previous screen. By default, this is only shown on iOS."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"truncatedLabel"})," - Label text to show when there isn't enough space for the full label."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"labelVisible"})," - Whether the label text is visible. Defaults to ",(0,r.jsx)(n.code,{children:"true"})," on iOS and ",(0,r.jsx)(n.code,{children:"false"})," on Android."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"labelStyle"})," - Style object for the label."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"allowFontScaling"})," - Whether label font should scale to respect Text Size accessibility settings."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"onLabelLayout"})," - Callback to trigger when the size of the label changes."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"screenLayout"})," - Layout of the screen."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"titleLayout"})," - Layout of the title element in the header."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"canGoBack"})," - Boolean to indicate whether it's possible to navigate back in stack."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"accessibilityLabel"})," - Accessibility label for the button for screen readers."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"testID"})," - ID to locate this button in tests."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"style"})," - Style object for the button."]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:" console.log('back pressed')} />\n"})}),"\n",(0,r.jsx)(n.h3,{id:"missingicon",children:(0,r.jsx)(n.code,{children:"MissingIcon"})}),"\n",(0,r.jsx)(n.p,{children:"A component that renders a missing icon symbol. It can be used as a fallback for icons to show that there's a missing icon. It accepts the following props:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"color"})," - Color of the icon."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"size"})," - Size of the icon."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"style"})," - Additional styles for the icon."]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"platformpressable",children:(0,r.jsx)(n.code,{children:"PlatformPressable"})}),"\n",(0,r.jsxs)(n.p,{children:["A component which provides an abstraction on top of ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/Pressable",children:(0,r.jsx)(n.code,{children:"Pressable"})})," to handle platform differences. In addition to ",(0,r.jsx)(n.code,{children:"Pressable"}),"'s props, it accepts following additional props:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"pressColor"})," - Color of material ripple on Android when it's pressed"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"pressOpacity"})," - Opacity when it's pressed if material ripple isn't supported by the platform"]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"resourcesavingview",children:(0,r.jsx)(n.code,{children:"ResourceSavingView"})}),"\n",(0,r.jsxs)(n.p,{children:["A component which aids in improving performance for inactive screens by utilizing ",(0,r.jsx)(n.a,{href:"https://reactnative.dev/docs/view#removeclippedsubviews",children:(0,r.jsx)(n.code,{children:"removeClippedSubviews"})}),". It accepts a ",(0,r.jsx)(n.code,{children:"visible"})," prop to indicate whether a screen should be clipped."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"{/* Content */}\n"})}),"\n",(0,r.jsx)(n.h2,{id:"utilities",children:"Utilities"}),"\n",(0,r.jsx)(n.h3,{id:"safeareaprovidercompat",children:(0,r.jsx)(n.code,{children:"SafeAreaProviderCompat"})}),"\n",(0,r.jsxs)(n.p,{children:["A wrapper over the ",(0,r.jsx)(n.code,{children:"SafeAreaProvider"})," component from ",(0,r.jsx)(n.a,{href:"https://github.com/th3rdwave/react-native-safe-area-context",children:"`react-native-safe-area-context"})," which includes initial values."]}),"\n",(0,r.jsx)(n.p,{children:"Usage:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"{/* Your components */}\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headerbackcontext",children:(0,r.jsx)(n.code,{children:"HeaderBackContext"})}),"\n",(0,r.jsx)(n.p,{children:"React context that can be used to get the back title of the parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { HeaderBackContext } from '@react-navigation/elements';\n\n// ...\n\n\n {(headerBack) => {\n if (headerBack) {\n const backTitle = headerBack.title;\n\n /* render something */\n }\n\n /* render something */\n }}\n;\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headershowncontext",children:(0,r.jsx)(n.code,{children:"HeaderShownContext"})}),"\n",(0,r.jsx)(n.p,{children:"React context that can be used to check if a header is visible in a parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { HeaderShownContext } from '@react-navigation/elements';\n\n// ...\n\n\n {(headerShown) => {\n /* render something */\n }}\n;\n"})}),"\n",(0,r.jsx)(n.h3,{id:"headerheightcontext",children:(0,r.jsx)(n.code,{children:"HeaderHeightContext"})}),"\n",(0,r.jsx)(n.p,{children:"React context that can be used to get the height of the nearest visible header in a parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { HeaderHeightContext } from '@react-navigation/elements';\n\n// ...\n\n\n {(headerHeight) => {\n /* render something */\n }}\n;\n"})}),"\n",(0,r.jsx)(n.h3,{id:"useheaderheight",children:(0,r.jsx)(n.code,{children:"useHeaderHeight"})}),"\n",(0,r.jsx)(n.p,{children:"Hook that returns the height of the nearest visible header in the parent screen."}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-js",children:"import { useHeaderHeight } from '@react-navigation/elements';\n\n// ...\n\nconst headerHeight = useHeaderHeight();\n"})}),"\n",(0,r.jsx)(n.h3,{id:"getdefaultheaderheight",children:(0,r.jsx)(n.code,{children:"getDefaultHeaderHeight"})}),"\n",(0,r.jsx)(n.p,{children:"Helper that returns the default header height. It takes the following parameters:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"layout"})," - Layout of the screen, i.e. an object containing ",(0,r.jsx)(n.code,{children:"height"})," and ",(0,r.jsx)(n.code,{children:"width"})," properties."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"statusBarHeight"})," - height of the statusbar"]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"getheadertitle",children:(0,r.jsx)(n.code,{children:"getHeaderTitle"})}),"\n",(0,r.jsx)(n.p,{children:"Helper that returns the title text to use in header. It takes the following parameters:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"options"})," - The options object of the screen."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"fallback"})," - Fallback title string if no title was found in options."]}),"\n"]})]})}function x(e={}){const{wrapper:n}={...(0,a.a)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(u,{...e})}):u(e)}},85162:(e,n,t)=>{t.d(n,{Z:()=>l});t(67294);var r=t(86010);const a={tabItem:"tabItem_Ymn6"};var i=t(85893);function l(e){let{children:n,hidden:t,className:l}=e;return(0,i.jsx)("div",{role:"tabpanel",className:(0,r.Z)(a.tabItem,l),hidden:t,children:n})}},74866:(e,n,t)=>{t.d(n,{Z:()=>w});var r=t(67294),a=t(86010),i=t(12466),l=t(16550),s=t(20469),o=t(91980),d=t(67392),c=t(50012);function h(e){var n,t;return null!=(n=null==(t=r.Children.toArray(e).filter((e=>"\n"!==e)).map((e=>{if(!e||(0,r.isValidElement)(e)&&function(e){const{props:n}=e;return!!n&&"object"==typeof n&&"value"in n}(e))return e;throw new Error("Docusaurus error: Bad child <"+("string"==typeof e.type?e.type:e.type.name)+'>: all children of the component should be , and every should have a unique "value" prop.')})))?void 0:t.filter(Boolean))?n:[]}function u(e){const{values:n,children:t}=e;return(0,r.useMemo)((()=>{const e=null!=n?n:function(e){return h(e).map((e=>{let{props:{value:n,label:t,attributes:r,default:a}}=e;return{value:n,label:t,attributes:r,default:a}}))}(t);return function(e){const n=(0,d.l)(e,((e,n)=>e.value===n.value));if(n.length>0)throw new Error('Docusaurus error: Duplicate values "'+n.map((e=>e.value)).join(", ")+'" found in . Every value needs to be unique.')}(e),e}),[n,t])}function x(e){let{value:n,tabValues:t}=e;return t.some((e=>e.value===n))}function p(e){let{queryString:n=!1,groupId:t}=e;const a=(0,l.k6)(),i=function(e){let{queryString:n=!1,groupId:t}=e;if("string"==typeof n)return n;if(!1===n)return null;if(!0===n&&!t)throw new Error('Docusaurus error: The component groupId prop is required if queryString=true, because this value is used as the search param name. You can also provide an explicit value such as queryString="my-search-param".');return null!=t?t:null}({queryString:n,groupId:t});return[(0,o._X)(i),(0,r.useCallback)((e=>{if(!i)return;const n=new URLSearchParams(a.location.search);n.set(i,e),a.replace({...a.location,search:n.toString()})}),[i,a])]}function j(e){const{defaultValue:n,queryString:t=!1,groupId:a}=e,i=u(e),[l,o]=(0,r.useState)((()=>function(e){var n;let{defaultValue:t,tabValues:r}=e;if(0===r.length)throw new Error("Docusaurus error: the component requires at least one children component");if(t){if(!x({value:t,tabValues:r}))throw new Error('Docusaurus error: The has a defaultValue "'+t+'" but none of its children has the corresponding value. Available values are: '+r.map((e=>e.value)).join(", ")+". If you intend to show no default tab, use defaultValue={null} instead.");return t}const a=null!=(n=r.find((e=>e.default)))?n:r[0];if(!a)throw new Error("Unexpected error: 0 tabValues");return a.value}({defaultValue:n,tabValues:i}))),[d,h]=p({queryString:t,groupId:a}),[j,f]=function(e){let{groupId:n}=e;const t=function(e){return e?"docusaurus.tab."+e:null}(n),[a,i]=(0,c.Nk)(t);return[a,(0,r.useCallback)((e=>{t&&i.set(e)}),[t,i])]}({groupId:a}),g=(()=>{const e=null!=d?d:j;return x({value:e,tabValues:i})?e:null})();(0,s.Z)((()=>{g&&o(g)}),[g]);return{selectedValue:l,selectValue:(0,r.useCallback)((e=>{if(!x({value:e,tabValues:i}))throw new Error("Can't select invalid tab value="+e);o(e),h(e),f(e)}),[h,f,i]),tabValues:i}}var f=t(72389);const g={tabList:"tabList__CuJ",tabItem:"tabItem_LNqP"};var m=t(85893);function v(e){let{className:n,block:t,selectedValue:r,selectValue:l,tabValues:s}=e;const o=[],{blockElementScrollPositionUntilNextRender:d}=(0,i.o5)(),c=e=>{const n=e.currentTarget,t=o.indexOf(n),a=s[t].value;a!==r&&(d(n),l(a))},h=e=>{var n;let t=null;switch(e.key){case"Enter":c(e);break;case"ArrowRight":{var r;const n=o.indexOf(e.currentTarget)+1;t=null!=(r=o[n])?r:o[0];break}case"ArrowLeft":{var a;const n=o.indexOf(e.currentTarget)-1;t=null!=(a=o[n])?a:o[o.length-1];break}}null==(n=t)||n.focus()};return(0,m.jsx)("ul",{role:"tablist","aria-orientation":"horizontal",className:(0,a.Z)("tabs",{"tabs--block":t},n),children:s.map((e=>{let{value:n,label:t,attributes:i}=e;return(0,m.jsx)("li",{role:"tab",tabIndex:r===n?0:-1,"aria-selected":r===n,ref:e=>o.push(e),onKeyDown:h,onClick:c,...i,className:(0,a.Z)("tabs__item",g.tabItem,null==i?void 0:i.className,{"tabs__item--active":r===n}),children:null!=t?t:n},n)}))})}function b(e){let{lazy:n,children:t,selectedValue:a}=e;const i=(Array.isArray(t)?t:[t]).filter(Boolean);if(n){const e=i.find((e=>e.props.value===a));return e?(0,r.cloneElement)(e,{className:"margin-top--md"}):null}return(0,m.jsx)("div",{className:"margin-top--md",children:i.map(((e,n)=>(0,r.cloneElement)(e,{key:n,hidden:e.props.value!==a})))})}function y(e){const n=j(e);return(0,m.jsxs)("div",{className:(0,a.Z)("tabs-container",g.tabList),children:[(0,m.jsx)(v,{...e,...n}),(0,m.jsx)(b,{...e,...n})]})}function w(e){const n=(0,f.Z)();return(0,m.jsx)(y,{...e,children:h(e.children)},String(n))}},11151:(e,n,t)=>{t.d(n,{Z:()=>s,a:()=>l});var r=t(67294);const a={},i=r.createContext(a);function l(e){const n=r.useContext(i);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function s(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:l(e.components),r.createElement(i.Provider,{value:n},e.children)}}}]); \ No newline at end of file diff --git a/assets/js/runtime~main.b56dbf88.js b/assets/js/runtime~main.b3f09c3a.js similarity index 99% rename from assets/js/runtime~main.b56dbf88.js rename to assets/js/runtime~main.b3f09c3a.js index 214c45507f5..1f1595a0c3a 100644 --- a/assets/js/runtime~main.b56dbf88.js +++ b/assets/js/runtime~main.b3f09c3a.js @@ -1 +1 @@ -(()=>{"use strict";var e,a,f,c,b,d={},t={};function r(e){var a=t[e];if(void 0!==a)return a.exports;var f=t[e]={id:e,loaded:!1,exports:{}};return d[e].call(f.exports,f,f.exports,r),f.loaded=!0,f.exports}r.m=d,r.c=t,e=[],r.O=(a,f,c,b)=>{if(!f){var d=1/0;for(i=0;i=b)&&Object.keys(r.O).every((e=>r.O[e](f[o])))?f.splice(o--,1):(t=!1,b0&&e[i-1][2]>b;i--)e[i]=e[i-1];e[i]=[f,c,b]},r.n=e=>{var a=e&&e.__esModule?()=>e.default:()=>e;return r.d(a,{a:a}),a},f=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,c){if(1&c&&(e=this(e)),8&c)return e;if("object"==typeof e&&e){if(4&c&&e.__esModule)return e;if(16&c&&"function"==typeof e.then)return e}var b=Object.create(null);r.r(b);var d={};a=a||[null,f({}),f([]),f(f)];for(var t=2&c&&e;"object"==typeof t&&!~a.indexOf(t);t=f(t))Object.getOwnPropertyNames(t).forEach((a=>d[a]=()=>e[a]));return d.default=()=>e,r.d(b,d),b},r.d=(e,a)=>{for(var f in a)r.o(a,f)&&!r.o(e,f)&&Object.defineProperty(e,f,{enumerable:!0,get:a[f]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((a,f)=>(r.f[f](e,a),a)),[])),r.u=e=>"assets/js/"+({8:"8c4738b1",23:"a83f720f",180:"e222d324",399:"d57ffbba",435:"14acaad8",660:"1b06775d",836:"b93a612d",1092:"bc98b856",1210:"f1d3306a",1393:"2e2591dd",1547:"87fb05fe",1566:"f100c192",1697:"47cdb689",2186:"6f9c9b78",2409:"3dd22c0a",2448:"4294b48d",2759:"a187e2b2",2889:"c8d61245",2905:"63f4abc2",2980:"29af1846",3024:"66e8e455",3922:"6fc7b633",4037:"cf1736b4",4074:"7a359cef",4442:"5f623a5c",4604:"8520aa43",4675:"f4398715",4800:"ef7138f6",4832:"ece86388",5024:"6f0a4736",5119:"f6756196",5514:"e0160539",5657:"eef70735",5725:"720ec844",5766:"d52010ac",5829:"bd109270",5882:"48179b36",5978:"c414ff41",6039:"a601a56a",6398:"ad88f797",6479:"7a316a81",6679:"22cce5e3",6715:"cdc21849",7391:"db2d2c66",7519:"5a6e47ce",8054:"4de4f0aa",8200:"868d8162",8327:"b81de6e7",8543:"4950f112",8550:"e4e30971",8960:"43895b73",9311:"5050cca3",9772:"4a85a9e1",9795:"198136e6",10001:"8eb4e46b",10369:"38e75df9",10801:"451c00d0",11456:"4097ee88",11477:"b2f554cd",11498:"9150b537",11529:"34a92c49",11534:"5f7a57d5",11545:"ee216893",11713:"a7023ddc",11790:"506fd606",12227:"5a6dc606",12305:"8d3063a8",12344:"be5f3a5f",12497:"ff57007e",12541:"561a3eb1",12665:"322cbdb3",12915:"ae733de4",12944:"5fa34f3e",13083:"7bf45219",13085:"1f391b9e",13120:"2c6e00e5",13126:"1c007cbb",13677:"df5aa17f",14781:"d9dcdbb0",15091:"2bf47602",15823:"32c90e4f",16163:"f60d5e0f",16457:"6f859436",16707:"20f68260",16766:"79f65c0a",16943:"b65a55e7",17307:"ae5fe58f",17432:"884b85fa",17506:"979dc077",17595:"c90d5789",17641:"95e9668b",18098:"f171b4fe",18518:"a7bd4aaa",18841:"fe0c5989",18889:"68b0fc05",18998:"1fc9112c",18999:"41d864f0",19249:"a5a8f997",19250:"07fb801c",19618:"85ef44ad",19987:"3288f5dd",20211:"693618f8",20259:"b89f9e6f",20694:"7be16658",20841:"726a3ae5",21411:"6bcec069",21453:"208b9e32",21513:"6a29eacd",21862:"11fb85f3",21942:"aeac9b7f",22081:"585dd972",22120:"f066ce3d",22190:"3a7a90e6",22316:"1be5ddd6",22531:"7745b380",22589:"dd056032",22782:"421dbb3b",22804:"dbb6f292",23158:"9ae89415",23258:"53be29f2",23273:"029dc854",23521:"7278614b",23659:"c7ff647e",23818:"1ae011e9",24076:"34642e36",24200:"adcb3b88",24279:"6b20cb2f",24886:"7a69f3f2",25073:"682ce172",25083:"a178b8fa",25101:"34e8079f",25255:"cafedc52",25391:"369bd8f8",25392:"0e0a3cb0",25558:"f2fd19de",25590:"00d72952",25655:"482751c5",25735:"cb1ca3b7",25932:"9122f241",26177:"27e00fa9",26277:"28ae1e59",26463:"5a783331",26806:"385a96ec",26819:"15cb52a8",27075:"f0fc524c",27493:"ccb322b4",27918:"17896441",27951:"f33b6a3d",28004:"ceb96a6a",28234:"fffa478c",28774:"3d5c69eb",29200:"75086e52",29302:"b0c8eb24",29360:"f176e462",29661:"5e95c892",29810:"d42d1fd9",30098:"96c45902",30506:"14716511",31047:"55b92464",31346:"d08734b9",31450:"74ef9c09",31473:"f6147c3e",31724:"38f0ae39",31756:"69616a12",31762:"9d130922",31817:"20697995",31912:"0ad77dda",32065:"5f99a06b",32252:"b03300d9",32343:"7f0203ae",33123:"e8ce4f5a",33242:"c2c0d6a0",33408:"55b83a48",33735:"db124b13",34366:"66169356",34475:"09dc4294",34568:"65636706",34609:"3d65d037",34806:"a9397062",34840:"c088c624",34863:"7f3ebd16",35074:"77e23114",35145:"a1a99b30",35201:"31a4dab7",35536:"ae4abcdb",35549:"69e3adff",36054:"74cdd3dc",36166:"8674297c",36196:"d1b2904b",36234:"2a1e22c6",36405:"86ee57b9",36590:"116934ab",36708:"6a7fdb9e",36730:"a06a0936",36814:"fa388b7d",36837:"dde9984f",36912:"11c37a84",36926:"02f293a2",37203:"6d6cabdc",37438:"9c021584",38041:"349caeb8",38122:"966cb129",38369:"8a143e5b",38407:"060b58ec",38431:"11edefd1",38833:"d513a03c",38963:"2e363522",39012:"a8527a90",39023:"a5ad4ffe",39136:"34737634",39138:"990502fa",39176:"6054d54f",39198:"156bcb80",39315:"beb39e3f",40014:"eebb4bfa",40364:"5834e856",40462:"d8cb0df4",40883:"38fc62f0",41080:"d84a04ad",41370:"2c1dfa59",41434:"2e5371a8",41447:"18bf351a",41516:"b38ea63a",41887:"fd4b3cd9",41941:"4affc812",42041:"2bc9c82b",42266:"9af3f201",42272:"2742fd1f",42277:"34afa66a",42358:"b319bd37",42568:"3fe99ec0",42581:"c0782dcc",42682:"bf3d013e",42743:"17ec3dcd",43107:"3ddd3618",43347:"94bac345",43900:"87087cb3",43913:"cdb30427",43969:"42baf60a",44122:"b6ac21f8",44157:"283e63f8",44266:"6bc8f2a2",44379:"fb896c9f",44456:"72a85bb9",44458:"6d5e2782",44484:"baaf111f",44501:"2345d271",44527:"b6e1e9f1",44554:"0cd801b6",44757:"4d2cce11",44935:"c96bcf0e",45098:"572e4edf",45168:"cf1b6d54",45594:"c71fcd84",45939:"c2e8381f",46103:"ccc49370",46283:"f265caf3",46524:"6351806c",46800:"524cb6b9",47240:"34b88438",47284:"67bc1365",47625:"73cd3c7f",47715:"691c8b2c",47793:"2a793fe9",48232:"a7b093db",48239:"f0d91a18",48263:"4dd5a1e2",48610:"6875c492",48653:"c320ebc8",48878:"f5632d3b",49333:"957ba597",49375:"430040aa",49810:"77aa6ed4",49967:"63a36266",50116:"79ac6895",50149:"6289cd6c",50347:"01a1bba5",51391:"b91c78db",51711:"7446ee19",51754:"b296b8b0",52223:"732a0bdd",52535:"814f3328",52587:"900b69c6",52735:"317e2018",52878:"78260baf",53247:"5f5c23d7",53249:"bbc7a4b0",53487:"8d8bf681",53508:"c9bae406",53556:"79dbb029",53608:"9e4087bc",54119:"d40bf6ce",54521:"c259c03a",54591:"553b20f2",54825:"472ed44a",54931:"8386ba1d",55112:"fc5e52ef",55123:"f6f7d065",55583:"e3d4941e",55893:"b059735e",56287:"87288241",56417:"a44cee0b",56541:"72619197",56661:"f75590ae",56917:"fd014fef",57310:"37bf63f8",57702:"4f52b89f",57807:"be9b4d2c",57842:"9a16bb9d",58269:"76725556",58461:"b540d135",59071:"891dacb7",59158:"86d1f714",60010:"f04ef758",60018:"4ed526a6",60095:"d4a28cdc",60189:"4971bf21",60205:"83d480e9",60216:"857226cd",60329:"51035c32",60504:"8521727c",60691:"7ac60746",60776:"a2205702",61092:"4d989974",61566:"82bb8736",61998:"6df3dc9e",62019:"2725af3e",62175:"deb950c3",62348:"055cb6cb",62405:"23dd3248",62462:"f45c00a7",62519:"242b7c9d",62573:"1f922c0a",62617:"4f17f4e8",62989:"1d424ec3",63038:"66b225ca",63057:"0334870a",63355:"3473afe0",64013:"01a85c17",64039:"0e9dd1f6",64067:"017fa78e",64195:"c4f5d8e4",64222:"1eecde9e",64370:"9b7f82fe",64454:"298dce3d",64464:"2330c7a5",64620:"f97eb74e",64636:"b89e1214",64737:"c183ab7f",64749:"f745e7d6",65492:"0f251e76",65799:"22592995",66088:"a50c5cfe",66277:"9b8e03c9",66301:"1b79fc76",66616:"af725e73",66986:"4dad2d95",67034:"a4bf4271",67097:"a92cc67c",67289:"f60c941b",67294:"885db2d5",67373:"2895d14d",67888:"7e788281",68493:"9585dc18",68562:"2f88b479",69092:"fdba686e",69264:"3e290227",69757:"f3886628",69786:"b3da0717",70057:"6ba5b985",70216:"a103d9cd",70525:"1e63bad8",70713:"9ff2e65d",70918:"4790fcfc",71280:"20989594",71338:"f123de88",71370:"93402b4f",71379:"88089c81",71402:"fdeac899",71486:"75a3cde9",71725:"ff849402",71794:"7d87cf11",72442:"2faf7e03",72589:"a76a7284",72664:"7396804a",73006:"4ee3e0f9",73163:"e88484b3",73216:"a11e2eb6",73428:"ce5a6cfc",73597:"57bdb9cf",73825:"1233d971",74612:"a62e5334",74756:"915d8cad",74799:"190dc87f",75068:"a2851e91",75460:"d92e70e8",75684:"7f524dd3",75878:"8927ca75",75969:"99b846b2",76385:"168ed425",76389:"d547d075",76422:"51368b5b",76548:"6578c24b",76602:"7c94a739",76683:"a345bb73",77430:"b8aafcf7",77447:"ab534dd1",77685:"38945924",77719:"cd3769cf",78236:"5ee02d5e",78273:"94d96abc",78622:"b2248fa5",78624:"2965ee69",78657:"06aa38ed",78680:"e14b9321",78777:"3f09e8c5",79007:"a4e31e78",79163:"f3898f13",79307:"723a1d1f",79346:"b62ae7ee",79720:"45e61a04",79902:"ea5ec219",80063:"a4ac0748",80321:"ddf45c7d",80387:"fca5fd4e",80434:"5dde19ad",80665:"8a507deb",80690:"58932f68",80898:"0fd48e70",81043:"3fdc919d",81142:"ef628c14",81170:"f3135da8",81519:"18b2070b",81558:"86f1fc09",81816:"cde59865",81848:"d5baa5c1",81959:"16d126b2",81963:"0732884c",82339:"8dffd375",82723:"1279275a",82763:"6f67031a",82806:"47734c36",82827:"4554b8eb",83073:"220adfdd",83112:"ec406ec4",83340:"6354cbd6",83388:"48bce793",83604:"1c2eab2d",83612:"278698af",84193:"f22d3a1f",84387:"cb35979a",84603:"882617a0",84944:"d71b2077",84999:"493070b6",85183:"c716f0e7",85261:"2f8e0f44",85354:"debf69ae",85476:"480dd063",85709:"cae0f04b",85730:"8d30a36f",85760:"ab0218ea",85831:"0bcf026f",85954:"662e2520",86019:"f82f4518",86152:"ea8a36e7",86259:"61da15b7",86415:"e3217e06",86478:"9a1d032e",86561:"188f698f",86876:"e95c8dff",87187:"8da40a13",87364:"b48787b6",87666:"508f3f9b",88095:"08731dbd",88156:"cdf30472",88187:"14616538",88584:"82bb0d50",88698:"9b2fbcce",88778:"b265e1a0",88784:"825d5fdb",88873:"cec331df",88895:"682ba1cc",89352:"66875650",89551:"17b59e25",89619:"4f9396e4",89626:"17d003f0",89776:"36dd008b",90008:"3d2d3ec8",90302:"d4bc90ec",90446:"d67ed22e",90489:"74450489",90533:"b2b675dd",90617:"a90dbb68",90759:"7cbef4dd",90975:"abac2178",91188:"bdc0380f",91324:"48627ccf",91499:"8fea52f3",91712:"be35566b",91883:"54ce2ec1",92048:"50f409bc",92091:"b9ccf281",92110:"79893160",92684:"8526e2d7",92715:"34750482",92733:"e83bbd46",92771:"c6c8c51b",93089:"a6aa9e1f",93457:"c94cee29",93460:"a5ae78fa",93480:"15f1c7c7",93575:"23828948",93621:"cb5b2a41",93671:"f81e0c67",93760:"f4e7a611",93970:"0e9f90e2",94007:"1ca07b31",94206:"b0b51b63",94338:"b5e8ae63",94368:"a94703ab",94474:"320f57a7",94499:"45aab7e5",94754:"454aff66",94892:"db02a756",94920:"81cb56fd",94928:"4aa34a2d",94961:"2ad06cff",95506:"df9f3515",95699:"f71ac7f0",95760:"9dbca327",95801:"2bba45e9",96060:"d7f84142",96383:"c47cf68d",96450:"2152a276",96536:"6f680f40",96641:"de6d21b5",96750:"3bdd1be4",96802:"13e4d9ef",97535:"02715c9e",97856:"802bca5d",97920:"1a4e3797",98427:"ef5f5123",98596:"5f32cb9f",98639:"08c74c36",98709:"769a6239",98714:"ac11e877",99322:"dc42149f",99937:"61322d15"}[e]||e)+"."+{8:"4622d277",23:"fb653bb2",180:"feb80294",399:"58c8e2a5",435:"c89aa814",660:"7b664e2a",836:"16f6abfd",1092:"b813fbf7",1210:"1a517f97",1393:"9b884bc3",1547:"d58086fa",1566:"93749146",1697:"f3947184",2186:"17cadbdc",2409:"6315beec",2448:"2785644d",2759:"1986374f",2889:"81ca0a56",2905:"8f0caa23",2980:"3109bb5b",3024:"b99b4048",3242:"dd783d2d",3922:"ec4d38e5",4037:"54fb968f",4074:"dbdae914",4442:"4419a273",4604:"22021f7d",4675:"83a3ea93",4800:"30ae7040",4832:"4bcbea4e",5024:"af2bd38c",5119:"bcc475aa",5514:"a417561b",5657:"546e70f6",5725:"69d5e252",5766:"3a2e7cd7",5829:"4f45838f",5882:"a00fbd40",5978:"4c71c0ac",6039:"129629bc",6398:"140fedfb",6479:"e73cdf3d",6679:"d2bc298d",6715:"c21aa9e5",7391:"04ab12d6",7519:"b043b83d",8054:"5c20c39a",8200:"b19b01df",8327:"ad926205",8543:"ead00864",8550:"ec254cdb",8960:"933ad808",9311:"11cbc69a",9772:"e6a90dc3",9795:"a901bdfe",10001:"d4297e50",10369:"24a95818",10801:"cd930aea",11456:"cb7c3c37",11477:"e2ce6e7e",11498:"75f5c93c",11529:"76cac440",11534:"4966afb9",11545:"485c9c9a",11713:"d5711c9d",11790:"2c6c2013",12227:"9fd20e71",12305:"963c241d",12344:"0e67ee7a",12497:"868251b9",12541:"a23eaab9",12665:"e7b0ff88",12915:"d317aaec",12944:"4f3cfc42",13083:"1bffabe3",13085:"65412243",13120:"48636ac0",13126:"1877f754",13677:"96e012c2",14781:"35345bf7",15091:"3118c157",15823:"3422b323",16163:"2129dd3c",16457:"08644452",16707:"eb2e76e3",16766:"e4e5eb2a",16943:"fd4703c9",17307:"908dae43",17432:"5b48b829",17506:"a1edd259",17595:"21ae045f",17641:"5ea3907d",18098:"b33d9d6c",18518:"ea9e75d7",18841:"3ab213b4",18889:"44ce95d1",18894:"cdbb0ed5",18998:"8c809860",18999:"3be16432",19249:"8a262d5d",19250:"079bb69b",19618:"db4507c4",19987:"3fe3c87a",20211:"400846ae",20259:"0d20a158",20694:"7cd3b48a",20841:"18e518f5",21411:"405b3ecb",21453:"416aa36f",21513:"ebc14459",21862:"1e030fb9",21942:"d39bc249",22081:"39ffb594",22120:"3ec5c45e",22190:"97d95165",22316:"0d67ad8a",22531:"351abd64",22589:"29d6e849",22782:"6fb82867",22804:"6da8c73e",23158:"294249fc",23258:"f822767f",23273:"66a09991",23521:"ef999e75",23659:"faf49f25",23818:"be9e5c67",24076:"5edeb447",24200:"bd6c5bc0",24279:"f630320a",24886:"124628c2",25073:"f738b8c2",25083:"30a57ccd",25101:"cad1e846",25255:"5142355e",25391:"8404f927",25392:"6afbf54c",25558:"4d5d5947",25590:"fcc9463f",25655:"56d7baa3",25735:"16cb6cb9",25932:"836d0538",26177:"2ba09db9",26277:"6e7a3579",26463:"e52a9d7c",26806:"42b74faa",26819:"6839c875",27075:"5fca4d16",27493:"14c507e9",27918:"6223f992",27951:"1b38e3c4",28004:"257edb76",28234:"a7a5522f",28774:"8c5a9d6d",29200:"adf79ca9",29302:"1a3f6d08",29360:"a998a0cf",29661:"08973c96",29810:"cde91c14",30098:"cd2592e9",30506:"e70bed41",31047:"d5183d4a",31346:"cccaba08",31450:"86a4ca1e",31473:"05450d51",31724:"3d62e263",31756:"35285fad",31762:"3eb65f7a",31817:"21b83cd7",31912:"8f359718",32065:"78bd79f8",32252:"6e7762ff",32343:"ac547009",33123:"17b56222",33242:"f832c579",33408:"6959235b",33735:"d0b614e7",34366:"47971349",34475:"c5a062da",34568:"8cf2b9d3",34609:"f22265df",34806:"100ebaca",34840:"9d905e25",34863:"284dcb50",35074:"94ae521e",35089:"01b94a12",35145:"38dc187d",35201:"73a67241",35536:"078039a7",35549:"296e046f",36054:"1a680cf5",36166:"1ed45412",36196:"8f94beae",36234:"0b69db87",36405:"ab7f613a",36590:"49314666",36708:"b593932f",36730:"a9d44c64",36814:"49356a74",36837:"7a9cbae3",36912:"cd547b21",36926:"60dc7ebd",37203:"07a66edb",37438:"06fcd09b",38041:"29ca03ac",38122:"567adc3d",38369:"a187cd3a",38407:"04748cef",38431:"b4f221b6",38833:"01281203",38963:"6c74dc15",39012:"8099a879",39023:"5a5109ca",39136:"de165ae4",39138:"910ac5be",39176:"05d4954b",39198:"7409b1f6",39315:"b4d86421",40014:"f955d459",40364:"f07adc00",40462:"1db8156c",40883:"c908d75f",41080:"84d18365",41370:"b4d174f5",41434:"41ef0117",41447:"34dc5934",41516:"2d1de158",41887:"491ead9d",41941:"b361e6c6",42041:"f1778509",42266:"bba3ed76",42272:"bacd08c7",42277:"481e94a6",42358:"3e80173b",42568:"8d1afa56",42581:"896d0616",42682:"a6a481a6",42743:"e96efdcb",43107:"b97ad201",43347:"fefee205",43900:"05973dba",43913:"f2ce4ada",43969:"020a8ae4",44122:"ee386201",44157:"6f2e8260",44266:"96c88fbe",44379:"342187dc",44456:"266ee07b",44458:"06c17949",44484:"9aa724f2",44501:"537fc07c",44527:"f50ee473",44554:"f4559154",44757:"eb1f50cf",44935:"c583927c",45098:"f34b7921",45168:"08a65e9d",45594:"f71a31ce",45939:"2f88cda0",46103:"c1e88325",46283:"a2d025b6",46524:"e2d64f20",46800:"bf17872f",46945:"f7fd642d",47240:"4fb5901f",47284:"10e5af8c",47625:"93804e50",47715:"b4b08b33",47793:"15b8ecd5",48232:"78c7820e",48239:"f0c9d97e",48263:"ada0a244",48610:"e8cacc68",48653:"ef2d0ac4",48878:"b98b8df5",49333:"48d40647",49375:"873fb02b",49810:"c0b459f1",49967:"954acbd8",50116:"e110a206",50149:"630a7976",50347:"5d9769c5",51391:"ab2f0fc2",51711:"cd88c5c2",51754:"3ea34845",51772:"5ca94a0d",52223:"d11ea920",52535:"280bea81",52587:"577cec7f",52735:"8be44cd4",52878:"6952402a",53247:"9ae1ccc0",53249:"3658743e",53487:"2b16e507",53508:"a08762b3",53556:"1853f6e9",53608:"22aa9d52",54119:"dc380fc7",54521:"62c752dc",54591:"ec939ed3",54825:"1c4c9d11",54931:"7b7af62b",55112:"ad393aad",55123:"b8e94432",55583:"936790f1",55893:"f654d248",56287:"d40cc6da",56417:"9ebe98fa",56541:"f9b5ee08",56661:"daf90e51",56917:"8d5c61d8",57310:"246eed98",57702:"e1419af3",57807:"e72cda05",57842:"102ef074",58269:"88941f9e",58461:"b5d80c60",59071:"a7eb8276",59158:"c9f8dc7f",60010:"d887d361",60018:"c30262a6",60095:"d6bc857d",60189:"4b6cac06",60205:"878fac6a",60216:"51815223",60329:"2fcf1aeb",60504:"6b7552b0",60691:"53dfeabb",60776:"89b60c0b",61092:"3a37efbf",61426:"43e5b317",61566:"6f8a00ca",61998:"c320314f",62019:"8bb6d30f",62175:"f9e7b3f7",62348:"83aee7be",62405:"2d19984d",62462:"8f990b9d",62519:"0bda760e",62573:"3bdc98ee",62617:"2ca1c545",62989:"41994730",63038:"07faf8bc",63057:"7fc52495",63355:"3b5ffe16",64013:"8cc8192c",64039:"989e551b",64067:"b32e30f7",64195:"37848f67",64222:"05699c4e",64370:"1c5b5b5b",64454:"6ef5ed05",64464:"2f175847",64620:"8f8a105e",64636:"5c3da210",64737:"9d71d572",64749:"2d1a912e",65492:"397be453",65799:"48848fb0",66088:"a0ce28da",66277:"166fc090",66301:"62856cd1",66616:"ea7f2bb8",66986:"cdda1ca4",67034:"9d4a78dc",67097:"5bf8f106",67289:"dfd1958f",67294:"22a8dff3",67373:"37a4dee4",67888:"37d87a85",68493:"03cae5e0",68562:"de714426",69092:"a5accd3d",69264:"d008bac8",69757:"7ae5342b",69786:"dda0dc97",70057:"4009d91a",70216:"719d478b",70525:"2f2e89b0",70713:"5476c31e",70918:"b4c71a68",71280:"1e22aeb6",71338:"6055c9be",71370:"6773c54c",71379:"b1a5e60c",71402:"e594706d",71486:"142fae1d",71725:"482523cd",71794:"06d1361f",72442:"c812a731",72589:"ae3f5228",72664:"9ac8d723",73006:"39e2e0c6",73163:"afea2c27",73216:"eff7bb08",73428:"df456464",73597:"3eda12cd",73825:"62324766",74612:"e9c4852e",74756:"b8d13b6a",74799:"1d432a39",75068:"44302700",75460:"50d9b887",75684:"472e4c7f",75878:"11c3229f",75969:"2c831e96",76385:"dd9c04bc",76389:"7acc8595",76422:"9f3d4c2d",76548:"615e75ad",76602:"778d5161",76683:"3ac8e982",77430:"10a3af7f",77447:"1d41257c",77685:"92578f10",77719:"9a797b03",78236:"d6ce24d8",78273:"14bf3eb4",78622:"81afbd24",78624:"3fb2d927",78657:"6f6bdb4d",78680:"2226a483",78777:"98fc260d",79007:"1dfbb7b6",79163:"37630f2c",79307:"93d920cc",79346:"7622c79a",79677:"04b9f174",79720:"b74206d3",79902:"cc80f347",80063:"917ec3b4",80321:"510312c1",80387:"7e3e21cb",80434:"10efb690",80665:"f3b1b324",80690:"54b58a0f",80898:"0554ab2a",81043:"b8644d67",81142:"21974bc5",81170:"594c394b",81519:"8d4d3ccc",81558:"8c173e96",81816:"476f5289",81848:"7dc64021",81959:"9de3dc03",81963:"b06601ec",82339:"a910bb36",82723:"6e2a4038",82763:"912d8ec0",82806:"240eb613",82827:"cb546179",83073:"35389b4c",83112:"4475550c",83340:"a6b9bd3e",83388:"363195da",83604:"f2513476",83612:"5b96477f",84193:"b7111faf",84387:"0e9517fa",84603:"42864de6",84944:"9b1185e9",84999:"35657d73",85183:"b7bfa889",85261:"13e780bf",85354:"098b6152",85476:"be85a456",85709:"735a41eb",85730:"49120d42",85760:"359832af",85831:"f52319d4",85954:"62d35c33",86019:"c1e4929b",86152:"3227e611",86259:"9b8bfaff",86415:"b857105c",86478:"b1ff06e1",86561:"3f7f1df2",86876:"4e3f6b12",87187:"98c212b4",87364:"8c96ecfd",87666:"5afe3106",88095:"c625e226",88156:"6c631d97",88187:"0678e1e7",88584:"7636e033",88698:"8d128623",88778:"2b294fea",88784:"4b8278fa",88873:"c9b1670f",88895:"f7449059",89352:"bed54c78",89551:"76868f6a",89619:"421f31dc",89626:"c1383241",89776:"6a8d5bcf",90008:"d429700e",90302:"90857501",90446:"31cffb8c",90489:"be69b768",90533:"747c44f5",90617:"d8da4c25",90759:"8e4c74f1",90975:"fcaa971a",91188:"a0b1e378",91324:"a9d7c49d",91499:"26fda792",91712:"95b660a2",91883:"b2a22a2b",92048:"ea3d9d58",92091:"23ef9b3f",92110:"7565d0d6",92684:"af31c408",92715:"8388226f",92733:"7b09b956",92771:"303c7c45",93089:"e7457c99",93457:"5ea6ad8f",93460:"368a751b",93480:"10e6e540",93575:"3ccdd1be",93621:"a2f5b6eb",93671:"b903d6e4",93760:"c91e278f",93970:"b9ea3264",94007:"20da134a",94206:"1546f168",94338:"88b40530",94368:"64ae4ad7",94474:"93147e15",94499:"f72eb84a",94754:"70bd6e3f",94892:"b78599f5",94920:"65af5461",94928:"95bf2909",94961:"696004a3",95506:"938e5c0b",95699:"19f628c0",95760:"3b0ee535",95801:"6d971b1b",96060:"6ead8a64",96383:"7d115439",96450:"aca145d0",96536:"8ad968c0",96641:"187976fd",96750:"a1022fdc",96802:"cfb66d82",97535:"23fafb4c",97856:"3e38dff2",97920:"c845c058",98427:"49ed43d0",98596:"97e351b5",98639:"f24ed07c",98709:"77e3c4d2",98714:"d6664d2a",99322:"b2d7d62a",99937:"2bae92b6"}[e]+".js",r.miniCssF=e=>{},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,a)=>Object.prototype.hasOwnProperty.call(e,a),c={},b="react-navigation-website-next:",r.l=(e,a,f,d)=>{if(c[e])c[e].push(a);else{var t,o;if(void 0!==f)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(s);var b=c[e];if(delete c[e],t.parentNode&&t.parentNode.removeChild(t),b&&b.forEach((e=>e(f))),a)return a(f)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",r.gca=function(e){return e={14616538:"88187",14716511:"30506",17896441:"27918",20697995:"31817",20989594:"71280",22592995:"65799",23828948:"93575",34737634:"39136",34750482:"92715",38945924:"77685",65636706:"34568",66169356:"34366",66875650:"89352",72619197:"56541",74450489:"90489",76725556:"58269",79893160:"92110",87288241:"56287","8c4738b1":"8",a83f720f:"23",e222d324:"180",d57ffbba:"399","14acaad8":"435","1b06775d":"660",b93a612d:"836",bc98b856:"1092",f1d3306a:"1210","2e2591dd":"1393","87fb05fe":"1547",f100c192:"1566","47cdb689":"1697","6f9c9b78":"2186","3dd22c0a":"2409","4294b48d":"2448",a187e2b2:"2759",c8d61245:"2889","63f4abc2":"2905","29af1846":"2980","66e8e455":"3024","6fc7b633":"3922",cf1736b4:"4037","7a359cef":"4074","5f623a5c":"4442","8520aa43":"4604",f4398715:"4675",ef7138f6:"4800",ece86388:"4832","6f0a4736":"5024",f6756196:"5119",e0160539:"5514",eef70735:"5657","720ec844":"5725",d52010ac:"5766",bd109270:"5829","48179b36":"5882",c414ff41:"5978",a601a56a:"6039",ad88f797:"6398","7a316a81":"6479","22cce5e3":"6679",cdc21849:"6715",db2d2c66:"7391","5a6e47ce":"7519","4de4f0aa":"8054","868d8162":"8200",b81de6e7:"8327","4950f112":"8543",e4e30971:"8550","43895b73":"8960","5050cca3":"9311","4a85a9e1":"9772","198136e6":"9795","8eb4e46b":"10001","38e75df9":"10369","451c00d0":"10801","4097ee88":"11456",b2f554cd:"11477","9150b537":"11498","34a92c49":"11529","5f7a57d5":"11534",ee216893:"11545",a7023ddc:"11713","506fd606":"11790","5a6dc606":"12227","8d3063a8":"12305",be5f3a5f:"12344",ff57007e:"12497","561a3eb1":"12541","322cbdb3":"12665",ae733de4:"12915","5fa34f3e":"12944","7bf45219":"13083","1f391b9e":"13085","2c6e00e5":"13120","1c007cbb":"13126",df5aa17f:"13677",d9dcdbb0:"14781","2bf47602":"15091","32c90e4f":"15823",f60d5e0f:"16163","6f859436":"16457","20f68260":"16707","79f65c0a":"16766",b65a55e7:"16943",ae5fe58f:"17307","884b85fa":"17432","979dc077":"17506",c90d5789:"17595","95e9668b":"17641",f171b4fe:"18098",a7bd4aaa:"18518",fe0c5989:"18841","68b0fc05":"18889","1fc9112c":"18998","41d864f0":"18999",a5a8f997:"19249","07fb801c":"19250","85ef44ad":"19618","3288f5dd":"19987","693618f8":"20211",b89f9e6f:"20259","7be16658":"20694","726a3ae5":"20841","6bcec069":"21411","208b9e32":"21453","6a29eacd":"21513","11fb85f3":"21862",aeac9b7f:"21942","585dd972":"22081",f066ce3d:"22120","3a7a90e6":"22190","1be5ddd6":"22316","7745b380":"22531",dd056032:"22589","421dbb3b":"22782",dbb6f292:"22804","9ae89415":"23158","53be29f2":"23258","029dc854":"23273","7278614b":"23521",c7ff647e:"23659","1ae011e9":"23818","34642e36":"24076",adcb3b88:"24200","6b20cb2f":"24279","7a69f3f2":"24886","682ce172":"25073",a178b8fa:"25083","34e8079f":"25101",cafedc52:"25255","369bd8f8":"25391","0e0a3cb0":"25392",f2fd19de:"25558","00d72952":"25590","482751c5":"25655",cb1ca3b7:"25735","9122f241":"25932","27e00fa9":"26177","28ae1e59":"26277","5a783331":"26463","385a96ec":"26806","15cb52a8":"26819",f0fc524c:"27075",ccb322b4:"27493",f33b6a3d:"27951",ceb96a6a:"28004",fffa478c:"28234","3d5c69eb":"28774","75086e52":"29200",b0c8eb24:"29302",f176e462:"29360","5e95c892":"29661",d42d1fd9:"29810","96c45902":"30098","55b92464":"31047",d08734b9:"31346","74ef9c09":"31450",f6147c3e:"31473","38f0ae39":"31724","69616a12":"31756","9d130922":"31762","0ad77dda":"31912","5f99a06b":"32065",b03300d9:"32252","7f0203ae":"32343",e8ce4f5a:"33123",c2c0d6a0:"33242","55b83a48":"33408",db124b13:"33735","09dc4294":"34475","3d65d037":"34609",a9397062:"34806",c088c624:"34840","7f3ebd16":"34863","77e23114":"35074",a1a99b30:"35145","31a4dab7":"35201",ae4abcdb:"35536","69e3adff":"35549","74cdd3dc":"36054","8674297c":"36166",d1b2904b:"36196","2a1e22c6":"36234","86ee57b9":"36405","116934ab":"36590","6a7fdb9e":"36708",a06a0936:"36730",fa388b7d:"36814",dde9984f:"36837","11c37a84":"36912","02f293a2":"36926","6d6cabdc":"37203","9c021584":"37438","349caeb8":"38041","966cb129":"38122","8a143e5b":"38369","060b58ec":"38407","11edefd1":"38431",d513a03c:"38833","2e363522":"38963",a8527a90:"39012",a5ad4ffe:"39023","990502fa":"39138","6054d54f":"39176","156bcb80":"39198",beb39e3f:"39315",eebb4bfa:"40014","5834e856":"40364",d8cb0df4:"40462","38fc62f0":"40883",d84a04ad:"41080","2c1dfa59":"41370","2e5371a8":"41434","18bf351a":"41447",b38ea63a:"41516",fd4b3cd9:"41887","4affc812":"41941","2bc9c82b":"42041","9af3f201":"42266","2742fd1f":"42272","34afa66a":"42277",b319bd37:"42358","3fe99ec0":"42568",c0782dcc:"42581",bf3d013e:"42682","17ec3dcd":"42743","3ddd3618":"43107","94bac345":"43347","87087cb3":"43900",cdb30427:"43913","42baf60a":"43969",b6ac21f8:"44122","283e63f8":"44157","6bc8f2a2":"44266",fb896c9f:"44379","72a85bb9":"44456","6d5e2782":"44458",baaf111f:"44484","2345d271":"44501",b6e1e9f1:"44527","0cd801b6":"44554","4d2cce11":"44757",c96bcf0e:"44935","572e4edf":"45098",cf1b6d54:"45168",c71fcd84:"45594",c2e8381f:"45939",ccc49370:"46103",f265caf3:"46283","6351806c":"46524","524cb6b9":"46800","34b88438":"47240","67bc1365":"47284","73cd3c7f":"47625","691c8b2c":"47715","2a793fe9":"47793",a7b093db:"48232",f0d91a18:"48239","4dd5a1e2":"48263","6875c492":"48610",c320ebc8:"48653",f5632d3b:"48878","957ba597":"49333","430040aa":"49375","77aa6ed4":"49810","63a36266":"49967","79ac6895":"50116","6289cd6c":"50149","01a1bba5":"50347",b91c78db:"51391","7446ee19":"51711",b296b8b0:"51754","732a0bdd":"52223","814f3328":"52535","900b69c6":"52587","317e2018":"52735","78260baf":"52878","5f5c23d7":"53247",bbc7a4b0:"53249","8d8bf681":"53487",c9bae406:"53508","79dbb029":"53556","9e4087bc":"53608",d40bf6ce:"54119",c259c03a:"54521","553b20f2":"54591","472ed44a":"54825","8386ba1d":"54931",fc5e52ef:"55112",f6f7d065:"55123",e3d4941e:"55583",b059735e:"55893",a44cee0b:"56417",f75590ae:"56661",fd014fef:"56917","37bf63f8":"57310","4f52b89f":"57702",be9b4d2c:"57807","9a16bb9d":"57842",b540d135:"58461","891dacb7":"59071","86d1f714":"59158",f04ef758:"60010","4ed526a6":"60018",d4a28cdc:"60095","4971bf21":"60189","83d480e9":"60205","857226cd":"60216","51035c32":"60329","8521727c":"60504","7ac60746":"60691",a2205702:"60776","4d989974":"61092","82bb8736":"61566","6df3dc9e":"61998","2725af3e":"62019",deb950c3:"62175","055cb6cb":"62348","23dd3248":"62405",f45c00a7:"62462","242b7c9d":"62519","1f922c0a":"62573","4f17f4e8":"62617","1d424ec3":"62989","66b225ca":"63038","0334870a":"63057","3473afe0":"63355","01a85c17":"64013","0e9dd1f6":"64039","017fa78e":"64067",c4f5d8e4:"64195","1eecde9e":"64222","9b7f82fe":"64370","298dce3d":"64454","2330c7a5":"64464",f97eb74e:"64620",b89e1214:"64636",c183ab7f:"64737",f745e7d6:"64749","0f251e76":"65492",a50c5cfe:"66088","9b8e03c9":"66277","1b79fc76":"66301",af725e73:"66616","4dad2d95":"66986",a4bf4271:"67034",a92cc67c:"67097",f60c941b:"67289","885db2d5":"67294","2895d14d":"67373","7e788281":"67888","9585dc18":"68493","2f88b479":"68562",fdba686e:"69092","3e290227":"69264",f3886628:"69757",b3da0717:"69786","6ba5b985":"70057",a103d9cd:"70216","1e63bad8":"70525","9ff2e65d":"70713","4790fcfc":"70918",f123de88:"71338","93402b4f":"71370","88089c81":"71379",fdeac899:"71402","75a3cde9":"71486",ff849402:"71725","7d87cf11":"71794","2faf7e03":"72442",a76a7284:"72589","7396804a":"72664","4ee3e0f9":"73006",e88484b3:"73163",a11e2eb6:"73216",ce5a6cfc:"73428","57bdb9cf":"73597","1233d971":"73825",a62e5334:"74612","915d8cad":"74756","190dc87f":"74799",a2851e91:"75068",d92e70e8:"75460","7f524dd3":"75684","8927ca75":"75878","99b846b2":"75969","168ed425":"76385",d547d075:"76389","51368b5b":"76422","6578c24b":"76548","7c94a739":"76602",a345bb73:"76683",b8aafcf7:"77430",ab534dd1:"77447",cd3769cf:"77719","5ee02d5e":"78236","94d96abc":"78273",b2248fa5:"78622","2965ee69":"78624","06aa38ed":"78657",e14b9321:"78680","3f09e8c5":"78777",a4e31e78:"79007",f3898f13:"79163","723a1d1f":"79307",b62ae7ee:"79346","45e61a04":"79720",ea5ec219:"79902",a4ac0748:"80063",ddf45c7d:"80321",fca5fd4e:"80387","5dde19ad":"80434","8a507deb":"80665","58932f68":"80690","0fd48e70":"80898","3fdc919d":"81043",ef628c14:"81142",f3135da8:"81170","18b2070b":"81519","86f1fc09":"81558",cde59865:"81816",d5baa5c1:"81848","16d126b2":"81959","0732884c":"81963","8dffd375":"82339","1279275a":"82723","6f67031a":"82763","47734c36":"82806","4554b8eb":"82827","220adfdd":"83073",ec406ec4:"83112","6354cbd6":"83340","48bce793":"83388","1c2eab2d":"83604","278698af":"83612",f22d3a1f:"84193",cb35979a:"84387","882617a0":"84603",d71b2077:"84944","493070b6":"84999",c716f0e7:"85183","2f8e0f44":"85261",debf69ae:"85354","480dd063":"85476",cae0f04b:"85709","8d30a36f":"85730",ab0218ea:"85760","0bcf026f":"85831","662e2520":"85954",f82f4518:"86019",ea8a36e7:"86152","61da15b7":"86259",e3217e06:"86415","9a1d032e":"86478","188f698f":"86561",e95c8dff:"86876","8da40a13":"87187",b48787b6:"87364","508f3f9b":"87666","08731dbd":"88095",cdf30472:"88156","82bb0d50":"88584","9b2fbcce":"88698",b265e1a0:"88778","825d5fdb":"88784",cec331df:"88873","682ba1cc":"88895","17b59e25":"89551","4f9396e4":"89619","17d003f0":"89626","36dd008b":"89776","3d2d3ec8":"90008",d4bc90ec:"90302",d67ed22e:"90446",b2b675dd:"90533",a90dbb68:"90617","7cbef4dd":"90759",abac2178:"90975",bdc0380f:"91188","48627ccf":"91324","8fea52f3":"91499",be35566b:"91712","54ce2ec1":"91883","50f409bc":"92048",b9ccf281:"92091","8526e2d7":"92684",e83bbd46:"92733",c6c8c51b:"92771",a6aa9e1f:"93089",c94cee29:"93457",a5ae78fa:"93460","15f1c7c7":"93480",cb5b2a41:"93621",f81e0c67:"93671",f4e7a611:"93760","0e9f90e2":"93970","1ca07b31":"94007",b0b51b63:"94206",b5e8ae63:"94338",a94703ab:"94368","320f57a7":"94474","45aab7e5":"94499","454aff66":"94754",db02a756:"94892","81cb56fd":"94920","4aa34a2d":"94928","2ad06cff":"94961",df9f3515:"95506",f71ac7f0:"95699","9dbca327":"95760","2bba45e9":"95801",d7f84142:"96060",c47cf68d:"96383","2152a276":"96450","6f680f40":"96536",de6d21b5:"96641","3bdd1be4":"96750","13e4d9ef":"96802","02715c9e":"97535","802bca5d":"97856","1a4e3797":"97920",ef5f5123:"98427","5f32cb9f":"98596","08c74c36":"98639","769a6239":"98709",ac11e877:"98714",dc42149f:"99322","61322d15":"99937"}[e]||e,r.p+r.u(e)},(()=>{var e={51303:0,40532:0};r.f.j=(a,f)=>{var c=r.o(e,a)?e[a]:void 0;if(0!==c)if(c)f.push(c[2]);else if(/^(40532|51303)$/.test(a))e[a]=0;else{var b=new Promise(((f,b)=>c=e[a]=[f,b]));f.push(c[2]=b);var d=r.p+r.u(a),t=new Error;r.l(d,(f=>{if(r.o(e,a)&&(0!==(c=e[a])&&(e[a]=void 0),c)){var b=f&&("load"===f.type?"missing":f.type),d=f&&f.target&&f.target.src;t.message="Loading chunk "+a+" failed.\n("+b+": "+d+")",t.name="ChunkLoadError",t.type=b,t.request=d,c[1](t)}}),"chunk-"+a,a)}},r.O.j=a=>0===e[a];var a=(a,f)=>{var c,b,d=f[0],t=f[1],o=f[2],n=0;if(d.some((a=>0!==e[a]))){for(c in t)r.o(t,c)&&(r.m[c]=t[c]);if(o)var i=o(r)}for(a&&a(f);n{"use strict";var e,a,f,c,b,d={},t={};function r(e){var a=t[e];if(void 0!==a)return a.exports;var f=t[e]={id:e,loaded:!1,exports:{}};return d[e].call(f.exports,f,f.exports,r),f.loaded=!0,f.exports}r.m=d,r.c=t,e=[],r.O=(a,f,c,b)=>{if(!f){var d=1/0;for(i=0;i=b)&&Object.keys(r.O).every((e=>r.O[e](f[o])))?f.splice(o--,1):(t=!1,b0&&e[i-1][2]>b;i--)e[i]=e[i-1];e[i]=[f,c,b]},r.n=e=>{var a=e&&e.__esModule?()=>e.default:()=>e;return r.d(a,{a:a}),a},f=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,c){if(1&c&&(e=this(e)),8&c)return e;if("object"==typeof e&&e){if(4&c&&e.__esModule)return e;if(16&c&&"function"==typeof e.then)return e}var b=Object.create(null);r.r(b);var d={};a=a||[null,f({}),f([]),f(f)];for(var t=2&c&&e;"object"==typeof t&&!~a.indexOf(t);t=f(t))Object.getOwnPropertyNames(t).forEach((a=>d[a]=()=>e[a]));return d.default=()=>e,r.d(b,d),b},r.d=(e,a)=>{for(var f in a)r.o(a,f)&&!r.o(e,f)&&Object.defineProperty(e,f,{enumerable:!0,get:a[f]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((a,f)=>(r.f[f](e,a),a)),[])),r.u=e=>"assets/js/"+({8:"8c4738b1",23:"a83f720f",180:"e222d324",399:"d57ffbba",435:"14acaad8",660:"1b06775d",836:"b93a612d",1092:"bc98b856",1210:"f1d3306a",1393:"2e2591dd",1547:"87fb05fe",1566:"f100c192",1697:"47cdb689",2186:"6f9c9b78",2409:"3dd22c0a",2448:"4294b48d",2759:"a187e2b2",2889:"c8d61245",2905:"63f4abc2",2980:"29af1846",3024:"66e8e455",3922:"6fc7b633",4037:"cf1736b4",4074:"7a359cef",4442:"5f623a5c",4604:"8520aa43",4675:"f4398715",4800:"ef7138f6",4832:"ece86388",5024:"6f0a4736",5119:"f6756196",5514:"e0160539",5657:"eef70735",5725:"720ec844",5766:"d52010ac",5829:"bd109270",5882:"48179b36",5978:"c414ff41",6039:"a601a56a",6398:"ad88f797",6479:"7a316a81",6679:"22cce5e3",6715:"cdc21849",7391:"db2d2c66",7519:"5a6e47ce",8054:"4de4f0aa",8200:"868d8162",8327:"b81de6e7",8543:"4950f112",8550:"e4e30971",8960:"43895b73",9311:"5050cca3",9772:"4a85a9e1",9795:"198136e6",10001:"8eb4e46b",10369:"38e75df9",10801:"451c00d0",11456:"4097ee88",11477:"b2f554cd",11498:"9150b537",11529:"34a92c49",11534:"5f7a57d5",11545:"ee216893",11713:"a7023ddc",11790:"506fd606",12227:"5a6dc606",12305:"8d3063a8",12344:"be5f3a5f",12497:"ff57007e",12541:"561a3eb1",12665:"322cbdb3",12915:"ae733de4",12944:"5fa34f3e",13083:"7bf45219",13085:"1f391b9e",13120:"2c6e00e5",13126:"1c007cbb",13677:"df5aa17f",14781:"d9dcdbb0",15091:"2bf47602",15823:"32c90e4f",16163:"f60d5e0f",16457:"6f859436",16707:"20f68260",16766:"79f65c0a",16943:"b65a55e7",17307:"ae5fe58f",17432:"884b85fa",17506:"979dc077",17595:"c90d5789",17641:"95e9668b",18098:"f171b4fe",18518:"a7bd4aaa",18841:"fe0c5989",18889:"68b0fc05",18998:"1fc9112c",18999:"41d864f0",19249:"a5a8f997",19250:"07fb801c",19618:"85ef44ad",19987:"3288f5dd",20211:"693618f8",20259:"b89f9e6f",20694:"7be16658",20841:"726a3ae5",21411:"6bcec069",21453:"208b9e32",21513:"6a29eacd",21862:"11fb85f3",21942:"aeac9b7f",22081:"585dd972",22120:"f066ce3d",22190:"3a7a90e6",22316:"1be5ddd6",22531:"7745b380",22589:"dd056032",22782:"421dbb3b",22804:"dbb6f292",23158:"9ae89415",23258:"53be29f2",23273:"029dc854",23521:"7278614b",23659:"c7ff647e",23818:"1ae011e9",24076:"34642e36",24200:"adcb3b88",24279:"6b20cb2f",24886:"7a69f3f2",25073:"682ce172",25083:"a178b8fa",25101:"34e8079f",25255:"cafedc52",25391:"369bd8f8",25392:"0e0a3cb0",25558:"f2fd19de",25590:"00d72952",25655:"482751c5",25735:"cb1ca3b7",25932:"9122f241",26177:"27e00fa9",26277:"28ae1e59",26463:"5a783331",26806:"385a96ec",26819:"15cb52a8",27075:"f0fc524c",27493:"ccb322b4",27918:"17896441",27951:"f33b6a3d",28004:"ceb96a6a",28234:"fffa478c",28774:"3d5c69eb",29200:"75086e52",29302:"b0c8eb24",29360:"f176e462",29661:"5e95c892",29810:"d42d1fd9",30098:"96c45902",30506:"14716511",31047:"55b92464",31346:"d08734b9",31450:"74ef9c09",31473:"f6147c3e",31724:"38f0ae39",31756:"69616a12",31762:"9d130922",31817:"20697995",31912:"0ad77dda",32065:"5f99a06b",32252:"b03300d9",32343:"7f0203ae",33123:"e8ce4f5a",33242:"c2c0d6a0",33408:"55b83a48",33735:"db124b13",34366:"66169356",34475:"09dc4294",34568:"65636706",34609:"3d65d037",34806:"a9397062",34840:"c088c624",34863:"7f3ebd16",35074:"77e23114",35145:"a1a99b30",35201:"31a4dab7",35536:"ae4abcdb",35549:"69e3adff",36054:"74cdd3dc",36166:"8674297c",36196:"d1b2904b",36234:"2a1e22c6",36405:"86ee57b9",36590:"116934ab",36708:"6a7fdb9e",36730:"a06a0936",36814:"fa388b7d",36837:"dde9984f",36912:"11c37a84",36926:"02f293a2",37203:"6d6cabdc",37438:"9c021584",38041:"349caeb8",38122:"966cb129",38369:"8a143e5b",38407:"060b58ec",38431:"11edefd1",38833:"d513a03c",38963:"2e363522",39012:"a8527a90",39023:"a5ad4ffe",39136:"34737634",39138:"990502fa",39176:"6054d54f",39198:"156bcb80",39315:"beb39e3f",40014:"eebb4bfa",40364:"5834e856",40462:"d8cb0df4",40883:"38fc62f0",41080:"d84a04ad",41370:"2c1dfa59",41434:"2e5371a8",41447:"18bf351a",41516:"b38ea63a",41887:"fd4b3cd9",41941:"4affc812",42041:"2bc9c82b",42266:"9af3f201",42272:"2742fd1f",42277:"34afa66a",42358:"b319bd37",42568:"3fe99ec0",42581:"c0782dcc",42682:"bf3d013e",42743:"17ec3dcd",43107:"3ddd3618",43347:"94bac345",43900:"87087cb3",43913:"cdb30427",43969:"42baf60a",44122:"b6ac21f8",44157:"283e63f8",44266:"6bc8f2a2",44379:"fb896c9f",44456:"72a85bb9",44458:"6d5e2782",44484:"baaf111f",44501:"2345d271",44527:"b6e1e9f1",44554:"0cd801b6",44757:"4d2cce11",44935:"c96bcf0e",45098:"572e4edf",45168:"cf1b6d54",45594:"c71fcd84",45939:"c2e8381f",46103:"ccc49370",46283:"f265caf3",46524:"6351806c",46800:"524cb6b9",47240:"34b88438",47284:"67bc1365",47625:"73cd3c7f",47715:"691c8b2c",47793:"2a793fe9",48232:"a7b093db",48239:"f0d91a18",48263:"4dd5a1e2",48610:"6875c492",48653:"c320ebc8",48878:"f5632d3b",49333:"957ba597",49375:"430040aa",49810:"77aa6ed4",49967:"63a36266",50116:"79ac6895",50149:"6289cd6c",50347:"01a1bba5",51391:"b91c78db",51711:"7446ee19",51754:"b296b8b0",52223:"732a0bdd",52535:"814f3328",52587:"900b69c6",52735:"317e2018",52878:"78260baf",53247:"5f5c23d7",53249:"bbc7a4b0",53487:"8d8bf681",53508:"c9bae406",53556:"79dbb029",53608:"9e4087bc",54119:"d40bf6ce",54521:"c259c03a",54591:"553b20f2",54825:"472ed44a",54931:"8386ba1d",55112:"fc5e52ef",55123:"f6f7d065",55583:"e3d4941e",55893:"b059735e",56287:"87288241",56417:"a44cee0b",56541:"72619197",56661:"f75590ae",56917:"fd014fef",57310:"37bf63f8",57702:"4f52b89f",57807:"be9b4d2c",57842:"9a16bb9d",58269:"76725556",58461:"b540d135",59071:"891dacb7",59158:"86d1f714",60010:"f04ef758",60018:"4ed526a6",60095:"d4a28cdc",60189:"4971bf21",60205:"83d480e9",60216:"857226cd",60329:"51035c32",60504:"8521727c",60691:"7ac60746",60776:"a2205702",61092:"4d989974",61566:"82bb8736",61998:"6df3dc9e",62019:"2725af3e",62175:"deb950c3",62348:"055cb6cb",62405:"23dd3248",62462:"f45c00a7",62519:"242b7c9d",62573:"1f922c0a",62617:"4f17f4e8",62989:"1d424ec3",63038:"66b225ca",63057:"0334870a",63355:"3473afe0",64013:"01a85c17",64039:"0e9dd1f6",64067:"017fa78e",64195:"c4f5d8e4",64222:"1eecde9e",64370:"9b7f82fe",64454:"298dce3d",64464:"2330c7a5",64620:"f97eb74e",64636:"b89e1214",64737:"c183ab7f",64749:"f745e7d6",65492:"0f251e76",65799:"22592995",66088:"a50c5cfe",66277:"9b8e03c9",66301:"1b79fc76",66616:"af725e73",66986:"4dad2d95",67034:"a4bf4271",67097:"a92cc67c",67289:"f60c941b",67294:"885db2d5",67373:"2895d14d",67888:"7e788281",68493:"9585dc18",68562:"2f88b479",69092:"fdba686e",69264:"3e290227",69757:"f3886628",69786:"b3da0717",70057:"6ba5b985",70216:"a103d9cd",70525:"1e63bad8",70713:"9ff2e65d",70918:"4790fcfc",71280:"20989594",71338:"f123de88",71370:"93402b4f",71379:"88089c81",71402:"fdeac899",71486:"75a3cde9",71725:"ff849402",71794:"7d87cf11",72442:"2faf7e03",72589:"a76a7284",72664:"7396804a",73006:"4ee3e0f9",73163:"e88484b3",73216:"a11e2eb6",73428:"ce5a6cfc",73597:"57bdb9cf",73825:"1233d971",74612:"a62e5334",74756:"915d8cad",74799:"190dc87f",75068:"a2851e91",75460:"d92e70e8",75684:"7f524dd3",75878:"8927ca75",75969:"99b846b2",76385:"168ed425",76389:"d547d075",76422:"51368b5b",76548:"6578c24b",76602:"7c94a739",76683:"a345bb73",77430:"b8aafcf7",77447:"ab534dd1",77685:"38945924",77719:"cd3769cf",78236:"5ee02d5e",78273:"94d96abc",78622:"b2248fa5",78624:"2965ee69",78657:"06aa38ed",78680:"e14b9321",78777:"3f09e8c5",79007:"a4e31e78",79163:"f3898f13",79307:"723a1d1f",79346:"b62ae7ee",79720:"45e61a04",79902:"ea5ec219",80063:"a4ac0748",80321:"ddf45c7d",80387:"fca5fd4e",80434:"5dde19ad",80665:"8a507deb",80690:"58932f68",80898:"0fd48e70",81043:"3fdc919d",81142:"ef628c14",81170:"f3135da8",81519:"18b2070b",81558:"86f1fc09",81816:"cde59865",81848:"d5baa5c1",81959:"16d126b2",81963:"0732884c",82339:"8dffd375",82723:"1279275a",82763:"6f67031a",82806:"47734c36",82827:"4554b8eb",83073:"220adfdd",83112:"ec406ec4",83340:"6354cbd6",83388:"48bce793",83604:"1c2eab2d",83612:"278698af",84193:"f22d3a1f",84387:"cb35979a",84603:"882617a0",84944:"d71b2077",84999:"493070b6",85183:"c716f0e7",85261:"2f8e0f44",85354:"debf69ae",85476:"480dd063",85709:"cae0f04b",85730:"8d30a36f",85760:"ab0218ea",85831:"0bcf026f",85954:"662e2520",86019:"f82f4518",86152:"ea8a36e7",86259:"61da15b7",86415:"e3217e06",86478:"9a1d032e",86561:"188f698f",86876:"e95c8dff",87187:"8da40a13",87364:"b48787b6",87666:"508f3f9b",88095:"08731dbd",88156:"cdf30472",88187:"14616538",88584:"82bb0d50",88698:"9b2fbcce",88778:"b265e1a0",88784:"825d5fdb",88873:"cec331df",88895:"682ba1cc",89352:"66875650",89551:"17b59e25",89619:"4f9396e4",89626:"17d003f0",89776:"36dd008b",90008:"3d2d3ec8",90302:"d4bc90ec",90446:"d67ed22e",90489:"74450489",90533:"b2b675dd",90617:"a90dbb68",90759:"7cbef4dd",90975:"abac2178",91188:"bdc0380f",91324:"48627ccf",91499:"8fea52f3",91712:"be35566b",91883:"54ce2ec1",92048:"50f409bc",92091:"b9ccf281",92110:"79893160",92684:"8526e2d7",92715:"34750482",92733:"e83bbd46",92771:"c6c8c51b",93089:"a6aa9e1f",93457:"c94cee29",93460:"a5ae78fa",93480:"15f1c7c7",93575:"23828948",93621:"cb5b2a41",93671:"f81e0c67",93760:"f4e7a611",93970:"0e9f90e2",94007:"1ca07b31",94206:"b0b51b63",94338:"b5e8ae63",94368:"a94703ab",94474:"320f57a7",94499:"45aab7e5",94754:"454aff66",94892:"db02a756",94920:"81cb56fd",94928:"4aa34a2d",94961:"2ad06cff",95506:"df9f3515",95699:"f71ac7f0",95760:"9dbca327",95801:"2bba45e9",96060:"d7f84142",96383:"c47cf68d",96450:"2152a276",96536:"6f680f40",96641:"de6d21b5",96750:"3bdd1be4",96802:"13e4d9ef",97535:"02715c9e",97856:"802bca5d",97920:"1a4e3797",98427:"ef5f5123",98596:"5f32cb9f",98639:"08c74c36",98709:"769a6239",98714:"ac11e877",99322:"dc42149f",99937:"61322d15"}[e]||e)+"."+{8:"4622d277",23:"fb653bb2",180:"feb80294",399:"58c8e2a5",435:"c89aa814",660:"7b664e2a",836:"16f6abfd",1092:"b813fbf7",1210:"1a517f97",1393:"9b884bc3",1547:"d58086fa",1566:"93749146",1697:"f3947184",2186:"17cadbdc",2409:"6315beec",2448:"2785644d",2759:"1986374f",2889:"81ca0a56",2905:"8f0caa23",2980:"3109bb5b",3024:"b99b4048",3242:"dd783d2d",3922:"ec4d38e5",4037:"54fb968f",4074:"dbdae914",4442:"4419a273",4604:"22021f7d",4675:"83a3ea93",4800:"30ae7040",4832:"4bcbea4e",5024:"af2bd38c",5119:"bcc475aa",5514:"a417561b",5657:"546e70f6",5725:"69d5e252",5766:"3a2e7cd7",5829:"4f45838f",5882:"a00fbd40",5978:"4c71c0ac",6039:"129629bc",6398:"140fedfb",6479:"e73cdf3d",6679:"d2bc298d",6715:"c21aa9e5",7391:"04ab12d6",7519:"b043b83d",8054:"5c20c39a",8200:"b19b01df",8327:"ad926205",8543:"ead00864",8550:"ec254cdb",8960:"933ad808",9311:"11cbc69a",9772:"e6a90dc3",9795:"a901bdfe",10001:"d4297e50",10369:"24a95818",10801:"cd930aea",11456:"cb7c3c37",11477:"e2ce6e7e",11498:"75f5c93c",11529:"76cac440",11534:"4966afb9",11545:"485c9c9a",11713:"d5711c9d",11790:"2c6c2013",12227:"9fd20e71",12305:"963c241d",12344:"0e67ee7a",12497:"868251b9",12541:"a23eaab9",12665:"e7b0ff88",12915:"d317aaec",12944:"4f3cfc42",13083:"1bffabe3",13085:"65412243",13120:"48636ac0",13126:"1877f754",13677:"96e012c2",14781:"35345bf7",15091:"3118c157",15823:"3422b323",16163:"2129dd3c",16457:"08644452",16707:"eb2e76e3",16766:"e4e5eb2a",16943:"fd4703c9",17307:"908dae43",17432:"5b48b829",17506:"a1edd259",17595:"21ae045f",17641:"5ea3907d",18098:"b33d9d6c",18518:"ea9e75d7",18841:"3ab213b4",18889:"44ce95d1",18894:"cdbb0ed5",18998:"8c809860",18999:"3be16432",19249:"8a262d5d",19250:"079bb69b",19618:"db4507c4",19987:"3fe3c87a",20211:"400846ae",20259:"0d20a158",20694:"7cd3b48a",20841:"18e518f5",21411:"405b3ecb",21453:"416aa36f",21513:"ebc14459",21862:"1e030fb9",21942:"d39bc249",22081:"39ffb594",22120:"3ec5c45e",22190:"97d95165",22316:"0d67ad8a",22531:"351abd64",22589:"29d6e849",22782:"6fb82867",22804:"6da8c73e",23158:"294249fc",23258:"f822767f",23273:"66a09991",23521:"ef999e75",23659:"faf49f25",23818:"be9e5c67",24076:"5edeb447",24200:"bd6c5bc0",24279:"f630320a",24886:"124628c2",25073:"f738b8c2",25083:"30a57ccd",25101:"cad1e846",25255:"5142355e",25391:"8404f927",25392:"6afbf54c",25558:"4d5d5947",25590:"fcc9463f",25655:"56d7baa3",25735:"16cb6cb9",25932:"836d0538",26177:"2ba09db9",26277:"6e7a3579",26463:"e52a9d7c",26806:"42b74faa",26819:"6839c875",27075:"5fca4d16",27493:"14c507e9",27918:"6223f992",27951:"1b38e3c4",28004:"257edb76",28234:"a7a5522f",28774:"8c5a9d6d",29200:"adf79ca9",29302:"1a3f6d08",29360:"a998a0cf",29661:"08973c96",29810:"cde91c14",30098:"cd2592e9",30506:"e70bed41",31047:"d5183d4a",31346:"cccaba08",31450:"86a4ca1e",31473:"05450d51",31724:"3d62e263",31756:"35285fad",31762:"3eb65f7a",31817:"21b83cd7",31912:"8f359718",32065:"78bd79f8",32252:"6e7762ff",32343:"ac547009",33123:"17b56222",33242:"f832c579",33408:"6959235b",33735:"d0b614e7",34366:"47971349",34475:"c5a062da",34568:"8cf2b9d3",34609:"f22265df",34806:"100ebaca",34840:"9d905e25",34863:"284dcb50",35074:"94ae521e",35089:"01b94a12",35145:"38dc187d",35201:"73a67241",35536:"078039a7",35549:"296e046f",36054:"1a680cf5",36166:"1ed45412",36196:"8f94beae",36234:"0b69db87",36405:"ab7f613a",36590:"49314666",36708:"b593932f",36730:"a9d44c64",36814:"49356a74",36837:"7a9cbae3",36912:"cd547b21",36926:"60dc7ebd",37203:"07a66edb",37438:"06fcd09b",38041:"29ca03ac",38122:"567adc3d",38369:"a187cd3a",38407:"04748cef",38431:"b4f221b6",38833:"01281203",38963:"6c74dc15",39012:"8099a879",39023:"5a5109ca",39136:"de165ae4",39138:"910ac5be",39176:"05d4954b",39198:"7409b1f6",39315:"b4d86421",40014:"f955d459",40364:"f07adc00",40462:"1db8156c",40883:"c908d75f",41080:"84d18365",41370:"b4d174f5",41434:"41ef0117",41447:"34dc5934",41516:"2d1de158",41887:"491ead9d",41941:"b361e6c6",42041:"f1778509",42266:"bba3ed76",42272:"bacd08c7",42277:"481e94a6",42358:"3e80173b",42568:"8d1afa56",42581:"896d0616",42682:"a6a481a6",42743:"e96efdcb",43107:"b97ad201",43347:"fefee205",43900:"05973dba",43913:"f2ce4ada",43969:"020a8ae4",44122:"ee386201",44157:"6f2e8260",44266:"96c88fbe",44379:"342187dc",44456:"266ee07b",44458:"06c17949",44484:"9aa724f2",44501:"537fc07c",44527:"f50ee473",44554:"768947b9",44757:"eb1f50cf",44935:"c583927c",45098:"f34b7921",45168:"08a65e9d",45594:"f71a31ce",45939:"2f88cda0",46103:"c1e88325",46283:"a2d025b6",46524:"e2d64f20",46800:"bf17872f",46945:"f7fd642d",47240:"4fb5901f",47284:"10e5af8c",47625:"93804e50",47715:"b4b08b33",47793:"15b8ecd5",48232:"78c7820e",48239:"f0c9d97e",48263:"ada0a244",48610:"e8cacc68",48653:"ef2d0ac4",48878:"b98b8df5",49333:"48d40647",49375:"873fb02b",49810:"c0b459f1",49967:"954acbd8",50116:"e110a206",50149:"630a7976",50347:"5d9769c5",51391:"ab2f0fc2",51711:"cd88c5c2",51754:"3ea34845",51772:"5ca94a0d",52223:"d11ea920",52535:"280bea81",52587:"577cec7f",52735:"8be44cd4",52878:"6952402a",53247:"9ae1ccc0",53249:"3658743e",53487:"2b16e507",53508:"a08762b3",53556:"1853f6e9",53608:"22aa9d52",54119:"dc380fc7",54521:"62c752dc",54591:"ec939ed3",54825:"1c4c9d11",54931:"7b7af62b",55112:"ad393aad",55123:"b8e94432",55583:"936790f1",55893:"f654d248",56287:"d40cc6da",56417:"9ebe98fa",56541:"f9b5ee08",56661:"daf90e51",56917:"8d5c61d8",57310:"246eed98",57702:"e1419af3",57807:"e72cda05",57842:"102ef074",58269:"88941f9e",58461:"b5d80c60",59071:"a7eb8276",59158:"c9f8dc7f",60010:"d887d361",60018:"c30262a6",60095:"d6bc857d",60189:"4b6cac06",60205:"878fac6a",60216:"51815223",60329:"2fcf1aeb",60504:"6b7552b0",60691:"53dfeabb",60776:"89b60c0b",61092:"3a37efbf",61426:"43e5b317",61566:"6f8a00ca",61998:"c320314f",62019:"8bb6d30f",62175:"f9e7b3f7",62348:"83aee7be",62405:"2d19984d",62462:"8f990b9d",62519:"0bda760e",62573:"3bdc98ee",62617:"2ca1c545",62989:"41994730",63038:"07faf8bc",63057:"7fc52495",63355:"3b5ffe16",64013:"8cc8192c",64039:"989e551b",64067:"b32e30f7",64195:"37848f67",64222:"05699c4e",64370:"1c5b5b5b",64454:"6ef5ed05",64464:"2f175847",64620:"8f8a105e",64636:"5c3da210",64737:"9d71d572",64749:"2d1a912e",65492:"397be453",65799:"48848fb0",66088:"a0ce28da",66277:"166fc090",66301:"62856cd1",66616:"ea7f2bb8",66986:"cdda1ca4",67034:"9d4a78dc",67097:"5bf8f106",67289:"dfd1958f",67294:"22a8dff3",67373:"37a4dee4",67888:"37d87a85",68493:"03cae5e0",68562:"de714426",69092:"a5accd3d",69264:"d008bac8",69757:"7ae5342b",69786:"dda0dc97",70057:"4009d91a",70216:"719d478b",70525:"2f2e89b0",70713:"5476c31e",70918:"b4c71a68",71280:"1e22aeb6",71338:"6055c9be",71370:"6773c54c",71379:"b1a5e60c",71402:"e594706d",71486:"142fae1d",71725:"482523cd",71794:"06d1361f",72442:"c812a731",72589:"ae3f5228",72664:"9ac8d723",73006:"39e2e0c6",73163:"afea2c27",73216:"eff7bb08",73428:"df456464",73597:"3eda12cd",73825:"62324766",74612:"e9c4852e",74756:"b8d13b6a",74799:"1d432a39",75068:"44302700",75460:"50d9b887",75684:"472e4c7f",75878:"11c3229f",75969:"2c831e96",76385:"dd9c04bc",76389:"7acc8595",76422:"9f3d4c2d",76548:"615e75ad",76602:"778d5161",76683:"3ac8e982",77430:"10a3af7f",77447:"1d41257c",77685:"92578f10",77719:"9a797b03",78236:"d6ce24d8",78273:"14bf3eb4",78622:"81afbd24",78624:"3fb2d927",78657:"6f6bdb4d",78680:"2226a483",78777:"98fc260d",79007:"1dfbb7b6",79163:"37630f2c",79307:"93d920cc",79346:"7622c79a",79677:"04b9f174",79720:"b74206d3",79902:"cc80f347",80063:"917ec3b4",80321:"510312c1",80387:"7e3e21cb",80434:"10efb690",80665:"f3b1b324",80690:"54b58a0f",80898:"0554ab2a",81043:"b8644d67",81142:"21974bc5",81170:"594c394b",81519:"8d4d3ccc",81558:"8c173e96",81816:"476f5289",81848:"7dc64021",81959:"9de3dc03",81963:"b06601ec",82339:"a910bb36",82723:"6e2a4038",82763:"912d8ec0",82806:"240eb613",82827:"cb546179",83073:"35389b4c",83112:"4475550c",83340:"a6b9bd3e",83388:"363195da",83604:"f2513476",83612:"5b96477f",84193:"b7111faf",84387:"0e9517fa",84603:"42864de6",84944:"9b1185e9",84999:"35657d73",85183:"b7bfa889",85261:"13e780bf",85354:"098b6152",85476:"be85a456",85709:"735a41eb",85730:"49120d42",85760:"359832af",85831:"f52319d4",85954:"62d35c33",86019:"c1e4929b",86152:"3227e611",86259:"9b8bfaff",86415:"b857105c",86478:"b1ff06e1",86561:"3f7f1df2",86876:"4e3f6b12",87187:"98c212b4",87364:"8c96ecfd",87666:"5afe3106",88095:"c625e226",88156:"6c631d97",88187:"0678e1e7",88584:"7636e033",88698:"8d128623",88778:"2b294fea",88784:"4b8278fa",88873:"c9b1670f",88895:"f7449059",89352:"bed54c78",89551:"76868f6a",89619:"421f31dc",89626:"c1383241",89776:"6a8d5bcf",90008:"d429700e",90302:"90857501",90446:"31cffb8c",90489:"be69b768",90533:"747c44f5",90617:"d8da4c25",90759:"8e4c74f1",90975:"fcaa971a",91188:"a0b1e378",91324:"a9d7c49d",91499:"26fda792",91712:"95b660a2",91883:"b2a22a2b",92048:"ea3d9d58",92091:"23ef9b3f",92110:"7565d0d6",92684:"af31c408",92715:"8388226f",92733:"7b09b956",92771:"303c7c45",93089:"e7457c99",93457:"5ea6ad8f",93460:"368a751b",93480:"10e6e540",93575:"3ccdd1be",93621:"a2f5b6eb",93671:"b903d6e4",93760:"c91e278f",93970:"b9ea3264",94007:"20da134a",94206:"1546f168",94338:"88b40530",94368:"64ae4ad7",94474:"93147e15",94499:"f72eb84a",94754:"70bd6e3f",94892:"b78599f5",94920:"65af5461",94928:"95bf2909",94961:"696004a3",95506:"938e5c0b",95699:"19f628c0",95760:"3b0ee535",95801:"6d971b1b",96060:"6ead8a64",96383:"7d115439",96450:"aca145d0",96536:"8ad968c0",96641:"187976fd",96750:"a1022fdc",96802:"cfb66d82",97535:"23fafb4c",97856:"3e38dff2",97920:"c845c058",98427:"49ed43d0",98596:"97e351b5",98639:"f24ed07c",98709:"77e3c4d2",98714:"d6664d2a",99322:"b2d7d62a",99937:"2bae92b6"}[e]+".js",r.miniCssF=e=>{},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,a)=>Object.prototype.hasOwnProperty.call(e,a),c={},b="react-navigation-website-next:",r.l=(e,a,f,d)=>{if(c[e])c[e].push(a);else{var t,o;if(void 0!==f)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(s);var b=c[e];if(delete c[e],t.parentNode&&t.parentNode.removeChild(t),b&&b.forEach((e=>e(f))),a)return a(f)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",r.gca=function(e){return e={14616538:"88187",14716511:"30506",17896441:"27918",20697995:"31817",20989594:"71280",22592995:"65799",23828948:"93575",34737634:"39136",34750482:"92715",38945924:"77685",65636706:"34568",66169356:"34366",66875650:"89352",72619197:"56541",74450489:"90489",76725556:"58269",79893160:"92110",87288241:"56287","8c4738b1":"8",a83f720f:"23",e222d324:"180",d57ffbba:"399","14acaad8":"435","1b06775d":"660",b93a612d:"836",bc98b856:"1092",f1d3306a:"1210","2e2591dd":"1393","87fb05fe":"1547",f100c192:"1566","47cdb689":"1697","6f9c9b78":"2186","3dd22c0a":"2409","4294b48d":"2448",a187e2b2:"2759",c8d61245:"2889","63f4abc2":"2905","29af1846":"2980","66e8e455":"3024","6fc7b633":"3922",cf1736b4:"4037","7a359cef":"4074","5f623a5c":"4442","8520aa43":"4604",f4398715:"4675",ef7138f6:"4800",ece86388:"4832","6f0a4736":"5024",f6756196:"5119",e0160539:"5514",eef70735:"5657","720ec844":"5725",d52010ac:"5766",bd109270:"5829","48179b36":"5882",c414ff41:"5978",a601a56a:"6039",ad88f797:"6398","7a316a81":"6479","22cce5e3":"6679",cdc21849:"6715",db2d2c66:"7391","5a6e47ce":"7519","4de4f0aa":"8054","868d8162":"8200",b81de6e7:"8327","4950f112":"8543",e4e30971:"8550","43895b73":"8960","5050cca3":"9311","4a85a9e1":"9772","198136e6":"9795","8eb4e46b":"10001","38e75df9":"10369","451c00d0":"10801","4097ee88":"11456",b2f554cd:"11477","9150b537":"11498","34a92c49":"11529","5f7a57d5":"11534",ee216893:"11545",a7023ddc:"11713","506fd606":"11790","5a6dc606":"12227","8d3063a8":"12305",be5f3a5f:"12344",ff57007e:"12497","561a3eb1":"12541","322cbdb3":"12665",ae733de4:"12915","5fa34f3e":"12944","7bf45219":"13083","1f391b9e":"13085","2c6e00e5":"13120","1c007cbb":"13126",df5aa17f:"13677",d9dcdbb0:"14781","2bf47602":"15091","32c90e4f":"15823",f60d5e0f:"16163","6f859436":"16457","20f68260":"16707","79f65c0a":"16766",b65a55e7:"16943",ae5fe58f:"17307","884b85fa":"17432","979dc077":"17506",c90d5789:"17595","95e9668b":"17641",f171b4fe:"18098",a7bd4aaa:"18518",fe0c5989:"18841","68b0fc05":"18889","1fc9112c":"18998","41d864f0":"18999",a5a8f997:"19249","07fb801c":"19250","85ef44ad":"19618","3288f5dd":"19987","693618f8":"20211",b89f9e6f:"20259","7be16658":"20694","726a3ae5":"20841","6bcec069":"21411","208b9e32":"21453","6a29eacd":"21513","11fb85f3":"21862",aeac9b7f:"21942","585dd972":"22081",f066ce3d:"22120","3a7a90e6":"22190","1be5ddd6":"22316","7745b380":"22531",dd056032:"22589","421dbb3b":"22782",dbb6f292:"22804","9ae89415":"23158","53be29f2":"23258","029dc854":"23273","7278614b":"23521",c7ff647e:"23659","1ae011e9":"23818","34642e36":"24076",adcb3b88:"24200","6b20cb2f":"24279","7a69f3f2":"24886","682ce172":"25073",a178b8fa:"25083","34e8079f":"25101",cafedc52:"25255","369bd8f8":"25391","0e0a3cb0":"25392",f2fd19de:"25558","00d72952":"25590","482751c5":"25655",cb1ca3b7:"25735","9122f241":"25932","27e00fa9":"26177","28ae1e59":"26277","5a783331":"26463","385a96ec":"26806","15cb52a8":"26819",f0fc524c:"27075",ccb322b4:"27493",f33b6a3d:"27951",ceb96a6a:"28004",fffa478c:"28234","3d5c69eb":"28774","75086e52":"29200",b0c8eb24:"29302",f176e462:"29360","5e95c892":"29661",d42d1fd9:"29810","96c45902":"30098","55b92464":"31047",d08734b9:"31346","74ef9c09":"31450",f6147c3e:"31473","38f0ae39":"31724","69616a12":"31756","9d130922":"31762","0ad77dda":"31912","5f99a06b":"32065",b03300d9:"32252","7f0203ae":"32343",e8ce4f5a:"33123",c2c0d6a0:"33242","55b83a48":"33408",db124b13:"33735","09dc4294":"34475","3d65d037":"34609",a9397062:"34806",c088c624:"34840","7f3ebd16":"34863","77e23114":"35074",a1a99b30:"35145","31a4dab7":"35201",ae4abcdb:"35536","69e3adff":"35549","74cdd3dc":"36054","8674297c":"36166",d1b2904b:"36196","2a1e22c6":"36234","86ee57b9":"36405","116934ab":"36590","6a7fdb9e":"36708",a06a0936:"36730",fa388b7d:"36814",dde9984f:"36837","11c37a84":"36912","02f293a2":"36926","6d6cabdc":"37203","9c021584":"37438","349caeb8":"38041","966cb129":"38122","8a143e5b":"38369","060b58ec":"38407","11edefd1":"38431",d513a03c:"38833","2e363522":"38963",a8527a90:"39012",a5ad4ffe:"39023","990502fa":"39138","6054d54f":"39176","156bcb80":"39198",beb39e3f:"39315",eebb4bfa:"40014","5834e856":"40364",d8cb0df4:"40462","38fc62f0":"40883",d84a04ad:"41080","2c1dfa59":"41370","2e5371a8":"41434","18bf351a":"41447",b38ea63a:"41516",fd4b3cd9:"41887","4affc812":"41941","2bc9c82b":"42041","9af3f201":"42266","2742fd1f":"42272","34afa66a":"42277",b319bd37:"42358","3fe99ec0":"42568",c0782dcc:"42581",bf3d013e:"42682","17ec3dcd":"42743","3ddd3618":"43107","94bac345":"43347","87087cb3":"43900",cdb30427:"43913","42baf60a":"43969",b6ac21f8:"44122","283e63f8":"44157","6bc8f2a2":"44266",fb896c9f:"44379","72a85bb9":"44456","6d5e2782":"44458",baaf111f:"44484","2345d271":"44501",b6e1e9f1:"44527","0cd801b6":"44554","4d2cce11":"44757",c96bcf0e:"44935","572e4edf":"45098",cf1b6d54:"45168",c71fcd84:"45594",c2e8381f:"45939",ccc49370:"46103",f265caf3:"46283","6351806c":"46524","524cb6b9":"46800","34b88438":"47240","67bc1365":"47284","73cd3c7f":"47625","691c8b2c":"47715","2a793fe9":"47793",a7b093db:"48232",f0d91a18:"48239","4dd5a1e2":"48263","6875c492":"48610",c320ebc8:"48653",f5632d3b:"48878","957ba597":"49333","430040aa":"49375","77aa6ed4":"49810","63a36266":"49967","79ac6895":"50116","6289cd6c":"50149","01a1bba5":"50347",b91c78db:"51391","7446ee19":"51711",b296b8b0:"51754","732a0bdd":"52223","814f3328":"52535","900b69c6":"52587","317e2018":"52735","78260baf":"52878","5f5c23d7":"53247",bbc7a4b0:"53249","8d8bf681":"53487",c9bae406:"53508","79dbb029":"53556","9e4087bc":"53608",d40bf6ce:"54119",c259c03a:"54521","553b20f2":"54591","472ed44a":"54825","8386ba1d":"54931",fc5e52ef:"55112",f6f7d065:"55123",e3d4941e:"55583",b059735e:"55893",a44cee0b:"56417",f75590ae:"56661",fd014fef:"56917","37bf63f8":"57310","4f52b89f":"57702",be9b4d2c:"57807","9a16bb9d":"57842",b540d135:"58461","891dacb7":"59071","86d1f714":"59158",f04ef758:"60010","4ed526a6":"60018",d4a28cdc:"60095","4971bf21":"60189","83d480e9":"60205","857226cd":"60216","51035c32":"60329","8521727c":"60504","7ac60746":"60691",a2205702:"60776","4d989974":"61092","82bb8736":"61566","6df3dc9e":"61998","2725af3e":"62019",deb950c3:"62175","055cb6cb":"62348","23dd3248":"62405",f45c00a7:"62462","242b7c9d":"62519","1f922c0a":"62573","4f17f4e8":"62617","1d424ec3":"62989","66b225ca":"63038","0334870a":"63057","3473afe0":"63355","01a85c17":"64013","0e9dd1f6":"64039","017fa78e":"64067",c4f5d8e4:"64195","1eecde9e":"64222","9b7f82fe":"64370","298dce3d":"64454","2330c7a5":"64464",f97eb74e:"64620",b89e1214:"64636",c183ab7f:"64737",f745e7d6:"64749","0f251e76":"65492",a50c5cfe:"66088","9b8e03c9":"66277","1b79fc76":"66301",af725e73:"66616","4dad2d95":"66986",a4bf4271:"67034",a92cc67c:"67097",f60c941b:"67289","885db2d5":"67294","2895d14d":"67373","7e788281":"67888","9585dc18":"68493","2f88b479":"68562",fdba686e:"69092","3e290227":"69264",f3886628:"69757",b3da0717:"69786","6ba5b985":"70057",a103d9cd:"70216","1e63bad8":"70525","9ff2e65d":"70713","4790fcfc":"70918",f123de88:"71338","93402b4f":"71370","88089c81":"71379",fdeac899:"71402","75a3cde9":"71486",ff849402:"71725","7d87cf11":"71794","2faf7e03":"72442",a76a7284:"72589","7396804a":"72664","4ee3e0f9":"73006",e88484b3:"73163",a11e2eb6:"73216",ce5a6cfc:"73428","57bdb9cf":"73597","1233d971":"73825",a62e5334:"74612","915d8cad":"74756","190dc87f":"74799",a2851e91:"75068",d92e70e8:"75460","7f524dd3":"75684","8927ca75":"75878","99b846b2":"75969","168ed425":"76385",d547d075:"76389","51368b5b":"76422","6578c24b":"76548","7c94a739":"76602",a345bb73:"76683",b8aafcf7:"77430",ab534dd1:"77447",cd3769cf:"77719","5ee02d5e":"78236","94d96abc":"78273",b2248fa5:"78622","2965ee69":"78624","06aa38ed":"78657",e14b9321:"78680","3f09e8c5":"78777",a4e31e78:"79007",f3898f13:"79163","723a1d1f":"79307",b62ae7ee:"79346","45e61a04":"79720",ea5ec219:"79902",a4ac0748:"80063",ddf45c7d:"80321",fca5fd4e:"80387","5dde19ad":"80434","8a507deb":"80665","58932f68":"80690","0fd48e70":"80898","3fdc919d":"81043",ef628c14:"81142",f3135da8:"81170","18b2070b":"81519","86f1fc09":"81558",cde59865:"81816",d5baa5c1:"81848","16d126b2":"81959","0732884c":"81963","8dffd375":"82339","1279275a":"82723","6f67031a":"82763","47734c36":"82806","4554b8eb":"82827","220adfdd":"83073",ec406ec4:"83112","6354cbd6":"83340","48bce793":"83388","1c2eab2d":"83604","278698af":"83612",f22d3a1f:"84193",cb35979a:"84387","882617a0":"84603",d71b2077:"84944","493070b6":"84999",c716f0e7:"85183","2f8e0f44":"85261",debf69ae:"85354","480dd063":"85476",cae0f04b:"85709","8d30a36f":"85730",ab0218ea:"85760","0bcf026f":"85831","662e2520":"85954",f82f4518:"86019",ea8a36e7:"86152","61da15b7":"86259",e3217e06:"86415","9a1d032e":"86478","188f698f":"86561",e95c8dff:"86876","8da40a13":"87187",b48787b6:"87364","508f3f9b":"87666","08731dbd":"88095",cdf30472:"88156","82bb0d50":"88584","9b2fbcce":"88698",b265e1a0:"88778","825d5fdb":"88784",cec331df:"88873","682ba1cc":"88895","17b59e25":"89551","4f9396e4":"89619","17d003f0":"89626","36dd008b":"89776","3d2d3ec8":"90008",d4bc90ec:"90302",d67ed22e:"90446",b2b675dd:"90533",a90dbb68:"90617","7cbef4dd":"90759",abac2178:"90975",bdc0380f:"91188","48627ccf":"91324","8fea52f3":"91499",be35566b:"91712","54ce2ec1":"91883","50f409bc":"92048",b9ccf281:"92091","8526e2d7":"92684",e83bbd46:"92733",c6c8c51b:"92771",a6aa9e1f:"93089",c94cee29:"93457",a5ae78fa:"93460","15f1c7c7":"93480",cb5b2a41:"93621",f81e0c67:"93671",f4e7a611:"93760","0e9f90e2":"93970","1ca07b31":"94007",b0b51b63:"94206",b5e8ae63:"94338",a94703ab:"94368","320f57a7":"94474","45aab7e5":"94499","454aff66":"94754",db02a756:"94892","81cb56fd":"94920","4aa34a2d":"94928","2ad06cff":"94961",df9f3515:"95506",f71ac7f0:"95699","9dbca327":"95760","2bba45e9":"95801",d7f84142:"96060",c47cf68d:"96383","2152a276":"96450","6f680f40":"96536",de6d21b5:"96641","3bdd1be4":"96750","13e4d9ef":"96802","02715c9e":"97535","802bca5d":"97856","1a4e3797":"97920",ef5f5123:"98427","5f32cb9f":"98596","08c74c36":"98639","769a6239":"98709",ac11e877:"98714",dc42149f:"99322","61322d15":"99937"}[e]||e,r.p+r.u(e)},(()=>{var e={51303:0,40532:0};r.f.j=(a,f)=>{var c=r.o(e,a)?e[a]:void 0;if(0!==c)if(c)f.push(c[2]);else if(/^(40532|51303)$/.test(a))e[a]=0;else{var b=new Promise(((f,b)=>c=e[a]=[f,b]));f.push(c[2]=b);var d=r.p+r.u(a),t=new Error;r.l(d,(f=>{if(r.o(e,a)&&(0!==(c=e[a])&&(e[a]=void 0),c)){var b=f&&("load"===f.type?"missing":f.type),d=f&&f.target&&f.target.src;t.message="Loading chunk "+a+" failed.\n("+b+": "+d+")",t.name="ChunkLoadError",t.type=b,t.request=d,c[1](t)}}),"chunk-"+a,a)}},r.O.j=a=>0===e[a];var a=(a,f)=>{var c,b,d=f[0],t=f[1],o=f[2],n=0;if(d.some((a=>0!==e[a]))){for(c in t)r.o(t,c)&&(r.m[c]=t[c]);if(o)var i=o(r)}for(a&&a(f);n