{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":51,"index":51}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":52},"end":{"line":11,"column":22,"index":193}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"@expo/vector-icons","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":194},"end":{"line":12,"column":46,"index":240}}],"key":"ow7vkrqkIckRjlSi/+MhMmRYtUE=","exportNames":["*"],"imports":1}},{"name":"react-native-qrcode-svg","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":241},"end":{"line":13,"column":45,"index":286}}],"key":"hoyYC/72wI3ym3vQVHGM/Nfx4bI=","exportNames":["*"],"imports":1}},{"name":"../../constants/colors","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":287},"end":{"line":14,"column":44,"index":331}}],"key":"fGrGUPNMLmLukL54XEqv2tSlgH0=","exportNames":["*"],"imports":1}},{"name":"../../constants/theme","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":332},"end":{"line":15,"column":82,"index":414}}],"key":"hMrjwT7TM4K6cGGTPMoVo6qhFRc=","exportNames":["*"],"imports":1}},{"name":"../../services/kycService","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0,"index":415},"end":{"line":16,"column":55,"index":470}}],"key":"qZkBUP6Ce0z7714BEPxSWwWTPFM=","exportNames":["*"],"imports":1}},{"name":"../../types/kyc","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":17,"column":0,"index":471},"end":{"line":17,"column":66,"index":537}}],"key":"O47a6+CIzUmJwJcl7ScrrnRddu4=","exportNames":["*"],"imports":1}},{"name":"react/jsx-dev-runtime","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"L9D70Z4hi4aGuui1ysja/oQ5ytI=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _jsxFileName = \"/app/frontend/src/screens/Identity/CitizenCardScreen.tsx\",\n _s = $RefreshSig$();\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, \"default\", {\n enumerable: true,\n get: function () {\n return CitizenCardScreen;\n }\n });\n var _babelRuntimeHelpersAsyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\");\n var _asyncToGenerator = _interopDefault(_babelRuntimeHelpersAsyncToGenerator);\n var _babelRuntimeHelpersSlicedToArray = require(_dependencyMap[1], \"@babel/runtime/helpers/slicedToArray\");\n var _slicedToArray = _interopDefault(_babelRuntimeHelpersSlicedToArray);\n var _react = require(_dependencyMap[2], \"react\");\n var _reactNative = require(_dependencyMap[3], \"react-native\");\n var _expoVectorIcons = require(_dependencyMap[4], \"@expo/vector-icons\");\n var _reactNativeQrcodeSvg = require(_dependencyMap[5], \"react-native-qrcode-svg\");\n var QRCode = _interopDefault(_reactNativeQrcodeSvg);\n var _constantsColors = require(_dependencyMap[6], \"../../constants/colors\");\n var Colors = _interopDefault(_constantsColors);\n var _constantsTheme = require(_dependencyMap[7], \"../../constants/theme\");\n var _servicesKycService = require(_dependencyMap[8], \"../../services/kycService\");\n var _typesKyc = require(_dependencyMap[9], \"../../types/kyc\");\n var _reactJsxDevRuntime = require(_dependencyMap[10], \"react/jsx-dev-runtime\");\n function CitizenCardScreen(_ref) {\n _s();\n var navigation = _ref.navigation;\n var _useState = (0, _react.useState)(true),\n _useState2 = (0, _slicedToArray.default)(_useState, 2),\n loading = _useState2[0],\n setLoading = _useState2[1];\n var _useState3 = (0, _react.useState)(null),\n _useState4 = (0, _slicedToArray.default)(_useState3, 2),\n citizen = _useState4[0],\n setCitizen = _useState4[1];\n (0, _react.useEffect)(() => {\n loadCitizen();\n }, []);\n var loadCitizen = /*#__PURE__*/function () {\n var _ref2 = (0, _asyncToGenerator.default)(function* () {\n try {\n var data = yield _servicesKycService.kycService.getCitizen();\n setCitizen(data);\n } catch (error) {\n console.error('Failed to load citizen data:', error);\n } finally {\n setLoading(false);\n }\n });\n return function loadCitizen() {\n return _ref2.apply(this, arguments);\n };\n }();\n if (loading) {\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.SafeAreaView, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ActivityIndicator, {\n size: \"large\",\n color: Colors.default.teal\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 41,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 40,\n columnNumber: 7\n }, this);\n }\n if (!citizen) {\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.SafeAreaView, {\n style: styles.container,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.errorText,\n children: \"No citizen data found\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 49,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.button,\n onPress: () => navigation.navigate('IdentityKYCForm'),\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.buttonText,\n children: \"Complete KYC\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 54,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 50,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 48,\n columnNumber: 7\n }, this);\n }\n var formatDate = timestamp => {\n var date = new Date(timestamp);\n return date.toLocaleDateString('en-GB');\n };\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.SafeAreaView, {\n style: styles.container,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.header,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n onPress: () => navigation.goBack(),\n style: styles.backButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"arrow-back\",\n size: 24,\n color: Colors.default.textDark\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 69,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 68,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.headerTitle,\n children: \"Digital Hemwelat\\xEE\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 71,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.shareButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"share-outline\",\n size: 24,\n color: Colors.default.textDark\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 73,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 72,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 67,\n columnNumber: 7\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ScrollView, {\n style: styles.content,\n showsVerticalScrollIndicator: false,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.card,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.cardHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.headerText1,\n children: \"KOMARA KURDISTAN\\xCA\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 82,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.headerText2,\n children: \"HEMWELAT\\xCE\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 83,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 81,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.cardBody,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.topSection,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.photoContainer,\n children: citizen.photo ? /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: {\n uri: citizen.photo\n },\n style: styles.photo\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 93,\n columnNumber: 19\n }, this) : /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.photoPlaceholder,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"person\",\n size: 50,\n color: \"#999\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 96,\n columnNumber: 21\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 95,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 91,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoList,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"NAV/NAME\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 104,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.fullName\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 105,\n columnNumber: 19\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 103,\n columnNumber: 17\n }, this), citizen.fatherName && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"BAV/FATHER\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 110,\n columnNumber: 21\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.fatherName\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 111,\n columnNumber: 21\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 109,\n columnNumber: 19\n }, this), citizen.grandfatherName && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"DAP\\xCER/GRANDFATHER\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 117,\n columnNumber: 21\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.grandfatherName\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 118,\n columnNumber: 21\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 116,\n columnNumber: 19\n }, this), citizen.greatGrandfatherName && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"DAP\\xCERA BIRA/G.GRANDFATHER\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 124,\n columnNumber: 21\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.greatGrandfatherName\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 125,\n columnNumber: 21\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 123,\n columnNumber: 19\n }, this), citizen.motherName && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"DAY/MOTHER\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 131,\n columnNumber: 21\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.motherName\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 132,\n columnNumber: 21\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 130,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"ZEWIC\\xCEN/MARITAL\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 137,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.maritalStatus === 'married' ? 'ZewicĂ®' : 'NezewicĂ®'\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 138,\n columnNumber: 19\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 136,\n columnNumber: 17\n }, this), citizen.maritalStatus === 'married' && citizen.spouseName && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"HEVJ\\xCEN/SPOUSE\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 145,\n columnNumber: 21\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.spouseName\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 146,\n columnNumber: 21\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 144,\n columnNumber: 19\n }, this), citizen.children && citizen.children.length > 0 && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoLabel,\n children: \"ZAROK/CHILDREN\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 152,\n columnNumber: 21\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoValue,\n children: citizen.children.length\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 153,\n columnNumber: 21\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 151,\n columnNumber: 19\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 102,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 89,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.sunContainer,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"sunny\",\n size: 80,\n color: \"#D4A017\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 161,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 160,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.middleSection,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.regionRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.regionLabel,\n children: \"HEREM/REGION\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 167,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.regionValue,\n children: _typesKyc.REGION_LABELS[citizen.region].en\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 168,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 166,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.citizenIdRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.citizenIdLabel,\n children: \"JIMARA HEMWELAT\\xCE/CITIZEN ID\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 172,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.citizenIdValue,\n children: citizen.citizenId\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 173,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 171,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 165,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 87,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.cardFooter,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.footerLeft,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.footerRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.footerLabel,\n children: \"NASNAMA DIJ\\xCETAL/DIGITAL ID\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 182,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.footerValue,\n children: citizen.citizenId.replace(/-/g, '')\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 183,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 181,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.footerRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.footerLabel,\n children: \"JIMARA VEKIRAN/ACCOUNT#\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 187,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.footerValue,\n children: citizen.qrCode.substring(0, 12)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 188,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 186,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.footerRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.footerLabel,\n children: \"DAXWAZ/ISSUED\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 192,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.footerValue,\n children: formatDate(citizen.approvedAt)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 193,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 191,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 180,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.footerRight,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(QRCode.default, {\n value: citizen.qrCode,\n size: 70,\n backgroundColor: \"transparent\",\n color: \"#FFFFFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 198,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 197,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 179,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 79,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.statusBadge,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"checkmark-circle\",\n size: 24,\n color: Colors.default.mint\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 205,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.statusText,\n children: \"Verified Kurdistan Citizen\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 206,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 204,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoText,\n children: \"This official digital citizenship card grants you full access to Governance (Welati) and all citizen-only features on PezkuwiChain.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 210,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.actions,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.actionButton,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"download-outline\",\n size: 24,\n color: Colors.default.teal\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 217,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionText,\n children: \"Download\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 218,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 216,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.actionButton,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"qr-code-outline\",\n size: 24,\n color: Colors.default.teal\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 222,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionText,\n children: \"Show QR\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 223,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 221,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.actionButton,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"share-social-outline\",\n size: 24,\n color: Colors.default.teal\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 227,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionText,\n children: \"Share\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 228,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 226,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 215,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 77,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 66,\n columnNumber: 5\n }, this);\n }\n _s(CitizenCardScreen, \"SiesaRcgzHS+xpfDFZUL8dCsnQk=\");\n _c = CitizenCardScreen;\n var styles = _reactNative.StyleSheet.create({\n container: {\n flex: 1,\n backgroundColor: Colors.default.background\n },\n header: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'space-between',\n paddingHorizontal: _constantsTheme.Spacing.xl,\n paddingVertical: _constantsTheme.Spacing.lg,\n borderBottomWidth: 1,\n borderBottomColor: '#F0F0F0'\n },\n backButton: {\n width: 40,\n height: 40,\n borderRadius: 20,\n backgroundColor: Colors.default.card,\n justifyContent: 'center',\n alignItems: 'center'\n },\n shareButton: {\n width: 40,\n height: 40,\n borderRadius: 20,\n backgroundColor: Colors.default.card,\n justifyContent: 'center',\n alignItems: 'center'\n },\n headerTitle: {\n fontSize: _constantsTheme.Typography.sizes.large,\n fontWeight: _constantsTheme.Typography.weights.semibold,\n color: Colors.default.textDark\n },\n content: {\n flex: 1,\n padding: _constantsTheme.Spacing.xl\n },\n card: {\n backgroundColor: '#FFFFFF',\n borderRadius: _constantsTheme.BorderRadius.xlarge,\n overflow: 'hidden',\n ..._constantsTheme.Shadow.medium\n },\n cardHeader: {\n backgroundColor: '#8B1538',\n // Burgundy\n paddingVertical: _constantsTheme.Spacing.xl,\n alignItems: 'center'\n },\n headerText1: {\n fontSize: 20,\n fontWeight: '700',\n color: '#D4A017',\n // Gold\n letterSpacing: 1\n },\n headerText2: {\n fontSize: 24,\n fontWeight: '700',\n color: '#FFFFFF',\n letterSpacing: 2,\n marginTop: 4\n },\n cardBody: {\n backgroundColor: '#FFFFFF',\n padding: _constantsTheme.Spacing.lg\n },\n topSection: {\n flexDirection: 'row',\n marginBottom: _constantsTheme.Spacing.md\n },\n photoContainer: {\n width: 100,\n height: 100,\n borderRadius: 50,\n overflow: 'hidden',\n backgroundColor: '#D0D0D0',\n marginRight: _constantsTheme.Spacing.md\n },\n photo: {\n width: '100%',\n height: '100%'\n },\n photoPlaceholder: {\n width: '100%',\n height: '100%',\n justifyContent: 'center',\n alignItems: 'center',\n backgroundColor: '#D0D0D0'\n },\n infoList: {\n flex: 1\n },\n infoRow: {\n marginBottom: 6\n },\n infoLabel: {\n fontSize: 9,\n fontWeight: '600',\n color: '#333',\n letterSpacing: 0.3\n },\n infoValue: {\n fontSize: 11,\n fontWeight: '700',\n color: '#000'\n },\n sunContainer: {\n alignItems: 'center',\n marginVertical: _constantsTheme.Spacing.md\n },\n middleSection: {\n marginTop: _constantsTheme.Spacing.sm\n },\n regionRow: {\n marginBottom: _constantsTheme.Spacing.sm\n },\n regionLabel: {\n fontSize: 11,\n fontWeight: '600',\n color: '#333'\n },\n regionValue: {\n fontSize: 13,\n fontWeight: '700',\n color: '#000'\n },\n citizenIdRow: {\n marginTop: _constantsTheme.Spacing.sm\n },\n citizenIdLabel: {\n fontSize: 11,\n fontWeight: '600',\n color: '#333'\n },\n citizenIdValue: {\n fontSize: 15,\n fontWeight: '700',\n color: '#000',\n letterSpacing: 1\n },\n cardFooter: {\n backgroundColor: '#007A3D',\n // Green\n flexDirection: 'row',\n padding: _constantsTheme.Spacing.lg,\n justifyContent: 'space-between'\n },\n footerLeft: {\n flex: 1\n },\n footerRow: {\n marginBottom: 6\n },\n footerLabel: {\n fontSize: 9,\n fontWeight: '600',\n color: '#FFFFFF',\n opacity: 0.9\n },\n footerValue: {\n fontSize: 11,\n fontWeight: '700',\n color: '#D4A017' // Gold\n },\n footerRight: {\n justifyContent: 'center',\n alignItems: 'center'\n },\n statusBadge: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n backgroundColor: Colors.default.mint + '20',\n padding: _constantsTheme.Spacing.md,\n borderRadius: _constantsTheme.BorderRadius.large,\n marginTop: _constantsTheme.Spacing.xl,\n gap: _constantsTheme.Spacing.sm\n },\n statusText: {\n fontSize: _constantsTheme.Typography.sizes.medium,\n fontWeight: _constantsTheme.Typography.weights.semibold,\n color: Colors.default.mint\n },\n infoText: {\n fontSize: _constantsTheme.Typography.sizes.small,\n color: Colors.default.textGray,\n textAlign: 'center',\n marginTop: _constantsTheme.Spacing.lg,\n lineHeight: 20\n },\n actions: {\n flexDirection: 'row',\n justifyContent: 'space-around',\n marginTop: _constantsTheme.Spacing.xl,\n marginBottom: _constantsTheme.Spacing.xl\n },\n actionButton: {\n alignItems: 'center',\n gap: _constantsTheme.Spacing.sm\n },\n actionText: {\n fontSize: _constantsTheme.Typography.sizes.small,\n color: Colors.default.teal,\n fontWeight: _constantsTheme.Typography.weights.medium\n },\n errorText: {\n fontSize: _constantsTheme.Typography.sizes.medium,\n color: Colors.default.textGray,\n textAlign: 'center'\n },\n button: {\n backgroundColor: Colors.default.teal,\n paddingVertical: _constantsTheme.Spacing.lg,\n paddingHorizontal: _constantsTheme.Spacing.xxxl,\n borderRadius: _constantsTheme.BorderRadius.xxlarge,\n marginTop: _constantsTheme.Spacing.xl\n },\n buttonText: {\n fontSize: _constantsTheme.Typography.sizes.medium,\n fontWeight: _constantsTheme.Typography.weights.semibold,\n color: '#FFFFFF'\n }\n });\n var _c;\n $RefreshReg$(_c, \"CitizenCardScreen\");\n});","lineCount":916,"map":[[14,2,19,15,"Object"],[14,8,19,15],[14,9,19,15,"defineProperty"],[14,23,19,15],[14,24,19,15,"exports"],[14,31,19,15],[15,4,19,15,"enumerable"],[15,14,19,15],[16,4,19,15,"get"],[16,7,19,15],[16,18,19,15,"get"],[16,19,19,15],[17,6,19,15],[17,13,19,15,"CitizenCardScreen"],[17,30,19,15],[18,4,19,15],[19,2,19,15],[20,2,234,1],[20,6,234,1,"_babelRuntimeHelpersAsyncToGenerator"],[20,42,234,1],[20,45,234,1,"require"],[20,52,234,1],[20,53,234,1,"_dependencyMap"],[20,67,234,1],[21,2,234,1],[21,6,234,1,"_asyncToGenerator"],[21,23,234,1],[21,26,234,1,"_interopDefault"],[21,41,234,1],[21,42,234,1,"_babelRuntimeHelpersAsyncToGenerator"],[21,78,234,1],[22,2,234,1],[22,6,234,1,"_babelRuntimeHelpersSlicedToArray"],[22,39,234,1],[22,42,234,1,"require"],[22,49,234,1],[22,50,234,1,"_dependencyMap"],[22,64,234,1],[23,2,234,1],[23,6,234,1,"_slicedToArray"],[23,20,234,1],[23,23,234,1,"_interopDefault"],[23,38,234,1],[23,39,234,1,"_babelRuntimeHelpersSlicedToArray"],[23,72,234,1],[24,2,1,0],[24,6,1,0,"_react"],[24,12,1,0],[24,15,1,0,"require"],[24,22,1,0],[24,23,1,0,"_dependencyMap"],[24,37,1,0],[25,2,2,0],[25,6,2,0,"_reactNative"],[25,18,2,0],[25,21,2,0,"require"],[25,28,2,0],[25,29,2,0,"_dependencyMap"],[25,43,2,0],[26,2,12,0],[26,6,12,0,"_expoVectorIcons"],[26,22,12,0],[26,25,12,0,"require"],[26,32,12,0],[26,33,12,0,"_dependencyMap"],[26,47,12,0],[27,2,13,0],[27,6,13,0,"_reactNativeQrcodeSvg"],[27,27,13,0],[27,30,13,0,"require"],[27,37,13,0],[27,38,13,0,"_dependencyMap"],[27,52,13,0],[28,2,13,0],[28,6,13,0,"QRCode"],[28,12,13,0],[28,15,13,0,"_interopDefault"],[28,30,13,0],[28,31,13,0,"_reactNativeQrcodeSvg"],[28,52,13,0],[29,2,14,0],[29,6,14,0,"_constantsColors"],[29,22,14,0],[29,25,14,0,"require"],[29,32,14,0],[29,33,14,0,"_dependencyMap"],[29,47,14,0],[30,2,14,0],[30,6,14,0,"Colors"],[30,12,14,0],[30,15,14,0,"_interopDefault"],[30,30,14,0],[30,31,14,0,"_constantsColors"],[30,47,14,0],[31,2,15,0],[31,6,15,0,"_constantsTheme"],[31,21,15,0],[31,24,15,0,"require"],[31,31,15,0],[31,32,15,0,"_dependencyMap"],[31,46,15,0],[32,2,16,0],[32,6,16,0,"_servicesKycService"],[32,25,16,0],[32,28,16,0,"require"],[32,35,16,0],[32,36,16,0,"_dependencyMap"],[32,50,16,0],[33,2,17,0],[33,6,17,0,"_typesKyc"],[33,15,17,0],[33,18,17,0,"require"],[33,25,17,0],[33,26,17,0,"_dependencyMap"],[33,40,17,0],[34,2,17,66],[34,6,17,66,"_reactJsxDevRuntime"],[34,25,17,66],[34,28,17,66,"require"],[34,35,17,66],[34,36,17,66,"_dependencyMap"],[34,50,17,66],[35,2,19,15],[35,11,19,24,"CitizenCardScreen"],[35,28,19,41,"CitizenCardScreen"],[35,29,19,41,"_ref"],[35,33,19,41],[35,35,19,63],[36,4,19,63,"_s"],[36,6,19,63],[37,4,19,63],[37,8,19,44,"navigation"],[37,18,19,54],[37,21,19,54,"_ref"],[37,25,19,54],[37,26,19,44,"navigation"],[37,36,19,54],[38,4,20,2],[38,8,20,2,"_useState"],[38,17,20,2],[38,20,20,32],[38,24,20,32,"useState"],[38,30,20,40],[38,31,20,40,"useState"],[38,39,20,40],[38,41,20,41],[38,45,20,45],[38,46,20,46],[39,6,20,46,"_useState2"],[39,16,20,46],[39,23,20,46,"_slicedToArray"],[39,37,20,46],[39,38,20,46,"default"],[39,45,20,46],[39,47,20,46,"_useState"],[39,56,20,46],[40,6,20,9,"loading"],[40,13,20,16],[40,16,20,16,"_useState2"],[40,26,20,16],[41,6,20,18,"setLoading"],[41,16,20,28],[41,19,20,28,"_useState2"],[41,29,20,28],[42,4,21,2],[42,8,21,2,"_useState3"],[42,18,21,2],[42,21,21,32],[42,25,21,32,"useState"],[42,31,21,40],[42,32,21,40,"useState"],[42,40,21,40],[42,42,21,66],[42,46,21,70],[42,47,21,71],[43,6,21,71,"_useState4"],[43,16,21,71],[43,23,21,71,"_slicedToArray"],[43,37,21,71],[43,38,21,71,"default"],[43,45,21,71],[43,47,21,71,"_useState3"],[43,57,21,71],[44,6,21,9,"citizen"],[44,13,21,16],[44,16,21,16,"_useState4"],[44,26,21,16],[45,6,21,18,"setCitizen"],[45,16,21,28],[45,19,21,28,"_useState4"],[45,29,21,28],[46,4,23,2],[46,8,23,2,"useEffect"],[46,14,23,11],[46,15,23,11,"useEffect"],[46,24,23,11],[46,26,23,12],[46,32,23,18],[47,6,24,4,"loadCitizen"],[47,17,24,15],[47,18,24,16],[47,19,24,17],[48,4,25,2],[48,5,25,3],[48,7,25,5],[48,9,25,7],[48,10,25,8],[49,4,27,2],[49,8,27,8,"loadCitizen"],[49,19,27,19],[50,6,27,19],[50,10,27,19,"_ref2"],[50,15,27,19],[50,22,27,19,"_asyncToGenerator"],[50,39,27,19],[50,40,27,19,"default"],[50,47,27,19],[50,49,27,22],[50,62,27,34],[51,8,28,4],[51,12,28,8],[52,10,29,6],[52,14,29,12,"data"],[52,18,29,16],[52,27,29,25,"kycService"],[52,46,29,35],[52,47,29,35,"kycService"],[52,57,29,35],[52,58,29,36,"getCitizen"],[52,68,29,46],[52,69,29,47],[52,70,29,48],[53,10,30,6,"setCitizen"],[53,20,30,16],[53,21,30,17,"data"],[53,25,30,21],[53,26,30,22],[54,8,31,4],[54,9,31,5],[54,10,31,6],[54,17,31,13,"error"],[54,22,31,18],[54,24,31,20],[55,10,32,6,"console"],[55,17,32,13],[55,18,32,14,"error"],[55,23,32,19],[55,24,32,20],[55,54,32,50],[55,56,32,52,"error"],[55,61,32,57],[55,62,32,58],[56,8,33,4],[56,9,33,5],[56,18,33,14],[57,10,34,6,"setLoading"],[57,20,34,16],[57,21,34,17],[57,26,34,22],[57,27,34,23],[58,8,35,4],[59,6,36,2],[59,7,36,3],[60,6,36,3],[60,22,27,8,"loadCitizen"],[60,33,27,19,"loadCitizen"],[60,34,27,19],[61,8,27,19],[61,15,27,19,"_ref2"],[61,20,27,19],[61,21,27,19,"apply"],[61,26,27,19],[61,33,27,19,"arguments"],[61,42,27,19],[62,6,27,19],[63,4,27,19],[63,7,36,3],[64,4,38,2],[64,8,38,6,"loading"],[64,15,38,13],[64,17,38,15],[65,6,39,4],[65,26,40,6],[65,30,40,6,"_reactJsxDevRuntime"],[65,49,40,6],[65,50,40,6,"jsxDEV"],[65,56,40,6],[65,58,40,7,"_reactNative"],[65,70,40,19],[65,71,40,19,"SafeAreaView"],[65,83,40,19],[66,8,40,20,"style"],[66,13,40,25],[66,15,40,27,"styles"],[66,21,40,33],[66,22,40,34,"container"],[66,31,40,44],[67,8,40,44,"children"],[67,16,40,44],[67,31,41,8],[67,35,41,8,"_reactJsxDevRuntime"],[67,54,41,8],[67,55,41,8,"jsxDEV"],[67,61,41,8],[67,63,41,9,"_reactNative"],[67,75,41,26],[67,76,41,26,"ActivityIndicator"],[67,93,41,26],[68,10,41,27,"size"],[68,14,41,31],[68,16,41,32],[68,23,41,39],[69,10,41,40,"color"],[69,15,41,45],[69,17,41,47,"Colors"],[69,23,41,53],[69,24,41,53,"default"],[69,31,41,53],[69,32,41,54,"teal"],[70,8,41,59],[71,10,41,59,"fileName"],[71,18,41,59],[71,20,41,59,"_jsxFileName"],[71,32,41,59],[72,10,41,59,"lineNumber"],[72,20,41,59],[73,10,41,59,"columnNumber"],[73,22,41,59],[74,8,41,59],[74,15,41,61],[75,6,41,62],[76,8,41,62,"fileName"],[76,16,41,62],[76,18,41,62,"_jsxFileName"],[76,30,41,62],[77,8,41,62,"lineNumber"],[77,18,41,62],[78,8,41,62,"columnNumber"],[78,20,41,62],[79,6,41,62],[79,13,42,20],[79,14,42,21],[80,4,44,2],[81,4,46,2],[81,8,46,6],[81,9,46,7,"citizen"],[81,16,46,14],[81,18,46,16],[82,6,47,4],[82,26,48,6],[82,30,48,6,"_reactJsxDevRuntime"],[82,49,48,6],[82,50,48,6,"jsxDEV"],[82,56,48,6],[82,58,48,7,"_reactNative"],[82,70,48,19],[82,71,48,19,"SafeAreaView"],[82,83,48,19],[83,8,48,20,"style"],[83,13,48,25],[83,15,48,27,"styles"],[83,21,48,33],[83,22,48,34,"container"],[83,31,48,44],[84,8,48,44,"children"],[84,16,48,44],[84,32,49,8],[84,36,49,8,"_reactJsxDevRuntime"],[84,55,49,8],[84,56,49,8,"jsxDEV"],[84,62,49,8],[84,64,49,9,"_reactNative"],[84,76,49,13],[84,77,49,13,"Text"],[84,81,49,13],[85,10,49,14,"style"],[85,15,49,19],[85,17,49,21,"styles"],[85,23,49,27],[85,24,49,28,"errorText"],[85,33,49,38],[86,10,49,38,"children"],[86,18,49,38],[86,20,49,39],[87,8,49,60],[88,10,49,60,"fileName"],[88,18,49,60],[88,20,49,60,"_jsxFileName"],[88,32,49,60],[89,10,49,60,"lineNumber"],[89,20,49,60],[90,10,49,60,"columnNumber"],[90,22,49,60],[91,8,49,60],[91,15,49,66],[91,16,49,67],[91,31,50,8],[91,35,50,8,"_reactJsxDevRuntime"],[91,54,50,8],[91,55,50,8,"jsxDEV"],[91,61,50,8],[91,63,50,9,"_reactNative"],[91,75,50,25],[91,76,50,25,"TouchableOpacity"],[91,92,50,25],[92,10,51,10,"style"],[92,15,51,15],[92,17,51,17,"styles"],[92,23,51,23],[92,24,51,24,"button"],[92,30,51,31],[93,10,52,10,"onPress"],[93,17,52,17],[93,19,52,19,"onPress"],[93,20,52,19],[93,25,52,25,"navigation"],[93,35,52,35],[93,36,52,36,"navigate"],[93,44,52,44],[93,45,52,45],[93,62,52,62],[93,63,52,64],[94,10,52,64,"children"],[94,18,52,64],[94,33,54,10],[94,37,54,10,"_reactJsxDevRuntime"],[94,56,54,10],[94,57,54,10,"jsxDEV"],[94,63,54,10],[94,65,54,11,"_reactNative"],[94,77,54,15],[94,78,54,15,"Text"],[94,82,54,15],[95,12,54,16,"style"],[95,17,54,21],[95,19,54,23,"styles"],[95,25,54,29],[95,26,54,30,"buttonText"],[95,36,54,41],[96,12,54,41,"children"],[96,20,54,41],[96,22,54,42],[97,10,54,54],[98,12,54,54,"fileName"],[98,20,54,54],[98,22,54,54,"_jsxFileName"],[98,34,54,54],[99,12,54,54,"lineNumber"],[99,22,54,54],[100,12,54,54,"columnNumber"],[100,24,54,54],[101,10,54,54],[101,17,54,60],[102,8,54,61],[103,10,54,61,"fileName"],[103,18,54,61],[103,20,54,61,"_jsxFileName"],[103,32,54,61],[104,10,54,61,"lineNumber"],[104,20,54,61],[105,10,54,61,"columnNumber"],[105,22,54,61],[106,8,54,61],[106,15,55,26],[106,16,55,27],[107,6,55,27],[108,8,55,27,"fileName"],[108,16,55,27],[108,18,55,27,"_jsxFileName"],[108,30,55,27],[109,8,55,27,"lineNumber"],[109,18,55,27],[110,8,55,27,"columnNumber"],[110,20,55,27],[111,6,55,27],[111,13,56,20],[111,14,56,21],[112,4,58,2],[113,4,60,2],[113,8,60,8,"formatDate"],[113,18,60,18],[113,21,60,22,"timestamp"],[113,30,60,39],[113,34,60,44],[114,6,61,4],[114,10,61,10,"date"],[114,14,61,14],[114,17,61,17],[114,21,61,21,"Date"],[114,25,61,25],[114,26,61,26,"timestamp"],[114,35,61,35],[114,36,61,36],[115,6,62,4],[115,13,62,11,"date"],[115,17,62,15],[115,18,62,16,"toLocaleDateString"],[115,36,62,34],[115,37,62,35],[115,44,62,42],[115,45,62,43],[116,4,63,2],[116,5,63,3],[117,4,65,2],[117,24,66,4],[117,28,66,4,"_reactJsxDevRuntime"],[117,47,66,4],[117,48,66,4,"jsxDEV"],[117,54,66,4],[117,56,66,5,"_reactNative"],[117,68,66,17],[117,69,66,17,"SafeAreaView"],[117,81,66,17],[118,6,66,18,"style"],[118,11,66,23],[118,13,66,25,"styles"],[118,19,66,31],[118,20,66,32,"container"],[118,29,66,42],[119,6,66,42,"children"],[119,14,66,42],[119,30,67,6],[119,34,67,6,"_reactJsxDevRuntime"],[119,53,67,6],[119,54,67,6,"jsxDEV"],[119,60,67,6],[119,62,67,7,"_reactNative"],[119,74,67,11],[119,75,67,11,"View"],[119,79,67,11],[120,8,67,12,"style"],[120,13,67,17],[120,15,67,19,"styles"],[120,21,67,25],[120,22,67,26,"header"],[120,28,67,33],[121,8,67,33,"children"],[121,16,67,33],[121,32,68,8],[121,36,68,8,"_reactJsxDevRuntime"],[121,55,68,8],[121,56,68,8,"jsxDEV"],[121,62,68,8],[121,64,68,9,"_reactNative"],[121,76,68,25],[121,77,68,25,"TouchableOpacity"],[121,93,68,25],[122,10,68,26,"onPress"],[122,17,68,33],[122,19,68,35,"onPress"],[122,20,68,35],[122,25,68,41,"navigation"],[122,35,68,51],[122,36,68,52,"goBack"],[122,42,68,58],[122,43,68,59],[122,44,68,61],[123,10,68,62,"style"],[123,15,68,67],[123,17,68,69,"styles"],[123,23,68,75],[123,24,68,76,"backButton"],[123,34,68,87],[124,10,68,87,"children"],[124,18,68,87],[124,33,69,10],[124,37,69,10,"_reactJsxDevRuntime"],[124,56,69,10],[124,57,69,10,"jsxDEV"],[124,63,69,10],[124,65,69,11,"_expoVectorIcons"],[124,81,69,19],[124,82,69,19,"Ionicons"],[124,90,69,19],[125,12,69,20,"name"],[125,16,69,24],[125,18,69,25],[125,30,69,37],[126,12,69,38,"size"],[126,16,69,42],[126,18,69,44],[126,20,69,47],[127,12,69,48,"color"],[127,17,69,53],[127,19,69,55,"Colors"],[127,25,69,61],[127,26,69,61,"default"],[127,33,69,61],[127,34,69,62,"textDark"],[128,10,69,71],[129,12,69,71,"fileName"],[129,20,69,71],[129,22,69,71,"_jsxFileName"],[129,34,69,71],[130,12,69,71,"lineNumber"],[130,22,69,71],[131,12,69,71,"columnNumber"],[131,24,69,71],[132,10,69,71],[132,17,69,73],[133,8,69,74],[134,10,69,74,"fileName"],[134,18,69,74],[134,20,69,74,"_jsxFileName"],[134,32,69,74],[135,10,69,74,"lineNumber"],[135,20,69,74],[136,10,69,74,"columnNumber"],[136,22,69,74],[137,8,69,74],[137,15,70,26],[137,16,70,27],[137,31,71,8],[137,35,71,8,"_reactJsxDevRuntime"],[137,54,71,8],[137,55,71,8,"jsxDEV"],[137,61,71,8],[137,63,71,9,"_reactNative"],[137,75,71,13],[137,76,71,13,"Text"],[137,80,71,13],[138,10,71,14,"style"],[138,15,71,19],[138,17,71,21,"styles"],[138,23,71,27],[138,24,71,28,"headerTitle"],[138,35,71,40],[139,10,71,40,"children"],[139,18,71,40],[139,20,71,41],[140,8,71,58],[141,10,71,58,"fileName"],[141,18,71,58],[141,20,71,58,"_jsxFileName"],[141,32,71,58],[142,10,71,58,"lineNumber"],[142,20,71,58],[143,10,71,58,"columnNumber"],[143,22,71,58],[144,8,71,58],[144,15,71,64],[144,16,71,65],[144,31,72,8],[144,35,72,8,"_reactJsxDevRuntime"],[144,54,72,8],[144,55,72,8,"jsxDEV"],[144,61,72,8],[144,63,72,9,"_reactNative"],[144,75,72,25],[144,76,72,25,"TouchableOpacity"],[144,92,72,25],[145,10,72,26,"style"],[145,15,72,31],[145,17,72,33,"styles"],[145,23,72,39],[145,24,72,40,"shareButton"],[145,35,72,52],[146,10,72,52,"children"],[146,18,72,52],[146,33,73,10],[146,37,73,10,"_reactJsxDevRuntime"],[146,56,73,10],[146,57,73,10,"jsxDEV"],[146,63,73,10],[146,65,73,11,"_expoVectorIcons"],[146,81,73,19],[146,82,73,19,"Ionicons"],[146,90,73,19],[147,12,73,20,"name"],[147,16,73,24],[147,18,73,25],[147,33,73,40],[148,12,73,41,"size"],[148,16,73,45],[148,18,73,47],[148,20,73,50],[149,12,73,51,"color"],[149,17,73,56],[149,19,73,58,"Colors"],[149,25,73,64],[149,26,73,64,"default"],[149,33,73,64],[149,34,73,65,"textDark"],[150,10,73,74],[151,12,73,74,"fileName"],[151,20,73,74],[151,22,73,74,"_jsxFileName"],[151,34,73,74],[152,12,73,74,"lineNumber"],[152,22,73,74],[153,12,73,74,"columnNumber"],[153,24,73,74],[154,10,73,74],[154,17,73,76],[155,8,73,77],[156,10,73,77,"fileName"],[156,18,73,77],[156,20,73,77,"_jsxFileName"],[156,32,73,77],[157,10,73,77,"lineNumber"],[157,20,73,77],[158,10,73,77,"columnNumber"],[158,22,73,77],[159,8,73,77],[159,15,74,26],[159,16,74,27],[160,6,74,27],[161,8,74,27,"fileName"],[161,16,74,27],[161,18,74,27,"_jsxFileName"],[161,30,74,27],[162,8,74,27,"lineNumber"],[162,18,74,27],[163,8,74,27,"columnNumber"],[163,20,74,27],[164,6,74,27],[164,13,75,12],[164,14,75,13],[164,29,77,6],[164,33,77,6,"_reactJsxDevRuntime"],[164,52,77,6],[164,53,77,6,"jsxDEV"],[164,59,77,6],[164,61,77,7,"_reactNative"],[164,73,77,17],[164,74,77,17,"ScrollView"],[164,84,77,17],[165,8,77,18,"style"],[165,13,77,23],[165,15,77,25,"styles"],[165,21,77,31],[165,22,77,32,"content"],[165,29,77,40],[166,8,77,41,"showsVerticalScrollIndicator"],[166,36,77,69],[166,38,77,71],[166,43,77,77],[167,8,77,77,"children"],[167,16,77,77],[167,32,79,8],[167,36,79,8,"_reactJsxDevRuntime"],[167,55,79,8],[167,56,79,8,"jsxDEV"],[167,62,79,8],[167,64,79,9,"_reactNative"],[167,76,79,13],[167,77,79,13,"View"],[167,81,79,13],[168,10,79,14,"style"],[168,15,79,19],[168,17,79,21,"styles"],[168,23,79,27],[168,24,79,28,"card"],[168,28,79,33],[169,10,79,33,"children"],[169,18,79,33],[169,34,81,10],[169,38,81,10,"_reactJsxDevRuntime"],[169,57,81,10],[169,58,81,10,"jsxDEV"],[169,64,81,10],[169,66,81,11,"_reactNative"],[169,78,81,15],[169,79,81,15,"View"],[169,83,81,15],[170,12,81,16,"style"],[170,17,81,21],[170,19,81,23,"styles"],[170,25,81,29],[170,26,81,30,"cardHeader"],[170,36,81,41],[171,12,81,41,"children"],[171,20,81,41],[171,36,82,12],[171,40,82,12,"_reactJsxDevRuntime"],[171,59,82,12],[171,60,82,12,"jsxDEV"],[171,66,82,12],[171,68,82,13,"_reactNative"],[171,80,82,17],[171,81,82,17,"Text"],[171,85,82,17],[172,14,82,18,"style"],[172,19,82,23],[172,21,82,25,"styles"],[172,27,82,31],[172,28,82,32,"headerText1"],[172,39,82,44],[173,14,82,44,"children"],[173,22,82,44],[173,24,82,45],[174,12,82,62],[175,14,82,62,"fileName"],[175,22,82,62],[175,24,82,62,"_jsxFileName"],[175,36,82,62],[176,14,82,62,"lineNumber"],[176,24,82,62],[177,14,82,62,"columnNumber"],[177,26,82,62],[178,12,82,62],[178,19,82,68],[178,20,82,69],[178,35,83,12],[178,39,83,12,"_reactJsxDevRuntime"],[178,58,83,12],[178,59,83,12,"jsxDEV"],[178,65,83,12],[178,67,83,13,"_reactNative"],[178,79,83,17],[178,80,83,17,"Text"],[178,84,83,17],[179,14,83,18,"style"],[179,19,83,23],[179,21,83,25,"styles"],[179,27,83,31],[179,28,83,32,"headerText2"],[179,39,83,44],[180,14,83,44,"children"],[180,22,83,44],[180,24,83,45],[181,12,83,54],[182,14,83,54,"fileName"],[182,22,83,54],[182,24,83,54,"_jsxFileName"],[182,36,83,54],[183,14,83,54,"lineNumber"],[183,24,83,54],[184,14,83,54,"columnNumber"],[184,26,83,54],[185,12,83,54],[185,19,83,60],[185,20,83,61],[186,10,83,61],[187,12,83,61,"fileName"],[187,20,83,61],[187,22,83,61,"_jsxFileName"],[187,34,83,61],[188,12,83,61,"lineNumber"],[188,22,83,61],[189,12,83,61,"columnNumber"],[189,24,83,61],[190,10,83,61],[190,17,84,16],[190,18,84,17],[190,33,87,10],[190,37,87,10,"_reactJsxDevRuntime"],[190,56,87,10],[190,57,87,10,"jsxDEV"],[190,63,87,10],[190,65,87,11,"_reactNative"],[190,77,87,15],[190,78,87,15,"View"],[190,82,87,15],[191,12,87,16,"style"],[191,17,87,21],[191,19,87,23,"styles"],[191,25,87,29],[191,26,87,30,"cardBody"],[191,34,87,39],[192,12,87,39,"children"],[192,20,87,39],[192,36,89,12],[192,40,89,12,"_reactJsxDevRuntime"],[192,59,89,12],[192,60,89,12,"jsxDEV"],[192,66,89,12],[192,68,89,13,"_reactNative"],[192,80,89,17],[192,81,89,17,"View"],[192,85,89,17],[193,14,89,18,"style"],[193,19,89,23],[193,21,89,25,"styles"],[193,27,89,31],[193,28,89,32,"topSection"],[193,38,89,43],[194,14,89,43,"children"],[194,22,89,43],[194,38,91,14],[194,42,91,14,"_reactJsxDevRuntime"],[194,61,91,14],[194,62,91,14,"jsxDEV"],[194,68,91,14],[194,70,91,15,"_reactNative"],[194,82,91,19],[194,83,91,19,"View"],[194,87,91,19],[195,16,91,20,"style"],[195,21,91,25],[195,23,91,27,"styles"],[195,29,91,33],[195,30,91,34,"photoContainer"],[195,44,91,49],[196,16,91,49,"children"],[196,24,91,49],[196,26,92,17,"citizen"],[196,33,92,24],[196,34,92,25,"photo"],[196,39,92,30],[196,55,93,18],[196,59,93,18,"_reactJsxDevRuntime"],[196,78,93,18],[196,79,93,18,"jsxDEV"],[196,85,93,18],[196,87,93,19,"_reactNative"],[196,99,93,24],[196,100,93,24,"Image"],[196,105,93,24],[197,18,93,25,"source"],[197,24,93,31],[197,26,93,33],[198,20,93,35,"uri"],[198,23,93,38],[198,25,93,40,"citizen"],[198,32,93,47],[198,33,93,48,"photo"],[199,18,93,54],[199,19,93,56],[200,18,93,57,"style"],[200,23,93,62],[200,25,93,64,"styles"],[200,31,93,70],[200,32,93,71,"photo"],[201,16,93,77],[202,18,93,77,"fileName"],[202,26,93,77],[202,28,93,77,"_jsxFileName"],[202,40,93,77],[203,18,93,77,"lineNumber"],[203,28,93,77],[204,18,93,77,"columnNumber"],[204,30,93,77],[205,16,93,77],[205,23,93,79],[205,24,93,80],[205,40,95,18],[205,44,95,18,"_reactJsxDevRuntime"],[205,63,95,18],[205,64,95,18,"jsxDEV"],[205,70,95,18],[205,72,95,19,"_reactNative"],[205,84,95,23],[205,85,95,23,"View"],[205,89,95,23],[206,18,95,24,"style"],[206,23,95,29],[206,25,95,31,"styles"],[206,31,95,37],[206,32,95,38,"photoPlaceholder"],[206,48,95,55],[207,18,95,55,"children"],[207,26,95,55],[207,41,96,20],[207,45,96,20,"_reactJsxDevRuntime"],[207,64,96,20],[207,65,96,20,"jsxDEV"],[207,71,96,20],[207,73,96,21,"_expoVectorIcons"],[207,89,96,29],[207,90,96,29,"Ionicons"],[207,98,96,29],[208,20,96,30,"name"],[208,24,96,34],[208,26,96,35],[208,34,96,43],[209,20,96,44,"size"],[209,24,96,48],[209,26,96,50],[209,28,96,53],[210,20,96,54,"color"],[210,25,96,59],[210,27,96,60],[211,18,96,66],[212,20,96,66,"fileName"],[212,28,96,66],[212,30,96,66,"_jsxFileName"],[212,42,96,66],[213,20,96,66,"lineNumber"],[213,30,96,66],[214,20,96,66,"columnNumber"],[214,32,96,66],[215,18,96,66],[215,25,96,68],[216,16,96,69],[217,18,96,69,"fileName"],[217,26,96,69],[217,28,96,69,"_jsxFileName"],[217,40,96,69],[218,18,96,69,"lineNumber"],[218,28,96,69],[219,18,96,69,"columnNumber"],[219,30,96,69],[220,16,96,69],[220,23,97,24],[221,14,98,17],[222,16,98,17,"fileName"],[222,24,98,17],[222,26,98,17,"_jsxFileName"],[222,38,98,17],[223,16,98,17,"lineNumber"],[223,26,98,17],[224,16,98,17,"columnNumber"],[224,28,98,17],[225,14,98,17],[225,21,99,20],[225,22,99,21],[225,37,102,14],[225,41,102,14,"_reactJsxDevRuntime"],[225,60,102,14],[225,61,102,14,"jsxDEV"],[225,67,102,14],[225,69,102,15,"_reactNative"],[225,81,102,19],[225,82,102,19,"View"],[225,86,102,19],[226,16,102,20,"style"],[226,21,102,25],[226,23,102,27,"styles"],[226,29,102,33],[226,30,102,34,"infoList"],[226,38,102,43],[227,16,102,43,"children"],[227,24,102,43],[227,40,103,16],[227,44,103,16,"_reactJsxDevRuntime"],[227,63,103,16],[227,64,103,16,"jsxDEV"],[227,70,103,16],[227,72,103,17,"_reactNative"],[227,84,103,21],[227,85,103,21,"View"],[227,89,103,21],[228,18,103,22,"style"],[228,23,103,27],[228,25,103,29,"styles"],[228,31,103,35],[228,32,103,36,"infoRow"],[228,39,103,44],[229,18,103,44,"children"],[229,26,103,44],[229,42,104,18],[229,46,104,18,"_reactJsxDevRuntime"],[229,65,104,18],[229,66,104,18,"jsxDEV"],[229,72,104,18],[229,74,104,19,"_reactNative"],[229,86,104,23],[229,87,104,23,"Text"],[229,91,104,23],[230,20,104,24,"style"],[230,25,104,29],[230,27,104,31,"styles"],[230,33,104,37],[230,34,104,38,"infoLabel"],[230,43,104,48],[231,20,104,48,"children"],[231,28,104,48],[231,30,104,49],[232,18,104,57],[233,20,104,57,"fileName"],[233,28,104,57],[233,30,104,57,"_jsxFileName"],[233,42,104,57],[234,20,104,57,"lineNumber"],[234,30,104,57],[235,20,104,57,"columnNumber"],[235,32,104,57],[236,18,104,57],[236,25,104,63],[236,26,104,64],[236,41,105,18],[236,45,105,18,"_reactJsxDevRuntime"],[236,64,105,18],[236,65,105,18,"jsxDEV"],[236,71,105,18],[236,73,105,19,"_reactNative"],[236,85,105,23],[236,86,105,23,"Text"],[236,90,105,23],[237,20,105,24,"style"],[237,25,105,29],[237,27,105,31,"styles"],[237,33,105,37],[237,34,105,38,"infoValue"],[237,43,105,48],[238,20,105,48,"children"],[238,28,105,48],[238,30,105,50,"citizen"],[238,37,105,57],[238,38,105,58,"fullName"],[239,18,105,66],[240,20,105,66,"fileName"],[240,28,105,66],[240,30,105,66,"_jsxFileName"],[240,42,105,66],[241,20,105,66,"lineNumber"],[241,30,105,66],[242,20,105,66,"columnNumber"],[242,32,105,66],[243,18,105,66],[243,25,105,73],[243,26,105,74],[244,16,105,74],[245,18,105,74,"fileName"],[245,26,105,74],[245,28,105,74,"_jsxFileName"],[245,40,105,74],[246,18,105,74,"lineNumber"],[246,28,105,74],[247,18,105,74,"columnNumber"],[247,30,105,74],[248,16,105,74],[248,23,106,22],[248,24,106,23],[248,26,108,17,"citizen"],[248,33,108,24],[248,34,108,25,"fatherName"],[248,44,108,35],[248,61,109,18],[248,65,109,18,"_reactJsxDevRuntime"],[248,84,109,18],[248,85,109,18,"jsxDEV"],[248,91,109,18],[248,93,109,19,"_reactNative"],[248,105,109,23],[248,106,109,23,"View"],[248,110,109,23],[249,18,109,24,"style"],[249,23,109,29],[249,25,109,31,"styles"],[249,31,109,37],[249,32,109,38,"infoRow"],[249,39,109,46],[250,18,109,46,"children"],[250,26,109,46],[250,42,110,20],[250,46,110,20,"_reactJsxDevRuntime"],[250,65,110,20],[250,66,110,20,"jsxDEV"],[250,72,110,20],[250,74,110,21,"_reactNative"],[250,86,110,25],[250,87,110,25,"Text"],[250,91,110,25],[251,20,110,26,"style"],[251,25,110,31],[251,27,110,33,"styles"],[251,33,110,39],[251,34,110,40,"infoLabel"],[251,43,110,50],[252,20,110,50,"children"],[252,28,110,50],[252,30,110,51],[253,18,110,61],[254,20,110,61,"fileName"],[254,28,110,61],[254,30,110,61,"_jsxFileName"],[254,42,110,61],[255,20,110,61,"lineNumber"],[255,30,110,61],[256,20,110,61,"columnNumber"],[256,32,110,61],[257,18,110,61],[257,25,110,67],[257,26,110,68],[257,41,111,20],[257,45,111,20,"_reactJsxDevRuntime"],[257,64,111,20],[257,65,111,20,"jsxDEV"],[257,71,111,20],[257,73,111,21,"_reactNative"],[257,85,111,25],[257,86,111,25,"Text"],[257,90,111,25],[258,20,111,26,"style"],[258,25,111,31],[258,27,111,33,"styles"],[258,33,111,39],[258,34,111,40,"infoValue"],[258,43,111,50],[259,20,111,50,"children"],[259,28,111,50],[259,30,111,52,"citizen"],[259,37,111,59],[259,38,111,60,"fatherName"],[260,18,111,70],[261,20,111,70,"fileName"],[261,28,111,70],[261,30,111,70,"_jsxFileName"],[261,42,111,70],[262,20,111,70,"lineNumber"],[262,30,111,70],[263,20,111,70,"columnNumber"],[263,32,111,70],[264,18,111,70],[264,25,111,77],[264,26,111,78],[265,16,111,78],[266,18,111,78,"fileName"],[266,26,111,78],[266,28,111,78,"_jsxFileName"],[266,40,111,78],[267,18,111,78,"lineNumber"],[267,28,111,78],[268,18,111,78,"columnNumber"],[268,30,111,78],[269,16,111,78],[269,23,112,24],[269,24,113,17],[269,26,115,17,"citizen"],[269,33,115,24],[269,34,115,25,"grandfatherName"],[269,49,115,40],[269,66,116,18],[269,70,116,18,"_reactJsxDevRuntime"],[269,89,116,18],[269,90,116,18,"jsxDEV"],[269,96,116,18],[269,98,116,19,"_reactNative"],[269,110,116,23],[269,111,116,23,"View"],[269,115,116,23],[270,18,116,24,"style"],[270,23,116,29],[270,25,116,31,"styles"],[270,31,116,37],[270,32,116,38,"infoRow"],[270,39,116,46],[271,18,116,46,"children"],[271,26,116,46],[271,42,117,20],[271,46,117,20,"_reactJsxDevRuntime"],[271,65,117,20],[271,66,117,20,"jsxDEV"],[271,72,117,20],[271,74,117,21,"_reactNative"],[271,86,117,25],[271,87,117,25,"Text"],[271,91,117,25],[272,20,117,26,"style"],[272,25,117,31],[272,27,117,33,"styles"],[272,33,117,39],[272,34,117,40,"infoLabel"],[272,43,117,50],[273,20,117,50,"children"],[273,28,117,50],[273,30,117,51],[274,18,117,68],[275,20,117,68,"fileName"],[275,28,117,68],[275,30,117,68,"_jsxFileName"],[275,42,117,68],[276,20,117,68,"lineNumber"],[276,30,117,68],[277,20,117,68,"columnNumber"],[277,32,117,68],[278,18,117,68],[278,25,117,74],[278,26,117,75],[278,41,118,20],[278,45,118,20,"_reactJsxDevRuntime"],[278,64,118,20],[278,65,118,20,"jsxDEV"],[278,71,118,20],[278,73,118,21,"_reactNative"],[278,85,118,25],[278,86,118,25,"Text"],[278,90,118,25],[279,20,118,26,"style"],[279,25,118,31],[279,27,118,33,"styles"],[279,33,118,39],[279,34,118,40,"infoValue"],[279,43,118,50],[280,20,118,50,"children"],[280,28,118,50],[280,30,118,52,"citizen"],[280,37,118,59],[280,38,118,60,"grandfatherName"],[281,18,118,75],[282,20,118,75,"fileName"],[282,28,118,75],[282,30,118,75,"_jsxFileName"],[282,42,118,75],[283,20,118,75,"lineNumber"],[283,30,118,75],[284,20,118,75,"columnNumber"],[284,32,118,75],[285,18,118,75],[285,25,118,82],[285,26,118,83],[286,16,118,83],[287,18,118,83,"fileName"],[287,26,118,83],[287,28,118,83,"_jsxFileName"],[287,40,118,83],[288,18,118,83,"lineNumber"],[288,28,118,83],[289,18,118,83,"columnNumber"],[289,30,118,83],[290,16,118,83],[290,23,119,24],[290,24,120,17],[290,26,122,17,"citizen"],[290,33,122,24],[290,34,122,25,"greatGrandfatherName"],[290,54,122,45],[290,71,123,18],[290,75,123,18,"_reactJsxDevRuntime"],[290,94,123,18],[290,95,123,18,"jsxDEV"],[290,101,123,18],[290,103,123,19,"_reactNative"],[290,115,123,23],[290,116,123,23,"View"],[290,120,123,23],[291,18,123,24,"style"],[291,23,123,29],[291,25,123,31,"styles"],[291,31,123,37],[291,32,123,38,"infoRow"],[291,39,123,46],[292,18,123,46,"children"],[292,26,123,46],[292,42,124,20],[292,46,124,20,"_reactJsxDevRuntime"],[292,65,124,20],[292,66,124,20,"jsxDEV"],[292,72,124,20],[292,74,124,21,"_reactNative"],[292,86,124,25],[292,87,124,25,"Text"],[292,91,124,25],[293,20,124,26,"style"],[293,25,124,31],[293,27,124,33,"styles"],[293,33,124,39],[293,34,124,40,"infoLabel"],[293,43,124,50],[294,20,124,50,"children"],[294,28,124,50],[294,30,124,51],[295,18,124,76],[296,20,124,76,"fileName"],[296,28,124,76],[296,30,124,76,"_jsxFileName"],[296,42,124,76],[297,20,124,76,"lineNumber"],[297,30,124,76],[298,20,124,76,"columnNumber"],[298,32,124,76],[299,18,124,76],[299,25,124,82],[299,26,124,83],[299,41,125,20],[299,45,125,20,"_reactJsxDevRuntime"],[299,64,125,20],[299,65,125,20,"jsxDEV"],[299,71,125,20],[299,73,125,21,"_reactNative"],[299,85,125,25],[299,86,125,25,"Text"],[299,90,125,25],[300,20,125,26,"style"],[300,25,125,31],[300,27,125,33,"styles"],[300,33,125,39],[300,34,125,40,"infoValue"],[300,43,125,50],[301,20,125,50,"children"],[301,28,125,50],[301,30,125,52,"citizen"],[301,37,125,59],[301,38,125,60,"greatGrandfatherName"],[302,18,125,80],[303,20,125,80,"fileName"],[303,28,125,80],[303,30,125,80,"_jsxFileName"],[303,42,125,80],[304,20,125,80,"lineNumber"],[304,30,125,80],[305,20,125,80,"columnNumber"],[305,32,125,80],[306,18,125,80],[306,25,125,87],[306,26,125,88],[307,16,125,88],[308,18,125,88,"fileName"],[308,26,125,88],[308,28,125,88,"_jsxFileName"],[308,40,125,88],[309,18,125,88,"lineNumber"],[309,28,125,88],[310,18,125,88,"columnNumber"],[310,30,125,88],[311,16,125,88],[311,23,126,24],[311,24,127,17],[311,26,129,17,"citizen"],[311,33,129,24],[311,34,129,25,"motherName"],[311,44,129,35],[311,61,130,18],[311,65,130,18,"_reactJsxDevRuntime"],[311,84,130,18],[311,85,130,18,"jsxDEV"],[311,91,130,18],[311,93,130,19,"_reactNative"],[311,105,130,23],[311,106,130,23,"View"],[311,110,130,23],[312,18,130,24,"style"],[312,23,130,29],[312,25,130,31,"styles"],[312,31,130,37],[312,32,130,38,"infoRow"],[312,39,130,46],[313,18,130,46,"children"],[313,26,130,46],[313,42,131,20],[313,46,131,20,"_reactJsxDevRuntime"],[313,65,131,20],[313,66,131,20,"jsxDEV"],[313,72,131,20],[313,74,131,21,"_reactNative"],[313,86,131,25],[313,87,131,25,"Text"],[313,91,131,25],[314,20,131,26,"style"],[314,25,131,31],[314,27,131,33,"styles"],[314,33,131,39],[314,34,131,40,"infoLabel"],[314,43,131,50],[315,20,131,50,"children"],[315,28,131,50],[315,30,131,51],[316,18,131,61],[317,20,131,61,"fileName"],[317,28,131,61],[317,30,131,61,"_jsxFileName"],[317,42,131,61],[318,20,131,61,"lineNumber"],[318,30,131,61],[319,20,131,61,"columnNumber"],[319,32,131,61],[320,18,131,61],[320,25,131,67],[320,26,131,68],[320,41,132,20],[320,45,132,20,"_reactJsxDevRuntime"],[320,64,132,20],[320,65,132,20,"jsxDEV"],[320,71,132,20],[320,73,132,21,"_reactNative"],[320,85,132,25],[320,86,132,25,"Text"],[320,90,132,25],[321,20,132,26,"style"],[321,25,132,31],[321,27,132,33,"styles"],[321,33,132,39],[321,34,132,40,"infoValue"],[321,43,132,50],[322,20,132,50,"children"],[322,28,132,50],[322,30,132,52,"citizen"],[322,37,132,59],[322,38,132,60,"motherName"],[323,18,132,70],[324,20,132,70,"fileName"],[324,28,132,70],[324,30,132,70,"_jsxFileName"],[324,42,132,70],[325,20,132,70,"lineNumber"],[325,30,132,70],[326,20,132,70,"columnNumber"],[326,32,132,70],[327,18,132,70],[327,25,132,77],[327,26,132,78],[328,16,132,78],[329,18,132,78,"fileName"],[329,26,132,78],[329,28,132,78,"_jsxFileName"],[329,40,132,78],[330,18,132,78,"lineNumber"],[330,28,132,78],[331,18,132,78,"columnNumber"],[331,30,132,78],[332,16,132,78],[332,23,133,24],[332,24,134,17],[332,39,136,16],[332,43,136,16,"_reactJsxDevRuntime"],[332,62,136,16],[332,63,136,16,"jsxDEV"],[332,69,136,16],[332,71,136,17,"_reactNative"],[332,83,136,21],[332,84,136,21,"View"],[332,88,136,21],[333,18,136,22,"style"],[333,23,136,27],[333,25,136,29,"styles"],[333,31,136,35],[333,32,136,36,"infoRow"],[333,39,136,44],[334,18,136,44,"children"],[334,26,136,44],[334,42,137,18],[334,46,137,18,"_reactJsxDevRuntime"],[334,65,137,18],[334,66,137,18,"jsxDEV"],[334,72,137,18],[334,74,137,19,"_reactNative"],[334,86,137,23],[334,87,137,23,"Text"],[334,91,137,23],[335,20,137,24,"style"],[335,25,137,29],[335,27,137,31,"styles"],[335,33,137,37],[335,34,137,38,"infoLabel"],[335,43,137,48],[336,20,137,48,"children"],[336,28,137,48],[336,30,137,49],[337,18,137,64],[338,20,137,64,"fileName"],[338,28,137,64],[338,30,137,64,"_jsxFileName"],[338,42,137,64],[339,20,137,64,"lineNumber"],[339,30,137,64],[340,20,137,64,"columnNumber"],[340,32,137,64],[341,18,137,64],[341,25,137,70],[341,26,137,71],[341,41,138,18],[341,45,138,18,"_reactJsxDevRuntime"],[341,64,138,18],[341,65,138,18,"jsxDEV"],[341,71,138,18],[341,73,138,19,"_reactNative"],[341,85,138,23],[341,86,138,23,"Text"],[341,90,138,23],[342,20,138,24,"style"],[342,25,138,29],[342,27,138,31,"styles"],[342,33,138,37],[342,34,138,38,"infoValue"],[342,43,138,48],[343,20,138,48,"children"],[343,28,138,48],[343,30,139,21,"citizen"],[343,37,139,28],[343,38,139,29,"maritalStatus"],[343,51,139,42],[343,56,139,47],[343,65,139,56],[343,68,139,59],[343,76,139,67],[343,79,139,70],[344,18,139,80],[345,20,139,80,"fileName"],[345,28,139,80],[345,30,139,80,"_jsxFileName"],[345,42,139,80],[346,20,139,80,"lineNumber"],[346,30,139,80],[347,20,139,80,"columnNumber"],[347,32,139,80],[348,18,139,80],[348,25,140,24],[348,26,140,25],[349,16,140,25],[350,18,140,25,"fileName"],[350,26,140,25],[350,28,140,25,"_jsxFileName"],[350,40,140,25],[351,18,140,25,"lineNumber"],[351,28,140,25],[352,18,140,25,"columnNumber"],[352,30,140,25],[353,16,140,25],[353,23,141,22],[353,24,141,23],[353,26,143,17,"citizen"],[353,33,143,24],[353,34,143,25,"maritalStatus"],[353,47,143,38],[353,52,143,43],[353,61,143,52],[353,65,143,56,"citizen"],[353,72,143,63],[353,73,143,64,"spouseName"],[353,83,143,74],[353,100,144,18],[353,104,144,18,"_reactJsxDevRuntime"],[353,123,144,18],[353,124,144,18,"jsxDEV"],[353,130,144,18],[353,132,144,19,"_reactNative"],[353,144,144,23],[353,145,144,23,"View"],[353,149,144,23],[354,18,144,24,"style"],[354,23,144,29],[354,25,144,31,"styles"],[354,31,144,37],[354,32,144,38,"infoRow"],[354,39,144,46],[355,18,144,46,"children"],[355,26,144,46],[355,42,145,20],[355,46,145,20,"_reactJsxDevRuntime"],[355,65,145,20],[355,66,145,20,"jsxDEV"],[355,72,145,20],[355,74,145,21,"_reactNative"],[355,86,145,25],[355,87,145,25,"Text"],[355,91,145,25],[356,20,145,26,"style"],[356,25,145,31],[356,27,145,33,"styles"],[356,33,145,39],[356,34,145,40,"infoLabel"],[356,43,145,50],[357,20,145,50,"children"],[357,28,145,50],[357,30,145,51],[358,18,145,64],[359,20,145,64,"fileName"],[359,28,145,64],[359,30,145,64,"_jsxFileName"],[359,42,145,64],[360,20,145,64,"lineNumber"],[360,30,145,64],[361,20,145,64,"columnNumber"],[361,32,145,64],[362,18,145,64],[362,25,145,70],[362,26,145,71],[362,41,146,20],[362,45,146,20,"_reactJsxDevRuntime"],[362,64,146,20],[362,65,146,20,"jsxDEV"],[362,71,146,20],[362,73,146,21,"_reactNative"],[362,85,146,25],[362,86,146,25,"Text"],[362,90,146,25],[363,20,146,26,"style"],[363,25,146,31],[363,27,146,33,"styles"],[363,33,146,39],[363,34,146,40,"infoValue"],[363,43,146,50],[364,20,146,50,"children"],[364,28,146,50],[364,30,146,52,"citizen"],[364,37,146,59],[364,38,146,60,"spouseName"],[365,18,146,70],[366,20,146,70,"fileName"],[366,28,146,70],[366,30,146,70,"_jsxFileName"],[366,42,146,70],[367,20,146,70,"lineNumber"],[367,30,146,70],[368,20,146,70,"columnNumber"],[368,32,146,70],[369,18,146,70],[369,25,146,77],[369,26,146,78],[370,16,146,78],[371,18,146,78,"fileName"],[371,26,146,78],[371,28,146,78,"_jsxFileName"],[371,40,146,78],[372,18,146,78,"lineNumber"],[372,28,146,78],[373,18,146,78,"columnNumber"],[373,30,146,78],[374,16,146,78],[374,23,147,24],[374,24,148,17],[374,26,150,17,"citizen"],[374,33,150,24],[374,34,150,25,"children"],[374,42,150,33],[374,46,150,37,"citizen"],[374,53,150,44],[374,54,150,45,"children"],[374,62,150,53],[374,63,150,54,"length"],[374,69,150,60],[374,72,150,63],[374,73,150,64],[374,90,151,18],[374,94,151,18,"_reactJsxDevRuntime"],[374,113,151,18],[374,114,151,18,"jsxDEV"],[374,120,151,18],[374,122,151,19,"_reactNative"],[374,134,151,23],[374,135,151,23,"View"],[374,139,151,23],[375,18,151,24,"style"],[375,23,151,29],[375,25,151,31,"styles"],[375,31,151,37],[375,32,151,38,"infoRow"],[375,39,151,46],[376,18,151,46,"children"],[376,26,151,46],[376,42,152,20],[376,46,152,20,"_reactJsxDevRuntime"],[376,65,152,20],[376,66,152,20,"jsxDEV"],[376,72,152,20],[376,74,152,21,"_reactNative"],[376,86,152,25],[376,87,152,25,"Text"],[376,91,152,25],[377,20,152,26,"style"],[377,25,152,31],[377,27,152,33,"styles"],[377,33,152,39],[377,34,152,40,"infoLabel"],[377,43,152,50],[378,20,152,50,"children"],[378,28,152,50],[378,30,152,51],[379,18,152,65],[380,20,152,65,"fileName"],[380,28,152,65],[380,30,152,65,"_jsxFileName"],[380,42,152,65],[381,20,152,65,"lineNumber"],[381,30,152,65],[382,20,152,65,"columnNumber"],[382,32,152,65],[383,18,152,65],[383,25,152,71],[383,26,152,72],[383,41,153,20],[383,45,153,20,"_reactJsxDevRuntime"],[383,64,153,20],[383,65,153,20,"jsxDEV"],[383,71,153,20],[383,73,153,21,"_reactNative"],[383,85,153,25],[383,86,153,25,"Text"],[383,90,153,25],[384,20,153,26,"style"],[384,25,153,31],[384,27,153,33,"styles"],[384,33,153,39],[384,34,153,40,"infoValue"],[384,43,153,50],[385,20,153,50,"children"],[385,28,153,50],[385,30,153,52,"citizen"],[385,37,153,59],[385,38,153,60,"children"],[385,46,153,68],[385,47,153,69,"length"],[386,18,153,75],[387,20,153,75,"fileName"],[387,28,153,75],[387,30,153,75,"_jsxFileName"],[387,42,153,75],[388,20,153,75,"lineNumber"],[388,30,153,75],[389,20,153,75,"columnNumber"],[389,32,153,75],[390,18,153,75],[390,25,153,82],[390,26,153,83],[391,16,153,83],[392,18,153,83,"fileName"],[392,26,153,83],[392,28,153,83,"_jsxFileName"],[392,40,153,83],[393,18,153,83,"lineNumber"],[393,28,153,83],[394,18,153,83,"columnNumber"],[394,30,153,83],[395,16,153,83],[395,23,154,24],[395,24,155,17],[396,14,155,17],[397,16,155,17,"fileName"],[397,24,155,17],[397,26,155,17,"_jsxFileName"],[397,38,155,17],[398,16,155,17,"lineNumber"],[398,26,155,17],[399,16,155,17,"columnNumber"],[399,28,155,17],[400,14,155,17],[400,21,156,20],[400,22,156,21],[401,12,156,21],[402,14,156,21,"fileName"],[402,22,156,21],[402,24,156,21,"_jsxFileName"],[402,36,156,21],[403,14,156,21,"lineNumber"],[403,24,156,21],[404,14,156,21,"columnNumber"],[404,26,156,21],[405,12,156,21],[405,19,157,18],[405,20,157,19],[405,35,160,12],[405,39,160,12,"_reactJsxDevRuntime"],[405,58,160,12],[405,59,160,12,"jsxDEV"],[405,65,160,12],[405,67,160,13,"_reactNative"],[405,79,160,17],[405,80,160,17,"View"],[405,84,160,17],[406,14,160,18,"style"],[406,19,160,23],[406,21,160,25,"styles"],[406,27,160,31],[406,28,160,32,"sunContainer"],[406,40,160,45],[407,14,160,45,"children"],[407,22,160,45],[407,37,161,14],[407,41,161,14,"_reactJsxDevRuntime"],[407,60,161,14],[407,61,161,14,"jsxDEV"],[407,67,161,14],[407,69,161,15,"_expoVectorIcons"],[407,85,161,23],[407,86,161,23,"Ionicons"],[407,94,161,23],[408,16,161,24,"name"],[408,20,161,28],[408,22,161,29],[408,29,161,36],[409,16,161,37,"size"],[409,20,161,41],[409,22,161,43],[409,24,161,46],[410,16,161,47,"color"],[410,21,161,52],[410,23,161,53],[411,14,161,62],[412,16,161,62,"fileName"],[412,24,161,62],[412,26,161,62,"_jsxFileName"],[412,38,161,62],[413,16,161,62,"lineNumber"],[413,26,161,62],[414,16,161,62,"columnNumber"],[414,28,161,62],[415,14,161,62],[415,21,161,64],[416,12,161,65],[417,14,161,65,"fileName"],[417,22,161,65],[417,24,161,65,"_jsxFileName"],[417,36,161,65],[418,14,161,65,"lineNumber"],[418,24,161,65],[419,14,161,65,"columnNumber"],[419,26,161,65],[420,12,161,65],[420,19,162,18],[420,20,162,19],[420,35,165,12],[420,39,165,12,"_reactJsxDevRuntime"],[420,58,165,12],[420,59,165,12,"jsxDEV"],[420,65,165,12],[420,67,165,13,"_reactNative"],[420,79,165,17],[420,80,165,17,"View"],[420,84,165,17],[421,14,165,18,"style"],[421,19,165,23],[421,21,165,25,"styles"],[421,27,165,31],[421,28,165,32,"middleSection"],[421,41,165,46],[422,14,165,46,"children"],[422,22,165,46],[422,38,166,14],[422,42,166,14,"_reactJsxDevRuntime"],[422,61,166,14],[422,62,166,14,"jsxDEV"],[422,68,166,14],[422,70,166,15,"_reactNative"],[422,82,166,19],[422,83,166,19,"View"],[422,87,166,19],[423,16,166,20,"style"],[423,21,166,25],[423,23,166,27,"styles"],[423,29,166,33],[423,30,166,34,"regionRow"],[423,39,166,44],[424,16,166,44,"children"],[424,24,166,44],[424,40,167,16],[424,44,167,16,"_reactJsxDevRuntime"],[424,63,167,16],[424,64,167,16,"jsxDEV"],[424,70,167,16],[424,72,167,17,"_reactNative"],[424,84,167,21],[424,85,167,21,"Text"],[424,89,167,21],[425,18,167,22,"style"],[425,23,167,27],[425,25,167,29,"styles"],[425,31,167,35],[425,32,167,36,"regionLabel"],[425,43,167,48],[426,18,167,48,"children"],[426,26,167,48],[426,28,167,49],[427,16,167,61],[428,18,167,61,"fileName"],[428,26,167,61],[428,28,167,61,"_jsxFileName"],[428,40,167,61],[429,18,167,61,"lineNumber"],[429,28,167,61],[430,18,167,61,"columnNumber"],[430,30,167,61],[431,16,167,61],[431,23,167,67],[431,24,167,68],[431,39,168,16],[431,43,168,16,"_reactJsxDevRuntime"],[431,62,168,16],[431,63,168,16,"jsxDEV"],[431,69,168,16],[431,71,168,17,"_reactNative"],[431,83,168,21],[431,84,168,21,"Text"],[431,88,168,21],[432,18,168,22,"style"],[432,23,168,27],[432,25,168,29,"styles"],[432,31,168,35],[432,32,168,36,"regionValue"],[432,43,168,48],[433,18,168,48,"children"],[433,26,168,48],[433,28,168,50,"REGION_LABELS"],[433,37,168,63],[433,38,168,63,"REGION_LABELS"],[433,51,168,63],[433,52,168,64,"citizen"],[433,59,168,71],[433,60,168,72,"region"],[433,66,168,78],[433,67,168,79],[433,68,168,80,"en"],[434,16,168,82],[435,18,168,82,"fileName"],[435,26,168,82],[435,28,168,82,"_jsxFileName"],[435,40,168,82],[436,18,168,82,"lineNumber"],[436,28,168,82],[437,18,168,82,"columnNumber"],[437,30,168,82],[438,16,168,82],[438,23,168,89],[438,24,168,90],[439,14,168,90],[440,16,168,90,"fileName"],[440,24,168,90],[440,26,168,90,"_jsxFileName"],[440,38,168,90],[441,16,168,90,"lineNumber"],[441,26,168,90],[442,16,168,90,"columnNumber"],[442,28,168,90],[443,14,168,90],[443,21,169,20],[443,22,169,21],[443,37,171,14],[443,41,171,14,"_reactJsxDevRuntime"],[443,60,171,14],[443,61,171,14,"jsxDEV"],[443,67,171,14],[443,69,171,15,"_reactNative"],[443,81,171,19],[443,82,171,19,"View"],[443,86,171,19],[444,16,171,20,"style"],[444,21,171,25],[444,23,171,27,"styles"],[444,29,171,33],[444,30,171,34,"citizenIdRow"],[444,42,171,47],[445,16,171,47,"children"],[445,24,171,47],[445,40,172,16],[445,44,172,16,"_reactJsxDevRuntime"],[445,63,172,16],[445,64,172,16,"jsxDEV"],[445,70,172,16],[445,72,172,17,"_reactNative"],[445,84,172,21],[445,85,172,21,"Text"],[445,89,172,21],[446,18,172,22,"style"],[446,23,172,27],[446,25,172,29,"styles"],[446,31,172,35],[446,32,172,36,"citizenIdLabel"],[446,46,172,51],[447,18,172,51,"children"],[447,26,172,51],[447,28,172,52],[448,16,172,79],[449,18,172,79,"fileName"],[449,26,172,79],[449,28,172,79,"_jsxFileName"],[449,40,172,79],[450,18,172,79,"lineNumber"],[450,28,172,79],[451,18,172,79,"columnNumber"],[451,30,172,79],[452,16,172,79],[452,23,172,85],[452,24,172,86],[452,39,173,16],[452,43,173,16,"_reactJsxDevRuntime"],[452,62,173,16],[452,63,173,16,"jsxDEV"],[452,69,173,16],[452,71,173,17,"_reactNative"],[452,83,173,21],[452,84,173,21,"Text"],[452,88,173,21],[453,18,173,22,"style"],[453,23,173,27],[453,25,173,29,"styles"],[453,31,173,35],[453,32,173,36,"citizenIdValue"],[453,46,173,51],[454,18,173,51,"children"],[454,26,173,51],[454,28,173,53,"citizen"],[454,35,173,60],[454,36,173,61,"citizenId"],[455,16,173,70],[456,18,173,70,"fileName"],[456,26,173,70],[456,28,173,70,"_jsxFileName"],[456,40,173,70],[457,18,173,70,"lineNumber"],[457,28,173,70],[458,18,173,70,"columnNumber"],[458,30,173,70],[459,16,173,70],[459,23,173,77],[459,24,173,78],[460,14,173,78],[461,16,173,78,"fileName"],[461,24,173,78],[461,26,173,78,"_jsxFileName"],[461,38,173,78],[462,16,173,78,"lineNumber"],[462,26,173,78],[463,16,173,78,"columnNumber"],[463,28,173,78],[464,14,173,78],[464,21,174,20],[464,22,174,21],[465,12,174,21],[466,14,174,21,"fileName"],[466,22,174,21],[466,24,174,21,"_jsxFileName"],[466,36,174,21],[467,14,174,21,"lineNumber"],[467,24,174,21],[468,14,174,21,"columnNumber"],[468,26,174,21],[469,12,174,21],[469,19,175,18],[469,20,175,19],[470,10,175,19],[471,12,175,19,"fileName"],[471,20,175,19],[471,22,175,19,"_jsxFileName"],[471,34,175,19],[472,12,175,19,"lineNumber"],[472,22,175,19],[473,12,175,19,"columnNumber"],[473,24,175,19],[474,10,175,19],[474,17,176,16],[474,18,176,17],[474,33,179,10],[474,37,179,10,"_reactJsxDevRuntime"],[474,56,179,10],[474,57,179,10,"jsxDEV"],[474,63,179,10],[474,65,179,11,"_reactNative"],[474,77,179,15],[474,78,179,15,"View"],[474,82,179,15],[475,12,179,16,"style"],[475,17,179,21],[475,19,179,23,"styles"],[475,25,179,29],[475,26,179,30,"cardFooter"],[475,36,179,41],[476,12,179,41,"children"],[476,20,179,41],[476,36,180,12],[476,40,180,12,"_reactJsxDevRuntime"],[476,59,180,12],[476,60,180,12,"jsxDEV"],[476,66,180,12],[476,68,180,13,"_reactNative"],[476,80,180,17],[476,81,180,17,"View"],[476,85,180,17],[477,14,180,18,"style"],[477,19,180,23],[477,21,180,25,"styles"],[477,27,180,31],[477,28,180,32,"footerLeft"],[477,38,180,43],[478,14,180,43,"children"],[478,22,180,43],[478,38,181,14],[478,42,181,14,"_reactJsxDevRuntime"],[478,61,181,14],[478,62,181,14,"jsxDEV"],[478,68,181,14],[478,70,181,15,"_reactNative"],[478,82,181,19],[478,83,181,19,"View"],[478,87,181,19],[479,16,181,20,"style"],[479,21,181,25],[479,23,181,27,"styles"],[479,29,181,33],[479,30,181,34,"footerRow"],[479,39,181,44],[480,16,181,44,"children"],[480,24,181,44],[480,40,182,16],[480,44,182,16,"_reactJsxDevRuntime"],[480,63,182,16],[480,64,182,16,"jsxDEV"],[480,70,182,16],[480,72,182,17,"_reactNative"],[480,84,182,21],[480,85,182,21,"Text"],[480,89,182,21],[481,18,182,22,"style"],[481,23,182,27],[481,25,182,29,"styles"],[481,31,182,35],[481,32,182,36,"footerLabel"],[481,43,182,48],[482,18,182,48,"children"],[482,26,182,48],[482,28,182,49],[483,16,182,75],[484,18,182,75,"fileName"],[484,26,182,75],[484,28,182,75,"_jsxFileName"],[484,40,182,75],[485,18,182,75,"lineNumber"],[485,28,182,75],[486,18,182,75,"columnNumber"],[486,30,182,75],[487,16,182,75],[487,23,182,81],[487,24,182,82],[487,39,183,16],[487,43,183,16,"_reactJsxDevRuntime"],[487,62,183,16],[487,63,183,16,"jsxDEV"],[487,69,183,16],[487,71,183,17,"_reactNative"],[487,83,183,21],[487,84,183,21,"Text"],[487,88,183,21],[488,18,183,22,"style"],[488,23,183,27],[488,25,183,29,"styles"],[488,31,183,35],[488,32,183,36,"footerValue"],[488,43,183,48],[489,18,183,48,"children"],[489,26,183,48],[489,28,183,50,"citizen"],[489,35,183,57],[489,36,183,58,"citizenId"],[489,45,183,67],[489,46,183,68,"replace"],[489,53,183,75],[489,54,183,76],[489,58,183,80],[489,60,183,82],[489,62,183,84],[490,16,183,85],[491,18,183,85,"fileName"],[491,26,183,85],[491,28,183,85,"_jsxFileName"],[491,40,183,85],[492,18,183,85,"lineNumber"],[492,28,183,85],[493,18,183,85,"columnNumber"],[493,30,183,85],[494,16,183,85],[494,23,183,92],[494,24,183,93],[495,14,183,93],[496,16,183,93,"fileName"],[496,24,183,93],[496,26,183,93,"_jsxFileName"],[496,38,183,93],[497,16,183,93,"lineNumber"],[497,26,183,93],[498,16,183,93,"columnNumber"],[498,28,183,93],[499,14,183,93],[499,21,184,20],[499,22,184,21],[499,37,186,14],[499,41,186,14,"_reactJsxDevRuntime"],[499,60,186,14],[499,61,186,14,"jsxDEV"],[499,67,186,14],[499,69,186,15,"_reactNative"],[499,81,186,19],[499,82,186,19,"View"],[499,86,186,19],[500,16,186,20,"style"],[500,21,186,25],[500,23,186,27,"styles"],[500,29,186,33],[500,30,186,34,"footerRow"],[500,39,186,44],[501,16,186,44,"children"],[501,24,186,44],[501,40,187,16],[501,44,187,16,"_reactJsxDevRuntime"],[501,63,187,16],[501,64,187,16,"jsxDEV"],[501,70,187,16],[501,72,187,17,"_reactNative"],[501,84,187,21],[501,85,187,21,"Text"],[501,89,187,21],[502,18,187,22,"style"],[502,23,187,27],[502,25,187,29,"styles"],[502,31,187,35],[502,32,187,36,"footerLabel"],[502,43,187,48],[503,18,187,48,"children"],[503,26,187,48],[503,28,187,49],[504,16,187,72],[505,18,187,72,"fileName"],[505,26,187,72],[505,28,187,72,"_jsxFileName"],[505,40,187,72],[506,18,187,72,"lineNumber"],[506,28,187,72],[507,18,187,72,"columnNumber"],[507,30,187,72],[508,16,187,72],[508,23,187,78],[508,24,187,79],[508,39,188,16],[508,43,188,16,"_reactJsxDevRuntime"],[508,62,188,16],[508,63,188,16,"jsxDEV"],[508,69,188,16],[508,71,188,17,"_reactNative"],[508,83,188,21],[508,84,188,21,"Text"],[508,88,188,21],[509,18,188,22,"style"],[509,23,188,27],[509,25,188,29,"styles"],[509,31,188,35],[509,32,188,36,"footerValue"],[509,43,188,48],[510,18,188,48,"children"],[510,26,188,48],[510,28,188,50,"citizen"],[510,35,188,57],[510,36,188,58,"qrCode"],[510,42,188,64],[510,43,188,65,"substring"],[510,52,188,74],[510,53,188,75],[510,54,188,76],[510,56,188,78],[510,58,188,80],[511,16,188,81],[512,18,188,81,"fileName"],[512,26,188,81],[512,28,188,81,"_jsxFileName"],[512,40,188,81],[513,18,188,81,"lineNumber"],[513,28,188,81],[514,18,188,81,"columnNumber"],[514,30,188,81],[515,16,188,81],[515,23,188,88],[515,24,188,89],[516,14,188,89],[517,16,188,89,"fileName"],[517,24,188,89],[517,26,188,89,"_jsxFileName"],[517,38,188,89],[518,16,188,89,"lineNumber"],[518,26,188,89],[519,16,188,89,"columnNumber"],[519,28,188,89],[520,14,188,89],[520,21,189,20],[520,22,189,21],[520,37,191,14],[520,41,191,14,"_reactJsxDevRuntime"],[520,60,191,14],[520,61,191,14,"jsxDEV"],[520,67,191,14],[520,69,191,15,"_reactNative"],[520,81,191,19],[520,82,191,19,"View"],[520,86,191,19],[521,16,191,20,"style"],[521,21,191,25],[521,23,191,27,"styles"],[521,29,191,33],[521,30,191,34,"footerRow"],[521,39,191,44],[522,16,191,44,"children"],[522,24,191,44],[522,40,192,16],[522,44,192,16,"_reactJsxDevRuntime"],[522,63,192,16],[522,64,192,16,"jsxDEV"],[522,70,192,16],[522,72,192,17,"_reactNative"],[522,84,192,21],[522,85,192,21,"Text"],[522,89,192,21],[523,18,192,22,"style"],[523,23,192,27],[523,25,192,29,"styles"],[523,31,192,35],[523,32,192,36,"footerLabel"],[523,43,192,48],[524,18,192,48,"children"],[524,26,192,48],[524,28,192,49],[525,16,192,62],[526,18,192,62,"fileName"],[526,26,192,62],[526,28,192,62,"_jsxFileName"],[526,40,192,62],[527,18,192,62,"lineNumber"],[527,28,192,62],[528,18,192,62,"columnNumber"],[528,30,192,62],[529,16,192,62],[529,23,192,68],[529,24,192,69],[529,39,193,16],[529,43,193,16,"_reactJsxDevRuntime"],[529,62,193,16],[529,63,193,16,"jsxDEV"],[529,69,193,16],[529,71,193,17,"_reactNative"],[529,83,193,21],[529,84,193,21,"Text"],[529,88,193,21],[530,18,193,22,"style"],[530,23,193,27],[530,25,193,29,"styles"],[530,31,193,35],[530,32,193,36,"footerValue"],[530,43,193,48],[531,18,193,48,"children"],[531,26,193,48],[531,28,193,50,"formatDate"],[531,38,193,60],[531,39,193,61,"citizen"],[531,46,193,68],[531,47,193,69,"approvedAt"],[531,57,193,79],[532,16,193,80],[533,18,193,80,"fileName"],[533,26,193,80],[533,28,193,80,"_jsxFileName"],[533,40,193,80],[534,18,193,80,"lineNumber"],[534,28,193,80],[535,18,193,80,"columnNumber"],[535,30,193,80],[536,16,193,80],[536,23,193,87],[536,24,193,88],[537,14,193,88],[538,16,193,88,"fileName"],[538,24,193,88],[538,26,193,88,"_jsxFileName"],[538,38,193,88],[539,16,193,88,"lineNumber"],[539,26,193,88],[540,16,193,88,"columnNumber"],[540,28,193,88],[541,14,193,88],[541,21,194,20],[541,22,194,21],[542,12,194,21],[543,14,194,21,"fileName"],[543,22,194,21],[543,24,194,21,"_jsxFileName"],[543,36,194,21],[544,14,194,21,"lineNumber"],[544,24,194,21],[545,14,194,21,"columnNumber"],[545,26,194,21],[546,12,194,21],[546,19,195,18],[546,20,195,19],[546,35,197,12],[546,39,197,12,"_reactJsxDevRuntime"],[546,58,197,12],[546,59,197,12,"jsxDEV"],[546,65,197,12],[546,67,197,13,"_reactNative"],[546,79,197,17],[546,80,197,17,"View"],[546,84,197,17],[547,14,197,18,"style"],[547,19,197,23],[547,21,197,25,"styles"],[547,27,197,31],[547,28,197,32,"footerRight"],[547,39,197,44],[548,14,197,44,"children"],[548,22,197,44],[548,37,198,14],[548,41,198,14,"_reactJsxDevRuntime"],[548,60,198,14],[548,61,198,14,"jsxDEV"],[548,67,198,14],[548,69,198,15,"QRCode"],[548,75,198,21],[548,76,198,21,"default"],[548,83,198,21],[549,16,198,22,"value"],[549,21,198,27],[549,23,198,29,"citizen"],[549,30,198,36],[549,31,198,37,"qrCode"],[549,37,198,44],[550,16,198,45,"size"],[550,20,198,49],[550,22,198,51],[550,24,198,54],[551,16,198,55,"backgroundColor"],[551,31,198,70],[551,33,198,71],[551,46,198,84],[552,16,198,85,"color"],[552,21,198,90],[552,23,198,91],[553,14,198,100],[554,16,198,100,"fileName"],[554,24,198,100],[554,26,198,100,"_jsxFileName"],[554,38,198,100],[555,16,198,100,"lineNumber"],[555,26,198,100],[556,16,198,100,"columnNumber"],[556,28,198,100],[557,14,198,100],[557,21,198,102],[558,12,198,103],[559,14,198,103,"fileName"],[559,22,198,103],[559,24,198,103,"_jsxFileName"],[559,36,198,103],[560,14,198,103,"lineNumber"],[560,24,198,103],[561,14,198,103,"columnNumber"],[561,26,198,103],[562,12,198,103],[562,19,199,18],[562,20,199,19],[563,10,199,19],[564,12,199,19,"fileName"],[564,20,199,19],[564,22,199,19,"_jsxFileName"],[564,34,199,19],[565,12,199,19,"lineNumber"],[565,22,199,19],[566,12,199,19,"columnNumber"],[566,24,199,19],[567,10,199,19],[567,17,200,16],[567,18,200,17],[568,8,200,17],[569,10,200,17,"fileName"],[569,18,200,17],[569,20,200,17,"_jsxFileName"],[569,32,200,17],[570,10,200,17,"lineNumber"],[570,20,200,17],[571,10,200,17,"columnNumber"],[571,22,200,17],[572,8,200,17],[572,15,201,14],[572,16,201,15],[572,31,204,8],[572,35,204,8,"_reactJsxDevRuntime"],[572,54,204,8],[572,55,204,8,"jsxDEV"],[572,61,204,8],[572,63,204,9,"_reactNative"],[572,75,204,13],[572,76,204,13,"View"],[572,80,204,13],[573,10,204,14,"style"],[573,15,204,19],[573,17,204,21,"styles"],[573,23,204,27],[573,24,204,28,"statusBadge"],[573,35,204,40],[574,10,204,40,"children"],[574,18,204,40],[574,34,205,10],[574,38,205,10,"_reactJsxDevRuntime"],[574,57,205,10],[574,58,205,10,"jsxDEV"],[574,64,205,10],[574,66,205,11,"_expoVectorIcons"],[574,82,205,19],[574,83,205,19,"Ionicons"],[574,91,205,19],[575,12,205,20,"name"],[575,16,205,24],[575,18,205,25],[575,36,205,43],[576,12,205,44,"size"],[576,16,205,48],[576,18,205,50],[576,20,205,53],[577,12,205,54,"color"],[577,17,205,59],[577,19,205,61,"Colors"],[577,25,205,67],[577,26,205,67,"default"],[577,33,205,67],[577,34,205,68,"mint"],[578,10,205,73],[579,12,205,73,"fileName"],[579,20,205,73],[579,22,205,73,"_jsxFileName"],[579,34,205,73],[580,12,205,73,"lineNumber"],[580,22,205,73],[581,12,205,73,"columnNumber"],[581,24,205,73],[582,10,205,73],[582,17,205,75],[582,18,205,76],[582,33,206,10],[582,37,206,10,"_reactJsxDevRuntime"],[582,56,206,10],[582,57,206,10,"jsxDEV"],[582,63,206,10],[582,65,206,11,"_reactNative"],[582,77,206,15],[582,78,206,15,"Text"],[582,82,206,15],[583,12,206,16,"style"],[583,17,206,21],[583,19,206,23,"styles"],[583,25,206,29],[583,26,206,30,"statusText"],[583,36,206,41],[584,12,206,41,"children"],[584,20,206,41],[584,22,206,42],[585,10,206,68],[586,12,206,68,"fileName"],[586,20,206,68],[586,22,206,68,"_jsxFileName"],[586,34,206,68],[587,12,206,68,"lineNumber"],[587,22,206,68],[588,12,206,68,"columnNumber"],[588,24,206,68],[589,10,206,68],[589,17,206,74],[589,18,206,75],[590,8,206,75],[591,10,206,75,"fileName"],[591,18,206,75],[591,20,206,75,"_jsxFileName"],[591,32,206,75],[592,10,206,75,"lineNumber"],[592,20,206,75],[593,10,206,75,"columnNumber"],[593,22,206,75],[594,8,206,75],[594,15,207,14],[594,16,207,15],[594,31,210,8],[594,35,210,8,"_reactJsxDevRuntime"],[594,54,210,8],[594,55,210,8,"jsxDEV"],[594,61,210,8],[594,63,210,9,"_reactNative"],[594,75,210,13],[594,76,210,13,"Text"],[594,80,210,13],[595,10,210,14,"style"],[595,15,210,19],[595,17,210,21,"styles"],[595,23,210,27],[595,24,210,28,"infoText"],[595,32,210,37],[596,10,210,37,"children"],[596,18,210,37],[596,20,210,38],[597,8,212,8],[598,10,212,8,"fileName"],[598,18,212,8],[598,20,212,8,"_jsxFileName"],[598,32,212,8],[599,10,212,8,"lineNumber"],[599,20,212,8],[600,10,212,8,"columnNumber"],[600,22,212,8],[601,8,212,8],[601,15,212,14],[601,16,212,15],[601,31,215,8],[601,35,215,8,"_reactJsxDevRuntime"],[601,54,215,8],[601,55,215,8,"jsxDEV"],[601,61,215,8],[601,63,215,9,"_reactNative"],[601,75,215,13],[601,76,215,13,"View"],[601,80,215,13],[602,10,215,14,"style"],[602,15,215,19],[602,17,215,21,"styles"],[602,23,215,27],[602,24,215,28,"actions"],[602,31,215,36],[603,10,215,36,"children"],[603,18,215,36],[603,34,216,10],[603,38,216,10,"_reactJsxDevRuntime"],[603,57,216,10],[603,58,216,10,"jsxDEV"],[603,64,216,10],[603,66,216,11,"_reactNative"],[603,78,216,27],[603,79,216,27,"TouchableOpacity"],[603,95,216,27],[604,12,216,28,"style"],[604,17,216,33],[604,19,216,35,"styles"],[604,25,216,41],[604,26,216,42,"actionButton"],[604,38,216,55],[605,12,216,55,"children"],[605,20,216,55],[605,36,217,12],[605,40,217,12,"_reactJsxDevRuntime"],[605,59,217,12],[605,60,217,12,"jsxDEV"],[605,66,217,12],[605,68,217,13,"_expoVectorIcons"],[605,84,217,21],[605,85,217,21,"Ionicons"],[605,93,217,21],[606,14,217,22,"name"],[606,18,217,26],[606,20,217,27],[606,38,217,45],[607,14,217,46,"size"],[607,18,217,50],[607,20,217,52],[607,22,217,55],[608,14,217,56,"color"],[608,19,217,61],[608,21,217,63,"Colors"],[608,27,217,69],[608,28,217,69,"default"],[608,35,217,69],[608,36,217,70,"teal"],[609,12,217,75],[610,14,217,75,"fileName"],[610,22,217,75],[610,24,217,75,"_jsxFileName"],[610,36,217,75],[611,14,217,75,"lineNumber"],[611,24,217,75],[612,14,217,75,"columnNumber"],[612,26,217,75],[613,12,217,75],[613,19,217,77],[613,20,217,78],[613,35,218,12],[613,39,218,12,"_reactJsxDevRuntime"],[613,58,218,12],[613,59,218,12,"jsxDEV"],[613,65,218,12],[613,67,218,13,"_reactNative"],[613,79,218,17],[613,80,218,17,"Text"],[613,84,218,17],[614,14,218,18,"style"],[614,19,218,23],[614,21,218,25,"styles"],[614,27,218,31],[614,28,218,32,"actionText"],[614,38,218,43],[615,14,218,43,"children"],[615,22,218,43],[615,24,218,44],[616,12,218,52],[617,14,218,52,"fileName"],[617,22,218,52],[617,24,218,52,"_jsxFileName"],[617,36,218,52],[618,14,218,52,"lineNumber"],[618,24,218,52],[619,14,218,52,"columnNumber"],[619,26,218,52],[620,12,218,52],[620,19,218,58],[620,20,218,59],[621,10,218,59],[622,12,218,59,"fileName"],[622,20,218,59],[622,22,218,59,"_jsxFileName"],[622,34,218,59],[623,12,218,59,"lineNumber"],[623,22,218,59],[624,12,218,59,"columnNumber"],[624,24,218,59],[625,10,218,59],[625,17,219,28],[625,18,219,29],[625,33,221,10],[625,37,221,10,"_reactJsxDevRuntime"],[625,56,221,10],[625,57,221,10,"jsxDEV"],[625,63,221,10],[625,65,221,11,"_reactNative"],[625,77,221,27],[625,78,221,27,"TouchableOpacity"],[625,94,221,27],[626,12,221,28,"style"],[626,17,221,33],[626,19,221,35,"styles"],[626,25,221,41],[626,26,221,42,"actionButton"],[626,38,221,55],[627,12,221,55,"children"],[627,20,221,55],[627,36,222,12],[627,40,222,12,"_reactJsxDevRuntime"],[627,59,222,12],[627,60,222,12,"jsxDEV"],[627,66,222,12],[627,68,222,13,"_expoVectorIcons"],[627,84,222,21],[627,85,222,21,"Ionicons"],[627,93,222,21],[628,14,222,22,"name"],[628,18,222,26],[628,20,222,27],[628,37,222,44],[629,14,222,45,"size"],[629,18,222,49],[629,20,222,51],[629,22,222,54],[630,14,222,55,"color"],[630,19,222,60],[630,21,222,62,"Colors"],[630,27,222,68],[630,28,222,68,"default"],[630,35,222,68],[630,36,222,69,"teal"],[631,12,222,74],[632,14,222,74,"fileName"],[632,22,222,74],[632,24,222,74,"_jsxFileName"],[632,36,222,74],[633,14,222,74,"lineNumber"],[633,24,222,74],[634,14,222,74,"columnNumber"],[634,26,222,74],[635,12,222,74],[635,19,222,76],[635,20,222,77],[635,35,223,12],[635,39,223,12,"_reactJsxDevRuntime"],[635,58,223,12],[635,59,223,12,"jsxDEV"],[635,65,223,12],[635,67,223,13,"_reactNative"],[635,79,223,17],[635,80,223,17,"Text"],[635,84,223,17],[636,14,223,18,"style"],[636,19,223,23],[636,21,223,25,"styles"],[636,27,223,31],[636,28,223,32,"actionText"],[636,38,223,43],[637,14,223,43,"children"],[637,22,223,43],[637,24,223,44],[638,12,223,51],[639,14,223,51,"fileName"],[639,22,223,51],[639,24,223,51,"_jsxFileName"],[639,36,223,51],[640,14,223,51,"lineNumber"],[640,24,223,51],[641,14,223,51,"columnNumber"],[641,26,223,51],[642,12,223,51],[642,19,223,57],[642,20,223,58],[643,10,223,58],[644,12,223,58,"fileName"],[644,20,223,58],[644,22,223,58,"_jsxFileName"],[644,34,223,58],[645,12,223,58,"lineNumber"],[645,22,223,58],[646,12,223,58,"columnNumber"],[646,24,223,58],[647,10,223,58],[647,17,224,28],[647,18,224,29],[647,33,226,10],[647,37,226,10,"_reactJsxDevRuntime"],[647,56,226,10],[647,57,226,10,"jsxDEV"],[647,63,226,10],[647,65,226,11,"_reactNative"],[647,77,226,27],[647,78,226,27,"TouchableOpacity"],[647,94,226,27],[648,12,226,28,"style"],[648,17,226,33],[648,19,226,35,"styles"],[648,25,226,41],[648,26,226,42,"actionButton"],[648,38,226,55],[649,12,226,55,"children"],[649,20,226,55],[649,36,227,12],[649,40,227,12,"_reactJsxDevRuntime"],[649,59,227,12],[649,60,227,12,"jsxDEV"],[649,66,227,12],[649,68,227,13,"_expoVectorIcons"],[649,84,227,21],[649,85,227,21,"Ionicons"],[649,93,227,21],[650,14,227,22,"name"],[650,18,227,26],[650,20,227,27],[650,42,227,49],[651,14,227,50,"size"],[651,18,227,54],[651,20,227,56],[651,22,227,59],[652,14,227,60,"color"],[652,19,227,65],[652,21,227,67,"Colors"],[652,27,227,73],[652,28,227,73,"default"],[652,35,227,73],[652,36,227,74,"teal"],[653,12,227,79],[654,14,227,79,"fileName"],[654,22,227,79],[654,24,227,79,"_jsxFileName"],[654,36,227,79],[655,14,227,79,"lineNumber"],[655,24,227,79],[656,14,227,79,"columnNumber"],[656,26,227,79],[657,12,227,79],[657,19,227,81],[657,20,227,82],[657,35,228,12],[657,39,228,12,"_reactJsxDevRuntime"],[657,58,228,12],[657,59,228,12,"jsxDEV"],[657,65,228,12],[657,67,228,13,"_reactNative"],[657,79,228,17],[657,80,228,17,"Text"],[657,84,228,17],[658,14,228,18,"style"],[658,19,228,23],[658,21,228,25,"styles"],[658,27,228,31],[658,28,228,32,"actionText"],[658,38,228,43],[659,14,228,43,"children"],[659,22,228,43],[659,24,228,44],[660,12,228,49],[661,14,228,49,"fileName"],[661,22,228,49],[661,24,228,49,"_jsxFileName"],[661,36,228,49],[662,14,228,49,"lineNumber"],[662,24,228,49],[663,14,228,49,"columnNumber"],[663,26,228,49],[664,12,228,49],[664,19,228,55],[664,20,228,56],[665,10,228,56],[666,12,228,56,"fileName"],[666,20,228,56],[666,22,228,56,"_jsxFileName"],[666,34,228,56],[667,12,228,56,"lineNumber"],[667,22,228,56],[668,12,228,56,"columnNumber"],[668,24,228,56],[669,10,228,56],[669,17,229,28],[669,18,229,29],[670,8,229,29],[671,10,229,29,"fileName"],[671,18,229,29],[671,20,229,29,"_jsxFileName"],[671,32,229,29],[672,10,229,29,"lineNumber"],[672,20,229,29],[673,10,229,29,"columnNumber"],[673,22,229,29],[674,8,229,29],[674,15,230,14],[674,16,230,15],[675,6,230,15],[676,8,230,15,"fileName"],[676,16,230,15],[676,18,230,15,"_jsxFileName"],[676,30,230,15],[677,8,230,15,"lineNumber"],[677,18,230,15],[678,8,230,15,"columnNumber"],[678,20,230,15],[679,6,230,15],[679,13,231,18],[679,14,231,19],[680,4,231,19],[681,6,231,19,"fileName"],[681,14,231,19],[681,16,231,19,"_jsxFileName"],[681,28,231,19],[682,6,231,19,"lineNumber"],[682,16,231,19],[683,6,231,19,"columnNumber"],[683,18,231,19],[684,4,231,19],[684,11,232,18],[684,12,232,19],[685,2,234,0],[686,2,234,1,"_s"],[686,4,234,1],[686,5,19,24,"CitizenCardScreen"],[686,22,19,41],[687,2,19,41,"_c"],[687,4,19,41],[687,7,19,24,"CitizenCardScreen"],[687,24,19,41],[688,2,236,0],[688,6,236,6,"styles"],[688,12,236,12],[688,15,236,15,"StyleSheet"],[688,27,236,25],[688,28,236,25,"StyleSheet"],[688,38,236,25],[688,39,236,26,"create"],[688,45,236,32],[688,46,236,33],[689,4,237,2,"container"],[689,13,237,11],[689,15,237,13],[690,6,238,4,"flex"],[690,10,238,8],[690,12,238,10],[690,13,238,11],[691,6,239,4,"backgroundColor"],[691,21,239,19],[691,23,239,21,"Colors"],[691,29,239,27],[691,30,239,27,"default"],[691,37,239,27],[691,38,239,28,"background"],[692,4,240,2],[692,5,240,3],[693,4,241,2,"header"],[693,10,241,8],[693,12,241,10],[694,6,242,4,"flexDirection"],[694,19,242,17],[694,21,242,19],[694,26,242,24],[695,6,243,4,"alignItems"],[695,16,243,14],[695,18,243,16],[695,26,243,24],[696,6,244,4,"justifyContent"],[696,20,244,18],[696,22,244,20],[696,37,244,35],[697,6,245,4,"paddingHorizontal"],[697,23,245,21],[697,25,245,23,"Spacing"],[697,40,245,30],[697,41,245,30,"Spacing"],[697,48,245,30],[697,49,245,31,"xl"],[697,51,245,33],[698,6,246,4,"paddingVertical"],[698,21,246,19],[698,23,246,21,"Spacing"],[698,38,246,28],[698,39,246,28,"Spacing"],[698,46,246,28],[698,47,246,29,"lg"],[698,49,246,31],[699,6,247,4,"borderBottomWidth"],[699,23,247,21],[699,25,247,23],[699,26,247,24],[700,6,248,4,"borderBottomColor"],[700,23,248,21],[700,25,248,23],[701,4,249,2],[701,5,249,3],[702,4,250,2,"backButton"],[702,14,250,12],[702,16,250,14],[703,6,251,4,"width"],[703,11,251,9],[703,13,251,11],[703,15,251,13],[704,6,252,4,"height"],[704,12,252,10],[704,14,252,12],[704,16,252,14],[705,6,253,4,"borderRadius"],[705,18,253,16],[705,20,253,18],[705,22,253,20],[706,6,254,4,"backgroundColor"],[706,21,254,19],[706,23,254,21,"Colors"],[706,29,254,27],[706,30,254,27,"default"],[706,37,254,27],[706,38,254,28,"card"],[706,42,254,32],[707,6,255,4,"justifyContent"],[707,20,255,18],[707,22,255,20],[707,30,255,28],[708,6,256,4,"alignItems"],[708,16,256,14],[708,18,256,16],[709,4,257,2],[709,5,257,3],[710,4,258,2,"shareButton"],[710,15,258,13],[710,17,258,15],[711,6,259,4,"width"],[711,11,259,9],[711,13,259,11],[711,15,259,13],[712,6,260,4,"height"],[712,12,260,10],[712,14,260,12],[712,16,260,14],[713,6,261,4,"borderRadius"],[713,18,261,16],[713,20,261,18],[713,22,261,20],[714,6,262,4,"backgroundColor"],[714,21,262,19],[714,23,262,21,"Colors"],[714,29,262,27],[714,30,262,27,"default"],[714,37,262,27],[714,38,262,28,"card"],[714,42,262,32],[715,6,263,4,"justifyContent"],[715,20,263,18],[715,22,263,20],[715,30,263,28],[716,6,264,4,"alignItems"],[716,16,264,14],[716,18,264,16],[717,4,265,2],[717,5,265,3],[718,4,266,2,"headerTitle"],[718,15,266,13],[718,17,266,15],[719,6,267,4,"fontSize"],[719,14,267,12],[719,16,267,14,"Typography"],[719,31,267,24],[719,32,267,24,"Typography"],[719,42,267,24],[719,43,267,25,"sizes"],[719,48,267,30],[719,49,267,31,"large"],[719,54,267,36],[720,6,268,4,"fontWeight"],[720,16,268,14],[720,18,268,16,"Typography"],[720,33,268,26],[720,34,268,26,"Typography"],[720,44,268,26],[720,45,268,27,"weights"],[720,52,268,34],[720,53,268,35,"semibold"],[720,61,268,43],[721,6,269,4,"color"],[721,11,269,9],[721,13,269,11,"Colors"],[721,19,269,17],[721,20,269,17,"default"],[721,27,269,17],[721,28,269,18,"textDark"],[722,4,270,2],[722,5,270,3],[723,4,271,2,"content"],[723,11,271,9],[723,13,271,11],[724,6,272,4,"flex"],[724,10,272,8],[724,12,272,10],[724,13,272,11],[725,6,273,4,"padding"],[725,13,273,11],[725,15,273,13,"Spacing"],[725,30,273,20],[725,31,273,20,"Spacing"],[725,38,273,20],[725,39,273,21,"xl"],[726,4,274,2],[726,5,274,3],[727,4,275,2,"card"],[727,8,275,6],[727,10,275,8],[728,6,276,4,"backgroundColor"],[728,21,276,19],[728,23,276,21],[728,32,276,30],[729,6,277,4,"borderRadius"],[729,18,277,16],[729,20,277,18,"BorderRadius"],[729,35,277,30],[729,36,277,30,"BorderRadius"],[729,48,277,30],[729,49,277,31,"xlarge"],[729,55,277,37],[730,6,278,4,"overflow"],[730,14,278,12],[730,16,278,14],[730,24,278,22],[731,6,279,4],[731,9,279,7,"Shadow"],[731,24,279,13],[731,25,279,13,"Shadow"],[731,31,279,13],[731,32,279,14,"medium"],[732,4,280,2],[732,5,280,3],[733,4,281,2,"cardHeader"],[733,14,281,12],[733,16,281,14],[734,6,282,4,"backgroundColor"],[734,21,282,19],[734,23,282,21],[734,32,282,30],[735,6,282,32],[736,6,283,4,"paddingVertical"],[736,21,283,19],[736,23,283,21,"Spacing"],[736,38,283,28],[736,39,283,28,"Spacing"],[736,46,283,28],[736,47,283,29,"xl"],[736,49,283,31],[737,6,284,4,"alignItems"],[737,16,284,14],[737,18,284,16],[738,4,285,2],[738,5,285,3],[739,4,286,2,"headerText1"],[739,15,286,13],[739,17,286,15],[740,6,287,4,"fontSize"],[740,14,287,12],[740,16,287,14],[740,18,287,16],[741,6,288,4,"fontWeight"],[741,16,288,14],[741,18,288,16],[741,23,288,21],[742,6,289,4,"color"],[742,11,289,9],[742,13,289,11],[742,22,289,20],[743,6,289,22],[744,6,290,4,"letterSpacing"],[744,19,290,17],[744,21,290,19],[745,4,291,2],[745,5,291,3],[746,4,292,2,"headerText2"],[746,15,292,13],[746,17,292,15],[747,6,293,4,"fontSize"],[747,14,293,12],[747,16,293,14],[747,18,293,16],[748,6,294,4,"fontWeight"],[748,16,294,14],[748,18,294,16],[748,23,294,21],[749,6,295,4,"color"],[749,11,295,9],[749,13,295,11],[749,22,295,20],[750,6,296,4,"letterSpacing"],[750,19,296,17],[750,21,296,19],[750,22,296,20],[751,6,297,4,"marginTop"],[751,15,297,13],[751,17,297,15],[752,4,298,2],[752,5,298,3],[753,4,299,2,"cardBody"],[753,12,299,10],[753,14,299,12],[754,6,300,4,"backgroundColor"],[754,21,300,19],[754,23,300,21],[754,32,300,30],[755,6,301,4,"padding"],[755,13,301,11],[755,15,301,13,"Spacing"],[755,30,301,20],[755,31,301,20,"Spacing"],[755,38,301,20],[755,39,301,21,"lg"],[756,4,302,2],[756,5,302,3],[757,4,303,2,"topSection"],[757,14,303,12],[757,16,303,14],[758,6,304,4,"flexDirection"],[758,19,304,17],[758,21,304,19],[758,26,304,24],[759,6,305,4,"marginBottom"],[759,18,305,16],[759,20,305,18,"Spacing"],[759,35,305,25],[759,36,305,25,"Spacing"],[759,43,305,25],[759,44,305,26,"md"],[760,4,306,2],[760,5,306,3],[761,4,307,2,"photoContainer"],[761,18,307,16],[761,20,307,18],[762,6,308,4,"width"],[762,11,308,9],[762,13,308,11],[762,16,308,14],[763,6,309,4,"height"],[763,12,309,10],[763,14,309,12],[763,17,309,15],[764,6,310,4,"borderRadius"],[764,18,310,16],[764,20,310,18],[764,22,310,20],[765,6,311,4,"overflow"],[765,14,311,12],[765,16,311,14],[765,24,311,22],[766,6,312,4,"backgroundColor"],[766,21,312,19],[766,23,312,21],[766,32,312,30],[767,6,313,4,"marginRight"],[767,17,313,15],[767,19,313,17,"Spacing"],[767,34,313,24],[767,35,313,24,"Spacing"],[767,42,313,24],[767,43,313,25,"md"],[768,4,314,2],[768,5,314,3],[769,4,315,2,"photo"],[769,9,315,7],[769,11,315,9],[770,6,316,4,"width"],[770,11,316,9],[770,13,316,11],[770,19,316,17],[771,6,317,4,"height"],[771,12,317,10],[771,14,317,12],[772,4,318,2],[772,5,318,3],[773,4,319,2,"photoPlaceholder"],[773,20,319,18],[773,22,319,20],[774,6,320,4,"width"],[774,11,320,9],[774,13,320,11],[774,19,320,17],[775,6,321,4,"height"],[775,12,321,10],[775,14,321,12],[775,20,321,18],[776,6,322,4,"justifyContent"],[776,20,322,18],[776,22,322,20],[776,30,322,28],[777,6,323,4,"alignItems"],[777,16,323,14],[777,18,323,16],[777,26,323,24],[778,6,324,4,"backgroundColor"],[778,21,324,19],[778,23,324,21],[779,4,325,2],[779,5,325,3],[780,4,326,2,"infoList"],[780,12,326,10],[780,14,326,12],[781,6,327,4,"flex"],[781,10,327,8],[781,12,327,10],[782,4,328,2],[782,5,328,3],[783,4,329,2,"infoRow"],[783,11,329,9],[783,13,329,11],[784,6,330,4,"marginBottom"],[784,18,330,16],[784,20,330,18],[785,4,331,2],[785,5,331,3],[786,4,332,2,"infoLabel"],[786,13,332,11],[786,15,332,13],[787,6,333,4,"fontSize"],[787,14,333,12],[787,16,333,14],[787,17,333,15],[788,6,334,4,"fontWeight"],[788,16,334,14],[788,18,334,16],[788,23,334,21],[789,6,335,4,"color"],[789,11,335,9],[789,13,335,11],[789,19,335,17],[790,6,336,4,"letterSpacing"],[790,19,336,17],[790,21,336,19],[791,4,337,2],[791,5,337,3],[792,4,338,2,"infoValue"],[792,13,338,11],[792,15,338,13],[793,6,339,4,"fontSize"],[793,14,339,12],[793,16,339,14],[793,18,339,16],[794,6,340,4,"fontWeight"],[794,16,340,14],[794,18,340,16],[794,23,340,21],[795,6,341,4,"color"],[795,11,341,9],[795,13,341,11],[796,4,342,2],[796,5,342,3],[797,4,343,2,"sunContainer"],[797,16,343,14],[797,18,343,16],[798,6,344,4,"alignItems"],[798,16,344,14],[798,18,344,16],[798,26,344,24],[799,6,345,4,"marginVertical"],[799,20,345,18],[799,22,345,20,"Spacing"],[799,37,345,27],[799,38,345,27,"Spacing"],[799,45,345,27],[799,46,345,28,"md"],[800,4,346,2],[800,5,346,3],[801,4,347,2,"middleSection"],[801,17,347,15],[801,19,347,17],[802,6,348,4,"marginTop"],[802,15,348,13],[802,17,348,15,"Spacing"],[802,32,348,22],[802,33,348,22,"Spacing"],[802,40,348,22],[802,41,348,23,"sm"],[803,4,349,2],[803,5,349,3],[804,4,350,2,"regionRow"],[804,13,350,11],[804,15,350,13],[805,6,351,4,"marginBottom"],[805,18,351,16],[805,20,351,18,"Spacing"],[805,35,351,25],[805,36,351,25,"Spacing"],[805,43,351,25],[805,44,351,26,"sm"],[806,4,352,2],[806,5,352,3],[807,4,353,2,"regionLabel"],[807,15,353,13],[807,17,353,15],[808,6,354,4,"fontSize"],[808,14,354,12],[808,16,354,14],[808,18,354,16],[809,6,355,4,"fontWeight"],[809,16,355,14],[809,18,355,16],[809,23,355,21],[810,6,356,4,"color"],[810,11,356,9],[810,13,356,11],[811,4,357,2],[811,5,357,3],[812,4,358,2,"regionValue"],[812,15,358,13],[812,17,358,15],[813,6,359,4,"fontSize"],[813,14,359,12],[813,16,359,14],[813,18,359,16],[814,6,360,4,"fontWeight"],[814,16,360,14],[814,18,360,16],[814,23,360,21],[815,6,361,4,"color"],[815,11,361,9],[815,13,361,11],[816,4,362,2],[816,5,362,3],[817,4,363,2,"citizenIdRow"],[817,16,363,14],[817,18,363,16],[818,6,364,4,"marginTop"],[818,15,364,13],[818,17,364,15,"Spacing"],[818,32,364,22],[818,33,364,22,"Spacing"],[818,40,364,22],[818,41,364,23,"sm"],[819,4,365,2],[819,5,365,3],[820,4,366,2,"citizenIdLabel"],[820,18,366,16],[820,20,366,18],[821,6,367,4,"fontSize"],[821,14,367,12],[821,16,367,14],[821,18,367,16],[822,6,368,4,"fontWeight"],[822,16,368,14],[822,18,368,16],[822,23,368,21],[823,6,369,4,"color"],[823,11,369,9],[823,13,369,11],[824,4,370,2],[824,5,370,3],[825,4,371,2,"citizenIdValue"],[825,18,371,16],[825,20,371,18],[826,6,372,4,"fontSize"],[826,14,372,12],[826,16,372,14],[826,18,372,16],[827,6,373,4,"fontWeight"],[827,16,373,14],[827,18,373,16],[827,23,373,21],[828,6,374,4,"color"],[828,11,374,9],[828,13,374,11],[828,19,374,17],[829,6,375,4,"letterSpacing"],[829,19,375,17],[829,21,375,19],[830,4,376,2],[830,5,376,3],[831,4,377,2,"cardFooter"],[831,14,377,12],[831,16,377,14],[832,6,378,4,"backgroundColor"],[832,21,378,19],[832,23,378,21],[832,32,378,30],[833,6,378,32],[834,6,379,4,"flexDirection"],[834,19,379,17],[834,21,379,19],[834,26,379,24],[835,6,380,4,"padding"],[835,13,380,11],[835,15,380,13,"Spacing"],[835,30,380,20],[835,31,380,20,"Spacing"],[835,38,380,20],[835,39,380,21,"lg"],[835,41,380,23],[836,6,381,4,"justifyContent"],[836,20,381,18],[836,22,381,20],[837,4,382,2],[837,5,382,3],[838,4,383,2,"footerLeft"],[838,14,383,12],[838,16,383,14],[839,6,384,4,"flex"],[839,10,384,8],[839,12,384,10],[840,4,385,2],[840,5,385,3],[841,4,386,2,"footerRow"],[841,13,386,11],[841,15,386,13],[842,6,387,4,"marginBottom"],[842,18,387,16],[842,20,387,18],[843,4,388,2],[843,5,388,3],[844,4,389,2,"footerLabel"],[844,15,389,13],[844,17,389,15],[845,6,390,4,"fontSize"],[845,14,390,12],[845,16,390,14],[845,17,390,15],[846,6,391,4,"fontWeight"],[846,16,391,14],[846,18,391,16],[846,23,391,21],[847,6,392,4,"color"],[847,11,392,9],[847,13,392,11],[847,22,392,20],[848,6,393,4,"opacity"],[848,13,393,11],[848,15,393,13],[849,4,394,2],[849,5,394,3],[850,4,395,2,"footerValue"],[850,15,395,13],[850,17,395,15],[851,6,396,4,"fontSize"],[851,14,396,12],[851,16,396,14],[851,18,396,16],[852,6,397,4,"fontWeight"],[852,16,397,14],[852,18,397,16],[852,23,397,21],[853,6,398,4,"color"],[853,11,398,9],[853,13,398,11],[853,22,398,20],[853,23,398,22],[854,4,399,2],[854,5,399,3],[855,4,400,2,"footerRight"],[855,15,400,13],[855,17,400,15],[856,6,401,4,"justifyContent"],[856,20,401,18],[856,22,401,20],[856,30,401,28],[857,6,402,4,"alignItems"],[857,16,402,14],[857,18,402,16],[858,4,403,2],[858,5,403,3],[859,4,404,2,"statusBadge"],[859,15,404,13],[859,17,404,15],[860,6,405,4,"flexDirection"],[860,19,405,17],[860,21,405,19],[860,26,405,24],[861,6,406,4,"alignItems"],[861,16,406,14],[861,18,406,16],[861,26,406,24],[862,6,407,4,"justifyContent"],[862,20,407,18],[862,22,407,20],[862,30,407,28],[863,6,408,4,"backgroundColor"],[863,21,408,19],[863,23,408,21,"Colors"],[863,29,408,27],[863,30,408,27,"default"],[863,37,408,27],[863,38,408,28,"mint"],[863,42,408,32],[863,45,408,35],[863,49,408,39],[864,6,409,4,"padding"],[864,13,409,11],[864,15,409,13,"Spacing"],[864,30,409,20],[864,31,409,20,"Spacing"],[864,38,409,20],[864,39,409,21,"md"],[864,41,409,23],[865,6,410,4,"borderRadius"],[865,18,410,16],[865,20,410,18,"BorderRadius"],[865,35,410,30],[865,36,410,30,"BorderRadius"],[865,48,410,30],[865,49,410,31,"large"],[865,54,410,36],[866,6,411,4,"marginTop"],[866,15,411,13],[866,17,411,15,"Spacing"],[866,32,411,22],[866,33,411,22,"Spacing"],[866,40,411,22],[866,41,411,23,"xl"],[866,43,411,25],[867,6,412,4,"gap"],[867,9,412,7],[867,11,412,9,"Spacing"],[867,26,412,16],[867,27,412,16,"Spacing"],[867,34,412,16],[867,35,412,17,"sm"],[868,4,413,2],[868,5,413,3],[869,4,414,2,"statusText"],[869,14,414,12],[869,16,414,14],[870,6,415,4,"fontSize"],[870,14,415,12],[870,16,415,14,"Typography"],[870,31,415,24],[870,32,415,24,"Typography"],[870,42,415,24],[870,43,415,25,"sizes"],[870,48,415,30],[870,49,415,31,"medium"],[870,55,415,37],[871,6,416,4,"fontWeight"],[871,16,416,14],[871,18,416,16,"Typography"],[871,33,416,26],[871,34,416,26,"Typography"],[871,44,416,26],[871,45,416,27,"weights"],[871,52,416,34],[871,53,416,35,"semibold"],[871,61,416,43],[872,6,417,4,"color"],[872,11,417,9],[872,13,417,11,"Colors"],[872,19,417,17],[872,20,417,17,"default"],[872,27,417,17],[872,28,417,18,"mint"],[873,4,418,2],[873,5,418,3],[874,4,419,2,"infoText"],[874,12,419,10],[874,14,419,12],[875,6,420,4,"fontSize"],[875,14,420,12],[875,16,420,14,"Typography"],[875,31,420,24],[875,32,420,24,"Typography"],[875,42,420,24],[875,43,420,25,"sizes"],[875,48,420,30],[875,49,420,31,"small"],[875,54,420,36],[876,6,421,4,"color"],[876,11,421,9],[876,13,421,11,"Colors"],[876,19,421,17],[876,20,421,17,"default"],[876,27,421,17],[876,28,421,18,"textGray"],[876,36,421,26],[877,6,422,4,"textAlign"],[877,15,422,13],[877,17,422,15],[877,25,422,23],[878,6,423,4,"marginTop"],[878,15,423,13],[878,17,423,15,"Spacing"],[878,32,423,22],[878,33,423,22,"Spacing"],[878,40,423,22],[878,41,423,23,"lg"],[878,43,423,25],[879,6,424,4,"lineHeight"],[879,16,424,14],[879,18,424,16],[880,4,425,2],[880,5,425,3],[881,4,426,2,"actions"],[881,11,426,9],[881,13,426,11],[882,6,427,4,"flexDirection"],[882,19,427,17],[882,21,427,19],[882,26,427,24],[883,6,428,4,"justifyContent"],[883,20,428,18],[883,22,428,20],[883,36,428,34],[884,6,429,4,"marginTop"],[884,15,429,13],[884,17,429,15,"Spacing"],[884,32,429,22],[884,33,429,22,"Spacing"],[884,40,429,22],[884,41,429,23,"xl"],[884,43,429,25],[885,6,430,4,"marginBottom"],[885,18,430,16],[885,20,430,18,"Spacing"],[885,35,430,25],[885,36,430,25,"Spacing"],[885,43,430,25],[885,44,430,26,"xl"],[886,4,431,2],[886,5,431,3],[887,4,432,2,"actionButton"],[887,16,432,14],[887,18,432,16],[888,6,433,4,"alignItems"],[888,16,433,14],[888,18,433,16],[888,26,433,24],[889,6,434,4,"gap"],[889,9,434,7],[889,11,434,9,"Spacing"],[889,26,434,16],[889,27,434,16,"Spacing"],[889,34,434,16],[889,35,434,17,"sm"],[890,4,435,2],[890,5,435,3],[891,4,436,2,"actionText"],[891,14,436,12],[891,16,436,14],[892,6,437,4,"fontSize"],[892,14,437,12],[892,16,437,14,"Typography"],[892,31,437,24],[892,32,437,24,"Typography"],[892,42,437,24],[892,43,437,25,"sizes"],[892,48,437,30],[892,49,437,31,"small"],[892,54,437,36],[893,6,438,4,"color"],[893,11,438,9],[893,13,438,11,"Colors"],[893,19,438,17],[893,20,438,17,"default"],[893,27,438,17],[893,28,438,18,"teal"],[893,32,438,22],[894,6,439,4,"fontWeight"],[894,16,439,14],[894,18,439,16,"Typography"],[894,33,439,26],[894,34,439,26,"Typography"],[894,44,439,26],[894,45,439,27,"weights"],[894,52,439,34],[894,53,439,35,"medium"],[895,4,440,2],[895,5,440,3],[896,4,441,2,"errorText"],[896,13,441,11],[896,15,441,13],[897,6,442,4,"fontSize"],[897,14,442,12],[897,16,442,14,"Typography"],[897,31,442,24],[897,32,442,24,"Typography"],[897,42,442,24],[897,43,442,25,"sizes"],[897,48,442,30],[897,49,442,31,"medium"],[897,55,442,37],[898,6,443,4,"color"],[898,11,443,9],[898,13,443,11,"Colors"],[898,19,443,17],[898,20,443,17,"default"],[898,27,443,17],[898,28,443,18,"textGray"],[898,36,443,26],[899,6,444,4,"textAlign"],[899,15,444,13],[899,17,444,15],[900,4,445,2],[900,5,445,3],[901,4,446,2,"button"],[901,10,446,8],[901,12,446,10],[902,6,447,4,"backgroundColor"],[902,21,447,19],[902,23,447,21,"Colors"],[902,29,447,27],[902,30,447,27,"default"],[902,37,447,27],[902,38,447,28,"teal"],[902,42,447,32],[903,6,448,4,"paddingVertical"],[903,21,448,19],[903,23,448,21,"Spacing"],[903,38,448,28],[903,39,448,28,"Spacing"],[903,46,448,28],[903,47,448,29,"lg"],[903,49,448,31],[904,6,449,4,"paddingHorizontal"],[904,23,449,21],[904,25,449,23,"Spacing"],[904,40,449,30],[904,41,449,30,"Spacing"],[904,48,449,30],[904,49,449,31,"xxxl"],[904,53,449,35],[905,6,450,4,"borderRadius"],[905,18,450,16],[905,20,450,18,"BorderRadius"],[905,35,450,30],[905,36,450,30,"BorderRadius"],[905,48,450,30],[905,49,450,31,"xxlarge"],[905,56,450,38],[906,6,451,4,"marginTop"],[906,15,451,13],[906,17,451,15,"Spacing"],[906,32,451,22],[906,33,451,22,"Spacing"],[906,40,451,22],[906,41,451,23,"xl"],[907,4,452,2],[907,5,452,3],[908,4,453,2,"buttonText"],[908,14,453,12],[908,16,453,14],[909,6,454,4,"fontSize"],[909,14,454,12],[909,16,454,14,"Typography"],[909,31,454,24],[909,32,454,24,"Typography"],[909,42,454,24],[909,43,454,25,"sizes"],[909,48,454,30],[909,49,454,31,"medium"],[909,55,454,37],[910,6,455,4,"fontWeight"],[910,16,455,14],[910,18,455,16,"Typography"],[910,33,455,26],[910,34,455,26,"Typography"],[910,44,455,26],[910,45,455,27,"weights"],[910,52,455,34],[910,53,455,35,"semibold"],[910,61,455,43],[911,6,456,4,"color"],[911,11,456,9],[911,13,456,11],[912,4,457,2],[913,2,458,0],[913,3,458,1],[913,4,458,2],[914,2,458,3],[914,6,458,3,"_c"],[914,8,458,3],[915,2,458,3,"$RefreshReg$"],[915,14,458,3],[915,15,458,3,"_c"],[915,17,458,3],[916,0,458,3],[916,3]],"functionMap":{"names":["","CitizenCardScreen","useEffect$argument_0","loadCitizen","TouchableOpacity.props.onPress","formatDate"],"mappings":"AAA;eCkB;YCI;GDE;sBEE;GFS;mBGgB,4CH;qBIQ;GJG;mCGK,yBH;CDsK"},"hasCjsExports":false},"type":"js/module"}]}