mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 20:21:01 +00:00
1 line
49 KiB
Plaintext
1 line
49 KiB
Plaintext
{"dependencies":[{"name":"expo/dom","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":50,"column":14,"index":1848},"end":{"line":50,"column":33,"index":1867}}],"key":"CuyNnp1KdWlbZ+zIjWoiQo+JAVo=","exportNames":["*"]}},{"name":"expo-linking","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":51,"column":29,"index":1898},"end":{"line":51,"column":52,"index":1921}}],"key":"F3IRuZxT1cyHB74rJR7WrB3Q6GA=","exportNames":["*"]}},{"name":"react-native-web/dist/index","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"55efhPHw3gz2FoQtoN2yI1VuhbM=","exportNames":["*"]}},{"name":"./router-store","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":53,"column":23,"index":1995},"end":{"line":53,"column":48,"index":2020}}],"key":"FDUP7b4ICUkRq/4sHupz6lgRq68=","exportNames":["*"]}},{"name":"../domComponents/emitDomEvent","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":54,"column":23,"index":2045},"end":{"line":54,"column":63,"index":2085}}],"key":"ytOKgRKkGsnNX3Cjp8ZQVtQ04/A=","exportNames":["*"]}},{"name":"../getRoutesRedirects","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":55,"column":29,"index":2116},"end":{"line":55,"column":61,"index":2148}}],"key":"yKsaMnGrawCxqUEp+aBM/Yxeh5A=","exportNames":["*"]}},{"name":"../link/href","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":56,"column":15,"index":2165},"end":{"line":56,"column":38,"index":2188}}],"key":"8/z9CS+pCHEIoFsTmjKT/GkrtVA=","exportNames":["*"]}},{"name":"../matchers","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":57,"column":19,"index":2209},"end":{"line":57,"column":41,"index":2231}}],"key":"lD+VV93WPi10A3qv5+9m649ytvA=","exportNames":["*"]}},{"name":"../utils/url","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":58,"column":14,"index":2247},"end":{"line":58,"column":37,"index":2270}}],"key":"cr4Bw7JAHaE1T5Tb4Y1vtviexXs=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = {\n enumerable: true,\n get: function () {\n return m[k];\n }\n };\n }\n Object.defineProperty(o, k2, desc);\n } : function (o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n });\n var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {\n Object.defineProperty(o, \"default\", {\n enumerable: true,\n value: v\n });\n } : function (o, v) {\n o[\"default\"] = v;\n });\n var __importStar = this && this.__importStar || function () {\n var ownKeys = function (o) {\n ownKeys = Object.getOwnPropertyNames || function (o) {\n var ar = [];\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\n return ar;\n };\n return ownKeys(o);\n };\n return function (mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\n __setModuleDefault(result, mod);\n return result;\n };\n }();\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.routingQueue = void 0;\n exports.navigate = navigate;\n exports.reload = reload;\n exports.prefetch = prefetch;\n exports.push = push;\n exports.dismiss = dismiss;\n exports.dismissTo = dismissTo;\n exports.replace = replace;\n exports.dismissAll = dismissAll;\n exports.goBack = goBack;\n exports.canGoBack = canGoBack;\n exports.canDismiss = canDismiss;\n exports.setParams = setParams;\n exports.linkTo = linkTo;\n const dom_1 = require(_dependencyMap[0], \"expo/dom\");\n const Linking = __importStar(require(_dependencyMap[1], \"expo-linking\"));\n const react_native_1 = require(_dependencyMap[2], \"react-native-web/dist/index\");\n const router_store_1 = require(_dependencyMap[3], \"./router-store\");\n const emitDomEvent_1 = require(_dependencyMap[4], \"../domComponents/emitDomEvent\");\n const getRoutesRedirects_1 = require(_dependencyMap[5], \"../getRoutesRedirects\");\n const href_1 = require(_dependencyMap[6], \"../link/href\");\n const matchers_1 = require(_dependencyMap[7], \"../matchers\");\n const url_1 = require(_dependencyMap[8], \"../utils/url\");\n function assertIsReady() {\n if (!router_store_1.store.navigationRef.isReady()) {\n throw new Error('Attempted to navigate before mounting the Root Layout component. Ensure the Root Layout component is rendering a Slot, or other navigator on the first render.');\n }\n }\n exports.routingQueue = {\n queue: [],\n subscribers: new Set(),\n subscribe(callback) {\n exports.routingQueue.subscribers.add(callback);\n return () => {\n exports.routingQueue.subscribers.delete(callback);\n };\n },\n snapshot() {\n return exports.routingQueue.queue;\n },\n add(action) {\n // Reset the identity of the queue.\n if (exports.routingQueue.queue.length === 0) {\n exports.routingQueue.queue = [];\n }\n exports.routingQueue.queue.push(action);\n for (const callback of exports.routingQueue.subscribers) {\n callback();\n }\n },\n run() {\n const queue = exports.routingQueue.queue;\n if (queue.length === 0 || !router_store_1.store.navigationRef) {\n return;\n }\n exports.routingQueue.queue = [];\n for (const action of queue) {\n router_store_1.store.navigationRef.dispatch(action);\n }\n }\n };\n function navigate(url, options) {\n return linkTo((0, href_1.resolveHref)(url), {\n ...options,\n event: 'NAVIGATE'\n });\n }\n function reload() {\n // TODO(EvanBacon): add `reload` support.\n throw new Error('The reload method is not implemented in the client-side router yet.');\n }\n function prefetch(href, options) {\n return linkTo((0, href_1.resolveHref)(href), {\n ...options,\n event: 'PRELOAD'\n });\n }\n function push(url, options) {\n return linkTo((0, href_1.resolveHref)(url), {\n ...options,\n event: 'PUSH'\n });\n }\n function dismiss(count = 1) {\n if ((0, emitDomEvent_1.emitDomDismiss)(count)) {\n return;\n }\n exports.routingQueue.add({\n type: 'POP',\n payload: {\n count\n }\n });\n }\n function dismissTo(href, options) {\n return linkTo((0, href_1.resolveHref)(href), {\n ...options,\n event: 'POP_TO'\n });\n }\n function replace(url, options) {\n return linkTo((0, href_1.resolveHref)(url), {\n ...options,\n event: 'REPLACE'\n });\n }\n function dismissAll() {\n if ((0, emitDomEvent_1.emitDomDismissAll)()) {\n return;\n }\n exports.routingQueue.add({\n type: 'POP_TO_TOP'\n });\n }\n function goBack() {\n if ((0, emitDomEvent_1.emitDomGoBack)()) {\n return;\n }\n assertIsReady();\n exports.routingQueue.add({\n type: 'GO_BACK'\n });\n }\n function canGoBack() {\n if (dom_1.IS_DOM) {\n throw new Error('canGoBack imperative method is not supported. Pass the property to the DOM component instead.');\n }\n // Return a default value here if the navigation hasn't mounted yet.\n // This can happen if the user calls `canGoBack` from the Root Layout route\n // before mounting a navigator. This behavior exists due to React Navigation being dynamically\n // constructed at runtime. We can get rid of this in the future if we use\n // the static configuration internally.\n if (!router_store_1.store.navigationRef.isReady()) {\n return false;\n }\n return router_store_1.store.navigationRef?.current?.canGoBack() ?? false;\n }\n function canDismiss() {\n if (dom_1.IS_DOM) {\n throw new Error('canDismiss imperative method is not supported. Pass the property to the DOM component instead.');\n }\n let state = router_store_1.store.state;\n // Keep traversing down the state tree until we find a stack navigator that we can pop\n while (state) {\n if (state.type === 'stack' && state.routes.length > 1) {\n return true;\n }\n if (state.index === undefined) return false;\n state = state.routes?.[state.index]?.state;\n }\n return false;\n }\n function setParams(params = {}) {\n if ((0, emitDomEvent_1.emitDomSetParams)(params)) {\n return;\n }\n assertIsReady();\n return (router_store_1.store.navigationRef?.current?.setParams)(params);\n }\n function linkTo(originalHref, options = {}) {\n originalHref = typeof originalHref == 'string' ? originalHref : (0, href_1.resolveHref)(originalHref);\n let href = originalHref;\n if ((0, emitDomEvent_1.emitDomLinkEvent)(href, options)) {\n return;\n }\n if ((0, url_1.shouldLinkExternally)(href)) {\n if (href.startsWith('//') && react_native_1.Platform.OS !== 'web') {\n href = `https:${href}`;\n }\n Linking.openURL(href);\n return;\n }\n assertIsReady();\n const navigationRef = router_store_1.store.navigationRef.current;\n if (navigationRef == null) {\n throw new Error(\"Couldn't find a navigation object. Is your component inside NavigationContainer?\");\n }\n if (!router_store_1.store.linking) {\n throw new Error('Attempted to link to route when no routes are present');\n }\n if (href === '..' || href === '../') {\n navigationRef.goBack();\n return;\n }\n const rootState = navigationRef.getRootState();\n href = (0, href_1.resolveHrefStringWithSegments)(href, router_store_1.store.getRouteInfo(), options);\n href = (0, getRoutesRedirects_1.applyRedirects)(href, router_store_1.store.redirects);\n // If the href is undefined, it means that the redirect has already been handled the navigation\n if (!href) {\n return;\n }\n const state = router_store_1.store.linking.getStateFromPath(href, router_store_1.store.linking.config);\n if (!state || state.routes.length === 0) {\n console.error('Could not generate a valid navigation state for the given path: ' + href);\n return;\n }\n exports.routingQueue.add(getNavigateAction(state, rootState, options.event, options.withAnchor, options.dangerouslySingular));\n }\n function getNavigateAction(actionState, navigationState, type = 'NAVIGATE', withAnchor, singular) {\n /**\n * We need to find the deepest navigator where the action and current state diverge, If they do not diverge, the\n * lowest navigator is the target.\n *\n * By default React Navigation will target the current navigator, but this doesn't work for all actions\n * For example:\n * - /deeply/nested/route -> /top-level-route the target needs to be the top-level navigator\n * - /stack/nestedStack/page -> /stack1/nestedStack/other-page needs to target the nestedStack navigator\n *\n * This matching needs to done by comparing the route names and the dynamic path, for example\n * - /1/page -> /2/anotherPage needs to target the /[id] navigator\n *\n * Other parameters such as search params and hash are not evaluated.\n */\n let actionStateRoute;\n // Traverse the state tree comparing the current state and the action state until we find where they diverge\n while (actionState && navigationState) {\n const stateRoute = navigationState.routes[navigationState.index];\n actionStateRoute = actionState.routes[actionState.routes.length - 1];\n const childState = actionStateRoute.state;\n const nextNavigationState = stateRoute.state;\n const dynamicName = (0, matchers_1.matchDynamicName)(actionStateRoute.name);\n const didActionAndCurrentStateDiverge = actionStateRoute.name !== stateRoute.name || !childState || !nextNavigationState || dynamicName &&\n // @ts-expect-error: TODO(@kitten): This isn't properly typed, so the index access fails\n actionStateRoute.params?.[dynamicName.name] !== stateRoute.params?.[dynamicName.name];\n if (didActionAndCurrentStateDiverge) {\n break;\n }\n actionState = childState;\n navigationState = nextNavigationState;\n }\n /*\n * We found the target navigator, but the payload is in the incorrect format\n * We need to convert the action state to a payload that can be dispatched\n */\n const rootPayload = {\n params: {}\n };\n let payload = rootPayload;\n let params = payload.params;\n // The root level of payload is a bit weird, its params are in the child object\n while (actionStateRoute) {\n Object.assign(params, {\n ...payload.params,\n ...actionStateRoute.params\n });\n // Assign the screen name to the payload\n payload.screen = actionStateRoute.name;\n // Merge the params, ensuring that we create a new object\n payload.params = {\n ...params\n };\n // Params don't include the screen, thats a separate attribute\n delete payload.params['screen'];\n // Continue down the payload tree\n // Initially these values are separate, but React Nav merges them after the first layer\n payload = payload.params;\n params = payload;\n actionStateRoute = actionStateRoute.state?.routes[actionStateRoute.state?.routes.length - 1];\n }\n if (type === 'PUSH' && navigationState.type !== 'stack') {\n type = 'NAVIGATE';\n } else if (navigationState.type === 'expo-tab') {\n type = 'JUMP_TO';\n } else if (type === 'REPLACE' && navigationState.type === 'drawer') {\n type = 'JUMP_TO';\n }\n if (withAnchor !== undefined) {\n if (rootPayload.params.initial) {\n if (process.env.NODE_ENV !== 'production') {\n console.warn(`The parameter 'initial' is a reserved parameter name in React Navigation`);\n }\n }\n /*\n * The logic for initial can seen backwards depending on your perspective\n * True: The initialRouteName is not loaded. The incoming screen is the initial screen (default)\n * False: The initialRouteName is loaded. THe incoming screen is placed after the initialRouteName\n *\n * withAnchor flips the perspective.\n * True: You want the initialRouteName to load.\n * False: You do not want the initialRouteName to load.\n */\n rootPayload.params.initial = !withAnchor;\n }\n return {\n type,\n target: navigationState.key,\n payload: {\n // key: rootPayload.key,\n name: rootPayload.screen,\n params: rootPayload.params,\n singular\n }\n };\n }\n});","lineCount":342,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0],[4,6,2,4,"__createBinding"],[4,21,2,19],[4,24,2,23],[4,28,2,27],[4,32,2,31],[4,36,2,35],[4,37,2,36,"__createBinding"],[4,52,2,51],[4,57,2,57,"Object"],[4,63,2,63],[4,64,2,64,"create"],[4,70,2,70],[4,73,2,74],[4,83,2,83,"o"],[4,84,2,84],[4,86,2,86,"m"],[4,87,2,87],[4,89,2,89,"k"],[4,90,2,90],[4,92,2,92,"k2"],[4,94,2,94],[4,96,2,96],[5,4,3,4],[5,8,3,8,"k2"],[5,10,3,10],[5,15,3,15,"undefined"],[5,24,3,24],[5,26,3,26,"k2"],[5,28,3,28],[5,31,3,31,"k"],[5,32,3,32],[6,4,4,4],[6,8,4,8,"desc"],[6,12,4,12],[6,15,4,15,"Object"],[6,21,4,21],[6,22,4,22,"getOwnPropertyDescriptor"],[6,46,4,46],[6,47,4,47,"m"],[6,48,4,48],[6,50,4,50,"k"],[6,51,4,51],[6,52,4,52],[7,4,5,4],[7,8,5,8],[7,9,5,9,"desc"],[7,13,5,13],[7,18,5,18],[7,23,5,23],[7,27,5,27,"desc"],[7,31,5,31],[7,34,5,34],[7,35,5,35,"m"],[7,36,5,36],[7,37,5,37,"__esModule"],[7,47,5,47],[7,50,5,50,"desc"],[7,54,5,54],[7,55,5,55,"writable"],[7,63,5,63],[7,67,5,67,"desc"],[7,71,5,71],[7,72,5,72,"configurable"],[7,84,5,84],[7,85,5,85],[7,87,5,87],[8,6,6,6,"desc"],[8,10,6,10],[8,13,6,13],[9,8,6,15,"enumerable"],[9,18,6,25],[9,20,6,27],[9,24,6,31],[10,8,6,33,"get"],[10,11,6,36],[10,13,6,38],[10,22,6,38,"get"],[10,23,6,38],[10,25,6,49],[11,10,6,51],[11,17,6,58,"m"],[11,18,6,59],[11,19,6,60,"k"],[11,20,6,61],[11,21,6,62],[12,8,6,64],[13,6,6,66],[13,7,6,67],[14,4,7,4],[15,4,8,4,"Object"],[15,10,8,10],[15,11,8,11,"defineProperty"],[15,25,8,25],[15,26,8,26,"o"],[15,27,8,27],[15,29,8,29,"k2"],[15,31,8,31],[15,33,8,33,"desc"],[15,37,8,37],[15,38,8,38],[16,2,9,0],[16,3,9,1],[16,6,9,6],[16,16,9,15,"o"],[16,17,9,16],[16,19,9,18,"m"],[16,20,9,19],[16,22,9,21,"k"],[16,23,9,22],[16,25,9,24,"k2"],[16,27,9,26],[16,29,9,28],[17,4,10,4],[17,8,10,8,"k2"],[17,10,10,10],[17,15,10,15,"undefined"],[17,24,10,24],[17,26,10,26,"k2"],[17,28,10,28],[17,31,10,31,"k"],[17,32,10,32],[18,4,11,4,"o"],[18,5,11,5],[18,6,11,6,"k2"],[18,8,11,8],[18,9,11,9],[18,12,11,12,"m"],[18,13,11,13],[18,14,11,14,"k"],[18,15,11,15],[18,16,11,16],[19,2,12,0],[19,3,12,2],[19,4,12,3],[20,2,13,0],[20,6,13,4,"__setModuleDefault"],[20,24,13,22],[20,27,13,26],[20,31,13,30],[20,35,13,34],[20,39,13,38],[20,40,13,39,"__setModuleDefault"],[20,58,13,57],[20,63,13,63,"Object"],[20,69,13,69],[20,70,13,70,"create"],[20,76,13,76],[20,79,13,80],[20,89,13,89,"o"],[20,90,13,90],[20,92,13,92,"v"],[20,93,13,93],[20,95,13,95],[21,4,14,4,"Object"],[21,10,14,10],[21,11,14,11,"defineProperty"],[21,25,14,25],[21,26,14,26,"o"],[21,27,14,27],[21,29,14,29],[21,38,14,38],[21,40,14,40],[22,6,14,42,"enumerable"],[22,16,14,52],[22,18,14,54],[22,22,14,58],[23,6,14,60,"value"],[23,11,14,65],[23,13,14,67,"v"],[24,4,14,69],[24,5,14,70],[24,6,14,71],[25,2,15,0],[25,3,15,1],[25,6,15,5],[25,16,15,14,"o"],[25,17,15,15],[25,19,15,17,"v"],[25,20,15,18],[25,22,15,20],[26,4,16,4,"o"],[26,5,16,5],[26,6,16,6],[26,15,16,15],[26,16,16,16],[26,19,16,19,"v"],[26,20,16,20],[27,2,17,0],[27,3,17,1],[27,4,17,2],[28,2,18,0],[28,6,18,4,"__importStar"],[28,18,18,16],[28,21,18,20],[28,25,18,24],[28,29,18,28],[28,33,18,32],[28,34,18,33,"__importStar"],[28,46,18,45],[28,50,18,51],[28,62,18,63],[29,4,19,4],[29,8,19,8,"ownKeys"],[29,15,19,15],[29,18,19,18],[29,27,19,18,"ownKeys"],[29,28,19,27,"o"],[29,29,19,28],[29,31,19,30],[30,6,20,8,"ownKeys"],[30,13,20,15],[30,16,20,18,"Object"],[30,22,20,24],[30,23,20,25,"getOwnPropertyNames"],[30,42,20,44],[30,46,20,48],[30,56,20,58,"o"],[30,57,20,59],[30,59,20,61],[31,8,21,12],[31,12,21,16,"ar"],[31,14,21,18],[31,17,21,21],[31,19,21,23],[32,8,22,12],[32,13,22,17],[32,17,22,21,"k"],[32,18,22,22],[32,22,22,26,"o"],[32,23,22,27],[32,25,22,29],[32,29,22,33,"Object"],[32,35,22,39],[32,36,22,40,"prototype"],[32,45,22,49],[32,46,22,50,"hasOwnProperty"],[32,60,22,64],[32,61,22,65,"call"],[32,65,22,69],[32,66,22,70,"o"],[32,67,22,71],[32,69,22,73,"k"],[32,70,22,74],[32,71,22,75],[32,73,22,77,"ar"],[32,75,22,79],[32,76,22,80,"ar"],[32,78,22,82],[32,79,22,83,"length"],[32,85,22,89],[32,86,22,90],[32,89,22,93,"k"],[32,90,22,94],[33,8,23,12],[33,15,23,19,"ar"],[33,17,23,21],[34,6,24,8],[34,7,24,9],[35,6,25,8],[35,13,25,15,"ownKeys"],[35,20,25,22],[35,21,25,23,"o"],[35,22,25,24],[35,23,25,25],[36,4,26,4],[36,5,26,5],[37,4,27,4],[37,11,27,11],[37,21,27,21,"mod"],[37,24,27,24],[37,26,27,26],[38,6,28,8],[38,10,28,12,"mod"],[38,13,28,15],[38,17,28,19,"mod"],[38,20,28,22],[38,21,28,23,"__esModule"],[38,31,28,33],[38,33,28,35],[38,40,28,42,"mod"],[38,43,28,45],[39,6,29,8],[39,10,29,12,"result"],[39,16,29,18],[39,19,29,21],[39,20,29,22],[39,21,29,23],[40,6,30,8],[40,10,30,12,"mod"],[40,13,30,15],[40,17,30,19],[40,21,30,23],[40,23,30,25],[40,28,30,30],[40,32,30,34,"k"],[40,33,30,35],[40,36,30,38,"ownKeys"],[40,43,30,45],[40,44,30,46,"mod"],[40,47,30,49],[40,48,30,50],[40,50,30,52,"i"],[40,51,30,53],[40,54,30,56],[40,55,30,57],[40,57,30,59,"i"],[40,58,30,60],[40,61,30,63,"k"],[40,62,30,64],[40,63,30,65,"length"],[40,69,30,71],[40,71,30,73,"i"],[40,72,30,74],[40,74,30,76],[40,76,30,78],[40,80,30,82,"k"],[40,81,30,83],[40,82,30,84,"i"],[40,83,30,85],[40,84,30,86],[40,89,30,91],[40,98,30,100],[40,100,30,102,"__createBinding"],[40,115,30,117],[40,116,30,118,"result"],[40,122,30,124],[40,124,30,126,"mod"],[40,127,30,129],[40,129,30,131,"k"],[40,130,30,132],[40,131,30,133,"i"],[40,132,30,134],[40,133,30,135],[40,134,30,136],[41,6,31,8,"__setModuleDefault"],[41,24,31,26],[41,25,31,27,"result"],[41,31,31,33],[41,33,31,35,"mod"],[41,36,31,38],[41,37,31,39],[42,6,32,8],[42,13,32,15,"result"],[42,19,32,21],[43,4,33,4],[43,5,33,5],[44,2,34,0],[44,3,34,1],[44,4,34,3],[44,5,34,4],[45,2,35,0,"Object"],[45,8,35,6],[45,9,35,7,"defineProperty"],[45,23,35,21],[45,24,35,22,"exports"],[45,31,35,29],[45,33,35,31],[45,45,35,43],[45,47,35,45],[46,4,35,47,"value"],[46,9,35,52],[46,11,35,54],[47,2,35,59],[47,3,35,60],[47,4,35,61],[48,2,36,0,"exports"],[48,9,36,7],[48,10,36,8,"routingQueue"],[48,22,36,20],[48,25,36,23],[48,30,36,28],[48,31,36,29],[49,2,37,0,"exports"],[49,9,37,7],[49,10,37,8,"navigate"],[49,18,37,16],[49,21,37,19,"navigate"],[49,29,37,27],[50,2,38,0,"exports"],[50,9,38,7],[50,10,38,8,"reload"],[50,16,38,14],[50,19,38,17,"reload"],[50,25,38,23],[51,2,39,0,"exports"],[51,9,39,7],[51,10,39,8,"prefetch"],[51,18,39,16],[51,21,39,19,"prefetch"],[51,29,39,27],[52,2,40,0,"exports"],[52,9,40,7],[52,10,40,8,"push"],[52,14,40,12],[52,17,40,15,"push"],[52,21,40,19],[53,2,41,0,"exports"],[53,9,41,7],[53,10,41,8,"dismiss"],[53,17,41,15],[53,20,41,18,"dismiss"],[53,27,41,25],[54,2,42,0,"exports"],[54,9,42,7],[54,10,42,8,"dismissTo"],[54,19,42,17],[54,22,42,20,"dismissTo"],[54,31,42,29],[55,2,43,0,"exports"],[55,9,43,7],[55,10,43,8,"replace"],[55,17,43,15],[55,20,43,18,"replace"],[55,27,43,25],[56,2,44,0,"exports"],[56,9,44,7],[56,10,44,8,"dismissAll"],[56,20,44,18],[56,23,44,21,"dismissAll"],[56,33,44,31],[57,2,45,0,"exports"],[57,9,45,7],[57,10,45,8,"goBack"],[57,16,45,14],[57,19,45,17,"goBack"],[57,25,45,23],[58,2,46,0,"exports"],[58,9,46,7],[58,10,46,8,"canGoBack"],[58,19,46,17],[58,22,46,20,"canGoBack"],[58,31,46,29],[59,2,47,0,"exports"],[59,9,47,7],[59,10,47,8,"canDismiss"],[59,20,47,18],[59,23,47,21,"canDismiss"],[59,33,47,31],[60,2,48,0,"exports"],[60,9,48,7],[60,10,48,8,"setParams"],[60,19,48,17],[60,22,48,20,"setParams"],[60,31,48,29],[61,2,49,0,"exports"],[61,9,49,7],[61,10,49,8,"linkTo"],[61,16,49,14],[61,19,49,17,"linkTo"],[61,25,49,23],[62,2,50,0],[62,8,50,6,"dom_1"],[62,13,50,11],[62,16,50,14,"require"],[62,23,50,21],[62,24,50,21,"_dependencyMap"],[62,38,50,21],[62,53,50,32],[62,54,50,33],[63,2,51,0],[63,8,51,6,"Linking"],[63,15,51,13],[63,18,51,16,"__importStar"],[63,30,51,28],[63,31,51,29,"require"],[63,38,51,36],[63,39,51,36,"_dependencyMap"],[63,53,51,36],[63,72,51,51],[63,73,51,52],[63,74,51,53],[64,2,51,54],[64,8,51,54,"react_native_1"],[64,22,51,54],[64,25,51,54,"require"],[64,32,51,54],[64,33,51,54,"_dependencyMap"],[64,47,51,54],[65,2,53,0],[65,8,53,6,"router_store_1"],[65,22,53,20],[65,25,53,23,"require"],[65,32,53,30],[65,33,53,30,"_dependencyMap"],[65,47,53,30],[65,68,53,47],[65,69,53,48],[66,2,54,0],[66,8,54,6,"emitDomEvent_1"],[66,22,54,20],[66,25,54,23,"require"],[66,32,54,30],[66,33,54,30,"_dependencyMap"],[66,47,54,30],[66,83,54,62],[66,84,54,63],[67,2,55,0],[67,8,55,6,"getRoutesRedirects_1"],[67,28,55,26],[67,31,55,29,"require"],[67,38,55,36],[67,39,55,36,"_dependencyMap"],[67,53,55,36],[67,81,55,60],[67,82,55,61],[68,2,56,0],[68,8,56,6,"href_1"],[68,14,56,12],[68,17,56,15,"require"],[68,24,56,22],[68,25,56,22,"_dependencyMap"],[68,39,56,22],[68,58,56,37],[68,59,56,38],[69,2,57,0],[69,8,57,6,"matchers_1"],[69,18,57,16],[69,21,57,19,"require"],[69,28,57,26],[69,29,57,26,"_dependencyMap"],[69,43,57,26],[69,61,57,40],[69,62,57,41],[70,2,58,0],[70,8,58,6,"url_1"],[70,13,58,11],[70,16,58,14,"require"],[70,23,58,21],[70,24,58,21,"_dependencyMap"],[70,38,58,21],[70,57,58,36],[70,58,58,37],[71,2,59,0],[71,11,59,9,"assertIsReady"],[71,24,59,22,"assertIsReady"],[71,25,59,22],[71,27,59,25],[72,4,60,4],[72,8,60,8],[72,9,60,9,"router_store_1"],[72,23,60,23],[72,24,60,24,"store"],[72,29,60,29],[72,30,60,30,"navigationRef"],[72,43,60,43],[72,44,60,44,"isReady"],[72,51,60,51],[72,52,60,52],[72,53,60,53],[72,55,60,55],[73,6,61,8],[73,12,61,14],[73,16,61,18,"Error"],[73,21,61,23],[73,22,61,24],[73,182,61,184],[73,183,61,185],[74,4,62,4],[75,2,63,0],[76,2,64,0,"exports"],[76,9,64,7],[76,10,64,8,"routingQueue"],[76,22,64,20],[76,25,64,23],[77,4,65,4,"queue"],[77,9,65,9],[77,11,65,11],[77,13,65,13],[78,4,66,4,"subscribers"],[78,15,66,15],[78,17,66,17],[78,21,66,21,"Set"],[78,24,66,24],[78,25,66,25],[78,26,66,26],[79,4,67,4,"subscribe"],[79,13,67,13,"subscribe"],[79,14,67,14,"callback"],[79,22,67,22],[79,24,67,24],[80,6,68,8,"exports"],[80,13,68,15],[80,14,68,16,"routingQueue"],[80,26,68,28],[80,27,68,29,"subscribers"],[80,38,68,40],[80,39,68,41,"add"],[80,42,68,44],[80,43,68,45,"callback"],[80,51,68,53],[80,52,68,54],[81,6,69,8],[81,13,69,15],[81,19,69,21],[82,8,70,12,"exports"],[82,15,70,19],[82,16,70,20,"routingQueue"],[82,28,70,32],[82,29,70,33,"subscribers"],[82,40,70,44],[82,41,70,45,"delete"],[82,47,70,51],[82,48,70,52,"callback"],[82,56,70,60],[82,57,70,61],[83,6,71,8],[83,7,71,9],[84,4,72,4],[84,5,72,5],[85,4,73,4,"snapshot"],[85,12,73,12,"snapshot"],[85,13,73,12],[85,15,73,15],[86,6,74,8],[86,13,74,15,"exports"],[86,20,74,22],[86,21,74,23,"routingQueue"],[86,33,74,35],[86,34,74,36,"queue"],[86,39,74,41],[87,4,75,4],[87,5,75,5],[88,4,76,4,"add"],[88,7,76,7,"add"],[88,8,76,8,"action"],[88,14,76,14],[88,16,76,16],[89,6,77,8],[90,6,78,8],[90,10,78,12,"exports"],[90,17,78,19],[90,18,78,20,"routingQueue"],[90,30,78,32],[90,31,78,33,"queue"],[90,36,78,38],[90,37,78,39,"length"],[90,43,78,45],[90,48,78,50],[90,49,78,51],[90,51,78,53],[91,8,79,12,"exports"],[91,15,79,19],[91,16,79,20,"routingQueue"],[91,28,79,32],[91,29,79,33,"queue"],[91,34,79,38],[91,37,79,41],[91,39,79,43],[92,6,80,8],[93,6,81,8,"exports"],[93,13,81,15],[93,14,81,16,"routingQueue"],[93,26,81,28],[93,27,81,29,"queue"],[93,32,81,34],[93,33,81,35,"push"],[93,37,81,39],[93,38,81,40,"action"],[93,44,81,46],[93,45,81,47],[94,6,82,8],[94,11,82,13],[94,17,82,19,"callback"],[94,25,82,27],[94,29,82,31,"exports"],[94,36,82,38],[94,37,82,39,"routingQueue"],[94,49,82,51],[94,50,82,52,"subscribers"],[94,61,82,63],[94,63,82,65],[95,8,83,12,"callback"],[95,16,83,20],[95,17,83,21],[95,18,83,22],[96,6,84,8],[97,4,85,4],[97,5,85,5],[98,4,86,4,"run"],[98,7,86,7,"run"],[98,8,86,7],[98,10,86,10],[99,6,87,8],[99,12,87,14,"queue"],[99,17,87,19],[99,20,87,22,"exports"],[99,27,87,29],[99,28,87,30,"routingQueue"],[99,40,87,42],[99,41,87,43,"queue"],[99,46,87,48],[100,6,88,8],[100,10,88,12,"queue"],[100,15,88,17],[100,16,88,18,"length"],[100,22,88,24],[100,27,88,29],[100,28,88,30],[100,32,88,34],[100,33,88,35,"router_store_1"],[100,47,88,49],[100,48,88,50,"store"],[100,53,88,55],[100,54,88,56,"navigationRef"],[100,67,88,69],[100,69,88,71],[101,8,89,12],[102,6,90,8],[103,6,91,8,"exports"],[103,13,91,15],[103,14,91,16,"routingQueue"],[103,26,91,28],[103,27,91,29,"queue"],[103,32,91,34],[103,35,91,37],[103,37,91,39],[104,6,92,8],[104,11,92,13],[104,17,92,19,"action"],[104,23,92,25],[104,27,92,29,"queue"],[104,32,92,34],[104,34,92,36],[105,8,93,12,"router_store_1"],[105,22,93,26],[105,23,93,27,"store"],[105,28,93,32],[105,29,93,33,"navigationRef"],[105,42,93,46],[105,43,93,47,"dispatch"],[105,51,93,55],[105,52,93,56,"action"],[105,58,93,62],[105,59,93,63],[106,6,94,8],[107,4,95,4],[108,2,96,0],[108,3,96,1],[109,2,97,0],[109,11,97,9,"navigate"],[109,19,97,17,"navigate"],[109,20,97,18,"url"],[109,23,97,21],[109,25,97,23,"options"],[109,32,97,30],[109,34,97,32],[110,4,98,4],[110,11,98,11,"linkTo"],[110,17,98,17],[110,18,98,18],[110,19,98,19],[110,20,98,20],[110,22,98,22,"href_1"],[110,28,98,28],[110,29,98,29,"resolveHref"],[110,40,98,40],[110,42,98,42,"url"],[110,45,98,45],[110,46,98,46],[110,48,98,48],[111,6,98,50],[111,9,98,53,"options"],[111,16,98,60],[112,6,98,62,"event"],[112,11,98,67],[112,13,98,69],[113,4,98,80],[113,5,98,81],[113,6,98,82],[114,2,99,0],[115,2,100,0],[115,11,100,9,"reload"],[115,17,100,15,"reload"],[115,18,100,15],[115,20,100,18],[116,4,101,4],[117,4,102,4],[117,10,102,10],[117,14,102,14,"Error"],[117,19,102,19],[117,20,102,20],[117,89,102,89],[117,90,102,90],[118,2,103,0],[119,2,104,0],[119,11,104,9,"prefetch"],[119,19,104,17,"prefetch"],[119,20,104,18,"href"],[119,24,104,22],[119,26,104,24,"options"],[119,33,104,31],[119,35,104,33],[120,4,105,4],[120,11,105,11,"linkTo"],[120,17,105,17],[120,18,105,18],[120,19,105,19],[120,20,105,20],[120,22,105,22,"href_1"],[120,28,105,28],[120,29,105,29,"resolveHref"],[120,40,105,40],[120,42,105,42,"href"],[120,46,105,46],[120,47,105,47],[120,49,105,49],[121,6,105,51],[121,9,105,54,"options"],[121,16,105,61],[122,6,105,63,"event"],[122,11,105,68],[122,13,105,70],[123,4,105,80],[123,5,105,81],[123,6,105,82],[124,2,106,0],[125,2,107,0],[125,11,107,9,"push"],[125,15,107,13,"push"],[125,16,107,14,"url"],[125,19,107,17],[125,21,107,19,"options"],[125,28,107,26],[125,30,107,28],[126,4,108,4],[126,11,108,11,"linkTo"],[126,17,108,17],[126,18,108,18],[126,19,108,19],[126,20,108,20],[126,22,108,22,"href_1"],[126,28,108,28],[126,29,108,29,"resolveHref"],[126,40,108,40],[126,42,108,42,"url"],[126,45,108,45],[126,46,108,46],[126,48,108,48],[127,6,108,50],[127,9,108,53,"options"],[127,16,108,60],[128,6,108,62,"event"],[128,11,108,67],[128,13,108,69],[129,4,108,76],[129,5,108,77],[129,6,108,78],[130,2,109,0],[131,2,110,0],[131,11,110,9,"dismiss"],[131,18,110,16,"dismiss"],[131,19,110,17,"count"],[131,24,110,22],[131,27,110,25],[131,28,110,26],[131,30,110,28],[132,4,111,4],[132,8,111,8],[132,9,111,9],[132,10,111,10],[132,12,111,12,"emitDomEvent_1"],[132,26,111,26],[132,27,111,27,"emitDomDismiss"],[132,41,111,41],[132,43,111,43,"count"],[132,48,111,48],[132,49,111,49],[132,51,111,51],[133,6,112,8],[134,4,113,4],[135,4,114,4,"exports"],[135,11,114,11],[135,12,114,12,"routingQueue"],[135,24,114,24],[135,25,114,25,"add"],[135,28,114,28],[135,29,114,29],[136,6,114,31,"type"],[136,10,114,35],[136,12,114,37],[136,17,114,42],[137,6,114,44,"payload"],[137,13,114,51],[137,15,114,53],[138,8,114,55,"count"],[139,6,114,61],[140,4,114,63],[140,5,114,64],[140,6,114,65],[141,2,115,0],[142,2,116,0],[142,11,116,9,"dismissTo"],[142,20,116,18,"dismissTo"],[142,21,116,19,"href"],[142,25,116,23],[142,27,116,25,"options"],[142,34,116,32],[142,36,116,34],[143,4,117,4],[143,11,117,11,"linkTo"],[143,17,117,17],[143,18,117,18],[143,19,117,19],[143,20,117,20],[143,22,117,22,"href_1"],[143,28,117,28],[143,29,117,29,"resolveHref"],[143,40,117,40],[143,42,117,42,"href"],[143,46,117,46],[143,47,117,47],[143,49,117,49],[144,6,117,51],[144,9,117,54,"options"],[144,16,117,61],[145,6,117,63,"event"],[145,11,117,68],[145,13,117,70],[146,4,117,79],[146,5,117,80],[146,6,117,81],[147,2,118,0],[148,2,119,0],[148,11,119,9,"replace"],[148,18,119,16,"replace"],[148,19,119,17,"url"],[148,22,119,20],[148,24,119,22,"options"],[148,31,119,29],[148,33,119,31],[149,4,120,4],[149,11,120,11,"linkTo"],[149,17,120,17],[149,18,120,18],[149,19,120,19],[149,20,120,20],[149,22,120,22,"href_1"],[149,28,120,28],[149,29,120,29,"resolveHref"],[149,40,120,40],[149,42,120,42,"url"],[149,45,120,45],[149,46,120,46],[149,48,120,48],[150,6,120,50],[150,9,120,53,"options"],[150,16,120,60],[151,6,120,62,"event"],[151,11,120,67],[151,13,120,69],[152,4,120,79],[152,5,120,80],[152,6,120,81],[153,2,121,0],[154,2,122,0],[154,11,122,9,"dismissAll"],[154,21,122,19,"dismissAll"],[154,22,122,19],[154,24,122,22],[155,4,123,4],[155,8,123,8],[155,9,123,9],[155,10,123,10],[155,12,123,12,"emitDomEvent_1"],[155,26,123,26],[155,27,123,27,"emitDomDismissAll"],[155,44,123,44],[155,46,123,46],[155,47,123,47],[155,49,123,49],[156,6,124,8],[157,4,125,4],[158,4,126,4,"exports"],[158,11,126,11],[158,12,126,12,"routingQueue"],[158,24,126,24],[158,25,126,25,"add"],[158,28,126,28],[158,29,126,29],[159,6,126,31,"type"],[159,10,126,35],[159,12,126,37],[160,4,126,50],[160,5,126,51],[160,6,126,52],[161,2,127,0],[162,2,128,0],[162,11,128,9,"goBack"],[162,17,128,15,"goBack"],[162,18,128,15],[162,20,128,18],[163,4,129,4],[163,8,129,8],[163,9,129,9],[163,10,129,10],[163,12,129,12,"emitDomEvent_1"],[163,26,129,26],[163,27,129,27,"emitDomGoBack"],[163,40,129,40],[163,42,129,42],[163,43,129,43],[163,45,129,45],[164,6,130,8],[165,4,131,4],[166,4,132,4,"assertIsReady"],[166,17,132,17],[166,18,132,18],[166,19,132,19],[167,4,133,4,"exports"],[167,11,133,11],[167,12,133,12,"routingQueue"],[167,24,133,24],[167,25,133,25,"add"],[167,28,133,28],[167,29,133,29],[168,6,133,31,"type"],[168,10,133,35],[168,12,133,37],[169,4,133,47],[169,5,133,48],[169,6,133,49],[170,2,134,0],[171,2,135,0],[171,11,135,9,"canGoBack"],[171,20,135,18,"canGoBack"],[171,21,135,18],[171,23,135,21],[172,4,136,4],[172,8,136,8,"dom_1"],[172,13,136,13],[172,14,136,14,"IS_DOM"],[172,20,136,20],[172,22,136,22],[173,6,137,8],[173,12,137,14],[173,16,137,18,"Error"],[173,21,137,23],[173,22,137,24],[173,117,137,119],[173,118,137,120],[174,4,138,4],[175,4,139,4],[176,4,140,4],[177,4,141,4],[178,4,142,4],[179,4,143,4],[180,4,144,4],[180,8,144,8],[180,9,144,9,"router_store_1"],[180,23,144,23],[180,24,144,24,"store"],[180,29,144,29],[180,30,144,30,"navigationRef"],[180,43,144,43],[180,44,144,44,"isReady"],[180,51,144,51],[180,52,144,52],[180,53,144,53],[180,55,144,55],[181,6,145,8],[181,13,145,15],[181,18,145,20],[182,4,146,4],[183,4,147,4],[183,11,147,11,"router_store_1"],[183,25,147,25],[183,26,147,26,"store"],[183,31,147,31],[183,32,147,32,"navigationRef"],[183,45,147,45],[183,47,147,47,"current"],[183,54,147,54],[183,56,147,56,"canGoBack"],[183,65,147,65],[183,66,147,66],[183,67,147,67],[183,71,147,71],[183,76,147,76],[184,2,148,0],[185,2,149,0],[185,11,149,9,"canDismiss"],[185,21,149,19,"canDismiss"],[185,22,149,19],[185,24,149,22],[186,4,150,4],[186,8,150,8,"dom_1"],[186,13,150,13],[186,14,150,14,"IS_DOM"],[186,20,150,20],[186,22,150,22],[187,6,151,8],[187,12,151,14],[187,16,151,18,"Error"],[187,21,151,23],[187,22,151,24],[187,118,151,120],[187,119,151,121],[188,4,152,4],[189,4,153,4],[189,8,153,8,"state"],[189,13,153,13],[189,16,153,16,"router_store_1"],[189,30,153,30],[189,31,153,31,"store"],[189,36,153,36],[189,37,153,37,"state"],[189,42,153,42],[190,4,154,4],[191,4,155,4],[191,11,155,11,"state"],[191,16,155,16],[191,18,155,18],[192,6,156,8],[192,10,156,12,"state"],[192,15,156,17],[192,16,156,18,"type"],[192,20,156,22],[192,25,156,27],[192,32,156,34],[192,36,156,38,"state"],[192,41,156,43],[192,42,156,44,"routes"],[192,48,156,50],[192,49,156,51,"length"],[192,55,156,57],[192,58,156,60],[192,59,156,61],[192,61,156,63],[193,8,157,12],[193,15,157,19],[193,19,157,23],[194,6,158,8],[195,6,159,8],[195,10,159,12,"state"],[195,15,159,17],[195,16,159,18,"index"],[195,21,159,23],[195,26,159,28,"undefined"],[195,35,159,37],[195,37,160,12],[195,44,160,19],[195,49,160,24],[196,6,161,8,"state"],[196,11,161,13],[196,14,161,16,"state"],[196,19,161,21],[196,20,161,22,"routes"],[196,26,161,28],[196,29,161,31,"state"],[196,34,161,36],[196,35,161,37,"index"],[196,40,161,42],[196,41,161,43],[196,43,161,45,"state"],[196,48,161,50],[197,4,162,4],[198,4,163,4],[198,11,163,11],[198,16,163,16],[199,2,164,0],[200,2,165,0],[200,11,165,9,"setParams"],[200,20,165,18,"setParams"],[200,21,165,19,"params"],[200,27,165,25],[200,30,165,28],[200,31,165,29],[200,32,165,30],[200,34,165,32],[201,4,166,4],[201,8,166,8],[201,9,166,9],[201,10,166,10],[201,12,166,12,"emitDomEvent_1"],[201,26,166,26],[201,27,166,27,"emitDomSetParams"],[201,43,166,43],[201,45,166,45,"params"],[201,51,166,51],[201,52,166,52],[201,54,166,54],[202,6,167,8],[203,4,168,4],[204,4,169,4,"assertIsReady"],[204,17,169,17],[204,18,169,18],[204,19,169,19],[205,4,170,4],[205,11,170,11],[205,12,170,12,"router_store_1"],[205,26,170,26],[205,27,170,27,"store"],[205,32,170,32],[205,33,170,33,"navigationRef"],[205,46,170,46],[205,48,170,48,"current"],[205,55,170,55],[205,57,170,57,"setParams"],[205,66,170,66],[205,68,170,68,"params"],[205,74,170,74],[205,75,170,75],[206,2,171,0],[207,2,172,0],[207,11,172,9,"linkTo"],[207,17,172,15,"linkTo"],[207,18,172,16,"originalHref"],[207,30,172,28],[207,32,172,30,"options"],[207,39,172,37],[207,42,172,40],[207,43,172,41],[207,44,172,42],[207,46,172,44],[208,4,173,4,"originalHref"],[208,16,173,16],[208,19,173,19],[208,26,173,26,"originalHref"],[208,38,173,38],[208,42,173,42],[208,50,173,50],[208,53,173,53,"originalHref"],[208,65,173,65],[208,68,173,68],[208,69,173,69],[208,70,173,70],[208,72,173,72,"href_1"],[208,78,173,78],[208,79,173,79,"resolveHref"],[208,90,173,90],[208,92,173,92,"originalHref"],[208,104,173,104],[208,105,173,105],[209,4,174,4],[209,8,174,8,"href"],[209,12,174,12],[209,15,174,15,"originalHref"],[209,27,174,27],[210,4,175,4],[210,8,175,8],[210,9,175,9],[210,10,175,10],[210,12,175,12,"emitDomEvent_1"],[210,26,175,26],[210,27,175,27,"emitDomLinkEvent"],[210,43,175,43],[210,45,175,45,"href"],[210,49,175,49],[210,51,175,51,"options"],[210,58,175,58],[210,59,175,59],[210,61,175,61],[211,6,176,8],[212,4,177,4],[213,4,178,4],[213,8,178,8],[213,9,178,9],[213,10,178,10],[213,12,178,12,"url_1"],[213,17,178,17],[213,18,178,18,"shouldLinkExternally"],[213,38,178,38],[213,40,178,40,"href"],[213,44,178,44],[213,45,178,45],[213,47,178,47],[214,6,179,8],[214,10,179,12,"href"],[214,14,179,16],[214,15,179,17,"startsWith"],[214,25,179,27],[214,26,179,28],[214,30,179,32],[214,31,179,33],[214,35,179,37,"react_native_1"],[214,49,179,51],[214,50,179,52,"Platform"],[214,58,179,60],[214,59,179,61,"OS"],[214,61,179,63],[214,66,179,68],[214,71,179,73],[214,73,179,75],[215,8,180,12,"href"],[215,12,180,16],[215,15,180,19],[215,24,180,28,"href"],[215,28,180,32],[215,30,180,34],[216,6,181,8],[217,6,182,8,"Linking"],[217,13,182,15],[217,14,182,16,"openURL"],[217,21,182,23],[217,22,182,24,"href"],[217,26,182,28],[217,27,182,29],[218,6,183,8],[219,4,184,4],[220,4,185,4,"assertIsReady"],[220,17,185,17],[220,18,185,18],[220,19,185,19],[221,4,186,4],[221,10,186,10,"navigationRef"],[221,23,186,23],[221,26,186,26,"router_store_1"],[221,40,186,40],[221,41,186,41,"store"],[221,46,186,46],[221,47,186,47,"navigationRef"],[221,60,186,60],[221,61,186,61,"current"],[221,68,186,68],[222,4,187,4],[222,8,187,8,"navigationRef"],[222,21,187,21],[222,25,187,25],[222,29,187,29],[222,31,187,31],[223,6,188,8],[223,12,188,14],[223,16,188,18,"Error"],[223,21,188,23],[223,22,188,24],[223,104,188,106],[223,105,188,107],[224,4,189,4],[225,4,190,4],[225,8,190,8],[225,9,190,9,"router_store_1"],[225,23,190,23],[225,24,190,24,"store"],[225,29,190,29],[225,30,190,30,"linking"],[225,37,190,37],[225,39,190,39],[226,6,191,8],[226,12,191,14],[226,16,191,18,"Error"],[226,21,191,23],[226,22,191,24],[226,77,191,79],[226,78,191,80],[227,4,192,4],[228,4,193,4],[228,8,193,8,"href"],[228,12,193,12],[228,17,193,17],[228,21,193,21],[228,25,193,25,"href"],[228,29,193,29],[228,34,193,34],[228,39,193,39],[228,41,193,41],[229,6,194,8,"navigationRef"],[229,19,194,21],[229,20,194,22,"goBack"],[229,26,194,28],[229,27,194,29],[229,28,194,30],[230,6,195,8],[231,4,196,4],[232,4,197,4],[232,10,197,10,"rootState"],[232,19,197,19],[232,22,197,22,"navigationRef"],[232,35,197,35],[232,36,197,36,"getRootState"],[232,48,197,48],[232,49,197,49],[232,50,197,50],[233,4,198,4,"href"],[233,8,198,8],[233,11,198,11],[233,12,198,12],[233,13,198,13],[233,15,198,15,"href_1"],[233,21,198,21],[233,22,198,22,"resolveHrefStringWithSegments"],[233,51,198,51],[233,53,198,53,"href"],[233,57,198,57],[233,59,198,59,"router_store_1"],[233,73,198,73],[233,74,198,74,"store"],[233,79,198,79],[233,80,198,80,"getRouteInfo"],[233,92,198,92],[233,93,198,93],[233,94,198,94],[233,96,198,96,"options"],[233,103,198,103],[233,104,198,104],[234,4,199,4,"href"],[234,8,199,8],[234,11,199,11],[234,12,199,12],[234,13,199,13],[234,15,199,15,"getRoutesRedirects_1"],[234,35,199,35],[234,36,199,36,"applyRedirects"],[234,50,199,50],[234,52,199,52,"href"],[234,56,199,56],[234,58,199,58,"router_store_1"],[234,72,199,72],[234,73,199,73,"store"],[234,78,199,78],[234,79,199,79,"redirects"],[234,88,199,88],[234,89,199,89],[235,4,200,4],[236,4,201,4],[236,8,201,8],[236,9,201,9,"href"],[236,13,201,13],[236,15,201,15],[237,6,202,8],[238,4,203,4],[239,4,204,4],[239,10,204,10,"state"],[239,15,204,15],[239,18,204,18,"router_store_1"],[239,32,204,32],[239,33,204,33,"store"],[239,38,204,38],[239,39,204,39,"linking"],[239,46,204,46],[239,47,204,47,"getStateFromPath"],[239,63,204,63],[239,64,204,64,"href"],[239,68,204,68],[239,70,204,70,"router_store_1"],[239,84,204,84],[239,85,204,85,"store"],[239,90,204,90],[239,91,204,91,"linking"],[239,98,204,98],[239,99,204,99,"config"],[239,105,204,105],[239,106,204,106],[240,4,205,4],[240,8,205,8],[240,9,205,9,"state"],[240,14,205,14],[240,18,205,18,"state"],[240,23,205,23],[240,24,205,24,"routes"],[240,30,205,30],[240,31,205,31,"length"],[240,37,205,37],[240,42,205,42],[240,43,205,43],[240,45,205,45],[241,6,206,8,"console"],[241,13,206,15],[241,14,206,16,"error"],[241,19,206,21],[241,20,206,22],[241,86,206,88],[241,89,206,91,"href"],[241,93,206,95],[241,94,206,96],[242,6,207,8],[243,4,208,4],[244,4,209,4,"exports"],[244,11,209,11],[244,12,209,12,"routingQueue"],[244,24,209,24],[244,25,209,25,"add"],[244,28,209,28],[244,29,209,29,"getNavigateAction"],[244,46,209,46],[244,47,209,47,"state"],[244,52,209,52],[244,54,209,54,"rootState"],[244,63,209,63],[244,65,209,65,"options"],[244,72,209,72],[244,73,209,73,"event"],[244,78,209,78],[244,80,209,80,"options"],[244,87,209,87],[244,88,209,88,"withAnchor"],[244,98,209,98],[244,100,209,100,"options"],[244,107,209,107],[244,108,209,108,"dangerouslySingular"],[244,127,209,127],[244,128,209,128],[244,129,209,129],[245,2,210,0],[246,2,211,0],[246,11,211,9,"getNavigateAction"],[246,28,211,26,"getNavigateAction"],[246,29,211,27,"actionState"],[246,40,211,38],[246,42,211,40,"navigationState"],[246,57,211,55],[246,59,211,57,"type"],[246,63,211,61],[246,66,211,64],[246,76,211,74],[246,78,211,76,"withAnchor"],[246,88,211,86],[246,90,211,88,"singular"],[246,98,211,96],[246,100,211,98],[247,4,212,4],[248,0,213,0],[249,0,214,0],[250,0,215,0],[251,0,216,0],[252,0,217,0],[253,0,218,0],[254,0,219,0],[255,0,220,0],[256,0,221,0],[257,0,222,0],[258,0,223,0],[259,0,224,0],[260,0,225,0],[261,4,226,4],[261,8,226,8,"actionStateRoute"],[261,24,226,24],[262,4,227,4],[263,4,228,4],[263,11,228,11,"actionState"],[263,22,228,22],[263,26,228,26,"navigationState"],[263,41,228,41],[263,43,228,43],[264,6,229,8],[264,12,229,14,"stateRoute"],[264,22,229,24],[264,25,229,27,"navigationState"],[264,40,229,42],[264,41,229,43,"routes"],[264,47,229,49],[264,48,229,50,"navigationState"],[264,63,229,65],[264,64,229,66,"index"],[264,69,229,71],[264,70,229,72],[265,6,230,8,"actionStateRoute"],[265,22,230,24],[265,25,230,27,"actionState"],[265,36,230,38],[265,37,230,39,"routes"],[265,43,230,45],[265,44,230,46,"actionState"],[265,55,230,57],[265,56,230,58,"routes"],[265,62,230,64],[265,63,230,65,"length"],[265,69,230,71],[265,72,230,74],[265,73,230,75],[265,74,230,76],[266,6,231,8],[266,12,231,14,"childState"],[266,22,231,24],[266,25,231,27,"actionStateRoute"],[266,41,231,43],[266,42,231,44,"state"],[266,47,231,49],[267,6,232,8],[267,12,232,14,"nextNavigationState"],[267,31,232,33],[267,34,232,36,"stateRoute"],[267,44,232,46],[267,45,232,47,"state"],[267,50,232,52],[268,6,233,8],[268,12,233,14,"dynamicName"],[268,23,233,25],[268,26,233,28],[268,27,233,29],[268,28,233,30],[268,30,233,32,"matchers_1"],[268,40,233,42],[268,41,233,43,"matchDynamicName"],[268,57,233,59],[268,59,233,61,"actionStateRoute"],[268,75,233,77],[268,76,233,78,"name"],[268,80,233,82],[268,81,233,83],[269,6,234,8],[269,12,234,14,"didActionAndCurrentStateDiverge"],[269,43,234,45],[269,46,234,48,"actionStateRoute"],[269,62,234,64],[269,63,234,65,"name"],[269,67,234,69],[269,72,234,74,"stateRoute"],[269,82,234,84],[269,83,234,85,"name"],[269,87,234,89],[269,91,235,12],[269,92,235,13,"childState"],[269,102,235,23],[269,106,236,12],[269,107,236,13,"nextNavigationState"],[269,126,236,32],[269,130,237,13,"dynamicName"],[269,141,237,24],[270,6,238,16],[271,6,239,16,"actionStateRoute"],[271,22,239,32],[271,23,239,33,"params"],[271,29,239,39],[271,32,239,42,"dynamicName"],[271,43,239,53],[271,44,239,54,"name"],[271,48,239,58],[271,49,239,59],[271,54,239,64,"stateRoute"],[271,64,239,74],[271,65,239,75,"params"],[271,71,239,81],[271,74,239,84,"dynamicName"],[271,85,239,95],[271,86,239,96,"name"],[271,90,239,100],[271,91,239,102],[272,6,240,8],[272,10,240,12,"didActionAndCurrentStateDiverge"],[272,41,240,43],[272,43,240,45],[273,8,241,12],[274,6,242,8],[275,6,243,8,"actionState"],[275,17,243,19],[275,20,243,22,"childState"],[275,30,243,32],[276,6,244,8,"navigationState"],[276,21,244,23],[276,24,244,26,"nextNavigationState"],[276,43,244,45],[277,4,245,4],[278,4,246,4],[279,0,247,0],[280,0,248,0],[281,0,249,0],[282,4,250,4],[282,10,250,10,"rootPayload"],[282,21,250,21],[282,24,250,24],[283,6,250,26,"params"],[283,12,250,32],[283,14,250,34],[283,15,250,35],[284,4,250,37],[284,5,250,38],[285,4,251,4],[285,8,251,8,"payload"],[285,15,251,15],[285,18,251,18,"rootPayload"],[285,29,251,29],[286,4,252,4],[286,8,252,8,"params"],[286,14,252,14],[286,17,252,17,"payload"],[286,24,252,24],[286,25,252,25,"params"],[286,31,252,31],[287,4,253,4],[288,4,254,4],[288,11,254,11,"actionStateRoute"],[288,27,254,27],[288,29,254,29],[289,6,255,8,"Object"],[289,12,255,14],[289,13,255,15,"assign"],[289,19,255,21],[289,20,255,22,"params"],[289,26,255,28],[289,28,255,30],[290,8,255,32],[290,11,255,35,"payload"],[290,18,255,42],[290,19,255,43,"params"],[290,25,255,49],[291,8,255,51],[291,11,255,54,"actionStateRoute"],[291,27,255,70],[291,28,255,71,"params"],[292,6,255,78],[292,7,255,79],[292,8,255,80],[293,6,256,8],[294,6,257,8,"payload"],[294,13,257,15],[294,14,257,16,"screen"],[294,20,257,22],[294,23,257,25,"actionStateRoute"],[294,39,257,41],[294,40,257,42,"name"],[294,44,257,46],[295,6,258,8],[296,6,259,8,"payload"],[296,13,259,15],[296,14,259,16,"params"],[296,20,259,22],[296,23,259,25],[297,8,259,27],[297,11,259,30,"params"],[298,6,259,37],[298,7,259,38],[299,6,260,8],[300,6,261,8],[300,13,261,15,"payload"],[300,20,261,22],[300,21,261,23,"params"],[300,27,261,29],[300,28,261,30],[300,36,261,38],[300,37,261,39],[301,6,262,8],[302,6,263,8],[303,6,264,8,"payload"],[303,13,264,15],[303,16,264,18,"payload"],[303,23,264,25],[303,24,264,26,"params"],[303,30,264,32],[304,6,265,8,"params"],[304,12,265,14],[304,15,265,17,"payload"],[304,22,265,24],[305,6,266,8,"actionStateRoute"],[305,22,266,24],[305,25,266,27,"actionStateRoute"],[305,41,266,43],[305,42,266,44,"state"],[305,47,266,49],[305,49,266,51,"routes"],[305,55,266,57],[305,56,266,58,"actionStateRoute"],[305,72,266,74],[305,73,266,75,"state"],[305,78,266,80],[305,80,266,82,"routes"],[305,86,266,88],[305,87,266,89,"length"],[305,93,266,95],[305,96,266,98],[305,97,266,99],[305,98,266,100],[306,4,267,4],[307,4,268,4],[307,8,268,8,"type"],[307,12,268,12],[307,17,268,17],[307,23,268,23],[307,27,268,27,"navigationState"],[307,42,268,42],[307,43,268,43,"type"],[307,47,268,47],[307,52,268,52],[307,59,268,59],[307,61,268,61],[308,6,269,8,"type"],[308,10,269,12],[308,13,269,15],[308,23,269,25],[309,4,270,4],[309,5,270,5],[309,11,271,9],[309,15,271,13,"navigationState"],[309,30,271,28],[309,31,271,29,"type"],[309,35,271,33],[309,40,271,38],[309,50,271,48],[309,52,271,50],[310,6,272,8,"type"],[310,10,272,12],[310,13,272,15],[310,22,272,24],[311,4,273,4],[311,5,273,5],[311,11,274,9],[311,15,274,13,"type"],[311,19,274,17],[311,24,274,22],[311,33,274,31],[311,37,274,35,"navigationState"],[311,52,274,50],[311,53,274,51,"type"],[311,57,274,55],[311,62,274,60],[311,70,274,68],[311,72,274,70],[312,6,275,8,"type"],[312,10,275,12],[312,13,275,15],[312,22,275,24],[313,4,276,4],[314,4,277,4],[314,8,277,8,"withAnchor"],[314,18,277,18],[314,23,277,23,"undefined"],[314,32,277,32],[314,34,277,34],[315,6,278,8],[315,10,278,12,"rootPayload"],[315,21,278,23],[315,22,278,24,"params"],[315,28,278,30],[315,29,278,31,"initial"],[315,36,278,38],[315,38,278,40],[316,8,279,12],[316,12,279,16,"process"],[316,19,279,23],[316,20,279,24,"env"],[316,23,279,27],[316,24,279,28,"NODE_ENV"],[316,32,279,36],[316,37,279,41],[316,49,279,53],[316,51,279,55],[317,10,280,16,"console"],[317,17,280,23],[317,18,280,24,"warn"],[317,22,280,28],[317,23,280,29],[317,97,280,103],[317,98,280,104],[318,8,281,12],[319,6,282,8],[320,6,283,8],[321,0,284,0],[322,0,285,0],[323,0,286,0],[324,0,287,0],[325,0,288,0],[326,0,289,0],[327,0,290,0],[328,0,291,0],[329,6,292,8,"rootPayload"],[329,17,292,19],[329,18,292,20,"params"],[329,24,292,26],[329,25,292,27,"initial"],[329,32,292,34],[329,35,292,37],[329,36,292,38,"withAnchor"],[329,46,292,48],[330,4,293,4],[331,4,294,4],[331,11,294,11],[332,6,295,8,"type"],[332,10,295,12],[333,6,296,8,"target"],[333,12,296,14],[333,14,296,16,"navigationState"],[333,29,296,31],[333,30,296,32,"key"],[333,33,296,35],[334,6,297,8,"payload"],[334,13,297,15],[334,15,297,17],[335,8,298,12],[336,8,299,12,"name"],[336,12,299,16],[336,14,299,18,"rootPayload"],[336,25,299,29],[336,26,299,30,"screen"],[336,32,299,36],[337,8,300,12,"params"],[337,14,300,18],[337,16,300,20,"rootPayload"],[337,27,300,31],[337,28,300,32,"params"],[337,34,300,38],[338,8,301,12,"singular"],[339,6,302,8],[340,4,303,4],[340,5,303,5],[341,2,304,0],[342,0,304,1],[342,3]],"functionMap":{"names":["<global>","<anonymous>","desc.get","ownKeys","assertIsReady","exports.routingQueue.subscribe","exports.routingQueue.snapshot","exports.routingQueue.add","exports.routingQueue.run","navigate","reload","prefetch","push","dismiss","dismissTo","replace","dismissAll","goBack","canGoBack","canDismiss","setParams","linkTo","getNavigateAction"],"mappings":"AAA;0ECC;sCCI,2BD;CDG,KC;CDG;gFCC;CDE,IC;CDE;mDCC;kBEC;gDFC;SEI;KFE;CDQ;AIyB;CJI;IKI;eJE;SIE;KLC;IMC;KNE;IOC;KPS;IQC;KRS;ASE;CTE;AUC;CVG;AWC;CXE;AYC;CZE;AaC;CbK;AcC;CdE;AeC;CfE;AgBC;ChBK;AiBC;CjBM;AkBC;ClBa;AmBC;CnBe;AoBC;CpBM;AqBC;CrBsC;AsBC;CtB6F"}},"type":"js/module"}]} |