{"dependencies":[{"name":"@react-navigation/elements","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":105,"index":120}}],"key":"LmqW7jh+SpCzQZMkzh+Awcuawt0=","exportNames":["*"],"imports":1}},{"name":"@react-navigation/native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":121},"end":{"line":4,"column":137,"index":258}}],"key":"yKhyWCfwa1gXEwEbMKnWHykYbZ4=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":259},"end":{"line":5,"column":26,"index":285}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/Animated","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"dNPzxVfn0yBoRxvhD+vE+lN7k4Q=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/Platform","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"dV3bI3NOD8bfMzaIniMaFGy/nn8=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/StyleSheet","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"MK7+k1V+KnvCVW7Kj2k/ydtjmVU=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/View","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"4kYBDC6LJJXoH7P9rWDi3vkLVB0=","exportNames":["*"],"imports":1}},{"name":"../utils/BottomTabBarHeightCallbackContext.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":355},"end":{"line":7,"column":98,"index":453}}],"key":"ugELg4I63IAZwlqh6l59tEtqTlI=","exportNames":["*"],"imports":1}},{"name":"../utils/useIsKeyboardShown.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":454},"end":{"line":8,"column":68,"index":522}}],"key":"mhLM44FQn4R6yOS65twI8hSRhu8=","exportNames":["*"],"imports":1}},{"name":"./BottomTabItem.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":9,"column":0,"index":523},"end":{"line":9,"column":51,"index":574}}],"key":"ocsmW2cewFboIoyqEEjH8emGUpI=","exportNames":["*"],"imports":1}},{"name":"react/jsx-runtime","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":575},"end":{"line":10,"column":63,"index":638}}],"key":"rKAWVuQOSSDHxC6IWcmkeWszaWg=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"getTabBarHeight\", {\n enumerable: true,\n get: function () {\n return getTabBarHeight;\n }\n });\n exports.BottomTabBar = BottomTabBar;\n var _reactNavigationElements = require(_dependencyMap[0], \"@react-navigation/elements\");\n var _reactNavigationNative = require(_dependencyMap[1], \"@react-navigation/native\");\n var _react = require(_dependencyMap[2], \"react\");\n var React = _interopDefault(_react);\n var _reactNativeWebDistExportsAnimated = require(_dependencyMap[3], \"react-native-web/dist/exports/Animated\");\n var Animated = _interopDefault(_reactNativeWebDistExportsAnimated);\n var _reactNativeWebDistExportsPlatform = require(_dependencyMap[4], \"react-native-web/dist/exports/Platform\");\n var Platform = _interopDefault(_reactNativeWebDistExportsPlatform);\n var _reactNativeWebDistExportsStyleSheet = require(_dependencyMap[5], \"react-native-web/dist/exports/StyleSheet\");\n var StyleSheet = _interopDefault(_reactNativeWebDistExportsStyleSheet);\n var _reactNativeWebDistExportsView = require(_dependencyMap[6], \"react-native-web/dist/exports/View\");\n var View = _interopDefault(_reactNativeWebDistExportsView);\n var _utilsBottomTabBarHeightCallbackContextJs = require(_dependencyMap[7], \"../utils/BottomTabBarHeightCallbackContext.js\");\n var _utilsUseIsKeyboardShownJs = require(_dependencyMap[8], \"../utils/useIsKeyboardShown.js\");\n var _BottomTabItemJs = require(_dependencyMap[9], \"./BottomTabItem.js\");\n var _reactJsxRuntime = require(_dependencyMap[10], \"react/jsx-runtime\");\n const TABBAR_HEIGHT_UIKIT = 49;\n const TABBAR_HEIGHT_UIKIT_COMPACT = 32;\n const SPACING_UIKIT = 15;\n const SPACING_MATERIAL = 12;\n const DEFAULT_MAX_TAB_ITEM_WIDTH = 125;\n const useNativeDriver = Platform.default.OS !== 'web';\n const shouldUseHorizontalLabels = ({\n state,\n descriptors,\n dimensions\n }) => {\n const {\n tabBarLabelPosition\n } = descriptors[state.routes[state.index].key].options;\n if (tabBarLabelPosition) {\n switch (tabBarLabelPosition) {\n case 'beside-icon':\n return true;\n case 'below-icon':\n return false;\n }\n }\n if (dimensions.width >= 768) {\n // Screen size matches a tablet\n const maxTabWidth = state.routes.reduce((acc, route) => {\n const {\n tabBarItemStyle\n } = descriptors[route.key].options;\n const flattenedStyle = StyleSheet.default.flatten(tabBarItemStyle);\n if (flattenedStyle) {\n if (typeof flattenedStyle.width === 'number') {\n return acc + flattenedStyle.width;\n } else if (typeof flattenedStyle.maxWidth === 'number') {\n return acc + flattenedStyle.maxWidth;\n }\n }\n return acc + DEFAULT_MAX_TAB_ITEM_WIDTH;\n }, 0);\n return maxTabWidth <= dimensions.width;\n } else {\n return dimensions.width > dimensions.height;\n }\n };\n const isCompact = ({\n state,\n descriptors,\n dimensions\n }) => {\n const {\n tabBarPosition,\n tabBarVariant\n } = descriptors[state.routes[state.index].key].options;\n if (tabBarPosition === 'left' || tabBarPosition === 'right' || tabBarVariant === 'material') {\n return false;\n }\n const isLandscape = dimensions.width > dimensions.height;\n const horizontalLabels = shouldUseHorizontalLabels({\n state,\n descriptors,\n dimensions\n });\n if (Platform.default.OS === 'ios' && !Platform.default.isPad && isLandscape && horizontalLabels) {\n return true;\n }\n return false;\n };\n const getTabBarHeight = ({\n state,\n descriptors,\n dimensions,\n insets,\n style\n }) => {\n const {\n tabBarPosition\n } = descriptors[state.routes[state.index].key].options;\n const flattenedStyle = StyleSheet.default.flatten(style);\n const customHeight = flattenedStyle && 'height' in flattenedStyle ? flattenedStyle.height : undefined;\n if (typeof customHeight === 'number') {\n return customHeight;\n }\n const inset = insets[tabBarPosition === 'top' ? 'top' : 'bottom'];\n if (isCompact({\n state,\n descriptors,\n dimensions\n })) {\n return TABBAR_HEIGHT_UIKIT_COMPACT + inset;\n }\n return TABBAR_HEIGHT_UIKIT + inset;\n };\n function BottomTabBar({\n state,\n navigation,\n descriptors,\n insets,\n style\n }) {\n const {\n colors\n } = (0, _reactNavigationNative.useTheme)();\n const {\n direction\n } = (0, _reactNavigationNative.useLocale)();\n const {\n buildHref\n } = (0, _reactNavigationNative.useLinkBuilder)();\n const focusedRoute = state.routes[state.index];\n const focusedDescriptor = descriptors[focusedRoute.key];\n const focusedOptions = focusedDescriptor.options;\n const {\n tabBarPosition = 'bottom',\n tabBarShowLabel,\n tabBarLabelPosition,\n tabBarHideOnKeyboard = false,\n tabBarVisibilityAnimationConfig,\n tabBarVariant = 'uikit',\n tabBarStyle,\n tabBarBackground,\n tabBarActiveTintColor,\n tabBarInactiveTintColor,\n tabBarActiveBackgroundColor,\n tabBarInactiveBackgroundColor\n } = focusedOptions;\n if (tabBarVariant === 'material' && tabBarPosition !== 'left' && tabBarPosition !== 'right') {\n throw new Error(\"The 'material' variant for tab bar is only supported when 'tabBarPosition' is set to 'left' or 'right'.\");\n }\n if (tabBarLabelPosition === 'below-icon' && tabBarVariant === 'uikit' && (tabBarPosition === 'left' || tabBarPosition === 'right')) {\n throw new Error(\"The 'below-icon' label position for tab bar is only supported when 'tabBarPosition' is set to 'top' or 'bottom' when using the 'uikit' variant.\");\n }\n const isKeyboardShown = (0, _utilsUseIsKeyboardShownJs.useIsKeyboardShown)();\n const onHeightChange = React.default.useContext(_utilsBottomTabBarHeightCallbackContextJs.BottomTabBarHeightCallbackContext);\n const shouldShowTabBar = !(tabBarHideOnKeyboard && isKeyboardShown);\n const visibilityAnimationConfigRef = React.default.useRef(tabBarVisibilityAnimationConfig);\n React.default.useEffect(() => {\n visibilityAnimationConfigRef.current = tabBarVisibilityAnimationConfig;\n });\n const [isTabBarHidden, setIsTabBarHidden] = React.default.useState(!shouldShowTabBar);\n const [visible] = React.default.useState(() => new Animated.default.Value(shouldShowTabBar ? 1 : 0));\n React.default.useEffect(() => {\n const visibilityAnimationConfig = visibilityAnimationConfigRef.current;\n if (shouldShowTabBar) {\n const animation = visibilityAnimationConfig?.show?.animation === 'spring' ? Animated.default.spring : Animated.default.timing;\n animation(visible, Object.assign({\n toValue: 1,\n useNativeDriver,\n duration: 250\n }, visibilityAnimationConfig?.show?.config)).start(({\n finished\n }) => {\n if (finished) {\n setIsTabBarHidden(false);\n }\n });\n } else {\n // eslint-disable-next-line @eslint-react/hooks-extra/no-direct-set-state-in-use-effect\n setIsTabBarHidden(true);\n const animation = visibilityAnimationConfig?.hide?.animation === 'spring' ? Animated.default.spring : Animated.default.timing;\n animation(visible, Object.assign({\n toValue: 0,\n useNativeDriver,\n duration: 200\n }, visibilityAnimationConfig?.hide?.config)).start();\n }\n return () => visible.stopAnimation();\n }, [visible, shouldShowTabBar]);\n const [layout, setLayout] = React.default.useState({\n height: 0\n });\n const handleLayout = e => {\n const {\n height\n } = e.nativeEvent.layout;\n onHeightChange?.(height);\n setLayout(layout => {\n if (height === layout.height) {\n return layout;\n } else {\n return {\n height\n };\n }\n });\n };\n const {\n routes\n } = state;\n const tabBarHeight = (0, _reactNavigationElements.useFrameSize)(dimensions => getTabBarHeight({\n state,\n descriptors,\n insets,\n dimensions,\n style: [tabBarStyle, style]\n }));\n const hasHorizontalLabels = (0, _reactNavigationElements.useFrameSize)(dimensions => shouldUseHorizontalLabels({\n state,\n descriptors,\n dimensions\n }));\n const compact = (0, _reactNavigationElements.useFrameSize)(dimensions => isCompact({\n state,\n descriptors,\n dimensions\n }));\n const sidebar = tabBarPosition === 'left' || tabBarPosition === 'right';\n const spacing = tabBarVariant === 'material' ? SPACING_MATERIAL : SPACING_UIKIT;\n const minSidebarWidth = (0, _reactNavigationElements.useFrameSize)(size => sidebar && hasHorizontalLabels ? (0, _reactNavigationElements.getDefaultSidebarWidth)(size) : 0);\n const tabBarBackgroundElement = tabBarBackground?.();\n return /*#__PURE__*/(0, _reactJsxRuntime.jsxs)(Animated.default.View, {\n style: [tabBarPosition === 'left' ? styles.start : tabBarPosition === 'right' ? styles.end : styles.bottom, (Platform.default.OS === 'web' ? tabBarPosition === 'right' : direction === 'rtl' && tabBarPosition === 'left' || direction !== 'rtl' && tabBarPosition === 'right') ? {\n borderLeftWidth: StyleSheet.default.hairlineWidth\n } : (Platform.default.OS === 'web' ? tabBarPosition === 'left' : direction === 'rtl' && tabBarPosition === 'right' || direction !== 'rtl' && tabBarPosition === 'left') ? {\n borderRightWidth: StyleSheet.default.hairlineWidth\n } : tabBarPosition === 'top' ? {\n borderBottomWidth: StyleSheet.default.hairlineWidth\n } : {\n borderTopWidth: StyleSheet.default.hairlineWidth\n }, {\n backgroundColor: tabBarBackgroundElement != null ? 'transparent' : colors.card,\n borderColor: colors.border\n }, sidebar ? {\n paddingTop: (hasHorizontalLabels ? spacing : spacing / 2) + insets.top,\n paddingBottom: (hasHorizontalLabels ? spacing : spacing / 2) + insets.bottom,\n paddingStart: spacing + (tabBarPosition === 'left' ? insets.left : 0),\n paddingEnd: spacing + (tabBarPosition === 'right' ? insets.right : 0),\n minWidth: minSidebarWidth\n } : [{\n transform: [{\n translateY: visible.interpolate({\n inputRange: [0, 1],\n outputRange: [layout.height + insets[tabBarPosition === 'top' ? 'top' : 'bottom'] + StyleSheet.default.hairlineWidth, 0]\n })\n }],\n // Absolutely position the tab bar so that the content is below it\n // This is needed to avoid gap at bottom when the tab bar is hidden\n position: isTabBarHidden ? 'absolute' : undefined\n }, {\n height: tabBarHeight,\n paddingBottom: tabBarPosition === 'bottom' ? insets.bottom : 0,\n paddingTop: tabBarPosition === 'top' ? insets.top : 0,\n paddingHorizontal: Math.max(insets.left, insets.right)\n }], tabBarStyle],\n pointerEvents: isTabBarHidden ? 'none' : 'auto',\n onLayout: sidebar ? undefined : handleLayout,\n children: [/*#__PURE__*/(0, _reactJsxRuntime.jsx)(View.default, {\n pointerEvents: \"none\",\n style: StyleSheet.default.absoluteFill,\n children: tabBarBackgroundElement\n }), /*#__PURE__*/(0, _reactJsxRuntime.jsx)(View.default, {\n role: \"tablist\",\n style: sidebar ? styles.sideContent : styles.bottomContent,\n children: routes.map((route, index) => {\n const focused = index === state.index;\n const {\n options\n } = descriptors[route.key];\n const onPress = () => {\n const event = navigation.emit({\n type: 'tabPress',\n target: route.key,\n canPreventDefault: true\n });\n if (!focused && !event.defaultPrevented) {\n navigation.dispatch(Object.assign({}, _reactNavigationNative.CommonActions.navigate(route), {\n target: state.key\n }));\n }\n };\n const onLongPress = () => {\n navigation.emit({\n type: 'tabLongPress',\n target: route.key\n });\n };\n const label = typeof options.tabBarLabel === 'function' ? options.tabBarLabel : (0, _reactNavigationElements.getLabel)({\n label: options.tabBarLabel,\n title: options.title\n }, route.name);\n const accessibilityLabel = options.tabBarAccessibilityLabel !== undefined ? options.tabBarAccessibilityLabel : typeof label === 'string' && Platform.default.OS === 'ios' ? `${label}, tab, ${index + 1} of ${routes.length}` : undefined;\n return /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNavigationNative.NavigationContext.Provider, {\n value: descriptors[route.key].navigation,\n children: /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNavigationNative.NavigationRouteContext.Provider, {\n value: route,\n children: /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_BottomTabItemJs.BottomTabItem, {\n href: buildHref(route.name, route.params),\n route: route,\n descriptor: descriptors[route.key],\n focused: focused,\n horizontal: hasHorizontalLabels,\n compact: compact,\n sidebar: sidebar,\n variant: tabBarVariant,\n onPress: onPress,\n onLongPress: onLongPress,\n accessibilityLabel: accessibilityLabel,\n testID: options.tabBarButtonTestID,\n allowFontScaling: options.tabBarAllowFontScaling,\n activeTintColor: tabBarActiveTintColor,\n inactiveTintColor: tabBarInactiveTintColor,\n activeBackgroundColor: tabBarActiveBackgroundColor,\n inactiveBackgroundColor: tabBarInactiveBackgroundColor,\n button: options.tabBarButton,\n icon: options.tabBarIcon ?? (({\n color,\n size\n }) => /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNavigationElements.MissingIcon, {\n color: color,\n size: size\n })),\n badge: options.tabBarBadge,\n badgeStyle: options.tabBarBadgeStyle,\n label: label,\n showLabel: tabBarShowLabel,\n labelStyle: options.tabBarLabelStyle,\n iconStyle: options.tabBarIconStyle,\n style: [sidebar ? {\n marginVertical: hasHorizontalLabels ? tabBarVariant === 'material' ? 0 : 1 : spacing / 2\n } : styles.bottomItem, options.tabBarItemStyle]\n })\n })\n }, route.key);\n })\n })]\n });\n }\n const styles = StyleSheet.default.create({\n start: {\n top: 0,\n bottom: 0,\n start: 0\n },\n end: {\n top: 0,\n bottom: 0,\n end: 0\n },\n bottom: {\n start: 0,\n end: 0,\n bottom: 0,\n elevation: 8\n },\n bottomContent: {\n flex: 1,\n flexDirection: 'row'\n },\n sideContent: {\n flex: 1,\n flexDirection: 'column'\n },\n bottomItem: {\n flex: 1\n }\n });\n});","lineCount":389,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopDefault"],[7,27,1,13,"e"],[7,28,1,13],[8,4,1,13],[8,11,1,13,"e"],[8,12,1,13],[8,16,1,13,"e"],[8,17,1,13],[8,18,1,13,"__esModule"],[8,28,1,13],[8,31,1,13,"e"],[8,32,1,13],[9,6,1,13,"default"],[9,13,1,13],[9,15,1,13,"e"],[10,4,1,13],[11,2,1,13],[12,2,77,0,"Object"],[12,8,77,0],[12,9,77,0,"defineProperty"],[12,23,77,0],[12,24,77,0,"exports"],[12,31,77,0],[13,4,77,0,"enumerable"],[13,14,77,0],[14,4,77,0,"get"],[14,7,77,0],[14,18,77,0,"get"],[14,19,77,0],[15,6,77,0],[15,13,77,0,"getTabBarHeight"],[15,28,77,0],[16,4,77,0],[17,2,77,0],[18,2,102,0,"exports"],[18,9,102,0],[18,10,102,0,"BottomTabBar"],[18,22,102,0],[18,25,102,0,"BottomTabBar"],[18,37,102,0],[19,2,3,0],[19,6,3,0,"_reactNavigationElements"],[19,30,3,0],[19,33,3,0,"require"],[19,40,3,0],[19,41,3,0,"_dependencyMap"],[19,55,3,0],[20,2,4,0],[20,6,4,0,"_reactNavigationNative"],[20,28,4,0],[20,31,4,0,"require"],[20,38,4,0],[20,39,4,0,"_dependencyMap"],[20,53,4,0],[21,2,5,0],[21,6,5,0,"_react"],[21,12,5,0],[21,15,5,0,"require"],[21,22,5,0],[21,23,5,0,"_dependencyMap"],[21,37,5,0],[22,2,5,0],[22,6,5,0,"React"],[22,11,5,0],[22,14,5,0,"_interopDefault"],[22,29,5,0],[22,30,5,0,"_react"],[22,36,5,0],[23,2,5,26],[23,6,5,26,"_reactNativeWebDistExportsAnimated"],[23,40,5,26],[23,43,5,26,"require"],[23,50,5,26],[23,51,5,26,"_dependencyMap"],[23,65,5,26],[24,2,5,26],[24,6,5,26,"Animated"],[24,14,5,26],[24,17,5,26,"_interopDefault"],[24,32,5,26],[24,33,5,26,"_reactNativeWebDistExportsAnimated"],[24,67,5,26],[25,2,5,26],[25,6,5,26,"_reactNativeWebDistExportsPlatform"],[25,40,5,26],[25,43,5,26,"require"],[25,50,5,26],[25,51,5,26,"_dependencyMap"],[25,65,5,26],[26,2,5,26],[26,6,5,26,"Platform"],[26,14,5,26],[26,17,5,26,"_interopDefault"],[26,32,5,26],[26,33,5,26,"_reactNativeWebDistExportsPlatform"],[26,67,5,26],[27,2,5,26],[27,6,5,26,"_reactNativeWebDistExportsStyleSheet"],[27,42,5,26],[27,45,5,26,"require"],[27,52,5,26],[27,53,5,26,"_dependencyMap"],[27,67,5,26],[28,2,5,26],[28,6,5,26,"StyleSheet"],[28,16,5,26],[28,19,5,26,"_interopDefault"],[28,34,5,26],[28,35,5,26,"_reactNativeWebDistExportsStyleSheet"],[28,71,5,26],[29,2,5,26],[29,6,5,26,"_reactNativeWebDistExportsView"],[29,36,5,26],[29,39,5,26,"require"],[29,46,5,26],[29,47,5,26,"_dependencyMap"],[29,61,5,26],[30,2,5,26],[30,6,5,26,"View"],[30,10,5,26],[30,13,5,26,"_interopDefault"],[30,28,5,26],[30,29,5,26,"_reactNativeWebDistExportsView"],[30,59,5,26],[31,2,7,0],[31,6,7,0,"_utilsBottomTabBarHeightCallbackContextJs"],[31,47,7,0],[31,50,7,0,"require"],[31,57,7,0],[31,58,7,0,"_dependencyMap"],[31,72,7,0],[32,2,8,0],[32,6,8,0,"_utilsUseIsKeyboardShownJs"],[32,32,8,0],[32,35,8,0,"require"],[32,42,8,0],[32,43,8,0,"_dependencyMap"],[32,57,8,0],[33,2,9,0],[33,6,9,0,"_BottomTabItemJs"],[33,22,9,0],[33,25,9,0,"require"],[33,32,9,0],[33,33,9,0,"_dependencyMap"],[33,47,9,0],[34,2,10,0],[34,6,10,0,"_reactJsxRuntime"],[34,22,10,0],[34,25,10,0,"require"],[34,32,10,0],[34,33,10,0,"_dependencyMap"],[34,47,10,0],[35,2,11,0],[35,8,11,6,"TABBAR_HEIGHT_UIKIT"],[35,27,11,25],[35,30,11,28],[35,32,11,30],[36,2,12,0],[36,8,12,6,"TABBAR_HEIGHT_UIKIT_COMPACT"],[36,35,12,33],[36,38,12,36],[36,40,12,38],[37,2,13,0],[37,8,13,6,"SPACING_UIKIT"],[37,21,13,19],[37,24,13,22],[37,26,13,24],[38,2,14,0],[38,8,14,6,"SPACING_MATERIAL"],[38,24,14,22],[38,27,14,25],[38,29,14,27],[39,2,15,0],[39,8,15,6,"DEFAULT_MAX_TAB_ITEM_WIDTH"],[39,34,15,32],[39,37,15,35],[39,40,15,38],[40,2,16,0],[40,8,16,6,"useNativeDriver"],[40,23,16,21],[40,26,16,24,"Platform"],[40,34,16,32],[40,35,16,32,"default"],[40,42,16,32],[40,43,16,33,"OS"],[40,45,16,35],[40,50,16,40],[40,55,16,45],[41,2,17,0],[41,8,17,6,"shouldUseHorizontalLabels"],[41,33,17,31],[41,36,17,34,"shouldUseHorizontalLabels"],[41,37,17,35],[42,4,18,2,"state"],[42,9,18,7],[43,4,19,2,"descriptors"],[43,15,19,13],[44,4,20,2,"dimensions"],[45,2,21,0],[45,3,21,1],[45,8,21,6],[46,4,22,2],[46,10,22,8],[47,6,23,4,"tabBarLabelPosition"],[48,4,24,2],[48,5,24,3],[48,8,24,6,"descriptors"],[48,19,24,17],[48,20,24,18,"state"],[48,25,24,23],[48,26,24,24,"routes"],[48,32,24,30],[48,33,24,31,"state"],[48,38,24,36],[48,39,24,37,"index"],[48,44,24,42],[48,45,24,43],[48,46,24,44,"key"],[48,49,24,47],[48,50,24,48],[48,51,24,49,"options"],[48,58,24,56],[49,4,25,2],[49,8,25,6,"tabBarLabelPosition"],[49,27,25,25],[49,29,25,27],[50,6,26,4],[50,14,26,12,"tabBarLabelPosition"],[50,33,26,31],[51,8,27,6],[51,13,27,11],[51,26,27,24],[52,10,28,8],[52,17,28,15],[52,21,28,19],[53,8,29,6],[53,13,29,11],[53,25,29,23],[54,10,30,8],[54,17,30,15],[54,22,30,20],[55,6,31,4],[56,4,32,2],[57,4,33,2],[57,8,33,6,"dimensions"],[57,18,33,16],[57,19,33,17,"width"],[57,24,33,22],[57,28,33,26],[57,31,33,29],[57,33,33,31],[58,6,34,4],[59,6,35,4],[59,12,35,10,"maxTabWidth"],[59,23,35,21],[59,26,35,24,"state"],[59,31,35,29],[59,32,35,30,"routes"],[59,38,35,36],[59,39,35,37,"reduce"],[59,45,35,43],[59,46,35,44],[59,47,35,45,"acc"],[59,50,35,48],[59,52,35,50,"route"],[59,57,35,55],[59,62,35,60],[60,8,36,6],[60,14,36,12],[61,10,37,8,"tabBarItemStyle"],[62,8,38,6],[62,9,38,7],[62,12,38,10,"descriptors"],[62,23,38,21],[62,24,38,22,"route"],[62,29,38,27],[62,30,38,28,"key"],[62,33,38,31],[62,34,38,32],[62,35,38,33,"options"],[62,42,38,40],[63,8,39,6],[63,14,39,12,"flattenedStyle"],[63,28,39,26],[63,31,39,29,"StyleSheet"],[63,41,39,39],[63,42,39,39,"default"],[63,49,39,39],[63,50,39,40,"flatten"],[63,57,39,47],[63,58,39,48,"tabBarItemStyle"],[63,73,39,63],[63,74,39,64],[64,8,40,6],[64,12,40,10,"flattenedStyle"],[64,26,40,24],[64,28,40,26],[65,10,41,8],[65,14,41,12],[65,21,41,19,"flattenedStyle"],[65,35,41,33],[65,36,41,34,"width"],[65,41,41,39],[65,46,41,44],[65,54,41,52],[65,56,41,54],[66,12,42,10],[66,19,42,17,"acc"],[66,22,42,20],[66,25,42,23,"flattenedStyle"],[66,39,42,37],[66,40,42,38,"width"],[66,45,42,43],[67,10,43,8],[67,11,43,9],[67,17,43,15],[67,21,43,19],[67,28,43,26,"flattenedStyle"],[67,42,43,40],[67,43,43,41,"maxWidth"],[67,51,43,49],[67,56,43,54],[67,64,43,62],[67,66,43,64],[68,12,44,10],[68,19,44,17,"acc"],[68,22,44,20],[68,25,44,23,"flattenedStyle"],[68,39,44,37],[68,40,44,38,"maxWidth"],[68,48,44,46],[69,10,45,8],[70,8,46,6],[71,8,47,6],[71,15,47,13,"acc"],[71,18,47,16],[71,21,47,19,"DEFAULT_MAX_TAB_ITEM_WIDTH"],[71,47,47,45],[72,6,48,4],[72,7,48,5],[72,9,48,7],[72,10,48,8],[72,11,48,9],[73,6,49,4],[73,13,49,11,"maxTabWidth"],[73,24,49,22],[73,28,49,26,"dimensions"],[73,38,49,36],[73,39,49,37,"width"],[73,44,49,42],[74,4,50,2],[74,5,50,3],[74,11,50,9],[75,6,51,4],[75,13,51,11,"dimensions"],[75,23,51,21],[75,24,51,22,"width"],[75,29,51,27],[75,32,51,30,"dimensions"],[75,42,51,40],[75,43,51,41,"height"],[75,49,51,47],[76,4,52,2],[77,2,53,0],[77,3,53,1],[78,2,54,0],[78,8,54,6,"isCompact"],[78,17,54,15],[78,20,54,18,"isCompact"],[78,21,54,19],[79,4,55,2,"state"],[79,9,55,7],[80,4,56,2,"descriptors"],[80,15,56,13],[81,4,57,2,"dimensions"],[82,2,58,0],[82,3,58,1],[82,8,58,6],[83,4,59,2],[83,10,59,8],[84,6,60,4,"tabBarPosition"],[84,20,60,18],[85,6,61,4,"tabBarVariant"],[86,4,62,2],[86,5,62,3],[86,8,62,6,"descriptors"],[86,19,62,17],[86,20,62,18,"state"],[86,25,62,23],[86,26,62,24,"routes"],[86,32,62,30],[86,33,62,31,"state"],[86,38,62,36],[86,39,62,37,"index"],[86,44,62,42],[86,45,62,43],[86,46,62,44,"key"],[86,49,62,47],[86,50,62,48],[86,51,62,49,"options"],[86,58,62,56],[87,4,63,2],[87,8,63,6,"tabBarPosition"],[87,22,63,20],[87,27,63,25],[87,33,63,31],[87,37,63,35,"tabBarPosition"],[87,51,63,49],[87,56,63,54],[87,63,63,61],[87,67,63,65,"tabBarVariant"],[87,80,63,78],[87,85,63,83],[87,95,63,93],[87,97,63,95],[88,6,64,4],[88,13,64,11],[88,18,64,16],[89,4,65,2],[90,4,66,2],[90,10,66,8,"isLandscape"],[90,21,66,19],[90,24,66,22,"dimensions"],[90,34,66,32],[90,35,66,33,"width"],[90,40,66,38],[90,43,66,41,"dimensions"],[90,53,66,51],[90,54,66,52,"height"],[90,60,66,58],[91,4,67,2],[91,10,67,8,"horizontalLabels"],[91,26,67,24],[91,29,67,27,"shouldUseHorizontalLabels"],[91,54,67,52],[91,55,67,53],[92,6,68,4,"state"],[92,11,68,9],[93,6,69,4,"descriptors"],[93,17,69,15],[94,6,70,4,"dimensions"],[95,4,71,2],[95,5,71,3],[95,6,71,4],[96,4,72,2],[96,8,72,6,"Platform"],[96,16,72,14],[96,17,72,14,"default"],[96,24,72,14],[96,25,72,15,"OS"],[96,27,72,17],[96,32,72,22],[96,37,72,27],[96,41,72,31],[96,42,72,32,"Platform"],[96,50,72,40],[96,51,72,40,"default"],[96,58,72,40],[96,59,72,41,"isPad"],[96,64,72,46],[96,68,72,50,"isLandscape"],[96,79,72,61],[96,83,72,65,"horizontalLabels"],[96,99,72,81],[96,101,72,83],[97,6,73,4],[97,13,73,11],[97,17,73,15],[98,4,74,2],[99,4,75,2],[99,11,75,9],[99,16,75,14],[100,2,76,0],[100,3,76,1],[101,2,77,7],[101,8,77,13,"getTabBarHeight"],[101,23,77,28],[101,26,77,31,"getTabBarHeight"],[101,27,77,32],[102,4,78,2,"state"],[102,9,78,7],[103,4,79,2,"descriptors"],[103,15,79,13],[104,4,80,2,"dimensions"],[104,14,80,12],[105,4,81,2,"insets"],[105,10,81,8],[106,4,82,2,"style"],[107,2,83,0],[107,3,83,1],[107,8,83,6],[108,4,84,2],[108,10,84,8],[109,6,85,4,"tabBarPosition"],[110,4,86,2],[110,5,86,3],[110,8,86,6,"descriptors"],[110,19,86,17],[110,20,86,18,"state"],[110,25,86,23],[110,26,86,24,"routes"],[110,32,86,30],[110,33,86,31,"state"],[110,38,86,36],[110,39,86,37,"index"],[110,44,86,42],[110,45,86,43],[110,46,86,44,"key"],[110,49,86,47],[110,50,86,48],[110,51,86,49,"options"],[110,58,86,56],[111,4,87,2],[111,10,87,8,"flattenedStyle"],[111,24,87,22],[111,27,87,25,"StyleSheet"],[111,37,87,35],[111,38,87,35,"default"],[111,45,87,35],[111,46,87,36,"flatten"],[111,53,87,43],[111,54,87,44,"style"],[111,59,87,49],[111,60,87,50],[112,4,88,2],[112,10,88,8,"customHeight"],[112,22,88,20],[112,25,88,23,"flattenedStyle"],[112,39,88,37],[112,43,88,41],[112,51,88,49],[112,55,88,53,"flattenedStyle"],[112,69,88,67],[112,72,88,70,"flattenedStyle"],[112,86,88,84],[112,87,88,85,"height"],[112,93,88,91],[112,96,88,94,"undefined"],[112,105,88,103],[113,4,89,2],[113,8,89,6],[113,15,89,13,"customHeight"],[113,27,89,25],[113,32,89,30],[113,40,89,38],[113,42,89,40],[114,6,90,4],[114,13,90,11,"customHeight"],[114,25,90,23],[115,4,91,2],[116,4,92,2],[116,10,92,8,"inset"],[116,15,92,13],[116,18,92,16,"insets"],[116,24,92,22],[116,25,92,23,"tabBarPosition"],[116,39,92,37],[116,44,92,42],[116,49,92,47],[116,52,92,50],[116,57,92,55],[116,60,92,58],[116,68,92,66],[116,69,92,67],[117,4,93,2],[117,8,93,6,"isCompact"],[117,17,93,15],[117,18,93,16],[118,6,94,4,"state"],[118,11,94,9],[119,6,95,4,"descriptors"],[119,17,95,15],[120,6,96,4,"dimensions"],[121,4,97,2],[121,5,97,3],[121,6,97,4],[121,8,97,6],[122,6,98,4],[122,13,98,11,"TABBAR_HEIGHT_UIKIT_COMPACT"],[122,40,98,38],[122,43,98,41,"inset"],[122,48,98,46],[123,4,99,2],[124,4,100,2],[124,11,100,9,"TABBAR_HEIGHT_UIKIT"],[124,30,100,28],[124,33,100,31,"inset"],[124,38,100,36],[125,2,101,0],[125,3,101,1],[126,2,102,7],[126,11,102,16,"BottomTabBar"],[126,23,102,28,"BottomTabBar"],[126,24,102,29],[127,4,103,2,"state"],[127,9,103,7],[128,4,104,2,"navigation"],[128,14,104,12],[129,4,105,2,"descriptors"],[129,15,105,13],[130,4,106,2,"insets"],[130,10,106,8],[131,4,107,2,"style"],[132,2,108,0],[132,3,108,1],[132,5,108,3],[133,4,109,2],[133,10,109,8],[134,6,110,4,"colors"],[135,4,111,2],[135,5,111,3],[135,8,111,6],[135,12,111,6,"useTheme"],[135,34,111,14],[135,35,111,14,"useTheme"],[135,43,111,14],[135,45,111,15],[135,46,111,16],[136,4,112,2],[136,10,112,8],[137,6,113,4,"direction"],[138,4,114,2],[138,5,114,3],[138,8,114,6],[138,12,114,6,"useLocale"],[138,34,114,15],[138,35,114,15,"useLocale"],[138,44,114,15],[138,46,114,16],[138,47,114,17],[139,4,115,2],[139,10,115,8],[140,6,116,4,"buildHref"],[141,4,117,2],[141,5,117,3],[141,8,117,6],[141,12,117,6,"useLinkBuilder"],[141,34,117,20],[141,35,117,20,"useLinkBuilder"],[141,49,117,20],[141,51,117,21],[141,52,117,22],[142,4,118,2],[142,10,118,8,"focusedRoute"],[142,22,118,20],[142,25,118,23,"state"],[142,30,118,28],[142,31,118,29,"routes"],[142,37,118,35],[142,38,118,36,"state"],[142,43,118,41],[142,44,118,42,"index"],[142,49,118,47],[142,50,118,48],[143,4,119,2],[143,10,119,8,"focusedDescriptor"],[143,27,119,25],[143,30,119,28,"descriptors"],[143,41,119,39],[143,42,119,40,"focusedRoute"],[143,54,119,52],[143,55,119,53,"key"],[143,58,119,56],[143,59,119,57],[144,4,120,2],[144,10,120,8,"focusedOptions"],[144,24,120,22],[144,27,120,25,"focusedDescriptor"],[144,44,120,42],[144,45,120,43,"options"],[144,52,120,50],[145,4,121,2],[145,10,121,8],[146,6,122,4,"tabBarPosition"],[146,20,122,18],[146,23,122,21],[146,31,122,29],[147,6,123,4,"tabBarShowLabel"],[147,21,123,19],[148,6,124,4,"tabBarLabelPosition"],[148,25,124,23],[149,6,125,4,"tabBarHideOnKeyboard"],[149,26,125,24],[149,29,125,27],[149,34,125,32],[150,6,126,4,"tabBarVisibilityAnimationConfig"],[150,37,126,35],[151,6,127,4,"tabBarVariant"],[151,19,127,17],[151,22,127,20],[151,29,127,27],[152,6,128,4,"tabBarStyle"],[152,17,128,15],[153,6,129,4,"tabBarBackground"],[153,22,129,20],[154,6,130,4,"tabBarActiveTintColor"],[154,27,130,25],[155,6,131,4,"tabBarInactiveTintColor"],[155,29,131,27],[156,6,132,4,"tabBarActiveBackgroundColor"],[156,33,132,31],[157,6,133,4,"tabBarInactiveBackgroundColor"],[158,4,134,2],[158,5,134,3],[158,8,134,6,"focusedOptions"],[158,22,134,20],[159,4,135,2],[159,8,135,6,"tabBarVariant"],[159,21,135,19],[159,26,135,24],[159,36,135,34],[159,40,135,38,"tabBarPosition"],[159,54,135,52],[159,59,135,57],[159,65,135,63],[159,69,135,67,"tabBarPosition"],[159,83,135,81],[159,88,135,86],[159,95,135,93],[159,97,135,95],[160,6,136,4],[160,12,136,10],[160,16,136,14,"Error"],[160,21,136,19],[160,22,136,20],[160,127,136,125],[160,128,136,126],[161,4,137,2],[162,4,138,2],[162,8,138,6,"tabBarLabelPosition"],[162,27,138,25],[162,32,138,30],[162,44,138,42],[162,48,138,46,"tabBarVariant"],[162,61,138,59],[162,66,138,64],[162,73,138,71],[162,78,138,76,"tabBarPosition"],[162,92,138,90],[162,97,138,95],[162,103,138,101],[162,107,138,105,"tabBarPosition"],[162,121,138,119],[162,126,138,124],[162,133,138,131],[162,134,138,132],[162,136,138,134],[163,6,139,4],[163,12,139,10],[163,16,139,14,"Error"],[163,21,139,19],[163,22,139,20],[163,167,139,165],[163,168,139,166],[164,4,140,2],[165,4,141,2],[165,10,141,8,"isKeyboardShown"],[165,25,141,23],[165,28,141,26],[165,32,141,26,"useIsKeyboardShown"],[165,58,141,44],[165,59,141,44,"useIsKeyboardShown"],[165,77,141,44],[165,79,141,45],[165,80,141,46],[166,4,142,2],[166,10,142,8,"onHeightChange"],[166,24,142,22],[166,27,142,25,"React"],[166,32,142,30],[166,33,142,30,"default"],[166,40,142,30],[166,41,142,31,"useContext"],[166,51,142,41],[166,52,142,42,"BottomTabBarHeightCallbackContext"],[166,93,142,75],[166,94,142,75,"BottomTabBarHeightCallbackContext"],[166,127,142,75],[166,128,142,76],[167,4,143,2],[167,10,143,8,"shouldShowTabBar"],[167,26,143,24],[167,29,143,27],[167,31,143,29,"tabBarHideOnKeyboard"],[167,51,143,49],[167,55,143,53,"isKeyboardShown"],[167,70,143,68],[167,71,143,69],[168,4,144,2],[168,10,144,8,"visibilityAnimationConfigRef"],[168,38,144,36],[168,41,144,39,"React"],[168,46,144,44],[168,47,144,44,"default"],[168,54,144,44],[168,55,144,45,"useRef"],[168,61,144,51],[168,62,144,52,"tabBarVisibilityAnimationConfig"],[168,93,144,83],[168,94,144,84],[169,4,145,2,"React"],[169,9,145,7],[169,10,145,7,"default"],[169,17,145,7],[169,18,145,8,"useEffect"],[169,27,145,17],[169,28,145,18],[169,34,145,24],[170,6,146,4,"visibilityAnimationConfigRef"],[170,34,146,32],[170,35,146,33,"current"],[170,42,146,40],[170,45,146,43,"tabBarVisibilityAnimationConfig"],[170,76,146,74],[171,4,147,2],[171,5,147,3],[171,6,147,4],[172,4,148,2],[172,10,148,8],[172,11,148,9,"isTabBarHidden"],[172,25,148,23],[172,27,148,25,"setIsTabBarHidden"],[172,44,148,42],[172,45,148,43],[172,48,148,46,"React"],[172,53,148,51],[172,54,148,51,"default"],[172,61,148,51],[172,62,148,52,"useState"],[172,70,148,60],[172,71,148,61],[172,72,148,62,"shouldShowTabBar"],[172,88,148,78],[172,89,148,79],[173,4,149,2],[173,10,149,8],[173,11,149,9,"visible"],[173,18,149,16],[173,19,149,17],[173,22,149,20,"React"],[173,27,149,25],[173,28,149,25,"default"],[173,35,149,25],[173,36,149,26,"useState"],[173,44,149,34],[173,45,149,35],[173,51,149,41],[173,55,149,45,"Animated"],[173,63,149,53],[173,64,149,53,"default"],[173,71,149,53],[173,72,149,54,"Value"],[173,77,149,59],[173,78,149,60,"shouldShowTabBar"],[173,94,149,76],[173,97,149,79],[173,98,149,80],[173,101,149,83],[173,102,149,84],[173,103,149,85],[173,104,149,86],[174,4,150,2,"React"],[174,9,150,7],[174,10,150,7,"default"],[174,17,150,7],[174,18,150,8,"useEffect"],[174,27,150,17],[174,28,150,18],[174,34,150,24],[175,6,151,4],[175,12,151,10,"visibilityAnimationConfig"],[175,37,151,35],[175,40,151,38,"visibilityAnimationConfigRef"],[175,68,151,66],[175,69,151,67,"current"],[175,76,151,74],[176,6,152,4],[176,10,152,8,"shouldShowTabBar"],[176,26,152,24],[176,28,152,26],[177,8,153,6],[177,14,153,12,"animation"],[177,23,153,21],[177,26,153,24,"visibilityAnimationConfig"],[177,51,153,49],[177,53,153,51,"show"],[177,57,153,55],[177,59,153,57,"animation"],[177,68,153,66],[177,73,153,71],[177,81,153,79],[177,84,153,82,"Animated"],[177,92,153,90],[177,93,153,90,"default"],[177,100,153,90],[177,101,153,91,"spring"],[177,107,153,97],[177,110,153,100,"Animated"],[177,118,153,108],[177,119,153,108,"default"],[177,126,153,108],[177,127,153,109,"timing"],[177,133,153,115],[178,8,154,6,"animation"],[178,17,154,15],[178,18,154,16,"visible"],[178,25,154,23],[178,27,154,23,"Object"],[178,33,154,23],[178,34,154,23,"assign"],[178,40,154,23],[179,10,155,8,"toValue"],[179,17,155,15],[179,19,155,17],[179,20,155,18],[180,10,156,8,"useNativeDriver"],[180,25,156,23],[181,10,157,8,"duration"],[181,18,157,16],[181,20,157,18],[182,8,157,21],[182,11,158,11,"visibilityAnimationConfig"],[182,36,158,36],[182,38,158,38,"show"],[182,42,158,42],[182,44,158,44,"config"],[182,50,158,50],[182,51,159,7],[182,52,159,8],[182,53,159,9,"start"],[182,58,159,14],[182,59,159,15],[182,60,159,16],[183,10,160,8,"finished"],[184,8,161,6],[184,9,161,7],[184,14,161,12],[185,10,162,8],[185,14,162,12,"finished"],[185,22,162,20],[185,24,162,22],[186,12,163,10,"setIsTabBarHidden"],[186,29,163,27],[186,30,163,28],[186,35,163,33],[186,36,163,34],[187,10,164,8],[188,8,165,6],[188,9,165,7],[188,10,165,8],[189,6,166,4],[189,7,166,5],[189,13,166,11],[190,8,167,6],[191,8,168,6,"setIsTabBarHidden"],[191,25,168,23],[191,26,168,24],[191,30,168,28],[191,31,168,29],[192,8,169,6],[192,14,169,12,"animation"],[192,23,169,21],[192,26,169,24,"visibilityAnimationConfig"],[192,51,169,49],[192,53,169,51,"hide"],[192,57,169,55],[192,59,169,57,"animation"],[192,68,169,66],[192,73,169,71],[192,81,169,79],[192,84,169,82,"Animated"],[192,92,169,90],[192,93,169,90,"default"],[192,100,169,90],[192,101,169,91,"spring"],[192,107,169,97],[192,110,169,100,"Animated"],[192,118,169,108],[192,119,169,108,"default"],[192,126,169,108],[192,127,169,109,"timing"],[192,133,169,115],[193,8,170,6,"animation"],[193,17,170,15],[193,18,170,16,"visible"],[193,25,170,23],[193,27,170,23,"Object"],[193,33,170,23],[193,34,170,23,"assign"],[193,40,170,23],[194,10,171,8,"toValue"],[194,17,171,15],[194,19,171,17],[194,20,171,18],[195,10,172,8,"useNativeDriver"],[195,25,172,23],[196,10,173,8,"duration"],[196,18,173,16],[196,20,173,18],[197,8,173,21],[197,11,174,11,"visibilityAnimationConfig"],[197,36,174,36],[197,38,174,38,"hide"],[197,42,174,42],[197,44,174,44,"config"],[197,50,174,50],[197,51,175,7],[197,52,175,8],[197,53,175,9,"start"],[197,58,175,14],[197,59,175,15],[197,60,175,16],[198,6,176,4],[199,6,177,4],[199,13,177,11],[199,19,177,17,"visible"],[199,26,177,24],[199,27,177,25,"stopAnimation"],[199,40,177,38],[199,41,177,39],[199,42,177,40],[200,4,178,2],[200,5,178,3],[200,7,178,5],[200,8,178,6,"visible"],[200,15,178,13],[200,17,178,15,"shouldShowTabBar"],[200,33,178,31],[200,34,178,32],[200,35,178,33],[201,4,179,2],[201,10,179,8],[201,11,179,9,"layout"],[201,17,179,15],[201,19,179,17,"setLayout"],[201,28,179,26],[201,29,179,27],[201,32,179,30,"React"],[201,37,179,35],[201,38,179,35,"default"],[201,45,179,35],[201,46,179,36,"useState"],[201,54,179,44],[201,55,179,45],[202,6,180,4,"height"],[202,12,180,10],[202,14,180,12],[203,4,181,2],[203,5,181,3],[203,6,181,4],[204,4,182,2],[204,10,182,8,"handleLayout"],[204,22,182,20],[204,25,182,23,"e"],[204,26,182,24],[204,30,182,28],[205,6,183,4],[205,12,183,10],[206,8,184,6,"height"],[207,6,185,4],[207,7,185,5],[207,10,185,8,"e"],[207,11,185,9],[207,12,185,10,"nativeEvent"],[207,23,185,21],[207,24,185,22,"layout"],[207,30,185,28],[208,6,186,4,"onHeightChange"],[208,20,186,18],[208,23,186,21,"height"],[208,29,186,27],[208,30,186,28],[209,6,187,4,"setLayout"],[209,15,187,13],[209,16,187,14,"layout"],[209,22,187,20],[209,26,187,24],[210,8,188,6],[210,12,188,10,"height"],[210,18,188,16],[210,23,188,21,"layout"],[210,29,188,27],[210,30,188,28,"height"],[210,36,188,34],[210,38,188,36],[211,10,189,8],[211,17,189,15,"layout"],[211,23,189,21],[212,8,190,6],[212,9,190,7],[212,15,190,13],[213,10,191,8],[213,17,191,15],[214,12,192,10,"height"],[215,10,193,8],[215,11,193,9],[216,8,194,6],[217,6,195,4],[217,7,195,5],[217,8,195,6],[218,4,196,2],[218,5,196,3],[219,4,197,2],[219,10,197,8],[220,6,198,4,"routes"],[221,4,199,2],[221,5,199,3],[221,8,199,6,"state"],[221,13,199,11],[222,4,200,2],[222,10,200,8,"tabBarHeight"],[222,22,200,20],[222,25,200,23],[222,29,200,23,"useFrameSize"],[222,53,200,35],[222,54,200,35,"useFrameSize"],[222,66,200,35],[222,68,200,36,"dimensions"],[222,78,200,46],[222,82,200,50,"getTabBarHeight"],[222,97,200,65],[222,98,200,66],[223,6,201,4,"state"],[223,11,201,9],[224,6,202,4,"descriptors"],[224,17,202,15],[225,6,203,4,"insets"],[225,12,203,10],[226,6,204,4,"dimensions"],[226,16,204,14],[227,6,205,4,"style"],[227,11,205,9],[227,13,205,11],[227,14,205,12,"tabBarStyle"],[227,25,205,23],[227,27,205,25,"style"],[227,32,205,30],[228,4,206,2],[228,5,206,3],[228,6,206,4],[228,7,206,5],[229,4,207,2],[229,10,207,8,"hasHorizontalLabels"],[229,29,207,27],[229,32,207,30],[229,36,207,30,"useFrameSize"],[229,60,207,42],[229,61,207,42,"useFrameSize"],[229,73,207,42],[229,75,207,43,"dimensions"],[229,85,207,53],[229,89,207,57,"shouldUseHorizontalLabels"],[229,114,207,82],[229,115,207,83],[230,6,208,4,"state"],[230,11,208,9],[231,6,209,4,"descriptors"],[231,17,209,15],[232,6,210,4,"dimensions"],[233,4,211,2],[233,5,211,3],[233,6,211,4],[233,7,211,5],[234,4,212,2],[234,10,212,8,"compact"],[234,17,212,15],[234,20,212,18],[234,24,212,18,"useFrameSize"],[234,48,212,30],[234,49,212,30,"useFrameSize"],[234,61,212,30],[234,63,212,31,"dimensions"],[234,73,212,41],[234,77,212,45,"isCompact"],[234,86,212,54],[234,87,212,55],[235,6,213,4,"state"],[235,11,213,9],[236,6,214,4,"descriptors"],[236,17,214,15],[237,6,215,4,"dimensions"],[238,4,216,2],[238,5,216,3],[238,6,216,4],[238,7,216,5],[239,4,217,2],[239,10,217,8,"sidebar"],[239,17,217,15],[239,20,217,18,"tabBarPosition"],[239,34,217,32],[239,39,217,37],[239,45,217,43],[239,49,217,47,"tabBarPosition"],[239,63,217,61],[239,68,217,66],[239,75,217,73],[240,4,218,2],[240,10,218,8,"spacing"],[240,17,218,15],[240,20,218,18,"tabBarVariant"],[240,33,218,31],[240,38,218,36],[240,48,218,46],[240,51,218,49,"SPACING_MATERIAL"],[240,67,218,65],[240,70,218,68,"SPACING_UIKIT"],[240,83,218,81],[241,4,219,2],[241,10,219,8,"minSidebarWidth"],[241,25,219,23],[241,28,219,26],[241,32,219,26,"useFrameSize"],[241,56,219,38],[241,57,219,38,"useFrameSize"],[241,69,219,38],[241,71,219,39,"size"],[241,75,219,43],[241,79,219,47,"sidebar"],[241,86,219,54],[241,90,219,58,"hasHorizontalLabels"],[241,109,219,77],[241,112,219,80],[241,116,219,80,"getDefaultSidebarWidth"],[241,140,219,102],[241,141,219,102,"getDefaultSidebarWidth"],[241,163,219,102],[241,165,219,103,"size"],[241,169,219,107],[241,170,219,108],[241,173,219,111],[241,174,219,112],[241,175,219,113],[242,4,220,2],[242,10,220,8,"tabBarBackgroundElement"],[242,33,220,31],[242,36,220,34,"tabBarBackground"],[242,52,220,50],[242,55,220,53],[242,56,220,54],[243,4,221,2],[243,11,221,9],[243,24,221,22],[243,28,221,22,"_jsxs"],[243,44,221,27],[243,45,221,27,"jsxs"],[243,49,221,27],[243,51,221,28,"Animated"],[243,59,221,36],[243,60,221,36,"default"],[243,67,221,36],[243,68,221,37,"View"],[243,72,221,41],[243,74,221,43],[244,6,222,4,"style"],[244,11,222,9],[244,13,222,11],[244,14,222,12,"tabBarPosition"],[244,28,222,26],[244,33,222,31],[244,39,222,37],[244,42,222,40,"styles"],[244,48,222,46],[244,49,222,47,"start"],[244,54,222,52],[244,57,222,55,"tabBarPosition"],[244,71,222,69],[244,76,222,74],[244,83,222,81],[244,86,222,84,"styles"],[244,92,222,90],[244,93,222,91,"end"],[244,96,222,94],[244,99,222,97,"styles"],[244,105,222,103],[244,106,222,104,"bottom"],[244,112,222,110],[244,114,222,112],[244,115,222,113,"Platform"],[244,123,222,121],[244,124,222,121,"default"],[244,131,222,121],[244,132,222,122,"OS"],[244,134,222,124],[244,139,222,129],[244,144,222,134],[244,147,222,137,"tabBarPosition"],[244,161,222,151],[244,166,222,156],[244,173,222,163],[244,176,222,166,"direction"],[244,185,222,175],[244,190,222,180],[244,195,222,185],[244,199,222,189,"tabBarPosition"],[244,213,222,203],[244,218,222,208],[244,224,222,214],[244,228,222,218,"direction"],[244,237,222,227],[244,242,222,232],[244,247,222,237],[244,251,222,241,"tabBarPosition"],[244,265,222,255],[244,270,222,260],[244,277,222,267],[244,281,222,271],[245,8,223,6,"borderLeftWidth"],[245,23,223,21],[245,25,223,23,"StyleSheet"],[245,35,223,33],[245,36,223,33,"default"],[245,43,223,33],[245,44,223,34,"hairlineWidth"],[246,6,224,4],[246,7,224,5],[246,10,224,8],[246,11,224,9,"Platform"],[246,19,224,17],[246,20,224,17,"default"],[246,27,224,17],[246,28,224,18,"OS"],[246,30,224,20],[246,35,224,25],[246,40,224,30],[246,43,224,33,"tabBarPosition"],[246,57,224,47],[246,62,224,52],[246,68,224,58],[246,71,224,61,"direction"],[246,80,224,70],[246,85,224,75],[246,90,224,80],[246,94,224,84,"tabBarPosition"],[246,108,224,98],[246,113,224,103],[246,120,224,110],[246,124,224,114,"direction"],[246,133,224,123],[246,138,224,128],[246,143,224,133],[246,147,224,137,"tabBarPosition"],[246,161,224,151],[246,166,224,156],[246,172,224,162],[246,176,224,166],[247,8,225,6,"borderRightWidth"],[247,24,225,22],[247,26,225,24,"StyleSheet"],[247,36,225,34],[247,37,225,34,"default"],[247,44,225,34],[247,45,225,35,"hairlineWidth"],[248,6,226,4],[248,7,226,5],[248,10,226,8,"tabBarPosition"],[248,24,226,22],[248,29,226,27],[248,34,226,32],[248,37,226,35],[249,8,227,6,"borderBottomWidth"],[249,25,227,23],[249,27,227,25,"StyleSheet"],[249,37,227,35],[249,38,227,35,"default"],[249,45,227,35],[249,46,227,36,"hairlineWidth"],[250,6,228,4],[250,7,228,5],[250,10,228,8],[251,8,229,6,"borderTopWidth"],[251,22,229,20],[251,24,229,22,"StyleSheet"],[251,34,229,32],[251,35,229,32,"default"],[251,42,229,32],[251,43,229,33,"hairlineWidth"],[252,6,230,4],[252,7,230,5],[252,9,230,7],[253,8,231,6,"backgroundColor"],[253,23,231,21],[253,25,231,23,"tabBarBackgroundElement"],[253,48,231,46],[253,52,231,50],[253,56,231,54],[253,59,231,57],[253,72,231,70],[253,75,231,73,"colors"],[253,81,231,79],[253,82,231,80,"card"],[253,86,231,84],[254,8,232,6,"borderColor"],[254,19,232,17],[254,21,232,19,"colors"],[254,27,232,25],[254,28,232,26,"border"],[255,6,233,4],[255,7,233,5],[255,9,233,7,"sidebar"],[255,16,233,14],[255,19,233,17],[256,8,234,6,"paddingTop"],[256,18,234,16],[256,20,234,18],[256,21,234,19,"hasHorizontalLabels"],[256,40,234,38],[256,43,234,41,"spacing"],[256,50,234,48],[256,53,234,51,"spacing"],[256,60,234,58],[256,63,234,61],[256,64,234,62],[256,68,234,66,"insets"],[256,74,234,72],[256,75,234,73,"top"],[256,78,234,76],[257,8,235,6,"paddingBottom"],[257,21,235,19],[257,23,235,21],[257,24,235,22,"hasHorizontalLabels"],[257,43,235,41],[257,46,235,44,"spacing"],[257,53,235,51],[257,56,235,54,"spacing"],[257,63,235,61],[257,66,235,64],[257,67,235,65],[257,71,235,69,"insets"],[257,77,235,75],[257,78,235,76,"bottom"],[257,84,235,82],[258,8,236,6,"paddingStart"],[258,20,236,18],[258,22,236,20,"spacing"],[258,29,236,27],[258,33,236,31,"tabBarPosition"],[258,47,236,45],[258,52,236,50],[258,58,236,56],[258,61,236,59,"insets"],[258,67,236,65],[258,68,236,66,"left"],[258,72,236,70],[258,75,236,73],[258,76,236,74],[258,77,236,75],[259,8,237,6,"paddingEnd"],[259,18,237,16],[259,20,237,18,"spacing"],[259,27,237,25],[259,31,237,29,"tabBarPosition"],[259,45,237,43],[259,50,237,48],[259,57,237,55],[259,60,237,58,"insets"],[259,66,237,64],[259,67,237,65,"right"],[259,72,237,70],[259,75,237,73],[259,76,237,74],[259,77,237,75],[260,8,238,6,"minWidth"],[260,16,238,14],[260,18,238,16,"minSidebarWidth"],[261,6,239,4],[261,7,239,5],[261,10,239,8],[261,11,239,9],[262,8,240,6,"transform"],[262,17,240,15],[262,19,240,17],[262,20,240,18],[263,10,241,8,"translateY"],[263,20,241,18],[263,22,241,20,"visible"],[263,29,241,27],[263,30,241,28,"interpolate"],[263,41,241,39],[263,42,241,40],[264,12,242,10,"inputRange"],[264,22,242,20],[264,24,242,22],[264,25,242,23],[264,26,242,24],[264,28,242,26],[264,29,242,27],[264,30,242,28],[265,12,243,10,"outputRange"],[265,23,243,21],[265,25,243,23],[265,26,243,24,"layout"],[265,32,243,30],[265,33,243,31,"height"],[265,39,243,37],[265,42,243,40,"insets"],[265,48,243,46],[265,49,243,47,"tabBarPosition"],[265,63,243,61],[265,68,243,66],[265,73,243,71],[265,76,243,74],[265,81,243,79],[265,84,243,82],[265,92,243,90],[265,93,243,91],[265,96,243,94,"StyleSheet"],[265,106,243,104],[265,107,243,104,"default"],[265,114,243,104],[265,115,243,105,"hairlineWidth"],[265,128,243,118],[265,130,243,120],[265,131,243,121],[266,10,244,8],[266,11,244,9],[267,8,245,6],[267,9,245,7],[267,10,245,8],[268,8,246,6],[269,8,247,6],[270,8,248,6,"position"],[270,16,248,14],[270,18,248,16,"isTabBarHidden"],[270,32,248,30],[270,35,248,33],[270,45,248,43],[270,48,248,46,"undefined"],[271,6,249,4],[271,7,249,5],[271,9,249,7],[272,8,250,6,"height"],[272,14,250,12],[272,16,250,14,"tabBarHeight"],[272,28,250,26],[273,8,251,6,"paddingBottom"],[273,21,251,19],[273,23,251,21,"tabBarPosition"],[273,37,251,35],[273,42,251,40],[273,50,251,48],[273,53,251,51,"insets"],[273,59,251,57],[273,60,251,58,"bottom"],[273,66,251,64],[273,69,251,67],[273,70,251,68],[274,8,252,6,"paddingTop"],[274,18,252,16],[274,20,252,18,"tabBarPosition"],[274,34,252,32],[274,39,252,37],[274,44,252,42],[274,47,252,45,"insets"],[274,53,252,51],[274,54,252,52,"top"],[274,57,252,55],[274,60,252,58],[274,61,252,59],[275,8,253,6,"paddingHorizontal"],[275,25,253,23],[275,27,253,25,"Math"],[275,31,253,29],[275,32,253,30,"max"],[275,35,253,33],[275,36,253,34,"insets"],[275,42,253,40],[275,43,253,41,"left"],[275,47,253,45],[275,49,253,47,"insets"],[275,55,253,53],[275,56,253,54,"right"],[275,61,253,59],[276,6,254,4],[276,7,254,5],[276,8,254,6],[276,10,254,8,"tabBarStyle"],[276,21,254,19],[276,22,254,20],[277,6,255,4,"pointerEvents"],[277,19,255,17],[277,21,255,19,"isTabBarHidden"],[277,35,255,33],[277,38,255,36],[277,44,255,42],[277,47,255,45],[277,53,255,51],[278,6,256,4,"onLayout"],[278,14,256,12],[278,16,256,14,"sidebar"],[278,23,256,21],[278,26,256,24,"undefined"],[278,35,256,33],[278,38,256,36,"handleLayout"],[278,50,256,48],[279,6,257,4,"children"],[279,14,257,12],[279,16,257,14],[279,17,257,15],[279,30,257,28],[279,34,257,28,"_jsx"],[279,50,257,32],[279,51,257,32,"jsx"],[279,54,257,32],[279,56,257,33,"View"],[279,60,257,37],[279,61,257,37,"default"],[279,68,257,37],[279,70,257,39],[280,8,258,6,"pointerEvents"],[280,21,258,19],[280,23,258,21],[280,29,258,27],[281,8,259,6,"style"],[281,13,259,11],[281,15,259,13,"StyleSheet"],[281,25,259,23],[281,26,259,23,"default"],[281,33,259,23],[281,34,259,24,"absoluteFill"],[281,46,259,36],[282,8,260,6,"children"],[282,16,260,14],[282,18,260,16,"tabBarBackgroundElement"],[283,6,261,4],[283,7,261,5],[283,8,261,6],[283,10,261,8],[283,23,261,21],[283,27,261,21,"_jsx"],[283,43,261,25],[283,44,261,25,"jsx"],[283,47,261,25],[283,49,261,26,"View"],[283,53,261,30],[283,54,261,30,"default"],[283,61,261,30],[283,63,261,32],[284,8,262,6,"role"],[284,12,262,10],[284,14,262,12],[284,23,262,21],[285,8,263,6,"style"],[285,13,263,11],[285,15,263,13,"sidebar"],[285,22,263,20],[285,25,263,23,"styles"],[285,31,263,29],[285,32,263,30,"sideContent"],[285,43,263,41],[285,46,263,44,"styles"],[285,52,263,50],[285,53,263,51,"bottomContent"],[285,66,263,64],[286,8,264,6,"children"],[286,16,264,14],[286,18,264,16,"routes"],[286,24,264,22],[286,25,264,23,"map"],[286,28,264,26],[286,29,264,27],[286,30,264,28,"route"],[286,35,264,33],[286,37,264,35,"index"],[286,42,264,40],[286,47,264,45],[287,10,265,8],[287,16,265,14,"focused"],[287,23,265,21],[287,26,265,24,"index"],[287,31,265,29],[287,36,265,34,"state"],[287,41,265,39],[287,42,265,40,"index"],[287,47,265,45],[288,10,266,8],[288,16,266,14],[289,12,267,10,"options"],[290,10,268,8],[290,11,268,9],[290,14,268,12,"descriptors"],[290,25,268,23],[290,26,268,24,"route"],[290,31,268,29],[290,32,268,30,"key"],[290,35,268,33],[290,36,268,34],[291,10,269,8],[291,16,269,14,"onPress"],[291,23,269,21],[291,26,269,24,"onPress"],[291,27,269,24],[291,32,269,30],[292,12,270,10],[292,18,270,16,"event"],[292,23,270,21],[292,26,270,24,"navigation"],[292,36,270,34],[292,37,270,35,"emit"],[292,41,270,39],[292,42,270,40],[293,14,271,12,"type"],[293,18,271,16],[293,20,271,18],[293,30,271,28],[294,14,272,12,"target"],[294,20,272,18],[294,22,272,20,"route"],[294,27,272,25],[294,28,272,26,"key"],[294,31,272,29],[295,14,273,12,"canPreventDefault"],[295,31,273,29],[295,33,273,31],[296,12,274,10],[296,13,274,11],[296,14,274,12],[297,12,275,10],[297,16,275,14],[297,17,275,15,"focused"],[297,24,275,22],[297,28,275,26],[297,29,275,27,"event"],[297,34,275,32],[297,35,275,33,"defaultPrevented"],[297,51,275,49],[297,53,275,51],[298,14,276,12,"navigation"],[298,24,276,22],[298,25,276,23,"dispatch"],[298,33,276,31],[298,34,276,31,"Object"],[298,40,276,31],[298,41,276,31,"assign"],[298,47,276,31],[298,52,277,17,"CommonActions"],[298,74,277,30],[298,75,277,30,"CommonActions"],[298,88,277,30],[298,89,277,31,"navigate"],[298,97,277,39],[298,98,277,40,"route"],[298,103,277,45],[298,104,277,46],[299,16,278,14,"target"],[299,22,278,20],[299,24,278,22,"state"],[299,29,278,27],[299,30,278,28,"key"],[300,14,278,31],[300,16,279,13],[300,17,279,14],[301,12,280,10],[302,10,281,8],[302,11,281,9],[303,10,282,8],[303,16,282,14,"onLongPress"],[303,27,282,25],[303,30,282,28,"onLongPress"],[303,31,282,28],[303,36,282,34],[304,12,283,10,"navigation"],[304,22,283,20],[304,23,283,21,"emit"],[304,27,283,25],[304,28,283,26],[305,14,284,12,"type"],[305,18,284,16],[305,20,284,18],[305,34,284,32],[306,14,285,12,"target"],[306,20,285,18],[306,22,285,20,"route"],[306,27,285,25],[306,28,285,26,"key"],[307,12,286,10],[307,13,286,11],[307,14,286,12],[308,10,287,8],[308,11,287,9],[309,10,288,8],[309,16,288,14,"label"],[309,21,288,19],[309,24,288,22],[309,31,288,29,"options"],[309,38,288,36],[309,39,288,37,"tabBarLabel"],[309,50,288,48],[309,55,288,53],[309,65,288,63],[309,68,288,66,"options"],[309,75,288,73],[309,76,288,74,"tabBarLabel"],[309,87,288,85],[309,90,288,88],[309,94,288,88,"getLabel"],[309,118,288,96],[309,119,288,96,"getLabel"],[309,127,288,96],[309,129,288,97],[310,12,289,10,"label"],[310,17,289,15],[310,19,289,17,"options"],[310,26,289,24],[310,27,289,25,"tabBarLabel"],[310,38,289,36],[311,12,290,10,"title"],[311,17,290,15],[311,19,290,17,"options"],[311,26,290,24],[311,27,290,25,"title"],[312,10,291,8],[312,11,291,9],[312,13,291,11,"route"],[312,18,291,16],[312,19,291,17,"name"],[312,23,291,21],[312,24,291,22],[313,10,292,8],[313,16,292,14,"accessibilityLabel"],[313,34,292,32],[313,37,292,35,"options"],[313,44,292,42],[313,45,292,43,"tabBarAccessibilityLabel"],[313,69,292,67],[313,74,292,72,"undefined"],[313,83,292,81],[313,86,292,84,"options"],[313,93,292,91],[313,94,292,92,"tabBarAccessibilityLabel"],[313,118,292,116],[313,121,292,119],[313,128,292,126,"label"],[313,133,292,131],[313,138,292,136],[313,146,292,144],[313,150,292,148,"Platform"],[313,158,292,156],[313,159,292,156,"default"],[313,166,292,156],[313,167,292,157,"OS"],[313,169,292,159],[313,174,292,164],[313,179,292,169],[313,182,292,172],[313,185,292,175,"label"],[313,190,292,180],[313,200,292,190,"index"],[313,205,292,195],[313,208,292,198],[313,209,292,199],[313,216,292,206,"routes"],[313,222,292,212],[313,223,292,213,"length"],[313,229,292,219],[313,231,292,221],[313,234,292,224,"undefined"],[313,243,292,233],[314,10,293,8],[314,17,293,15],[314,30,293,28],[314,34,293,28,"_jsx"],[314,50,293,32],[314,51,293,32,"jsx"],[314,54,293,32],[314,56,293,33,"NavigationContext"],[314,78,293,50],[314,79,293,50,"NavigationContext"],[314,96,293,50],[314,97,293,51,"Provider"],[314,105,293,59],[314,107,293,61],[315,12,294,10,"value"],[315,17,294,15],[315,19,294,17,"descriptors"],[315,30,294,28],[315,31,294,29,"route"],[315,36,294,34],[315,37,294,35,"key"],[315,40,294,38],[315,41,294,39],[315,42,294,40,"navigation"],[315,52,294,50],[316,12,295,10,"children"],[316,20,295,18],[316,22,295,20],[316,35,295,33],[316,39,295,33,"_jsx"],[316,55,295,37],[316,56,295,37,"jsx"],[316,59,295,37],[316,61,295,38,"NavigationRouteContext"],[316,83,295,60],[316,84,295,60,"NavigationRouteContext"],[316,106,295,60],[316,107,295,61,"Provider"],[316,115,295,69],[316,117,295,71],[317,14,296,12,"value"],[317,19,296,17],[317,21,296,19,"route"],[317,26,296,24],[318,14,297,12,"children"],[318,22,297,20],[318,24,297,22],[318,37,297,35],[318,41,297,35,"_jsx"],[318,57,297,39],[318,58,297,39,"jsx"],[318,61,297,39],[318,63,297,40,"BottomTabItem"],[318,79,297,53],[318,80,297,53,"BottomTabItem"],[318,93,297,53],[318,95,297,55],[319,16,298,14,"href"],[319,20,298,18],[319,22,298,20,"buildHref"],[319,31,298,29],[319,32,298,30,"route"],[319,37,298,35],[319,38,298,36,"name"],[319,42,298,40],[319,44,298,42,"route"],[319,49,298,47],[319,50,298,48,"params"],[319,56,298,54],[319,57,298,55],[320,16,299,14,"route"],[320,21,299,19],[320,23,299,21,"route"],[320,28,299,26],[321,16,300,14,"descriptor"],[321,26,300,24],[321,28,300,26,"descriptors"],[321,39,300,37],[321,40,300,38,"route"],[321,45,300,43],[321,46,300,44,"key"],[321,49,300,47],[321,50,300,48],[322,16,301,14,"focused"],[322,23,301,21],[322,25,301,23,"focused"],[322,32,301,30],[323,16,302,14,"horizontal"],[323,26,302,24],[323,28,302,26,"hasHorizontalLabels"],[323,47,302,45],[324,16,303,14,"compact"],[324,23,303,21],[324,25,303,23,"compact"],[324,32,303,30],[325,16,304,14,"sidebar"],[325,23,304,21],[325,25,304,23,"sidebar"],[325,32,304,30],[326,16,305,14,"variant"],[326,23,305,21],[326,25,305,23,"tabBarVariant"],[326,38,305,36],[327,16,306,14,"onPress"],[327,23,306,21],[327,25,306,23,"onPress"],[327,32,306,30],[328,16,307,14,"onLongPress"],[328,27,307,25],[328,29,307,27,"onLongPress"],[328,40,307,38],[329,16,308,14,"accessibilityLabel"],[329,34,308,32],[329,36,308,34,"accessibilityLabel"],[329,54,308,52],[330,16,309,14,"testID"],[330,22,309,20],[330,24,309,22,"options"],[330,31,309,29],[330,32,309,30,"tabBarButtonTestID"],[330,50,309,48],[331,16,310,14,"allowFontScaling"],[331,32,310,30],[331,34,310,32,"options"],[331,41,310,39],[331,42,310,40,"tabBarAllowFontScaling"],[331,64,310,62],[332,16,311,14,"activeTintColor"],[332,31,311,29],[332,33,311,31,"tabBarActiveTintColor"],[332,54,311,52],[333,16,312,14,"inactiveTintColor"],[333,33,312,31],[333,35,312,33,"tabBarInactiveTintColor"],[333,58,312,56],[334,16,313,14,"activeBackgroundColor"],[334,37,313,35],[334,39,313,37,"tabBarActiveBackgroundColor"],[334,66,313,64],[335,16,314,14,"inactiveBackgroundColor"],[335,39,314,37],[335,41,314,39,"tabBarInactiveBackgroundColor"],[335,70,314,68],[336,16,315,14,"button"],[336,22,315,20],[336,24,315,22,"options"],[336,31,315,29],[336,32,315,30,"tabBarButton"],[336,44,315,42],[337,16,316,14,"icon"],[337,20,316,18],[337,22,316,20,"options"],[337,29,316,27],[337,30,316,28,"tabBarIcon"],[337,40,316,38],[337,45,316,43],[337,46,316,44],[338,18,317,16,"color"],[338,23,317,21],[339,18,318,16,"size"],[340,16,319,14],[340,17,319,15],[340,22,319,20],[340,35,319,33],[340,39,319,33,"_jsx"],[340,55,319,37],[340,56,319,37,"jsx"],[340,59,319,37],[340,61,319,38,"MissingIcon"],[340,85,319,49],[340,86,319,49,"MissingIcon"],[340,97,319,49],[340,99,319,51],[341,18,320,16,"color"],[341,23,320,21],[341,25,320,23,"color"],[341,30,320,28],[342,18,321,16,"size"],[342,22,321,20],[342,24,321,22,"size"],[343,16,322,14],[343,17,322,15],[343,18,322,16],[343,19,322,17],[344,16,323,14,"badge"],[344,21,323,19],[344,23,323,21,"options"],[344,30,323,28],[344,31,323,29,"tabBarBadge"],[344,42,323,40],[345,16,324,14,"badgeStyle"],[345,26,324,24],[345,28,324,26,"options"],[345,35,324,33],[345,36,324,34,"tabBarBadgeStyle"],[345,52,324,50],[346,16,325,14,"label"],[346,21,325,19],[346,23,325,21,"label"],[346,28,325,26],[347,16,326,14,"showLabel"],[347,25,326,23],[347,27,326,25,"tabBarShowLabel"],[347,42,326,40],[348,16,327,14,"labelStyle"],[348,26,327,24],[348,28,327,26,"options"],[348,35,327,33],[348,36,327,34,"tabBarLabelStyle"],[348,52,327,50],[349,16,328,14,"iconStyle"],[349,25,328,23],[349,27,328,25,"options"],[349,34,328,32],[349,35,328,33,"tabBarIconStyle"],[349,50,328,48],[350,16,329,14,"style"],[350,21,329,19],[350,23,329,21],[350,24,329,22,"sidebar"],[350,31,329,29],[350,34,329,32],[351,18,330,16,"marginVertical"],[351,32,330,30],[351,34,330,32,"hasHorizontalLabels"],[351,53,330,51],[351,56,330,54,"tabBarVariant"],[351,69,330,67],[351,74,330,72],[351,84,330,82],[351,87,330,85],[351,88,330,86],[351,91,330,89],[351,92,330,90],[351,95,330,93,"spacing"],[351,102,330,100],[351,105,330,103],[352,16,331,14],[352,17,331,15],[352,20,331,18,"styles"],[352,26,331,24],[352,27,331,25,"bottomItem"],[352,37,331,35],[352,39,331,37,"options"],[352,46,331,44],[352,47,331,45,"tabBarItemStyle"],[352,62,331,60],[353,14,332,12],[353,15,332,13],[354,12,333,10],[354,13,333,11],[355,10,334,8],[355,11,334,9],[355,13,334,11,"route"],[355,18,334,16],[355,19,334,17,"key"],[355,22,334,20],[355,23,334,21],[356,8,335,6],[356,9,335,7],[357,6,336,4],[357,7,336,5],[357,8,336,6],[358,4,337,2],[358,5,337,3],[358,6,337,4],[359,2,338,0],[360,2,339,0],[360,8,339,6,"styles"],[360,14,339,12],[360,17,339,15,"StyleSheet"],[360,27,339,25],[360,28,339,25,"default"],[360,35,339,25],[360,36,339,26,"create"],[360,42,339,32],[360,43,339,33],[361,4,340,2,"start"],[361,9,340,7],[361,11,340,9],[362,6,341,4,"top"],[362,9,341,7],[362,11,341,9],[362,12,341,10],[363,6,342,4,"bottom"],[363,12,342,10],[363,14,342,12],[363,15,342,13],[364,6,343,4,"start"],[364,11,343,9],[364,13,343,11],[365,4,344,2],[365,5,344,3],[366,4,345,2,"end"],[366,7,345,5],[366,9,345,7],[367,6,346,4,"top"],[367,9,346,7],[367,11,346,9],[367,12,346,10],[368,6,347,4,"bottom"],[368,12,347,10],[368,14,347,12],[368,15,347,13],[369,6,348,4,"end"],[369,9,348,7],[369,11,348,9],[370,4,349,2],[370,5,349,3],[371,4,350,2,"bottom"],[371,10,350,8],[371,12,350,10],[372,6,351,4,"start"],[372,11,351,9],[372,13,351,11],[372,14,351,12],[373,6,352,4,"end"],[373,9,352,7],[373,11,352,9],[373,12,352,10],[374,6,353,4,"bottom"],[374,12,353,10],[374,14,353,12],[374,15,353,13],[375,6,354,4,"elevation"],[375,15,354,13],[375,17,354,15],[376,4,355,2],[376,5,355,3],[377,4,356,2,"bottomContent"],[377,17,356,15],[377,19,356,17],[378,6,357,4,"flex"],[378,10,357,8],[378,12,357,10],[378,13,357,11],[379,6,358,4,"flexDirection"],[379,19,358,17],[379,21,358,19],[380,4,359,2],[380,5,359,3],[381,4,360,2,"sideContent"],[381,15,360,13],[381,17,360,15],[382,6,361,4,"flex"],[382,10,361,8],[382,12,361,10],[382,13,361,11],[383,6,362,4,"flexDirection"],[383,19,362,17],[383,21,362,19],[384,4,363,2],[384,5,363,3],[385,4,364,2,"bottomItem"],[385,14,364,12],[385,16,364,14],[386,6,365,4,"flex"],[386,10,365,8],[386,12,365,10],[387,4,366,2],[388,2,367,0],[388,3,367,1],[388,4,367,2],[389,0,367,3],[389,3]],"functionMap":{"names":["","shouldUseHorizontalLabels","state.routes.reduce$argument_0","isCompact","getTabBarHeight","BottomTabBar","React.useEffect$argument_0","React.useState$argument_0","animation.start$argument_0","","handleLayout","setLayout$argument_0","useFrameSize$argument_0","routes.map$argument_0","onPress","onLongPress"],"mappings":"AAA;kCCgB;4CCkB;KDa;CDK;kBGC;CHsB;+BIC;CJwB;OKC;kBC2C;GDE;mCEE,kDF;kBCC;eES;OFM;WGY,6BH;GDC;uBKI;cCK;KDQ;GLC;oCOI;IPM;2COC;IPI;+BOC;IPI;uCOG,yEP;2BQ6C;wBCK;SDY;4BEC;SFK;2CJ6B;gBIM;ORa;CLG"},"hasCjsExports":false},"type":"js/module"}]}