auto-commit for f8470fe1-4ce5-4123-a3e6-0b710ab3390a

This commit is contained in:
emergent-agent-e1
2025-11-08 07:19:17 +00:00
parent 92245c9124
commit dd2549e54a
1911 changed files with 1911 additions and 0 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.REGEX_HEX_NOPREFIX = exports.REGEX_HEX_PREFIXED = void 0;\n exports.isHex = isHex;\n exports.REGEX_HEX_PREFIXED = /^0x[\\da-fA-F]+$/;\n exports.REGEX_HEX_NOPREFIX = /^[\\da-fA-F]+$/;\n /**\n * @name isHex\n * @summary Tests for a hex string.\n * @description\n * Checks to see if the input value is a `0x` prefixed hex string. Optionally (`bitLength` !== -1) checks to see if the bitLength is correct.\n * @example\n * <BR>\n *\n * ```javascript\n * import { isHex } from '@polkadot/util';\n *\n * isHex('0x1234'); // => true\n * isHex('0x1234', 8); // => false\n * ```\n */\n function isHex(value, bitLength = -1, ignoreLength) {\n return typeof value === 'string' && (value === '0x' || exports.REGEX_HEX_PREFIXED.test(value)) && (bitLength === -1 ? ignoreLength || value.length % 2 === 0 : value.length === 2 + Math.ceil(bitLength / 4));\n }\n});","lineCount":29,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"REGEX_HEX_NOPREFIX"],[7,28,3,26],[7,31,3,29,"exports"],[7,38,3,36],[7,39,3,37,"REGEX_HEX_PREFIXED"],[7,57,3,55],[7,60,3,58],[7,65,3,63],[7,66,3,64],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"isHex"],[8,15,4,13],[8,18,4,16,"isHex"],[8,23,4,21],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"REGEX_HEX_PREFIXED"],[9,28,5,26],[9,31,5,29],[9,48,5,46],[10,2,6,0,"exports"],[10,9,6,7],[10,10,6,8,"REGEX_HEX_NOPREFIX"],[10,28,6,26],[10,31,6,29],[10,46,6,44],[11,2,7,0],[12,0,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,12,0],[17,0,13,0],[18,0,14,0],[19,0,15,0],[20,0,16,0],[21,0,17,0],[22,0,18,0],[23,0,19,0],[24,0,20,0],[25,0,21,0],[26,2,22,0],[26,11,22,9,"isHex"],[26,16,22,14,"isHex"],[26,17,22,15,"value"],[26,22,22,20],[26,24,22,22,"bitLength"],[26,33,22,31],[26,36,22,34],[26,37,22,35],[26,38,22,36],[26,40,22,38,"ignoreLength"],[26,52,22,50],[26,54,22,52],[27,4,23,4],[27,11,23,12],[27,18,23,19,"value"],[27,23,23,24],[27,28,23,29],[27,36,23,37],[27,41,23,42,"value"],[27,46,23,47],[27,51,23,52],[27,55,23,56],[27,59,24,8,"exports"],[27,66,24,15],[27,67,24,16,"REGEX_HEX_PREFIXED"],[27,85,24,34],[27,86,24,35,"test"],[27,90,24,39],[27,91,24,40,"value"],[27,96,24,45],[27,97,24,46],[27,98,24,47],[27,103,24,53,"bitLength"],[27,112,24,62],[27,117,24,67],[27,118,24,68],[27,119,24,69],[27,122,25,11,"ignoreLength"],[27,134,25,23],[27,138,25,28,"value"],[27,143,25,33],[27,144,25,34,"length"],[27,150,25,40],[27,153,25,43],[27,154,25,44],[27,159,25,49],[27,160,25,51],[27,163,26,11,"value"],[27,168,26,16],[27,169,26,17,"length"],[27,175,26,23],[27,180,26,29],[27,181,26,30],[27,184,26,33,"Math"],[27,188,26,37],[27,189,26,38,"ceil"],[27,193,26,42],[27,194,26,43,"bitLength"],[27,203,26,52],[27,206,26,55],[27,207,26,56],[27,208,26,59],[27,209,26,60],[28,2,27,0],[29,0,27,1],[29,3]],"functionMap":{"names":["<global>","isHex"],"mappings":"AAA;ACqB;CDK"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n // can-promise has a crash in some versions of react native that dont have\n // standard global objects\n // https://github.com/soldair/node-qrcode/issues/157\n\n module.exports = function () {\n return typeof Promise === 'function' && Promise.prototype && Promise.prototype.then;\n };\n});","lineCount":9,"map":[[2,2,1,0],[3,2,2,0],[4,2,3,0],[6,2,5,0,"module"],[6,8,5,6],[6,9,5,7,"exports"],[6,16,5,14],[6,19,5,17],[6,31,5,29],[7,4,6,2],[7,11,6,9],[7,18,6,16,"Promise"],[7,25,6,23],[7,30,6,28],[7,40,6,38],[7,44,6,42,"Promise"],[7,51,6,49],[7,52,6,50,"prototype"],[7,61,6,59],[7,65,6,63,"Promise"],[7,72,6,70],[7,73,6,71,"prototype"],[7,82,6,80],[7,83,6,81,"then"],[7,87,6,85],[8,2,7,0],[8,3,7,1],[9,0,7,1],[9,3]],"functionMap":{"names":["<global>","module.exports"],"mappings":"AAA;iBCI;CDE"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.packageInfo = void 0;\n exports.packageInfo = {\n name: '@polkadot/networks',\n path: typeof __dirname === 'string' ? __dirname : 'auto',\n type: 'cjs',\n version: '13.5.7'\n };\n});","lineCount":14,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"packageInfo"],[7,21,3,19],[7,24,3,22],[7,29,3,27],[7,30,3,28],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"packageInfo"],[8,21,4,19],[8,24,4,22],[9,4,4,24,"name"],[9,8,4,28],[9,10,4,30],[9,30,4,50],[10,4,4,52,"path"],[10,8,4,56],[10,10,4,58],[10,17,4,65,"__dirname"],[10,26,4,74],[10,31,4,79],[10,39,4,87],[10,42,4,90,"__dirname"],[10,51,4,99],[10,54,4,102],[10,60,4,108],[11,4,4,110,"type"],[11,8,4,114],[11,10,4,116],[11,15,4,121],[12,4,4,123,"version"],[12,11,4,130],[12,13,4,132],[13,2,4,141],[13,3,4,142],[14,0,4,143],[14,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"@react-navigation/native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":52,"index":67}}],"key":"yKhyWCfwa1gXEwEbMKnWHykYbZ4=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/Text","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"JKIzsQ5YQ0gDj0MIyY0Q7F1zJtU=","exportNames":["*"],"imports":1}},{"name":"react/jsx-runtime","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":169},"end":{"line":6,"column":48,"index":217}}],"key":"rKAWVuQOSSDHxC6IWcmkeWszaWg=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n exports.Text = Text;\n var _reactNavigationNative = require(_dependencyMap[0], \"@react-navigation/native\");\n var _reactNativeWebDistExportsText = require(_dependencyMap[1], \"react-native-web/dist/exports/Text\");\n var NativeText = _interopDefault(_reactNativeWebDistExportsText);\n var _reactJsxRuntime = require(_dependencyMap[2], \"react/jsx-runtime\");\n // eslint-disable-next-line no-restricted-imports\n\n function Text({\n style,\n ...rest\n }) {\n const {\n colors,\n fonts\n } = (0, _reactNavigationNative.useTheme)();\n return /*#__PURE__*/(0, _reactJsxRuntime.jsx)(NativeText.default, {\n ...rest,\n style: [{\n color: colors.text\n }, fonts.regular, style]\n });\n }\n});","lineCount":34,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopDefault"],[7,27,1,13,"e"],[7,28,1,13],[8,4,1,13],[8,11,1,13,"e"],[8,12,1,13],[8,16,1,13,"e"],[8,17,1,13],[8,18,1,13,"__esModule"],[8,28,1,13],[8,31,1,13,"e"],[8,32,1,13],[9,6,1,13,"default"],[9,13,1,13],[9,15,1,13,"e"],[10,4,1,13],[11,2,1,13],[12,2,7,0,"exports"],[12,9,7,0],[12,10,7,0,"Text"],[12,14,7,0],[12,17,7,0,"Text"],[12,21,7,0],[13,2,3,0],[13,6,3,0,"_reactNavigationNative"],[13,28,3,0],[13,31,3,0,"require"],[13,38,3,0],[13,39,3,0,"_dependencyMap"],[13,53,3,0],[14,2,3,52],[14,6,3,52,"_reactNativeWebDistExportsText"],[14,36,3,52],[14,39,3,52,"require"],[14,46,3,52],[14,47,3,52,"_dependencyMap"],[14,61,3,52],[15,2,3,52],[15,6,3,52,"NativeText"],[15,16,3,52],[15,19,3,52,"_interopDefault"],[15,34,3,52],[15,35,3,52,"_reactNativeWebDistExportsText"],[15,65,3,52],[16,2,6,0],[16,6,6,0,"_reactJsxRuntime"],[16,22,6,0],[16,25,6,0,"require"],[16,32,6,0],[16,33,6,0,"_dependencyMap"],[16,47,6,0],[17,2,4,0],[19,2,7,7],[19,11,7,16,"Text"],[19,15,7,20,"Text"],[19,16,7,21],[20,4,8,2,"style"],[20,9,8,7],[21,4,9,2],[21,7,9,5,"rest"],[22,2,10,0],[22,3,10,1],[22,5,10,3],[23,4,11,2],[23,10,11,8],[24,6,12,4,"colors"],[24,12,12,10],[25,6,13,4,"fonts"],[26,4,14,2],[26,5,14,3],[26,8,14,6],[26,12,14,6,"useTheme"],[26,34,14,14],[26,35,14,14,"useTheme"],[26,43,14,14],[26,45,14,15],[26,46,14,16],[27,4,15,2],[27,11,15,9],[27,24,15,22],[27,28,15,22,"_jsx"],[27,44,15,26],[27,45,15,26,"jsx"],[27,48,15,26],[27,50,15,27,"NativeText"],[27,60,15,37],[27,61,15,37,"default"],[27,68,15,37],[27,70,15,39],[28,6,16,4],[28,9,16,7,"rest"],[28,13,16,11],[29,6,17,4,"style"],[29,11,17,9],[29,13,17,11],[29,14,17,12],[30,8,18,6,"color"],[30,13,18,11],[30,15,18,13,"colors"],[30,21,18,19],[30,22,18,20,"text"],[31,6,19,4],[31,7,19,5],[31,9,19,7,"fonts"],[31,14,19,12],[31,15,19,13,"regular"],[31,22,19,20],[31,24,19,22,"style"],[31,29,19,27],[32,4,20,2],[32,5,20,3],[32,6,20,4],[33,2,21,0],[34,0,21,1],[34,3]],"functionMap":{"names":["<global>","Text"],"mappings":"AAA;OCM;CDc"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"tslib","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":16,"index":93},"end":{"line":3,"column":32,"index":109}}],"key":"vm88vOsSPZItrLOmMEyUuGkd1y4=","exportNames":["*"],"imports":1}},{"name":"./packageDetect.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":0,"index":111},"end":{"line":4,"column":29,"index":140}}],"key":"6wfJhxiZsUlUZpTrbglZlrYne1I=","exportNames":["*"],"imports":1}},{"name":"./bundle.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":21,"index":163},"end":{"line":5,"column":43,"index":185}}],"key":"qgv0ioRoiyx5tPp690zbl2FdD2M=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n const tslib_1 = require(_dependencyMap[0], \"tslib\");\n require(_dependencyMap[1], \"./packageDetect.js\");\n tslib_1.__exportStar(require(_dependencyMap[2], \"./bundle.js\"), exports);\n});","lineCount":10,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0],[7,8,3,6,"tslib_1"],[7,15,3,13],[7,18,3,16,"require"],[7,25,3,23],[7,26,3,23,"_dependencyMap"],[7,40,3,23],[7,52,3,31],[7,53,3,32],[8,2,4,0,"require"],[8,9,4,7],[8,10,4,7,"_dependencyMap"],[8,24,4,7],[8,49,4,28],[8,50,4,29],[9,2,5,0,"tslib_1"],[9,9,5,7],[9,10,5,8,"__exportStar"],[9,22,5,20],[9,23,5,21,"require"],[9,30,5,28],[9,31,5,28,"_dependencyMap"],[9,45,5,28],[9,63,5,42],[9,64,5,43],[9,66,5,45,"exports"],[9,73,5,52],[9,74,5,53],[10,0,5,54],[10,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long