Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/95/0d3e5d285cf3bc093c92e7f4d64cd808a3dc4c7cf8fa71e2799db4e9f96d529080f0cc
T
2025-11-08 14:39:45 +00:00

1 line
24 KiB
Plaintext

{"dependencies":[{"name":"expo-modules-core","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":109,"index":109}}],"key":"fU8WLIPqoAGygnPbZ/QJiQQfXEY=","exportNames":["*"],"imports":1}},{"name":"./ExponentImagePicker","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":110},"end":{"line":2,"column":56,"index":166}}],"key":"aWA3B/bVMwMNLwWpHVcejd56ZPU=","exportNames":["*"],"imports":1}},{"name":"./utils","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":167},"end":{"line":3,"column":47,"index":214}}],"key":"fIqjJ6Rx8c7Khc/wm9kX7hQXC5I=","exportNames":["*"],"imports":1}},{"name":"./ImagePicker.types","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":159,"column":0,"index":8316},"end":{"line":159,"column":36,"index":8352}}],"key":"/jNv85Cqy9zQGnbpL3adxFcCtH4=","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 exports.getCameraPermissionsAsync = getCameraPermissionsAsync;\n exports.getMediaLibraryPermissionsAsync = getMediaLibraryPermissionsAsync;\n exports.requestCameraPermissionsAsync = requestCameraPermissionsAsync;\n exports.requestMediaLibraryPermissionsAsync = requestMediaLibraryPermissionsAsync;\n Object.defineProperty(exports, \"useMediaLibraryPermissions\", {\n enumerable: true,\n get: function () {\n return useMediaLibraryPermissions;\n }\n });\n Object.defineProperty(exports, \"useCameraPermissions\", {\n enumerable: true,\n get: function () {\n return useCameraPermissions;\n }\n });\n exports.getPendingResultAsync = getPendingResultAsync;\n exports.launchCameraAsync = launchCameraAsync;\n exports.launchImageLibraryAsync = launchImageLibraryAsync;\n Object.defineProperty(exports, \"PermissionStatus\", {\n enumerable: true,\n get: function () {\n return _expoModulesCore.PermissionStatus;\n }\n });\n var _expoModulesCore = require(_dependencyMap[0], \"expo-modules-core\");\n var _ExponentImagePicker = require(_dependencyMap[1], \"./ExponentImagePicker\");\n var ExponentImagePicker = _interopDefault(_ExponentImagePicker);\n var _utils = require(_dependencyMap[2], \"./utils\");\n var _ImagePickerTypes = require(_dependencyMap[3], \"./ImagePicker.types\");\n Object.keys(_ImagePickerTypes).forEach(function (k) {\n if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) {\n Object.defineProperty(exports, k, {\n enumerable: true,\n get: function () {\n return _ImagePickerTypes[k];\n }\n });\n }\n });\n function validateOptions(options) {\n const {\n aspect,\n quality,\n videoMaxDuration\n } = options;\n if (aspect != null) {\n const [x, y] = aspect;\n if (x <= 0 || y <= 0) {\n throw new _expoModulesCore.CodedError('ERR_INVALID_ARGUMENT', `Invalid aspect ratio values ${x}:${y}. Provide positive numbers.`);\n }\n }\n if (quality && (quality < 0 || quality > 1)) {\n throw new _expoModulesCore.CodedError('ERR_INVALID_ARGUMENT', `Invalid 'quality' value ${quality}. Provide a value between 0 and 1.`);\n }\n if (videoMaxDuration && videoMaxDuration < 0) {\n throw new _expoModulesCore.CodedError('ERR_INVALID_ARGUMENT', `Invalid 'videoMaxDuration' value ${videoMaxDuration}. Provide a non-negative number.`);\n }\n return options;\n }\n // @needsAudit\n /**\n * Checks user's permissions for accessing camera.\n * @return A promise that fulfills with an object of type [CameraPermissionResponse](#camerapermissionresponse).\n */\n async function getCameraPermissionsAsync() {\n return ExponentImagePicker.default.getCameraPermissionsAsync();\n }\n // @needsAudit\n /**\n * Checks user's permissions for accessing photos.\n * @param writeOnly Whether to request write or read and write permissions. Defaults to `false`\n * @return A promise that fulfills with an object of type [MediaLibraryPermissionResponse](#medialibrarypermissionresponse).\n */\n async function getMediaLibraryPermissionsAsync(writeOnly = false) {\n return ExponentImagePicker.default.getMediaLibraryPermissionsAsync(writeOnly);\n }\n // @needsAudit\n /**\n * Asks the user to grant permissions for accessing camera. This does nothing on web because the\n * browser camera is not used.\n * @return A promise that fulfills with an object of type [CameraPermissionResponse](#camerarollpermissionresponse).\n */\n async function requestCameraPermissionsAsync() {\n return ExponentImagePicker.default.requestCameraPermissionsAsync();\n }\n // @needsAudit\n /**\n * Asks the user to grant permissions for accessing user's photo. This method does nothing on web.\n * @param writeOnly Whether to request write or read and write permissions. Defaults to `false`\n * @return A promise that fulfills with an object of type [MediaLibraryPermissionResponse](#medialibrarypermissionresponse).\n */\n async function requestMediaLibraryPermissionsAsync(writeOnly = false) {\n const imagePickerMethod = ExponentImagePicker.default.requestMediaLibraryPermissionsAsync;\n return imagePickerMethod(writeOnly);\n }\n // @needsAudit\n /**\n * Check or request permissions to access the media library.\n * This uses both `requestMediaLibraryPermissionsAsync` and `getMediaLibraryPermissionsAsync` to interact with the permissions.\n *\n * @example\n * ```ts\n * const [status, requestPermission] = ImagePicker.useMediaLibraryPermissions();\n * ```\n */\n const useMediaLibraryPermissions = (0, _expoModulesCore.createPermissionHook)({\n // TODO(cedric): permission requesters should have an options param or a different requester\n getMethod: options => getMediaLibraryPermissionsAsync(options?.writeOnly),\n requestMethod: options => requestMediaLibraryPermissionsAsync(options?.writeOnly)\n });\n // @needsAudit\n /**\n * Check or request permissions to access the camera.\n * This uses both `requestCameraPermissionsAsync` and `getCameraPermissionsAsync` to interact with the permissions.\n *\n * @example\n * ```ts\n * const [status, requestPermission] = ImagePicker.useCameraPermissions();\n * ```\n */\n const useCameraPermissions = (0, _expoModulesCore.createPermissionHook)({\n getMethod: getCameraPermissionsAsync,\n requestMethod: requestCameraPermissionsAsync\n });\n // @needsAudit\n /**\n * Android system sometimes kills the `MainActivity` after the `ImagePicker` finishes. When this\n * happens, we lose the data selected using the `ImagePicker`. However, you can retrieve the lost\n * data by calling `getPendingResultAsync`. You can test this functionality by turning on\n * `Don't keep activities` in the developer options.\n * @return\n * - **On Android:** a promise that resolves to an object of exactly same type as in\n * `ImagePicker.launchImageLibraryAsync` or `ImagePicker.launchCameraAsync` if the `ImagePicker`\n * finished successfully. Otherwise, an object of type [`ImagePickerErrorResult`](#imagepickerimagepickererrorresult).\n * - **On other platforms:** `null`\n */\n async function getPendingResultAsync() {\n if (ExponentImagePicker.default.getPendingResultAsync) {\n return ExponentImagePicker.default.getPendingResultAsync();\n }\n return null;\n }\n // @needsAudit\n /**\n * Display the system UI for taking a photo with the camera. Requires `Permissions.CAMERA`.\n * On Android and iOS 10 `Permissions.CAMERA_ROLL` is also required. On mobile web, this must be\n * called immediately in a user interaction like a button press, otherwise the browser will block\n * the request without a warning.\n * > **Note:** Make sure that you handle `MainActivity` destruction on **Android**. See [ImagePicker.getPendingResultAsync](#imagepickergetpendingresultasync).\n * > **Notes for Web:** The system UI can only be shown after user activation (e.g. a `Button` press).\n * Therefore, calling `launchCameraAsync` in `componentDidMount`, for example, will **not** work as\n * intended. The `cancelled` event will not be returned in the browser due to platform restrictions\n * and inconsistencies across browsers.\n * @param options An `ImagePickerOptions` object.\n * @return A promise that resolves to an object with `canceled` and `assets` fields.\n * When the user canceled the action the `assets` is always `null`, otherwise it's an array of\n * the selected media assets which have a form of [`ImagePickerAsset`](#imagepickerasset).\n */\n async function launchCameraAsync(options = {}) {\n if (!ExponentImagePicker.default.launchCameraAsync) {\n throw new _expoModulesCore.UnavailabilityError('ImagePicker', 'launchCameraAsync');\n }\n const mappedOptions = (0, _utils.mapDeprecatedOptions)(options);\n return await ExponentImagePicker.default.launchCameraAsync(validateOptions(mappedOptions));\n }\n // @needsAudit\n /**\n * Display the system UI for choosing an image or a video from the phone's library.\n * Requires `Permissions.MEDIA_LIBRARY` on iOS 10 only. On mobile web, this must be called\n * immediately in a user interaction like a button press, otherwise the browser will block the\n * request without a warning.\n *\n * **Animated GIFs support:** On Android, if the selected image is an animated GIF, the result image will be an\n * animated GIF too if and only if `quality` is explicitly set to `1.0` and `allowsEditing` is set to `false`.\n * Otherwise compression and/or cropper will pick the first frame of the GIF and return it as the\n * result (on Android the result will be a PNG). On iOS, both quality and cropping are supported.\n *\n * > **Notes for Web:** The system UI can only be shown after user activation (e.g. a `Button` press).\n * Therefore, calling `launchImageLibraryAsync` in `componentDidMount`, for example, will **not**\n * work as intended. The `cancelled` event will not be returned in the browser due to platform\n * restrictions and inconsistencies across browsers.\n * @param options An object extended by [`ImagePickerOptions`](#imagepickeroptions).\n * @return A promise that resolves to an object with `canceled` and `assets` fields.\n * When the user canceled the action the `assets` is always `null`, otherwise it's an array of\n * the selected media assets which have a form of [`ImagePickerAsset`](#imagepickerasset).\n */\n async function launchImageLibraryAsync(options = {}) {\n const mappedOptions = (0, _utils.mapDeprecatedOptions)(options);\n if (!ExponentImagePicker.default.launchImageLibraryAsync) {\n throw new _expoModulesCore.UnavailabilityError('ImagePicker', 'launchImageLibraryAsync');\n }\n if (mappedOptions?.allowsEditing && mappedOptions.allowsMultipleSelection) {\n console.warn('[expo-image-picker] `allowsEditing` is not supported when `allowsMultipleSelection` is enabled and will be ignored.' + \"Disable either 'allowsEditing' or 'allowsMultipleSelection' in 'launchImageLibraryAsync' \" + 'to fix this warning.');\n }\n return await ExponentImagePicker.default.launchImageLibraryAsync(mappedOptions);\n }\n});","lineCount":209,"map":[[12,2,25,0,"exports"],[12,9,25,0],[12,10,25,0,"getCameraPermissionsAsync"],[12,35,25,0],[12,38,25,0,"getCameraPermissionsAsync"],[12,63,25,0],[13,2,34,0,"exports"],[13,9,34,0],[13,10,34,0,"getMediaLibraryPermissionsAsync"],[13,41,34,0],[13,44,34,0,"getMediaLibraryPermissionsAsync"],[13,75,34,0],[14,2,43,0,"exports"],[14,9,43,0],[14,10,43,0,"requestCameraPermissionsAsync"],[14,39,43,0],[14,42,43,0,"requestCameraPermissionsAsync"],[14,71,43,0],[15,2,52,0,"exports"],[15,9,52,0],[15,10,52,0,"requestMediaLibraryPermissionsAsync"],[15,45,52,0],[15,48,52,0,"requestMediaLibraryPermissionsAsync"],[15,83,52,0],[16,2,66,0,"Object"],[16,8,66,0],[16,9,66,0,"defineProperty"],[16,23,66,0],[16,24,66,0,"exports"],[16,31,66,0],[17,4,66,0,"enumerable"],[17,14,66,0],[18,4,66,0,"get"],[18,7,66,0],[18,18,66,0,"get"],[18,19,66,0],[19,6,66,0],[19,13,66,0,"useMediaLibraryPermissions"],[19,39,66,0],[20,4,66,0],[21,2,66,0],[22,2,81,0,"Object"],[22,8,81,0],[22,9,81,0,"defineProperty"],[22,23,81,0],[22,24,81,0,"exports"],[22,31,81,0],[23,4,81,0,"enumerable"],[23,14,81,0],[24,4,81,0,"get"],[24,7,81,0],[24,18,81,0,"get"],[24,19,81,0],[25,6,81,0],[25,13,81,0,"useCameraPermissions"],[25,33,81,0],[26,4,81,0],[27,2,81,0],[28,2,97,0,"exports"],[28,9,97,0],[28,10,97,0,"getPendingResultAsync"],[28,31,97,0],[28,34,97,0,"getPendingResultAsync"],[28,55,97,0],[29,2,119,0,"exports"],[29,9,119,0],[29,10,119,0,"launchCameraAsync"],[29,27,119,0],[29,30,119,0,"launchCameraAsync"],[29,47,119,0],[30,2,147,0,"exports"],[30,9,147,0],[30,10,147,0,"launchImageLibraryAsync"],[30,33,147,0],[30,36,147,0,"launchImageLibraryAsync"],[30,59,147,0],[31,2,160,0,"Object"],[31,8,160,0],[31,9,160,0,"defineProperty"],[31,23,160,0],[31,24,160,0,"exports"],[31,31,160,0],[32,4,160,0,"enumerable"],[32,14,160,0],[33,4,160,0,"get"],[33,7,160,0],[33,18,160,0,"get"],[33,19,160,0],[34,6,160,0],[34,13,160,9,"PermissionStatus"],[34,29,160,25],[34,30,160,25,"PermissionStatus"],[34,46,160,25],[35,4,160,25],[36,2,160,25],[37,2,1,0],[37,6,1,0,"_expoModulesCore"],[37,22,1,0],[37,25,1,0,"require"],[37,32,1,0],[37,33,1,0,"_dependencyMap"],[37,47,1,0],[38,2,2,0],[38,6,2,0,"_ExponentImagePicker"],[38,26,2,0],[38,29,2,0,"require"],[38,36,2,0],[38,37,2,0,"_dependencyMap"],[38,51,2,0],[39,2,2,0],[39,6,2,0,"ExponentImagePicker"],[39,25,2,0],[39,28,2,0,"_interopDefault"],[39,43,2,0],[39,44,2,0,"_ExponentImagePicker"],[39,64,2,0],[40,2,3,0],[40,6,3,0,"_utils"],[40,12,3,0],[40,15,3,0,"require"],[40,22,3,0],[40,23,3,0,"_dependencyMap"],[40,37,3,0],[41,2,159,0],[41,6,159,0,"_ImagePickerTypes"],[41,23,159,0],[41,26,159,0,"require"],[41,33,159,0],[41,34,159,0,"_dependencyMap"],[41,48,159,0],[42,2,159,0,"Object"],[42,8,159,0],[42,9,159,0,"keys"],[42,13,159,0],[42,14,159,0,"_ImagePickerTypes"],[42,31,159,0],[42,33,159,0,"forEach"],[42,40,159,0],[42,51,159,0,"k"],[42,52,159,0],[43,4,159,0],[43,8,159,0,"k"],[43,9,159,0],[43,28,159,0,"Object"],[43,34,159,0],[43,35,159,0,"prototype"],[43,44,159,0],[43,45,159,0,"hasOwnProperty"],[43,59,159,0],[43,60,159,0,"call"],[43,64,159,0],[43,65,159,0,"exports"],[43,72,159,0],[43,74,159,0,"k"],[43,75,159,0],[44,6,159,0,"Object"],[44,12,159,0],[44,13,159,0,"defineProperty"],[44,27,159,0],[44,28,159,0,"exports"],[44,35,159,0],[44,37,159,0,"k"],[44,38,159,0],[45,8,159,0,"enumerable"],[45,18,159,0],[46,8,159,0,"get"],[46,11,159,0],[46,22,159,0,"get"],[46,23,159,0],[47,10,159,0],[47,17,159,0,"_ImagePickerTypes"],[47,34,159,0],[47,35,159,0,"k"],[47,36,159,0],[48,8,159,0],[49,6,159,0],[50,4,159,0],[51,2,159,0],[52,2,4,0],[52,11,4,9,"validateOptions"],[52,26,4,24,"validateOptions"],[52,27,4,25,"options"],[52,34,4,32],[52,36,4,34],[53,4,5,4],[53,10,5,10],[54,6,5,12,"aspect"],[54,12,5,18],[55,6,5,20,"quality"],[55,13,5,27],[56,6,5,29,"videoMaxDuration"],[57,4,5,46],[57,5,5,47],[57,8,5,50,"options"],[57,15,5,57],[58,4,6,4],[58,8,6,8,"aspect"],[58,14,6,14],[58,18,6,18],[58,22,6,22],[58,24,6,24],[59,6,7,8],[59,12,7,14],[59,13,7,15,"x"],[59,14,7,16],[59,16,7,18,"y"],[59,17,7,19],[59,18,7,20],[59,21,7,23,"aspect"],[59,27,7,29],[60,6,8,8],[60,10,8,12,"x"],[60,11,8,13],[60,15,8,17],[60,16,8,18],[60,20,8,22,"y"],[60,21,8,23],[60,25,8,27],[60,26,8,28],[60,28,8,30],[61,8,9,12],[61,14,9,18],[61,18,9,22,"CodedError"],[61,34,9,32],[61,35,9,32,"CodedError"],[61,45,9,32],[61,46,9,33],[61,68,9,55],[61,70,9,57],[61,101,9,88,"x"],[61,102,9,89],[61,106,9,93,"y"],[61,107,9,94],[61,136,9,123],[61,137,9,124],[62,6,10,8],[63,4,11,4],[64,4,12,4],[64,8,12,8,"quality"],[64,15,12,15],[64,20,12,20,"quality"],[64,27,12,27],[64,30,12,30],[64,31,12,31],[64,35,12,35,"quality"],[64,42,12,42],[64,45,12,45],[64,46,12,46],[64,47,12,47],[64,49,12,49],[65,6,13,8],[65,12,13,14],[65,16,13,18,"CodedError"],[65,32,13,28],[65,33,13,28,"CodedError"],[65,43,13,28],[65,44,13,29],[65,66,13,51],[65,68,13,53],[65,95,13,80,"quality"],[65,102,13,87],[65,138,13,123],[65,139,13,124],[66,4,14,4],[67,4,15,4],[67,8,15,8,"videoMaxDuration"],[67,24,15,24],[67,28,15,28,"videoMaxDuration"],[67,44,15,44],[67,47,15,47],[67,48,15,48],[67,50,15,50],[68,6,16,8],[68,12,16,14],[68,16,16,18,"CodedError"],[68,32,16,28],[68,33,16,28,"CodedError"],[68,43,16,28],[68,44,16,29],[68,66,16,51],[68,68,16,53],[68,104,16,89,"videoMaxDuration"],[68,120,16,105],[68,154,16,139],[68,155,16,140],[69,4,17,4],[70,4,18,4],[70,11,18,11,"options"],[70,18,18,18],[71,2,19,0],[72,2,20,0],[73,2,21,0],[74,0,22,0],[75,0,23,0],[76,0,24,0],[77,2,25,7],[77,17,25,22,"getCameraPermissionsAsync"],[77,42,25,47,"getCameraPermissionsAsync"],[77,43,25,47],[77,45,25,50],[78,4,26,4],[78,11,26,11,"ExponentImagePicker"],[78,30,26,30],[78,31,26,30,"default"],[78,38,26,30],[78,39,26,31,"getCameraPermissionsAsync"],[78,64,26,56],[78,65,26,57],[78,66,26,58],[79,2,27,0],[80,2,28,0],[81,2,29,0],[82,0,30,0],[83,0,31,0],[84,0,32,0],[85,0,33,0],[86,2,34,7],[86,17,34,22,"getMediaLibraryPermissionsAsync"],[86,48,34,53,"getMediaLibraryPermissionsAsync"],[86,49,34,54,"writeOnly"],[86,58,34,63],[86,61,34,66],[86,66,34,71],[86,68,34,73],[87,4,35,4],[87,11,35,11,"ExponentImagePicker"],[87,30,35,30],[87,31,35,30,"default"],[87,38,35,30],[87,39,35,31,"getMediaLibraryPermissionsAsync"],[87,70,35,62],[87,71,35,63,"writeOnly"],[87,80,35,72],[87,81,35,73],[88,2,36,0],[89,2,37,0],[90,2,38,0],[91,0,39,0],[92,0,40,0],[93,0,41,0],[94,0,42,0],[95,2,43,7],[95,17,43,22,"requestCameraPermissionsAsync"],[95,46,43,51,"requestCameraPermissionsAsync"],[95,47,43,51],[95,49,43,54],[96,4,44,4],[96,11,44,11,"ExponentImagePicker"],[96,30,44,30],[96,31,44,30,"default"],[96,38,44,30],[96,39,44,31,"requestCameraPermissionsAsync"],[96,68,44,60],[96,69,44,61],[96,70,44,62],[97,2,45,0],[98,2,46,0],[99,2,47,0],[100,0,48,0],[101,0,49,0],[102,0,50,0],[103,0,51,0],[104,2,52,7],[104,17,52,22,"requestMediaLibraryPermissionsAsync"],[104,52,52,57,"requestMediaLibraryPermissionsAsync"],[104,53,52,58,"writeOnly"],[104,62,52,67],[104,65,52,70],[104,70,52,75],[104,72,52,77],[105,4,53,4],[105,10,53,10,"imagePickerMethod"],[105,27,53,27],[105,30,53,30,"ExponentImagePicker"],[105,49,53,49],[105,50,53,49,"default"],[105,57,53,49],[105,58,53,50,"requestMediaLibraryPermissionsAsync"],[105,93,53,85],[106,4,54,4],[106,11,54,11,"imagePickerMethod"],[106,28,54,28],[106,29,54,29,"writeOnly"],[106,38,54,38],[106,39,54,39],[107,2,55,0],[108,2,56,0],[109,2,57,0],[110,0,58,0],[111,0,59,0],[112,0,60,0],[113,0,61,0],[114,0,62,0],[115,0,63,0],[116,0,64,0],[117,0,65,0],[118,2,66,7],[118,8,66,13,"useMediaLibraryPermissions"],[118,34,66,39],[118,37,66,42],[118,41,66,42,"createPermissionHook"],[118,57,66,62],[118,58,66,62,"createPermissionHook"],[118,78,66,62],[118,80,66,63],[119,4,67,4],[120,4,68,4,"getMethod"],[120,13,68,13],[120,15,68,16,"options"],[120,22,68,23],[120,26,68,28,"getMediaLibraryPermissionsAsync"],[120,57,68,59],[120,58,68,60,"options"],[120,65,68,67],[120,67,68,69,"writeOnly"],[120,76,68,78],[120,77,68,79],[121,4,69,4,"requestMethod"],[121,17,69,17],[121,19,69,20,"options"],[121,26,69,27],[121,30,69,32,"requestMediaLibraryPermissionsAsync"],[121,65,69,67],[121,66,69,68,"options"],[121,73,69,75],[121,75,69,77,"writeOnly"],[121,84,69,86],[122,2,70,0],[122,3,70,1],[122,4,70,2],[123,2,71,0],[124,2,72,0],[125,0,73,0],[126,0,74,0],[127,0,75,0],[128,0,76,0],[129,0,77,0],[130,0,78,0],[131,0,79,0],[132,0,80,0],[133,2,81,7],[133,8,81,13,"useCameraPermissions"],[133,28,81,33],[133,31,81,36],[133,35,81,36,"createPermissionHook"],[133,51,81,56],[133,52,81,56,"createPermissionHook"],[133,72,81,56],[133,74,81,57],[134,4,82,4,"getMethod"],[134,13,82,13],[134,15,82,15,"getCameraPermissionsAsync"],[134,40,82,40],[135,4,83,4,"requestMethod"],[135,17,83,17],[135,19,83,19,"requestCameraPermissionsAsync"],[136,2,84,0],[136,3,84,1],[136,4,84,2],[137,2,85,0],[138,2,86,0],[139,0,87,0],[140,0,88,0],[141,0,89,0],[142,0,90,0],[143,0,91,0],[144,0,92,0],[145,0,93,0],[146,0,94,0],[147,0,95,0],[148,0,96,0],[149,2,97,7],[149,17,97,22,"getPendingResultAsync"],[149,38,97,43,"getPendingResultAsync"],[149,39,97,43],[149,41,97,46],[150,4,98,4],[150,8,98,8,"ExponentImagePicker"],[150,27,98,27],[150,28,98,27,"default"],[150,35,98,27],[150,36,98,28,"getPendingResultAsync"],[150,57,98,49],[150,59,98,51],[151,6,99,8],[151,13,99,15,"ExponentImagePicker"],[151,32,99,34],[151,33,99,34,"default"],[151,40,99,34],[151,41,99,35,"getPendingResultAsync"],[151,62,99,56],[151,63,99,57],[151,64,99,58],[152,4,100,4],[153,4,101,4],[153,11,101,11],[153,15,101,15],[154,2,102,0],[155,2,103,0],[156,2,104,0],[157,0,105,0],[158,0,106,0],[159,0,107,0],[160,0,108,0],[161,0,109,0],[162,0,110,0],[163,0,111,0],[164,0,112,0],[165,0,113,0],[166,0,114,0],[167,0,115,0],[168,0,116,0],[169,0,117,0],[170,0,118,0],[171,2,119,7],[171,17,119,22,"launchCameraAsync"],[171,34,119,39,"launchCameraAsync"],[171,35,119,40,"options"],[171,42,119,47],[171,45,119,50],[171,46,119,51],[171,47,119,52],[171,49,119,54],[172,4,120,4],[172,8,120,8],[172,9,120,9,"ExponentImagePicker"],[172,28,120,28],[172,29,120,28,"default"],[172,36,120,28],[172,37,120,29,"launchCameraAsync"],[172,54,120,46],[172,56,120,48],[173,6,121,8],[173,12,121,14],[173,16,121,18,"UnavailabilityError"],[173,32,121,37],[173,33,121,37,"UnavailabilityError"],[173,52,121,37],[173,53,121,38],[173,66,121,51],[173,68,121,53],[173,87,121,72],[173,88,121,73],[174,4,122,4],[175,4,123,4],[175,10,123,10,"mappedOptions"],[175,23,123,23],[175,26,123,26],[175,30,123,26,"mapDeprecatedOptions"],[175,36,123,46],[175,37,123,46,"mapDeprecatedOptions"],[175,57,123,46],[175,59,123,47,"options"],[175,66,123,54],[175,67,123,55],[176,4,124,4],[176,11,124,11],[176,17,124,17,"ExponentImagePicker"],[176,36,124,36],[176,37,124,36,"default"],[176,44,124,36],[176,45,124,37,"launchCameraAsync"],[176,62,124,54],[176,63,124,55,"validateOptions"],[176,78,124,70],[176,79,124,71,"mappedOptions"],[176,92,124,84],[176,93,124,85],[176,94,124,86],[177,2,125,0],[178,2,126,0],[179,2,127,0],[180,0,128,0],[181,0,129,0],[182,0,130,0],[183,0,131,0],[184,0,132,0],[185,0,133,0],[186,0,134,0],[187,0,135,0],[188,0,136,0],[189,0,137,0],[190,0,138,0],[191,0,139,0],[192,0,140,0],[193,0,141,0],[194,0,142,0],[195,0,143,0],[196,0,144,0],[197,0,145,0],[198,0,146,0],[199,2,147,7],[199,17,147,22,"launchImageLibraryAsync"],[199,40,147,45,"launchImageLibraryAsync"],[199,41,147,46,"options"],[199,48,147,53],[199,51,147,56],[199,52,147,57],[199,53,147,58],[199,55,147,60],[200,4,148,4],[200,10,148,10,"mappedOptions"],[200,23,148,23],[200,26,148,26],[200,30,148,26,"mapDeprecatedOptions"],[200,36,148,46],[200,37,148,46,"mapDeprecatedOptions"],[200,57,148,46],[200,59,148,47,"options"],[200,66,148,54],[200,67,148,55],[201,4,149,4],[201,8,149,8],[201,9,149,9,"ExponentImagePicker"],[201,28,149,28],[201,29,149,28,"default"],[201,36,149,28],[201,37,149,29,"launchImageLibraryAsync"],[201,60,149,52],[201,62,149,54],[202,6,150,8],[202,12,150,14],[202,16,150,18,"UnavailabilityError"],[202,32,150,37],[202,33,150,37,"UnavailabilityError"],[202,52,150,37],[202,53,150,38],[202,66,150,51],[202,68,150,53],[202,93,150,78],[202,94,150,79],[203,4,151,4],[204,4,152,4],[204,8,152,8,"mappedOptions"],[204,21,152,21],[204,23,152,23,"allowsEditing"],[204,36,152,36],[204,40,152,40,"mappedOptions"],[204,53,152,53],[204,54,152,54,"allowsMultipleSelection"],[204,77,152,77],[204,79,152,79],[205,6,153,8,"console"],[205,13,153,15],[205,14,153,16,"warn"],[205,18,153,20],[205,19,153,21],[205,136,153,138],[205,139,154,12],[205,230,154,103],[205,233,155,12],[205,255,155,34],[205,256,155,35],[206,4,156,4],[207,4,157,4],[207,11,157,11],[207,17,157,17,"ExponentImagePicker"],[207,36,157,36],[207,37,157,36,"default"],[207,44,157,36],[207,45,157,37,"launchImageLibraryAsync"],[207,68,157,60],[207,69,157,61,"mappedOptions"],[207,82,157,74],[207,83,157,75],[208,2,158,0],[209,0,158,1],[209,3]],"functionMap":{"names":["<global>","validateOptions","getCameraPermissionsAsync","getMediaLibraryPermissionsAsync","requestCameraPermissionsAsync","requestMediaLibraryPermissionsAsync","createPermissionHook$argument_0.getMethod","createPermissionHook$argument_0.requestMethod","getPendingResultAsync","launchCameraAsync","launchImageLibraryAsync"],"mappings":"AAA;ACG;CDe;OEM;CFE;OGO;CHE;OIO;CJE;OKO;CLG;eMa,gEN;mBOC,oEP;OQ4B;CRK;OSiB;CTM;OUsB;CVW"},"hasCjsExports":false},"type":"js/module"}]}